2 * Copyright (C) 2006,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
24 #include "smatch_expression_stacks.h"
25 #include "smatch_extra.h"
26 #include "smatch_slist.h"
29 int __in_fake_struct_assign
;
30 int __in_fake_var_assign
;
35 struct expression
*__inline_fn
;
37 static int __smatch_lineno
= 0;
39 static char *base_file
;
40 static const char *filename
;
41 static char *pathname
;
42 static char *full_filename
;
43 static char *full_base_file
;
44 static char *cur_func
;
45 static unsigned int loop_count
;
46 static int last_goto_statement_handled
;
47 int __expr_stmt_count
;
48 int __in_function_def
;
49 int __in_unmatched_hook
;
50 static struct expression_list
*switch_expr_stack
= NULL
;
51 static struct expression_list
*post_op_stack
= NULL
;
53 static struct ptr_list
*fn_data_list
;
54 static struct ptr_list
*backup
;
56 struct expression_list
*big_expression_stack
;
57 struct statement_list
*big_statement_stack
;
58 struct statement
*__prev_stmt
;
59 struct statement
*__cur_stmt
;
60 struct statement
*__next_stmt
;
61 int __in_pre_condition
= 0;
62 int __bail_on_rest_of_function
= 0;
63 static struct timeval fn_start_time
;
64 static struct timeval outer_fn_start_time
;
65 char *get_function(void) { return cur_func
; }
66 int get_lineno(void) { return __smatch_lineno
; }
67 int inside_loop(void) { return !!loop_count
; }
68 int definitely_inside_loop(void) { return !!(loop_count
& ~0x08000000); }
69 struct expression
*get_switch_expr(void) { return top_expression(switch_expr_stack
); }
70 int in_expression_statement(void) { return !!__expr_stmt_count
; }
72 static void split_symlist(struct symbol_list
*sym_list
);
73 static void split_declaration(struct symbol_list
*sym_list
);
74 static void split_expr_list(struct expression_list
*expr_list
, struct expression
*parent
);
75 static void split_args(struct expression
*expr
);
76 static struct expression
*fake_a_variable_assign(struct symbol
*type
, struct expression
*call
, struct expression
*expr
, int nr
);
77 static void add_inline_function(struct symbol
*sym
);
78 static void parse_inline(struct expression
*expr
);
80 int option_assume_loops
= 0;
81 int option_two_passes
= 0;
82 struct symbol
*cur_func_sym
= NULL
;
83 struct stree
*global_states
;
85 const unsigned long valid_ptr_min
= 4096;
86 unsigned long valid_ptr_max
= ULONG_MAX
& ~(MTAG_OFFSET_MASK
);
87 const sval_t valid_ptr_min_sval
= {
91 sval_t valid_ptr_max_sval
= {
93 {.value
= ULONG_MAX
& ~(MTAG_OFFSET_MASK
)},
95 struct range_list
*valid_ptr_rl
;
97 void alloc_valid_ptr_rl(void)
99 valid_ptr_max
= sval_type_max(&ulong_ctype
).value
& ~(MTAG_OFFSET_MASK
);
100 valid_ptr_max_sval
.value
= valid_ptr_max
;
102 valid_ptr_rl
= alloc_rl(valid_ptr_min_sval
, valid_ptr_max_sval
);
103 valid_ptr_rl
= cast_rl(&ptr_ctype
, valid_ptr_rl
);
104 valid_ptr_rl
= clone_rl_permanent(valid_ptr_rl
);
107 int outside_of_function(void)
109 return cur_func_sym
== NULL
;
112 const char *get_filename(void)
114 if (option_info
&& option_full_path
)
115 return full_base_file
;
118 if (option_full_path
)
119 return full_filename
;
123 const char *get_base_file(void)
125 if (option_full_path
)
126 return full_base_file
;
130 static void set_position(struct position pos
)
133 static int prev_stream
= -1;
138 if (pos
.stream
== 0 && pos
.line
== 0)
141 __smatch_lineno
= pos
.line
;
143 if (pos
.stream
== prev_stream
)
146 filename
= stream_name(pos
.stream
);
149 pathname
= getcwd(NULL
, 0);
151 len
= strlen(pathname
) + 1 + strlen(filename
) + 1;
152 full_filename
= malloc(len
);
153 snprintf(full_filename
, len
, "%s/%s", pathname
, filename
);
155 full_filename
= alloc_string(filename
);
160 int is_assigned_call(struct expression
*expr
)
162 struct expression
*parent
= expr_get_parent_expr(expr
);
165 parent
->type
== EXPR_ASSIGNMENT
&&
167 strip_expr(parent
->right
) == expr
)
173 int is_fake_assigned_call(struct expression
*expr
)
175 struct expression
*parent
= expr_get_fake_parent_expr(expr
);
178 parent
->type
== EXPR_ASSIGNMENT
&&
180 strip_expr(parent
->right
) == expr
)
186 static bool is_inline_func(struct expression
*expr
)
188 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
190 if (!expr
->symbol
->definition
)
192 if (expr
->symbol
->definition
->ctype
.modifiers
& MOD_INLINE
)
198 static int is_noreturn_func(struct expression
*expr
)
200 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
202 if (expr
->symbol
->ctype
.modifiers
& MOD_NORETURN
)
207 static int save_func_time(void *_rl
, int argc
, char **argv
, char **azColName
)
209 unsigned long *rl
= _rl
;
211 *rl
= strtoul(argv
[0], NULL
, 10);
215 static int get_func_time(struct symbol
*sym
)
217 unsigned long time
= 0;
219 run_sql(&save_func_time
, &time
,
220 "select key from return_implies where %s and type = %d;",
221 get_static_filter(sym
), FUNC_TIME
);
226 static int inline_budget
= 20;
228 int inlinable(struct expression
*expr
)
231 struct statement
*last_stmt
= NULL
;
233 if (__inline_fn
) /* don't nest */
236 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
238 if (is_no_inline_function(expr
->symbol
->ident
->name
))
240 sym
= get_base_type(expr
->symbol
);
241 if (sym
->stmt
&& sym
->stmt
->type
== STMT_COMPOUND
) {
242 if (ptr_list_size((struct ptr_list
*)sym
->stmt
->stmts
) > 10)
244 if (sym
->stmt
->type
!= STMT_COMPOUND
)
246 last_stmt
= last_ptr_list((struct ptr_list
*)sym
->stmt
->stmts
);
248 if (sym
->inline_stmt
&& sym
->inline_stmt
->type
== STMT_COMPOUND
) {
249 if (ptr_list_size((struct ptr_list
*)sym
->inline_stmt
->stmts
) > 10)
251 if (sym
->inline_stmt
->type
!= STMT_COMPOUND
)
253 last_stmt
= last_ptr_list((struct ptr_list
*)sym
->inline_stmt
->stmts
);
259 /* the magic numbers in this function are pulled out of my bum. */
260 if (last_stmt
->pos
.line
> sym
->pos
.line
+ inline_budget
)
263 if (get_func_time(expr
->symbol
) >= 2)
269 void __process_post_op_stack(void)
271 struct expression
*expr
;
273 FOR_EACH_PTR(post_op_stack
, expr
) {
274 __pass_to_client(expr
, OP_HOOK
);
275 } END_FOR_EACH_PTR(expr
);
277 __free_ptr_list((struct ptr_list
**)&post_op_stack
);
280 static int handle_comma_assigns(struct expression
*expr
)
282 struct expression
*right
;
283 struct expression
*assign
;
285 right
= strip_expr(expr
->right
);
286 if (right
->type
!= EXPR_COMMA
)
289 __split_expr(right
->left
);
290 __process_post_op_stack();
292 assign
= assign_expression(expr
->left
, '=', right
->right
);
293 __split_expr(assign
);
298 /* This is to handle *p++ = foo; assignments */
299 static int handle_postop_assigns(struct expression
*expr
)
301 struct expression
*left
, *fake_left
;
302 struct expression
*assign
;
304 left
= strip_expr(expr
->left
);
305 if (left
->type
!= EXPR_PREOP
|| left
->op
!= '*')
307 left
= strip_expr(left
->unop
);
308 if (left
->type
!= EXPR_POSTOP
)
311 fake_left
= deref_expression(strip_expr(left
->unop
));
312 assign
= assign_expression(fake_left
, '=', expr
->right
);
314 __split_expr(assign
);
315 __split_expr(expr
->left
);
320 static int prev_expression_is_getting_address(struct expression
*expr
)
322 struct expression
*parent
;
325 parent
= expr_get_parent_expr(expr
);
329 if (parent
->type
== EXPR_PREOP
&& parent
->op
== '&')
331 if (parent
->type
== EXPR_PREOP
&& parent
->op
== '(')
333 if (parent
->type
== EXPR_DEREF
&& parent
->op
== '.')
342 static void handle_builtin_overflow_func(struct expression
*expr
)
344 struct expression
*a
, *b
, *res
, *assign
;
347 if (sym_name_is("__builtin_add_overflow", expr
->fn
))
349 else if (sym_name_is("__builtin_sub_overflow", expr
->fn
))
351 else if (sym_name_is("__builtin_mul_overflow", expr
->fn
))
356 a
= get_argument_from_call_expr(expr
->args
, 0);
357 b
= get_argument_from_call_expr(expr
->args
, 1);
358 res
= get_argument_from_call_expr(expr
->args
, 2);
360 assign
= assign_expression(deref_expression(res
), '=', binop_expression(a
, op
, b
));
361 __split_expr(assign
);
364 static int handle__builtin_choose_expr(struct expression
*expr
)
366 struct expression
*const_expr
, *expr1
, *expr2
;
369 if (!sym_name_is("__builtin_choose_expr", expr
->fn
))
372 const_expr
= get_argument_from_call_expr(expr
->args
, 0);
373 expr1
= get_argument_from_call_expr(expr
->args
, 1);
374 expr2
= get_argument_from_call_expr(expr
->args
, 2);
376 if (!get_value(const_expr
, &sval
) || !expr1
|| !expr2
)
385 static int handle__builtin_choose_expr_assigns(struct expression
*expr
)
387 struct expression
*const_expr
, *right
, *expr1
, *expr2
, *fake
;
390 right
= strip_expr(expr
->right
);
391 if (right
->type
!= EXPR_CALL
)
393 if (!sym_name_is("__builtin_choose_expr", right
->fn
))
396 const_expr
= get_argument_from_call_expr(right
->args
, 0);
397 expr1
= get_argument_from_call_expr(right
->args
, 1);
398 expr2
= get_argument_from_call_expr(right
->args
, 2);
400 if (!get_value(const_expr
, &sval
) || !expr1
|| !expr2
)
403 fake
= assign_expression(expr
->left
, '=', sval
.value
? expr1
: expr2
);
408 void __split_expr(struct expression
*expr
)
413 // sm_msg(" Debug expr_type %d %s", expr->type, show_special(expr->op));
415 if (__in_fake_assign
&& expr
->type
!= EXPR_ASSIGNMENT
)
417 if (__in_fake_assign
>= 4) /* don't allow too much nesting */
420 push_expression(&big_expression_stack
, expr
);
421 set_position(expr
->pos
);
422 __pass_to_client(expr
, EXPR_HOOK
);
424 switch (expr
->type
) {
426 expr_set_parent_expr(expr
->unop
, expr
);
428 if (expr
->op
== '*' &&
429 !prev_expression_is_getting_address(expr
))
430 __pass_to_client(expr
, DEREF_HOOK
);
431 __split_expr(expr
->unop
);
432 __pass_to_client(expr
, OP_HOOK
);
435 expr_set_parent_expr(expr
->unop
, expr
);
437 __split_expr(expr
->unop
);
438 push_expression(&post_op_stack
, expr
);
442 if (expr
->statement
&& !expr
->statement
) {
443 stmt_set_parent_stmt(expr
->statement
,
444 last_ptr_list((struct ptr_list
*)big_statement_stack
));
446 __split_stmt(expr
->statement
);
451 expr_set_parent_expr(expr
->left
, expr
);
452 expr_set_parent_expr(expr
->right
, expr
);
454 __pass_to_client(expr
, LOGIC_HOOK
);
455 __handle_logic(expr
);
458 expr_set_parent_expr(expr
->left
, expr
);
459 expr_set_parent_expr(expr
->right
, expr
);
461 __pass_to_client(expr
, BINOP_HOOK
);
463 expr_set_parent_expr(expr
->left
, expr
);
464 expr_set_parent_expr(expr
->right
, expr
);
466 __split_expr(expr
->left
);
467 __process_post_op_stack();
468 __split_expr(expr
->right
);
470 case EXPR_ASSIGNMENT
: {
471 struct expression
*right
;
473 expr_set_parent_expr(expr
->left
, expr
);
474 expr_set_parent_expr(expr
->right
, expr
);
476 right
= strip_expr(expr
->right
);
480 __pass_to_client(expr
, RAW_ASSIGNMENT_HOOK
);
483 if (__handle_condition_assigns(expr
))
485 /* foo = (x < 5 ? foo : 5); */
486 if (__handle_select_assigns(expr
))
488 /* foo = ({frob(); frob(); frob(); 1;}) */
489 if (__handle_expr_statement_assigns(expr
))
490 break; // FIXME: got after
492 if (handle_comma_assigns(expr
))
494 if (handle__builtin_choose_expr_assigns(expr
))
496 if (handle_postop_assigns(expr
))
497 break; /* no need to goto after_assign */
499 __split_expr(expr
->right
);
500 if (outside_of_function())
501 __pass_to_client(expr
, GLOBAL_ASSIGNMENT_HOOK
);
503 __pass_to_client(expr
, ASSIGNMENT_HOOK
);
505 __fake_struct_member_assignments(expr
);
507 /* Re-examine ->right for inlines. See the commit message */
508 right
= strip_expr(expr
->right
);
509 if (expr
->op
== '=' && right
->type
== EXPR_CALL
)
510 __pass_to_client(expr
, CALL_ASSIGNMENT_HOOK
);
513 if (get_macro_name(right
->pos
) &&
514 get_macro_name(expr
->pos
) != get_macro_name(right
->pos
))
515 __pass_to_client(expr
, MACRO_ASSIGNMENT_HOOK
);
517 __pass_to_client(expr
, ASSIGNMENT_HOOK_AFTER
);
518 __split_expr(expr
->left
);
522 expr_set_parent_expr(expr
->deref
, expr
);
524 __pass_to_client(expr
, DEREF_HOOK
);
525 __split_expr(expr
->deref
);
528 expr_set_parent_expr(expr
->base
, expr
);
530 __split_expr(expr
->base
);
533 case EXPR_FORCE_CAST
:
534 expr_set_parent_expr(expr
->cast_expression
, expr
);
536 __pass_to_client(expr
, CAST_HOOK
);
537 __split_expr(expr
->cast_expression
);
540 if (expr
->cast_expression
)
541 __pass_to_client(strip_parens(expr
->cast_expression
),
547 case EXPR_CONDITIONAL
:
549 expr_set_parent_expr(expr
->conditional
, expr
);
550 expr_set_parent_expr(expr
->cond_true
, expr
);
551 expr_set_parent_expr(expr
->cond_false
, expr
);
553 if (known_condition_true(expr
->conditional
)) {
554 __split_expr(expr
->cond_true
);
557 if (known_condition_false(expr
->conditional
)) {
558 __split_expr(expr
->cond_false
);
561 __pass_to_client(expr
, SELECT_HOOK
);
562 __split_whole_condition(expr
->conditional
);
563 __split_expr(expr
->cond_true
);
564 __push_true_states();
565 __use_false_states();
566 __split_expr(expr
->cond_false
);
567 __merge_true_states();
570 expr_set_parent_expr(expr
->fn
, expr
);
572 if (sym_name_is("__builtin_constant_p", expr
->fn
))
574 if (handle__builtin_choose_expr(expr
))
576 __split_expr(expr
->fn
);
578 if (is_inline_func(expr
->fn
))
579 add_inline_function(expr
->fn
->symbol
->definition
);
580 if (inlinable(expr
->fn
))
582 __process_post_op_stack();
583 __pass_to_client(expr
, FUNCTION_CALL_HOOK_BEFORE
);
584 __pass_to_client(expr
, FUNCTION_CALL_HOOK
);
586 if (inlinable(expr
->fn
))
588 __pass_to_client(expr
, CALL_HOOK_AFTER_INLINE
);
589 if (is_noreturn_func(expr
->fn
))
591 if (!expr_get_parent_expr(expr
))
592 __discard_fake_states(expr
);
593 handle_builtin_overflow_func(expr
);
595 case EXPR_INITIALIZER
:
596 split_expr_list(expr
->expr_list
, expr
);
598 case EXPR_IDENTIFIER
:
599 expr_set_parent_expr(expr
->ident_expression
, expr
);
600 __split_expr(expr
->ident_expression
);
603 expr_set_parent_expr(expr
->idx_expression
, expr
);
604 __split_expr(expr
->idx_expression
);
607 expr_set_parent_expr(expr
->init_expr
, expr
);
608 __split_expr(expr
->init_expr
);
611 __pass_to_client(expr
, SYM_HOOK
);
614 __pass_to_client(expr
, STRING_HOOK
);
619 __pass_to_client(expr
, EXPR_HOOK_AFTER
);
620 pop_expression(&big_expression_stack
);
623 static int is_forever_loop(struct statement
*stmt
)
625 struct expression
*expr
;
628 expr
= strip_expr(stmt
->iterator_pre_condition
);
630 expr
= stmt
->iterator_post_condition
;
632 /* this is a for(;;) loop... */
636 if (get_value(expr
, &sval
) && sval
.value
!= 0)
643 static char *get_loop_name(int num
)
647 snprintf(buf
, 255, "-loop%d", num
);
649 return alloc_sname(buf
);
653 * Pre Loops are while and for loops.
655 static void handle_pre_loop(struct statement
*stmt
)
657 int once_through
; /* we go through the loop at least once */
658 struct sm_state
*extra_sm
= NULL
;
661 struct stree
*stree
= NULL
;
662 struct sm_state
*sm
= NULL
;
664 loop_name
= get_loop_name(loop_num
);
667 if (stmt
->iterator_pre_statement
) {
668 __split_stmt(stmt
->iterator_pre_statement
);
669 __prev_stmt
= stmt
->iterator_pre_statement
;
672 once_through
= implied_condition_true(stmt
->iterator_pre_condition
);
678 __merge_gotos(loop_name
, NULL
);
680 extra_sm
= __extra_handle_canonical_loops(stmt
, &stree
);
681 __in_pre_condition
++;
682 __pass_to_client(stmt
, PRELOOP_HOOK
);
683 __split_whole_condition(stmt
->iterator_pre_condition
);
684 __in_pre_condition
--;
685 FOR_EACH_SM(stree
, sm
) {
686 set_state(sm
->owner
, sm
->name
, sm
->sym
, sm
->state
);
687 } END_FOR_EACH_SM(sm
);
690 extra_sm
= get_sm_state(extra_sm
->owner
, extra_sm
->name
, extra_sm
->sym
);
692 if (option_assume_loops
)
695 __split_stmt(stmt
->iterator_statement
);
696 if (is_forever_loop(stmt
)) {
698 __save_gotos(loop_name
, NULL
);
700 __push_fake_cur_stree();
701 __split_stmt(stmt
->iterator_post_statement
);
702 stree
= __pop_fake_cur_stree();
704 __discard_false_states();
707 if (!__path_is_null())
708 __merge_stree_into_cur(stree
);
712 unchanged
= __iterator_unchanged(extra_sm
);
713 __split_stmt(stmt
->iterator_post_statement
);
714 __prev_stmt
= stmt
->iterator_post_statement
;
717 __save_gotos(loop_name
, NULL
);
718 __in_pre_condition
++;
719 __split_whole_condition(stmt
->iterator_pre_condition
);
720 __in_pre_condition
--;
722 __merge_false_states();
724 __discard_false_states();
726 __merge_false_states();
728 if (extra_sm
&& unchanged
)
729 __extra_pre_loop_hook_after(extra_sm
,
730 stmt
->iterator_post_statement
,
731 stmt
->iterator_pre_condition
);
738 * Post loops are do {} while();
740 static void handle_post_loop(struct statement
*stmt
)
744 loop_name
= get_loop_name(loop_num
);
750 __merge_gotos(loop_name
, NULL
);
751 __split_stmt(stmt
->iterator_statement
);
753 if (!expr_is_zero(stmt
->iterator_post_condition
))
754 __save_gotos(loop_name
, NULL
);
756 if (is_forever_loop(stmt
)) {
759 __split_whole_condition(stmt
->iterator_post_condition
);
760 __use_false_states();
766 static int empty_statement(struct statement
*stmt
)
770 if (stmt
->type
== STMT_EXPRESSION
&& !stmt
->expression
)
775 static int last_stmt_on_same_line(void)
777 struct statement
*stmt
;
780 FOR_EACH_PTR_REVERSE(big_statement_stack
, stmt
) {
783 if (stmt
->pos
.line
== get_lineno())
786 } END_FOR_EACH_PTR_REVERSE(stmt
);
790 static void split_asm_ops(struct asm_operand_list
*ops
)
792 struct asm_operand
*op
;
794 FOR_EACH_PTR(ops
, op
) {
795 __split_expr(op
->expr
);
796 } END_FOR_EACH_PTR(op
);
799 static int is_case_val(struct statement
*stmt
, sval_t sval
)
803 if (stmt
->type
!= STMT_CASE
)
805 if (!stmt
->case_expression
) {
809 if (!get_value(stmt
->case_expression
, &case_sval
))
811 if (case_sval
.value
== sval
.value
)
816 static struct range_list
*get_case_rl(struct expression
*switch_expr
,
817 struct expression
*case_expr
,
818 struct expression
*case_to
)
821 struct range_list
*rl
= NULL
;
822 struct symbol
*switch_type
;
824 switch_type
= get_type(switch_expr
);
825 if (get_value(case_to
, &end
) && get_value(case_expr
, &start
)) {
826 start
= sval_cast(switch_type
, start
);
827 end
= sval_cast(switch_type
, end
);
828 add_range(&rl
, start
, end
);
829 } else if (get_value(case_expr
, &start
)) {
830 start
= sval_cast(switch_type
, start
);
831 add_range(&rl
, start
, start
);
837 static void split_known_switch(struct statement
*stmt
, sval_t sval
)
839 struct statement
*tmp
;
840 struct range_list
*rl
;
842 __split_expr(stmt
->switch_expression
);
843 sval
= sval_cast(get_type(stmt
->switch_expression
), sval
);
845 push_expression(&switch_expr_stack
, stmt
->switch_expression
);
846 __save_switch_states(top_expression(switch_expr_stack
));
851 stmt
= stmt
->switch_statement
;
853 __push_scope_hooks();
854 FOR_EACH_PTR(stmt
->stmts
, tmp
) {
855 __smatch_lineno
= tmp
->pos
.line
;
856 if (is_case_val(tmp
, sval
)) {
857 rl
= alloc_rl(sval
, sval
);
858 __merge_switches(top_expression(switch_expr_stack
), rl
);
859 __pass_case_to_client(top_expression(switch_expr_stack
), rl
);
861 if (__path_is_null())
864 if (__path_is_null()) {
868 } END_FOR_EACH_PTR(tmp
);
870 __call_scope_hooks();
871 if (!__pop_default())
872 __merge_switches(top_expression(switch_expr_stack
), NULL
);
873 __discard_switches();
875 pop_expression(&switch_expr_stack
);
878 static void split_case(struct statement
*stmt
)
880 struct range_list
*rl
= NULL
;
882 expr_set_parent_stmt(stmt
->case_expression
, stmt
);
883 expr_set_parent_stmt(stmt
->case_to
, stmt
);
885 rl
= get_case_rl(top_expression(switch_expr_stack
),
886 stmt
->case_expression
, stmt
->case_to
);
887 while (stmt
->case_statement
->type
== STMT_CASE
) {
888 struct range_list
*tmp
;
890 tmp
= get_case_rl(top_expression(switch_expr_stack
),
891 stmt
->case_statement
->case_expression
,
892 stmt
->case_statement
->case_to
);
895 rl
= rl_union(rl
, tmp
);
896 if (!stmt
->case_expression
)
898 stmt
= stmt
->case_statement
;
901 __merge_switches(top_expression(switch_expr_stack
), rl
);
903 if (!stmt
->case_expression
)
906 stmt_set_parent_stmt(stmt
->case_statement
, stmt
);
907 __split_stmt(stmt
->case_statement
);
910 int time_parsing_function(void)
912 return ms_since(&fn_start_time
) / 1000;
915 bool taking_too_long(void)
917 if ((ms_since(&outer_fn_start_time
) / 1000) > 60 * 5) /* five minutes */
922 struct statement
*get_last_stmt(void)
925 struct statement
*stmt
;
927 fn
= get_base_type(cur_func_sym
);
932 stmt
= fn
->inline_stmt
;
933 if (!stmt
|| stmt
->type
!= STMT_COMPOUND
)
935 stmt
= last_ptr_list((struct ptr_list
*)stmt
->stmts
);
936 if (stmt
&& stmt
->type
== STMT_LABEL
)
937 stmt
= stmt
->label_statement
;
941 int is_last_stmt(struct statement
*cur_stmt
)
943 struct statement
*last
;
945 last
= get_last_stmt();
946 if (last
&& last
== cur_stmt
)
951 static void handle_backward_goto(struct statement
*goto_stmt
)
953 const char *goto_name
, *label_name
;
954 struct statement
*func_stmt
;
955 struct symbol
*base_type
= get_base_type(cur_func_sym
);
956 struct statement
*tmp
;
961 if (last_goto_statement_handled
)
963 last_goto_statement_handled
= 1;
965 if (!goto_stmt
->goto_label
||
966 goto_stmt
->goto_label
->type
!= SYM_LABEL
||
967 !goto_stmt
->goto_label
->ident
)
969 goto_name
= goto_stmt
->goto_label
->ident
->name
;
971 func_stmt
= base_type
->stmt
;
973 func_stmt
= base_type
->inline_stmt
;
976 if (func_stmt
->type
!= STMT_COMPOUND
)
979 FOR_EACH_PTR(func_stmt
->stmts
, tmp
) {
981 if (tmp
->type
!= STMT_LABEL
)
983 if (!tmp
->label_identifier
||
984 tmp
->label_identifier
->type
!= SYM_LABEL
||
985 !tmp
->label_identifier
->ident
)
987 label_name
= tmp
->label_identifier
->ident
->name
;
988 if (strcmp(goto_name
, label_name
) != 0)
993 } END_FOR_EACH_PTR(tmp
);
996 static void fake_a_return(void)
998 struct expression
*ret
= NULL
;
1003 if (cur_func_return_type() != &void_ctype
)
1004 ret
= unknown_value_expression(NULL
);
1006 __pass_to_client(ret
, RETURN_HOOK
);
1010 static void split_ret_value(struct expression
*expr
)
1012 struct symbol
*type
;
1017 type
= get_real_base_type(cur_func_sym
);
1018 type
= get_real_base_type(type
);
1019 expr
= fake_a_variable_assign(type
, NULL
, expr
, -1);
1021 __in_fake_var_assign
++;
1023 __in_fake_var_assign
--;
1026 static void fake_an_empty_default(struct position pos
)
1028 static struct statement none
= {};
1031 none
.type
= STMT_NONE
;
1032 __merge_switches(top_expression(switch_expr_stack
), NULL
);
1033 __split_stmt(&none
);
1036 static void split_compound(struct statement
*stmt
)
1038 struct statement
*prev
= NULL
;
1039 struct statement
*cur
= NULL
;
1040 struct statement
*next
;
1042 __push_scope_hooks();
1044 FOR_EACH_PTR(stmt
->stmts
, next
) {
1045 /* just set them all ahead of time */
1046 stmt_set_parent_stmt(next
, stmt
);
1056 } END_FOR_EACH_PTR(next
);
1065 * For function scope, then delay calling the scope hooks until the
1066 * end of function hooks can run. I'm not positive this is the right
1069 if (!is_last_stmt(cur
))
1070 __call_scope_hooks();
1074 * This is a hack, work around for detecting empty functions.
1076 static int need_delayed_scope_hooks(void)
1078 struct symbol
*fn
= get_base_type(cur_func_sym
);
1079 struct statement
*stmt
;
1085 stmt
= fn
->inline_stmt
;
1086 if (stmt
&& stmt
->type
== STMT_COMPOUND
)
1091 void __split_label_stmt(struct statement
*stmt
)
1093 if (stmt
->label_identifier
&&
1094 stmt
->label_identifier
->type
== SYM_LABEL
&&
1095 stmt
->label_identifier
->ident
) {
1096 loop_count
|= 0x0800000;
1097 __merge_gotos(stmt
->label_identifier
->ident
->name
, stmt
->label_identifier
);
1101 static void find_asm_gotos(struct statement
*stmt
)
1105 FOR_EACH_PTR(stmt
->asm_labels
, sym
) {
1106 __save_gotos(sym
->ident
->name
, sym
);
1107 } END_FOR_EACH_PTR(sym
);
1110 void __split_stmt(struct statement
*stmt
)
1112 static int indent_cnt
;
1114 struct timeval start
, stop
;
1116 gettimeofday(&start
, NULL
);
1121 if (!__in_fake_assign
)
1122 __silence_warnings_for_stmt
= false;
1124 if (__bail_on_rest_of_function
|| is_skipped_function())
1127 if (out_of_memory() || taking_too_long()) {
1128 gettimeofday(&start
, NULL
);
1130 __bail_on_rest_of_function
= 1;
1132 sm_perror("Function too hairy. Giving up. %lu seconds",
1133 start
.tv_sec
- fn_start_time
.tv_sec
);
1135 final_pass
= 0; /* turn off sm_msg() from here */
1141 add_ptr_list(&big_statement_stack
, stmt
);
1142 free_expression_stack(&big_expression_stack
);
1143 set_position(stmt
->pos
);
1144 __pass_to_client(stmt
, STMT_HOOK
);
1146 switch (stmt
->type
) {
1147 case STMT_DECLARATION
:
1148 split_declaration(stmt
->declaration
);
1151 expr_set_parent_stmt(stmt
->ret_value
, stmt
);
1153 split_ret_value(stmt
->ret_value
);
1154 __pass_to_client(stmt
->ret_value
, RETURN_HOOK
);
1155 __process_post_op_stack();
1158 case STMT_EXPRESSION
:
1159 expr_set_parent_stmt(stmt
->expression
, stmt
);
1160 expr_set_parent_stmt(stmt
->context
, stmt
);
1162 __split_expr(stmt
->expression
);
1165 split_compound(stmt
);
1168 stmt_set_parent_stmt(stmt
->if_true
, stmt
);
1169 stmt_set_parent_stmt(stmt
->if_false
, stmt
);
1170 expr_set_parent_stmt(stmt
->if_conditional
, stmt
);
1172 if (known_condition_true(stmt
->if_conditional
)) {
1173 __split_stmt(stmt
->if_true
);
1176 if (known_condition_false(stmt
->if_conditional
)) {
1177 __split_stmt(stmt
->if_false
);
1180 __split_whole_condition(stmt
->if_conditional
);
1181 __split_stmt(stmt
->if_true
);
1182 if (empty_statement(stmt
->if_true
) &&
1183 last_stmt_on_same_line() &&
1184 !get_macro_name(stmt
->if_true
->pos
))
1185 sm_warning("if();");
1186 __push_true_states();
1187 __use_false_states();
1188 __split_stmt(stmt
->if_false
);
1189 __merge_true_states();
1192 stmt_set_parent_stmt(stmt
->iterator_pre_statement
, stmt
);
1193 stmt_set_parent_stmt(stmt
->iterator_statement
, stmt
);
1194 stmt_set_parent_stmt(stmt
->iterator_post_statement
, stmt
);
1195 expr_set_parent_stmt(stmt
->iterator_pre_condition
, stmt
);
1196 expr_set_parent_stmt(stmt
->iterator_post_condition
, stmt
);
1198 if (stmt
->iterator_pre_condition
)
1199 handle_pre_loop(stmt
);
1200 else if (stmt
->iterator_post_condition
)
1201 handle_post_loop(stmt
);
1203 // these are for(;;) type loops.
1204 handle_pre_loop(stmt
);
1208 stmt_set_parent_stmt(stmt
->switch_statement
, stmt
);
1209 expr_set_parent_stmt(stmt
->switch_expression
, stmt
);
1211 if (get_value(stmt
->switch_expression
, &sval
)) {
1212 split_known_switch(stmt
, sval
);
1215 __split_expr(stmt
->switch_expression
);
1216 push_expression(&switch_expr_stack
, stmt
->switch_expression
);
1217 __save_switch_states(top_expression(switch_expr_stack
));
1221 __split_stmt(stmt
->switch_statement
);
1222 if (!__pop_default() && have_remaining_cases())
1223 fake_an_empty_default(stmt
->pos
);
1224 __discard_switches();
1226 pop_expression(&switch_expr_stack
);
1232 __split_label_stmt(stmt
);
1233 __split_stmt(stmt
->label_statement
);
1236 expr_set_parent_stmt(stmt
->goto_expression
, stmt
);
1238 __split_expr(stmt
->goto_expression
);
1239 if (stmt
->goto_label
&& stmt
->goto_label
->type
== SYM_NODE
) {
1240 if (!strcmp(stmt
->goto_label
->ident
->name
, "break")) {
1242 } else if (!strcmp(stmt
->goto_label
->ident
->name
,
1244 __process_continues();
1246 } else if (stmt
->goto_label
&&
1247 stmt
->goto_label
->type
== SYM_LABEL
&&
1248 stmt
->goto_label
->ident
) {
1249 __save_gotos(stmt
->goto_label
->ident
->name
, stmt
->goto_label
);
1252 if (is_last_stmt(stmt
))
1253 handle_backward_goto(stmt
);
1258 expr_set_parent_stmt(stmt
->asm_string
, stmt
);
1260 find_asm_gotos(stmt
);
1261 __pass_to_client(stmt
, ASM_HOOK
);
1262 __split_expr(stmt
->asm_string
);
1263 split_asm_ops(stmt
->asm_outputs
);
1264 split_asm_ops(stmt
->asm_inputs
);
1265 split_expr_list(stmt
->asm_clobbers
, NULL
);
1270 __split_expr(stmt
->range_expression
);
1271 __split_expr(stmt
->range_low
);
1272 __split_expr(stmt
->range_high
);
1275 __pass_to_client(stmt
, STMT_HOOK_AFTER
);
1276 if (--indent_cnt
== 1)
1277 __discard_fake_states(NULL
);
1280 __process_post_op_stack();
1282 gettimeofday(&stop
, NULL
);
1283 if (option_time_stmt
&& stmt
)
1284 sm_msg("stmt_time%s: %ld",
1285 stmt
->type
== STMT_COMPOUND
? "_block" : "",
1286 stop
.tv_sec
- start
.tv_sec
);
1289 static void split_expr_list(struct expression_list
*expr_list
, struct expression
*parent
)
1291 struct expression
*expr
;
1293 FOR_EACH_PTR(expr_list
, expr
) {
1294 expr_set_parent_expr(expr
, parent
);
1296 __process_post_op_stack();
1297 } END_FOR_EACH_PTR(expr
);
1300 static bool cast_arg(struct symbol
*type
, struct expression
*arg
)
1302 struct symbol
*orig
;
1307 arg
= strip_parens(arg
);
1308 if (arg
!= strip_expr(arg
))
1311 orig
= get_type(arg
);
1317 if (orig
->type
== SYM_ARRAY
&& type
->type
== SYM_PTR
)
1321 * I would have expected that we could just do use (orig == type) but I
1322 * guess for pointers we need to get the basetype to do that comparison.
1326 if (orig
->type
!= SYM_PTR
||
1327 type
->type
!= SYM_PTR
) {
1328 if (type_fits(type
, orig
))
1332 orig
= get_real_base_type(orig
);
1333 type
= get_real_base_type(type
);
1340 static struct expression
*fake_a_variable_assign(struct symbol
*type
, struct expression
*call
, struct expression
*expr
, int nr
)
1342 struct expression
*var
, *assign
, *parent
;
1346 if (!expr
|| !cur_func_sym
)
1349 if (expr
->type
== EXPR_ASSIGNMENT
)
1352 /* for va_args then we don't know the type */
1354 type
= get_type(expr
);
1356 cast
= cast_arg(type
, expr
);
1358 * Using expr_to_sym() here is a hack. We want to say that we don't
1359 * need to assign frob(foo) or frob(foo->bar) if the types are right.
1360 * It turns out faking these assignments is way more expensive than I
1361 * would have imagined. I'm not sure why exactly.
1366 * if the code is "return *p;" where "p" is a user pointer then
1367 * we want to create a fake assignment so that it sets the state
1368 * in check_kernel_user_data.c.
1371 if (expr
->type
!= EXPR_PREOP
&&
1372 expr
->op
!= '*' && expr
->op
!= '&' &&
1378 snprintf(buf
, sizeof(buf
), "__sm_fake_%p", expr
);
1380 snprintf(buf
, sizeof(buf
), "__fake_param_%p_%d", call
, nr
);
1381 var
= fake_variable(type
, buf
);
1382 assign
= assign_expression(var
, '=', expr
);
1383 assign
->smatch_flags
|= Fake
;
1385 parent
= expr_get_parent_expr(expr
);
1386 expr_set_parent_expr(assign
, parent
);
1387 expr_set_parent_expr(expr
, assign
);
1394 static void split_args(struct expression
*expr
)
1396 struct expression
*arg
, *tmp
;
1397 struct symbol
*type
;
1401 FOR_EACH_PTR(expr
->args
, arg
) {
1403 expr_set_parent_expr(arg
, expr
);
1404 type
= get_arg_type(expr
->fn
, i
);
1405 tmp
= fake_a_variable_assign(type
, expr
, arg
, i
);
1407 __in_fake_var_assign
++;
1410 __in_fake_var_assign
--;
1411 __process_post_op_stack();
1412 } END_FOR_EACH_PTR(arg
);
1415 static void split_sym(struct symbol
*sym
)
1419 if (!(sym
->namespace & NS_SYMBOL
))
1422 __split_stmt(sym
->stmt
);
1423 __split_expr(sym
->array_size
);
1424 split_symlist(sym
->arguments
);
1425 split_symlist(sym
->symbol_list
);
1426 __split_stmt(sym
->inline_stmt
);
1427 split_symlist(sym
->inline_symbol_list
);
1430 static void split_symlist(struct symbol_list
*sym_list
)
1434 FOR_EACH_PTR(sym_list
, sym
) {
1436 } END_FOR_EACH_PTR(sym
);
1439 typedef void (fake_cb
)(struct expression
*expr
);
1441 static int member_to_number(struct expression
*expr
, struct ident
*member
)
1443 struct symbol
*type
, *tmp
;
1449 name
= member
->name
;
1451 type
= get_type(expr
);
1452 if (!type
|| type
->type
!= SYM_STRUCT
)
1456 FOR_EACH_PTR(type
->symbol_list
, tmp
) {
1460 if (strcmp(name
, tmp
->ident
->name
) == 0)
1462 } END_FOR_EACH_PTR(tmp
);
1466 static struct ident
*number_to_member(struct expression
*expr
, int num
)
1468 struct symbol
*type
, *member
;
1471 type
= get_type(expr
);
1472 if (!type
|| type
->type
!= SYM_STRUCT
)
1475 FOR_EACH_PTR(type
->symbol_list
, member
) {
1477 return member
->ident
;
1479 } END_FOR_EACH_PTR(member
);
1483 static void fake_element_assigns_helper(struct expression
*array
, struct expression_list
*expr_list
, fake_cb
*fake_cb
);
1485 static void set_inner_struct_members(struct expression
*expr
, struct symbol
*member
)
1487 struct expression
*edge_member
, *assign
;
1488 struct symbol
*base
= get_real_base_type(member
);
1492 expr
= member_expression(expr
, '.', member
->ident
);
1494 FOR_EACH_PTR(base
->symbol_list
, tmp
) {
1495 struct symbol
*type
;
1497 type
= get_real_base_type(tmp
);
1501 edge_member
= member_expression(expr
, '.', tmp
->ident
);
1502 if (get_extra_state(edge_member
))
1505 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
1506 set_inner_struct_members(expr
, tmp
);
1513 assign
= assign_expression(edge_member
, '=', zero_expr());
1514 __split_expr(assign
);
1515 } END_FOR_EACH_PTR(tmp
);
1520 static void set_unset_to_zero(struct symbol
*type
, struct expression
*expr
)
1523 struct expression
*member
= NULL
;
1524 struct expression
*assign
;
1526 FOR_EACH_PTR(type
->symbol_list
, tmp
) {
1527 type
= get_real_base_type(tmp
);
1532 member
= member_expression(expr
, '.', tmp
->ident
);
1533 if (get_extra_state(member
))
1537 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
1538 set_inner_struct_members(expr
, tmp
);
1541 if (type
->type
== SYM_ARRAY
)
1546 assign
= assign_expression(member
, '=', zero_expr());
1547 __split_expr(assign
);
1548 } END_FOR_EACH_PTR(tmp
);
1551 static void fake_member_assigns_helper(struct expression
*symbol
, struct expression_list
*members
, fake_cb
*fake_cb
)
1553 struct expression
*deref
, *assign
, *tmp
, *right
;
1554 struct symbol
*struct_type
, *type
;
1555 struct ident
*member
;
1558 struct_type
= get_type(symbol
);
1560 (struct_type
->type
!= SYM_STRUCT
&& struct_type
->type
!= SYM_UNION
))
1564 * We're parsing an initializer that could look something like this:
1565 * struct foo foo = {
1567 * .whatever.xxx = 11,
1571 * So what we have here is a list with 42, .whatever, and .zzz. We need
1572 * to break it up into left and right sides of the assignments.
1576 FOR_EACH_PTR(members
, tmp
) {
1578 if (tmp
->type
== EXPR_IDENTIFIER
) {
1579 member_idx
= member_to_number(symbol
, tmp
->expr_ident
);
1580 while (tmp
->type
== EXPR_IDENTIFIER
) {
1581 member
= tmp
->expr_ident
;
1582 tmp
= tmp
->ident_expression
;
1584 deref
= member_expression(deref
, '.', member
);
1586 deref
= member_expression(symbol
, '.', member
);
1589 member
= number_to_member(symbol
, member_idx
);
1590 deref
= member_expression(symbol
, '.', member
);
1594 if (right
->type
== EXPR_INITIALIZER
) {
1595 type
= get_type(deref
);
1596 if (type
&& type
->type
== SYM_ARRAY
)
1597 fake_element_assigns_helper(deref
, right
->expr_list
, fake_cb
);
1599 fake_member_assigns_helper(deref
, right
->expr_list
, fake_cb
);
1601 assign
= assign_expression(deref
, '=', right
);
1604 } END_FOR_EACH_PTR(tmp
);
1606 set_unset_to_zero(struct_type
, symbol
);
1609 static void fake_member_assigns(struct symbol
*sym
, fake_cb
*fake_cb
)
1611 fake_member_assigns_helper(symbol_expression(sym
),
1612 sym
->initializer
->expr_list
, fake_cb
);
1615 static void fake_element_assigns_helper(struct expression
*array
, struct expression_list
*expr_list
, fake_cb
*fake_cb
)
1617 struct expression
*offset
, *binop
, *assign
, *tmp
;
1618 struct symbol
*type
;
1621 if (ptr_list_size((struct ptr_list
*)expr_list
) > 1000)
1626 FOR_EACH_PTR(expr_list
, tmp
) {
1627 if (tmp
->type
== EXPR_INDEX
) {
1628 if (tmp
->idx_from
!= tmp
->idx_to
)
1630 idx
= tmp
->idx_from
;
1633 if (!tmp
->idx_expression
)
1635 tmp
= tmp
->idx_expression
;
1637 offset
= value_expr(idx
);
1638 binop
= array_element_expression(array
, offset
);
1639 if (tmp
->type
== EXPR_INITIALIZER
) {
1640 type
= get_type(binop
);
1641 if (type
&& type
->type
== SYM_ARRAY
)
1642 fake_element_assigns_helper(binop
, tmp
->expr_list
, fake_cb
);
1644 fake_member_assigns_helper(binop
, tmp
->expr_list
, fake_cb
);
1646 assign
= assign_expression(binop
, '=', tmp
);
1653 } END_FOR_EACH_PTR(tmp
);
1655 __call_array_initialized_hooks(array
, max
);
1658 static void fake_element_assigns(struct symbol
*sym
, fake_cb
*fake_cb
)
1660 fake_element_assigns_helper(symbol_expression(sym
), sym
->initializer
->expr_list
, fake_cb
);
1663 static void fake_assign_expr(struct symbol
*sym
)
1665 struct expression
*assign
, *symbol
;
1667 symbol
= symbol_expression(sym
);
1668 assign
= assign_expression(symbol
, '=', sym
->initializer
);
1669 __split_expr(assign
);
1672 static void do_initializer_stuff(struct symbol
*sym
)
1674 if (!sym
->initializer
)
1677 if (sym
->initializer
->type
== EXPR_INITIALIZER
) {
1678 if (get_real_base_type(sym
)->type
== SYM_ARRAY
)
1679 fake_element_assigns(sym
, __split_expr
);
1681 fake_member_assigns(sym
, __split_expr
);
1683 fake_assign_expr(sym
);
1687 static void split_declaration(struct symbol_list
*sym_list
)
1691 FOR_EACH_PTR(sym_list
, sym
) {
1692 __pass_to_client(sym
, DECLARATION_HOOK
);
1693 do_initializer_stuff(sym
);
1694 __pass_to_client(sym
, DECLARATION_HOOK_AFTER
);
1696 } END_FOR_EACH_PTR(sym
);
1699 static void call_global_assign_hooks(struct expression
*assign
)
1701 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1704 static void fake_global_assign(struct symbol
*sym
)
1706 struct expression
*assign
, *symbol
;
1708 if (get_real_base_type(sym
)->type
== SYM_ARRAY
) {
1709 if (sym
->initializer
&& sym
->initializer
->type
== EXPR_INITIALIZER
) {
1710 fake_element_assigns(sym
, call_global_assign_hooks
);
1711 } else if (sym
->initializer
) {
1712 symbol
= symbol_expression(sym
);
1713 assign
= assign_expression(symbol
, '=', sym
->initializer
);
1714 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1716 fake_element_assigns_helper(symbol_expression(sym
), NULL
, call_global_assign_hooks
);
1718 } else if (get_real_base_type(sym
)->type
== SYM_STRUCT
) {
1719 if (sym
->initializer
&& sym
->initializer
->type
== EXPR_INITIALIZER
) {
1720 fake_member_assigns(sym
, call_global_assign_hooks
);
1721 } else if (sym
->initializer
) {
1722 symbol
= symbol_expression(sym
);
1723 assign
= assign_expression(symbol
, '=', sym
->initializer
);
1724 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1726 fake_member_assigns_helper(symbol_expression(sym
), NULL
, call_global_assign_hooks
);
1729 symbol
= symbol_expression(sym
);
1730 if (sym
->initializer
) {
1731 assign
= assign_expression(symbol
, '=', sym
->initializer
);
1732 __split_expr(assign
);
1734 assign
= assign_expression(symbol
, '=', zero_expr());
1736 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1740 static void start_function_definition(struct symbol
*sym
)
1742 __in_function_def
= 1;
1743 __pass_to_client(sym
, FUNC_DEF_HOOK
);
1744 __in_function_def
= 0;
1745 __pass_to_client(sym
, AFTER_DEF_HOOK
);
1749 void add_function_data(unsigned long *fn_data
)
1751 __add_ptr_list(&fn_data_list
, fn_data
);
1754 static void clear_function_data(void)
1758 FOR_EACH_PTR(fn_data_list
, tmp
) {
1760 } END_FOR_EACH_PTR(tmp
);
1763 static void record_func_time(void)
1765 struct timeval stop
;
1769 gettimeofday(&stop
, NULL
);
1770 func_time
= stop
.tv_sec
- fn_start_time
.tv_sec
;
1771 snprintf(buf
, sizeof(buf
), "%d", func_time
);
1772 sql_insert_return_implies(FUNC_TIME
, 0, "", buf
);
1773 if (option_time
&& func_time
> 2) {
1775 sm_msg("func_time: %d", func_time
);
1780 static void split_function(struct symbol
*sym
)
1782 struct symbol
*base_type
= get_base_type(sym
);
1784 if (!base_type
->stmt
&& !base_type
->inline_stmt
)
1787 gettimeofday(&outer_fn_start_time
, NULL
);
1788 gettimeofday(&fn_start_time
, NULL
);
1791 cur_func
= sym
->ident
->name
;
1792 set_position(sym
->pos
);
1793 clear_function_data();
1795 last_goto_statement_handled
= 0;
1796 sm_debug("new function: %s\n", cur_func
);
1798 if (option_two_passes
) {
1802 start_function_definition(sym
);
1803 __split_stmt(base_type
->stmt
);
1804 __split_stmt(base_type
->inline_stmt
);
1810 start_function_definition(sym
);
1811 __split_stmt(base_type
->stmt
);
1812 __split_stmt(base_type
->inline_stmt
);
1813 if (!__path_is_null() &&
1814 cur_func_return_type() == &void_ctype
&&
1815 !__bail_on_rest_of_function
) {
1816 __pass_to_client(NULL
, RETURN_HOOK
);
1819 __pass_to_client(sym
, END_FUNC_HOOK
);
1820 if (need_delayed_scope_hooks())
1821 __call_scope_hooks();
1822 __pass_to_client(sym
, AFTER_FUNC_HOOK
);
1829 cur_func_sym
= NULL
;
1831 free_data_info_allocs();
1832 free_expression_stack(&switch_expr_stack
);
1833 __free_ptr_list((struct ptr_list
**)&big_statement_stack
);
1834 __bail_on_rest_of_function
= 0;
1837 static void save_flow_state(void)
1841 __add_ptr_list(&backup
, INT_PTR(loop_num
<< 2));
1842 __add_ptr_list(&backup
, INT_PTR(loop_count
<< 2));
1843 __add_ptr_list(&backup
, INT_PTR(final_pass
<< 2));
1845 __add_ptr_list(&backup
, big_statement_stack
);
1846 __add_ptr_list(&backup
, big_expression_stack
);
1847 __add_ptr_list(&backup
, big_condition_stack
);
1848 __add_ptr_list(&backup
, switch_expr_stack
);
1850 __add_ptr_list(&backup
, cur_func_sym
);
1852 __add_ptr_list(&backup
, __prev_stmt
);
1853 __add_ptr_list(&backup
, __cur_stmt
);
1854 __add_ptr_list(&backup
, __next_stmt
);
1856 FOR_EACH_PTR(fn_data_list
, tmp
) {
1857 __add_ptr_list(&backup
, (void *)*tmp
);
1858 } END_FOR_EACH_PTR(tmp
);
1861 static void *pop_backup(void)
1865 ret
= last_ptr_list(backup
);
1866 delete_ptr_list_last(&backup
);
1870 static void restore_flow_state(void)
1874 FOR_EACH_PTR_REVERSE(fn_data_list
, tmp
) {
1875 *tmp
= (unsigned long)pop_backup();
1876 } END_FOR_EACH_PTR_REVERSE(tmp
);
1878 __next_stmt
= pop_backup();
1879 __cur_stmt
= pop_backup();
1880 __prev_stmt
= pop_backup();
1882 cur_func_sym
= pop_backup();
1883 switch_expr_stack
= pop_backup();
1884 big_condition_stack
= pop_backup();
1885 big_expression_stack
= pop_backup();
1886 big_statement_stack
= pop_backup();
1887 final_pass
= PTR_INT(pop_backup()) >> 2;
1888 loop_count
= PTR_INT(pop_backup()) >> 2;
1889 loop_num
= PTR_INT(pop_backup()) >> 2;
1892 static void parse_inline(struct expression
*call
)
1894 struct symbol
*base_type
;
1895 char *cur_func_bak
= cur_func
; /* not aligned correctly for backup */
1896 struct timeval time_backup
= fn_start_time
;
1897 struct expression
*orig_inline
= __inline_fn
;
1900 if (out_of_memory() || taking_too_long())
1905 __pass_to_client(call
, INLINE_FN_START
);
1906 final_pass
= 0; /* don't print anything */
1908 orig_budget
= inline_budget
;
1909 inline_budget
= inline_budget
- 5;
1911 base_type
= get_base_type(call
->fn
->symbol
);
1912 cur_func_sym
= call
->fn
->symbol
;
1913 if (call
->fn
->symbol
->ident
)
1914 cur_func
= call
->fn
->symbol
->ident
->name
;
1917 set_position(call
->fn
->symbol
->pos
);
1920 big_statement_stack
= NULL
;
1921 big_expression_stack
= NULL
;
1922 big_condition_stack
= NULL
;
1923 switch_expr_stack
= NULL
;
1925 sm_debug("inline function: %s\n", cur_func
);
1927 clear_function_data();
1930 start_function_definition(call
->fn
->symbol
);
1931 __split_stmt(base_type
->stmt
);
1932 __split_stmt(base_type
->inline_stmt
);
1933 __pass_to_client(call
->fn
->symbol
, END_FUNC_HOOK
);
1934 __pass_to_client(call
->fn
->symbol
, AFTER_FUNC_HOOK
);
1935 call
->fn
->symbol
->parsed
= true;
1937 free_expression_stack(&switch_expr_stack
);
1938 __free_ptr_list((struct ptr_list
**)&big_statement_stack
);
1942 restore_flow_state();
1943 fn_start_time
= time_backup
;
1944 cur_func
= cur_func_bak
;
1946 restore_all_states();
1947 set_position(call
->pos
);
1948 __inline_fn
= orig_inline
;
1949 inline_budget
= orig_budget
;
1950 __pass_to_client(call
, INLINE_FN_END
);
1953 static struct symbol_list
*inlines_called
;
1954 static void add_inline_function(struct symbol
*sym
)
1956 static struct symbol_list
*already_added
;
1959 FOR_EACH_PTR(already_added
, tmp
) {
1962 } END_FOR_EACH_PTR(tmp
);
1964 add_ptr_list(&already_added
, sym
);
1965 add_ptr_list(&inlines_called
, sym
);
1968 static void process_inlines(void)
1972 FOR_EACH_PTR(inlines_called
, tmp
) {
1973 split_function(tmp
);
1974 } END_FOR_EACH_PTR(tmp
);
1975 free_ptr_list(&inlines_called
);
1978 static struct symbol
*get_last_scoped_symbol(struct symbol_list
*big_list
, int use_static
)
1982 FOR_EACH_PTR_REVERSE(big_list
, sym
) {
1985 if (use_static
&& sym
->ctype
.modifiers
& MOD_STATIC
)
1987 if (!use_static
&& !(sym
->ctype
.modifiers
& MOD_STATIC
))
1989 } END_FOR_EACH_PTR_REVERSE(sym
);
1994 static bool interesting_function(struct symbol
*sym
)
1996 static int prev_stream
= -1;
1997 static bool prev_answer
;
1998 const char *filename
;
2001 if (!(sym
->ctype
.modifiers
& MOD_INLINE
))
2004 if (sym
->pos
.stream
== prev_stream
)
2007 prev_stream
= sym
->pos
.stream
;
2008 prev_answer
= false;
2010 filename
= stream_name(sym
->pos
.stream
);
2011 len
= strlen(filename
);
2012 if (len
> 0 && filename
[len
- 1] == 'c')
2017 static void split_inlines_in_scope(struct symbol
*sym
)
2019 struct symbol
*base
;
2020 struct symbol_list
*scope_list
;
2023 scope_list
= sym
->scope
->symbols
;
2024 stream
= sym
->pos
.stream
;
2026 /* find the last static symbol in the file */
2027 FOR_EACH_PTR_REVERSE(scope_list
, sym
) {
2028 if (sym
->pos
.stream
!= stream
)
2030 if (sym
->type
!= SYM_NODE
)
2032 base
= get_base_type(sym
);
2035 if (base
->type
!= SYM_FN
)
2037 if (!base
->inline_stmt
)
2039 if (!interesting_function(sym
))
2041 add_inline_function(sym
);
2042 } END_FOR_EACH_PTR_REVERSE(sym
);
2047 static void split_inlines(struct symbol_list
*sym_list
)
2051 sym
= get_last_scoped_symbol(sym_list
, 0);
2053 split_inlines_in_scope(sym
);
2054 sym
= get_last_scoped_symbol(sym_list
, 1);
2056 split_inlines_in_scope(sym
);
2059 static struct stree
*clone_estates_perm(struct stree
*orig
)
2061 struct stree
*ret
= NULL
;
2062 struct sm_state
*tmp
;
2064 FOR_EACH_SM(orig
, tmp
) {
2065 set_state_stree_perm(&ret
, tmp
->owner
, tmp
->name
, tmp
->sym
, clone_estate_perm(tmp
->state
));
2066 } END_FOR_EACH_SM(tmp
);
2071 struct position last_pos
;
2072 static void split_c_file_functions(struct symbol_list
*sym_list
)
2077 FOR_EACH_PTR(sym_list
, sym
) {
2078 set_position(sym
->pos
);
2079 if (sym
->type
!= SYM_NODE
|| get_base_type(sym
)->type
!= SYM_FN
) {
2080 __pass_to_client(sym
, BASE_HOOK
);
2081 fake_global_assign(sym
);
2082 __pass_to_client(sym
, DECLARATION_HOOK_AFTER
);
2084 } END_FOR_EACH_PTR(sym
);
2085 global_states
= clone_estates_perm(get_all_states_stree(SMATCH_EXTRA
));
2088 FOR_EACH_PTR(sym_list
, sym
) {
2089 set_position(sym
->pos
);
2090 last_pos
= sym
->pos
;
2091 if (!interesting_function(sym
))
2093 if (sym
->type
== SYM_NODE
&& get_base_type(sym
)->type
== SYM_FN
) {
2094 split_function(sym
);
2097 last_pos
= sym
->pos
;
2098 } END_FOR_EACH_PTR(sym
);
2099 split_inlines(sym_list
);
2100 __pass_to_client(sym_list
, END_FILE_HOOK
);
2103 static int final_before_fake
;
2104 void init_fake_env(void)
2107 final_before_fake
= final_pass
;
2109 __push_fake_cur_stree();
2113 void end_fake_env(void)
2115 __pop_fake_cur_stree();
2118 final_pass
= final_before_fake
;
2121 static void open_output_files(char *base_file
)
2125 snprintf(buf
, sizeof(buf
), "%s.smatch", base_file
);
2126 sm_outfd
= fopen(buf
, "w");
2128 sm_fatal("Cannot open %s", buf
);
2133 snprintf(buf
, sizeof(buf
), "%s.smatch.sql", base_file
);
2134 sql_outfd
= fopen(buf
, "w");
2136 sm_fatal("Error: Cannot open %s", buf
);
2138 snprintf(buf
, sizeof(buf
), "%s.smatch.caller_info", base_file
);
2139 caller_info_fd
= fopen(buf
, "w");
2140 if (!caller_info_fd
)
2141 sm_fatal("Error: Cannot open %s", buf
);
2144 void smatch(struct string_list
*filelist
)
2146 struct symbol_list
*sym_list
;
2147 struct timeval stop
, start
;
2151 gettimeofday(&start
, NULL
);
2153 FOR_EACH_PTR_NOTAG(filelist
, base_file
) {
2154 path
= getcwd(NULL
, 0);
2155 free(full_base_file
);
2157 len
= strlen(path
) + 1 + strlen(base_file
) + 1;
2158 full_base_file
= malloc(len
);
2159 snprintf(full_base_file
, len
, "%s/%s", path
, base_file
);
2161 full_base_file
= alloc_string(base_file
);
2163 if (option_file_output
)
2164 open_output_files(base_file
);
2165 sym_list
= sparse_keep_tokens(base_file
);
2166 split_c_file_functions(sym_list
);
2167 } END_FOR_EACH_PTR_NOTAG(base_file
);
2169 gettimeofday(&stop
, NULL
);
2171 set_position(last_pos
);
2174 sm_msg("time: %lu", stop
.tv_sec
- start
.tv_sec
);
2176 sm_msg("mem: %luKb", get_max_memory());