db: make call_implies match caller_info with a key value pair
[smatch.git] / check_dereferences_param.c
blob4fb99a41d20c89a4b252338377c693a1af018682
1 /*
2 * Copyright (C) 2012 Oracle.
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 * This is an --info recipe. The goal is to print a message for every parameter
20 * which we can not avoid dereferencing. This is maybe a bit restrictive but it
21 * avoids some false positives.
24 #include "smatch.h"
25 #include "smatch_extra.h"
26 #include "smatch_slist.h"
28 static int my_id;
30 STATE(derefed);
31 STATE(ignore);
32 STATE(param);
34 static void set_ignore(struct sm_state *sm, struct expression *mod_expr)
36 if (sm->state == &derefed)
37 return;
38 set_state(my_id, sm->name, sm->sym, &ignore);
41 static void match_function_def(struct symbol *sym)
43 struct symbol *arg;
44 int i;
46 i = -1;
47 FOR_EACH_PTR(sym->ctype.base_type->arguments, arg) {
48 i++;
49 if (!arg->ident)
50 continue;
51 set_state(my_id, arg->ident->name, arg, &param);
52 } END_FOR_EACH_PTR(arg);
55 static void check_deref(struct expression *expr)
57 struct expression *tmp;
58 struct sm_state *sm;
60 tmp = get_assigned_expr(expr);
61 if (tmp)
62 expr = tmp;
63 expr = strip_expr(expr);
65 if (get_param_num(expr) < 0)
66 return;
68 sm = get_sm_state_expr(my_id, expr);
69 if (sm && slist_has_state(sm->possible, &ignore))
70 return;
71 set_state_expr(my_id, expr, &derefed);
74 static void match_dereference(struct expression *expr)
76 if (expr->type != EXPR_PREOP)
77 return;
78 if (getting_address())
79 return;
80 check_deref(expr->unop);
83 static void set_param_dereferenced(struct expression *arg, char *key, char *unused)
85 /* XXX FIXME: param_implies has more information now */
86 if (strcmp(key, "$$") != 0)
87 return;
88 check_deref(arg);
91 static void process_states(struct stree *stree)
93 struct symbol *arg;
94 int i;
96 i = -1;
97 FOR_EACH_PTR(cur_func_sym->ctype.base_type->arguments, arg) {
98 i++;
99 if (!arg->ident)
100 continue;
101 if (get_state_stree(stree, my_id, arg->ident->name, arg) == &derefed)
102 sql_insert_call_implies(DEREFERENCE, i, "$$", "1");
103 } END_FOR_EACH_PTR(arg);
106 void check_dereferences_param(int id)
108 my_id = id;
110 add_hook(&match_function_def, FUNC_DEF_HOOK);
112 add_hook(&match_dereference, DEREF_HOOK);
113 select_call_implies_hook(DEREFERENCE, &set_param_dereferenced);
114 add_modification_hook(my_id, &set_ignore);
116 all_return_states_hook(&process_states);