*new* check_macros: find macro precedence bugs
[smatch.git] / check_check_deref.c
blob644f6ed7fd539702afa5ce70d942f352991678d3
1 /*
2 * sparse/check_check_deref.c
4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
8 */
11 * This is like check_deref_check.c except that it complains about code like:
12 * if (a)
13 * a->foo = 42;
14 * a->bar = 7;
16 * Of course, Smatch has complained about these for forever but the problem is
17 * the old scripts were too messy and complicated and generated too many false
18 * positives.
20 * This check is supposed to be simpler because it only looks for one kind of
21 * null dereference bug instead of every kind. It also gets rid of the false
22 * positives caused by the checks that happen inside macros.
26 #include "smatch.h"
27 #include "smatch_slist.h"
28 #include "smatch_extra.h"
30 static int my_id;
32 STATE(null);
33 STATE(ok);
35 static void is_ok(const char *name, struct symbol *sym, struct expression *expr, void *unused)
37 set_state(my_id, name, sym, &ok);
40 static void check_dereference(struct expression *expr)
42 struct sm_state *sm;
43 struct sm_state *tmp;
45 expr = strip_expr(expr);
46 if (getting_address())
47 return;
48 sm = get_sm_state_expr(my_id, expr);
49 if (!sm)
50 return;
51 if (is_ignored(my_id, sm->name, sm->sym))
52 return;
53 if (implied_not_equal(expr, 0))
54 return;
56 FOR_EACH_PTR(sm->possible, tmp) {
57 if (tmp->state == &merged)
58 continue;
59 if (tmp->state == &ok)
60 continue;
61 if (tmp->state == &null) {
62 sm_msg("error: we previously assumed '%s' could be null.", tmp->name);
63 add_ignore(my_id, sm->name, sm->sym);
64 return;
66 } END_FOR_EACH_PTR(tmp);
69 static void match_dereferences(struct expression *expr)
71 if (expr->type != EXPR_PREOP)
72 return;
73 check_dereference(expr->unop);
76 static void match_pointer_as_array(struct expression *expr)
78 if (!is_array(expr))
79 return;
80 check_dereference(expr->unop->left);
83 static void match_condition(struct expression *expr)
85 if (get_macro_name(&expr->pos))
86 return;
88 if (expr->type == EXPR_ASSIGNMENT) {
89 match_condition(expr->right);
90 match_condition(expr->left);
92 set_true_false_states_expr(my_id, expr, &ok, &null);
95 void check_check_deref(int id)
97 my_id = id;
99 set_default_modification_hook(my_id, &is_ok);
100 add_hook(&match_dereferences, DEREF_HOOK);
101 add_hook(&match_pointer_as_array, OP_HOOK);
102 add_hook(&match_condition, CONDITION_HOOK);