rosenberg: handle struct to struct assignments
[smatch.git] / check_allocation_funcs.c
blob5180759b1abe2eefae78278dbc4c8251193a4ac3
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 <fcntl.h>
19 #include <unistd.h>
20 #include "parse.h"
21 #include "smatch.h"
22 #include "smatch_slist.h"
24 static int my_id;
27 * Print a list of functions that return newly allocated memory.
30 static struct tracker_list *allocated;
32 static const char *allocation_funcs[] = {
33 "kmalloc",
34 "kzalloc",
35 "kcalloc",
36 NULL,
39 static void match_allocation(const char *fn, struct expression *expr,
40 void *info)
42 char *left_name;
43 struct symbol *left_sym;
45 left_name = expr_to_var_sym(expr->left, &left_sym);
46 if (!left_name || !left_sym)
47 goto free;
48 if (left_sym->ctype.modifiers &
49 (MOD_NONLOCAL | MOD_STATIC | MOD_ADDRESSABLE))
50 goto free;
51 add_tracker(&allocated, my_id, left_name, left_sym);
52 free:
53 free_string(left_name);
56 static int returns_new_stuff = 0;
57 static int returns_old_stuff = 0;
58 static void match_return(struct expression *ret_value)
60 char *name;
61 struct symbol *sym;
62 sval_t tmp;
64 if (__inline_fn)
65 return;
66 if (get_value(ret_value, &tmp) && tmp.value == 0)
67 return;
68 returns_new_stuff = 1;
69 name = expr_to_var_sym(ret_value, &sym);
70 if (!name || !sym) {
71 returns_old_stuff = 1;
72 goto free;
74 if (!in_tracker_list(allocated, my_id, name, sym))
75 returns_old_stuff = 1;
76 free:
77 free_string(name);
80 static void match_end_func(struct symbol *sym)
82 if (__inline_fn)
83 return;
84 if (returns_new_stuff && !returns_old_stuff)
85 sm_info("allocation func");
86 free_trackers_and_list(&allocated);
87 returns_new_stuff = 0;
88 returns_old_stuff = 0;
91 void check_allocation_funcs(int id)
93 int i;
95 if (!option_info || option_project != PROJ_KERNEL)
96 return;
98 my_id = id;
99 add_hook(&match_return, RETURN_HOOK);
100 add_hook(&match_end_func, END_FUNC_HOOK);
101 for (i = 0; allocation_funcs[i]; i++) {
102 add_function_assign_hook(allocation_funcs[i],
103 &match_allocation, NULL);