debug: add __smatch_member_name()
[smatch.git] / check_deref.c
blob6af9a9cffc7450ca146d57be776055abc21d7a47
1 /*
2 * sparse/check_deref.c
4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
8 */
11 * There was a previous null dereference test but it was too confusing and
12 * difficult to debug. This test is much simpler in its goals and scope.
14 * This test only complains about:
15 * 1) dereferencing uninitialized variables
16 * 2) dereferencing variables which were assigned as null.
17 * 3) dereferencing variables which were assigned a function the returns
18 * null.
20 * If we dereference something then we complain if any of those three
21 * are possible.
25 #include "smatch.h"
26 #include "smatch_slist.h"
27 #include "smatch_extra.h"
29 static int my_id;
31 #define __GFP_NOFAIL 0x800
33 STATE(null);
34 STATE(ok);
35 STATE(uninitialized);
37 static struct smatch_state *alloc_my_state(const char *name)
39 struct smatch_state *state;
41 state = __alloc_smatch_state(0);
42 state->name = name;
43 return state;
46 static struct smatch_state *unmatched_state(struct sm_state *sm)
48 return &ok;
51 static void is_ok(struct sm_state *sm, struct expression *mod_expr)
53 set_state(my_id, sm->name, sm->sym, &ok);
56 static void check_dereference(struct expression *expr)
58 struct sm_state *sm;
59 struct sm_state *tmp;
61 expr = strip_expr(expr);
62 sm = get_sm_state_expr(my_id, expr);
63 if (!sm)
64 return;
65 if (is_ignored(my_id, sm->name, sm->sym))
66 return;
67 if (implied_not_equal(expr, 0))
68 return;
70 FOR_EACH_PTR(sm->possible, tmp) {
71 if (tmp->state == &merged)
72 continue;
73 if (tmp->state == &ok)
74 continue;
75 add_ignore(my_id, sm->name, sm->sym);
76 if (tmp->state == &null) {
77 if (option_spammy)
78 sm_msg("error: potential NULL dereference '%s'.", tmp->name);
79 return;
81 if (tmp->state == &uninitialized) {
82 sm_msg("error: potentially dereferencing uninitialized '%s'.", tmp->name);
83 return;
85 sm_msg("error: potential null dereference '%s'. (%s returns null)",
86 tmp->name, tmp->state->name);
87 return;
88 } END_FOR_EACH_PTR(tmp);
91 static void match_dereferences(struct expression *expr)
93 if (expr->type != EXPR_PREOP)
94 return;
95 check_dereference(expr->unop);
98 static void match_pointer_as_array(struct expression *expr)
100 if (!is_array(expr))
101 return;
102 check_dereference(expr->unop->left);
105 static void set_param_dereferenced(struct expression *arg, char *unused)
107 check_dereference(arg);
110 static void match_declarations(struct symbol *sym)
112 const char *name;
114 if ((get_base_type(sym))->type == SYM_ARRAY)
115 return;
117 if (!sym->ident)
118 return;
119 name = sym->ident->name;
120 if (!sym->initializer) {
121 set_state(my_id, name, sym, &uninitialized);
122 scoped_state(my_id, name, sym);
126 static void match_assign(struct expression *expr)
128 if (is_zero(expr->right)) {
129 set_state_expr(my_id, expr->left, &null);
130 return;
134 static void match_condition(struct expression *expr)
136 if (expr->type == EXPR_ASSIGNMENT) {
137 match_condition(expr->right);
138 match_condition(expr->left);
140 if (!get_state_expr(my_id, expr))
141 return;
142 set_true_false_states_expr(my_id, expr, &ok, NULL);
145 static int called_with_no_fail(struct expression *call, int param)
147 struct expression *arg;
148 sval_t sval;
150 if (param == -1)
151 return 0;
152 call = strip_expr(call);
153 if (call->type != EXPR_CALL)
154 return 0;
155 arg = get_argument_from_call_expr(call->args, param);
156 if (get_value(arg, &sval) && (sval.uvalue & __GFP_NOFAIL))
157 return 1;
158 return 0;
161 static void match_assign_returns_null(const char *fn, struct expression *expr, void *_gfp)
163 struct smatch_state *state;
164 int gfp_param = PTR_INT(_gfp);
166 if (called_with_no_fail(expr->right, gfp_param))
167 return;
168 state = alloc_my_state(fn);
169 set_state_expr(my_id, expr->left, state);
172 static void register_allocation_funcs(void)
174 struct token *token;
175 const char *func;
176 int arg;
178 token = get_tokens_file("kernel.allocation_funcs_gfp");
179 if (!token)
180 return;
181 if (token_type(token) != TOKEN_STREAMBEGIN)
182 return;
183 token = token->next;
184 while (token_type(token) != TOKEN_STREAMEND) {
185 if (token_type(token) != TOKEN_IDENT)
186 return;
187 func = show_ident(token->ident);
188 token = token->next;
189 if (token_type(token) == TOKEN_IDENT)
190 arg = -1;
191 else if (token_type(token) == TOKEN_NUMBER)
192 arg = atoi(token->number);
193 else
194 return;
195 add_function_assign_hook(func, &match_assign_returns_null, INT_PTR(arg));
196 token = token->next;
198 clear_token_alloc();
201 void check_deref(int id)
203 my_id = id;
205 add_unmatched_state_hook(my_id, &unmatched_state);
206 add_modification_hook(my_id, &is_ok);
207 add_hook(&match_dereferences, DEREF_HOOK);
208 add_hook(&match_pointer_as_array, OP_HOOK);
209 select_call_implies_hook(DEREFERENCE, &set_param_dereferenced);
210 add_hook(&match_condition, CONDITION_HOOK);
211 add_hook(&match_declarations, DECLARATION_HOOK);
212 add_hook(&match_assign, ASSIGNMENT_HOOK);
213 if (option_project == PROJ_KERNEL)
214 register_allocation_funcs();