Documentation: make me less confused
[smatch.git] / check_deref_check.c
blob6d7ce94f45555032f0b3ee3167cb60bd1cfa7778
1 /*
2 * Copyright (C) 2009 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
18 #include "smatch.h"
19 #include "smatch_extra.h"
21 static int my_id;
23 STATE(derefed);
25 static void underef(struct sm_state *sm, struct expression *mod_expr)
27 set_state(my_id, sm->name, sm->sym, &undefined);
30 static void match_dereference(struct expression *expr)
32 if (expr->type != EXPR_PREOP)
33 return;
34 if (getting_address())
35 return;
36 expr = strip_expr(expr->unop);
37 if (!is_pointer(expr))
38 return;
39 if (implied_not_equal(expr, 0))
40 return;
42 set_state_expr(my_id, expr, &derefed);
45 static void set_param_dereferenced(struct expression *arg, char *key, char *unused)
47 struct symbol *sym;
48 char *name;
50 name = get_variable_from_key(arg, key, &sym);
51 if (!name || !sym)
52 goto free;
54 if (implied_not_equal_name_sym(name, sym, 0))
55 return;
56 set_state(my_id, name, sym, &derefed);
58 free:
59 free_string(name);
62 static void match_condition(struct expression *expr)
64 struct sm_state *sm;
66 if (__in_pre_condition)
67 return;
69 if (get_macro_name(expr->pos))
70 return;
72 sm = get_sm_state_expr(my_id, expr);
73 if (!sm || sm->state != &derefed)
74 return;
76 sm_msg("warn: variable dereferenced before check '%s' (see line %d)", sm->name, sm->line);
77 set_state_expr(my_id, expr, &undefined);
80 void check_deref_check(int id)
82 my_id = id;
83 add_hook(&match_dereference, DEREF_HOOK);
84 add_hook(&match_condition, CONDITION_HOOK);
85 select_call_implies_hook(DEREFERENCE, &set_param_dereferenced);
86 add_modification_hook(my_id, &underef);