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
);
117 type
= get_type(expr
);
118 str_to_rl(type
, db_vals
, &tmp
);
119 free_string(db_vals
);
120 if (is_whole_rl(tmp
))
124 cached_results
[res_idx
].rl
= clone_rl(tmp
);
129 static void add_type_val(char *member
, struct range_list
*rl
)
131 struct smatch_state
*old
, *add
, *new;
133 member
= alloc_string(member
);
134 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
135 add
= alloc_estate_rl(rl
);
137 new = merge_estates(old
, add
);
140 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
143 static void add_fake_type_val(char *member
, struct range_list
*rl
, int ignore
)
145 struct smatch_state
*old
, *add
, *new;
147 member
= alloc_string(member
);
148 old
= get_state_stree(fn_type_val
, my_id
, member
, NULL
);
149 if (old
&& strcmp(old
->name
, "min-max") == 0)
151 if (ignore
&& old
&& strcmp(old
->name
, "ignore") == 0)
153 add
= alloc_estate_rl(rl
);
155 new = merge_estates(old
, add
);
159 new->name
= alloc_string("ignore");
161 new->name
= alloc_string("min-max");
163 set_state_stree(&fn_type_val
, my_id
, member
, NULL
, new);
166 static void add_global_type_val(char *member
, struct range_list
*rl
)
168 struct smatch_state
*old
, *add
, *new;
170 member
= alloc_string(member
);
171 old
= get_state_stree(global_type_val
, my_id
, member
, NULL
);
172 add
= alloc_estate_rl(rl
);
174 new = merge_estates(old
, add
);
177 new = clone_estate_perm(new);
178 set_state_stree_perm(&global_type_val
, my_id
, member
, NULL
, new);
181 static int has_link_cb(void *has_link
, int argc
, char **argv
, char **azColName
)
183 *(int *)has_link
= 1;
187 static int is_ignored_fake_assignment(void)
189 struct expression
*expr
;
194 expr
= get_faked_expression();
195 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
197 if (!is_void_pointer(expr
->right
))
199 member_name
= get_member_name(expr
->right
);
203 type
= get_type(expr
->left
);
204 if (!type
|| type
->type
!= SYM_PTR
)
206 type
= get_real_base_type(type
);
207 if (!type
|| type
->type
!= SYM_STRUCT
)
210 run_sql(has_link_cb
, &has_link
,
211 "select * from data_info where type = %d and data = '%s' and value = '%s';",
212 TYPE_LINK
, member_name
, type_to_str(type
));
216 static int is_container_of(void)
218 /* We already check the macro name in is_ignored_macro() */
219 struct expression
*expr
;
222 expr
= get_faked_expression();
223 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
226 offset
= get_offset_from_container_of(expr
->right
);
232 static bool is_driver_data(void)
234 static struct expression
*prev_expr
;
235 struct expression
*expr
;
237 static bool prev_ret
;
240 expr
= get_faked_expression();
241 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
244 if (expr
== prev_expr
)
248 name
= expr_to_str(expr
->right
);
254 if (strstr(name
, "get_drvdata(") ||
255 strstr(name
, "dev.driver_data") ||
256 strstr(name
, "dev->driver_data"))
265 static int is_ignored_macro(void)
267 struct expression
*expr
;
270 expr
= get_faked_expression();
271 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
|| expr
->op
!= '=')
273 name
= get_macro_name(expr
->right
->pos
);
276 if (strcmp(name
, "container_of") == 0)
278 if (strcmp(name
, "rb_entry") == 0)
280 if (strcmp(name
, "list_entry") == 0)
282 if (strcmp(name
, "list_first_entry") == 0)
284 if (strcmp(name
, "hlist_entry") == 0)
286 if (strcmp(name
, "per_cpu_ptr") == 0)
288 if (strcmp(name
, "raw_cpu_ptr") == 0)
290 if (strcmp(name
, "this_cpu_ptr") == 0)
293 if (strcmp(name
, "TRACE_EVENT") == 0)
295 if (strcmp(name
, "DECLARE_EVENT_CLASS") == 0)
297 if (strcmp(name
, "DEFINE_EVENT") == 0)
300 if (strstr(name
, "for_each"))
305 static int is_ignored_function(void)
307 struct expression
*expr
;
309 expr
= get_faked_expression();
310 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
312 expr
= strip_expr(expr
->right
);
313 if (!expr
|| expr
->type
!= EXPR_CALL
|| expr
->fn
->type
!= EXPR_SYMBOL
)
316 if (sym_name_is("kmalloc", expr
->fn
))
318 if (sym_name_is("vmalloc", expr
->fn
))
320 if (sym_name_is("kvmalloc", expr
->fn
))
322 if (sym_name_is("kmalloc_array", expr
->fn
))
324 if (sym_name_is("vmalloc_array", expr
->fn
))
326 if (sym_name_is("kvmalloc_array", expr
->fn
))
329 if (sym_name_is("mmu_memory_cache_alloc", expr
->fn
))
331 if (sym_name_is("kmem_alloc", expr
->fn
))
333 if (sym_name_is("alloc_pages", expr
->fn
))
336 if (sym_name_is("netdev_priv", expr
->fn
))
338 if (sym_name_is("dev_get_drvdata", expr
->fn
))
340 if (sym_name_is("i2c_get_clientdata", expr
->fn
))
342 if (sym_name_is("idr_find", expr
->fn
))
348 static int is_uncasted_pointer_assign(void)
350 struct expression
*expr
;
351 struct symbol
*left_type
, *right_type
;
353 expr
= get_faked_expression();
356 if (expr
->type
== EXPR_PREOP
|| expr
->type
== EXPR_POSTOP
) {
357 if (expr
->op
== SPECIAL_INCREMENT
|| expr
->op
== SPECIAL_DECREMENT
)
360 if (expr
->type
!= EXPR_ASSIGNMENT
)
362 left_type
= get_type(expr
->left
);
363 right_type
= get_type(expr
->right
);
365 if (!left_type
|| !right_type
)
368 if (left_type
->type
== SYM_STRUCT
&& left_type
== right_type
)
371 if (left_type
->type
!= SYM_PTR
&&
372 left_type
->type
!= SYM_ARRAY
)
374 if (right_type
->type
!= SYM_PTR
&&
375 right_type
->type
!= SYM_ARRAY
)
377 left_type
= get_real_base_type(left_type
);
378 right_type
= get_real_base_type(right_type
);
380 if (left_type
== right_type
)
385 static int set_param_type(void *_type_str
, int argc
, char **argv
, char **azColName
)
387 char **type_str
= _type_str
;
388 static char type_buf
[128];
391 if (strcmp(*type_str
, argv
[0]) == 0)
393 strncpy(type_buf
, "unknown", sizeof(type_buf
));
396 strncpy(type_buf
, argv
[0], sizeof(type_buf
));
397 *type_str
= type_buf
;
402 static char *db_get_parameter_type(int param
)
409 run_sql(set_param_type
, &ret
,
410 "select value from fn_data_link where "
411 "file = 0x%llx and function = '%s' and static = %d and type = %d and parameter = %d and key = '$';",
412 (cur_func_sym
->ctype
.modifiers
& MOD_STATIC
) ? get_base_file_id() : 0,
413 cur_func_sym
->ident
->name
,
414 !!(cur_func_sym
->ctype
.modifiers
& MOD_STATIC
),
420 static int is_uncasted_fn_param_from_db(void)
422 struct expression
*expr
, *right
;
423 struct symbol
*left_type
;
424 char left_type_name
[128];
426 char *right_type_name
;
427 static struct expression
*prev_expr
;
430 expr
= get_faked_expression();
432 if (expr
== prev_expr
)
437 if (!expr
|| expr
->type
!= EXPR_ASSIGNMENT
)
439 left_type
= get_type(expr
->left
);
440 if (!left_type
|| left_type
->type
!= SYM_PTR
)
442 left_type
= get_real_base_type(left_type
);
443 if (!left_type
|| left_type
->type
!= SYM_STRUCT
)
445 snprintf(left_type_name
, sizeof(left_type_name
), "%s", type_to_str(left_type
));
447 right
= strip_expr(expr
->right
);
448 param
= get_param_num(right
);
451 right_type_name
= db_get_parameter_type(param
);
452 if (!right_type_name
)
455 if (strcmp(right_type_name
, left_type_name
) == 0) {
463 static void match_assign_value(struct expression
*expr
)
465 char *member
, *right_member
;
466 struct range_list
*rl
;
472 type
= get_type(expr
->left
);
473 if (type
&& type
->type
== SYM_STRUCT
)
475 member
= get_member_name(expr
->left
);
479 /* if we're saying foo->mtu = bar->mtu then that doesn't add information */
480 right_member
= get_member_name(expr
->right
);
481 if (right_member
&& strcmp(right_member
, member
) == 0)
484 if (is_fake_call(expr
->right
)) {
485 if (is_ignored_macro())
487 if (is_ignored_function())
489 if (is_uncasted_pointer_assign())
491 if (is_uncasted_fn_param_from_db())
493 if (is_container_of())
495 if (is_driver_data())
497 add_fake_type_val(member
, alloc_whole_rl(get_type(expr
->left
)), is_ignored_fake_assignment());
501 if (expr
->op
== '=') {
502 get_absolute_rl(expr
->right
, &rl
);
503 rl
= cast_rl(type
, rl
);
506 * This is a bit cheating. We order it so this will already be set
507 * by smatch_extra.c and we just look up the value.
509 get_absolute_rl(expr
->left
, &rl
);
511 add_type_val(member
, rl
);
513 free_string(right_member
);
518 * If we too: int *p = &my_struct->member then abandon all hope of tracking
521 static void match_assign_pointer(struct expression
*expr
)
523 struct expression
*right
;
525 struct range_list
*rl
;
528 right
= strip_expr(expr
->right
);
529 if (right
->type
!= EXPR_PREOP
|| right
->op
!= '&')
531 right
= strip_expr(right
->unop
);
533 member
= get_member_name(right
);
536 type
= get_type(right
);
537 rl
= alloc_whole_rl(type
);
538 add_type_val(member
, rl
);
542 static void match_global_assign(struct expression
*expr
)
545 struct range_list
*rl
;
548 type
= get_type(expr
->left
);
549 if (type
&& (type
->type
== SYM_ARRAY
|| type
->type
== SYM_STRUCT
))
551 member
= get_member_name(expr
->left
);
554 get_absolute_rl(expr
->right
, &rl
);
555 rl
= cast_rl(type
, rl
);
556 add_global_type_val(member
, rl
);
560 static void unop_expr(struct expression
*expr
)
562 struct range_list
*rl
;
565 if (expr
->op
!= SPECIAL_DECREMENT
&& expr
->op
!= SPECIAL_INCREMENT
)
568 expr
= strip_expr(expr
->unop
);
569 member
= get_member_name(expr
);
572 rl
= alloc_whole_rl(get_type(expr
));
573 add_type_val(member
, rl
);
577 static void asm_expr(struct statement
*stmt
)
579 struct asm_operand
*op
;
580 struct range_list
*rl
;
583 FOR_EACH_PTR(stmt
->asm_outputs
, op
) {
584 member
= get_member_name(op
->expr
);
587 rl
= alloc_whole_rl(get_type(op
->expr
));
588 add_type_val(member
, rl
);
590 } END_FOR_EACH_PTR(op
);
593 static void db_param_add(struct expression
*expr
, int param
, char *key
, char *value
)
595 struct expression
*arg
;
597 struct range_list
*rl
;
600 if (strcmp(key
, "*$") != 0)
603 while (expr
->type
== EXPR_ASSIGNMENT
)
604 expr
= strip_expr(expr
->right
);
605 if (expr
->type
!= EXPR_CALL
)
608 arg
= get_argument_from_call_expr(expr
->args
, param
);
609 arg
= strip_expr(arg
);
612 type
= get_member_type_from_key(arg
, key
);
614 * The situation here is that say we memset() a void pointer to zero
615 * then that's returned to the called as "*$ = 0;" but on the caller's
616 * side it's not void, it's a struct.
618 * So the question is should we be passing that slightly bogus
619 * information back to the caller? Maybe, maybe not, but either way we
620 * are not going to record it here because a struct can't be zero.
623 if (type
&& type
->type
== SYM_STRUCT
)
626 if (arg
->type
!= EXPR_PREOP
|| arg
->op
!= '&')
628 arg
= strip_expr(arg
->unop
);
630 member
= get_member_name(arg
);
633 call_results_to_rl(expr
, type
, value
, &rl
);
634 add_type_val(member
, rl
);
638 static void match_end_func_info(struct symbol
*sym
)
642 FOR_EACH_SM(fn_type_val
, sm
) {
643 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
644 } END_FOR_EACH_SM(sm
);
647 void clear_type_value_cache(void)
649 memset(cached_results
, 0, sizeof(cached_results
));
652 static void match_after_func(struct symbol
*sym
)
654 free_stree(&fn_type_val
);
657 static void match_end_file(struct symbol_list
*sym_list
)
661 FOR_EACH_SM(global_type_val
, sm
) {
662 sql_insert_function_type_value(sm
->name
, sm
->state
->name
);
663 } END_FOR_EACH_SM(sm
);
666 void register_type_val(int id
)
673 add_hook(&match_assign_value
, ASSIGNMENT_HOOK_AFTER
);
674 add_hook(&match_assign_pointer
, ASSIGNMENT_HOOK
);
675 add_hook(&unop_expr
, OP_HOOK
);
676 add_hook(&asm_expr
, ASM_HOOK
);
677 select_return_states_hook(PARAM_ADD
, &db_param_add
);
678 select_return_states_hook(PARAM_SET
, &db_param_add
);
681 add_function_data((unsigned long *)&fn_type_val
);
683 add_hook(&match_end_func_info
, END_FUNC_HOOK
);
684 add_hook(&match_after_func
, AFTER_FUNC_HOOK
);
686 add_hook(&match_global_assign
, GLOBAL_ASSIGNMENT_HOOK
);
687 add_hook(&match_end_file
, END_FILE_HOOK
);