2 * Copyright (C) 2013 Oracle.
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 plan here is to save all the possible values store to a given struct
22 * We will load all the values in to the function_type_val table first then
23 * run a script on that and load all the resulting values into the type_val
26 * So in this file we want to take the union of everything assigned to the
27 * struct member and insert it into the function_type_val at the end.
29 * You would think that we could use smatch_modification_hooks.c or
30 * extra_modification_hook() here to get the information here but in the end we
31 * need to code everything again a third time.
36 #include "smatch_slist.h"
37 #include "smatch_extra.h"
41 struct stree_stack
*fn_type_val_stack
;
42 struct stree
*fn_type_val
;
43 struct stree
*global_type_val
;
46 static int get_vals(void *unused
, int argc
, char **argv
, char **azColName
)
48 db_vals
= alloc_string(argv
[0]);
52 static void match_inline_start(struct expression
*expr
)
54 push_stree(&fn_type_val_stack
, fn_type_val
);
58 static void match_inline_end(struct expression
*expr
)
60 free_stree(&fn_type_val
);
61 fn_type_val
= pop_stree(&fn_type_val_stack
);
64 int get_db_type_rl(struct expression
*expr
, struct range_list
**rl
)
67 struct range_list
*tmp
;
69 member
= get_member_name(expr
);
74 run_sql(get_vals
, NULL
,
75 "select value from type_value where type = '%s';", member
);
79 str_to_rl(&llong_ctype
, db_vals
, &tmp
);
80 tmp
= cast_rl(get_type(expr
), tmp
);
89 static void add_type_val(char *member
, struct range_list
*rl
)
91 struct smatch_state
*old
, *add
, *new;
93 member
= alloc_string(member
);
94 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
95 add
= alloc_estate_rl(rl
);
97 new = merge_estates(old
, add
);
100 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
103 static void add_fake_type_val(char *member
, struct range_list
*rl
, int ignore
)
105 struct smatch_state
*old
, *add
, *new;
107 member
= alloc_string(member
);
108 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
109 if (old
&& strcmp(old
->name
, "min-max") == 0)
111 if (ignore
&& old
&& strcmp(old
->name
, "ignore") == 0)
113 add
= alloc_estate_rl(rl
);
115 new = merge_estates(old
, add
);
119 new->name
= alloc_string("ignore");
121 new->name
= alloc_string("min-max");
123 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
126 static void add_global_type_val(char *member
, struct range_list
*rl
)
128 struct smatch_state
*old
, *add
, *new;
130 member
= alloc_string(member
);
131 old
= get_state_stree(global_type_val
, my_id
, member
, NULL
);
132 add
= alloc_estate_rl(rl
);
134 new = merge_estates(old
, add
);
137 new = clone_estate_perm(new);
138 set_state_stree_perm(&global_type_val
, my_id
, member
, NULL
, new);
141 static int has_link_cb(void *has_link
, int argc
, char **argv
, char **azColName
)
143 *(int *)has_link
= 1;
147 static int is_ignored_fake_assignment(void)
149 struct expression
*expr
;
154 expr
= get_faked_expression();
155 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
157 if (!is_void_pointer(expr
->right
))
159 member_name
= get_member_name(expr
->right
);
163 type
= get_type(expr
->left
);
164 if (!type
|| type
->type
!= SYM_PTR
)
166 type
= get_real_base_type(type
);
167 if (!type
|| type
->type
!= SYM_STRUCT
)
170 run_sql(has_link_cb
, &has_link
,
171 "select * from data_info where type = %d and data = '%s' and value = '%s';",
172 TYPE_LINK
, member_name
, type_to_str(type
));
176 static int is_ignored_macro(void)
178 struct expression
*expr
;
181 expr
= get_faked_expression();
182 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
184 name
= get_macro_name(expr
->right
->pos
);
187 if (strcmp(name
, "container_of") == 0)
189 if (strcmp(name
, "rb_entry") == 0)
191 if (strcmp(name
, "list_entry") == 0)
193 if (strcmp(name
, "list_first_entry") == 0)
195 if (strcmp(name
, "hlist_entry") == 0)
197 if (strstr(name
, "for_each"))
202 static int is_ignored_function(void)
204 struct expression
*expr
;
206 expr
= get_faked_expression();
207 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
209 expr
= strip_expr(expr
->right
);
210 if (!expr
|| expr
->type
!= EXPR_CALL
|| expr
->fn
->type
!= EXPR_SYMBOL
)
213 if (sym_name_is("kmalloc", expr
->fn
))
215 if (sym_name_is("netdev_priv", expr
->fn
))
221 static int is_uncasted_function(void)
223 struct expression
*expr
;
225 expr
= get_faked_expression();
226 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
228 if (expr
->right
->type
== EXPR_CALL
)
233 static void match_assign_value(struct expression
*expr
)
235 char *member
, *right_member
;
236 struct range_list
*rl
;
239 type
= get_type(expr
->left
);
240 if (type
&& type
->type
== SYM_STRUCT
)
243 member
= get_member_name(expr
->left
);
247 /* if we're saying foo->mtu = bar->mtu then that doesn't add information */
248 right_member
= get_member_name(expr
->right
);
249 if (right_member
&& strcmp(right_member
, member
) == 0)
252 if (is_fake_call(expr
->right
)) {
253 if (is_ignored_macro())
255 if (is_ignored_function())
257 if (is_uncasted_function())
259 add_fake_type_val(member
, alloc_whole_rl(get_type(expr
->left
)), is_ignored_fake_assignment());
263 if (expr
->op
!= '=') {
264 add_type_val(member
, alloc_whole_rl(get_type(expr
->left
)));
267 get_absolute_rl(expr
->right
, &rl
);
268 rl
= cast_rl(type
, rl
);
269 add_type_val(member
, rl
);
271 free_string(right_member
);
276 * If we too: int *p = &my_struct->member then abandon all hope of tracking
279 static void match_assign_pointer(struct expression
*expr
)
281 struct expression
*right
;
283 struct range_list
*rl
;
286 right
= strip_expr(expr
->right
);
287 if (right
->type
!= EXPR_PREOP
|| right
->op
!= '&')
289 right
= strip_expr(right
->unop
);
291 member
= get_member_name(right
);
294 type
= get_type(right
);
295 rl
= alloc_whole_rl(type
);
296 add_type_val(member
, rl
);
300 static void match_global_assign(struct expression
*expr
)
303 struct range_list
*rl
;
305 member
= get_member_name(expr
->left
);
308 get_absolute_rl(expr
->right
, &rl
);
309 add_global_type_val(member
, rl
);
313 static void unop_expr(struct expression
*expr
)
315 struct range_list
*rl
;
318 if (expr
->op
!= SPECIAL_DECREMENT
&& expr
->op
!= SPECIAL_INCREMENT
)
321 expr
= strip_expr(expr
->unop
);
322 member
= get_member_name(expr
);
325 rl
= alloc_whole_rl(get_type(expr
));
326 add_type_val(member
, rl
);
330 static void asm_expr(struct statement
*stmt
)
332 struct expression
*expr
;
333 struct range_list
*rl
;
337 FOR_EACH_PTR(stmt
->asm_outputs
, expr
) {
339 case 0: /* identifier */
340 case 1: /* constraint */
343 case 2: /* expression */
345 member
= get_member_name(expr
);
348 rl
= alloc_whole_rl(get_type(expr
));
349 add_type_val(member
, rl
);
353 } END_FOR_EACH_PTR(expr
);
356 static void db_param_add(struct expression
*expr
, int param
, char *key
, char *value
)
358 struct expression
*arg
;
360 struct range_list
*rl
;
363 if (strcmp(key
, "*$") != 0)
366 while (expr
->type
== EXPR_ASSIGNMENT
)
367 expr
= strip_expr(expr
->right
);
368 if (expr
->type
!= EXPR_CALL
)
371 arg
= get_argument_from_call_expr(expr
->args
, param
);
372 arg
= strip_expr(arg
);
375 type
= get_member_type_from_key(arg
, key
);
376 if (arg
->type
!= EXPR_PREOP
|| arg
->op
!= '&')
378 arg
= strip_expr(arg
->unop
);
380 member
= get_member_name(arg
);
383 call_results_to_rl(expr
, type
, value
, &rl
);
384 add_type_val(member
, rl
);
388 static void match_end_func_info(struct symbol
*sym
)
392 FOR_EACH_SM(fn_type_val
, sm
) {
393 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
394 } END_FOR_EACH_SM(sm
);
396 free_stree(&fn_type_val
);
399 static void match_end_file(struct symbol_list
*sym_list
)
403 FOR_EACH_SM(global_type_val
, sm
) {
404 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
405 } END_FOR_EACH_SM(sm
);
408 void register_type_val(int id
)
415 add_hook(&match_assign_value
, ASSIGNMENT_HOOK
);
416 add_hook(&match_assign_pointer
, ASSIGNMENT_HOOK
);
417 add_hook(&unop_expr
, OP_HOOK
);
418 add_hook(&asm_expr
, ASM_HOOK
);
419 select_return_states_hook(PARAM_ADD
, &db_param_add
);
420 select_return_states_hook(PARAM_SET
, &db_param_add
);
423 add_hook(&match_inline_start
, INLINE_FN_START
);
424 add_hook(&match_inline_end
, INLINE_FN_END
);
426 add_hook(&match_end_func_info
, END_FUNC_HOOK
);
428 add_hook(&match_global_assign
, GLOBAL_ASSIGNMENT_HOOK
);
429 add_hook(&match_end_file
, END_FILE_HOOK
);