scope: fix is_outer_stmt()
[smatch.git] / check_user_data2.c
blobb171fdffc1300250750c2ba71f355c25b5bc548c
1 /*
2 * Copyright (C) 2011 Dan Carpenter.
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
19 * There are a couple checks that try to see if a variable
20 * comes from the user. It would be better to unify them
21 * into one place. Also it we should follow the data down
22 * the call paths. Hence this file.
25 #include "smatch.h"
26 #include "smatch_slist.h"
27 #include "smatch_extra.h"
29 static int my_id;
30 static int my_call_id;
32 STATE(called);
33 static bool func_gets_user_data;
35 static const char * kstr_funcs[] = {
36 "kstrtoull", "kstrtoll", "kstrtoul", "kstrtol", "kstrtouint",
37 "kstrtoint", "kstrtou64", "kstrtos64", "kstrtou32", "kstrtos32",
38 "kstrtou16", "kstrtos16", "kstrtou8", "kstrtos8", "kstrtoull_from_user"
39 "kstrtoll_from_user", "kstrtoul_from_user", "kstrtol_from_user",
40 "kstrtouint_from_user", "kstrtoint_from_user", "kstrtou16_from_user",
41 "kstrtos16_from_user", "kstrtou8_from_user", "kstrtos8_from_user",
42 "kstrtou64_from_user", "kstrtos64_from_user", "kstrtou32_from_user",
43 "kstrtos32_from_user",
46 static const char *returns_user_data[] = {
47 "simple_strtol", "simple_strtoll", "simple_strtoul", "simple_strtoull",
48 "kvm_register_read", "nlmsg_data", "nla_data", "memdup_user",
49 "kmap_atomic", "skb_network_header",
52 static void set_points_to_user_data(struct expression *expr);
54 static struct stree *start_states;
55 static struct stree_stack *saved_stack;
56 static void save_start_states(struct statement *stmt)
58 start_states = clone_stree(__get_cur_stree());
61 static void free_start_states(void)
63 free_stree(&start_states);
66 static void match_save_states(struct expression *expr)
68 push_stree(&saved_stack, start_states);
69 start_states = NULL;
72 static void match_restore_states(struct expression *expr)
74 free_stree(&start_states);
75 start_states = pop_stree(&saved_stack);
78 static struct smatch_state *empty_state(struct sm_state *sm)
80 return alloc_estate_empty();
83 static void pre_merge_hook(struct sm_state *sm)
85 struct smatch_state *user;
86 struct smatch_state *extra;
87 struct range_list *rl;
88 sval_t dummy;
89 sval_t sval_100 = {
90 .type = &int_ctype,
91 .value = 100,
94 user = get_state(my_id, sm->name, sm->sym);
95 if (!user)
96 return;
97 if (!__in_function_def && !estate_rl(sm->state)) {
99 * If the one side is capped and the other side is empty then
100 * let's just mark it as not-user data because the information
101 * isn't going to be useful. How this looks is:
103 * if (user_var > trusted)
104 * user_var = trusted; <-- empty state
105 * else
106 * <-- capped
108 * The problem is that sometimes things are capped to a literal
109 * and we'd like to keep the state in that case... Ugh. I've
110 * added a check which assumes that everything less than 100 is
111 * probably capped against a literal.
114 if (is_capped_var_sym(sm->name, sm->sym) &&
115 sval_cmp(estate_max(user), sval_100) > 0)
116 set_state(my_id, sm->name, sm->sym, alloc_estate_empty());
117 return;
119 extra = get_state(SMATCH_EXTRA, sm->name, sm->sym);
120 if (!extra || !estate_rl(extra))
121 return;
122 rl = rl_intersection(estate_rl(user), estate_rl(extra));
123 if (rl_to_sval(rl, &dummy))
124 rl = NULL;
125 set_state(my_id, sm->name, sm->sym, alloc_estate_rl(clone_rl(rl)));
128 static void extra_nomod_hook(const char *name, struct symbol *sym, struct expression *expr, struct smatch_state *state)
130 struct smatch_state *user;
131 struct range_list *rl;
133 user = get_state(my_id, name, sym);
134 if (!user)
135 return;
136 rl = rl_intersection(estate_rl(user), estate_rl(state));
137 if (rl_equiv(rl, estate_rl(user)))
138 return;
139 set_state(my_id, name, sym, alloc_estate_rl(rl));
142 static void tag_inner_struct_members(struct expression *expr, struct symbol *member)
144 struct expression *edge_member;
145 struct symbol *base = get_real_base_type(member);
146 struct symbol *tmp;
148 if (member->ident)
149 expr = member_expression(expr, '.', member->ident);
151 FOR_EACH_PTR(base->symbol_list, tmp) {
152 struct symbol *type;
154 type = get_real_base_type(tmp);
155 if (!type)
156 continue;
158 if (type->type == SYM_UNION || type->type == SYM_STRUCT) {
159 tag_inner_struct_members(expr, tmp);
160 continue;
163 if (!tmp->ident)
164 continue;
166 edge_member = member_expression(expr, '.', tmp->ident);
167 set_state_expr(my_id, edge_member, alloc_estate_whole(type));
168 } END_FOR_EACH_PTR(tmp);
171 static void tag_struct_members(struct symbol *type, struct expression *expr)
173 struct symbol *tmp;
174 struct expression *member;
175 int op = '*';
177 if (expr->type == EXPR_PREOP && expr->op == '&') {
178 expr = strip_expr(expr->unop);
179 op = '.';
182 FOR_EACH_PTR(type->symbol_list, tmp) {
183 type = get_real_base_type(tmp);
184 if (!type)
185 continue;
187 if (type->type == SYM_UNION || type->type == SYM_STRUCT) {
188 tag_inner_struct_members(expr, tmp);
189 continue;
192 if (!tmp->ident)
193 continue;
195 member = member_expression(expr, op, tmp->ident);
196 set_state_expr(my_id, member, alloc_estate_whole(get_type(member)));
198 if (type->type == SYM_ARRAY)
199 set_points_to_user_data(member);
200 } END_FOR_EACH_PTR(tmp);
203 static void tag_base_type(struct expression *expr)
205 if (expr->type == EXPR_PREOP && expr->op == '&')
206 expr = strip_expr(expr->unop);
207 else
208 expr = deref_expression(expr);
209 set_state_expr(my_id, expr, alloc_estate_whole(get_type(expr)));
212 static void tag_as_user_data(struct expression *expr)
214 struct symbol *type;
216 expr = strip_expr(expr);
218 type = get_type(expr);
219 if (!type || type->type != SYM_PTR)
220 return;
221 type = get_real_base_type(type);
222 if (!type)
223 return;
224 if (type == &void_ctype) {
225 set_state_expr(my_id, deref_expression(expr), alloc_estate_whole(&ulong_ctype));
226 return;
228 if (type->type == SYM_BASETYPE)
229 tag_base_type(expr);
230 if (type->type == SYM_STRUCT || type->type == SYM_UNION) {
231 if (expr->type != EXPR_PREOP || expr->op != '&')
232 expr = deref_expression(expr);
233 else
234 set_state_expr(my_id, deref_expression(expr), alloc_estate_whole(&ulong_ctype));
235 tag_struct_members(type, expr);
239 static void match_user_copy(const char *fn, struct expression *expr, void *_param)
241 int param = PTR_INT(_param);
242 struct expression *dest;
244 func_gets_user_data = true;
246 dest = get_argument_from_call_expr(expr->args, param);
247 dest = strip_expr(dest);
248 if (!dest)
249 return;
250 tag_as_user_data(dest);
253 static int is_dev_attr_name(struct expression *expr)
255 char *name;
256 int ret = 0;
258 name = expr_to_str(expr);
259 if (!name)
260 return 0;
261 if (strstr(name, "->attr.name"))
262 ret = 1;
263 free_string(name);
264 return ret;
267 static int ends_in_n(struct expression *expr)
269 struct string *str;
271 if (!expr)
272 return 0;
273 if (expr->type != EXPR_STRING || !expr->string)
274 return 0;
276 str = expr->string;
277 if (str->length < 3)
278 return 0;
280 if (str->data[str->length - 3] == '%' &&
281 str->data[str->length - 2] == 'n')
282 return 1;
283 return 0;
286 static void match_sscanf(const char *fn, struct expression *expr, void *unused)
288 struct expression *str, *format, *arg;
289 int i, last;
291 func_gets_user_data = true;
293 str = get_argument_from_call_expr(expr->args, 0);
294 if (is_dev_attr_name(str))
295 return;
297 format = get_argument_from_call_expr(expr->args, 1);
298 if (is_dev_attr_name(format))
299 return;
301 last = ptr_list_size((struct ptr_list *)expr->args) - 1;
303 i = -1;
304 FOR_EACH_PTR(expr->args, arg) {
305 i++;
306 if (i < 2)
307 continue;
308 if (i == last && ends_in_n(format))
309 continue;
310 tag_as_user_data(arg);
311 } END_FOR_EACH_PTR(arg);
314 static int is_skb_data(struct expression *expr)
316 struct symbol *sym;
318 if (!expr)
319 return 0;
321 if (expr->type == EXPR_BINOP && expr->op == '+')
322 return is_skb_data(expr->left);
324 expr = strip_expr(expr);
325 if (!expr)
326 return 0;
327 if (expr->type != EXPR_DEREF || expr->op != '.')
328 return 0;
330 if (!expr->member)
331 return 0;
332 if (strcmp(expr->member->name, "data") != 0)
333 return 0;
335 sym = expr_to_sym(expr->deref);
336 if (!sym)
337 return 0;
338 sym = get_real_base_type(sym);
339 if (!sym || sym->type != SYM_PTR)
340 return 0;
341 sym = get_real_base_type(sym);
342 if (!sym || sym->type != SYM_STRUCT || !sym->ident)
343 return 0;
344 if (strcmp(sym->ident->name, "sk_buff") != 0)
345 return 0;
347 return 1;
350 static int get_rl_from_function(struct expression *expr, struct range_list **rl)
352 int i;
354 if (expr->type != EXPR_CALL || expr->fn->type != EXPR_SYMBOL ||
355 !expr->fn->symbol_name || !expr->fn->symbol_name->name)
356 return 0;
358 for (i = 0; i < ARRAY_SIZE(returns_user_data); i++) {
359 if (strcmp(expr->fn->symbol_name->name, returns_user_data[i]) == 0) {
360 *rl = alloc_whole_rl(get_type(expr));
361 return 1;
364 return 0;
367 int points_to_user_data(struct expression *expr)
369 struct smatch_state *state;
370 struct range_list *rl;
371 char buf[256];
372 struct symbol *sym;
373 char *name;
374 int ret = 0;
376 expr = strip_expr(expr);
377 if (!expr)
378 return 0;
379 if (is_skb_data(expr))
380 return 1;
381 if (get_rl_from_function(expr, &rl))
382 return 1;
384 if (expr->type == EXPR_BINOP && expr->op == '+') {
385 if (points_to_user_data(expr->left))
386 return 1;
387 if (points_to_user_data(expr->right))
388 return 1;
389 return 0;
392 name = expr_to_var_sym(expr, &sym);
393 if (!name || !sym)
394 goto free;
395 snprintf(buf, sizeof(buf), "*%s", name);
396 state = get_state(my_id, buf, sym);
397 if (state && estate_rl(state))
398 ret = 1;
399 free:
400 free_string(name);
401 return ret;
404 static void set_points_to_user_data(struct expression *expr)
406 char *name;
407 struct symbol *sym;
408 char buf[256];
410 name = expr_to_var_sym(expr, &sym);
411 if (!name || !sym)
412 goto free;
413 snprintf(buf, sizeof(buf), "*%s", name);
414 set_state(my_id, buf, sym, alloc_estate_whole(&llong_ctype));
415 free:
416 free_string(name);
419 static int comes_from_skb_data(struct expression *expr)
421 expr = strip_expr(expr);
422 if (!expr || expr->type != EXPR_PREOP || expr->op != '*')
423 return 0;
425 expr = strip_expr(expr->unop);
426 if (!expr)
427 return 0;
428 if (expr->type == EXPR_BINOP && expr->op == '+')
429 expr = strip_expr(expr->left);
431 return is_skb_data(expr);
434 static int handle_struct_assignment(struct expression *expr)
436 struct expression *right;
437 struct symbol *left_type, *right_type;
439 left_type = get_type(expr->left);
440 if (!left_type || left_type->type != SYM_PTR)
441 return 0;
442 left_type = get_real_base_type(left_type);
443 if (!left_type)
444 return 0;
445 if (left_type->type != SYM_STRUCT &&
446 left_type->type != SYM_UNION)
447 return 0;
450 * Ignore struct to struct assignments because for those we look at the
451 * individual members.
453 right = strip_expr(expr->right);
454 right_type = get_type(right);
455 if (!right_type || right_type->type != SYM_PTR)
456 return 0;
458 /* If we are assigning struct members then normally that is handled
459 * by fake assignments, however if we cast one struct to a different
460 * of struct then we handle that here.
462 right_type = get_real_base_type(right_type);
463 if (right_type == left_type)
464 return 0;
466 if (!points_to_user_data(right))
467 return 0;
469 tag_as_user_data(expr->left);
470 return 1;
473 static int handle_get_user(struct expression *expr)
475 char *name;
476 int ret = 0;
478 name = get_macro_name(expr->pos);
479 if (!name || strcmp(name, "get_user") != 0)
480 return 0;
482 name = expr_to_var(expr->right);
483 if (!name || strcmp(name, "__val_gu") != 0)
484 goto free;
485 set_state_expr(my_id, expr->left, alloc_estate_whole(get_type(expr->left)));
486 ret = 1;
487 free:
488 free_string(name);
489 return ret;
492 static void match_assign(struct expression *expr)
494 struct range_list *rl;
496 if (is_fake_call(expr->right))
497 goto clear_old_state;
498 if (handle_get_user(expr))
499 return;
500 if (points_to_user_data(expr->right))
501 set_points_to_user_data(expr->left);
502 if (handle_struct_assignment(expr))
503 return;
505 if (!get_user_rl(expr->right, &rl))
506 goto clear_old_state;
508 rl = cast_rl(get_type(expr->left), rl);
509 set_state_expr(my_id, expr->left, alloc_estate_rl(rl));
511 return;
513 clear_old_state:
514 if (get_state_expr(my_id, expr->left))
515 set_state_expr(my_id, expr->left, alloc_estate_empty());
518 static void handle_eq_noteq(struct expression *expr)
520 struct smatch_state *left_orig, *right_orig;
522 left_orig = get_state_expr(my_id, expr->left);
523 right_orig = get_state_expr(my_id, expr->right);
525 if (!left_orig && !right_orig)
526 return;
527 if (left_orig && right_orig)
528 return;
530 if (left_orig) {
531 set_true_false_states_expr(my_id, expr->left,
532 expr->op == SPECIAL_EQUAL ? alloc_estate_empty() : NULL,
533 expr->op == SPECIAL_EQUAL ? NULL : alloc_estate_empty());
534 } else {
535 set_true_false_states_expr(my_id, expr->right,
536 expr->op == SPECIAL_EQUAL ? alloc_estate_empty() : NULL,
537 expr->op == SPECIAL_EQUAL ? NULL : alloc_estate_empty());
541 static void handle_unsigned_lt_gt(struct expression *expr)
543 struct symbol *type;
544 struct range_list *left;
545 struct range_list *right;
546 struct range_list *non_negative;
547 sval_t min, minus_one;
550 * conditions are mostly handled by smatch_extra.c. The special case
551 * here is that say you have if (user_int < unknown_u32) {
552 * In Smatch extra we say that, We have no idea what value
553 * unknown_u32 is so the only thin we can say for sure is that
554 * user_int is not -1 (UINT_MAX). But in check_user_data2.c we should
555 * assume that unless unknown_u32 is user data, it's probably less than
556 * INT_MAX.
560 type = get_type(expr);
561 if (!type_unsigned(type))
562 return;
565 * Assume if (user < trusted) { ... because I am lazy and because this
566 * is the correct way to write code.
568 if (!get_user_rl(expr->left, &left))
569 return;
570 if (get_user_rl(expr->right, &right))
571 return;
573 if (!sval_is_negative(rl_min(left)))
574 return;
575 min = rl_min(left);
576 minus_one.type = rl_type(left);
577 minus_one.value = -1;
578 non_negative = remove_range(left, min, minus_one);
580 switch (expr->op) {
581 case '<':
582 case SPECIAL_UNSIGNED_LT:
583 case SPECIAL_LTE:
584 case SPECIAL_UNSIGNED_LTE:
585 set_true_false_states_expr(my_id, expr->left,
586 alloc_estate_rl(non_negative), NULL);
587 break;
588 case '>':
589 case SPECIAL_UNSIGNED_GT:
590 case SPECIAL_GTE:
591 case SPECIAL_UNSIGNED_GTE:
592 set_true_false_states_expr(my_id, expr->left,
593 NULL, alloc_estate_rl(non_negative));
594 break;
598 static void match_condition(struct expression *expr)
600 if (expr->type != EXPR_COMPARE)
601 return;
603 if (expr->op == SPECIAL_EQUAL ||
604 expr->op == SPECIAL_NOTEQUAL) {
605 handle_eq_noteq(expr);
606 return;
609 handle_unsigned_lt_gt(expr);
612 static void match_user_assign_function(const char *fn, struct expression *expr, void *unused)
614 tag_as_user_data(expr->left);
615 set_points_to_user_data(expr->left);
618 static void match_returns_user_rl(const char *fn, struct expression *expr, void *unused)
620 func_gets_user_data = true;
623 static int get_user_macro_rl(struct expression *expr, struct range_list **rl)
625 struct expression *parent;
626 char *macro;
628 if (!expr)
629 return 0;
631 macro = get_macro_name(expr->pos);
632 if (!macro)
633 return 0;
635 /* handle ntohl(foo[i]) where "i" is trusted */
636 parent = expr_get_parent_expr(expr);
637 while (parent && parent->type != EXPR_BINOP)
638 parent = expr_get_parent_expr(parent);
639 if (parent && parent->type == EXPR_BINOP) {
640 char *parent_macro = get_macro_name(parent->pos);
642 if (parent_macro && strcmp(macro, parent_macro) == 0)
643 return 0;
646 if (strcmp(macro, "ntohl") == 0) {
647 *rl = alloc_whole_rl(&uint_ctype);
648 return 1;
650 if (strcmp(macro, "ntohs") == 0) {
651 *rl = alloc_whole_rl(&ushort_ctype);
652 return 1;
654 return 0;
657 struct db_info {
658 struct range_list *rl;
659 struct expression *call;
661 static int returned_rl_callback(void *_info, int argc, char **argv, char **azColName)
663 struct db_info *db_info = _info;
664 struct range_list *rl;
665 char *return_ranges = argv[0];
666 char *user_ranges = argv[1];
667 struct expression *arg;
668 int comparison;
670 if (argc != 2)
671 return 0;
673 call_results_to_rl(db_info->call, get_type(db_info->call), user_ranges, &rl);
674 if (str_to_comparison_arg(return_ranges, db_info->call, &comparison, &arg) &&
675 comparison == SPECIAL_EQUAL) {
676 struct range_list *orig_rl;
678 if (!get_user_rl(arg, &orig_rl))
679 return 0;
680 rl = rl_intersection(rl, orig_rl);
681 if (!rl)
682 return 0;
684 db_info->rl = rl_union(db_info->rl, rl);
686 return 0;
689 static int has_user_data(struct symbol *sym)
691 struct sm_state *tmp;
693 FOR_EACH_MY_SM(my_id, __get_cur_stree(), tmp) {
694 if (tmp->sym == sym)
695 return 1;
696 } END_FOR_EACH_SM(tmp);
697 return 0;
700 static int we_pass_user_data(struct expression *call)
702 struct expression *arg;
703 struct symbol *sym;
705 FOR_EACH_PTR(call->args, arg) {
706 sym = expr_to_sym(arg);
707 if (!sym)
708 continue;
709 if (has_user_data(sym))
710 return 1;
711 } END_FOR_EACH_PTR(arg);
713 return 0;
716 static int db_returned_user_rl(struct expression *call, struct range_list **rl)
718 struct db_info db_info = {};
720 /* for function pointers assume everything is used */
721 if (call->fn->type != EXPR_SYMBOL)
722 return 0;
723 if (is_fake_call(call))
724 return 0;
726 db_info.call = call;
727 run_sql(&returned_rl_callback, &db_info,
728 "select return, value from return_states where %s and type = %d and parameter = -1 and key = '$';",
729 get_static_filter(call->fn->symbol), USER_DATA3_SET);
730 if (db_info.rl) {
731 func_gets_user_data = true;
732 *rl = db_info.rl;
733 return 1;
736 run_sql(&returned_rl_callback, &db_info,
737 "select return, value from return_states where %s and type = %d and parameter = -1 and key = '$';",
738 get_static_filter(call->fn->symbol), USER_DATA3);
739 if (db_info.rl) {
740 if (!we_pass_user_data(call))
741 return 0;
742 *rl = db_info.rl;
743 return 1;
746 return 0;
749 struct stree *get_user_stree(void)
751 return get_all_states_stree(my_id);
754 static int user_data_flag;
755 static int no_user_data_flag;
756 static struct range_list *var_user_rl(struct expression *expr)
758 struct smatch_state *state;
759 struct range_list *rl;
760 struct range_list *absolute_rl;
762 if (expr->type == EXPR_BINOP && expr->op == '%') {
763 struct range_list *left, *right;
765 if (!get_user_rl(expr->right, &right))
766 return NULL;
767 get_absolute_rl(expr->left, &left);
768 rl = rl_binop(left, '%', right);
769 goto found;
772 if (!option_spammy && expr->type == EXPR_BINOP && expr->op == '/') {
773 struct range_list *left = NULL;
774 struct range_list *right = NULL;
775 struct range_list *abs_right;
778 * The specific bug I'm dealing with is:
780 * foo = capped_user / unknown;
782 * Instead of just saying foo is now entirely user_rl we should
783 * probably say instead that it is not at all user data.
787 get_user_rl(expr->left, &left);
788 get_user_rl(expr->right, &right);
789 get_absolute_rl(expr->right, &abs_right);
791 if (left && !right) {
792 rl = rl_binop(left, '/', abs_right);
793 if (sval_cmp(rl_max(left), rl_max(rl)) < 0)
794 no_user_data_flag = 1;
797 return NULL;
800 if (get_rl_from_function(expr, &rl))
801 goto found;
803 if (get_user_macro_rl(expr, &rl))
804 goto found;
806 if (comes_from_skb_data(expr)) {
807 rl = alloc_whole_rl(get_type(expr));
808 goto found;
811 state = get_state_expr(my_id, expr);
812 if (state && estate_rl(state)) {
813 rl = estate_rl(state);
814 goto found;
817 if (expr->type == EXPR_CALL && db_returned_user_rl(expr, &rl))
818 goto found;
820 if (is_array(expr)) {
821 struct expression *array = get_array_base(expr);
823 if (!get_state_expr(my_id, array)) {
824 no_user_data_flag = 1;
825 return NULL;
829 if (expr->type == EXPR_PREOP && expr->op == '*' &&
830 is_user_rl(expr->unop)) {
831 rl = var_to_absolute_rl(expr);
832 goto found;
835 return NULL;
836 found:
837 user_data_flag = 1;
838 absolute_rl = var_to_absolute_rl(expr);
839 return clone_rl(rl_intersection(rl, absolute_rl));
842 int get_user_rl(struct expression *expr, struct range_list **rl)
844 user_data_flag = 0;
845 no_user_data_flag = 0;
846 custom_get_absolute_rl(expr, &var_user_rl, rl);
847 if (!user_data_flag || no_user_data_flag)
848 *rl = NULL;
850 return !!*rl;
853 int get_user_rl_spammy(struct expression *expr, struct range_list **rl)
855 int ret;
857 option_spammy++;
858 ret = get_user_rl(expr, rl);
859 option_spammy--;
861 return ret;
864 int is_user_rl(struct expression *expr)
866 struct range_list *tmp;
868 return get_user_rl_spammy(expr, &tmp);
871 int get_user_rl_var_sym(const char *name, struct symbol *sym, struct range_list **rl)
873 struct smatch_state *state;
875 state = get_state(my_id, name, sym);
876 if (state && estate_rl(state)) {
877 *rl = estate_rl(state);
878 return 1;
880 return 0;
883 static void match_call_info(struct expression *expr)
885 struct range_list *rl;
886 struct expression *arg;
887 int i = 0;
889 i = -1;
890 FOR_EACH_PTR(expr->args, arg) {
891 i++;
893 if (!get_user_rl(arg, &rl))
894 continue;
896 sql_insert_caller_info(expr, USER_DATA3, i, "$", show_rl(rl));
897 } END_FOR_EACH_PTR(arg);
900 static int is_struct_ptr(struct symbol *sym)
902 struct symbol *type;
904 if (!sym)
905 return 0;
906 type = get_real_base_type(sym);
907 if (!type || type->type != SYM_PTR)
908 return 0;
909 type = get_real_base_type(type);
910 if (!type || type->type != SYM_STRUCT)
911 return 0;
912 return 1;
915 static void struct_member_callback(struct expression *call, int param, char *printed_name, struct sm_state *sm)
917 struct smatch_state *state;
918 struct range_list *rl;
920 if (strcmp(sm->state->name, "") == 0)
921 return;
923 if (strcmp(printed_name, "*$") == 0 &&
924 is_struct_ptr(sm->sym))
925 return;
927 state = get_state(SMATCH_EXTRA, sm->name, sm->sym);
928 if (!state || !estate_rl(state))
929 rl = estate_rl(sm->state);
930 else
931 rl = rl_intersection(estate_rl(sm->state), estate_rl(state));
933 sql_insert_caller_info(call, USER_DATA3, param, printed_name, show_rl(rl));
936 static void set_param_user_data(const char *name, struct symbol *sym, char *key, char *value)
938 struct range_list *rl = NULL;
939 struct smatch_state *state;
940 struct symbol *type;
941 char fullname[256];
943 if (strcmp(key, "*$") == 0)
944 snprintf(fullname, sizeof(fullname), "*%s", name);
945 else if (strncmp(key, "$", 1) == 0)
946 snprintf(fullname, 256, "%s%s", name, key + 1);
947 else
948 return;
950 type = get_member_type_from_key(symbol_expression(sym), key);
952 /* if the caller passes a void pointer with user data */
953 if (strcmp(key, "*$") == 0 && type && type != &void_ctype) {
954 struct expression *expr = symbol_expression(sym);
956 tag_as_user_data(expr);
957 set_points_to_user_data(expr);
958 return;
960 str_to_rl(type, value, &rl);
961 state = alloc_estate_rl(rl);
962 set_state(my_id, fullname, sym, state);
965 static void set_called(const char *name, struct symbol *sym, char *key, char *value)
967 set_state(my_call_id, "this_function", NULL, &called);
970 static void match_syscall_definition(struct symbol *sym)
972 struct symbol *arg;
973 char *macro;
974 char *name;
975 int is_syscall = 0;
977 macro = get_macro_name(sym->pos);
978 if (macro &&
979 (strncmp("SYSCALL_DEFINE", macro, strlen("SYSCALL_DEFINE")) == 0 ||
980 strncmp("COMPAT_SYSCALL_DEFINE", macro, strlen("COMPAT_SYSCALL_DEFINE")) == 0))
981 is_syscall = 1;
983 name = get_function();
984 if (!option_no_db && get_state(my_call_id, "this_function", NULL) != &called) {
985 if (name && strncmp(name, "sys_", 4) == 0)
986 is_syscall = 1;
989 if (name && strncmp(name, "compat_sys_", 11) == 0)
990 is_syscall = 1;
992 if (!is_syscall)
993 return;
995 FOR_EACH_PTR(sym->ctype.base_type->arguments, arg) {
996 set_state(my_id, arg->ident->name, arg, alloc_estate_whole(get_real_base_type(arg)));
997 } END_FOR_EACH_PTR(arg);
1000 static void set_to_user_data(struct expression *expr, char *key, char *value)
1002 char *name;
1003 struct symbol *sym;
1004 struct symbol *type;
1005 struct range_list *rl = NULL;
1007 type = get_member_type_from_key(expr, key);
1008 name = get_variable_from_key(expr, key, &sym);
1009 if (!name || !sym)
1010 goto free;
1012 call_results_to_rl(expr, type, value, &rl);
1014 set_state(my_id, name, sym, alloc_estate_rl(rl));
1015 free:
1016 free_string(name);
1020 static void returns_param_user_data(struct expression *expr, int param, char *key, char *value)
1022 struct expression *arg;
1023 struct expression *call;
1025 call = expr;
1026 while (call->type == EXPR_ASSIGNMENT)
1027 call = strip_expr(call->right);
1028 if (call->type != EXPR_CALL)
1029 return;
1031 if (!we_pass_user_data(call))
1032 return;
1034 if (param == -1) {
1035 if (expr->type != EXPR_ASSIGNMENT)
1036 return;
1037 set_to_user_data(expr->left, key, value);
1038 return;
1041 arg = get_argument_from_call_expr(call->args, param);
1042 if (!arg)
1043 return;
1044 set_to_user_data(arg, key, value);
1047 static void returns_param_user_data_set(struct expression *expr, int param, char *key, char *value)
1049 struct expression *arg;
1051 func_gets_user_data = true;
1053 if (param == -1) {
1054 if (expr->type != EXPR_ASSIGNMENT)
1055 return;
1056 if (strcmp(key, "*$") == 0) {
1057 set_points_to_user_data(expr->left);
1058 tag_as_user_data(expr->left);
1059 } else {
1060 set_to_user_data(expr->left, key, value);
1062 return;
1065 while (expr->type == EXPR_ASSIGNMENT)
1066 expr = strip_expr(expr->right);
1067 if (expr->type != EXPR_CALL)
1068 return;
1070 arg = get_argument_from_call_expr(expr->args, param);
1071 if (!arg)
1072 return;
1073 set_to_user_data(arg, key, value);
1076 static int has_empty_state(struct sm_state *sm)
1078 struct sm_state *tmp;
1080 FOR_EACH_PTR(sm->possible, tmp) {
1081 if (!estate_rl(tmp->state))
1082 return 1;
1083 } END_FOR_EACH_PTR(tmp);
1085 return 0;
1088 static void param_set_to_user_data(int return_id, char *return_ranges, struct expression *expr)
1090 struct sm_state *sm;
1091 struct smatch_state *start_state;
1092 struct range_list *rl;
1093 int param;
1094 char *return_str;
1095 const char *param_name;
1096 struct symbol *ret_sym;
1097 bool return_found = false;
1099 expr = strip_expr(expr);
1100 return_str = expr_to_str(expr);
1101 ret_sym = expr_to_sym(expr);
1103 FOR_EACH_MY_SM(my_id, __get_cur_stree(), sm) {
1104 if (has_empty_state(sm))
1105 continue;
1107 param = get_param_num_from_sym(sm->sym);
1108 if (param < 0)
1109 continue;
1111 /* The logic here was that if we were passed in a user data then
1112 * we don't record that. It's like the difference between
1113 * param_filter and param_set. When I think about it, I'm not
1114 * sure it actually works. It's probably harmless because we
1115 * checked earlier that we're not returning a parameter...
1116 * Let's mark this as a TODO.
1118 start_state = get_state_stree(start_states, my_id, sm->name, sm->sym);
1119 if (start_state && rl_equiv(estate_rl(sm->state), estate_rl(start_state)))
1120 continue;
1122 param_name = get_param_name(sm);
1123 if (!param_name)
1124 continue;
1125 if (strcmp(param_name, "$") == 0) /* The -1 param is handled after the loop */
1126 continue;
1128 sql_insert_return_states(return_id, return_ranges,
1129 func_gets_user_data ? USER_DATA3_SET : USER_DATA3,
1130 param, param_name, show_rl(estate_rl(sm->state)));
1131 } END_FOR_EACH_SM(sm);
1133 if (points_to_user_data(expr)) {
1134 sql_insert_return_states(return_id, return_ranges,
1135 (is_skb_data(expr) || !func_gets_user_data) ?
1136 USER_DATA3_SET : USER_DATA3,
1137 -1, "*$", "");
1138 goto free_string;
1142 FOR_EACH_MY_SM(my_id, __get_cur_stree(), sm) {
1143 if (!ret_sym)
1144 break;
1145 if (ret_sym != sm->sym)
1146 continue;
1148 param_name = state_name_to_param_name(sm->name, return_str);
1149 if (!param_name)
1150 continue;
1151 if (strcmp(param_name, "$") == 0)
1152 return_found = true;
1153 sql_insert_return_states(return_id, return_ranges,
1154 func_gets_user_data ? USER_DATA3_SET : USER_DATA3,
1155 -1, param_name, show_rl(estate_rl(sm->state)));
1156 } END_FOR_EACH_SM(sm);
1159 if (!return_found && get_user_rl(expr, &rl)) {
1160 sql_insert_return_states(return_id, return_ranges,
1161 func_gets_user_data ? USER_DATA3_SET : USER_DATA3,
1162 -1, "$", show_rl(rl));
1163 goto free_string;
1166 free_string:
1167 free_string(return_str);
1170 static struct int_stack *gets_data_stack;
1171 static void match_function_def(struct symbol *sym)
1173 func_gets_user_data = false;
1176 static void match_inline_start(struct expression *expr)
1178 push_int(&gets_data_stack, func_gets_user_data);
1181 static void match_inline_end(struct expression *expr)
1183 func_gets_user_data = pop_int(&gets_data_stack);
1186 void check_user_data2(int id)
1188 int i;
1190 my_id = id;
1192 if (option_project != PROJ_KERNEL)
1193 return;
1195 add_hook(&match_function_def, FUNC_DEF_HOOK);
1196 add_hook(&match_inline_start, INLINE_FN_START);
1197 add_hook(&match_inline_end, INLINE_FN_END);
1199 add_hook(&save_start_states, AFTER_DEF_HOOK);
1200 add_hook(&free_start_states, AFTER_FUNC_HOOK);
1201 add_hook(&match_save_states, INLINE_FN_START);
1202 add_hook(&match_restore_states, INLINE_FN_END);
1204 add_unmatched_state_hook(my_id, &empty_state);
1205 add_extra_nomod_hook(&extra_nomod_hook);
1206 add_pre_merge_hook(my_id, &pre_merge_hook);
1207 add_merge_hook(my_id, &merge_estates);
1209 add_function_hook("copy_from_user", &match_user_copy, INT_PTR(0));
1210 add_function_hook("__copy_from_user", &match_user_copy, INT_PTR(0));
1211 add_function_hook("memcpy_fromiovec", &match_user_copy, INT_PTR(0));
1212 for (i = 0; i < ARRAY_SIZE(kstr_funcs); i++)
1213 add_function_hook(kstr_funcs[i], &match_user_copy, INT_PTR(2));
1214 add_function_hook("usb_control_msg", &match_user_copy, INT_PTR(6));
1216 for (i = 0; i < ARRAY_SIZE(returns_user_data); i++) {
1217 add_function_assign_hook(returns_user_data[i], &match_user_assign_function, NULL);
1218 add_function_hook(returns_user_data[i], &match_returns_user_rl, NULL);
1221 add_function_hook("sscanf", &match_sscanf, NULL);
1223 add_hook(&match_syscall_definition, AFTER_DEF_HOOK);
1225 add_hook(&match_assign, ASSIGNMENT_HOOK);
1226 add_hook(&match_condition, CONDITION_HOOK);
1228 add_hook(&match_call_info, FUNCTION_CALL_HOOK);
1229 add_member_info_callback(my_id, struct_member_callback);
1230 select_caller_info_hook(set_param_user_data, USER_DATA3);
1231 select_return_states_hook(USER_DATA3, &returns_param_user_data);
1232 select_return_states_hook(USER_DATA3_SET, &returns_param_user_data_set);
1233 add_split_return_callback(&param_set_to_user_data);
1236 void check_user_data3(int id)
1238 my_call_id = id;
1240 if (option_project != PROJ_KERNEL)
1241 return;
1242 select_caller_info_hook(set_called, INTERNAL);