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 static int in_fake_env
;
32 struct expression
*__inline_fn
;
34 static int __smatch_lineno
= 0;
36 static char *base_file
;
37 static const char *filename
;
38 static char *pathname
;
39 static char *full_filename
;
40 static char *cur_func
;
41 static unsigned int loop_count
;
42 static int last_goto_statement_handled
;
43 int __expr_stmt_count
;
44 int __in_function_def
;
45 static struct expression_list
*switch_expr_stack
= NULL
;
46 static struct expression_list
*post_op_stack
= NULL
;
48 static struct ptr_list
*backup
;
50 struct expression_list
*big_expression_stack
;
51 struct statement_list
*big_statement_stack
;
52 struct statement
*__prev_stmt
;
53 struct statement
*__cur_stmt
;
54 struct statement
*__next_stmt
;
55 int __in_pre_condition
= 0;
56 int __bail_on_rest_of_function
= 0;
57 static struct timeval fn_start_time
;
58 char *get_function(void) { return cur_func
; }
59 int get_lineno(void) { return __smatch_lineno
; }
60 int inside_loop(void) { return !!loop_count
; }
61 int definitely_inside_loop(void) { return !!(loop_count
& ~0x08000000); }
62 struct expression
*get_switch_expr(void) { return top_expression(switch_expr_stack
); }
63 int in_expression_statement(void) { return !!__expr_stmt_count
; }
65 static void split_symlist(struct symbol_list
*sym_list
);
66 static void split_declaration(struct symbol_list
*sym_list
);
67 static void split_expr_list(struct expression_list
*expr_list
, struct expression
*parent
);
68 static void add_inline_function(struct symbol
*sym
);
69 static void parse_inline(struct expression
*expr
);
71 int option_assume_loops
= 0;
72 int option_two_passes
= 0;
73 struct symbol
*cur_func_sym
= NULL
;
74 struct stree
*global_states
;
76 long long valid_ptr_min
= 4096;
77 long long valid_ptr_max
= 2117777777;
78 sval_t valid_ptr_min_sval
= {
82 sval_t valid_ptr_max_sval
= {
84 {.value
= LONG_MAX
- 100000},
87 static void set_valid_ptr_max(void)
89 if (type_bits(&ptr_ctype
) == 32)
90 valid_ptr_max
= 2117777777;
91 else if (type_bits(&ptr_ctype
) == 64)
92 valid_ptr_max
= 2117777777777777777LL;
94 valid_ptr_max_sval
.value
= valid_ptr_max
;
97 int outside_of_function(void)
99 return cur_func_sym
== NULL
;
102 const char *get_filename(void)
106 if (option_full_path
)
107 return full_filename
;
111 const char *get_base_file(void)
116 static void set_position(struct position pos
)
119 static int prev_stream
= -1;
124 if (pos
.stream
== 0 && pos
.line
== 0)
127 __smatch_lineno
= pos
.line
;
129 if (pos
.stream
== prev_stream
)
132 filename
= stream_name(pos
.stream
);
135 pathname
= getcwd(NULL
, 0);
137 len
= strlen(pathname
) + 1 + strlen(filename
) + 1;
138 full_filename
= malloc(len
);
139 snprintf(full_filename
, len
, "%s/%s", pathname
, filename
);
141 full_filename
= alloc_string(filename
);
146 int is_assigned_call(struct expression
*expr
)
148 struct expression
*parent
= expr_get_parent_expr(expr
);
151 parent
->type
== EXPR_ASSIGNMENT
&&
153 strip_expr(parent
->right
) == expr
)
159 static int is_inline_func(struct expression
*expr
)
161 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
163 if (expr
->symbol
->ctype
.modifiers
& MOD_INLINE
)
168 static int is_noreturn_func(struct expression
*expr
)
170 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
172 if (expr
->symbol
->ctype
.modifiers
& MOD_NORETURN
)
177 int inlinable(struct expression
*expr
)
180 struct statement
*last_stmt
= NULL
;
182 if (__inline_fn
) /* don't nest */
185 if (expr
->type
!= EXPR_SYMBOL
|| !expr
->symbol
)
187 if (is_no_inline_function(expr
->symbol
->ident
->name
))
189 sym
= get_base_type(expr
->symbol
);
190 if (sym
->stmt
&& sym
->stmt
->type
== STMT_COMPOUND
) {
191 if (ptr_list_size((struct ptr_list
*)sym
->stmt
->stmts
) > 10)
193 if (sym
->stmt
->type
!= STMT_COMPOUND
)
195 last_stmt
= last_ptr_list((struct ptr_list
*)sym
->stmt
->stmts
);
197 if (sym
->inline_stmt
&& sym
->inline_stmt
->type
== STMT_COMPOUND
) {
198 if (ptr_list_size((struct ptr_list
*)sym
->inline_stmt
->stmts
) > 10)
200 if (sym
->inline_stmt
->type
!= STMT_COMPOUND
)
202 last_stmt
= last_ptr_list((struct ptr_list
*)sym
->inline_stmt
->stmts
);
208 /* the magic numbers in this function are pulled out of my bum. */
209 if (last_stmt
->pos
.line
> sym
->pos
.line
+ 20)
215 void __process_post_op_stack(void)
217 struct expression
*expr
;
219 FOR_EACH_PTR(post_op_stack
, expr
) {
220 __pass_to_client(expr
, OP_HOOK
);
221 } END_FOR_EACH_PTR(expr
);
223 __free_ptr_list((struct ptr_list
**)&post_op_stack
);
226 static int handle_comma_assigns(struct expression
*expr
)
228 struct expression
*right
;
229 struct expression
*assign
;
231 right
= strip_expr(expr
->right
);
232 if (right
->type
!= EXPR_COMMA
)
235 __split_expr(right
->left
);
236 __process_post_op_stack();
238 assign
= assign_expression(expr
->left
, right
->right
);
239 __split_expr(assign
);
244 /* This is to handle *p++ = foo; assignments */
245 static int handle_postop_assigns(struct expression
*expr
)
247 struct expression
*left
, *fake_left
;
248 struct expression
*assign
;
250 left
= strip_expr(expr
->left
);
251 if (left
->type
!= EXPR_PREOP
|| left
->op
!= '*')
253 left
= strip_expr(left
->unop
);
254 if (left
->type
!= EXPR_POSTOP
)
257 fake_left
= deref_expression(strip_expr(left
->unop
));
258 assign
= assign_expression(fake_left
, expr
->right
);
260 __split_expr(assign
);
261 __split_expr(expr
->left
);
266 static int prev_expression_is_getting_address(struct expression
*expr
)
268 struct expression
*parent
;
271 parent
= expr_get_parent_expr(expr
);
275 if (parent
->type
== EXPR_PREOP
&& parent
->op
== '&')
277 if (parent
->type
== EXPR_PREOP
&& parent
->op
== '(')
279 if (parent
->type
== EXPR_DEREF
&& parent
->op
== '.')
288 void __split_expr(struct expression
*expr
)
293 // sm_msg(" Debug expr_type %d %s", expr->type, show_special(expr->op));
295 if (__in_fake_assign
&& expr
->type
!= EXPR_ASSIGNMENT
)
297 if (__in_fake_assign
>= 4) /* don't allow too much nesting */
300 push_expression(&big_expression_stack
, expr
);
301 set_position(expr
->pos
);
302 __pass_to_client(expr
, EXPR_HOOK
);
304 switch (expr
->type
) {
306 expr_set_parent_expr(expr
->unop
, expr
);
308 if (expr
->op
== '*' &&
309 !prev_expression_is_getting_address(expr
))
310 __pass_to_client(expr
, DEREF_HOOK
);
311 __split_expr(expr
->unop
);
312 __pass_to_client(expr
, OP_HOOK
);
315 expr_set_parent_expr(expr
->unop
, expr
);
317 __split_expr(expr
->unop
);
318 push_expression(&post_op_stack
, expr
);
322 if (expr
->statement
&& !expr
->statement
) {
323 stmt_set_parent_stmt(expr
->statement
,
324 last_ptr_list((struct ptr_list
*)big_statement_stack
));
326 __split_stmt(expr
->statement
);
331 expr_set_parent_expr(expr
->left
, expr
);
332 expr_set_parent_expr(expr
->right
, expr
);
334 __pass_to_client(expr
, LOGIC_HOOK
);
335 __handle_logic(expr
);
338 expr_set_parent_expr(expr
->left
, expr
);
339 expr_set_parent_expr(expr
->right
, expr
);
341 __pass_to_client(expr
, BINOP_HOOK
);
343 expr_set_parent_expr(expr
->left
, expr
);
344 expr_set_parent_expr(expr
->right
, expr
);
346 __split_expr(expr
->left
);
347 __process_post_op_stack();
348 __split_expr(expr
->right
);
350 case EXPR_ASSIGNMENT
: {
351 struct expression
*right
;
353 expr_set_parent_expr(expr
->left
, expr
);
354 expr_set_parent_expr(expr
->right
, expr
);
356 right
= strip_expr(expr
->right
);
360 __pass_to_client(expr
, RAW_ASSIGNMENT_HOOK
);
363 if (__handle_condition_assigns(expr
))
365 /* foo = (x < 5 ? foo : 5); */
366 if (__handle_select_assigns(expr
))
368 /* foo = ({frob(); frob(); frob(); 1;}) */
369 if (__handle_expr_statement_assigns(expr
))
372 if (handle_comma_assigns(expr
))
374 if (handle_postop_assigns(expr
))
377 __split_expr(expr
->right
);
378 if (outside_of_function())
379 __pass_to_client(expr
, GLOBAL_ASSIGNMENT_HOOK
);
381 __pass_to_client(expr
, ASSIGNMENT_HOOK
);
383 __fake_struct_member_assignments(expr
);
385 if (expr
->op
== '=' && right
->type
== EXPR_CALL
)
386 __pass_to_client(expr
, CALL_ASSIGNMENT_HOOK
);
388 if (get_macro_name(right
->pos
) &&
389 get_macro_name(expr
->pos
) != get_macro_name(right
->pos
))
390 __pass_to_client(expr
, MACRO_ASSIGNMENT_HOOK
);
392 __pass_to_client(expr
, ASSIGNMENT_HOOK_AFTER
);
394 __split_expr(expr
->left
);
398 expr_set_parent_expr(expr
->deref
, expr
);
400 __pass_to_client(expr
, DEREF_HOOK
);
401 __split_expr(expr
->deref
);
404 expr_set_parent_expr(expr
->base
, expr
);
406 __split_expr(expr
->base
);
409 case EXPR_FORCE_CAST
:
410 expr_set_parent_expr(expr
->cast_expression
, expr
);
412 __pass_to_client(expr
, CAST_HOOK
);
413 __split_expr(expr
->cast_expression
);
416 if (expr
->cast_expression
)
417 __pass_to_client(strip_parens(expr
->cast_expression
),
422 evaluate_expression(expr
);
424 case EXPR_CONDITIONAL
:
426 expr_set_parent_expr(expr
->conditional
, expr
);
427 expr_set_parent_expr(expr
->cond_true
, expr
);
428 expr_set_parent_expr(expr
->cond_false
, expr
);
430 if (known_condition_true(expr
->conditional
)) {
431 __split_expr(expr
->cond_true
);
434 if (known_condition_false(expr
->conditional
)) {
435 __split_expr(expr
->cond_false
);
438 __pass_to_client(expr
, SELECT_HOOK
);
439 __split_whole_condition(expr
->conditional
);
440 __split_expr(expr
->cond_true
);
441 __push_true_states();
442 __use_false_states();
443 __split_expr(expr
->cond_false
);
444 __merge_true_states();
447 expr_set_parent_expr(expr
->fn
, expr
);
449 if (sym_name_is("__builtin_constant_p", expr
->fn
))
451 split_expr_list(expr
->args
, expr
);
452 __split_expr(expr
->fn
);
453 if (is_inline_func(expr
->fn
))
454 add_inline_function(expr
->fn
->symbol
);
455 if (inlinable(expr
->fn
))
457 __process_post_op_stack();
458 __pass_to_client(expr
, FUNCTION_CALL_HOOK
);
460 if (inlinable(expr
->fn
)) {
463 __pass_to_client(expr
, CALL_HOOK_AFTER_INLINE
);
464 if (is_noreturn_func(expr
->fn
))
467 case EXPR_INITIALIZER
:
468 split_expr_list(expr
->expr_list
, expr
);
470 case EXPR_IDENTIFIER
:
471 expr_set_parent_expr(expr
->ident_expression
, expr
);
472 __split_expr(expr
->ident_expression
);
475 expr_set_parent_expr(expr
->idx_expression
, expr
);
476 __split_expr(expr
->idx_expression
);
479 expr_set_parent_expr(expr
->init_expr
, expr
);
480 __split_expr(expr
->init_expr
);
483 __pass_to_client(expr
, SYM_HOOK
);
486 __pass_to_client(expr
, STRING_HOOK
);
491 pop_expression(&big_expression_stack
);
494 static int is_forever_loop(struct statement
*stmt
)
496 struct expression
*expr
;
499 expr
= strip_expr(stmt
->iterator_pre_condition
);
501 expr
= stmt
->iterator_post_condition
;
503 /* this is a for(;;) loop... */
507 if (get_value(expr
, &sval
) && sval
.value
!= 0)
514 static char *get_loop_name(int num
)
518 snprintf(buf
, 255, "-loop%d", num
);
520 return alloc_sname(buf
);
524 * Pre Loops are while and for loops.
526 static void handle_pre_loop(struct statement
*stmt
)
528 int once_through
; /* we go through the loop at least once */
529 struct sm_state
*extra_sm
= NULL
;
532 struct stree
*stree
= NULL
;
533 struct sm_state
*sm
= NULL
;
535 loop_name
= get_loop_name(loop_num
);
538 __split_stmt(stmt
->iterator_pre_statement
);
539 __prev_stmt
= stmt
->iterator_pre_statement
;
541 once_through
= implied_condition_true(stmt
->iterator_pre_condition
);
547 __merge_gotos(loop_name
, NULL
);
549 extra_sm
= __extra_handle_canonical_loops(stmt
, &stree
);
550 __in_pre_condition
++;
551 __pass_to_client(stmt
, PRELOOP_HOOK
);
552 __split_whole_condition(stmt
->iterator_pre_condition
);
553 __in_pre_condition
--;
554 FOR_EACH_SM(stree
, sm
) {
555 set_state(sm
->owner
, sm
->name
, sm
->sym
, sm
->state
);
556 } END_FOR_EACH_SM(sm
);
559 extra_sm
= get_sm_state(extra_sm
->owner
, extra_sm
->name
, extra_sm
->sym
);
561 if (option_assume_loops
)
564 __split_stmt(stmt
->iterator_statement
);
565 if (is_forever_loop(stmt
)) {
567 __save_gotos(loop_name
, NULL
);
569 __push_fake_cur_stree();
570 __split_stmt(stmt
->iterator_post_statement
);
571 stree
= __pop_fake_cur_stree();
573 __discard_false_states();
576 if (!__path_is_null())
577 __merge_stree_into_cur(stree
);
581 unchanged
= __iterator_unchanged(extra_sm
);
582 __split_stmt(stmt
->iterator_post_statement
);
583 __prev_stmt
= stmt
->iterator_post_statement
;
586 __save_gotos(loop_name
, NULL
);
587 __in_pre_condition
++;
588 __split_whole_condition(stmt
->iterator_pre_condition
);
589 __in_pre_condition
--;
591 __merge_false_states();
593 __discard_false_states();
595 __merge_false_states();
597 if (extra_sm
&& unchanged
)
598 __extra_pre_loop_hook_after(extra_sm
,
599 stmt
->iterator_post_statement
,
600 stmt
->iterator_pre_condition
);
607 * Post loops are do {} while();
609 static void handle_post_loop(struct statement
*stmt
)
613 loop_name
= get_loop_name(loop_num
);
619 __merge_gotos(loop_name
, NULL
);
620 __split_stmt(stmt
->iterator_statement
);
622 if (!is_zero(stmt
->iterator_post_condition
))
623 __save_gotos(loop_name
, NULL
);
625 if (is_forever_loop(stmt
)) {
628 __split_whole_condition(stmt
->iterator_post_condition
);
629 __use_false_states();
635 static int empty_statement(struct statement
*stmt
)
639 if (stmt
->type
== STMT_EXPRESSION
&& !stmt
->expression
)
644 static int last_stmt_on_same_line(void)
646 struct statement
*stmt
;
649 FOR_EACH_PTR_REVERSE(big_statement_stack
, stmt
) {
652 if (stmt
->pos
.line
== get_lineno())
655 } END_FOR_EACH_PTR_REVERSE(stmt
);
659 static void split_asm_constraints(struct expression_list
*expr_list
)
661 struct expression
*expr
;
664 FOR_EACH_PTR(expr_list
, expr
) {
666 case 0: /* identifier */
667 case 1: /* constraint */
670 case 2: /* expression */
675 } END_FOR_EACH_PTR(expr
);
678 static int is_case_val(struct statement
*stmt
, sval_t sval
)
682 if (stmt
->type
!= STMT_CASE
)
684 if (!stmt
->case_expression
) {
688 if (!get_value(stmt
->case_expression
, &case_sval
))
690 if (case_sval
.value
== sval
.value
)
695 static struct range_list
*get_case_rl(struct expression
*switch_expr
,
696 struct expression
*case_expr
,
697 struct expression
*case_to
)
700 struct range_list
*rl
= NULL
;
701 struct symbol
*switch_type
;
703 switch_type
= get_type(switch_expr
);
704 if (get_value(case_to
, &end
) && get_value(case_expr
, &start
)) {
705 start
= sval_cast(switch_type
, start
);
706 end
= sval_cast(switch_type
, end
);
707 add_range(&rl
, start
, end
);
708 } else if (get_value(case_expr
, &start
)) {
709 start
= sval_cast(switch_type
, start
);
710 add_range(&rl
, start
, start
);
716 static void split_known_switch(struct statement
*stmt
, sval_t sval
)
718 struct statement
*tmp
;
719 struct range_list
*rl
;
721 __split_expr(stmt
->switch_expression
);
722 sval
= sval_cast(get_type(stmt
->switch_expression
), sval
);
724 push_expression(&switch_expr_stack
, stmt
->switch_expression
);
725 __save_switch_states(top_expression(switch_expr_stack
));
730 stmt
= stmt
->switch_statement
;
732 __push_scope_hooks();
733 FOR_EACH_PTR(stmt
->stmts
, tmp
) {
734 __smatch_lineno
= tmp
->pos
.line
;
735 if (is_case_val(tmp
, sval
)) {
736 rl
= alloc_rl(sval
, sval
);
737 __merge_switches(top_expression(switch_expr_stack
), rl
);
738 __pass_case_to_client(top_expression(switch_expr_stack
), rl
);
740 if (__path_is_null())
743 if (__path_is_null()) {
747 } END_FOR_EACH_PTR(tmp
);
749 __call_scope_hooks();
750 if (!__pop_default())
751 __merge_switches(top_expression(switch_expr_stack
), NULL
);
752 __discard_switches();
754 pop_expression(&switch_expr_stack
);
757 static void split_case(struct statement
*stmt
)
759 struct range_list
*rl
= NULL
;
761 expr_set_parent_stmt(stmt
->case_expression
, stmt
);
762 expr_set_parent_stmt(stmt
->case_to
, stmt
);
764 rl
= get_case_rl(top_expression(switch_expr_stack
),
765 stmt
->case_expression
, stmt
->case_to
);
766 while (stmt
->case_statement
->type
== STMT_CASE
) {
767 struct range_list
*tmp
;
769 tmp
= get_case_rl(top_expression(switch_expr_stack
),
770 stmt
->case_statement
->case_expression
,
771 stmt
->case_statement
->case_to
);
774 rl
= rl_union(rl
, tmp
);
775 if (!stmt
->case_expression
)
777 stmt
= stmt
->case_statement
;
780 __merge_switches(top_expression(switch_expr_stack
), rl
);
782 if (!stmt
->case_expression
)
784 __split_stmt(stmt
->case_statement
);
787 static int taking_too_long(void)
791 ms
= ms_since(&fn_start_time
);
792 if (ms
> 1000 * 60 * 5) /* five minutes */
797 static int is_last_stmt(struct statement
*cur_stmt
)
799 struct symbol
*fn
= get_base_type(cur_func_sym
);
800 struct statement
*stmt
;
806 stmt
= fn
->inline_stmt
;
807 if (!stmt
|| stmt
->type
!= STMT_COMPOUND
)
809 stmt
= last_ptr_list((struct ptr_list
*)stmt
->stmts
);
810 if (stmt
&& stmt
->type
== STMT_LABEL
)
811 stmt
= stmt
->label_statement
;
812 if (stmt
== cur_stmt
)
817 static void handle_backward_goto(struct statement
*goto_stmt
)
819 const char *goto_name
, *label_name
;
820 struct statement
*func_stmt
;
821 struct symbol
*base_type
= get_base_type(cur_func_sym
);
822 struct statement
*tmp
;
827 if (last_goto_statement_handled
)
829 last_goto_statement_handled
= 1;
831 if (!goto_stmt
->goto_label
||
832 goto_stmt
->goto_label
->type
!= SYM_LABEL
||
833 !goto_stmt
->goto_label
->ident
)
835 goto_name
= goto_stmt
->goto_label
->ident
->name
;
837 func_stmt
= base_type
->stmt
;
839 func_stmt
= base_type
->inline_stmt
;
842 if (func_stmt
->type
!= STMT_COMPOUND
)
845 FOR_EACH_PTR(func_stmt
->stmts
, tmp
) {
847 if (tmp
->type
!= STMT_LABEL
)
849 if (!tmp
->label_identifier
||
850 tmp
->label_identifier
->type
!= SYM_LABEL
||
851 !tmp
->label_identifier
->ident
)
853 label_name
= tmp
->label_identifier
->ident
->name
;
854 if (strcmp(goto_name
, label_name
) != 0)
859 } END_FOR_EACH_PTR(tmp
);
862 static void fake_a_return(void)
864 struct symbol
*return_type
;
869 return_type
= get_real_base_type(cur_func_sym
);
870 return_type
= get_real_base_type(return_type
);
871 if (return_type
!= &void_ctype
) {
872 __pass_to_client(unknown_value_expression(NULL
), RETURN_HOOK
);
877 static void fake_an_empty_default(struct position pos
)
879 static struct statement none
= {};
882 none
.type
= STMT_NONE
;
883 __merge_switches(top_expression(switch_expr_stack
), NULL
);
887 static void split_compound(struct statement
*stmt
)
889 struct statement
*prev
= NULL
;
890 struct statement
*cur
= NULL
;
891 struct statement
*next
;
893 __push_scope_hooks();
895 FOR_EACH_PTR(stmt
->stmts
, next
) {
896 /* just set them all ahead of time */
897 stmt_set_parent_stmt(next
, stmt
);
907 } END_FOR_EACH_PTR(next
);
916 * For function scope, then delay calling the scope hooks until the
917 * end of function hooks can run. I'm not positive this is the right
920 if (!is_last_stmt(cur
))
921 __call_scope_hooks();
925 * This is a hack, work around for detecting empty functions.
927 static int need_delayed_scope_hooks(void)
929 struct symbol
*fn
= get_base_type(cur_func_sym
);
930 struct statement
*stmt
;
936 stmt
= fn
->inline_stmt
;
937 if (stmt
&& stmt
->type
== STMT_COMPOUND
)
942 void __split_label_stmt(struct statement
*stmt
)
944 if (stmt
->label_identifier
&&
945 stmt
->label_identifier
->type
== SYM_LABEL
&&
946 stmt
->label_identifier
->ident
) {
947 loop_count
|= 0x0800000;
948 __merge_gotos(stmt
->label_identifier
->ident
->name
, stmt
->label_identifier
);
952 static void find_asm_gotos(struct statement
*stmt
)
956 FOR_EACH_PTR(stmt
->asm_labels
, sym
) {
957 __save_gotos(sym
->ident
->name
, sym
);
958 } END_FOR_EACH_PTR(sym
);
961 void __split_stmt(struct statement
*stmt
)
968 if (__bail_on_rest_of_function
)
971 if (out_of_memory() || taking_too_long()) {
974 gettimeofday(&stop
, NULL
);
976 __bail_on_rest_of_function
= 1;
978 sm_msg("Function too hairy. Giving up. %lu seconds",
979 stop
.tv_sec
- fn_start_time
.tv_sec
);
981 final_pass
= 0; /* turn off sm_msg() from here */
985 add_ptr_list(&big_statement_stack
, stmt
);
986 free_expression_stack(&big_expression_stack
);
987 set_position(stmt
->pos
);
988 __pass_to_client(stmt
, STMT_HOOK
);
990 switch (stmt
->type
) {
991 case STMT_DECLARATION
:
992 split_declaration(stmt
->declaration
);
995 expr_set_parent_stmt(stmt
->ret_value
, stmt
);
997 __split_expr(stmt
->ret_value
);
998 __pass_to_client(stmt
->ret_value
, RETURN_HOOK
);
999 __process_post_op_stack();
1002 case STMT_EXPRESSION
:
1003 expr_set_parent_stmt(stmt
->expression
, stmt
);
1004 expr_set_parent_stmt(stmt
->context
, stmt
);
1006 __split_expr(stmt
->expression
);
1009 split_compound(stmt
);
1012 stmt_set_parent_stmt(stmt
->if_true
, stmt
);
1013 stmt_set_parent_stmt(stmt
->if_false
, stmt
);
1014 expr_set_parent_stmt(stmt
->if_conditional
, stmt
);
1016 if (known_condition_true(stmt
->if_conditional
)) {
1017 __split_stmt(stmt
->if_true
);
1020 if (known_condition_false(stmt
->if_conditional
)) {
1021 __split_stmt(stmt
->if_false
);
1024 __split_whole_condition(stmt
->if_conditional
);
1025 __split_stmt(stmt
->if_true
);
1026 if (empty_statement(stmt
->if_true
) &&
1027 last_stmt_on_same_line() &&
1028 !get_macro_name(stmt
->if_true
->pos
))
1029 sm_msg("warn: if();");
1030 __push_true_states();
1031 __use_false_states();
1032 __split_stmt(stmt
->if_false
);
1033 __merge_true_states();
1036 stmt_set_parent_stmt(stmt
->iterator_pre_statement
, stmt
);
1037 stmt_set_parent_stmt(stmt
->iterator_statement
, stmt
);
1038 stmt_set_parent_stmt(stmt
->iterator_post_statement
, stmt
);
1039 expr_set_parent_stmt(stmt
->iterator_pre_condition
, stmt
);
1040 expr_set_parent_stmt(stmt
->iterator_post_condition
, stmt
);
1042 if (stmt
->iterator_pre_condition
)
1043 handle_pre_loop(stmt
);
1044 else if (stmt
->iterator_post_condition
)
1045 handle_post_loop(stmt
);
1047 // these are for(;;) type loops.
1048 handle_pre_loop(stmt
);
1052 stmt_set_parent_stmt(stmt
->switch_statement
, stmt
);
1053 expr_set_parent_stmt(stmt
->switch_expression
, stmt
);
1055 if (get_value(stmt
->switch_expression
, &sval
)) {
1056 split_known_switch(stmt
, sval
);
1059 __split_expr(stmt
->switch_expression
);
1060 push_expression(&switch_expr_stack
, stmt
->switch_expression
);
1061 __save_switch_states(top_expression(switch_expr_stack
));
1065 __split_stmt(stmt
->switch_statement
);
1066 if (!__pop_default())
1067 fake_an_empty_default(stmt
->pos
);
1068 __discard_switches();
1070 pop_expression(&switch_expr_stack
);
1076 __split_label_stmt(stmt
);
1077 __split_stmt(stmt
->label_statement
);
1080 expr_set_parent_stmt(stmt
->goto_expression
, stmt
);
1082 __split_expr(stmt
->goto_expression
);
1083 if (stmt
->goto_label
&& stmt
->goto_label
->type
== SYM_NODE
) {
1084 if (!strcmp(stmt
->goto_label
->ident
->name
, "break")) {
1086 } else if (!strcmp(stmt
->goto_label
->ident
->name
,
1088 __process_continues();
1090 } else if (stmt
->goto_label
&&
1091 stmt
->goto_label
->type
== SYM_LABEL
&&
1092 stmt
->goto_label
->ident
) {
1093 __save_gotos(stmt
->goto_label
->ident
->name
, stmt
->goto_label
);
1096 if (is_last_stmt(stmt
))
1097 handle_backward_goto(stmt
);
1102 expr_set_parent_stmt(stmt
->asm_string
, stmt
);
1104 find_asm_gotos(stmt
);
1105 __pass_to_client(stmt
, ASM_HOOK
);
1106 __split_expr(stmt
->asm_string
);
1107 split_asm_constraints(stmt
->asm_outputs
);
1108 split_asm_constraints(stmt
->asm_inputs
);
1109 split_asm_constraints(stmt
->asm_clobbers
);
1114 __split_expr(stmt
->range_expression
);
1115 __split_expr(stmt
->range_low
);
1116 __split_expr(stmt
->range_high
);
1119 __pass_to_client(stmt
, STMT_HOOK_AFTER
);
1121 __process_post_op_stack();
1124 static void split_expr_list(struct expression_list
*expr_list
, struct expression
*parent
)
1126 struct expression
*expr
;
1128 FOR_EACH_PTR(expr_list
, expr
) {
1129 expr_set_parent_expr(expr
, parent
);
1131 __process_post_op_stack();
1132 } END_FOR_EACH_PTR(expr
);
1135 static void split_sym(struct symbol
*sym
)
1139 if (!(sym
->namespace & NS_SYMBOL
))
1142 __split_stmt(sym
->stmt
);
1143 __split_expr(sym
->array_size
);
1144 split_symlist(sym
->arguments
);
1145 split_symlist(sym
->symbol_list
);
1146 __split_stmt(sym
->inline_stmt
);
1147 split_symlist(sym
->inline_symbol_list
);
1150 static void split_symlist(struct symbol_list
*sym_list
)
1154 FOR_EACH_PTR(sym_list
, sym
) {
1156 } END_FOR_EACH_PTR(sym
);
1159 typedef void (fake_cb
)(struct expression
*expr
);
1161 static int member_to_number(struct expression
*expr
, struct ident
*member
)
1163 struct symbol
*type
, *tmp
;
1169 name
= member
->name
;
1171 type
= get_type(expr
);
1172 if (!type
|| type
->type
!= SYM_STRUCT
)
1176 FOR_EACH_PTR(type
->symbol_list
, tmp
) {
1180 if (strcmp(name
, tmp
->ident
->name
) == 0)
1182 } END_FOR_EACH_PTR(tmp
);
1186 static struct ident
*number_to_member(struct expression
*expr
, int num
)
1188 struct symbol
*type
, *member
;
1191 type
= get_type(expr
);
1192 if (!type
|| type
->type
!= SYM_STRUCT
)
1195 FOR_EACH_PTR(type
->symbol_list
, member
) {
1197 return member
->ident
;
1199 } END_FOR_EACH_PTR(member
);
1203 static void fake_element_assigns_helper(struct expression
*array
, struct expression_list
*expr_list
, fake_cb
*fake_cb
);
1205 static void set_inner_struct_members(struct expression
*expr
, struct symbol
*member
)
1207 struct expression
*edge_member
, *assign
;
1208 struct symbol
*base
= get_real_base_type(member
);
1212 expr
= member_expression(expr
, '.', member
->ident
);
1214 FOR_EACH_PTR(base
->symbol_list
, tmp
) {
1215 struct symbol
*type
;
1217 type
= get_real_base_type(tmp
);
1221 edge_member
= member_expression(expr
, '.', tmp
->ident
);
1222 if (get_state_expr(SMATCH_EXTRA
, edge_member
))
1225 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
1226 set_inner_struct_members(expr
, tmp
);
1233 assign
= assign_expression(edge_member
, zero_expr());
1234 __split_expr(assign
);
1235 } END_FOR_EACH_PTR(tmp
);
1240 static void set_unset_to_zero(struct symbol
*type
, struct expression
*expr
)
1243 struct expression
*member
= NULL
;
1244 struct expression
*assign
;
1247 if (expr
->type
== EXPR_PREOP
&& expr
->op
== '&') {
1248 expr
= strip_expr(expr
->unop
);
1252 FOR_EACH_PTR(type
->symbol_list
, tmp
) {
1253 type
= get_real_base_type(tmp
);
1258 member
= member_expression(expr
, op
, tmp
->ident
);
1259 if (get_state_expr(SMATCH_EXTRA
, member
))
1263 if (type
->type
== SYM_UNION
|| type
->type
== SYM_STRUCT
) {
1264 set_inner_struct_members(expr
, tmp
);
1267 if (type
->type
== SYM_ARRAY
)
1272 assign
= assign_expression(member
, zero_expr());
1273 __split_expr(assign
);
1274 } END_FOR_EACH_PTR(tmp
);
1277 static void fake_member_assigns_helper(struct expression
*symbol
, struct expression_list
*members
, fake_cb
*fake_cb
)
1279 struct expression
*deref
, *assign
, *tmp
, *right
;
1280 struct symbol
*struct_type
, *type
;
1281 struct ident
*member
;
1284 struct_type
= get_type(symbol
);
1286 (struct_type
->type
!= SYM_STRUCT
&& struct_type
->type
!= SYM_UNION
))
1290 * We're parsing an initializer that could look something like this:
1291 * struct foo foo = {
1293 * .whatever.xxx = 11,
1297 * So what we have here is a list with 42, .whatever, and .zzz. We need
1298 * to break it up into left and right sides of the assignments.
1302 FOR_EACH_PTR(members
, tmp
) {
1304 if (tmp
->type
== EXPR_IDENTIFIER
) {
1305 member_idx
= member_to_number(symbol
, tmp
->expr_ident
);
1306 while (tmp
->type
== EXPR_IDENTIFIER
) {
1307 member
= tmp
->expr_ident
;
1308 tmp
= tmp
->ident_expression
;
1310 deref
= member_expression(deref
, '.', member
);
1312 deref
= member_expression(symbol
, '.', member
);
1315 member
= number_to_member(symbol
, member_idx
);
1316 deref
= member_expression(symbol
, '.', member
);
1320 if (right
->type
== EXPR_INITIALIZER
) {
1321 type
= get_type(deref
);
1322 if (type
&& type
->type
== SYM_ARRAY
)
1323 fake_element_assigns_helper(deref
, right
->expr_list
, fake_cb
);
1325 fake_member_assigns_helper(deref
, right
->expr_list
, fake_cb
);
1327 assign
= assign_expression(deref
, right
);
1330 } END_FOR_EACH_PTR(tmp
);
1332 set_unset_to_zero(struct_type
, symbol
);
1335 static void fake_member_assigns(struct symbol
*sym
, fake_cb
*fake_cb
)
1337 fake_member_assigns_helper(symbol_expression(sym
),
1338 sym
->initializer
->expr_list
, fake_cb
);
1341 static void fake_element_assigns_helper(struct expression
*array
, struct expression_list
*expr_list
, fake_cb
*fake_cb
)
1343 struct expression
*offset
, *binop
, *assign
, *tmp
;
1344 struct symbol
*type
;
1347 if (ptr_list_size((struct ptr_list
*)expr_list
) > 1000)
1351 FOR_EACH_PTR(expr_list
, tmp
) {
1352 if (tmp
->type
== EXPR_INDEX
) {
1353 if (tmp
->idx_from
!= tmp
->idx_to
)
1355 idx
= tmp
->idx_from
;
1356 if (!tmp
->idx_expression
)
1358 tmp
= tmp
->idx_expression
;
1360 offset
= value_expr(idx
);
1361 binop
= array_element_expression(array
, offset
);
1362 if (tmp
->type
== EXPR_INITIALIZER
) {
1363 type
= get_type(binop
);
1364 if (type
&& type
->type
== SYM_ARRAY
)
1365 fake_element_assigns_helper(binop
, tmp
->expr_list
, fake_cb
);
1367 fake_member_assigns_helper(binop
, tmp
->expr_list
, fake_cb
);
1369 assign
= assign_expression(binop
, tmp
);
1374 } END_FOR_EACH_PTR(tmp
);
1377 static void fake_element_assigns(struct symbol
*sym
, fake_cb
*fake_cb
)
1379 fake_element_assigns_helper(symbol_expression(sym
), sym
->initializer
->expr_list
, fake_cb
);
1382 static void fake_assign_expr(struct symbol
*sym
)
1384 struct expression
*assign
, *symbol
;
1386 symbol
= symbol_expression(sym
);
1387 assign
= assign_expression(symbol
, sym
->initializer
);
1388 __split_expr(assign
);
1391 static void call_split_expr(struct expression
*expr
)
1396 static void do_initializer_stuff(struct symbol
*sym
)
1398 if (!sym
->initializer
)
1401 if (sym
->initializer
->type
== EXPR_INITIALIZER
) {
1402 if (get_real_base_type(sym
)->type
== SYM_ARRAY
)
1403 fake_element_assigns(sym
, call_split_expr
);
1405 fake_member_assigns(sym
, call_split_expr
);
1407 fake_assign_expr(sym
);
1411 static void split_declaration(struct symbol_list
*sym_list
)
1415 FOR_EACH_PTR(sym_list
, sym
) {
1416 __pass_to_client(sym
, DECLARATION_HOOK
);
1417 do_initializer_stuff(sym
);
1419 } END_FOR_EACH_PTR(sym
);
1422 static void call_global_assign_hooks(struct expression
*assign
)
1424 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1427 static void fake_global_assign(struct symbol
*sym
)
1429 struct expression
*assign
, *symbol
;
1431 if (get_real_base_type(sym
)->type
== SYM_ARRAY
) {
1432 if (sym
->initializer
&& sym
->initializer
->type
== EXPR_INITIALIZER
) {
1433 fake_element_assigns(sym
, call_global_assign_hooks
);
1434 } else if (sym
->initializer
) {
1435 symbol
= symbol_expression(sym
);
1436 assign
= assign_expression(symbol
, sym
->initializer
);
1437 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1439 fake_element_assigns_helper(symbol_expression(sym
), NULL
, call_global_assign_hooks
);
1441 } else if (get_real_base_type(sym
)->type
== SYM_STRUCT
) {
1442 if (sym
->initializer
&& sym
->initializer
->type
== EXPR_INITIALIZER
) {
1443 fake_member_assigns(sym
, call_global_assign_hooks
);
1444 } else if (sym
->initializer
) {
1445 symbol
= symbol_expression(sym
);
1446 assign
= assign_expression(symbol
, sym
->initializer
);
1447 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1449 fake_member_assigns_helper(symbol_expression(sym
), NULL
, call_global_assign_hooks
);
1452 symbol
= symbol_expression(sym
);
1453 if (sym
->initializer
)
1454 assign
= assign_expression(symbol
, sym
->initializer
);
1456 assign
= assign_expression(symbol
, zero_expr());
1457 __pass_to_client(assign
, GLOBAL_ASSIGNMENT_HOOK
);
1461 static void start_function_definition(struct symbol
*sym
)
1463 __in_function_def
= 1;
1464 __pass_to_client(sym
, FUNC_DEF_HOOK
);
1465 __in_function_def
= 0;
1466 __pass_to_client(sym
, AFTER_DEF_HOOK
);
1470 static void split_function(struct symbol
*sym
)
1472 struct symbol
*base_type
= get_base_type(sym
);
1474 if (!base_type
->stmt
&& !base_type
->inline_stmt
)
1477 gettimeofday(&fn_start_time
, NULL
);
1480 cur_func
= sym
->ident
->name
;
1481 set_position(sym
->pos
);
1483 last_goto_statement_handled
= 0;
1484 sm_debug("new function: %s\n", cur_func
);
1486 if (option_two_passes
) {
1490 start_function_definition(sym
);
1491 __split_stmt(base_type
->stmt
);
1492 __split_stmt(base_type
->inline_stmt
);
1498 start_function_definition(sym
);
1499 __split_stmt(base_type
->stmt
);
1500 __split_stmt(base_type
->inline_stmt
);
1501 __pass_to_client(sym
, END_FUNC_HOOK
);
1502 if (need_delayed_scope_hooks())
1503 __call_scope_hooks();
1504 __pass_to_client(sym
, AFTER_FUNC_HOOK
);
1507 cur_func_sym
= NULL
;
1509 free_data_info_allocs();
1510 free_expression_stack(&switch_expr_stack
);
1511 __free_ptr_list((struct ptr_list
**)&big_statement_stack
);
1512 __bail_on_rest_of_function
= 0;
1515 static void save_flow_state(void)
1517 __add_ptr_list(&backup
, INT_PTR(loop_num
<< 2), 0);
1518 __add_ptr_list(&backup
, INT_PTR(loop_count
<< 2), 0);
1519 __add_ptr_list(&backup
, INT_PTR(final_pass
<< 2), 0);
1521 __add_ptr_list(&backup
, big_statement_stack
, 0);
1522 __add_ptr_list(&backup
, big_expression_stack
, 0);
1523 __add_ptr_list(&backup
, big_condition_stack
, 0);
1524 __add_ptr_list(&backup
, switch_expr_stack
, 0);
1526 __add_ptr_list(&backup
, cur_func_sym
, 0);
1528 __add_ptr_list(&backup
, __prev_stmt
, 0);
1529 __add_ptr_list(&backup
, __cur_stmt
, 0);
1530 __add_ptr_list(&backup
, __next_stmt
, 0);
1534 static void *pop_backup(void)
1538 ret
= last_ptr_list(backup
);
1539 delete_ptr_list_last(&backup
);
1543 static void restore_flow_state(void)
1545 __next_stmt
= pop_backup();
1546 __cur_stmt
= pop_backup();
1547 __prev_stmt
= pop_backup();
1549 cur_func_sym
= pop_backup();
1550 switch_expr_stack
= pop_backup();
1551 big_condition_stack
= pop_backup();
1552 big_expression_stack
= pop_backup();
1553 big_statement_stack
= pop_backup();
1554 final_pass
= PTR_INT(pop_backup()) >> 2;
1555 loop_count
= PTR_INT(pop_backup()) >> 2;
1556 loop_num
= PTR_INT(pop_backup()) >> 2;
1559 static void parse_inline(struct expression
*call
)
1561 struct symbol
*base_type
;
1562 char *cur_func_bak
= cur_func
; /* not aligned correctly for backup */
1566 __pass_to_client(call
, INLINE_FN_START
);
1567 final_pass
= 0; /* don't print anything */
1570 base_type
= get_base_type(call
->fn
->symbol
);
1571 cur_func_sym
= call
->fn
->symbol
;
1572 if (call
->fn
->symbol
->ident
)
1573 cur_func
= call
->fn
->symbol
->ident
->name
;
1576 set_position(call
->fn
->symbol
->pos
);
1579 big_statement_stack
= NULL
;
1580 big_expression_stack
= NULL
;
1581 big_condition_stack
= NULL
;
1582 switch_expr_stack
= NULL
;
1584 sm_debug("inline function: %s\n", cur_func
);
1587 start_function_definition(call
->fn
->symbol
);
1588 __split_stmt(base_type
->stmt
);
1589 __split_stmt(base_type
->inline_stmt
);
1590 __pass_to_client(call
->fn
->symbol
, END_FUNC_HOOK
);
1591 __pass_to_client(call
->fn
->symbol
, AFTER_FUNC_HOOK
);
1593 free_expression_stack(&switch_expr_stack
);
1594 __free_ptr_list((struct ptr_list
**)&big_statement_stack
);
1598 restore_flow_state();
1599 cur_func
= cur_func_bak
;
1601 restore_all_states();
1602 set_position(call
->pos
);
1604 __pass_to_client(call
, INLINE_FN_END
);
1607 static struct symbol_list
*inlines_called
;
1608 static void add_inline_function(struct symbol
*sym
)
1610 static struct symbol_list
*already_added
;
1613 FOR_EACH_PTR(already_added
, tmp
) {
1616 } END_FOR_EACH_PTR(tmp
);
1618 add_ptr_list(&already_added
, sym
);
1619 add_ptr_list(&inlines_called
, sym
);
1622 static void process_inlines(void)
1626 FOR_EACH_PTR(inlines_called
, tmp
) {
1627 split_function(tmp
);
1628 } END_FOR_EACH_PTR(tmp
);
1629 free_ptr_list(&inlines_called
);
1632 static struct symbol
*get_last_scoped_symbol(struct symbol_list
*big_list
, int use_static
)
1636 FOR_EACH_PTR_REVERSE(big_list
, sym
) {
1639 if (use_static
&& sym
->ctype
.modifiers
& MOD_STATIC
)
1641 if (!use_static
&& !(sym
->ctype
.modifiers
& MOD_STATIC
))
1643 } END_FOR_EACH_PTR_REVERSE(sym
);
1648 static void split_inlines_in_scope(struct symbol
*sym
)
1650 struct symbol
*base
;
1651 struct symbol_list
*scope_list
;
1654 scope_list
= sym
->scope
->symbols
;
1655 stream
= sym
->pos
.stream
;
1657 /* find the last static symbol in the file */
1658 FOR_EACH_PTR_REVERSE(scope_list
, sym
) {
1659 if (sym
->pos
.stream
!= stream
)
1661 if (sym
->type
!= SYM_NODE
)
1663 base
= get_base_type(sym
);
1666 if (base
->type
!= SYM_FN
)
1668 if (!base
->inline_stmt
)
1670 add_inline_function(sym
);
1671 } END_FOR_EACH_PTR_REVERSE(sym
);
1676 static void split_inlines(struct symbol_list
*sym_list
)
1680 sym
= get_last_scoped_symbol(sym_list
, 0);
1682 split_inlines_in_scope(sym
);
1683 sym
= get_last_scoped_symbol(sym_list
, 1);
1685 split_inlines_in_scope(sym
);
1688 static struct stree
*clone_estates_perm(struct stree
*orig
)
1690 struct stree
*ret
= NULL
;
1691 struct sm_state
*tmp
;
1693 FOR_EACH_SM(orig
, tmp
) {
1694 set_state_stree_perm(&ret
, tmp
->owner
, tmp
->name
, tmp
->sym
, clone_estate_perm(tmp
->state
));
1695 } END_FOR_EACH_SM(tmp
);
1700 struct position last_pos
;
1701 static void split_functions(struct symbol_list
*sym_list
)
1706 FOR_EACH_PTR(sym_list
, sym
) {
1707 set_position(sym
->pos
);
1708 if (sym
->type
!= SYM_NODE
|| get_base_type(sym
)->type
!= SYM_FN
) {
1709 __pass_to_client(sym
, BASE_HOOK
);
1710 fake_global_assign(sym
);
1712 } END_FOR_EACH_PTR(sym
);
1713 global_states
= clone_estates_perm(get_all_states_stree(SMATCH_EXTRA
));
1716 FOR_EACH_PTR(sym_list
, sym
) {
1717 set_position(sym
->pos
);
1718 if (sym
->type
== SYM_NODE
&& get_base_type(sym
)->type
== SYM_FN
) {
1719 split_function(sym
);
1722 last_pos
= sym
->pos
;
1723 } END_FOR_EACH_PTR(sym
);
1724 split_inlines(sym_list
);
1725 __pass_to_client(sym_list
, END_FILE_HOOK
);
1728 static int final_before_fake
;
1729 void init_fake_env(void)
1732 final_before_fake
= final_pass
;
1734 __push_fake_cur_stree();
1738 void end_fake_env(void)
1740 __pop_fake_cur_stree();
1743 final_pass
= final_before_fake
;
1746 void smatch(int argc
, char **argv
)
1748 struct string_list
*filelist
= NULL
;
1749 struct symbol_list
*sym_list
;
1750 struct timeval stop
, start
;
1752 gettimeofday(&start
, NULL
);
1755 printf("Usage: smatch [--debug] <filename.c>\n");
1758 sparse_initialize(argc
, argv
, &filelist
);
1759 set_valid_ptr_max();
1760 FOR_EACH_PTR_NOTAG(filelist
, base_file
) {
1761 if (option_file_output
) {
1764 snprintf(buf
, sizeof(buf
), "%s.smatch", base_file
);
1765 sm_outfd
= fopen(buf
, "w");
1767 printf("Error: Cannot open %s\n", base_file
);
1771 sym_list
= sparse_keep_tokens(base_file
);
1772 split_functions(sym_list
);
1773 } END_FOR_EACH_PTR_NOTAG(base_file
);
1775 gettimeofday(&stop
, NULL
);
1777 set_position(last_pos
);
1779 sm_msg("time: %lu", stop
.tv_sec
- start
.tv_sec
);