4 * Copyright (C) 2006,2008 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
15 #include "smatch_expression_stacks.h"
16 #include "smatch_extra.h"
17 #include "smatch_slist.h" // just for sname.
21 static int __smatch_lineno
= 0;
23 static const char *filename
;
24 static char *pathname
;
25 static char *full_filename
;
26 static char *cur_func
;
27 static int line_func_start
;
28 static struct expression_list
*switch_expr_stack
= NULL
;
29 struct expression_list
*big_expression_stack
;
30 struct statement_list
*big_statement_stack
;
31 int __in_pre_condition
= 0;
33 char *get_function(void) { return cur_func
; }
34 int get_lineno(void) { return __smatch_lineno
; }
35 int get_func_pos(void) { return __smatch_lineno
- line_func_start
; }
37 static void split_symlist(struct symbol_list
*sym_list
);
38 static void split_declaration(struct symbol_list
*sym_list
);
39 static void split_expr_list(struct expression_list
*expr_list
);
41 int option_assume_loops
= 0;
42 int option_known_conditions
= 0;
43 int option_two_passes
= 0;
44 struct symbol
*cur_func_sym
= NULL
;
46 const char *get_filename(void)
53 static void set_position(struct expression
*expr
)
56 static int prev_stream
= -1;
58 __smatch_lineno
= expr
->pos
.line
;
60 if (expr
->pos
.stream
== prev_stream
)
63 filename
= stream_name(expr
->pos
.stream
);
66 pathname
= getcwd(NULL
, 0);
68 len
= strlen(pathname
) + 1 + strlen(filename
) + 1;
69 full_filename
= malloc(len
);
70 snprintf(full_filename
, len
, "%s/%s", pathname
, filename
);
72 full_filename
= alloc_string(filename
);
77 void __split_expr(struct expression
*expr
)
82 // printf("%d Debug expr_type %d %s\n", get_lineno(), expr->type, show_special(expr->op));
84 push_expression(&big_expression_stack
, expr
);
86 __pass_to_client(expr
, EXPR_HOOK
);
91 __pass_to_client(expr
, DEREF_HOOK
);
93 __pass_to_client(expr
, OP_HOOK
);
94 __split_expr(expr
->unop
);
97 __split_statements(expr
->statement
);
100 __split_whole_condition(expr
);
101 __push_true_states();
102 __use_false_states();
103 __merge_true_states();
106 __pass_to_client(expr
, BINOP_HOOK
);
109 __split_expr(expr
->left
);
110 __split_expr(expr
->right
);
112 case EXPR_ASSIGNMENT
: {
113 struct expression
*tmp
;
115 __split_expr(expr
->right
);
116 __pass_to_client(expr
, ASSIGNMENT_HOOK
);
117 tmp
= strip_expr(expr
->right
);
118 if (tmp
->type
== EXPR_CALL
)
119 __pass_to_client(expr
, CALL_ASSIGNMENT_HOOK
);
120 __split_expr(expr
->left
);
124 __pass_to_client(expr
, DEREF_HOOK
);
125 __split_expr(expr
->deref
);
128 __split_expr(expr
->base
);
131 case EXPR_FORCE_CAST
:
132 __split_expr(expr
->cast_expression
);
135 /* there isn't anything to pass a client from inside a sizeof() */
137 case EXPR_CONDITIONAL
:
139 __split_whole_condition(expr
->conditional
);
140 __split_expr(expr
->cond_true
);
141 __push_true_states();
142 __use_false_states();
143 __split_expr(expr
->cond_false
);
144 __merge_true_states();
147 split_expr_list(expr
->args
);
148 __split_expr(expr
->fn
);
149 __pass_to_client(expr
, FUNCTION_CALL_HOOK
);
151 case EXPR_INITIALIZER
:
152 split_expr_list(expr
->expr_list
);
154 case EXPR_IDENTIFIER
:
155 __split_expr(expr
->ident_expression
);
158 __split_expr(expr
->idx_expression
);
161 __split_expr(expr
->init_expr
);
164 __pass_to_client(expr
, SYM_HOOK
);
171 static int is_forever_loop(struct statement
*stmt
)
174 struct expression
*expr
;
176 expr
= strip_expr(stmt
->iterator_pre_condition
);
178 expr
= stmt
->iterator_post_condition
;
180 /* this is a for(;;) loop... */
184 if (expr
->type
== EXPR_VALUE
&& expr
->value
== 1) {
192 static char *get_loop_name(int num
)
196 snprintf(buf
, 255, "-loop%d", num
);
198 return alloc_sname(buf
);;
202 * Pre Loops are while and for loops.
205 static void handle_pre_loop(struct statement
*stmt
)
207 int once_through
; /* we go through the loop at least once */
208 struct sm_state
*extra_state
= NULL
;
212 loop_name
= get_loop_name(loop_num
);
215 __split_statements(stmt
->iterator_pre_statement
);
217 once_through
= implied_condition_true(stmt
->iterator_pre_condition
);
222 __merge_gotos(loop_name
);
224 __in_pre_condition
++;
225 __split_whole_condition(stmt
->iterator_pre_condition
);
226 __in_pre_condition
--;
229 extra_state
= __extra_pre_loop_hook_before(stmt
->iterator_pre_statement
);
230 if (option_assume_loops
)
232 __split_statements(stmt
->iterator_statement
);
234 __warn_on_silly_pre_loops();
235 if (is_forever_loop(stmt
)) {
236 __save_gotos(loop_name
);
237 /* forever loops don't have an iterator_post_statement */
239 __pop_false_states();
241 } else if (once_through
) {
244 unchanged
= __iterator_unchanged(extra_state
, stmt
->iterator_post_statement
);
245 __split_statements(stmt
->iterator_post_statement
);
246 __save_gotos(loop_name
);
247 __split_whole_condition(stmt
->iterator_pre_condition
);
249 __merge_false_states();
250 if (extra_state
&& unchanged
)
251 __extra_pre_loop_hook_after(extra_state
,
252 stmt
->iterator_post_statement
, stmt
->iterator_pre_condition
);
253 __pop_false_states();
257 __split_statements(stmt
->iterator_post_statement
);
258 __save_gotos(loop_name
);
259 __split_whole_condition(stmt
->iterator_pre_condition
);
261 __merge_false_states();
262 __merge_false_states();
268 * Post loops are do {} while();
270 static void handle_post_loop(struct statement
*stmt
)
274 loop_name
= get_loop_name(loop_num
);
279 __merge_gotos(loop_name
);
280 __split_statements(stmt
->iterator_statement
);
282 if (!is_zero(stmt
->iterator_post_condition
))
283 __save_gotos(loop_name
);
285 if (is_forever_loop(stmt
)) {
288 __split_whole_condition(stmt
->iterator_post_condition
);
289 __use_false_states();
294 static void print_unreached(struct statement
*stmt
)
297 static int print
= 1;
299 if (!option_spammy
&& !option_debug
)
302 if (__path_is_null()) {
303 switch (stmt
->type
) {
304 case STMT_COMPOUND
: /* after a switch before a case stmt */
307 case STMT_DECLARATION
: /* switch (x) { int a; case foo: ... */
311 sm_msg("info: ignoring unreachable code.");
320 static int empty_statement(struct statement
*stmt
)
324 if (stmt
->type
== STMT_EXPRESSION
&& !stmt
->expression
)
329 void __split_statements(struct statement
*stmt
)
334 if (out_of_memory()) {
335 static char *printed
= NULL
;
337 if (printed
!= cur_func
)
338 sm_msg("Function too big. Giving up.");
343 add_ptr_list(&big_statement_stack
, stmt
);
344 free_expression_stack(&big_expression_stack
);
345 __smatch_lineno
= stmt
->pos
.line
;
346 print_unreached(stmt
);
347 __pass_to_client(stmt
, STMT_HOOK
);
349 switch (stmt
->type
) {
350 case STMT_DECLARATION
:
351 split_declaration(stmt
->declaration
);
354 __split_expr(stmt
->ret_value
);
355 __pass_to_client(stmt
->ret_value
, RETURN_HOOK
);
358 case STMT_EXPRESSION
:
359 __split_expr(stmt
->expression
);
361 case STMT_COMPOUND
: {
363 __push_scope_hooks();
364 FOR_EACH_PTR(stmt
->stmts
, s
) {
365 __split_statements(s
);
366 } END_FOR_EACH_PTR(s
);
367 __call_scope_hooks();
371 if (known_condition_true(stmt
->if_conditional
)) {
372 __split_statements(stmt
->if_true
);
375 if (known_condition_false(stmt
->if_conditional
)) {
376 __split_statements(stmt
->if_false
);
379 if (option_known_conditions
&&
380 implied_condition_true(stmt
->if_conditional
)) {
381 sm_info("this condition is true.");
382 __split_statements(stmt
->if_true
);
385 if (option_known_conditions
&&
386 implied_condition_false(stmt
->if_conditional
)) {
387 sm_info("this condition is false.");
388 __split_statements(stmt
->if_false
);
391 __split_whole_condition(stmt
->if_conditional
);
392 __split_statements(stmt
->if_true
);
393 if (empty_statement(stmt
->if_true
))
394 sm_msg("warn: if();");
395 __push_true_states();
396 __use_false_states();
397 __split_statements(stmt
->if_false
);
398 __merge_true_states();
401 if (stmt
->iterator_pre_condition
)
402 handle_pre_loop(stmt
);
403 else if (stmt
->iterator_post_condition
)
404 handle_post_loop(stmt
);
406 // these are for(;;) type loops.
407 handle_pre_loop(stmt
);
411 __split_expr(stmt
->switch_expression
);
412 push_expression(&switch_expr_stack
, stmt
->switch_expression
);
413 __save_switch_states(top_expression(switch_expr_stack
));
417 __split_statements(stmt
->switch_statement
);
418 if (!__pop_default())
419 __merge_switches(top_expression(switch_expr_stack
),
423 pop_expression(&switch_expr_stack
);
426 __merge_switches(top_expression(switch_expr_stack
),
427 stmt
->case_expression
);
428 __pass_case_to_client(top_expression(switch_expr_stack
),
429 stmt
->case_expression
);
430 if (!stmt
->case_expression
)
432 __split_expr(stmt
->case_expression
);
433 __split_expr(stmt
->case_to
);
434 __split_statements(stmt
->case_statement
);
438 stmt
->label
->type
== SYM_LABEL
&&
439 stmt
->label
->ident
) {
440 __merge_gotos(stmt
->label
->ident
->name
);
442 __split_statements(stmt
->label_statement
);
445 __split_expr(stmt
->goto_expression
);
446 if (stmt
->goto_label
&& stmt
->goto_label
->type
== SYM_NODE
) {
447 if (!strcmp(stmt
->goto_label
->ident
->name
, "break")) {
449 } else if (!strcmp(stmt
->goto_label
->ident
->name
,
451 __process_continues();
453 } else if (stmt
->goto_label
&&
454 stmt
->goto_label
->type
== SYM_LABEL
&&
455 stmt
->goto_label
->ident
) {
456 __save_gotos(stmt
->goto_label
->ident
->name
);
463 __split_expr(stmt
->asm_string
);
464 //__split_expr(stmt->asm_outputs);
465 //__split_expr(stmt->asm_inputs);
466 //__split_expr(stmt->asm_clobbers);
471 __split_expr(stmt
->range_expression
);
472 __split_expr(stmt
->range_low
);
473 __split_expr(stmt
->range_high
);
478 static void split_expr_list(struct expression_list
*expr_list
)
480 struct expression
*expr
;
481 FOR_EACH_PTR(expr_list
, expr
) {
483 } END_FOR_EACH_PTR(expr
);
487 static void split_sym(struct symbol
*sym
)
491 if (!(sym
->namespace & NS_SYMBOL
))
494 __split_statements(sym
->stmt
);
495 __split_expr(sym
->array_size
);
496 split_symlist(sym
->arguments
);
497 split_symlist(sym
->symbol_list
);
498 __split_statements(sym
->inline_stmt
);
499 split_symlist(sym
->inline_symbol_list
);
500 __split_expr(sym
->initializer
);
503 static void split_symlist(struct symbol_list
*sym_list
)
507 FOR_EACH_PTR(sym_list
, sym
) {
509 } END_FOR_EACH_PTR(sym
);
512 static struct expression
*fake_assign_expr(struct symbol
*sym
)
514 struct expression
*e_assign
, *e_symbol
;
516 e_assign
= alloc_expression(sym
->initializer
->pos
, EXPR_ASSIGNMENT
);
517 e_symbol
= alloc_expression(sym
->initializer
->pos
, EXPR_SYMBOL
);
518 e_assign
->op
= (int)'=';
519 e_symbol
->symbol
= sym
;
520 e_symbol
->symbol_name
= sym
->ident
;
521 e_assign
->left
= e_symbol
;
522 e_assign
->right
= sym
->initializer
;
526 static void split_declaration(struct symbol_list
*sym_list
)
529 struct expression
*assign
, *tmp
;
531 FOR_EACH_PTR(sym_list
, sym
) {
532 __pass_to_client(sym
, DECLARATION_HOOK
);
533 __split_expr(sym
->initializer
);
534 if(sym
->initializer
) {
535 assign
= fake_assign_expr(sym
);
536 __pass_to_client(assign
, ASSIGNMENT_HOOK
);
537 tmp
= strip_expr(assign
->right
);
538 if (tmp
->type
== EXPR_CALL
)
539 __pass_to_client(assign
, CALL_ASSIGNMENT_HOOK
);
542 } END_FOR_EACH_PTR(sym
);
545 static void split_functions(struct symbol_list
*sym_list
)
549 FOR_EACH_PTR(sym_list
, sym
) {
550 struct symbol
*base_type
;
551 base_type
= get_base_type(sym
);
552 if (sym
->type
== SYM_NODE
&& base_type
->type
== SYM_FN
) {
555 line_func_start
= base_type
->stmt
->pos
.line
;
557 cur_func
= sym
->ident
->name
;
558 __smatch_lineno
= sym
->pos
.line
;
559 sm_debug("new function: %s\n", cur_func
);
560 if (option_two_passes
) {
564 __pass_to_client(sym
, FUNC_DEF_HOOK
);
565 __split_statements(base_type
->stmt
);
571 __pass_to_client(sym
, FUNC_DEF_HOOK
);
572 __split_statements(base_type
->stmt
);
573 __pass_to_client(sym
, END_FUNC_HOOK
);
577 free_data_info_allocs();
578 free_expression_stack(&switch_expr_stack
);
579 __free_ptr_list((struct ptr_list
**)&big_statement_stack
);
581 __pass_to_client(sym
, BASE_HOOK
);
583 } END_FOR_EACH_PTR(sym
);
584 __pass_to_client_no_data(END_FILE_HOOK
);
587 void smatch (int argc
, char **argv
)
590 struct string_list
*filelist
= NULL
;
591 struct symbol_list
*sym_list
;
595 printf("Usage: smatch [--debug] <filename.c>\n");
598 sparse_initialize(argc
, argv
, &filelist
);
599 FOR_EACH_PTR_NOTAG(filelist
, file
) {
600 sym_list
= __sparse(file
);
601 split_functions(sym_list
);
602 } END_FOR_EACH_PTR_NOTAG(file
);