2 * Copyright (C) 2018 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 #include "smatch_slist.h"
23 GLOBAL_STATE(unit_bit
);
24 GLOBAL_STATE(unit_byte
);
25 GLOBAL_STATE(unit_array_size
);
26 GLOBAL_STATE(unit_long
);
27 GLOBAL_STATE(unit_page
);
28 GLOBAL_STATE(unit_msec
);
29 GLOBAL_STATE(unit_ns
);
30 GLOBAL_STATE(unit_jiffy
);
40 static struct type_info func_table
[] = {
41 { "unit_msecs_to_jiffies_timeout", UNITS
, -1, "$", "unit_jiffy" },
42 { "round_jiffies_up_relative", UNITS
, -1, "$", "unit_jiffy" },
45 static struct smatch_state
*str_to_units(const char *str
)
50 if (strcmp(str
, "unit_bit") == 0)
52 if (strcmp(str
, "unit_byte") == 0)
54 if (strcmp(str
, "unit_page") == 0)
56 if (strcmp(str
, "unit_msec") == 0)
58 if (strcmp(str
, "unit_jiffy") == 0)
60 if (strcmp(str
, "unit_long") == 0)
62 if (strcmp(str
, "unit_array_size") == 0)
63 return &unit_array_size
;
64 if (strcmp(str
, "unknown") == 0)
70 static struct smatch_state
*get_units_from_type(struct expression
*expr
);
72 static struct smatch_state
*merge_units(struct smatch_state
*s1
, struct smatch_state
*s2
)
81 static bool is_ignored_type(char *name
)
85 if (strcmp(name
, "(union anonymous)->__val") == 0)
87 if (strncmp(name
, "(struct fs_parse_result)", 24) == 0)
92 static bool ARRAY_SIZE_is_bytes(struct expression
*expr
)
96 expr
= strip_expr(expr
);
101 * The kernel ARRAY_SIZE() macro is sizeof(array)/sizeof(array[0]) + 0
102 * where 0 does some fancy type checking.
105 if (expr
->type
== EXPR_BINOP
&&
107 expr_is_zero(expr
->right
))
108 return ARRAY_SIZE_is_bytes(expr
->left
);
110 if (expr
->type
!= EXPR_BINOP
|| expr
->op
!= '/')
112 if (!get_value(expr
->right
, &sval
) || sval
.value
!= 1)
117 static void store_type_in_db(struct expression
*expr
, struct smatch_state
*state
)
121 member
= get_member_name(expr
);
124 if (is_ignored_type(member
))
127 sql_insert_cache(type_info
, "0x%llx, %d, '%s', '%s'", get_base_file_id(), UNITS
, member
, state
->name
);
130 static void set_units(struct expression
*expr
, struct smatch_state
*state
)
135 set_state_expr(my_id
, expr
, state
);
136 store_type_in_db(expr
, state
);
139 static bool is_PAGE_SHIFT(struct expression
*expr
)
143 macro
= get_macro_name(expr
->pos
);
144 if (macro
&& strcmp(macro
, "PAGE_SHIFT") == 0)
149 static bool is_PAGE_SIZE(struct expression
*expr
)
153 macro
= get_macro_name(expr
->pos
);
154 if (macro
&& strcmp(macro
, "PAGE_SIZE") == 0)
159 static bool is_BITS_PER_LONG(struct expression
*expr
)
163 macro
= get_macro_name(expr
->pos
);
164 if (macro
&& strcmp(macro
, "BITS_PER_LONG") == 0)
169 static struct smatch_state
*binop_helper(struct expression
*left
, int op
, struct expression
*right
)
171 struct smatch_state
*left_state
, *right_state
;
176 // subtracting pointers gives unit_byte
179 left_state
= get_units(left
);
180 right_state
= get_units(right
);
181 if (left_state
== &unit_array_size
||
182 right_state
== &unit_array_size
)
185 return left_state
? left_state
: right_state
;
187 /* FIXME: A multiply is almost always bytes but it can be bits. */
188 if (is_PAGE_SIZE(right
))
190 if (!get_implied_value(right
, &val
))
192 /* 4096 is almost always a unit_page -> bytes converstion */
193 if (val
.value
== 4096)
197 if (is_BITS_PER_LONG(right
))
199 if (is_PAGE_SIZE(right
))
201 if (!get_implied_value(right
, &val
))
203 if (val
.value
== 4096)
206 case SPECIAL_LEFTSHIFT
:
207 if (is_PAGE_SHIFT(right
))
210 case SPECIAL_RIGHTSHIFT
:
211 if (is_PAGE_SHIFT(right
))
218 static struct smatch_state
*get_units_binop(struct expression
*expr
)
220 return binop_helper(expr
->left
, expr
->op
, expr
->right
);
223 static struct smatch_state
*get_units_call(struct expression
*expr
)
225 expr
= strip_expr(expr
);
226 if (!expr
|| expr
->type
!= EXPR_CALL
)
229 if (sym_name_is("unit_msecs_to_jiffies", expr
->fn
))
231 if (sym_name_is("jiffies_to_unit_msecs", expr
->fn
))
237 static int db_units(void *_units
, int argc
, char **argv
, char **azColName
)
239 char **units
= _units
;
242 if (strcmp(*units
, argv
[0]) == 0)
245 *units
= alloc_string("unknown");
249 *units
= alloc_string(argv
[0]);
253 static struct smatch_state
*get_units_from_type(struct expression
*expr
)
257 struct smatch_state
*ret
= NULL
;
259 member
= get_member_name(expr
);
262 if (strcmp(member
, "(struct vm_area_struct)->vm_pgoff") == 0)
264 cache_sql(&db_units
, &units
, "select value from type_info where type = %d and key = '%s';",
266 run_sql(&db_units
, &units
, "select value from type_info where type = %d and key = '%s';",
272 ret
= str_to_units(units
);
279 struct smatch_state
*get_units(struct expression
*expr
)
281 struct smatch_state
*state
;
284 expr
= strip_expr(expr
);
288 if (expr_is_zero(expr
))
291 if (expr
->type
== EXPR_PTRSIZEOF
||
292 expr
->type
== EXPR_SIZEOF
)
295 ident
= pos_ident(expr
->pos
);
297 if (strcmp(ident
, "sizeof") == 0 ||
298 strcmp(ident
, "PAGE_SIZE") == 0)
300 if (strcmp(ident
, "jiffies") == 0)
302 if (strcmp(ident
, "BITS_PER_LONG") == 0)
304 if (strcmp(ident
, "BITS_PER_LONG_LONG") == 0)
306 if (strcmp(ident
, "ARRAY_SIZE") == 0) {
307 if (ARRAY_SIZE_is_bytes(expr
))
309 return &unit_array_size
;
313 if (expr
->type
== EXPR_BINOP
)
314 return get_units_binop(expr
);
316 if (expr
->type
== EXPR_CALL
)
317 return get_units_call(expr
);
319 state
= get_state_expr(my_id
, expr
);
320 if (state
== &merged
|| state
== &undefined
)
325 return get_units_from_type(expr
);
328 bool is_array_size_units(struct expression
*expr
)
330 return get_units(expr
) == &unit_array_size
;
333 static void match_allocation(struct expression
*expr
,
334 const char *name
, struct symbol
*sym
,
335 struct allocation_info
*info
)
337 struct expression
*right
, *left
;
339 if (info
->nr_elems
&& info
->elem_size
) {
340 left
= info
->nr_elems
;
341 right
= info
->elem_size
;
342 } else if (info
->total_size
&&
343 info
->total_size
->type
== EXPR_BINOP
&&
344 info
->total_size
->op
== '*') {
345 left
= strip_expr(info
->total_size
->left
);
346 right
= strip_expr(info
->total_size
->right
);
351 if (get_units(left
) == &unit_byte
)
352 set_units(right
, &unit_array_size
);
353 if (get_units(right
) == &unit_byte
)
354 set_units(left
, &unit_array_size
);
357 static void match_binop_set(struct expression
*expr
)
359 struct smatch_state
*left
, *right
;
362 if (expr
->op
== SPECIAL_LEFTSHIFT
&& is_PAGE_SHIFT(expr
->right
)) {
363 set_units(expr
->left
, &unit_page
);
367 if (expr
->op
== SPECIAL_RIGHTSHIFT
&& is_PAGE_SHIFT(expr
->right
)) {
368 set_units(expr
->left
, &unit_byte
);
372 if (expr
->op
!= '+' && expr
->op
!= '-')
375 type
= get_type(expr
->left
);
376 if (type
&& (type
->type
== SYM_PTR
|| type
->type
== SYM_ARRAY
))
379 left
= get_units(expr
->left
);
380 right
= get_units(expr
->right
);
383 set_units(expr
->right
, left
);
385 set_units(expr
->left
, right
);
388 static void match_condition_set(struct expression
*expr
)
390 struct smatch_state
*left
, *right
;
392 if (expr
->type
!= EXPR_COMPARE
)
395 left
= get_units(expr
->left
);
396 right
= get_units(expr
->right
);
399 set_units(expr
->right
, left
);
401 set_units(expr
->left
, right
);
404 static void match_assign(struct expression
*expr
)
406 struct smatch_state
*state
= NULL
;
408 if (__in_fake_assign
)
413 state
= get_units(expr
->right
);
415 case SPECIAL_SHR_ASSIGN
:
416 case SPECIAL_SHL_ASSIGN
:
417 case SPECIAL_DIV_ASSIGN
:
418 case SPECIAL_MUL_ASSIGN
:
419 state
= binop_helper(expr
->left
, op_remove_assign(expr
->op
),
424 set_units(expr
->left
, state
);
426 // clear_units(expr->left);
429 static void set_implied_units(struct expression
*call
, struct expression
*arg
, char *key
, char *value
)
431 struct smatch_state
*state
;
435 state
= str_to_units(value
);
438 name
= get_variable_from_key(arg
, key
, &sym
);
441 set_state(my_id
, name
, sym
, state
);
446 static void set_param_units(const char *name
, struct symbol
*sym
, char *key
, char *value
)
448 struct smatch_state
*state
;
450 state
= str_to_units(value
);
453 set_state(my_id
, sym
->ident
->name
, sym
, state
);
456 static void set_param_units_from_table(struct expression
*expr
, const char *name
, struct symbol
*sym
, void *data
)
458 const char *value
= data
;
459 struct smatch_state
*state
;
461 state
= str_to_units(value
);
464 set_state(my_id
, name
, sym
, state
);
467 static void match_call_info(struct expression
*expr
)
469 struct expression
*arg
;
470 struct smatch_state
*state
;
474 if (expr
->fn
->type
!= EXPR_SYMBOL
)
476 fn_name
= expr_to_var(expr
->fn
);
480 FOR_EACH_PTR(expr
->args
, arg
) {
482 state
= get_units(arg
);
485 // sql_insert_cache(return_implies, "0x%llx, '%s', 0, %d, %d, %d, '%s', '%s'",
486 // get_base_file_id(), fn_name, is_static(expr->fn), UNITS, param, "$", state->name);
487 sql_insert_caller_info(expr
, UNITS
, param
, "$", state
->name
);
489 } END_FOR_EACH_PTR(arg
);
491 free_string(fn_name
);
494 static void process_states(void)
497 struct smatch_state
*state
, *start_state
;
500 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, arg
) {
502 state
= get_state(my_id
, arg
->ident
->name
, arg
);
503 if (!state
|| state
== &merged
|| state
== &undefined
)
505 start_state
= get_state_stree(get_start_states(), my_id
, arg
->ident
->name
, arg
);
506 if (state
== start_state
)
508 sql_insert_cache(return_implies
, "0x%llx, '%s', 0, %d, %d, %d, '%s', '%s'",
509 get_base_file_id(), get_function(), fn_static(), UNITS
, param
, "$", state
->name
);
510 } END_FOR_EACH_PTR(arg
);
513 char *get_unit_str(struct expression
*expr
)
515 struct smatch_state
*state
;
517 state
= get_units(expr
);
520 return (char *)state
->name
;
523 void register_units(int id
)
525 struct type_info
*info
;
530 for (i
= 0; i
< ARRAY_SIZE(func_table
); i
++) {
531 info
= &func_table
[i
];
532 add_function_param_key_hook(info
->name
,
533 set_param_units_from_table
,
534 info
->param
, info
->key
,
535 (void *)info
->value
);
538 add_merge_hook(my_id
, &merge_units
);
540 add_hook(&match_binop_set
, BINOP_HOOK
);
541 add_hook(&match_condition_set
, CONDITION_HOOK
);
542 add_hook(&match_assign
, ASSIGNMENT_HOOK
);
543 add_hook(&match_call_info
, FUNCTION_CALL_HOOK
);
544 all_return_states_hook(&process_states
);
546 select_return_implies_hook(UNITS
, &set_implied_units
);
547 select_caller_info_hook(&set_param_units
, UNITS
);
549 add_allocation_hook(&match_allocation
);