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 static int no_type_vals
;
43 struct stree
*fn_type_val
;
44 struct stree
*global_type_val
;
46 void disable_type_val_lookups(void)
51 void enable_type_val_lookups(void)
56 static int get_vals(void *_db_vals
, int argc
, char **argv
, char **azColName
)
58 char **db_vals
= _db_vals
;
60 *db_vals
= alloc_string(argv
[0]);
65 struct expression
*expr
;
66 struct range_list
*rl
;
68 static struct expr_rl cached_results
[24];
71 static int get_cached(struct expression
*expr
, struct range_list
**rl
, int *ret
)
77 for (i
= 0; i
< ARRAY_SIZE(cached_results
); i
++) {
78 if (expr
== cached_results
[i
].expr
) {
79 if (cached_results
[i
].rl
) {
80 *rl
= clone_rl(cached_results
[i
].rl
);
90 int get_db_type_rl(struct expression
*expr
, struct range_list
**rl
)
94 struct range_list
*tmp
;
98 if (get_cached(expr
, rl
, &ret
))
104 member
= get_member_name(expr
);
108 res_idx
= (res_idx
+ 1) % ARRAY_SIZE(cached_results
);
109 cached_results
[res_idx
].expr
= expr
;
110 cached_results
[res_idx
].rl
= NULL
;
112 run_sql(get_vals
, &db_vals
,
113 "select value from type_value where type = '%s';", member
);
116 type
= get_type(expr
);
117 str_to_rl(type
, db_vals
, &tmp
);
118 free_string(db_vals
);
119 if (is_whole_rl(tmp
))
123 cached_results
[res_idx
].rl
= clone_rl(tmp
);
128 static void add_type_val(char *member
, struct range_list
*rl
)
130 struct smatch_state
*old
, *add
, *new;
132 member
= alloc_string(member
);
133 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
134 add
= alloc_estate_rl(rl
);
136 new = merge_estates(old
, add
);
139 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
142 static void add_fake_type_val(char *member
, struct range_list
*rl
, int ignore
)
144 struct smatch_state
*old
, *add
, *new;
146 member
= alloc_string(member
);
147 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
148 if (old
&& strcmp(old
->name
, "min-max") == 0)
150 if (ignore
&& old
&& strcmp(old
->name
, "ignore") == 0)
152 add
= alloc_estate_rl(rl
);
154 new = merge_estates(old
, add
);
158 new->name
= alloc_string("ignore");
160 new->name
= alloc_string("min-max");
162 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
165 static void add_global_type_val(char *member
, struct range_list
*rl
)
167 struct smatch_state
*old
, *add
, *new;
169 member
= alloc_string(member
);
170 old
= get_state_stree(global_type_val
, my_id
, member
, NULL
);
171 add
= alloc_estate_rl(rl
);
173 new = merge_estates(old
, add
);
176 new = clone_estate_perm(new);
177 set_state_stree_perm(&global_type_val
, my_id
, member
, NULL
, new);
180 static int has_link_cb(void *has_link
, int argc
, char **argv
, char **azColName
)
182 *(int *)has_link
= 1;
186 static int is_ignored_fake_assignment(void)
188 struct expression
*expr
;
193 expr
= get_faked_expression();
194 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
196 if (!is_void_pointer(expr
->right
))
198 member_name
= get_member_name(expr
->right
);
202 type
= get_type(expr
->left
);
203 if (!type
|| type
->type
!= SYM_PTR
)
205 type
= get_real_base_type(type
);
206 if (!type
|| type
->type
!= SYM_STRUCT
)
209 run_sql(has_link_cb
, &has_link
,
210 "select * from data_info where type = %d and data = '%s' and value = '%s';",
211 TYPE_LINK
, member_name
, type_to_str(type
));
215 static int is_container_of(void)
217 /* We already check the macro name in is_ignored_macro() */
218 struct expression
*expr
;
221 expr
= get_faked_expression();
222 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
225 offset
= get_offset_from_container_of(expr
->right
);
231 static bool is_driver_data(void)
233 static struct expression
*prev_expr
;
234 struct expression
*expr
;
236 static bool prev_ret
;
239 expr
= get_faked_expression();
240 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
243 if (expr
== prev_expr
)
247 name
= expr_to_str(expr
->right
);
253 if (strstr(name
, "get_drvdata(") ||
254 strstr(name
, "dev.driver_data") ||
255 strstr(name
, "dev->driver_data"))
264 static int is_ignored_macro(void)
266 struct expression
*expr
;
269 expr
= get_faked_expression();
270 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
|| expr
->op
!= '=')
272 name
= get_macro_name(expr
->right
->pos
);
275 if (strcmp(name
, "container_of") == 0)
277 if (strcmp(name
, "rb_entry") == 0)
279 if (strcmp(name
, "list_entry") == 0)
281 if (strcmp(name
, "list_first_entry") == 0)
283 if (strcmp(name
, "hlist_entry") == 0)
285 if (strcmp(name
, "per_cpu_ptr") == 0)
287 if (strcmp(name
, "raw_cpu_ptr") == 0)
289 if (strcmp(name
, "this_cpu_ptr") == 0)
292 if (strcmp(name
, "TRACE_EVENT") == 0)
294 if (strcmp(name
, "DECLARE_EVENT_CLASS") == 0)
296 if (strcmp(name
, "DEFINE_EVENT") == 0)
299 if (strstr(name
, "for_each"))
304 static int is_ignored_function(void)
306 struct expression
*expr
;
308 expr
= get_faked_expression();
309 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
311 expr
= strip_expr(expr
->right
);
312 if (!expr
|| expr
->type
!= EXPR_CALL
|| expr
->fn
->type
!= EXPR_SYMBOL
)
315 if (sym_name_is("kmalloc", expr
->fn
))
317 if (sym_name_is("vmalloc", expr
->fn
))
319 if (sym_name_is("kvmalloc", expr
->fn
))
321 if (sym_name_is("kmalloc_array", expr
->fn
))
323 if (sym_name_is("vmalloc_array", expr
->fn
))
325 if (sym_name_is("kvmalloc_array", expr
->fn
))
328 if (sym_name_is("mmu_memory_cache_alloc", expr
->fn
))
330 if (sym_name_is("kmem_alloc", expr
->fn
))
332 if (sym_name_is("alloc_pages", expr
->fn
))
335 if (sym_name_is("netdev_priv", expr
->fn
))
337 if (sym_name_is("dev_get_drvdata", expr
->fn
))
339 if (sym_name_is("i2c_get_clientdata", expr
->fn
))
341 if (sym_name_is("idr_find", expr
->fn
))
347 static int is_uncasted_pointer_assign(void)
349 struct expression
*expr
;
350 struct symbol
*left_type
, *right_type
;
352 expr
= get_faked_expression();
355 if (expr
->type
== EXPR_PREOP
|| expr
->type
== EXPR_POSTOP
) {
356 if (expr
->op
== SPECIAL_INCREMENT
|| expr
->op
== SPECIAL_DECREMENT
)
359 if (expr
->type
!= EXPR_ASSIGNMENT
)
361 left_type
= get_type(expr
->left
);
362 right_type
= get_type(expr
->right
);
364 if (!left_type
|| !right_type
)
367 if (left_type
->type
== SYM_STRUCT
&& left_type
== right_type
)
370 if (left_type
->type
!= SYM_PTR
&&
371 left_type
->type
!= SYM_ARRAY
)
373 if (right_type
->type
!= SYM_PTR
&&
374 right_type
->type
!= SYM_ARRAY
)
376 left_type
= get_real_base_type(left_type
);
377 right_type
= get_real_base_type(right_type
);
379 if (left_type
== right_type
)
384 static int set_param_type(void *_type_str
, int argc
, char **argv
, char **azColName
)
386 char **type_str
= _type_str
;
387 static char type_buf
[128];
390 if (strcmp(*type_str
, argv
[0]) == 0)
392 strncpy(type_buf
, "unknown", sizeof(type_buf
));
395 strncpy(type_buf
, argv
[0], sizeof(type_buf
));
396 *type_str
= type_buf
;
401 static char *db_get_parameter_type(int param
)
408 run_sql(set_param_type
, &ret
,
409 "select value from fn_data_link where "
410 "file = 0x%llx and function = '%s' and static = %d and type = %d and parameter = %d and key = '$';",
411 (cur_func_sym
->ctype
.modifiers
& MOD_STATIC
) ? get_base_file_id() : 0,
412 cur_func_sym
->ident
->name
,
413 !!(cur_func_sym
->ctype
.modifiers
& MOD_STATIC
),
419 static int is_uncasted_fn_param_from_db(void)
421 struct expression
*expr
, *right
;
422 struct symbol
*left_type
;
423 char left_type_name
[128];
425 char *right_type_name
;
426 static struct expression
*prev_expr
;
429 expr
= get_faked_expression();
431 if (expr
== prev_expr
)
436 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
438 left_type
= get_type(expr
->left
);
439 if (!left_type
|| left_type
->type
!= SYM_PTR
)
441 left_type
= get_real_base_type(left_type
);
442 if (!left_type
|| left_type
->type
!= SYM_STRUCT
)
444 snprintf(left_type_name
, sizeof(left_type_name
), "%s", type_to_str(left_type
));
446 right
= strip_expr(expr
->right
);
447 param
= get_param_num(right
);
450 right_type_name
= db_get_parameter_type(param
);
451 if (!right_type_name
)
454 if (strcmp(right_type_name
, left_type_name
) == 0) {
462 static void match_assign_value(struct expression
*expr
)
464 char *member
, *right_member
;
465 struct range_list
*rl
;
471 type
= get_type(expr
->left
);
472 if (type
&& type
->type
== SYM_STRUCT
)
474 member
= get_member_name(expr
->left
);
478 /* if we're saying foo->mtu = bar->mtu then that doesn't add information */
479 right_member
= get_member_name(expr
->right
);
480 if (right_member
&& strcmp(right_member
, member
) == 0)
483 if (is_fake_call(expr
->right
)) {
484 if (is_ignored_macro())
486 if (is_ignored_function())
488 if (is_uncasted_pointer_assign())
490 if (is_uncasted_fn_param_from_db())
492 if (is_container_of())
494 if (is_driver_data())
496 add_fake_type_val(member
, alloc_whole_rl(get_type(expr
->left
)), is_ignored_fake_assignment());
500 if (expr
->op
== '=') {
501 get_absolute_rl(expr
->right
, &rl
);
502 rl
= cast_rl(type
, rl
);
505 * This is a bit cheating. We order it so this will already be set
506 * by smatch_extra.c and we just look up the value.
508 get_absolute_rl(expr
->left
, &rl
);
510 add_type_val(member
, rl
);
514 * If we too: int *p = &my_struct->member then abandon all hope of tracking
517 static void match_assign_pointer(struct expression
*expr
)
519 struct expression
*right
;
521 struct range_list
*rl
;
524 right
= strip_expr(expr
->right
);
525 if (right
->type
!= EXPR_PREOP
|| right
->op
!= '&')
527 right
= strip_expr(right
->unop
);
529 member
= get_member_name(right
);
532 type
= get_type(right
);
533 rl
= alloc_whole_rl(type
);
534 add_type_val(member
, rl
);
537 static void match_global_assign(struct expression
*expr
)
540 struct range_list
*rl
;
543 type
= get_type(expr
->left
);
544 if (type
&& (type
->type
== SYM_ARRAY
|| type
->type
== SYM_STRUCT
))
546 member
= get_member_name(expr
->left
);
549 get_absolute_rl(expr
->right
, &rl
);
550 rl
= cast_rl(type
, rl
);
551 add_global_type_val(member
, rl
);
554 static void unop_expr(struct expression
*expr
)
556 struct range_list
*rl
;
559 if (expr
->op
!= SPECIAL_DECREMENT
&& expr
->op
!= SPECIAL_INCREMENT
)
562 expr
= strip_expr(expr
->unop
);
563 member
= get_member_name(expr
);
566 rl
= alloc_whole_rl(get_type(expr
));
567 add_type_val(member
, rl
);
570 static void asm_expr(struct statement
*stmt
)
572 struct asm_operand
*op
;
573 struct range_list
*rl
;
576 FOR_EACH_PTR(stmt
->asm_outputs
, op
) {
577 member
= get_member_name(op
->expr
);
580 rl
= alloc_whole_rl(get_type(op
->expr
));
581 add_type_val(member
, rl
);
582 } END_FOR_EACH_PTR(op
);
585 static void db_param_add(struct expression
*expr
, int param
, char *key
, char *value
)
587 struct expression
*arg
;
589 struct range_list
*rl
;
592 if (strcmp(key
, "*$") != 0)
595 while (expr
->type
== EXPR_ASSIGNMENT
)
596 expr
= strip_expr(expr
->right
);
597 if (expr
->type
!= EXPR_CALL
)
600 arg
= get_argument_from_call_expr(expr
->args
, param
);
601 arg
= strip_expr(arg
);
604 type
= get_member_type_from_key(arg
, key
);
606 * The situation here is that say we memset() a void pointer to zero
607 * then that's returned to the called as "*$ = 0;" but on the caller's
608 * side it's not void, it's a struct.
610 * So the question is should we be passing that slightly bogus
611 * information back to the caller? Maybe, maybe not, but either way we
612 * are not going to record it here because a struct can't be zero.
615 if (type
&& type
->type
== SYM_STRUCT
)
618 if (arg
->type
!= EXPR_PREOP
|| arg
->op
!= '&')
620 arg
= strip_expr(arg
->unop
);
622 member
= get_member_name(arg
);
625 call_results_to_rl(expr
, type
, value
, &rl
);
626 add_type_val(member
, rl
);
629 static void match_end_func_info(struct symbol
*sym
)
633 FOR_EACH_SM(fn_type_val
, sm
) {
634 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
635 } END_FOR_EACH_SM(sm
);
638 void clear_type_value_cache(void)
640 memset(cached_results
, 0, sizeof(cached_results
));
643 static void match_after_func(struct symbol
*sym
)
645 free_stree(&fn_type_val
);
648 static void match_end_file(struct symbol_list
*sym_list
)
652 FOR_EACH_SM(global_type_val
, sm
) {
653 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
654 } END_FOR_EACH_SM(sm
);
657 void register_type_val(int id
)
664 add_hook(&match_assign_value
, ASSIGNMENT_HOOK_AFTER
);
665 add_hook(&match_assign_pointer
, ASSIGNMENT_HOOK
);
666 add_hook(&unop_expr
, OP_HOOK
);
667 add_hook(&asm_expr
, ASM_HOOK
);
668 select_return_states_hook(PARAM_ADD
, &db_param_add
);
669 select_return_states_hook(PARAM_SET
, &db_param_add
);
672 add_function_data((unsigned long *)&fn_type_val
);
674 add_hook(&match_end_func_info
, END_FUNC_HOOK
);
675 add_hook(&match_after_func
, AFTER_FUNC_HOOK
);
677 add_hook(&match_global_assign
, GLOBAL_ASSIGNMENT_HOOK
);
678 add_hook(&match_end_file
, END_FILE_HOOK
);