2 * Copyright (C) 2010 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 * The point of this check is to look for leaks.
20 * foo = malloc(); // <- mark it as allocated.
21 * A variable becomes &ok if we:
22 * 1) assign it to another variable.
23 * 2) pass it to a function.
25 * One complication is dealing with stuff like:
26 * foo->bar = malloc();
27 * foo->baz = malloc();
30 * The work around is that for now what this check only
31 * checks simple expressions and doesn't check whether
40 #include "smatch_slist.h"
47 static void set_parent(struct expression
*expr
, struct smatch_state
*state
);
49 static const char *allocation_funcs
[] = {
56 static char *alloc_parent_str(struct symbol
*sym
)
60 if (!sym
|| !sym
->ident
)
63 snprintf(buf
, 255, "%s", sym
->ident
->name
);
65 return alloc_string(buf
);
68 static char *get_parent_from_expr(struct expression
*expr
, struct symbol
**sym
)
72 expr
= strip_expr(expr
);
74 name
= expr_to_str_sym(expr
, sym
);
76 if (!name
|| !*sym
|| !(*sym
)->ident
) {
80 return alloc_parent_str(*sym
);
83 static int is_local(struct expression
*expr
)
89 name
= expr_to_str_sym(expr
, &sym
);
92 if (sym
->ctype
.modifiers
& (MOD_NONLOCAL
| MOD_STATIC
| MOD_ADDRESSABLE
))
100 static int is_param(struct expression
*expr
)
107 name
= expr_to_str_sym(expr
, &sym
);
110 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, tmp
) {
115 } END_FOR_EACH_PTR(tmp
);
122 static void match_alloc(const char *fn
, struct expression
*expr
, void *unused
)
124 if (!is_local(expr
->left
))
126 if (is_param(expr
->left
))
128 if (expr
->left
->type
!= EXPR_SYMBOL
)
130 set_state_expr(my_id
, expr
->left
, &allocated
);
133 static void match_condition(struct expression
*expr
)
137 expr
= strip_expr(expr
);
139 switch (expr
->type
) {
143 sm
= get_sm_state_expr(my_id
, expr
);
144 if (sm
&& slist_has_state(sm
->possible
, &allocated
))
145 set_true_false_states_expr(my_id
, expr
, &allocated
, &ok
);
147 case EXPR_ASSIGNMENT
:
148 /* You have to deal with stuff like if (a = b = c) */
149 match_condition(expr
->left
);
156 static void set_parent(struct expression
*expr
, struct smatch_state
*state
)
161 name
= get_parent_from_expr(expr
, &sym
);
164 if (state
== &ok
&& !get_state(my_id
, name
, sym
))
166 set_state(my_id
, name
, sym
, state
);
171 static void match_function_call(struct expression
*expr
)
173 struct expression
*tmp
;
175 FOR_EACH_PTR(expr
->args
, tmp
) {
176 set_parent(tmp
, &ok
);
177 } END_FOR_EACH_PTR(tmp
);
180 static void warn_if_allocated(struct expression
*expr
)
185 sm
= get_sm_state_expr(my_id
, expr
);
188 if (!slist_has_state(sm
->possible
, &allocated
))
191 name
= expr_to_var(expr
);
192 sm_msg("warn: overwrite may leak '%s'", name
);
195 /* silence further warnings */
196 set_state_expr(my_id
, expr
, &ok
);
199 static void match_assign(struct expression
*expr
)
201 struct expression
*right
;
205 while (right
->type
== EXPR_ASSIGNMENT
)
208 warn_if_allocated(expr
->left
);
209 set_parent(right
, &ok
);
212 static void check_for_allocated(void)
214 struct state_list
*slist
;
215 struct sm_state
*tmp
;
217 slist
= get_all_states(my_id
);
218 FOR_EACH_PTR(slist
, tmp
) {
219 if (!slist_has_state(tmp
->possible
, &allocated
))
221 sm_msg("warn: possible memory leak of '%s'", tmp
->name
);
222 } END_FOR_EACH_PTR(tmp
);
226 static void match_return(struct expression
*ret_value
)
230 set_parent(ret_value
, &ok
);
231 check_for_allocated();
234 static void match_end_func(struct symbol
*sym
)
238 check_for_allocated();
241 void check_leaks(int id
)
247 for (i
= 0; i
< ARRAY_SIZE(allocation_funcs
); i
++)
248 add_function_assign_hook(allocation_funcs
[i
], &match_alloc
, NULL
);
250 add_hook(&match_condition
, CONDITION_HOOK
);
252 add_hook(&match_function_call
, FUNCTION_CALL_HOOK
);
253 add_hook(&match_assign
, ASSIGNMENT_HOOK
);
255 add_hook(&match_return
, RETURN_HOOK
);
256 add_hook(&match_end_func
, END_FUNC_HOOK
);