extra: fix function comparisons
[smatch.git] / smatch_extra.c
blobb797782802af9c679bb86ba46a6b63cc034c7ea6
1 /*
2 * Copyright (C) 2008 Dan Carpenter.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 * smatch_extra.c is supposed to track the value of every variable.
23 #define _GNU_SOURCE
24 #include <string.h>
26 #include <stdlib.h>
27 #include <errno.h>
28 #ifndef __USE_ISOC99
29 #define __USE_ISOC99
30 #endif
31 #include <limits.h>
32 #include "parse.h"
33 #include "smatch.h"
34 #include "smatch_slist.h"
35 #include "smatch_extra.h"
37 static int my_id;
38 static int link_id;
40 static void match_link_modify(struct sm_state *sm, struct expression *mod_expr);
42 struct string_list *__ignored_macros = NULL;
43 int in_warn_on_macro(void)
45 struct statement *stmt;
46 char *tmp;
47 char *macro;
49 stmt = get_current_statement();
50 if (!stmt)
51 return 0;
52 macro = get_macro_name(stmt->pos);
53 if (!macro)
54 return 0;
56 FOR_EACH_PTR(__ignored_macros, tmp) {
57 if (!strcmp(tmp, macro))
58 return 1;
59 } END_FOR_EACH_PTR(tmp);
60 return 0;
63 typedef void (mod_hook)(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state);
64 DECLARE_PTR_LIST(void_fn_list, mod_hook *);
65 static struct void_fn_list *extra_mod_hooks;
66 static struct void_fn_list *extra_nomod_hooks;
68 void add_extra_mod_hook(mod_hook *fn)
70 mod_hook **p = malloc(sizeof(mod_hook *));
71 *p = fn;
72 add_ptr_list(&extra_mod_hooks, p);
75 void add_extra_nomod_hook(mod_hook *fn)
77 mod_hook **p = malloc(sizeof(mod_hook *));
78 *p = fn;
79 add_ptr_list(&extra_nomod_hooks, p);
82 void call_extra_hooks(struct void_fn_list *hooks, const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
84 mod_hook **fn;
86 FOR_EACH_PTR(hooks, fn) {
87 (*fn)(name, sym, expr, state);
88 } END_FOR_EACH_PTR(fn);
91 void call_extra_mod_hooks(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
93 call_extra_hooks(extra_mod_hooks, name, sym, expr, state);
96 void call_extra_nomod_hooks(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
98 call_extra_hooks(extra_nomod_hooks, name, sym, expr, state);
101 static bool in_param_set;
102 void set_extra_mod_helper(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
104 remove_from_equiv(name, sym);
105 call_extra_mod_hooks(name, sym, expr, state);
106 if ((__in_fake_assign || in_param_set) &&
107 estate_is_unknown(state) && !get_state(SMATCH_EXTRA, name, sym))
108 return;
109 set_state(SMATCH_EXTRA, name, sym, state);
112 static void set_extra_nomod_helper(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
114 call_extra_nomod_hooks(name, sym, expr, state);
115 set_state(SMATCH_EXTRA, name, sym, state);
118 static char *get_pointed_at(const char *name, struct symbol *sym, struct symbol **new_sym)
120 struct expression *assigned;
122 if (name[0] != '*')
123 return NULL;
124 if (strcmp(name + 1, sym->ident->name) != 0)
125 return NULL;
127 assigned = get_assigned_expr_name_sym(sym->ident->name, sym);
128 if (!assigned)
129 return NULL;
130 assigned = strip_parens(assigned);
131 if (assigned->type != EXPR_PREOP || assigned->op != '&')
132 return NULL;
134 return expr_to_var_sym(assigned->unop, new_sym);
137 char *get_other_name_sym_helper(const char *name, const char *chunk, int len, struct symbol *sym, struct symbol **new_sym)
139 struct expression *assigned;
140 char *orig_name = NULL;
141 char buf[256];
142 char *ret = NULL;
144 assigned = get_assigned_expr_name_sym(chunk, sym);
145 if (!assigned)
146 return NULL;
147 if (assigned->type == EXPR_CALL)
148 return map_call_to_other_name_sym(name, sym, new_sym);
149 if (assigned->type == EXPR_PREOP && assigned->op == '&') {
151 orig_name = expr_to_var_sym(assigned, new_sym);
152 if (!orig_name || !*new_sym)
153 goto free;
155 snprintf(buf, sizeof(buf), "%s.%s", orig_name + 1, name + len);
156 ret = alloc_string(buf);
157 free_string(orig_name);
158 return ret;
161 orig_name = expr_to_var_sym(assigned, new_sym);
162 if (!orig_name || !*new_sym)
163 goto free;
165 snprintf(buf, sizeof(buf), "%s->%s", orig_name, name + len);
166 ret = alloc_string(buf);
167 free_string(orig_name);
168 return ret;
169 free:
170 free_string(orig_name);
171 return NULL;
174 char *get_other_name_sym(const char *name, struct symbol *sym, struct symbol **new_sym)
176 char buf[256];
177 char *ret;
178 int len;
180 *new_sym = NULL;
182 if (!sym || !sym->ident)
183 return NULL;
185 ret = get_pointed_at(name, sym, new_sym);
186 if (ret)
187 return ret;
189 len = snprintf(buf, sizeof(buf), "%s", name);
190 if (len >= sizeof(buf) - 2)
191 return NULL;
193 while (len >= 1) {
194 if (buf[len] == '>' && buf[len - 1] == '-') {
195 len--;
196 buf[len] = '\0';
197 ret = get_other_name_sym_helper(name, buf, len + 2, sym, new_sym);
198 if (ret)
199 return ret;
201 len--;
204 return NULL;
206 void set_extra_mod(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
208 char *new_name;
209 struct symbol *new_sym;
211 set_extra_mod_helper(name, sym, expr, state);
212 new_name = get_other_name_sym(name, sym, &new_sym);
213 if (new_name && new_sym)
214 set_extra_mod_helper(new_name, new_sym, expr, state);
215 free_string(new_name);
218 static struct expression *chunk_get_array_base(struct expression *expr)
221 * The problem with is_array() is that it only returns true for things
222 * like foo[1] but not for foo[1].bar.
225 expr = strip_expr(expr);
226 while (expr && expr->type == EXPR_DEREF)
227 expr = strip_expr(expr->deref);
228 return get_array_base(expr);
231 static int chunk_has_array(struct expression *expr)
233 return !!chunk_get_array_base(expr);
236 static void clear_array_states(struct expression *array)
238 struct sm_state *sm;
240 sm = get_sm_state_expr(link_id, array);
241 if (sm)
242 match_link_modify(sm, NULL);
245 static void set_extra_array_mod(struct expression *expr, struct smatch_state *state)
247 struct expression *array;
248 struct var_sym_list *vsl;
249 struct var_sym *vs;
250 char *name;
251 struct symbol *sym;
253 array = chunk_get_array_base(expr);
255 name = expr_to_chunk_sym_vsl(expr, &sym, &vsl);
256 if (!name || !vsl) {
257 clear_array_states(array);
258 goto free;
261 FOR_EACH_PTR(vsl, vs) {
262 store_link(link_id, vs->var, vs->sym, name, sym);
263 } END_FOR_EACH_PTR(vs);
265 call_extra_mod_hooks(name, sym, expr, state);
266 set_state(SMATCH_EXTRA, name, sym, state);
267 free:
268 free_string(name);
271 void set_extra_expr_mod(struct expression *expr, struct smatch_state *state)
273 struct symbol *sym;
274 char *name;
276 if (chunk_has_array(expr)) {
277 set_extra_array_mod(expr, state);
278 return;
281 expr = strip_expr(expr);
282 name = expr_to_var_sym(expr, &sym);
283 if (!name || !sym)
284 goto free;
285 set_extra_mod(name, sym, expr, state);
286 free:
287 free_string(name);
290 void set_extra_nomod(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
292 char *new_name;
293 struct symbol *new_sym;
294 struct relation *rel;
295 struct smatch_state *orig_state;
297 orig_state = get_state(SMATCH_EXTRA, name, sym);
299 /* don't save unknown states if leaving it blank is the same */
300 if (!orig_state && estate_is_unknown(state))
301 return;
303 new_name = get_other_name_sym(name, sym, &new_sym);
304 if (new_name && new_sym)
305 set_extra_nomod_helper(new_name, new_sym, expr, state);
306 free_string(new_name);
308 if (!estate_related(orig_state)) {
309 set_extra_nomod_helper(name, sym, expr, state);
310 return;
313 set_related(state, estate_related(orig_state));
314 FOR_EACH_PTR(estate_related(orig_state), rel) {
315 struct smatch_state *estate;
317 if (option_debug_related)
318 sm_msg("%s updating related %s to %s", name, rel->name, state->name);
319 estate = get_state(SMATCH_EXTRA, rel->name, rel->sym);
320 if (!estate)
321 continue;
322 set_extra_nomod_helper(rel->name, rel->sym, expr, clone_estate_cast(estate_type(estate), state));
323 } END_FOR_EACH_PTR(rel);
326 void set_extra_nomod_vsl(const char *name, struct symbol *sym, struct var_sym_list *vsl, struct expression *expr, struct smatch_state *state)
328 struct var_sym *vs;
330 FOR_EACH_PTR(vsl, vs) {
331 store_link(link_id, vs->var, vs->sym, name, sym);
332 } END_FOR_EACH_PTR(vs);
334 set_extra_nomod(name, sym, expr, state);
338 * This is for return_implies_state() hooks which modify a SMATCH_EXTRA state
340 void set_extra_expr_nomod(struct expression *expr, struct smatch_state *state)
342 struct var_sym_list *vsl;
343 struct var_sym *vs;
344 char *name;
345 struct symbol *sym;
347 name = expr_to_chunk_sym_vsl(expr, &sym, &vsl);
348 if (!name || !vsl)
349 goto free;
350 FOR_EACH_PTR(vsl, vs) {
351 store_link(link_id, vs->var, vs->sym, name, sym);
352 } END_FOR_EACH_PTR(vs);
354 set_extra_nomod(name, sym, expr, state);
355 free:
356 free_string(name);
359 static void set_extra_true_false(const char *name, struct symbol *sym,
360 struct smatch_state *true_state,
361 struct smatch_state *false_state)
363 char *new_name;
364 struct symbol *new_sym;
365 struct relation *rel;
366 struct smatch_state *orig_state;
368 if (!true_state && !false_state)
369 return;
371 if (in_warn_on_macro())
372 return;
374 new_name = get_other_name_sym(name, sym, &new_sym);
375 if (new_name && new_sym)
376 set_true_false_states(SMATCH_EXTRA, new_name, new_sym, true_state, false_state);
377 free_string(new_name);
379 orig_state = get_state(SMATCH_EXTRA, name, sym);
381 if (!estate_related(orig_state)) {
382 set_true_false_states(SMATCH_EXTRA, name, sym, true_state, false_state);
383 return;
386 if (true_state)
387 set_related(true_state, estate_related(orig_state));
388 if (false_state)
389 set_related(false_state, estate_related(orig_state));
391 FOR_EACH_PTR(estate_related(orig_state), rel) {
392 set_true_false_states(SMATCH_EXTRA, rel->name, rel->sym,
393 true_state, false_state);
394 } END_FOR_EACH_PTR(rel);
397 static void set_extra_chunk_true_false(struct expression *expr,
398 struct smatch_state *true_state,
399 struct smatch_state *false_state)
401 struct var_sym_list *vsl;
402 struct var_sym *vs;
403 struct symbol *type;
404 char *name;
405 struct symbol *sym;
407 if (in_warn_on_macro())
408 return;
410 type = get_type(expr);
411 if (!type)
412 return;
414 name = expr_to_chunk_sym_vsl(expr, &sym, &vsl);
415 if (!name || !vsl)
416 goto free;
417 FOR_EACH_PTR(vsl, vs) {
418 store_link(link_id, vs->var, vs->sym, name, sym);
419 } END_FOR_EACH_PTR(vs);
421 set_true_false_states(SMATCH_EXTRA, name, sym,
422 clone_estate(true_state),
423 clone_estate(false_state));
424 free:
425 free_string(name);
428 static void set_extra_expr_true_false(struct expression *expr,
429 struct smatch_state *true_state,
430 struct smatch_state *false_state)
432 char *name;
433 struct symbol *sym;
434 sval_t sval;
436 if (!true_state && !false_state)
437 return;
439 if (get_value(expr, &sval))
440 return;
442 expr = strip_expr(expr);
443 name = expr_to_var_sym(expr, &sym);
444 if (!name || !sym) {
445 free_string(name);
446 set_extra_chunk_true_false(expr, true_state, false_state);
447 return;
449 set_extra_true_false(name, sym, true_state, false_state);
450 free_string(name);
453 static int get_countdown_info(struct expression *condition, struct expression **unop, int *op, sval_t *right)
455 struct expression *unop_expr;
456 int comparison;
457 sval_t limit;
459 right->type = &int_ctype;
460 right->value = 0;
462 condition = strip_expr(condition);
464 if (condition->type == EXPR_COMPARE) {
465 comparison = remove_unsigned_from_comparison(condition->op);
467 if (comparison != SPECIAL_GTE && comparison != '>')
468 return 0;
469 if (!get_value(condition->right, &limit))
470 return 0;
472 unop_expr = condition->left;
473 if (unop_expr->type != EXPR_PREOP && unop_expr->type != EXPR_POSTOP)
474 return 0;
475 if (unop_expr->op != SPECIAL_DECREMENT)
476 return 0;
478 *unop = unop_expr;
479 *op = comparison;
480 *right = limit;
482 return 1;
485 if (condition->type != EXPR_PREOP && condition->type != EXPR_POSTOP)
486 return 0;
487 if (condition->op != SPECIAL_DECREMENT)
488 return 0;
490 *unop = condition;
491 *op = '>';
493 return 1;
496 static struct sm_state *handle_canonical_while_count_down(struct statement *loop)
498 struct expression *iter_var;
499 struct expression *condition, *unop;
500 struct sm_state *sm;
501 struct smatch_state *estate;
502 int op;
503 sval_t start, right;
505 right.type = &int_ctype;
506 right.value = 0;
508 condition = strip_expr(loop->iterator_pre_condition);
509 if (!condition)
510 return NULL;
512 if (!get_countdown_info(condition, &unop, &op, &right))
513 return NULL;
515 iter_var = unop->unop;
517 sm = get_sm_state_expr(SMATCH_EXTRA, iter_var);
518 if (!sm)
519 return NULL;
520 if (sval_cmp(estate_min(sm->state), right) < 0)
521 return NULL;
522 start = estate_max(sm->state);
523 if (sval_cmp(start, right) <= 0)
524 return NULL;
525 if (!sval_is_max(start))
526 start.value--;
528 if (op == SPECIAL_GTE)
529 right.value--;
531 if (unop->type == EXPR_PREOP) {
532 right.value++;
533 estate = alloc_estate_range(right, start);
534 if (estate_has_hard_max(sm->state))
535 estate_set_hard_max(estate);
536 estate_copy_fuzzy_max(estate, sm->state);
537 set_extra_expr_mod(iter_var, estate);
539 if (unop->type == EXPR_POSTOP) {
540 estate = alloc_estate_range(right, start);
541 if (estate_has_hard_max(sm->state))
542 estate_set_hard_max(estate);
543 estate_copy_fuzzy_max(estate, sm->state);
544 set_extra_expr_mod(iter_var, estate);
546 return get_sm_state_expr(SMATCH_EXTRA, iter_var);
549 static struct sm_state *handle_canonical_for_inc(struct expression *iter_expr,
550 struct expression *condition)
552 struct expression *iter_var;
553 struct sm_state *sm;
554 struct smatch_state *estate;
555 sval_t start, end, max;
557 iter_var = iter_expr->unop;
558 sm = get_sm_state_expr(SMATCH_EXTRA, iter_var);
559 if (!sm)
560 return NULL;
561 if (!estate_get_single_value(sm->state, &start))
562 return NULL;
563 if (get_implied_max(condition->right, &end))
564 end = sval_cast(get_type(iter_var), end);
565 else
566 end = sval_type_max(get_type(iter_var));
568 if (get_sm_state_expr(SMATCH_EXTRA, condition->left) != sm)
569 return NULL;
571 switch (condition->op) {
572 case SPECIAL_UNSIGNED_LT:
573 case SPECIAL_NOTEQUAL:
574 case '<':
575 if (!sval_is_min(end))
576 end.value--;
577 break;
578 case SPECIAL_UNSIGNED_LTE:
579 case SPECIAL_LTE:
580 break;
581 default:
582 return NULL;
584 if (sval_cmp(end, start) < 0)
585 return NULL;
586 estate = alloc_estate_range(start, end);
587 if (get_hard_max(condition->right, &max)) {
588 estate_set_hard_max(estate);
589 if (condition->op == '<' ||
590 condition->op == SPECIAL_UNSIGNED_LT ||
591 condition->op == SPECIAL_NOTEQUAL)
592 max.value--;
593 estate_set_fuzzy_max(estate, max);
595 set_extra_expr_mod(iter_var, estate);
596 return get_sm_state_expr(SMATCH_EXTRA, iter_var);
599 static struct sm_state *handle_canonical_for_dec(struct expression *iter_expr,
600 struct expression *condition)
602 struct expression *iter_var;
603 struct sm_state *sm;
604 struct smatch_state *estate;
605 sval_t start, end;
607 iter_var = iter_expr->unop;
608 sm = get_sm_state_expr(SMATCH_EXTRA, iter_var);
609 if (!sm)
610 return NULL;
611 if (!estate_get_single_value(sm->state, &start))
612 return NULL;
613 if (!get_implied_min(condition->right, &end))
614 end = sval_type_min(get_type(iter_var));
615 if (get_sm_state_expr(SMATCH_EXTRA, condition->left) != sm)
616 return NULL;
618 switch (condition->op) {
619 case SPECIAL_NOTEQUAL:
620 case '>':
621 if (!sval_is_min(end) && !sval_is_max(end))
622 end.value++;
623 break;
624 case SPECIAL_GTE:
625 break;
626 default:
627 return NULL;
629 if (sval_cmp(end, start) > 0)
630 return NULL;
631 estate = alloc_estate_range(end, start);
632 estate_set_hard_max(estate);
633 estate_set_fuzzy_max(estate, estate_get_fuzzy_max(estate));
634 set_extra_expr_mod(iter_var, estate);
635 return get_sm_state_expr(SMATCH_EXTRA, iter_var);
638 static struct sm_state *handle_canonical_for_loops(struct statement *loop)
640 struct expression *iter_expr;
641 struct expression *condition;
643 if (!loop->iterator_post_statement)
644 return NULL;
645 if (loop->iterator_post_statement->type != STMT_EXPRESSION)
646 return NULL;
647 iter_expr = loop->iterator_post_statement->expression;
648 if (!loop->iterator_pre_condition)
649 return NULL;
650 if (loop->iterator_pre_condition->type != EXPR_COMPARE)
651 return NULL;
652 condition = loop->iterator_pre_condition;
654 if (iter_expr->op == SPECIAL_INCREMENT)
655 return handle_canonical_for_inc(iter_expr, condition);
656 if (iter_expr->op == SPECIAL_DECREMENT)
657 return handle_canonical_for_dec(iter_expr, condition);
658 return NULL;
661 struct sm_state *__extra_handle_canonical_loops(struct statement *loop, struct stree **stree)
663 struct sm_state *ret;
666 * Canonical loops are a hack. The proper way to handle this is to
667 * use two passes, but unfortunately, doing two passes makes parsing
668 * code twice as slow.
670 * What we do is we set the inside state here, which overwrites whatever
671 * __extra_match_condition() does. Then we set the outside state in
672 * __extra_pre_loop_hook_after().
675 __push_fake_cur_stree();
676 if (!loop->iterator_post_statement)
677 ret = handle_canonical_while_count_down(loop);
678 else
679 ret = handle_canonical_for_loops(loop);
680 *stree = __pop_fake_cur_stree();
681 return ret;
684 int __iterator_unchanged(struct sm_state *sm)
686 if (!sm)
687 return 0;
688 if (get_sm_state(my_id, sm->name, sm->sym) == sm)
689 return 1;
690 return 0;
693 static void while_count_down_after(struct sm_state *sm, struct expression *condition)
695 struct expression *unop;
696 int op;
697 sval_t limit, after_value;
699 if (!get_countdown_info(condition, &unop, &op, &limit))
700 return;
701 after_value = estate_min(sm->state);
702 after_value.value--;
703 set_extra_mod(sm->name, sm->sym, condition->unop, alloc_estate_sval(after_value));
706 void __extra_pre_loop_hook_after(struct sm_state *sm,
707 struct statement *iterator,
708 struct expression *condition)
710 struct expression *iter_expr;
711 sval_t limit;
712 struct smatch_state *state;
714 if (!iterator) {
715 while_count_down_after(sm, condition);
716 return;
719 iter_expr = iterator->expression;
721 if (condition->type != EXPR_COMPARE)
722 return;
723 if (iter_expr->op == SPECIAL_INCREMENT) {
724 limit = sval_binop(estate_max(sm->state), '+',
725 sval_type_val(estate_type(sm->state), 1));
726 } else {
727 limit = sval_binop(estate_min(sm->state), '-',
728 sval_type_val(estate_type(sm->state), 1));
730 if (!estate_has_hard_max(sm->state) && !__has_breaks()) {
731 if (iter_expr->op == SPECIAL_INCREMENT)
732 state = alloc_estate_range(estate_min(sm->state), limit);
733 else
734 state = alloc_estate_range(limit, estate_max(sm->state));
735 } else {
736 state = alloc_estate_sval(limit);
738 if (!estate_has_hard_max(sm->state)) {
739 estate_clear_hard_max(state);
741 if (estate_has_fuzzy_max(sm->state)) {
742 sval_t hmax = estate_get_fuzzy_max(sm->state);
743 sval_t max = estate_max(sm->state);
745 if (sval_cmp(hmax, max) != 0)
746 estate_clear_fuzzy_max(state);
747 } else if (!estate_has_fuzzy_max(sm->state)) {
748 estate_clear_fuzzy_max(state);
751 set_extra_mod(sm->name, sm->sym, iter_expr, state);
754 static struct stree *unmatched_stree;
755 static struct smatch_state *unmatched_state(struct sm_state *sm)
757 struct smatch_state *state;
759 if (unmatched_stree) {
760 state = get_state_stree(unmatched_stree, SMATCH_EXTRA, sm->name, sm->sym);
761 if (state)
762 return state;
764 if (parent_is_gone_var_sym(sm->name, sm->sym))
765 return alloc_estate_empty();
766 return alloc_estate_whole(estate_type(sm->state));
769 static void clear_the_pointed_at(struct expression *expr)
771 struct stree *stree;
772 char *name;
773 struct symbol *sym;
774 struct sm_state *tmp;
776 name = expr_to_var_sym(expr, &sym);
777 if (!name || !sym)
778 goto free;
780 stree = __get_cur_stree();
781 FOR_EACH_MY_SM(SMATCH_EXTRA, stree, tmp) {
782 if (tmp->name[0] != '*')
783 continue;
784 if (tmp->sym != sym)
785 continue;
786 if (strcmp(tmp->name + 1, name) != 0)
787 continue;
788 set_extra_mod(tmp->name, tmp->sym, expr, alloc_estate_whole(estate_type(tmp->state)));
789 } END_FOR_EACH_SM(tmp);
791 free:
792 free_string(name);
795 static int is_const_param(struct expression *expr, int param)
797 struct symbol *type;
799 type = get_arg_type(expr, param);
800 if (!type)
801 return 0;
802 if (type->ctype.modifiers & MOD_CONST)
803 return 1;
804 return 0;
807 static void match_function_call(struct expression *expr)
809 struct expression *arg;
810 struct expression *tmp;
811 int param = -1;
813 /* if we have the db this is handled in smatch_function_hooks.c */
814 if (!option_no_db)
815 return;
816 if (inlinable(expr->fn))
817 return;
819 FOR_EACH_PTR(expr->args, arg) {
820 param++;
821 if (is_const_param(expr->fn, param))
822 continue;
823 tmp = strip_expr(arg);
824 if (tmp->type == EXPR_PREOP && tmp->op == '&')
825 set_extra_expr_mod(tmp->unop, alloc_estate_whole(get_type(tmp->unop)));
826 else
827 clear_the_pointed_at(tmp);
828 } END_FOR_EACH_PTR(arg);
831 static int values_fit_type(struct expression *left, struct expression *right)
833 struct range_list *rl;
834 struct symbol *type;
836 type = get_type(left);
837 if (!type)
838 return 0;
839 get_absolute_rl(right, &rl);
840 if (type_unsigned(type) && sval_is_negative(rl_min(rl)))
841 return 0;
842 if (sval_cmp(sval_type_min(type), rl_min(rl)) > 0)
843 return 0;
844 if (sval_cmp(sval_type_max(type), rl_max(rl)) < 0)
845 return 0;
846 return 1;
849 static void save_chunk_info(struct expression *left, struct expression *right)
851 struct var_sym_list *vsl;
852 struct var_sym *vs;
853 struct expression *add_expr;
854 struct symbol *type;
855 sval_t sval;
856 char *name;
857 struct symbol *sym;
859 if (right->type != EXPR_BINOP || right->op != '-')
860 return;
861 if (!get_value(right->left, &sval))
862 return;
863 if (!expr_to_sym(right->right))
864 return;
866 add_expr = binop_expression(left, '+', right->right);
867 type = get_type(add_expr);
868 if (!type)
869 return;
870 name = expr_to_chunk_sym_vsl(add_expr, &sym, &vsl);
871 if (!name || !vsl)
872 goto free;
873 FOR_EACH_PTR(vsl, vs) {
874 store_link(link_id, vs->var, vs->sym, name, sym);
875 } END_FOR_EACH_PTR(vs);
877 set_state(SMATCH_EXTRA, name, sym, alloc_estate_sval(sval_cast(type, sval)));
878 free:
879 free_string(name);
882 static void do_array_assign(struct expression *left, int op, struct expression *right)
884 struct range_list *rl;
886 if (op == '=') {
887 get_absolute_rl(right, &rl);
888 rl = cast_rl(get_type(left), rl);
889 } else {
890 rl = alloc_whole_rl(get_type(left));
893 set_extra_array_mod(left, alloc_estate_rl(rl));
896 static void match_vanilla_assign(struct expression *left, struct expression *right)
898 struct range_list *orig_rl = NULL;
899 struct range_list *rl = NULL;
900 struct symbol *right_sym;
901 struct symbol *left_type;
902 struct symbol *right_type;
903 char *right_name = NULL;
904 struct symbol *sym;
905 char *name;
906 sval_t sval, max;
907 struct smatch_state *state;
908 int comparison;
910 if (is_struct(left))
911 return;
913 save_chunk_info(left, right);
915 name = expr_to_var_sym(left, &sym);
916 if (!name) {
917 if (chunk_has_array(left))
918 do_array_assign(left, '=', right);
919 return;
922 left_type = get_type(left);
923 right_type = get_type(right);
925 right_name = expr_to_var_sym(right, &right_sym);
927 if (!__in_fake_assign &&
928 !(right->type == EXPR_PREOP && right->op == '&') &&
929 right_name && right_sym &&
930 values_fit_type(left, strip_expr(right)) &&
931 !has_symbol(right, sym)) {
932 set_equiv(left, right);
933 goto free;
936 if (is_pointer(right) && get_address_rl(right, &rl)) {
937 state = alloc_estate_rl(rl);
938 goto done;
941 if (get_implied_value(right, &sval)) {
942 state = alloc_estate_sval(sval_cast(left_type, sval));
943 goto done;
946 if (__in_fake_assign) {
947 struct smatch_state *right_state;
948 sval_t sval;
950 if (get_value(right, &sval)) {
951 sval = sval_cast(left_type, sval);
952 state = alloc_estate_sval(sval);
953 goto done;
956 right_state = get_state(SMATCH_EXTRA, right_name, right_sym);
957 if (right_state) {
958 /* simple assignment */
959 state = clone_estate(right_state);
960 goto done;
963 state = alloc_estate_rl(alloc_whole_rl(left_type));
964 goto done;
967 comparison = get_comparison(left, right);
968 if (comparison) {
969 comparison = flip_comparison(comparison);
970 get_implied_rl(left, &orig_rl);
973 if (get_implied_rl(right, &rl)) {
974 rl = cast_rl(left_type, rl);
975 if (orig_rl)
976 filter_by_comparison(&rl, comparison, orig_rl);
977 state = alloc_estate_rl(rl);
978 if (get_hard_max(right, &max)) {
979 estate_set_hard_max(state);
980 estate_set_fuzzy_max(state, max);
982 } else {
983 rl = alloc_whole_rl(right_type);
984 rl = cast_rl(left_type, rl);
985 if (orig_rl)
986 filter_by_comparison(&rl, comparison, orig_rl);
987 state = alloc_estate_rl(rl);
990 done:
991 set_extra_mod(name, sym, left, state);
992 free:
993 free_string(right_name);
996 static int op_remove_assign(int op)
998 switch (op) {
999 case SPECIAL_ADD_ASSIGN:
1000 return '+';
1001 case SPECIAL_SUB_ASSIGN:
1002 return '-';
1003 case SPECIAL_MUL_ASSIGN:
1004 return '*';
1005 case SPECIAL_DIV_ASSIGN:
1006 return '/';
1007 case SPECIAL_MOD_ASSIGN:
1008 return '%';
1009 case SPECIAL_AND_ASSIGN:
1010 return '&';
1011 case SPECIAL_OR_ASSIGN:
1012 return '|';
1013 case SPECIAL_XOR_ASSIGN:
1014 return '^';
1015 case SPECIAL_SHL_ASSIGN:
1016 return SPECIAL_LEFTSHIFT;
1017 case SPECIAL_SHR_ASSIGN:
1018 return SPECIAL_RIGHTSHIFT;
1019 default:
1020 return op;
1024 static void match_assign(struct expression *expr)
1026 struct range_list *rl = NULL;
1027 struct expression *left;
1028 struct expression *right;
1029 struct expression *binop_expr;
1030 struct symbol *left_type;
1031 struct symbol *sym;
1032 char *name;
1033 sval_t left_min, left_max;
1034 sval_t right_min, right_max;
1035 sval_t res_min, res_max;
1037 left = strip_expr(expr->left);
1039 right = strip_parens(expr->right);
1040 if (right->type == EXPR_CALL && sym_name_is("__builtin_expect", right->fn))
1041 right = get_argument_from_call_expr(right->args, 0);
1042 while (right->type == EXPR_ASSIGNMENT && right->op == '=')
1043 right = strip_parens(right->left);
1045 if (expr->op == '=' && is_condition(expr->right))
1046 return; /* handled in smatch_condition.c */
1047 if (expr->op == '=' && right->type == EXPR_CALL)
1048 return; /* handled in smatch_function_hooks.c */
1049 if (expr->op == '=') {
1050 match_vanilla_assign(left, right);
1051 return;
1054 name = expr_to_var_sym(left, &sym);
1055 if (!name)
1056 return;
1058 left_type = get_type(left);
1060 res_min = sval_type_min(left_type);
1061 res_max = sval_type_max(left_type);
1063 switch (expr->op) {
1064 case SPECIAL_ADD_ASSIGN:
1065 get_absolute_max(left, &left_max);
1066 get_absolute_max(right, &right_max);
1067 if (sval_binop_overflows(left_max, '+', sval_cast(left_type, right_max)))
1068 break;
1069 if (get_implied_min(left, &left_min) &&
1070 !sval_is_negative_min(left_min) &&
1071 get_implied_min(right, &right_min) &&
1072 !sval_is_negative_min(right_min)) {
1073 res_min = sval_binop(left_min, '+', right_min);
1074 res_min = sval_cast(left_type, res_min);
1076 if (inside_loop()) /* we are assuming loops don't lead to wrapping */
1077 break;
1078 res_max = sval_binop(left_max, '+', right_max);
1079 res_max = sval_cast(left_type, res_max);
1080 break;
1081 case SPECIAL_SUB_ASSIGN:
1082 if (get_implied_max(left, &left_max) &&
1083 !sval_is_max(left_max) &&
1084 get_implied_min(right, &right_min) &&
1085 !sval_is_min(right_min)) {
1086 res_max = sval_binop(left_max, '-', right_min);
1087 res_max = sval_cast(left_type, res_max);
1089 if (inside_loop())
1090 break;
1091 if (get_implied_min(left, &left_min) &&
1092 !sval_is_min(left_min) &&
1093 get_implied_max(right, &right_max) &&
1094 !sval_is_max(right_max)) {
1095 res_min = sval_binop(left_min, '-', right_max);
1096 res_min = sval_cast(left_type, res_min);
1098 break;
1099 case SPECIAL_AND_ASSIGN:
1100 case SPECIAL_MOD_ASSIGN:
1101 case SPECIAL_SHL_ASSIGN:
1102 case SPECIAL_SHR_ASSIGN:
1103 case SPECIAL_OR_ASSIGN:
1104 case SPECIAL_XOR_ASSIGN:
1105 case SPECIAL_MUL_ASSIGN:
1106 case SPECIAL_DIV_ASSIGN:
1107 binop_expr = binop_expression(expr->left,
1108 op_remove_assign(expr->op),
1109 expr->right);
1110 if (get_absolute_rl(binop_expr, &rl)) {
1111 rl = cast_rl(left_type, rl);
1112 set_extra_mod(name, sym, left, alloc_estate_rl(rl));
1113 goto free;
1115 break;
1117 rl = cast_rl(left_type, alloc_rl(res_min, res_max));
1118 set_extra_mod(name, sym, left, alloc_estate_rl(rl));
1119 free:
1120 free_string(name);
1123 static struct smatch_state *increment_state(struct smatch_state *state)
1125 sval_t min = estate_min(state);
1126 sval_t max = estate_max(state);
1128 if (!estate_rl(state))
1129 return NULL;
1131 if (inside_loop())
1132 max = sval_type_max(max.type);
1134 if (!sval_is_min(min) && !sval_is_max(min))
1135 min.value++;
1136 if (!sval_is_min(max) && !sval_is_max(max))
1137 max.value++;
1138 return alloc_estate_range(min, max);
1141 static struct smatch_state *decrement_state(struct smatch_state *state)
1143 sval_t min = estate_min(state);
1144 sval_t max = estate_max(state);
1146 if (!estate_rl(state))
1147 return NULL;
1149 if (inside_loop())
1150 min = sval_type_min(min.type);
1152 if (!sval_is_min(min) && !sval_is_max(min))
1153 min.value--;
1154 if (!sval_is_min(max) && !sval_is_max(max))
1155 max.value--;
1156 return alloc_estate_range(min, max);
1159 static void clear_pointed_at_state(struct expression *expr)
1161 struct symbol *type;
1164 * ALERT: This is sort of a mess. If it's is a struct assigment like
1165 * "foo = bar;", then that's handled by smatch_struct_assignment.c.
1166 * the same thing for p++ where "p" is a struct. Most modifications
1167 * are handled by the assignment hook or the db. Smatch_extra.c doesn't
1168 * use smatch_modification.c because we have to get the ordering right
1169 * or something. So if you have p++ where p is a pointer to a standard
1170 * c type then we handle that here. What a mess.
1172 expr = strip_expr(expr);
1173 type = get_type(expr);
1174 if (!type || type->type != SYM_PTR)
1175 return;
1176 type = get_real_base_type(type);
1177 if (!type || type->type != SYM_BASETYPE)
1178 return;
1179 set_extra_expr_nomod(deref_expression(expr), alloc_estate_whole(type));
1182 static void unop_expr(struct expression *expr)
1184 struct smatch_state *state;
1186 if (expr->smatch_flags & Handled)
1187 return;
1189 switch (expr->op) {
1190 case SPECIAL_INCREMENT:
1191 state = get_state_expr(SMATCH_EXTRA, expr->unop);
1192 state = increment_state(state);
1193 if (!state)
1194 state = alloc_estate_whole(get_type(expr));
1195 set_extra_expr_mod(expr->unop, state);
1196 clear_pointed_at_state(expr->unop);
1197 break;
1198 case SPECIAL_DECREMENT:
1199 state = get_state_expr(SMATCH_EXTRA, expr->unop);
1200 state = decrement_state(state);
1201 if (!state)
1202 state = alloc_estate_whole(get_type(expr));
1203 set_extra_expr_mod(expr->unop, state);
1204 clear_pointed_at_state(expr->unop);
1205 break;
1206 default:
1207 return;
1211 static void asm_expr(struct statement *stmt)
1214 struct expression *expr;
1215 struct symbol *type;
1216 int state = 0;
1218 FOR_EACH_PTR(stmt->asm_outputs, expr) {
1219 switch (state) {
1220 case 0: /* identifier */
1221 case 1: /* constraint */
1222 state++;
1223 continue;
1224 case 2: /* expression */
1225 state = 0;
1226 type = get_type(strip_expr(expr));
1227 set_extra_expr_mod(expr, alloc_estate_whole(type));
1228 continue;
1230 } END_FOR_EACH_PTR(expr);
1233 static void check_dereference(struct expression *expr)
1235 struct smatch_state *state;
1237 if (__in_fake_assign)
1238 return;
1239 if (outside_of_function())
1240 return;
1241 state = get_extra_state(expr);
1242 if (state) {
1243 struct range_list *rl;
1245 rl = rl_intersection(estate_rl(state), valid_ptr_rl);
1246 if (rl_equiv(rl, estate_rl(state)))
1247 return;
1248 set_extra_expr_nomod(expr, alloc_estate_rl(rl));
1249 } else {
1250 set_extra_expr_nomod(expr, alloc_estate_range(valid_ptr_min_sval, valid_ptr_max_sval));
1254 static void match_dereferences(struct expression *expr)
1256 if (expr->type != EXPR_PREOP)
1257 return;
1258 /* it's saying that foo[1] = bar dereferences foo[1] */
1259 if (is_array(expr))
1260 return;
1261 check_dereference(expr->unop);
1264 static void match_pointer_as_array(struct expression *expr)
1266 if (!is_array(expr))
1267 return;
1268 check_dereference(get_array_base(expr));
1271 static void find_dereferences(struct expression *expr)
1273 while (expr->type == EXPR_PREOP) {
1274 if (expr->op == '*')
1275 check_dereference(expr->unop);
1276 expr = strip_expr(expr->unop);
1280 static void set_param_dereferenced(struct expression *call, struct expression *arg, char *key, char *unused)
1282 struct symbol *sym;
1283 char *name;
1285 name = get_variable_from_key(arg, key, &sym);
1286 if (name && sym) {
1287 struct smatch_state *orig, *new;
1288 struct range_list *rl;
1290 orig = get_state(SMATCH_EXTRA, name, sym);
1291 if (orig) {
1292 rl = rl_intersection(estate_rl(orig),
1293 alloc_rl(valid_ptr_min_sval,
1294 valid_ptr_max_sval));
1295 new = alloc_estate_rl(rl);
1296 } else {
1297 new = alloc_estate_range(valid_ptr_min_sval, valid_ptr_max_sval);
1300 set_extra_nomod(name, sym, NULL, new);
1302 free_string(name);
1304 find_dereferences(arg);
1307 static sval_t add_one(sval_t sval)
1309 sval.value++;
1310 return sval;
1313 static int handle_postop_inc(struct expression *left, int op, struct expression *right)
1315 struct statement *stmt;
1316 struct expression *cond;
1317 struct smatch_state *true_state, *false_state;
1318 sval_t start;
1319 sval_t limit;
1322 * If we're decrementing here then that's a canonical while count down
1323 * so it's handled already. We're only handling loops like:
1324 * i = 0;
1325 * do { ... } while (i++ < 3);
1328 if (left->type != EXPR_POSTOP || left->op != SPECIAL_INCREMENT)
1329 return 0;
1331 stmt = __cur_stmt->parent;
1332 if (!stmt)
1333 return 0;
1334 if (stmt->type == STMT_COMPOUND)
1335 stmt = stmt->parent;
1336 if (!stmt || stmt->type != STMT_ITERATOR || !stmt->iterator_post_condition)
1337 return 0;
1339 cond = strip_expr(stmt->iterator_post_condition);
1340 if (cond->type != EXPR_COMPARE || cond->op != op)
1341 return 0;
1342 if (left != strip_expr(cond->left) || right != strip_expr(cond->right))
1343 return 0;
1345 if (!get_implied_value(left->unop, &start))
1346 return 0;
1347 if (!get_implied_value(right, &limit))
1348 return 0;
1350 if (sval_cmp(start, limit) > 0)
1351 return 0;
1353 switch (op) {
1354 case '<':
1355 case SPECIAL_UNSIGNED_LT:
1356 break;
1357 case SPECIAL_LTE:
1358 case SPECIAL_UNSIGNED_LTE:
1359 limit = add_one(limit);
1360 default:
1361 return 0;
1365 true_state = alloc_estate_range(add_one(start), limit);
1366 false_state = alloc_estate_range(add_one(limit), add_one(limit));
1368 /* Currently we just discard the false state but when two passes is
1369 * implimented correctly then it will use it.
1372 set_extra_expr_true_false(left->unop, true_state, false_state);
1374 return 1;
1377 bool is_impossible_variable(struct expression *expr)
1379 struct smatch_state *state;
1381 state = get_extra_state(expr);
1382 if (state && !estate_rl(state))
1383 return true;
1384 return false;
1387 static void handle_comparison(struct symbol *type, struct expression *left, int op, struct expression *right)
1389 struct range_list *left_orig;
1390 struct range_list *left_true;
1391 struct range_list *left_false;
1392 struct range_list *right_orig;
1393 struct range_list *right_true;
1394 struct range_list *right_false;
1395 struct smatch_state *left_true_state;
1396 struct smatch_state *left_false_state;
1397 struct smatch_state *right_true_state;
1398 struct smatch_state *right_false_state;
1399 sval_t dummy, hard_max;
1400 int left_postop = 0;
1401 int right_postop = 0;
1403 if (left->op == SPECIAL_INCREMENT || left->op == SPECIAL_DECREMENT) {
1404 if (left->type == EXPR_POSTOP) {
1405 left->smatch_flags |= Handled;
1406 left_postop = left->op;
1407 if (handle_postop_inc(left, op, right))
1408 return;
1410 left = strip_parens(left->unop);
1412 while (left->type == EXPR_ASSIGNMENT)
1413 left = strip_parens(left->left);
1415 if (right->op == SPECIAL_INCREMENT || right->op == SPECIAL_DECREMENT) {
1416 if (right->type == EXPR_POSTOP) {
1417 right->smatch_flags |= Handled;
1418 right_postop = right->op;
1420 right = strip_parens(right->unop);
1423 if (is_impossible_variable(left) || is_impossible_variable(right))
1424 return;
1426 get_real_absolute_rl(left, &left_orig);
1427 left_orig = cast_rl(type, left_orig);
1429 get_real_absolute_rl(right, &right_orig);
1430 right_orig = cast_rl(type, right_orig);
1432 split_comparison_rl(left_orig, op, right_orig, &left_true, &left_false, &right_true, &right_false);
1434 left_true = rl_truncate_cast(get_type(strip_expr(left)), left_true);
1435 left_false = rl_truncate_cast(get_type(strip_expr(left)), left_false);
1436 right_true = rl_truncate_cast(get_type(strip_expr(right)), right_true);
1437 right_false = rl_truncate_cast(get_type(strip_expr(right)), right_false);
1439 if (!left_true || !left_false) {
1440 struct range_list *tmp_true, *tmp_false;
1442 split_comparison_rl(alloc_whole_rl(type), op, right_orig, &tmp_true, &tmp_false, NULL, NULL);
1443 tmp_true = rl_truncate_cast(get_type(strip_expr(left)), tmp_true);
1444 tmp_false = rl_truncate_cast(get_type(strip_expr(left)), tmp_false);
1445 if (tmp_true && tmp_false)
1446 __save_imaginary_state(left, tmp_true, tmp_false);
1449 if (!right_true || !right_false) {
1450 struct range_list *tmp_true, *tmp_false;
1452 split_comparison_rl(alloc_whole_rl(type), op, right_orig, NULL, NULL, &tmp_true, &tmp_false);
1453 tmp_true = rl_truncate_cast(get_type(strip_expr(right)), tmp_true);
1454 tmp_false = rl_truncate_cast(get_type(strip_expr(right)), tmp_false);
1455 if (tmp_true && tmp_false)
1456 __save_imaginary_state(right, tmp_true, tmp_false);
1459 left_true_state = alloc_estate_rl(left_true);
1460 left_false_state = alloc_estate_rl(left_false);
1461 right_true_state = alloc_estate_rl(right_true);
1462 right_false_state = alloc_estate_rl(right_false);
1464 switch (op) {
1465 case '<':
1466 case SPECIAL_UNSIGNED_LT:
1467 case SPECIAL_UNSIGNED_LTE:
1468 case SPECIAL_LTE:
1469 if (get_hard_max(right, &dummy))
1470 estate_set_hard_max(left_true_state);
1471 if (get_hard_max(left, &dummy))
1472 estate_set_hard_max(right_false_state);
1473 break;
1474 case '>':
1475 case SPECIAL_UNSIGNED_GT:
1476 case SPECIAL_UNSIGNED_GTE:
1477 case SPECIAL_GTE:
1478 if (get_hard_max(left, &dummy))
1479 estate_set_hard_max(right_true_state);
1480 if (get_hard_max(right, &dummy))
1481 estate_set_hard_max(left_false_state);
1482 break;
1485 switch (op) {
1486 case '<':
1487 case SPECIAL_UNSIGNED_LT:
1488 case SPECIAL_UNSIGNED_LTE:
1489 case SPECIAL_LTE:
1490 if (get_hard_max(right, &hard_max)) {
1491 if (op == '<' || op == SPECIAL_UNSIGNED_LT)
1492 hard_max.value--;
1493 estate_set_fuzzy_max(left_true_state, hard_max);
1495 if (get_implied_value(right, &hard_max)) {
1496 if (op == SPECIAL_UNSIGNED_LTE ||
1497 op == SPECIAL_LTE)
1498 hard_max.value++;
1499 estate_set_fuzzy_max(left_false_state, hard_max);
1501 if (get_hard_max(left, &hard_max)) {
1502 if (op == SPECIAL_UNSIGNED_LTE ||
1503 op == SPECIAL_LTE)
1504 hard_max.value--;
1505 estate_set_fuzzy_max(right_false_state, hard_max);
1507 if (get_implied_value(left, &hard_max)) {
1508 if (op == '<' || op == SPECIAL_UNSIGNED_LT)
1509 hard_max.value++;
1510 estate_set_fuzzy_max(right_true_state, hard_max);
1512 break;
1513 case '>':
1514 case SPECIAL_UNSIGNED_GT:
1515 case SPECIAL_UNSIGNED_GTE:
1516 case SPECIAL_GTE:
1517 if (get_hard_max(left, &hard_max)) {
1518 if (op == '>' || op == SPECIAL_UNSIGNED_GT)
1519 hard_max.value--;
1520 estate_set_fuzzy_max(right_true_state, hard_max);
1522 if (get_implied_value(left, &hard_max)) {
1523 if (op == SPECIAL_UNSIGNED_GTE ||
1524 op == SPECIAL_GTE)
1525 hard_max.value++;
1526 estate_set_fuzzy_max(right_false_state, hard_max);
1528 if (get_hard_max(right, &hard_max)) {
1529 if (op == SPECIAL_UNSIGNED_LTE ||
1530 op == SPECIAL_LTE)
1531 hard_max.value--;
1532 estate_set_fuzzy_max(left_false_state, hard_max);
1534 if (get_implied_value(right, &hard_max)) {
1535 if (op == '>' ||
1536 op == SPECIAL_UNSIGNED_GT)
1537 hard_max.value++;
1538 estate_set_fuzzy_max(left_true_state, hard_max);
1540 break;
1541 case SPECIAL_EQUAL:
1542 if (get_hard_max(left, &hard_max))
1543 estate_set_fuzzy_max(right_true_state, hard_max);
1544 if (get_hard_max(right, &hard_max))
1545 estate_set_fuzzy_max(left_true_state, hard_max);
1546 break;
1549 if (get_hard_max(left, &hard_max)) {
1550 estate_set_hard_max(left_true_state);
1551 estate_set_hard_max(left_false_state);
1553 if (get_hard_max(right, &hard_max)) {
1554 estate_set_hard_max(right_true_state);
1555 estate_set_hard_max(right_false_state);
1558 if (left_postop == SPECIAL_INCREMENT) {
1559 left_true_state = increment_state(left_true_state);
1560 left_false_state = increment_state(left_false_state);
1562 if (left_postop == SPECIAL_DECREMENT) {
1563 left_true_state = decrement_state(left_true_state);
1564 left_false_state = decrement_state(left_false_state);
1566 if (right_postop == SPECIAL_INCREMENT) {
1567 right_true_state = increment_state(right_true_state);
1568 right_false_state = increment_state(right_false_state);
1570 if (right_postop == SPECIAL_DECREMENT) {
1571 right_true_state = decrement_state(right_true_state);
1572 right_false_state = decrement_state(right_false_state);
1575 if (estate_rl(left_true_state) && estates_equiv(left_true_state, left_false_state)) {
1576 left_true_state = NULL;
1577 left_false_state = NULL;
1580 if (estate_rl(right_true_state) && estates_equiv(right_true_state, right_false_state)) {
1581 right_true_state = NULL;
1582 right_false_state = NULL;
1585 /* Don't introduce new states for known true/false conditions */
1586 if (rl_equiv(left_orig, estate_rl(left_true_state)))
1587 left_true_state = NULL;
1588 if (rl_equiv(left_orig, estate_rl(left_false_state)))
1589 left_false_state = NULL;
1590 if (rl_equiv(right_orig, estate_rl(right_true_state)))
1591 right_true_state = NULL;
1592 if (rl_equiv(right_orig, estate_rl(right_false_state)))
1593 right_false_state = NULL;
1595 set_extra_expr_true_false(left, left_true_state, left_false_state);
1596 set_extra_expr_true_false(right, right_true_state, right_false_state);
1599 static int is_simple_math(struct expression *expr)
1601 if (!expr)
1602 return 0;
1603 if (expr->type != EXPR_BINOP)
1604 return 0;
1605 switch (expr->op) {
1606 case '+':
1607 case '-':
1608 case '*':
1609 return 1;
1611 return 0;
1614 static void move_known_values(struct expression **left_p, struct expression **right_p)
1616 struct expression *left = *left_p;
1617 struct expression *right = *right_p;
1618 sval_t sval, dummy;
1620 if (get_implied_value(left, &sval)) {
1621 if (!is_simple_math(right))
1622 return;
1623 if (get_implied_value(right, &dummy))
1624 return;
1625 if (right->op == '*') {
1626 sval_t divisor;
1628 if (!get_value(right->right, &divisor))
1629 return;
1630 if (divisor.value == 0)
1631 return;
1632 *left_p = binop_expression(left, invert_op(right->op), right->right);
1633 *right_p = right->left;
1634 return;
1636 if (right->op == '+' && get_value(right->left, &sval)) {
1637 *left_p = binop_expression(left, invert_op(right->op), right->left);
1638 *right_p = right->right;
1639 return;
1641 if (get_value(right->right, &sval)) {
1642 *left_p = binop_expression(left, invert_op(right->op), right->right);
1643 *right_p = right->left;
1644 return;
1646 return;
1648 if (get_implied_value(right, &sval)) {
1649 if (!is_simple_math(left))
1650 return;
1651 if (get_implied_value(left, &dummy))
1652 return;
1653 if (left->op == '*') {
1654 sval_t divisor;
1656 if (!get_value(left->right, &divisor))
1657 return;
1658 if (divisor.value == 0)
1659 return;
1660 *right_p = binop_expression(right, invert_op(left->op), left->right);
1661 *left_p = left->left;
1662 return;
1664 if (left->op == '+' && get_value(left->left, &sval)) {
1665 *right_p = binop_expression(right, invert_op(left->op), left->left);
1666 *left_p = left->right;
1667 return;
1670 if (get_value(left->right, &sval)) {
1671 *right_p = binop_expression(right, invert_op(left->op), left->right);
1672 *left_p = left->left;
1673 return;
1675 return;
1680 * The reason for do_simple_algebra() is to solve things like:
1681 * if (foo > 66 || foo + bar > 64) {
1682 * "foo" is not really a known variable so it won't be handled by
1683 * move_known_variables() but it's a super common idiom.
1686 static int do_simple_algebra(struct expression **left_p, struct expression **right_p)
1688 struct expression *left = *left_p;
1689 struct expression *right = *right_p;
1690 struct range_list *rl;
1691 sval_t tmp;
1693 if (left->type != EXPR_BINOP || left->op != '+')
1694 return 0;
1695 if (can_integer_overflow(get_type(left), left))
1696 return 0;
1697 if (!get_implied_value(right, &tmp))
1698 return 0;
1700 if (!get_implied_value(left->left, &tmp) &&
1701 get_implied_rl(left->left, &rl) &&
1702 !is_whole_rl(rl)) {
1703 *right_p = binop_expression(right, '-', left->left);
1704 *left_p = left->right;
1705 return 1;
1707 if (!get_implied_value(left->right, &tmp) &&
1708 get_implied_rl(left->right, &rl) &&
1709 !is_whole_rl(rl)) {
1710 *right_p = binop_expression(right, '-', left->right);
1711 *left_p = left->left;
1712 return 1;
1715 return 0;
1718 static int match_func_comparison(struct expression *expr)
1720 struct expression *left = strip_expr(expr->left);
1721 struct expression *right = strip_expr(expr->right);
1723 if (left->type == EXPR_CALL || right->type == EXPR_CALL) {
1724 function_comparison(left, expr->op, right);
1725 return 1;
1728 return 0;
1731 /* Handle conditions like "if (foo + bar < foo) {" */
1732 static int handle_integer_overflow_test(struct expression *expr)
1734 struct expression *left, *right;
1735 struct symbol *type;
1736 sval_t left_min, right_min, min, max;
1738 if (expr->op != '<' && expr->op != SPECIAL_UNSIGNED_LT)
1739 return 0;
1741 left = strip_parens(expr->left);
1742 right = strip_parens(expr->right);
1744 if (left->op != '+')
1745 return 0;
1747 type = get_type(expr);
1748 if (!type)
1749 return 0;
1750 if (type_positive_bits(type) == 32) {
1751 max.type = &uint_ctype;
1752 max.uvalue = (unsigned int)-1;
1753 } else if (type_positive_bits(type) == 64) {
1754 max.type = &ulong_ctype;
1755 max.value = (unsigned long long)-1;
1756 } else {
1757 return 0;
1760 if (!expr_equiv(left->left, right) && !expr_equiv(left->right, right))
1761 return 0;
1763 get_absolute_min(left->left, &left_min);
1764 get_absolute_min(left->right, &right_min);
1765 min = sval_binop(left_min, '+', right_min);
1767 set_extra_chunk_true_false(left, NULL, alloc_estate_range(min, max));
1768 return 1;
1771 static void match_comparison(struct expression *expr)
1773 struct expression *left_orig = strip_parens(expr->left);
1774 struct expression *right_orig = strip_parens(expr->right);
1775 struct expression *left, *right, *tmp;
1776 struct expression *prev;
1777 struct symbol *type;
1778 int redo, count;
1780 if (match_func_comparison(expr))
1781 return;
1783 type = get_type(expr);
1784 if (!type)
1785 type = &llong_ctype;
1787 if (handle_integer_overflow_test(expr))
1788 return;
1790 left = left_orig;
1791 right = right_orig;
1792 move_known_values(&left, &right);
1793 handle_comparison(type, left, expr->op, right);
1795 left = left_orig;
1796 right = right_orig;
1797 if (do_simple_algebra(&left, &right))
1798 handle_comparison(type, left, expr->op, right);
1800 prev = get_assigned_expr(left_orig);
1801 if (is_simple_math(prev) && has_variable(prev, left_orig) == 0) {
1802 left = prev;
1803 right = right_orig;
1804 move_known_values(&left, &right);
1805 handle_comparison(type, left, expr->op, right);
1808 prev = get_assigned_expr(right_orig);
1809 if (is_simple_math(prev) && has_variable(prev, right_orig) == 0) {
1810 left = left_orig;
1811 right = prev;
1812 move_known_values(&left, &right);
1813 handle_comparison(type, left, expr->op, right);
1816 redo = 0;
1817 left = left_orig;
1818 right = right_orig;
1819 if (get_last_expr_from_expression_stmt(left_orig)) {
1820 left = get_last_expr_from_expression_stmt(left_orig);
1821 redo = 1;
1823 if (get_last_expr_from_expression_stmt(right_orig)) {
1824 right = get_last_expr_from_expression_stmt(right_orig);
1825 redo = 1;
1828 if (!redo)
1829 return;
1831 count = 0;
1832 while ((tmp = get_assigned_expr(left))) {
1833 if (count++ > 3)
1834 break;
1835 left = strip_expr(tmp);
1837 count = 0;
1838 while ((tmp = get_assigned_expr(right))) {
1839 if (count++ > 3)
1840 break;
1841 right = strip_expr(tmp);
1844 handle_comparison(type, left, expr->op, right);
1847 static sval_t get_high_mask(sval_t known)
1849 sval_t ret;
1850 int i;
1852 ret = known;
1853 ret.value = 0;
1855 for (i = type_bits(known.type) - 1; i >= 0; i--) {
1856 if (known.uvalue & (1ULL << i))
1857 ret.uvalue |= (1ULL << i);
1858 else
1859 return ret;
1862 return ret;
1865 static void handle_AND_op(struct expression *var, sval_t known)
1867 struct range_list *orig_rl;
1868 struct range_list *true_rl = NULL;
1869 struct range_list *false_rl = NULL;
1870 int bit;
1871 sval_t low_mask = known;
1872 sval_t high_mask;
1873 sval_t max;
1875 get_absolute_rl(var, &orig_rl);
1877 if (known.value > 0) {
1878 bit = ffsll(known.value) - 1;
1879 low_mask.uvalue = (1ULL << bit) - 1;
1880 true_rl = remove_range(orig_rl, sval_type_val(known.type, 0), low_mask);
1882 high_mask = get_high_mask(known);
1883 if (high_mask.value) {
1884 bit = ffsll(high_mask.value) - 1;
1885 low_mask.uvalue = (1ULL << bit) - 1;
1887 false_rl = orig_rl;
1888 if (sval_is_negative(rl_min(orig_rl)))
1889 false_rl = remove_range(false_rl, sval_type_min(known.type), sval_type_val(known.type, -1));
1890 false_rl = remove_range(false_rl, low_mask, sval_type_max(known.type));
1891 if (type_signed(high_mask.type) && type_unsigned(rl_type(false_rl))) {
1892 false_rl = remove_range(false_rl,
1893 sval_type_val(rl_type(false_rl), sval_type_max(known.type).uvalue),
1894 sval_type_val(rl_type(false_rl), -1));
1896 } else if (known.value == 1 &&
1897 get_hard_max(var, &max) &&
1898 sval_cmp(max, rl_max(orig_rl)) == 0 &&
1899 max.value & 1) {
1900 false_rl = remove_range(orig_rl, max, max);
1902 set_extra_expr_true_false(var,
1903 true_rl ? alloc_estate_rl(true_rl) : NULL,
1904 false_rl ? alloc_estate_rl(false_rl) : NULL);
1907 static void handle_AND_condition(struct expression *expr)
1909 sval_t known;
1911 if (get_implied_value(expr->left, &known))
1912 handle_AND_op(expr->right, known);
1913 else if (get_implied_value(expr->right, &known))
1914 handle_AND_op(expr->left, known);
1917 static void handle_MOD_condition(struct expression *expr)
1919 struct range_list *orig_rl;
1920 struct range_list *true_rl;
1921 struct range_list *false_rl = NULL;
1922 sval_t right;
1923 sval_t zero = {
1924 .value = 0,
1927 if (!get_implied_value(expr->right, &right) || right.value == 0)
1928 return;
1929 get_absolute_rl(expr->left, &orig_rl);
1931 zero.type = rl_type(orig_rl);
1933 /* We're basically dorking around the min and max here */
1934 true_rl = remove_range(orig_rl, zero, zero);
1935 if (!sval_is_max(rl_max(true_rl)) &&
1936 !(rl_max(true_rl).value % right.value))
1937 true_rl = remove_range(true_rl, rl_max(true_rl), rl_max(true_rl));
1939 if (rl_equiv(true_rl, orig_rl))
1940 true_rl = NULL;
1942 if (sval_is_positive(rl_min(orig_rl)) &&
1943 (rl_max(orig_rl).value - rl_min(orig_rl).value) / right.value < 5) {
1944 sval_t add;
1945 int i;
1947 add = rl_min(orig_rl);
1948 add.value += right.value - (add.value % right.value);
1949 add.value -= right.value;
1951 for (i = 0; i < 5; i++) {
1952 add.value += right.value;
1953 if (add.value > rl_max(orig_rl).value)
1954 break;
1955 add_range(&false_rl, add, add);
1957 } else {
1958 if (rl_min(orig_rl).uvalue != 0 &&
1959 rl_min(orig_rl).uvalue < right.uvalue) {
1960 sval_t chop = right;
1961 chop.value--;
1962 false_rl = remove_range(orig_rl, zero, chop);
1965 if (!sval_is_max(rl_max(orig_rl)) &&
1966 (rl_max(orig_rl).value % right.value)) {
1967 sval_t chop = rl_max(orig_rl);
1968 chop.value -= chop.value % right.value;
1969 chop.value++;
1970 if (!false_rl)
1971 false_rl = clone_rl(orig_rl);
1972 false_rl = remove_range(false_rl, chop, rl_max(orig_rl));
1976 set_extra_expr_true_false(expr->left,
1977 true_rl ? alloc_estate_rl(true_rl) : NULL,
1978 false_rl ? alloc_estate_rl(false_rl) : NULL);
1981 /* this is actually hooked from smatch_implied.c... it's hacky, yes */
1982 void __extra_match_condition(struct expression *expr)
1984 expr = strip_expr(expr);
1985 switch (expr->type) {
1986 case EXPR_CALL:
1987 function_comparison(expr, SPECIAL_NOTEQUAL, zero_expr());
1988 return;
1989 case EXPR_PREOP:
1990 case EXPR_SYMBOL:
1991 case EXPR_DEREF:
1992 handle_comparison(get_type(expr), expr, SPECIAL_NOTEQUAL, zero_expr());
1993 return;
1994 case EXPR_COMPARE:
1995 match_comparison(expr);
1996 return;
1997 case EXPR_ASSIGNMENT:
1998 __extra_match_condition(expr->left);
1999 return;
2000 case EXPR_BINOP:
2001 if (expr->op == '&')
2002 handle_AND_condition(expr);
2003 if (expr->op == '%')
2004 handle_MOD_condition(expr);
2005 return;
2009 static void assume_indexes_are_valid(struct expression *expr)
2011 struct expression *array_expr;
2012 int array_size;
2013 struct expression *offset;
2014 struct symbol *offset_type;
2015 struct range_list *rl_before;
2016 struct range_list *rl_after;
2017 struct range_list *filter = NULL;
2018 sval_t size;
2020 expr = strip_expr(expr);
2021 if (!is_array(expr))
2022 return;
2024 offset = get_array_offset(expr);
2025 offset_type = get_type(offset);
2026 if (offset_type && type_signed(offset_type)) {
2027 filter = alloc_rl(sval_type_min(offset_type),
2028 sval_type_val(offset_type, -1));
2031 array_expr = get_array_base(expr);
2032 array_size = get_real_array_size(array_expr);
2033 if (array_size > 1) {
2034 size = sval_type_val(offset_type, array_size);
2035 add_range(&filter, size, sval_type_max(offset_type));
2038 if (!filter)
2039 return;
2040 get_absolute_rl(offset, &rl_before);
2041 rl_after = rl_filter(rl_before, filter);
2042 if (rl_equiv(rl_before, rl_after))
2043 return;
2044 set_extra_expr_nomod(offset, alloc_estate_rl(rl_after));
2047 /* returns 1 if it is not possible for expr to be value, otherwise returns 0 */
2048 int implied_not_equal(struct expression *expr, long long val)
2050 return !possibly_false(expr, SPECIAL_NOTEQUAL, value_expr(val));
2053 int implied_not_equal_name_sym(char *name, struct symbol *sym, long long val)
2055 struct smatch_state *estate;
2057 estate = get_state(SMATCH_EXTRA, name, sym);
2058 if (!estate)
2059 return 0;
2060 if (!rl_has_sval(estate_rl(estate), sval_type_val(estate_type(estate), 0)))
2061 return 1;
2062 return 0;
2065 int parent_is_null_var_sym(const char *name, struct symbol *sym)
2067 char buf[256];
2068 char *start;
2069 char *end;
2070 struct smatch_state *state;
2072 strncpy(buf, name, sizeof(buf) - 1);
2073 buf[sizeof(buf) - 1] = '\0';
2075 start = &buf[0];
2076 while (*start == '*') {
2077 start++;
2078 state = get_state(SMATCH_EXTRA, start, sym);
2079 if (!state)
2080 continue;
2081 if (!estate_rl(state))
2082 return 1;
2083 if (estate_min(state).value == 0 &&
2084 estate_max(state).value == 0)
2085 return 1;
2088 start = &buf[0];
2089 while (*start == '&')
2090 start++;
2092 while ((end = strrchr(start, '-'))) {
2093 *end = '\0';
2094 state = __get_state(SMATCH_EXTRA, start, sym);
2095 if (!state)
2096 continue;
2097 if (estate_min(state).value == 0 &&
2098 estate_max(state).value == 0)
2099 return 1;
2101 return 0;
2104 int parent_is_null(struct expression *expr)
2106 struct symbol *sym;
2107 char *var;
2108 int ret = 0;
2110 expr = strip_expr(expr);
2111 var = expr_to_var_sym(expr, &sym);
2112 if (!var || !sym)
2113 goto free;
2114 ret = parent_is_null_var_sym(var, sym);
2115 free:
2116 free_string(var);
2117 return ret;
2120 static int param_used_callback(void *found, int argc, char **argv, char **azColName)
2122 *(int *)found = 1;
2123 return 0;
2126 static int is_kzalloc_info(struct sm_state *sm)
2128 sval_t sval;
2131 * kzalloc() information is treated as special because so there is just
2132 * a lot of stuff initialized to zero and it makes building the database
2133 * take hours and hours.
2135 * In theory, we should just remove this line and not pass any unused
2136 * information, but I'm not sure enough that this code works so I want
2137 * to hold off on that for now.
2139 if (!estate_get_single_value(sm->state, &sval))
2140 return 0;
2141 if (sval.value != 0)
2142 return 0;
2143 return 1;
2146 static int is_really_long(struct sm_state *sm)
2148 const char *p;
2149 int cnt = 0;
2151 p = sm->name;
2152 while ((p = strstr(p, "->"))) {
2153 p += 2;
2154 cnt++;
2157 if (cnt < 3 ||
2158 strlen(sm->name) < 40)
2159 return 0;
2160 return 1;
2163 static int filter_unused_param_value_info(struct expression *call, int param, char *printed_name, struct sm_state *sm)
2165 int found = 0;
2167 /* for function pointers assume everything is used */
2168 if (call->fn->type != EXPR_SYMBOL)
2169 return 0;
2172 * This is to handle __builtin_mul_overflow(). In an ideal world we
2173 * would only need this for invalid code.
2176 if (!call->fn->symbol)
2177 return 0;
2179 if (!is_kzalloc_info(sm) && !is_really_long(sm))
2180 return 0;
2182 run_sql(&param_used_callback, &found,
2183 "select * from return_implies where %s and type = %d and parameter = %d and key = '%s';",
2184 get_static_filter(call->fn->symbol), PARAM_USED, param, printed_name);
2185 if (found)
2186 return 0;
2188 /* If the database is not built yet, then assume everything is used */
2189 run_sql(&param_used_callback, &found,
2190 "select * from return_implies where %s and type = %d;",
2191 get_static_filter(call->fn->symbol), PARAM_USED);
2192 if (!found)
2193 return 0;
2195 return 1;
2198 struct range_list *intersect_with_real_abs_var_sym(const char *name, struct symbol *sym, struct range_list *start)
2200 struct smatch_state *state;
2203 * Here is the difference between implied value and real absolute, say
2204 * you have:
2206 * int a = (u8)x;
2208 * Then you know that a is 0-255. That's real absolute. But you don't
2209 * know for sure that it actually goes up to 255. So it's not implied.
2210 * Implied indicates a degree of certainty.
2212 * But then say you cap "a" at 8. That means you know it goes up to
2213 * 8. So now the implied value is s32min-8. But you can combine it
2214 * with the real absolute to say that actually it's 0-8.
2216 * We are combining it here. But now that I think about it, this is
2217 * probably not the ideal place to combine it because it should proably
2218 * be done earlier. Oh well, this is an improvement on what was there
2219 * before so I'm going to commit this code.
2223 state = get_real_absolute_state_var_sym(name, sym);
2224 if (!state || !estate_rl(state))
2225 return start;
2227 return rl_intersection(estate_rl(state), start);
2230 struct range_list *intersect_with_real_abs_expr(struct expression *expr, struct range_list *start)
2232 struct smatch_state *state;
2233 struct range_list *abs_rl;
2235 state = get_real_absolute_state(expr);
2236 if (!state || !estate_rl(state))
2237 return start;
2239 abs_rl = cast_rl(rl_type(start), estate_rl(state));
2240 return rl_intersection(abs_rl, start);
2243 static void struct_member_callback(struct expression *call, int param, char *printed_name, struct sm_state *sm)
2245 struct range_list *rl;
2247 if (estate_is_whole(sm->state))
2248 return;
2249 if (filter_unused_param_value_info(call, param, printed_name, sm))
2250 return;
2251 rl = estate_rl(sm->state);
2252 rl = intersect_with_real_abs_var_sym(sm->name, sm->sym, rl);
2253 sql_insert_caller_info(call, PARAM_VALUE, param, printed_name, show_rl(rl));
2254 if (estate_has_fuzzy_max(sm->state))
2255 sql_insert_caller_info(call, FUZZY_MAX, param, printed_name,
2256 sval_to_str(estate_get_fuzzy_max(sm->state)));
2259 static void returned_struct_members(int return_id, char *return_ranges, struct expression *expr)
2261 struct symbol *returned_sym;
2262 char *returned_name;
2263 struct sm_state *sm;
2264 char *compare_str;
2265 char name_buf[256];
2266 char val_buf[256];
2267 int len;
2269 // FIXME handle *$
2271 if (!is_pointer(expr))
2272 return;
2274 returned_name = expr_to_var_sym(expr, &returned_sym);
2275 if (!returned_name || !returned_sym)
2276 goto free;
2277 len = strlen(returned_name);
2279 FOR_EACH_MY_SM(my_id, __get_cur_stree(), sm) {
2280 if (!estate_rl(sm->state))
2281 continue;
2282 if (returned_sym != sm->sym)
2283 continue;
2284 if (strncmp(returned_name, sm->name, len) != 0)
2285 continue;
2286 if (sm->name[len] != '-')
2287 continue;
2289 snprintf(name_buf, sizeof(name_buf), "$%s", sm->name + len);
2291 compare_str = name_sym_to_param_comparison(sm->name, sm->sym);
2292 if (!compare_str && estate_is_whole(sm->state))
2293 continue;
2294 snprintf(val_buf, sizeof(val_buf), "%s%s", sm->state->name, compare_str ?: "");
2296 sql_insert_return_states(return_id, return_ranges, PARAM_VALUE,
2297 -1, name_buf, val_buf);
2298 } END_FOR_EACH_SM(sm);
2300 free:
2301 free_string(returned_name);
2304 static void db_limited_before(void)
2306 unmatched_stree = clone_stree(__get_cur_stree());
2309 static void db_limited_after(void)
2311 free_stree(&unmatched_stree);
2314 static int rl_fits_in_type(struct range_list *rl, struct symbol *type)
2316 if (type_bits(rl_type(rl)) <= type_bits(type))
2317 return 1;
2318 if (sval_cmp(rl_max(rl), sval_type_max(type)) > 0)
2319 return 0;
2320 if (sval_is_negative(rl_min(rl)) &&
2321 sval_cmp(rl_min(rl), sval_type_min(type)) < 0)
2322 return 0;
2323 return 1;
2326 static int basically_the_same(struct range_list *orig, struct range_list *new)
2328 if (rl_equiv(orig, new))
2329 return 1;
2332 * The whole range is essentially the same as 0,4096-27777777777 so
2333 * don't overwrite the implications just to store that.
2336 if (rl_type(orig)->type == SYM_PTR &&
2337 is_whole_rl(orig) &&
2338 rl_min(new).value == 0 &&
2339 rl_max(new).value == valid_ptr_max)
2340 return 1;
2341 return 0;
2344 static void db_param_limit_binops(struct expression *arg, char *key, struct range_list *rl)
2346 struct range_list *left_rl;
2347 sval_t zero = { .type = rl_type(rl), };
2348 sval_t sval;
2350 if (arg->op != '*')
2351 return;
2352 if (!get_implied_value(arg->right, &sval))
2353 return;
2354 if (can_integer_overflow(get_type(arg), arg))
2355 return;
2357 left_rl = rl_binop(rl, '/', alloc_rl(sval, sval));
2358 if (!rl_has_sval(rl, zero))
2359 left_rl = remove_range(left_rl, zero, zero);
2361 set_extra_expr_nomod(arg->left, alloc_estate_rl(left_rl));
2364 static void db_param_limit_filter(struct expression *expr, int param, char *key, char *value, enum info_type op)
2366 struct expression *arg;
2367 char *name;
2368 struct symbol *sym;
2369 struct var_sym_list *vsl = NULL;
2370 struct sm_state *sm;
2371 struct symbol *compare_type, *var_type;
2372 struct range_list *rl;
2373 struct range_list *limit;
2374 struct range_list *new;
2375 char *tmp_name;
2376 struct symbol *tmp_sym;
2378 while (expr->type == EXPR_ASSIGNMENT)
2379 expr = strip_expr(expr->right);
2380 if (expr->type != EXPR_CALL)
2381 return;
2383 arg = get_argument_from_call_expr(expr->args, param);
2384 if (!arg)
2385 return;
2387 name = get_chunk_from_key(arg, key, &sym, &vsl);
2388 if (!name)
2389 return;
2390 if (op != PARAM_LIMIT && !sym)
2391 goto free;
2393 if (strcmp(key, "$") == 0)
2394 compare_type = get_arg_type(expr->fn, param);
2395 else
2396 compare_type = get_member_type_from_key(arg, key);
2398 sm = get_sm_state(SMATCH_EXTRA, name, sym);
2399 if (sm)
2400 rl = estate_rl(sm->state);
2401 else
2402 rl = alloc_whole_rl(compare_type);
2404 if (op == PARAM_LIMIT && !rl_fits_in_type(rl, compare_type))
2405 goto free;
2407 call_results_to_rl(expr, compare_type, value, &limit);
2408 new = rl_intersection(rl, limit);
2410 var_type = get_member_type_from_key(arg, key);
2411 new = cast_rl(var_type, new);
2413 /* We want to preserve the implications here */
2414 if (sm && basically_the_same(estate_rl(sm->state), new))
2415 goto free;
2416 tmp_name = map_long_to_short_name_sym(name, sym, &tmp_sym);
2417 if (tmp_name && tmp_sym) {
2418 free_string(name);
2419 name = tmp_name;
2420 sym = tmp_sym;
2423 if (op == PARAM_LIMIT)
2424 set_extra_nomod_vsl(name, sym, vsl, NULL, alloc_estate_rl(new));
2425 else
2426 set_extra_mod(name, sym, NULL, alloc_estate_rl(new));
2428 if (op == PARAM_LIMIT && arg->type == EXPR_BINOP)
2429 db_param_limit_binops(arg, key, new);
2430 free:
2431 free_string(name);
2434 static void db_param_limit(struct expression *expr, int param, char *key, char *value)
2436 db_param_limit_filter(expr, param, key, value, PARAM_LIMIT);
2439 static void db_param_filter(struct expression *expr, int param, char *key, char *value)
2441 db_param_limit_filter(expr, param, key, value, PARAM_FILTER);
2444 static void db_param_add_set(struct expression *expr, int param, char *key, char *value, enum info_type op)
2446 struct expression *arg;
2447 char *name, *tmp_name;
2448 struct symbol *sym, *tmp_sym;
2449 struct symbol *param_type, *arg_type;
2450 struct smatch_state *state;
2451 struct range_list *new = NULL;
2452 struct range_list *added = NULL;
2454 while (expr->type == EXPR_ASSIGNMENT)
2455 expr = strip_expr(expr->right);
2456 if (expr->type != EXPR_CALL)
2457 return;
2459 arg = get_argument_from_call_expr(expr->args, param);
2460 if (!arg)
2461 return;
2463 arg_type = get_arg_type_from_key(expr->fn, param, arg, key);
2464 param_type = get_member_type_from_key(arg, key);
2465 name = get_variable_from_key(arg, key, &sym);
2466 if (!name || !sym)
2467 goto free;
2469 state = get_state(SMATCH_EXTRA, name, sym);
2470 if (state)
2471 new = estate_rl(state);
2473 call_results_to_rl(expr, arg_type, value, &added);
2474 added = cast_rl(param_type, added);
2475 if (op == PARAM_SET)
2476 new = added;
2477 else
2478 new = rl_union(new, added);
2480 tmp_name = map_long_to_short_name_sym_nostack(name, sym, &tmp_sym);
2481 if (tmp_name && tmp_sym) {
2482 free_string(name);
2483 name = tmp_name;
2484 sym = tmp_sym;
2486 set_extra_mod(name, sym, NULL, alloc_estate_rl(new));
2487 free:
2488 free_string(name);
2491 static void db_param_add(struct expression *expr, int param, char *key, char *value)
2493 in_param_set = true;
2494 db_param_add_set(expr, param, key, value, PARAM_ADD);
2495 in_param_set = false;
2498 static void db_param_set(struct expression *expr, int param, char *key, char *value)
2500 in_param_set = true;
2501 db_param_add_set(expr, param, key, value, PARAM_SET);
2502 in_param_set = false;
2505 static void match_lost_param(struct expression *call, int param)
2507 struct expression *arg;
2509 if (is_const_param(call->fn, param))
2510 return;
2512 arg = get_argument_from_call_expr(call->args, param);
2513 if (!arg)
2514 return;
2516 arg = strip_expr(arg);
2517 if (arg->type == EXPR_PREOP && arg->op == '&')
2518 set_extra_expr_mod(arg->unop, alloc_estate_whole(get_type(arg->unop)));
2519 else
2520 ; /* if pointer then set struct members, maybe?*/
2523 static void db_param_value(struct expression *expr, int param, char *key, char *value)
2525 struct expression *call;
2526 char *name;
2527 struct symbol *sym;
2528 struct symbol *type;
2529 struct range_list *rl = NULL;
2531 if (param != -1)
2532 return;
2534 call = expr;
2535 while (call->type == EXPR_ASSIGNMENT)
2536 call = strip_expr(call->right);
2537 if (call->type != EXPR_CALL)
2538 return;
2540 type = get_member_type_from_key(expr->left, key);
2541 name = get_variable_from_key(expr->left, key, &sym);
2542 if (!name || !sym)
2543 goto free;
2545 call_results_to_rl(call, type, value, &rl);
2547 set_extra_mod(name, sym, NULL, alloc_estate_rl(rl));
2548 free:
2549 free_string(name);
2552 static void match_call_info(struct expression *expr)
2554 struct smatch_state *state;
2555 struct range_list *rl = NULL;
2556 struct expression *arg;
2557 struct symbol *type;
2558 int i = 0;
2560 FOR_EACH_PTR(expr->args, arg) {
2561 type = get_arg_type(expr->fn, i);
2563 get_absolute_rl(arg, &rl);
2564 rl = cast_rl(type, rl);
2566 if (!is_whole_rl(rl)) {
2567 rl = intersect_with_real_abs_expr(arg, rl);
2568 sql_insert_caller_info(expr, PARAM_VALUE, i, "$", show_rl(rl));
2570 state = get_state_expr(SMATCH_EXTRA, arg);
2571 if (estate_has_fuzzy_max(state)) {
2572 sql_insert_caller_info(expr, FUZZY_MAX, i, "$",
2573 sval_to_str(estate_get_fuzzy_max(state)));
2575 i++;
2576 } END_FOR_EACH_PTR(arg);
2579 static void set_param_value(const char *name, struct symbol *sym, char *key, char *value)
2581 struct range_list *rl = NULL;
2582 struct smatch_state *state;
2583 struct symbol *type;
2584 char fullname[256];
2585 sval_t dummy;
2587 if (strcmp(key, "*$") == 0)
2588 snprintf(fullname, sizeof(fullname), "*%s", name);
2589 else if (strncmp(key, "$", 1) == 0)
2590 snprintf(fullname, 256, "%s%s", name, key + 1);
2591 else
2592 return;
2594 type = get_member_type_from_key(symbol_expression(sym), key);
2595 str_to_rl(type, value, &rl);
2596 state = alloc_estate_rl(rl);
2597 if (estate_get_single_value(state, &dummy))
2598 estate_set_hard_max(state);
2599 set_state(SMATCH_EXTRA, fullname, sym, state);
2602 static void set_param_hard_max(const char *name, struct symbol *sym, char *key, char *value)
2604 struct range_list *rl = NULL;
2605 struct smatch_state *state;
2606 struct symbol *type;
2607 char fullname[256];
2608 sval_t max;
2610 if (strcmp(key, "*$") == 0)
2611 snprintf(fullname, sizeof(fullname), "*%s", name);
2612 else if (strncmp(key, "$", 1) == 0)
2613 snprintf(fullname, 256, "%s%s", name, key + 1);
2614 else
2615 return;
2617 state = get_state(SMATCH_EXTRA, fullname, sym);
2618 if (!state)
2619 return;
2620 type = get_member_type_from_key(symbol_expression(sym), key);
2621 str_to_rl(type, value, &rl);
2622 if (!rl_to_sval(rl, &max))
2623 return;
2624 estate_set_fuzzy_max(state, max);
2627 struct sm_state *get_extra_sm_state(struct expression *expr)
2629 char *name;
2630 struct symbol *sym;
2631 struct sm_state *ret = NULL;
2633 name = expr_to_known_chunk_sym(expr, &sym);
2634 if (!name)
2635 goto free;
2637 ret = get_sm_state(SMATCH_EXTRA, name, sym);
2638 free:
2639 free_string(name);
2640 return ret;
2643 struct smatch_state *get_extra_state(struct expression *expr)
2645 struct sm_state *sm;
2647 sm = get_extra_sm_state(expr);
2648 if (!sm)
2649 return NULL;
2650 return sm->state;
2653 void register_smatch_extra(int id)
2655 my_id = id;
2657 add_merge_hook(my_id, &merge_estates);
2658 add_unmatched_state_hook(my_id, &unmatched_state);
2659 select_caller_info_hook(set_param_value, PARAM_VALUE);
2660 select_caller_info_hook(set_param_hard_max, FUZZY_MAX);
2661 select_return_states_before(&db_limited_before);
2662 select_return_states_hook(PARAM_LIMIT, &db_param_limit);
2663 select_return_states_hook(PARAM_FILTER, &db_param_filter);
2664 select_return_states_hook(PARAM_ADD, &db_param_add);
2665 select_return_states_hook(PARAM_SET, &db_param_set);
2666 add_lost_param_hook(&match_lost_param);
2667 select_return_states_hook(PARAM_VALUE, &db_param_value);
2668 select_return_states_after(&db_limited_after);
2671 static void match_link_modify(struct sm_state *sm, struct expression *mod_expr)
2673 struct var_sym_list *links;
2674 struct var_sym *tmp;
2675 struct smatch_state *state;
2677 links = sm->state->data;
2679 FOR_EACH_PTR(links, tmp) {
2680 if (sm->sym == tmp->sym &&
2681 strcmp(sm->name, tmp->var) == 0)
2682 continue;
2683 state = get_state(SMATCH_EXTRA, tmp->var, tmp->sym);
2684 if (!state)
2685 continue;
2686 set_state(SMATCH_EXTRA, tmp->var, tmp->sym, alloc_estate_whole(estate_type(state)));
2687 } END_FOR_EACH_PTR(tmp);
2688 set_state(link_id, sm->name, sm->sym, &undefined);
2691 void register_smatch_extra_links(int id)
2693 link_id = id;
2696 void register_smatch_extra_late(int id)
2698 add_merge_hook(link_id, &merge_link_states);
2699 add_modification_hook(link_id, &match_link_modify);
2700 add_hook(&match_dereferences, DEREF_HOOK);
2701 add_hook(&match_pointer_as_array, OP_HOOK);
2702 select_return_implies_hook(DEREFERENCE, &set_param_dereferenced);
2703 add_hook(&match_function_call, FUNCTION_CALL_HOOK);
2704 add_hook(&match_assign, ASSIGNMENT_HOOK);
2705 add_hook(&match_assign, GLOBAL_ASSIGNMENT_HOOK);
2706 add_hook(&unop_expr, OP_HOOK);
2707 add_hook(&asm_expr, ASM_HOOK);
2709 add_hook(&match_call_info, FUNCTION_CALL_HOOK);
2710 add_member_info_callback(my_id, struct_member_callback);
2711 add_split_return_callback(&returned_struct_members);
2713 // add_hook(&assume_indexes_are_valid, OP_HOOK);