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 * check_memory() is getting too big and messy.
25 #include "smatch_slist.h"
26 #include "smatch_extra.h"
33 static void ok_to_use(struct sm_state
*sm
, struct expression
*mod_expr
)
36 set_state(my_id
, sm
->name
, sm
->sym
, &ok
);
39 static void pre_merge_hook(struct sm_state
*cur
, struct sm_state
*other
)
41 if (is_impossible_path())
42 set_state(my_id
, cur
->name
, cur
->sym
, &ok
);
45 static int is_freed(struct expression
*expr
)
49 sm
= get_sm_state_expr(my_id
, expr
);
50 if (sm
&& slist_has_state(sm
->possible
, &freed
))
55 static void match_symbol(struct expression
*expr
)
57 struct expression
*parent
;
60 if (is_impossible_path())
62 if (__in_fake_parameter_assign
)
65 parent
= expr_get_parent_expr(expr
);
66 while (parent
&& parent
->type
== EXPR_PREOP
&& parent
->op
== '(')
67 parent
= expr_get_parent_expr(parent
);
68 if (parent
&& parent
->type
== EXPR_PREOP
&& parent
->op
== '&')
73 name
= expr_to_var(expr
);
74 sm_warning("'%s' was already freed.", name
);
78 static void match_dereferences(struct expression
*expr
)
82 if (__in_fake_parameter_assign
)
85 if (expr
->type
!= EXPR_PREOP
)
88 if (is_impossible_path())
91 expr
= strip_expr(expr
->unop
);
94 name
= expr_to_var(expr
);
95 sm_error("dereferencing freed memory '%s'", name
);
96 set_state_expr(my_id
, expr
, &ok
);
100 static int ignored_params
[16];
102 static void set_ignored_params(struct expression
*call
)
104 struct expression
*arg
;
108 memset(&ignored_params
, 0, sizeof(ignored_params
));
111 FOR_EACH_PTR(call
->args
, arg
) {
113 if (arg
->type
!= EXPR_STRING
)
116 } END_FOR_EACH_PTR(arg
);
122 p
= arg
->string
->data
;
123 while ((p
= strchr(p
, '%'))) {
124 if (i
>= ARRAY_SIZE(ignored_params
))
136 ignored_params
[i
] = 1;
141 static int is_free_func(struct expression
*fn
)
146 name
= expr_to_str(fn
);
149 if (strstr(name
, "free"))
156 static void match_call(struct expression
*expr
)
158 struct expression
*arg
;
162 if (is_impossible_path())
165 set_ignored_params(expr
);
168 FOR_EACH_PTR(expr
->args
, arg
) {
170 if (!is_pointer(arg
))
174 if (ignored_params
[i
])
177 name
= expr_to_var(arg
);
178 if (is_free_func(expr
->fn
))
179 sm_error("double free of '%s'", name
);
181 sm_warning("passing freed memory '%s'", name
);
182 set_state_expr(my_id
, arg
, &ok
);
184 } END_FOR_EACH_PTR(arg
);
187 static void match_return(struct expression
*expr
)
191 if (is_impossible_path())
193 if (__in_fake_parameter_assign
)
201 name
= expr_to_var(expr
);
202 sm_warning("returning freed memory '%s'", name
);
203 set_state_expr(my_id
, expr
, &ok
);
207 static void match_free(const char *fn
, struct expression
*expr
, void *param
)
209 struct expression
*arg
;
211 if (is_impossible_path())
214 arg
= get_argument_from_call_expr(expr
->args
, PTR_INT(param
));
218 char *name
= expr_to_var(arg
);
220 sm_error("double free of '%s'", name
);
223 set_state_expr(my_id
, arg
, &freed
);
226 static void set_param_freed(struct expression
*call
, struct expression
*arg
, char *key
, char *unused
)
231 name
= get_variable_from_key(arg
, key
, &sym
);
235 set_state(my_id
, name
, sym
, &freed
);
240 int parent_is_free_var_sym(const char *name
, struct symbol
*sym
)
245 struct smatch_state
*state
;
248 if (option_project
== PROJ_KERNEL
)
249 return parent_is_free_var_sym_strict(name
, sym
);
251 strncpy(buf
, name
, sizeof(buf
) - 1);
252 buf
[sizeof(buf
) - 1] = '\0';
255 while ((*start
== '&'))
258 while ((end
= strrchr(end
, '-'))) {
261 state
= __get_state(my_id
, start
, sym
);
270 int parent_is_free(struct expression
*expr
)
276 expr
= strip_expr(expr
);
277 var
= expr_to_var_sym(expr
, &sym
);
280 ret
= parent_is_free_var_sym(var
, sym
);
286 void check_free(int id
)
290 if (option_project
== PROJ_KERNEL
) {
291 /* The kernel use check_free_strict.c */
295 add_function_hook("free", &match_free
, INT_PTR(0));
298 add_hook(&match_symbol
, SYM_HOOK
);
299 add_hook(&match_dereferences
, DEREF_HOOK
);
300 add_hook(&match_call
, FUNCTION_CALL_HOOK
);
301 add_hook(&match_return
, RETURN_HOOK
);
303 add_modification_hook(my_id
, &ok_to_use
);
304 select_return_implies_hook(PARAM_FREED
, &set_param_freed
);
305 add_pre_merge_hook(my_id
, &pre_merge_hook
);