2 * Copyright (C) 2009 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 * There are several types of function hooks:
20 * add_function_hook() - For any time a function is called.
21 * add_function_assign_hook() - foo = the_function().
22 * add_implied_return_hook() - Calculates the implied return value.
23 * add_macro_assign_hook() - foo = the_macro().
24 * return_implies_state() - For when a return value of 1 implies locked
25 * and 0 implies unlocked. etc. etc.
32 #include "smatch_slist.h"
33 #include "smatch_extra.h"
34 #include "smatch_function_hashtable.h"
38 struct data_range
*range
;
41 implication_hook
*ranged
;
42 implied_return_hook
*implied_return
;
47 ALLOCATOR(fcall_back
, "call backs");
48 DECLARE_PTR_LIST(call_back_list
, struct fcall_back
);
50 DEFINE_FUNCTION_HASHTABLE_STATIC(callback
, struct fcall_back
, struct call_back_list
);
51 static struct hashtable
*func_hash
;
53 int __in_fake_parameter_assign
;
55 #define REGULAR_CALL 0
58 #define IMPLIED_RETURN 3
59 #define MACRO_ASSIGN 4
60 #define MACRO_ASSIGN_EXTRA 5
62 struct return_implies_callback
{
64 return_implies_hook
*callback
;
66 ALLOCATOR(return_implies_callback
, "return_implies callbacks");
67 DECLARE_PTR_LIST(db_implies_list
, struct return_implies_callback
);
68 static struct db_implies_list
*db_return_states_list
;
70 typedef void (void_fn
)(void);
71 DECLARE_PTR_LIST(void_fn_list
, void_fn
*);
72 static struct void_fn_list
*return_states_before
;
73 static struct void_fn_list
*return_states_after
;
75 static struct fcall_back
*alloc_fcall_back(int type
, void *call_back
,
78 struct fcall_back
*cb
;
80 cb
= __alloc_fcall_back(0);
82 cb
->u
.call_back
= call_back
;
87 void add_function_hook(const char *look_for
, func_hook
*call_back
, void *info
)
89 struct fcall_back
*cb
;
91 cb
= alloc_fcall_back(REGULAR_CALL
, call_back
, info
);
92 add_callback(func_hash
, look_for
, cb
);
95 void add_function_assign_hook(const char *look_for
, func_hook
*call_back
,
98 struct fcall_back
*cb
;
100 cb
= alloc_fcall_back(ASSIGN_CALL
, call_back
, info
);
101 add_callback(func_hash
, look_for
, cb
);
104 void add_implied_return_hook(const char *look_for
,
105 implied_return_hook
*call_back
,
108 struct fcall_back
*cb
;
110 cb
= alloc_fcall_back(IMPLIED_RETURN
, call_back
, info
);
111 add_callback(func_hash
, look_for
, cb
);
114 void add_macro_assign_hook(const char *look_for
, func_hook
*call_back
,
117 struct fcall_back
*cb
;
119 cb
= alloc_fcall_back(MACRO_ASSIGN
, call_back
, info
);
120 add_callback(func_hash
, look_for
, cb
);
123 void add_macro_assign_hook_extra(const char *look_for
, func_hook
*call_back
,
126 struct fcall_back
*cb
;
128 cb
= alloc_fcall_back(MACRO_ASSIGN_EXTRA
, call_back
, info
);
129 add_callback(func_hash
, look_for
, cb
);
132 void return_implies_state(const char *look_for
, long long start
, long long end
,
133 implication_hook
*call_back
, void *info
)
135 struct fcall_back
*cb
;
137 cb
= alloc_fcall_back(RANGED_CALL
, call_back
, info
);
138 cb
->range
= alloc_range_perm(ll_to_sval(start
), ll_to_sval(end
));
139 add_callback(func_hash
, look_for
, cb
);
142 void return_implies_state_sval(const char *look_for
, sval_t start
, sval_t end
,
143 implication_hook
*call_back
, void *info
)
145 struct fcall_back
*cb
;
147 cb
= alloc_fcall_back(RANGED_CALL
, call_back
, info
);
148 cb
->range
= alloc_range_perm(start
, end
);
149 add_callback(func_hash
, look_for
, cb
);
152 void select_return_states_hook(int type
, return_implies_hook
*callback
)
154 struct return_implies_callback
*cb
= __alloc_return_implies_callback(0);
157 cb
->callback
= callback
;
158 add_ptr_list(&db_return_states_list
, cb
);
161 void select_return_states_before(void_fn
*fn
)
163 void_fn
**p
= malloc(sizeof(void_fn
*));
165 add_ptr_list(&return_states_before
, p
);
168 void select_return_states_after(void_fn
*fn
)
170 void_fn
**p
= malloc(sizeof(void_fn
*));
172 add_ptr_list(&return_states_after
, p
);
175 static void call_return_states_before_hooks(void)
179 FOR_EACH_PTR(return_states_before
, fn
) {
181 } END_FOR_EACH_PTR(fn
);
184 static void call_return_states_after_hooks(struct expression
*expr
)
188 FOR_EACH_PTR(return_states_after
, fn
) {
190 } END_FOR_EACH_PTR(fn
);
191 __pass_to_client(expr
, FUNCTION_CALL_HOOK_AFTER_DB
);
194 static int call_call_backs(struct call_back_list
*list
, int type
,
195 const char *fn
, struct expression
*expr
)
197 struct fcall_back
*tmp
;
200 FOR_EACH_PTR(list
, tmp
) {
201 if (tmp
->type
== type
) {
202 (tmp
->u
.call_back
)(fn
, expr
, tmp
->info
);
205 } END_FOR_EACH_PTR(tmp
);
210 static void call_ranged_call_backs(struct call_back_list
*list
,
211 const char *fn
, struct expression
*call_expr
,
212 struct expression
*assign_expr
)
214 struct fcall_back
*tmp
;
216 FOR_EACH_PTR(list
, tmp
) {
217 (tmp
->u
.ranged
)(fn
, call_expr
, assign_expr
, tmp
->info
);
218 } END_FOR_EACH_PTR(tmp
);
221 static struct call_back_list
*get_same_ranged_call_backs(struct call_back_list
*list
,
222 struct data_range
*drange
)
224 struct call_back_list
*ret
= NULL
;
225 struct fcall_back
*tmp
;
227 FOR_EACH_PTR(list
, tmp
) {
228 if (tmp
->type
!= RANGED_CALL
)
230 if (ranges_equiv(tmp
->range
, drange
))
231 add_ptr_list(&ret
, tmp
);
232 } END_FOR_EACH_PTR(tmp
);
236 static int in_list_exact_sval(struct range_list
*list
, struct data_range
*drange
)
238 struct data_range
*tmp
;
240 FOR_EACH_PTR(list
, tmp
) {
241 if (ranges_equiv(tmp
, drange
))
243 } END_FOR_EACH_PTR(tmp
);
247 static int assign_ranged_funcs(const char *fn
, struct expression
*expr
,
248 struct call_back_list
*call_backs
)
250 struct fcall_back
*tmp
;
254 struct smatch_state
*estate
;
255 struct stree
*tmp_stree
;
256 struct stree
*final_states
= NULL
;
257 struct range_list
*handled_ranges
= NULL
;
258 struct call_back_list
*same_range_call_backs
= NULL
;
259 struct range_list
*rl
;
265 var_name
= expr_to_var_sym(expr
->left
, &sym
);
266 if (!var_name
|| !sym
)
269 FOR_EACH_PTR(call_backs
, tmp
) {
270 if (tmp
->type
!= RANGED_CALL
)
273 if (in_list_exact_sval(handled_ranges
, tmp
->range
))
275 __push_fake_cur_stree();
276 tack_on(&handled_ranges
, tmp
->range
);
278 same_range_call_backs
= get_same_ranged_call_backs(call_backs
, tmp
->range
);
279 call_ranged_call_backs(same_range_call_backs
, fn
, expr
->right
, expr
);
280 __free_ptr_list((struct ptr_list
**)&same_range_call_backs
);
282 rl
= alloc_rl(tmp
->range
->min
, tmp
->range
->max
);
283 rl
= cast_rl(get_type(expr
->left
), rl
);
284 estate
= alloc_estate_rl(rl
);
285 set_extra_mod(var_name
, sym
, expr
->left
, estate
);
287 tmp_stree
= __pop_fake_cur_stree();
288 merge_fake_stree(&final_states
, tmp_stree
);
289 free_stree(&tmp_stree
);
291 } END_FOR_EACH_PTR(tmp
);
293 FOR_EACH_SM(final_states
, sm
) {
295 } END_FOR_EACH_SM(sm
);
297 free_stree(&final_states
);
299 free_string(var_name
);
303 static void call_implies_callbacks(int comparison
, struct expression
*expr
, sval_t sval
, int left
, struct stree
**implied_true
, struct stree
**implied_false
)
305 struct call_back_list
*call_backs
;
306 struct fcall_back
*tmp
;
308 struct data_range
*value_range
;
309 struct stree
*true_states
= NULL
;
310 struct stree
*false_states
= NULL
;
311 struct stree
*tmp_stree
;
313 *implied_true
= NULL
;
314 *implied_false
= NULL
;
315 if (expr
->fn
->type
!= EXPR_SYMBOL
|| !expr
->fn
->symbol
)
317 fn
= expr
->fn
->symbol
->ident
->name
;
318 call_backs
= search_callback(func_hash
, (char *)expr
->fn
->symbol
->ident
->name
);
321 value_range
= alloc_range(sval
, sval
);
323 /* set true states */
324 __push_fake_cur_stree();
325 FOR_EACH_PTR(call_backs
, tmp
) {
326 if (tmp
->type
!= RANGED_CALL
)
328 if (!true_comparison_range_LR(comparison
, tmp
->range
, value_range
, left
))
330 (tmp
->u
.ranged
)(fn
, expr
, NULL
, tmp
->info
);
331 } END_FOR_EACH_PTR(tmp
);
332 tmp_stree
= __pop_fake_cur_stree();
333 merge_fake_stree(&true_states
, tmp_stree
);
334 free_stree(&tmp_stree
);
336 /* set false states */
337 __push_fake_cur_stree();
338 FOR_EACH_PTR(call_backs
, tmp
) {
339 if (tmp
->type
!= RANGED_CALL
)
341 if (!false_comparison_range_LR(comparison
, tmp
->range
, value_range
, left
))
343 (tmp
->u
.ranged
)(fn
, expr
, NULL
, tmp
->info
);
344 } END_FOR_EACH_PTR(tmp
);
345 tmp_stree
= __pop_fake_cur_stree();
346 merge_fake_stree(&false_states
, tmp_stree
);
347 free_stree(&tmp_stree
);
349 *implied_true
= true_states
;
350 *implied_false
= false_states
;
353 struct db_callback_info
{
356 struct expression
*expr
;
357 struct range_list
*rl
;
360 struct stree
*implied
;
361 struct db_implies_list
*callbacks
;
366 struct smatch_state
*ret_state
;
367 struct expression
*var_expr
;
371 static void set_implied_states(struct db_callback_info
*db_info
)
375 FOR_EACH_SM(db_info
->implied
, sm
) {
377 } END_FOR_EACH_SM(sm
);
379 free_stree(&db_info
->implied
);
382 static void store_return_state(struct db_callback_info
*db_info
, const char *ret_str
, struct smatch_state
*state
)
384 db_info
->ret_str
= alloc_sname(ret_str
),
385 db_info
->ret_state
= state
;
388 static bool fake_a_param_assignment(struct expression
*expr
, const char *ret_str
, struct smatch_state
*orig
)
390 struct expression
*arg
, *left
, *right
, *tmp
, *fake_assign
;
396 if (expr
->type
!= EXPR_ASSIGNMENT
|| expr
->op
!= '=')
401 while (right
->type
== EXPR_ASSIGNMENT
)
402 right
= strip_expr(right
->right
);
403 if (!right
|| right
->type
!= EXPR_CALL
)
406 p
= strchr(ret_str
, '[');
411 if (p
[0] == '=' && p
[1] == '=')
416 snprintf(buf
, sizeof(buf
), "%s", p
);
420 param
= strtol(p
, &p
, 10);
427 arg
= get_argument_from_call_expr(right
->args
, param
);
431 /* There should be a get_other_name() function which returns an expr */
432 tmp
= get_assigned_expr(arg
);
437 * This is a sanity check to prevent side effects from evaluating stuff
440 str
= expr_to_chunk_sym_vsl(arg
, NULL
, NULL
);
445 right
= gen_expression_from_key(arg
, buf
);
446 if (!right
) /* Mostly fails for binops like [$0 + 4032] */
448 fake_assign
= assign_expression(left
, '=', right
);
449 __in_fake_parameter_assign
++;
450 __split_expr(fake_assign
);
451 __in_fake_parameter_assign
--;
454 * If the return is "0-65531[$0->nla_len - 4]" the faked expression
455 * is maybe (-4)-65531 but we know it is in the 0-65531 range so both
456 * parts have to be considered. We use _nomod() because it's not really
457 * another modification, it's just a clarification.
460 if (estate_rl(orig
)) {
461 struct smatch_state
*faked
;
462 struct range_list
*rl
;
464 faked
= get_extra_state(left
);
465 if (estate_rl(faked
)) {
466 rl
= rl_intersection(estate_rl(faked
), estate_rl(orig
));
468 set_extra_expr_nomod(expr
, alloc_estate_rl(rl
));
475 static void set_fresh_mtag_returns(struct db_callback_info
*db_info
)
477 struct expression
*expr
= db_info
->expr
->left
;
478 struct smatch_state
*state
;
480 if (!db_info
->ret_state
)
483 state
= alloc_estate_rl(cast_rl(get_type(expr
), clone_rl(estate_rl(db_info
->ret_state
))));
484 state
= get_mtag_return(db_info
->expr
, state
);
488 set_real_absolute(expr
, state
);
489 set_extra_expr_mod(expr
, state
);
491 db_info
->ret_state
= NULL
;
492 db_info
->ret_str
= NULL
;
495 static void set_return_assign_state(struct db_callback_info
*db_info
)
497 struct expression
*expr
= db_info
->expr
->left
;
498 struct smatch_state
*state
;
500 if (!db_info
->ret_state
)
503 state
= alloc_estate_rl(cast_rl(get_type(expr
), clone_rl(estate_rl(db_info
->ret_state
))));
504 if (!fake_a_param_assignment(db_info
->expr
, db_info
->ret_str
, state
))
505 set_extra_expr_mod(expr
, state
);
507 db_info
->ret_state
= NULL
;
508 db_info
->ret_str
= NULL
;
511 static void set_other_side_state(struct db_callback_info
*db_info
)
513 struct expression
*expr
= db_info
->var_expr
;
514 struct smatch_state
*state
;
516 if (!db_info
->ret_state
)
519 state
= alloc_estate_rl(cast_rl(get_type(expr
), clone_rl(estate_rl(db_info
->ret_state
))));
520 set_extra_expr_nomod(expr
, state
);
521 db_info
->ret_state
= NULL
;
522 db_info
->ret_str
= NULL
;
525 static void handle_ret_equals_param(char *ret_string
, struct range_list
*rl
, struct expression
*call
)
529 struct expression
*arg
;
530 struct range_list
*orig
;
532 str
= strstr(ret_string
, "==$");
536 param
= strtoll(str
, NULL
, 10);
537 arg
= get_argument_from_call_expr(call
->args
, param
);
540 get_absolute_rl(arg
, &orig
);
541 rl
= rl_intersection(orig
, rl
);
544 set_extra_expr_nomod(arg
, alloc_estate_rl(rl
));
547 static int impossible_limit(struct expression
*expr
, int param
, char *key
, char *value
)
549 struct expression
*arg
;
550 struct smatch_state
*state
;
551 struct range_list
*passed
;
552 struct range_list
*limit
;
553 struct symbol
*compare_type
;
555 while (expr
->type
== EXPR_ASSIGNMENT
)
556 expr
= strip_expr(expr
->right
);
557 if (expr
->type
!= EXPR_CALL
)
560 arg
= get_argument_from_call_expr(expr
->args
, param
);
564 if (strcmp(key
, "$") == 0) {
565 if (!get_implied_rl(arg
, &passed
))
568 compare_type
= get_arg_type(expr
->fn
, param
);
573 name
= get_variable_from_key(arg
, key
, &sym
);
577 state
= get_state(SMATCH_EXTRA
, name
, sym
);
582 passed
= estate_rl(state
);
583 if (!passed
|| is_whole_rl(passed
)) {
588 compare_type
= get_member_type_from_key(arg
, key
);
591 passed
= cast_rl(compare_type
, passed
);
592 call_results_to_rl(expr
, compare_type
, value
, &limit
);
593 if (!limit
|| is_whole_rl(limit
))
595 if (possibly_true_rl(passed
, SPECIAL_EQUAL
, limit
))
597 if (option_debug
|| local_debug
)
598 sm_msg("impossible: %d '%s' limit '%s' == '%s'", param
, key
, show_rl(passed
), value
);
602 static int is_impossible_data(int type
, struct expression
*expr
, int param
, char *key
, char *value
)
604 if (type
== PARAM_LIMIT
&& impossible_limit(expr
, param
, key
, value
))
606 if (type
== COMPARE_LIMIT
&& param_compare_limit_is_impossible(expr
, param
, key
, value
)) {
608 sm_msg("param_compare_limit_is_impossible: %d %s %s", param
, key
, value
);
614 static int func_type_mismatch(struct expression
*expr
, const char *value
)
618 /* This makes faking returns easier */
619 if (!value
|| value
[0] == '\0')
622 while (expr
->type
== EXPR_ASSIGNMENT
)
623 expr
= strip_expr(expr
->right
);
626 * Short cut: We only care about function pointers that are struct
630 if (expr
->fn
->type
== EXPR_SYMBOL
)
633 type
= get_type(expr
->fn
);
636 if (type
->type
== SYM_PTR
)
637 type
= get_real_base_type(type
);
639 if (strcmp(type_to_str(type
), value
) == 0)
645 static int db_compare_callback(void *_info
, int argc
, char **argv
, char **azColName
)
647 struct db_callback_info
*db_info
= _info
;
648 struct range_list
*var_rl
= db_info
->rl
;
649 struct range_list
*ret_range
;
651 char *ret_str
, *key
, *value
;
652 struct return_implies_callback
*tmp
;
660 return_id
= atoi(argv
[0]);
662 type
= atoi(argv
[2]);
663 param
= atoi(argv
[3]);
667 db_info
->has_states
= 1;
668 if (db_info
->prev_return_id
!= -1 && type
== INTERNAL
) {
669 set_other_side_state(db_info
);
670 set_implied_states(db_info
);
671 stree
= __pop_fake_cur_stree();
673 merge_fake_stree(&db_info
->stree
, stree
);
675 __push_fake_cur_stree();
678 db_info
->prev_return_id
= return_id
;
680 if (type
== INTERNAL
&& func_type_mismatch(db_info
->expr
, value
))
684 if (type
== CULL_PATH
) {
689 if (is_impossible_data(type
, db_info
->expr
, param
, key
, value
)) {
694 call_results_to_rl(db_info
->expr
, get_type(strip_expr(db_info
->expr
)), ret_str
, &ret_range
);
695 ret_range
= cast_rl(get_type(db_info
->expr
), ret_range
);
697 ret_range
= alloc_whole_rl(get_type(db_info
->expr
));
699 comparison
= db_info
->comparison
;
701 comparison
= flip_comparison(comparison
);
703 if (db_info
->true_side
) {
704 if (!possibly_true_rl(var_rl
, comparison
, ret_range
))
706 if (type
== PARAM_LIMIT
)
707 param_limit_implications(db_info
->expr
, param
, key
, value
, &db_info
->implied
);
708 filter_by_comparison(&var_rl
, comparison
, ret_range
);
709 filter_by_comparison(&ret_range
, flip_comparison(comparison
), var_rl
);
711 if (!possibly_false_rl(var_rl
, comparison
, ret_range
))
713 if (type
== PARAM_LIMIT
)
714 param_limit_implications(db_info
->expr
, param
, key
, value
, &db_info
->implied
);
715 filter_by_comparison(&var_rl
, negate_comparison(comparison
), ret_range
);
716 filter_by_comparison(&ret_range
, flip_comparison(negate_comparison(comparison
)), var_rl
);
719 handle_ret_equals_param(ret_str
, ret_range
, db_info
->expr
);
721 if (type
== INTERNAL
) {
722 set_state(-1, "unnull_path", NULL
, &true_state
);
723 __add_return_comparison(strip_expr(db_info
->expr
), ret_str
);
724 __add_return_to_param_mapping(db_info
->expr
, ret_str
);
725 store_return_state(db_info
, ret_str
, alloc_estate_rl(clone_rl(var_rl
)));
728 FOR_EACH_PTR(db_info
->callbacks
, tmp
) {
729 if (tmp
->type
== type
)
730 tmp
->callback(db_info
->expr
, param
, key
, value
);
731 } END_FOR_EACH_PTR(tmp
);
736 static void compare_db_return_states_callbacks(struct expression
*left
, int comparison
, struct expression
*right
, struct stree
*implied_true
, struct stree
*implied_false
)
738 struct stree
*orig_states
;
740 struct stree
*true_states
;
741 struct stree
*false_states
;
743 struct db_callback_info db_info
= {};
744 struct expression
*var_expr
;
745 struct expression
*call_expr
;
746 struct range_list
*rl
;
749 orig_states
= clone_stree(__get_cur_stree());
751 /* legacy cruft. need to fix call_implies_callbacks(). */
755 if (left
->type
!= EXPR_CALL
) {
761 get_absolute_rl(var_expr
, &rl
);
763 db_info
.comparison
= comparison
;
764 db_info
.expr
= call_expr
;
766 db_info
.left
= call_on_left
;
767 db_info
.callbacks
= db_return_states_list
;
768 db_info
.var_expr
= var_expr
;
770 call_return_states_before_hooks();
772 db_info
.true_side
= 1;
773 db_info
.stree
= NULL
;
774 db_info
.prev_return_id
= -1;
775 __push_fake_cur_stree();
776 sql_select_return_states("return_id, return, type, parameter, key, value",
777 call_expr
, db_compare_callback
, &db_info
);
778 set_other_side_state(&db_info
);
779 set_implied_states(&db_info
);
780 stree
= __pop_fake_cur_stree();
782 merge_fake_stree(&db_info
.stree
, stree
);
784 true_states
= db_info
.stree
;
785 if (!true_states
&& db_info
.has_states
) {
786 __push_fake_cur_stree();
787 set_path_impossible();
788 true_states
= __pop_fake_cur_stree();
793 FOR_EACH_SM(orig_states
, sm
) {
794 __set_sm_cur_stree(sm
);
795 } END_FOR_EACH_SM(sm
);
797 db_info
.true_side
= 0;
798 db_info
.stree
= NULL
;
799 db_info
.prev_return_id
= -1;
801 __push_fake_cur_stree();
802 sql_select_return_states("return_id, return, type, parameter, key, value", call_expr
,
803 db_compare_callback
, &db_info
);
804 set_other_side_state(&db_info
);
805 set_implied_states(&db_info
);
806 stree
= __pop_fake_cur_stree();
808 merge_fake_stree(&db_info
.stree
, stree
);
810 false_states
= db_info
.stree
;
811 if (!false_states
&& db_info
.has_states
) {
812 __push_fake_cur_stree();
813 set_path_impossible();
814 false_states
= __pop_fake_cur_stree();
819 FOR_EACH_SM(orig_states
, sm
) {
820 __set_sm_cur_stree(sm
);
821 } END_FOR_EACH_SM(sm
);
823 free_stree(&orig_states
);
825 FOR_EACH_SM(true_states
, sm
) {
826 __set_true_false_sm(sm
, NULL
);
827 } END_FOR_EACH_SM(sm
);
828 FOR_EACH_SM(false_states
, sm
) {
829 __set_true_false_sm(NULL
, sm
);
830 } END_FOR_EACH_SM(sm
);
832 free_stree(&true_states
);
833 free_stree(&false_states
);
835 call_return_states_after_hooks(call_expr
);
837 FOR_EACH_SM(implied_true
, sm
) {
838 __set_true_false_sm(sm
, NULL
);
839 } END_FOR_EACH_SM(sm
);
840 FOR_EACH_SM(implied_false
, sm
) {
841 __set_true_false_sm(NULL
, sm
);
842 } END_FOR_EACH_SM(sm
);
845 void function_comparison(struct expression
*left
, int comparison
, struct expression
*right
)
847 struct expression
*var_expr
;
848 struct expression
*call_expr
;
849 struct stree
*implied_true
= NULL
;
850 struct stree
*implied_false
= NULL
;
851 struct range_list
*rl
;
858 /* legacy cruft. need to fix call_implies_callbacks(). */
862 if (left
->type
!= EXPR_CALL
) {
868 get_absolute_rl(var_expr
, &rl
);
870 if (rl_to_sval(rl
, &sval
))
871 call_implies_callbacks(comparison
, call_expr
, sval
, call_on_left
, &implied_true
, &implied_false
);
873 compare_db_return_states_callbacks(left
, comparison
, right
, implied_true
, implied_false
);
874 free_stree(&implied_true
);
875 free_stree(&implied_false
);
878 static void call_ranged_return_hooks(struct db_callback_info
*db_info
)
880 struct call_back_list
*call_backs
;
881 struct expression
*expr
;
882 struct fcall_back
*tmp
;
885 expr
= strip_expr(db_info
->expr
);
886 while (expr
->type
== EXPR_ASSIGNMENT
)
887 expr
= strip_expr(expr
->right
);
888 if (expr
->type
!= EXPR_CALL
||
889 expr
->fn
->type
!= EXPR_SYMBOL
)
892 fn
= expr
->fn
->symbol_name
->name
;
894 call_backs
= search_callback(func_hash
, fn
);
895 FOR_EACH_PTR(call_backs
, tmp
) {
896 struct range_list
*range_rl
;
898 if (tmp
->type
!= RANGED_CALL
)
900 range_rl
= alloc_rl(tmp
->range
->min
, tmp
->range
->max
);
901 range_rl
= cast_rl(estate_type(db_info
->ret_state
), range_rl
);
902 if (possibly_true_rl(range_rl
, SPECIAL_EQUAL
, estate_rl(db_info
->ret_state
)))
903 (tmp
->u
.ranged
)(fn
, expr
, db_info
->expr
, tmp
->info
);
904 } END_FOR_EACH_PTR(tmp
);
907 static int db_assign_return_states_callback(void *_info
, int argc
, char **argv
, char **azColName
)
909 struct db_callback_info
*db_info
= _info
;
910 struct range_list
*ret_range
;
912 char *ret_str
, *key
, *value
;
913 struct return_implies_callback
*tmp
;
920 return_id
= atoi(argv
[0]);
922 type
= atoi(argv
[2]);
923 param
= atoi(argv
[3]);
927 if (db_info
->prev_return_id
!= -1 && type
== INTERNAL
) {
928 call_ranged_return_hooks(db_info
);
929 set_return_assign_state(db_info
);
930 set_implied_states(db_info
);
931 stree
= __pop_fake_cur_stree();
933 merge_fake_stree(&db_info
->stree
, stree
);
935 __push_fake_cur_stree();
938 db_info
->prev_return_id
= return_id
;
940 if (type
== INTERNAL
&& func_type_mismatch(db_info
->expr
, value
))
944 if (type
== CULL_PATH
) {
948 if (is_impossible_data(type
, db_info
->expr
, param
, key
, value
)) {
953 if (type
== PARAM_LIMIT
)
954 param_limit_implications(db_info
->expr
, param
, key
, value
, &db_info
->implied
);
956 db_info
->handled
= 1;
957 call_results_to_rl(db_info
->expr
->right
, get_type(strip_expr(db_info
->expr
->right
)), ret_str
, &ret_range
);
959 ret_range
= alloc_whole_rl(get_type(strip_expr(db_info
->expr
->right
)));
960 ret_range
= cast_rl(get_type(db_info
->expr
->right
), ret_range
);
962 if (type
== INTERNAL
) {
963 set_state(-1, "unnull_path", NULL
, &true_state
);
964 __add_return_comparison(strip_expr(db_info
->expr
->right
), ret_str
);
965 __add_comparison_info(db_info
->expr
->left
, strip_expr(db_info
->expr
->right
), ret_str
);
966 __add_return_to_param_mapping(db_info
->expr
, ret_str
);
967 store_return_state(db_info
, ret_str
, alloc_estate_rl(ret_range
));
968 set_fresh_mtag_returns(db_info
);
971 FOR_EACH_PTR(db_return_states_list
, tmp
) {
972 if (tmp
->type
== type
)
973 tmp
->callback(db_info
->expr
, param
, key
, value
);
974 } END_FOR_EACH_PTR(tmp
);
979 static int db_return_states_assign(struct expression
*expr
)
981 struct expression
*right
;
984 struct db_callback_info db_info
= {};
986 right
= strip_expr(expr
->right
);
988 db_info
.prev_return_id
= -1;
990 db_info
.stree
= NULL
;
993 call_return_states_before_hooks();
995 __push_fake_cur_stree();
996 sql_select_return_states("return_id, return, type, parameter, key, value",
997 right
, db_assign_return_states_callback
, &db_info
);
999 sm_msg("%s return_id %d return_ranges %s",
1000 db_info
.cull
? "culled" : "merging",
1001 db_info
.prev_return_id
,
1002 db_info
.ret_state
? db_info
.ret_state
->name
: "'<empty>'");
1004 if (db_info
.handled
)
1005 call_ranged_return_hooks(&db_info
);
1006 set_return_assign_state(&db_info
);
1007 set_implied_states(&db_info
);
1008 stree
= __pop_fake_cur_stree();
1010 merge_fake_stree(&db_info
.stree
, stree
);
1013 if (!db_info
.stree
&& db_info
.cull
) { /* this means we culled everything */
1014 set_extra_expr_mod(expr
->left
, alloc_estate_whole(get_type(expr
->left
)));
1015 set_path_impossible();
1017 FOR_EACH_SM(db_info
.stree
, sm
) {
1019 } END_FOR_EACH_SM(sm
);
1021 free_stree(&db_info
.stree
);
1022 call_return_states_after_hooks(right
);
1024 return db_info
.handled
;
1027 static int handle_implied_return(struct expression
*expr
)
1029 struct range_list
*rl
;
1031 if (!get_implied_return(expr
->right
, &rl
))
1033 rl
= cast_rl(get_type(expr
->left
), rl
);
1034 set_extra_expr_mod(expr
->left
, alloc_estate_rl(rl
));
1038 static void match_assign_call(struct expression
*expr
)
1040 struct call_back_list
*call_backs
;
1042 struct expression
*right
;
1044 struct range_list
*rl
;
1046 if (expr
->op
!= '=')
1049 right
= strip_expr(expr
->right
);
1050 if (right
->fn
->type
!= EXPR_SYMBOL
|| !right
->fn
->symbol
) {
1051 handled
|= db_return_states_assign(expr
);
1053 goto assigned_unknown
;
1056 if (is_fake_call(right
)) {
1057 set_extra_expr_mod(expr
->left
, alloc_estate_whole(get_type(expr
->left
)));
1061 fn
= right
->fn
->symbol
->ident
->name
;
1062 call_backs
= search_callback(func_hash
, (char *)fn
);
1065 * The ordering here is sort of important.
1066 * One example, of how this matters is that when we do:
1068 * len = strlen(str);
1070 * That is handled by smatch_common_functions.c and smatch_strlen.c.
1071 * They use implied_return and function_assign_hook respectively.
1072 * We want to get the implied return first before we do the function
1073 * assignment hook otherwise we end up writing the wrong thing for len
1074 * in smatch_extra.c because we assume that it already holds the
1075 * strlen() when we haven't set it yet.
1078 if (db_return_states_assign(expr
) == 1)
1081 handled
= assign_ranged_funcs(fn
, expr
, call_backs
);
1082 handled
|= handle_implied_return(expr
);
1085 call_call_backs(call_backs
, ASSIGN_CALL
, fn
, expr
);
1091 get_absolute_rl(expr
->right
, &rl
);
1092 rl
= cast_rl(get_type(expr
->left
), rl
);
1093 set_extra_expr_mod(expr
->left
, alloc_estate_rl(rl
));
1096 static int db_return_states_callback(void *_info
, int argc
, char **argv
, char **azColName
)
1098 struct db_callback_info
*db_info
= _info
;
1099 struct range_list
*ret_range
;
1101 char *ret_str
, *key
, *value
;
1102 struct return_implies_callback
*tmp
;
1103 struct stree
*stree
;
1110 return_id
= atoi(argv
[0]);
1112 type
= atoi(argv
[2]);
1113 param
= atoi(argv
[3]);
1117 if (db_info
->prev_return_id
!= -1 && type
== INTERNAL
) {
1118 call_ranged_return_hooks(db_info
);
1119 set_implied_states(db_info
);
1120 stree
= __pop_fake_cur_stree();
1122 merge_fake_stree(&db_info
->stree
, stree
);
1124 __push_fake_cur_stree();
1128 db_info
->prev_return_id
= return_id
;
1130 if (type
== INTERNAL
&& func_type_mismatch(db_info
->expr
, value
))
1134 if (type
== CULL_PATH
) {
1138 if (is_impossible_data(type
, db_info
->expr
, param
, key
, value
)) {
1143 if (type
== PARAM_LIMIT
)
1144 param_limit_implications(db_info
->expr
, param
, key
, value
, &db_info
->implied
);
1146 call_results_to_rl(db_info
->expr
, get_type(strip_expr(db_info
->expr
)), ret_str
, &ret_range
);
1147 ret_range
= cast_rl(get_type(db_info
->expr
), ret_range
);
1149 if (type
== INTERNAL
) {
1150 struct smatch_state
*state
;
1152 set_state(-1, "unnull_path", NULL
, &true_state
);
1153 __add_return_comparison(strip_expr(db_info
->expr
), ret_str
);
1154 __add_return_to_param_mapping(db_info
->expr
, ret_str
);
1156 * We want to store the return values so that we can split the strees
1157 * in smatch_db.c. This uses set_state() directly because it's not a
1158 * real smatch_extra state.
1160 snprintf(buf
, sizeof(buf
), "return %p", db_info
->expr
);
1161 state
= alloc_estate_rl(ret_range
);
1162 set_state(SMATCH_EXTRA
, buf
, NULL
, state
);
1163 store_return_state(db_info
, ret_str
, state
);
1166 FOR_EACH_PTR(db_return_states_list
, tmp
) {
1167 if (tmp
->type
== type
)
1168 tmp
->callback(db_info
->expr
, param
, key
, value
);
1169 } END_FOR_EACH_PTR(tmp
);
1175 static void db_return_states(struct expression
*expr
)
1177 struct sm_state
*sm
;
1178 struct stree
*stree
;
1179 struct db_callback_info db_info
= {};
1181 if (!__get_cur_stree()) /* no return functions */
1184 db_info
.prev_return_id
= -1;
1185 db_info
.expr
= expr
;
1186 db_info
.stree
= NULL
;
1188 call_return_states_before_hooks();
1190 __push_fake_cur_stree();
1192 sql_select_return_states("return_id, return, type, parameter, key, value",
1193 expr
, db_return_states_callback
, &db_info
);
1194 call_ranged_return_hooks(&db_info
);
1195 set_implied_states(&db_info
);
1196 stree
= __pop_fake_cur_stree();
1198 merge_fake_stree(&db_info
.stree
, stree
);
1201 FOR_EACH_SM(db_info
.stree
, sm
) {
1203 } END_FOR_EACH_SM(sm
);
1205 free_stree(&db_info
.stree
);
1206 call_return_states_after_hooks(expr
);
1209 static int is_condition_call(struct expression
*expr
)
1211 struct expression
*tmp
;
1213 FOR_EACH_PTR_REVERSE(big_condition_stack
, tmp
) {
1214 if (expr
== tmp
|| expr_get_parent_expr(expr
) == tmp
)
1216 if (tmp
->pos
.line
< expr
->pos
.line
)
1218 } END_FOR_EACH_PTR_REVERSE(tmp
);
1223 static void db_return_states_call(struct expression
*expr
)
1228 if (is_assigned_call(expr
) || is_fake_assigned_call(expr
))
1230 if (is_condition_call(expr
))
1232 db_return_states(expr
);
1235 static void match_function_call(struct expression
*expr
)
1237 struct call_back_list
*call_backs
;
1238 struct expression
*fn
;
1240 fn
= strip_expr(expr
->fn
);
1241 if (fn
->type
== EXPR_SYMBOL
&& fn
->symbol
) {
1242 call_backs
= search_callback(func_hash
, (char *)fn
->symbol
->ident
->name
);
1244 call_call_backs(call_backs
, REGULAR_CALL
,
1245 fn
->symbol
->ident
->name
, expr
);
1247 db_return_states_call(expr
);
1250 static void match_macro_assign(struct expression
*expr
)
1252 struct call_back_list
*call_backs
;
1254 struct expression
*right
;
1256 right
= strip_expr(expr
->right
);
1257 macro
= get_macro_name(right
->pos
);
1258 call_backs
= search_callback(func_hash
, (char *)macro
);
1261 call_call_backs(call_backs
, MACRO_ASSIGN
, macro
, expr
);
1262 call_call_backs(call_backs
, MACRO_ASSIGN_EXTRA
, macro
, expr
);
1265 int get_implied_return(struct expression
*expr
, struct range_list
**rl
)
1267 struct call_back_list
*call_backs
;
1268 struct fcall_back
*tmp
;
1274 expr
= strip_expr(expr
);
1275 fn
= expr_to_var(expr
->fn
);
1279 call_backs
= search_callback(func_hash
, fn
);
1281 FOR_EACH_PTR(call_backs
, tmp
) {
1282 if (tmp
->type
== IMPLIED_RETURN
)
1283 handled
|= (tmp
->u
.implied_return
)(expr
, tmp
->info
, rl
);
1284 } END_FOR_EACH_PTR(tmp
);
1291 struct range_list
*get_range_implications(const char *fn
)
1293 struct call_back_list
*call_backs
;
1294 struct range_list
*ret
= NULL
;
1295 struct fcall_back
*tmp
;
1297 call_backs
= search_callback(func_hash
, (char *)fn
);
1299 FOR_EACH_PTR(call_backs
, tmp
) {
1300 if (tmp
->type
!= RANGED_CALL
)
1302 add_ptr_list(&ret
, tmp
->range
);
1303 } END_FOR_EACH_PTR(tmp
);
1308 void create_function_hook_hash(void)
1310 func_hash
= create_function_hashtable(5000);
1313 void register_function_hooks(int id
)
1315 add_hook(&match_function_call
, CALL_HOOK_AFTER_INLINE
);
1316 add_hook(&match_assign_call
, CALL_ASSIGNMENT_HOOK
);
1317 add_hook(&match_macro_assign
, MACRO_ASSIGNMENT_HOOK
);