4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
15 #include "smatch_slist.h"
16 #include "smatch_extra.h"
19 static sqlite3
*mem_db
;
21 #define sql_insert(table, values...) \
25 char *err, *p = buf; \
28 p += snprintf(p, buf + sizeof(buf) - p, \
29 "insert into %s values (", #table); \
30 p += snprintf(p, buf + sizeof(buf) - p, values); \
31 p += snprintf(p, buf + sizeof(buf) - p, ");"); \
32 sm_debug("in-mem: %s\n", buf); \
33 rc = sqlite3_exec(mem_db, buf, NULL, 0, &err); \
34 if (rc != SQLITE_OK) { \
35 fprintf(stderr, "SQL error #2: %s\n", err); \
36 fprintf(stderr, "SQL: '%s'\n", buf); \
42 sm_printf("SQL: insert into " #table " values (" values); \
49 void (*callback
)(const char *name
, struct symbol
*sym
, char *key
, char *value
);
51 ALLOCATOR(def_callback
, "definition db hook callbacks");
52 DECLARE_PTR_LIST(callback_list
, struct def_callback
);
53 static struct callback_list
*callbacks
;
55 struct member_info_callback
{
57 void (*callback
)(struct expression
*call
, int param
, char *printed_name
, struct smatch_state
*state
);
59 ALLOCATOR(member_info_callback
, "caller_info callbacks");
60 DECLARE_PTR_LIST(member_info_cb_list
, struct member_info_callback
);
61 static struct member_info_cb_list
*member_callbacks
;
63 struct returned_state_callback
{
64 void (*callback
)(int return_id
, char *return_ranges
, struct expression
*return_expr
);
66 ALLOCATOR(returned_state_callback
, "returned state callbacks");
67 DECLARE_PTR_LIST(returned_state_cb_list
, struct returned_state_callback
);
68 static struct returned_state_cb_list
*returned_state_callbacks
;
70 struct returned_member_callback
{
72 void (*callback
)(int return_id
, char *return_ranges
, char *printed_name
, struct smatch_state
*state
);
74 ALLOCATOR(returned_member_callback
, "returned member callbacks");
75 DECLARE_PTR_LIST(returned_member_cb_list
, struct returned_member_callback
);
76 static struct returned_member_cb_list
*returned_member_callbacks
;
78 struct call_implies_callback
{
80 void (*callback
)(struct expression
*arg
, char *value
);
82 ALLOCATOR(call_implies_callback
, "call_implies callbacks");
83 DECLARE_PTR_LIST(call_implies_cb_list
, struct call_implies_callback
);
84 static struct call_implies_cb_list
*call_implies_cb_list
;
86 void sql_exec(int (*callback
)(void*, int, char**, char**), const char *sql
)
91 if (option_no_db
|| !db
)
94 rc
= sqlite3_exec(db
, sql
, callback
, 0, &err
);
95 if (rc
!= SQLITE_OK
) {
96 fprintf(stderr
, "SQL error #2: %s\n", err
);
97 fprintf(stderr
, "SQL: '%s'\n", sql
);
101 void sql_mem_exec(int (*callback
)(void*, int, char**, char**), const char *sql
)
106 rc
= sqlite3_exec(mem_db
, sql
, callback
, 0, &err
);
107 if (rc
!= SQLITE_OK
) {
108 fprintf(stderr
, "SQL error #2: %s\n", err
);
109 fprintf(stderr
, "SQL: '%s'\n", sql
);
113 void sql_insert_return_states(int return_id
, const char *return_ranges
,
114 int type
, int param
, const char *key
, const char *value
)
116 if (key
&& strlen(key
) >= 80)
118 sql_insert(return_states
, "'%s', '%s', %lu, %d, '%s', %d, %d, %d, '%s', '%s'",
119 get_base_file(), get_function(), (unsigned long)__inline_fn
,
120 return_id
, return_ranges
, fn_static(), type
, param
, key
, value
);
123 static struct string_list
*common_funcs
;
124 static int is_common_function(const char *fn
)
128 if (strncmp(fn
, "__builtin_", 10) == 0)
131 FOR_EACH_PTR(common_funcs
, tmp
) {
132 if (strcmp(tmp
, fn
) == 0)
134 } END_FOR_EACH_PTR(tmp
);
139 void sql_insert_caller_info(struct expression
*call
, int type
,
140 int param
, const char *key
, const char *value
)
144 if (!option_info
&& !__inline_call
)
147 if (key
&& strlen(key
) >= 80)
150 fn
= get_fnptr_name(call
->fn
);
156 "insert into caller_info values ('%s', '%s', '%s', %lu, %d, %d, %d, '%s', '%s');",
157 get_base_file(), get_function(), fn
, (unsigned long)call
,
158 is_static(call
->fn
), type
, param
, key
, value
);
164 if (is_common_function(fn
))
167 sm_msg("SQL_caller_info: insert into caller_info values ("
168 "'%s', '%s', '%s', %%CALL_ID%%, %d, %d, %d, '%s', '%s');",
169 get_base_file(), get_function(), fn
, is_static(call
->fn
),
170 type
, param
, key
, value
);
175 void sql_insert_function_ptr(const char *fn
, const char *struct_name
)
177 sql_insert(function_ptr
, "'%s', '%s', '%s'", get_base_file(), fn
,
181 void sql_insert_call_implies(int type
, int param
, int value
)
183 sql_insert(call_implies
, "'%s', '%s', %lu, %d, %d, %d, %d", get_base_file(),
184 get_function(), (unsigned long)__inline_fn
, fn_static(),
188 void sql_insert_type_size(const char *member
, int size
)
190 sql_insert(type_size
, "'%s', '%s', %d", get_base_file(), member
, size
);
193 void sql_insert_local_values(const char *name
, const char *value
)
195 sql_insert(local_values
, "'%s', '%s', '%s'", get_base_file(), name
, value
);
198 static char *get_static_filter(struct symbol
*sym
)
200 static char sql_filter
[1024];
202 if (sym
->ctype
.modifiers
& MOD_STATIC
) {
203 snprintf(sql_filter
, sizeof(sql_filter
),
204 "file = '%s' and function = '%s' and static = '1'",
205 get_base_file(), sym
->ident
->name
);
207 snprintf(sql_filter
, sizeof(sql_filter
),
208 "function = '%s' and static = '0'", sym
->ident
->name
);
214 static int row_count
;
215 static int get_row_count(void *unused
, int argc
, char **argv
, char **azColName
)
219 row_count
= atoi(argv
[0]);
223 void sql_select_return_states(const char *cols
, struct expression
*call
,
224 int (*callback
)(void*, int, char**, char**))
226 if (call
->fn
->type
!= EXPR_SYMBOL
|| !call
->fn
->symbol
)
229 if (inlinable(call
->fn
)) {
231 "select %s from return_states where call_id = '%lu';",
232 cols
, (unsigned long)call
);
237 run_sql(get_row_count
, "select count(*) from return_states where %s;",
238 get_static_filter(call
->fn
->symbol
));
239 if (row_count
> 1000)
242 run_sql(callback
, "select %s from return_states where %s;",
243 cols
, get_static_filter(call
->fn
->symbol
));
246 void sql_select_call_implies(const char *cols
, struct expression
*call
,
247 int (*callback
)(void*, int, char**, char**))
249 if (call
->fn
->type
!= EXPR_SYMBOL
|| !call
->fn
->symbol
)
252 if (inlinable(call
->fn
)) {
254 "select %s from call_implies where call_id = '%lu';",
255 cols
, (unsigned long)call
);
259 run_sql(callback
, "select %s from call_implies where %s;",
260 cols
, get_static_filter(call
->fn
->symbol
));
263 void sql_select_caller_info(const char *cols
, struct symbol
*sym
,
264 int (*callback
)(void*, int, char**, char**))
267 mem_sql(callback
, "select %s from caller_info where call_id = %lu;",
268 cols
, (unsigned long)__inline_fn
);
273 "select %s from caller_info where %s order by call_id;",
274 cols
, get_static_filter(sym
));
277 void select_caller_info_hook(void (*callback
)(const char *name
, struct symbol
*sym
, char *key
, char *value
), int type
)
279 struct def_callback
*def_callback
= __alloc_def_callback(0);
281 def_callback
->hook_type
= type
;
282 def_callback
->callback
= callback
;
283 add_ptr_list(&callbacks
, def_callback
);
287 * These call backs are used when the --info option is turned on to print struct
288 * member information. For example foo->bar could have a state in
289 * smatch_extra.c and also check_user.c.
291 void add_member_info_callback(int owner
, void (*callback
)(struct expression
*call
, int param
, char *printed_name
, struct smatch_state
*state
))
293 struct member_info_callback
*member_callback
= __alloc_member_info_callback(0);
295 member_callback
->owner
= owner
;
296 member_callback
->callback
= callback
;
297 add_ptr_list(&member_callbacks
, member_callback
);
300 void add_returned_state_callback(void (*fn
)(int return_id
, char *return_ranges
, struct expression
*returned_expr
))
302 struct returned_state_callback
*callback
= __alloc_returned_state_callback(0);
304 callback
->callback
= fn
;
305 add_ptr_list(&returned_state_callbacks
, callback
);
308 void add_returned_member_callback(int owner
, void (*callback
)(int return_id
, char *return_ranges
, char *printed_name
, struct smatch_state
*state
))
310 struct returned_member_callback
*member_callback
= __alloc_returned_member_callback(0);
312 member_callback
->owner
= owner
;
313 member_callback
->callback
= callback
;
314 add_ptr_list(&returned_member_callbacks
, member_callback
);
317 void select_call_implies_hook(int type
, void (*callback
)(struct expression
*arg
, char *value
))
319 struct call_implies_callback
*cb
= __alloc_call_implies_callback(0);
322 cb
->callback
= callback
;
323 add_ptr_list(&call_implies_cb_list
, cb
);
326 static struct expression
*static_call_expr
;
327 static struct symbol
*return_type
;
328 static struct range_list
*return_range_list
;
329 static int db_return_callback(void *unused
, int argc
, char **argv
, char **azColName
)
331 struct range_list
*rl
;
335 call_results_to_rl(static_call_expr
, return_type
, argv
[0], &rl
);
336 return_range_list
= rl_union(return_range_list
, rl
);
340 struct range_list
*db_return_vals(struct expression
*expr
)
342 static_call_expr
= expr
;
343 return_type
= get_type(expr
);
346 if (expr
->fn
->type
!= EXPR_SYMBOL
|| !expr
->fn
->symbol
)
349 return_range_list
= NULL
;
350 if (inlinable(expr
->fn
)) {
351 mem_sql(db_return_callback
,
352 "select distinct return from return_states where call_id = '%lu';",
353 (unsigned long)expr
);
355 run_sql(db_return_callback
,
356 "select distinct return from return_states where %s;",
357 get_static_filter(expr
->fn
->symbol
));
359 return return_range_list
;
362 static void match_call_marker(struct expression
*expr
)
365 * we just want to record something in the database so that if we have
366 * two calls like: frob(4); frob(some_unkown); then on the receiving
367 * side we know that sometimes frob is called with unknown parameters.
370 sql_insert_caller_info(expr
, INTERNAL
, -1, "%call_marker%", "");
373 static void print_struct_members(struct expression
*call
, struct expression
*expr
, int param
, struct state_list
*slist
,
374 void (*callback
)(struct expression
*call
, int param
, char *printed_name
, struct smatch_state
*state
))
380 char printed_name
[256];
383 expr
= strip_expr(expr
);
384 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&') {
385 expr
= strip_expr(expr
->unop
);
389 name
= expr_to_var_sym(expr
, &sym
);
394 FOR_EACH_PTR(slist
, sm
) {
397 if (strcmp(name
, sm
->name
) == 0) {
399 snprintf(printed_name
, sizeof(printed_name
), "*$$");
400 else /* these are already handled. fixme: handle them here */
402 } else if (sm
->name
[0] == '*' && strcmp(name
, sm
->name
+ 1) == 0) {
403 snprintf(printed_name
, sizeof(printed_name
), "*$$");
404 } else if (strncmp(name
, sm
->name
, len
) == 0) {
406 snprintf(printed_name
, sizeof(printed_name
), "$$->%s", sm
->name
+ len
+ 1);
408 snprintf(printed_name
, sizeof(printed_name
), "$$%s", sm
->name
+ len
);
412 callback(call
, param
, printed_name
, sm
->state
);
413 } END_FOR_EACH_PTR(sm
);
418 static void match_call_info(struct expression
*call
)
420 struct member_info_callback
*cb
;
421 struct expression
*arg
;
422 struct state_list
*slist
;
426 name
= get_fnptr_name(call
->fn
);
430 FOR_EACH_PTR(member_callbacks
, cb
) {
431 slist
= get_all_states(cb
->owner
);
433 FOR_EACH_PTR(call
->args
, arg
) {
434 print_struct_members(call
, arg
, i
, slist
, cb
->callback
);
436 } END_FOR_EACH_PTR(arg
);
438 } END_FOR_EACH_PTR(cb
);
443 static int get_param(int param
, char **name
, struct symbol
**sym
)
449 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, arg
) {
451 * this is a temporary hack to work around a bug (I think in sparse?)
452 * 2.6.37-rc1:fs/reiserfs/journal.o
453 * If there is a function definition without parameter name found
454 * after a function implementation then it causes a crash.
458 if (arg
->ident
->name
< (char *)100)
460 if (i
== param
&& arg
->ident
->name
) {
461 *name
= arg
->ident
->name
;
466 } END_FOR_EACH_PTR(arg
);
471 static struct state_list
*final_states
;
472 static int prev_func_id
= -1;
473 static int db_callback(void *unused
, int argc
, char **argv
, char **azColName
)
479 struct symbol
*sym
= NULL
;
480 struct def_callback
*def_callback
;
481 struct state_list
*slist
;
486 func_id
= atoi(argv
[0]);
488 type
= strtol(argv
[1], NULL
, 10);
489 param
= strtol(argv
[2], NULL
, 10);
493 if (prev_func_id
== -1)
494 prev_func_id
= func_id
;
495 if (func_id
!= prev_func_id
) {
496 slist
= __pop_fake_cur_slist();
497 merge_slist(&final_states
, slist
);
499 __push_fake_cur_slist();
501 prev_func_id
= func_id
;
504 if (type
== INTERNAL
)
506 if (param
>= 0 && !get_param(param
, &name
, &sym
))
509 FOR_EACH_PTR(callbacks
, def_callback
) {
510 if (def_callback
->hook_type
== type
)
511 def_callback
->callback(name
, sym
, argv
[3], argv
[4]);
512 } END_FOR_EACH_PTR(def_callback
);
517 static void get_direct_callers(struct symbol
*sym
)
519 sql_select_caller_info("call_id, type, parameter, key, value", sym
,
523 static struct string_list
*ptr_names_done
;
524 static struct string_list
*ptr_names
;
526 static int get_ptr_name(void *unused
, int argc
, char **argv
, char **azColName
)
528 insert_string(&ptr_names
, alloc_string(argv
[0]));
532 static char *get_next_ptr_name(void)
536 FOR_EACH_PTR(ptr_names
, ptr
) {
537 if (list_has_string(ptr_names_done
, ptr
))
539 insert_string(&ptr_names_done
, ptr
);
541 } END_FOR_EACH_PTR(ptr
);
545 static void get_ptr_names(const char *file
, const char *name
)
547 char sql_filter
[1024];
551 snprintf(sql_filter
, 1024, "file = '%s' and function = '%s';",
554 snprintf(sql_filter
, 1024, "function = '%s';", name
);
557 before
= ptr_list_size((struct ptr_list
*)ptr_names
);
559 run_sql(get_ptr_name
,
560 "select distinct ptr from function_ptr where %s",
563 after
= ptr_list_size((struct ptr_list
*)ptr_names
);
567 while ((name
= get_next_ptr_name()))
568 get_ptr_names(NULL
, name
);
571 static void get_function_pointer_callers(struct symbol
*sym
)
575 if (sym
->ctype
.modifiers
& MOD_STATIC
)
576 get_ptr_names(get_base_file(), sym
->ident
->name
);
578 get_ptr_names(NULL
, sym
->ident
->name
);
580 FOR_EACH_PTR(ptr_names
, ptr
) {
581 run_sql(db_callback
, "select call_id, type, parameter, key, value"
582 " from caller_info where function = '%s' order by call_id",
585 } END_FOR_EACH_PTR(ptr
);
587 __free_ptr_list((struct ptr_list
**)&ptr_names
);
588 __free_ptr_list((struct ptr_list
**)&ptr_names_done
);
591 static void match_data_from_db(struct symbol
*sym
)
594 struct state_list
*slist
;
596 if (!sym
|| !sym
->ident
|| !sym
->ident
->name
)
599 __push_fake_cur_slist();
603 get_direct_callers(sym
);
605 get_function_pointer_callers(sym
);
607 slist
= __pop_fake_cur_slist();
608 merge_slist(&final_states
, slist
);
611 FOR_EACH_PTR(final_states
, sm
) {
613 } END_FOR_EACH_PTR(sm
);
615 free_slist(&final_states
);
618 static int call_implies_callbacks(void *unused
, int argc
, char **argv
, char **azColName
)
620 struct call_implies_callback
*cb
;
621 struct expression
*arg
= NULL
;
628 type
= atoi(argv
[1]);
629 param
= atoi(argv
[2]);
631 FOR_EACH_PTR(call_implies_cb_list
, cb
) {
632 if (cb
->type
!= type
)
635 arg
= get_argument_from_call_expr(static_call_expr
->args
, param
);
639 cb
->callback(arg
, argv
[3]);
640 } END_FOR_EACH_PTR(cb
);
645 static void match_call_implies(struct expression
*expr
)
647 static_call_expr
= expr
;
648 sql_select_call_implies("function, type, parameter, value", expr
,
649 call_implies_callbacks
);
653 static void print_initializer_list(struct expression_list
*expr_list
,
654 struct symbol
*struct_type
)
656 struct expression
*expr
;
657 struct symbol
*base_type
;
658 char struct_name
[256];
660 FOR_EACH_PTR(expr_list
, expr
) {
661 if (expr
->type
== EXPR_INDEX
&& expr
->idx_expression
&& expr
->idx_expression
->type
== EXPR_INITIALIZER
) {
662 print_initializer_list(expr
->idx_expression
->expr_list
, struct_type
);
665 if (expr
->type
!= EXPR_IDENTIFIER
)
667 if (!expr
->expr_ident
)
669 if (!expr
->ident_expression
|| !expr
->ident_expression
->symbol_name
)
671 base_type
= get_type(expr
->ident_expression
);
672 if (!base_type
|| base_type
->type
!= SYM_FN
)
674 snprintf(struct_name
, sizeof(struct_name
), "(struct %s)->%s",
675 struct_type
->ident
->name
, expr
->expr_ident
->name
);
676 sql_insert_function_ptr(expr
->ident_expression
->symbol_name
->name
,
678 } END_FOR_EACH_PTR(expr
);
681 static void global_variable(struct symbol
*sym
)
683 struct symbol
*struct_type
;
687 if (!sym
->initializer
|| sym
->initializer
->type
!= EXPR_INITIALIZER
)
689 struct_type
= get_base_type(sym
);
692 if (struct_type
->type
== SYM_ARRAY
) {
693 struct_type
= get_base_type(struct_type
);
697 if (struct_type
->type
!= SYM_STRUCT
|| !struct_type
->ident
)
699 print_initializer_list(sym
->initializer
->expr_list
, struct_type
);
702 static void match_return_info(int return_id
, char *return_ranges
, struct expression
*expr
)
704 sql_insert_return_states(return_id
, return_ranges
, INTERNAL
, -1, "", "");
707 static int return_id
;
708 static void match_function_def(struct symbol
*sym
)
714 static void call_return_state_hooks_conditional(struct expression
*expr
)
716 struct returned_state_callback
*cb
;
717 struct range_list
*rl
;
719 int final_pass_orig
= final_pass
;
721 __push_fake_cur_slist();
724 __split_whole_condition(expr
->conditional
);
725 final_pass
= final_pass_orig
;
727 if (get_implied_rl(expr
->cond_true
, &rl
))
728 rl
= cast_rl(cur_func_return_type(), rl
);
730 rl
= cast_rl(cur_func_return_type(), alloc_whole_rl(get_type(expr
->cond_true
)));
731 return_ranges
= show_rl(rl
);
734 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
735 cb
->callback(return_id
, return_ranges
, expr
);
736 } END_FOR_EACH_PTR(cb
);
738 __push_true_states();
739 __use_false_states();
741 if (get_implied_rl(expr
->cond_false
, &rl
))
742 rl
= cast_rl(cur_func_return_type(), rl
);
744 rl
= cast_rl(cur_func_return_type(), alloc_whole_rl(get_type(expr
->cond_false
)));
745 return_ranges
= show_rl(rl
);
748 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
749 cb
->callback(return_id
, return_ranges
, expr
);
750 } END_FOR_EACH_PTR(cb
);
752 __merge_true_states();
753 __free_fake_cur_slist();
756 static void call_return_state_hooks_compare(struct expression
*expr
)
758 struct returned_state_callback
*cb
;
760 int final_pass_orig
= final_pass
;
762 __push_fake_cur_slist();
765 __split_whole_condition(expr
);
766 final_pass
= final_pass_orig
;
768 return_ranges
= alloc_sname("1");
771 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
772 cb
->callback(return_id
, return_ranges
, expr
);
773 } END_FOR_EACH_PTR(cb
);
775 __push_true_states();
776 __use_false_states();
778 return_ranges
= alloc_sname("0");;
780 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
781 cb
->callback(return_id
, return_ranges
, expr
);
782 } END_FOR_EACH_PTR(cb
);
784 __merge_true_states();
785 __free_fake_cur_slist();
788 static int call_return_state_hooks_split_possible(struct expression
*expr
)
790 struct returned_state_callback
*cb
;
791 struct range_list
*rl
;
794 struct sm_state
*tmp
;
796 int nr_possible
, nr_states
;
800 if (!expr
|| expr_equal_to_param(expr
))
803 sm
= get_sm_state_expr(SMATCH_EXTRA
, expr
);
804 if (!sm
|| !sm
->merged
)
807 /* bail if it gets too complicated */
808 nr_possible
= ptr_list_size((struct ptr_list
*)sm
->possible
);
809 nr_states
= ptr_list_size((struct ptr_list
*)__get_cur_slist());
811 * the main thing option_info because we don't want to print a
812 * million lines of output. If someone else, like check_locking.c
813 * wants this data, then it doesn't cause a slow down to provide it.
815 if (option_info
&& nr_possible
>= 100)
817 if (option_info
&& nr_states
* nr_possible
>= 2000)
820 compare_str
= expr_lte_to_param(expr
);
822 FOR_EACH_PTR(sm
->possible
, tmp
) {
827 __push_fake_cur_slist();
829 overwrite_states_using_pool(tmp
);
831 rl
= cast_rl(cur_func_return_type(), estate_rl(tmp
->state
));
832 return_ranges
= show_rl(rl
);
834 snprintf(buf
, sizeof(buf
), "%s%s", return_ranges
, compare_str
);
835 return_ranges
= alloc_sname(buf
);
839 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
840 cb
->callback(return_id
, return_ranges
, expr
);
841 } END_FOR_EACH_PTR(cb
);
843 __free_fake_cur_slist();
844 } END_FOR_EACH_PTR(tmp
);
849 static char *get_return_ranges_str(struct expression
*expr
)
851 struct range_list
*rl
;
857 return alloc_sname("");
858 compare_str
= expr_equal_to_param(expr
);
862 if (get_implied_rl(expr
, &rl
)) {
863 rl
= cast_rl(cur_func_return_type(), rl
);
864 return_ranges
= show_rl(rl
);
866 rl
= cast_rl(cur_func_return_type(), alloc_whole_rl(get_type(expr
)));
867 return_ranges
= show_rl(rl
);
869 compare_str
= expr_lte_to_param(expr
);
871 snprintf(buf
, sizeof(buf
), "%s%s", return_ranges
, compare_str
);
872 return alloc_sname(buf
);
874 return return_ranges
;
877 static int is_conditional(struct expression
*expr
)
881 if (expr
->type
== EXPR_CONDITIONAL
|| expr
->type
== EXPR_SELECT
)
886 static void call_return_state_hooks(struct expression
*expr
)
888 struct returned_state_callback
*cb
;
892 expr
= strip_expr(expr
);
894 if (is_condition(expr
)) {
895 call_return_state_hooks_compare(expr
);
897 } else if (is_conditional(expr
)) {
898 call_return_state_hooks_conditional(expr
);
900 } else if (call_return_state_hooks_split_possible(expr
)) {
904 return_ranges
= get_return_ranges_str(expr
);
907 nr_states
= ptr_list_size((struct ptr_list
*)__get_cur_slist());
908 if (nr_states
>= 10000) {
909 match_return_info(return_id
, return_ranges
, expr
);
912 FOR_EACH_PTR(returned_state_callbacks
, cb
) {
913 cb
->callback(return_id
, return_ranges
, expr
);
914 } END_FOR_EACH_PTR(cb
);
917 static void print_returned_struct_members(int return_id
, char *return_ranges
, struct expression
*expr
)
919 struct returned_member_callback
*cb
;
920 struct state_list
*my_slist
;
924 char member_name
[256];
927 type
= get_type(expr
);
928 if (!type
|| type
->type
!= SYM_PTR
)
930 type
= get_real_base_type(type
);
931 if (!type
|| type
->type
!= SYM_STRUCT
)
933 name
= expr_to_var(expr
);
937 member_name
[sizeof(member_name
) - 1] = '\0';
938 strcpy(member_name
, "$$");
941 FOR_EACH_PTR(returned_member_callbacks
, cb
) {
942 my_slist
= get_all_states(cb
->owner
);
943 FOR_EACH_PTR(my_slist
, sm
) {
944 if (strncmp(sm
->name
, name
, len
) != 0)
946 if (strncmp(sm
->name
+ len
, "->", 2) != 0)
948 strncpy(member_name
+ 2, sm
->name
+ len
, sizeof(member_name
) - 2);
949 cb
->callback(return_id
, return_ranges
, member_name
, sm
->state
);
950 } END_FOR_EACH_PTR(sm
);
951 free_slist(&my_slist
);
952 } END_FOR_EACH_PTR(cb
);
957 static void reset_memdb(void)
959 mem_sql(NULL
, "delete from caller_info;");
960 mem_sql(NULL
, "delete from return_states;");
961 mem_sql(NULL
, "delete from call_implies;");
964 static void match_end_func_info(struct symbol
*sym
)
966 if (__path_is_null())
968 call_return_state_hooks(NULL
);
973 static void init_memdb(void)
977 const char *schema_files
[] = {
979 "db/caller_info.schema",
980 "db/return_states.schema",
981 "db/type_size.schema",
982 "db/call_implies.schema",
983 "db/function_ptr.schema",
984 "db/local_values.schema",
986 static char buf
[4096];
991 rc
= sqlite3_open(":memory:", &mem_db
);
992 if (rc
!= SQLITE_OK
) {
993 printf("Error starting In-Memory database.");
997 for (i
= 0; i
< ARRAY_SIZE(schema_files
); i
++) {
998 fd
= open_data_file(schema_files
[i
]);
1001 ret
= read(fd
, buf
, sizeof(buf
));
1002 if (ret
== sizeof(buf
)) {
1003 printf("Schema file too large: %s (limit %zd bytes)",
1004 schema_files
[i
], sizeof(buf
));
1007 rc
= sqlite3_exec(mem_db
, buf
, NULL
, 0, &err
);
1008 if (rc
!= SQLITE_OK
) {
1009 fprintf(stderr
, "SQL error #2: %s\n", err
);
1010 fprintf(stderr
, "%s\n", buf
);
1015 void open_smatch_db(void)
1024 rc
= sqlite3_open_v2("smatch_db.sqlite", &db
, SQLITE_OPEN_READONLY
, NULL
);
1025 if (rc
!= SQLITE_OK
) {
1032 static void register_common_funcs(void)
1034 struct token
*token
;
1038 if (option_project
== PROJ_NONE
)
1039 strcpy(filename
, "common_functions");
1041 snprintf(filename
, 256, "%s.common_functions", option_project_str
);
1043 token
= get_tokens_file(filename
);
1046 if (token_type(token
) != TOKEN_STREAMBEGIN
)
1048 token
= token
->next
;
1049 while (token_type(token
) != TOKEN_STREAMEND
) {
1050 if (token_type(token
) != TOKEN_IDENT
)
1052 func
= alloc_string(show_ident(token
->ident
));
1053 add_ptr_list(&common_funcs
, func
);
1054 token
= token
->next
;
1056 clear_token_alloc();
1060 void register_definition_db_callbacks(int id
)
1062 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
1064 add_hook(&match_call_info
, FUNCTION_CALL_HOOK
);
1065 add_hook(&global_variable
, BASE_HOOK
);
1066 add_hook(&global_variable
, DECLARATION_HOOK
);
1067 add_returned_state_callback(match_return_info
);
1068 add_returned_state_callback(print_returned_struct_members
);
1069 add_hook(&call_return_state_hooks
, RETURN_HOOK
);
1070 add_hook(&match_end_func_info
, END_FUNC_HOOK
);
1072 add_hook(&match_data_from_db
, FUNC_DEF_HOOK
);
1073 add_hook(&match_call_implies
, CALL_HOOK_AFTER_INLINE
);
1075 register_common_funcs();
1078 void register_db_call_marker(int id
)
1080 add_hook(&match_call_marker
, FUNCTION_CALL_HOOK
);
1083 char *return_state_to_var_sym(struct expression
*expr
, int param
, char *key
, struct symbol
**sym
)
1085 struct expression
*arg
;
1087 char member_name
[256];
1092 if (expr
->type
!= EXPR_ASSIGNMENT
)
1094 name
= expr_to_var_sym(expr
->left
, sym
);
1097 if (strncmp(key
, "$$", 2) != 0)
1099 snprintf(member_name
, sizeof(member_name
), "%s%s", name
, key
+ 2);
1101 return alloc_string(member_name
);
1104 while (expr
->type
== EXPR_ASSIGNMENT
)
1105 expr
= strip_expr(expr
->right
);
1106 if (expr
->type
!= EXPR_CALL
)
1109 arg
= get_argument_from_call_expr(expr
->args
, param
);
1113 return get_variable_from_key(arg
, key
, sym
);
1116 char *get_variable_from_key(struct expression
*arg
, char *key
, struct symbol
**sym
)
1121 if (strcmp(key
, "$$") == 0)
1122 return expr_to_var_sym(arg
, sym
);
1124 if (strcmp(key
, "*$$") == 0) {
1125 if (arg
->type
== EXPR_PREOP
&& arg
->op
== '&') {
1126 arg
= strip_expr(arg
->unop
);
1127 return expr_to_var_sym(arg
, sym
);
1129 tmp
= expr_to_var_sym(arg
, sym
);
1132 snprintf(buf
, sizeof(buf
), "*%s", tmp
);
1134 return alloc_string(buf
);
1138 if (arg
->type
== EXPR_PREOP
&& arg
->op
== '&') {
1139 arg
= strip_expr(arg
->unop
);
1140 tmp
= expr_to_var_sym(arg
, sym
);
1143 snprintf(buf
, sizeof(buf
), "%s.%s", tmp
, key
+ 4);
1144 return alloc_string(buf
);
1147 tmp
= expr_to_var_sym(arg
, sym
);
1150 snprintf(buf
, sizeof(buf
), "%s%s", tmp
, key
+ 2);
1152 return alloc_string(buf
);
1155 const char *get_param_name(struct sm_state
*sm
)
1159 static char buf
[256];
1161 if (!sm
->sym
->ident
)
1164 param_name
= sm
->sym
->ident
->name
;
1165 name_len
= strlen(param_name
);
1167 if (strcmp(sm
->name
, param_name
) == 0) {
1169 } else if (sm
->name
[name_len
] == '-' && /* check for '-' from "->" */
1170 strncmp(sm
->name
, param_name
, name_len
) == 0) {
1171 snprintf(buf
, sizeof(buf
), "$$%s", sm
->name
+ name_len
);
1173 } else if (sm
->name
[0] == '*' && strcmp(sm
->name
+ 1, param_name
) == 0) {