2 * Copyright (C) 2012 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"
20 #include "smatch_extra.h"
27 } alloc_functions
[] = {
32 {"__vmalloc_node", 0},
35 DECLARE_PTR_LIST(sval_list
, sval_t
);
37 static struct sval_list
*num_list
;
38 static struct string_list
*op_list
;
40 static void push_val(sval_t sval
)
44 p
= malloc(sizeof(*p
));
46 add_ptr_list(&num_list
, p
);
49 static sval_t
pop_val(void)
55 sm_msg("internal bug: %s popping empty list", __func__
);
56 ret
.type
= &llong_ctype
;
60 p
= last_ptr_list((struct ptr_list
*)num_list
);
61 delete_ptr_list_last((struct ptr_list
**)&num_list
);
68 static void push_op(char c
)
74 add_ptr_list(&op_list
, p
);
77 static char pop_op(void)
83 sm_msg("internal smatch error %s", __func__
);
87 p
= last_ptr_list((struct ptr_list
*)op_list
);
89 delete_ptr_list_last((struct ptr_list
**)&op_list
);
96 static int op_precedence(char c
)
110 static int top_op_precedence(void)
117 p
= last_ptr_list((struct ptr_list
*)op_list
);
118 return op_precedence(p
[0]);
121 static void pop_until(char c
)
127 while (top_op_precedence() && op_precedence(c
) <= top_op_precedence()) {
131 res
= sval_binop(left
, op
, right
);
136 static void discard_stacks(void)
144 static int get_implied_param(struct expression
*call
, int param
, sval_t
*sval
)
146 struct expression
*arg
;
148 arg
= get_argument_from_call_expr(call
->args
, param
);
149 return get_implied_value(arg
, sval
);
152 static int read_number(struct expression
*call
, char *p
, char **end
, sval_t
*sval
)
161 param
= strtol(p
, &p
, 10);
162 if (!get_implied_param(call
, param
, sval
))
166 sval
->type
= &llong_ctype
;
167 sval
->value
= strtoll(p
, end
, 10);
174 static char *read_op(char *p
)
190 int parse_call_math(struct expression
*call
, char *math
, sval_t
*sval
)
195 /* try to implement shunting yard algorithm. */
200 sm_msg("parsing %s", c
);
202 /* read a number and push it onto the number stack */
203 if (!read_number(call
, c
, &c
, &tmp
))
208 sm_msg("val = %s remaining = %s", sval_to_str(tmp
), c
);
212 if (*c
== ']' && *(c
+ 1) == '\0')
220 sm_msg("op = %c remaining = %s", *c
, c
);
235 static struct smatch_state
*alloc_state_sname(char *sname
)
237 struct smatch_state
*state
;
239 state
= __alloc_smatch_state(0);
241 state
->data
= INT_PTR(1);
245 static int get_arg_number(struct expression
*expr
)
251 expr
= strip_expr(expr
);
252 if (expr
->type
!= EXPR_SYMBOL
)
257 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, arg
) {
261 } END_FOR_EACH_PTR(arg
);
266 static int format_expr_helper(char *buf
, int remaining
, struct expression
*expr
)
278 if (expr
->type
== EXPR_BINOP
) {
279 ret
= format_expr_helper(cur
, remaining
, expr
->left
);
287 ret
= snprintf(cur
, remaining
, " %s ", show_special(expr
->op
));
293 ret
= format_expr_helper(cur
, remaining
, expr
->right
);
303 arg
= get_arg_number(expr
);
305 ret
= snprintf(cur
, remaining
, "$%d", arg
);
312 if (get_implied_value(expr
, &sval
)) {
313 ret
= snprintf(cur
, remaining
, "%s", sval_to_str(sval
));
323 static char *format_expr(struct expression
*expr
)
328 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
332 return alloc_sname(buf
);
335 char *get_value_in_terms_of_parameter_math(struct expression
*expr
)
337 struct expression
*tmp
;
341 tmp
= get_assigned_expr(expr
);
345 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
349 return alloc_sname(buf
);
352 char *get_value_in_terms_of_parameter_math_var_sym(const char *name
, struct symbol
*sym
)
354 struct expression
*expr
;
358 expr
= get_assigned_expr_name_sym(name
, sym
);
362 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
366 return alloc_sname(buf
);
370 static void match_alloc(const char *fn
, struct expression
*expr
, void *_size_arg
)
372 int size_arg
= PTR_INT(_size_arg
);
373 struct expression
*right
;
374 struct expression
*size_expr
;
377 right
= strip_expr(expr
->right
);
378 size_expr
= get_argument_from_call_expr(right
->args
, size_arg
);
380 sname
= format_expr(size_expr
);
383 set_state_expr(my_id
, expr
->left
, alloc_state_sname(sname
));
386 static char *swap_format(struct expression
*call
, char *format
)
391 struct expression
*arg
;
396 if (format
[0] == '$' && format
[2] == '\0') {
397 param
= strtol(format
+ 1, NULL
, 10);
398 arg
= get_argument_from_call_expr(call
->args
, param
);
401 return format_expr(arg
);
410 param
= strtol(p
, &p
, 10);
414 arg
= get_argument_from_call_expr(call
->args
, param
);
417 param
= get_arg_number(arg
);
419 ret
= snprintf(out
, buf
+ sizeof(buf
) - out
, "$%ld", param
);
421 if (out
>= buf
+ sizeof(buf
))
423 } else if (get_implied_value(arg
, &sval
)) {
424 ret
= snprintf(out
, buf
+ sizeof(buf
) - out
, "%s", sval_to_str(sval
));
426 if (out
>= buf
+ sizeof(buf
))
438 return alloc_sname(buf
);
441 static char *buf_size_recipe
;
442 static int db_buf_size_callback(void *unused
, int argc
, char **argv
, char **azColName
)
447 if (!buf_size_recipe
)
448 buf_size_recipe
= alloc_sname(argv
[0]);
449 else if (strcmp(buf_size_recipe
, argv
[0]) != 0)
450 buf_size_recipe
= alloc_sname("invalid");
454 static char *get_allocation_recipe_from_call(struct expression
*expr
)
457 static char sql_filter
[1024];
460 if (is_fake_call(expr
))
462 expr
= strip_expr(expr
);
463 if (expr
->fn
->type
!= EXPR_SYMBOL
)
465 sym
= expr
->fn
->symbol
;
469 for (i
= 0; i
< ARRAY_SIZE(alloc_functions
); i
++) {
470 if (strcmp(sym
->ident
->name
, alloc_functions
[i
].func
) == 0) {
473 snprintf(buf
, sizeof(buf
), "$%d", alloc_functions
[i
].param
);
474 buf_size_recipe
= alloc_sname(buf
);
475 return swap_format(expr
, buf_size_recipe
);
479 if (sym
->ctype
.modifiers
& MOD_STATIC
) {
480 snprintf(sql_filter
, 1024, "file = '%s' and function = '%s';",
481 get_filename(), sym
->ident
->name
);
483 snprintf(sql_filter
, 1024, "function = '%s' and static = 0;",
487 buf_size_recipe
= NULL
;
488 run_sql(db_buf_size_callback
, "select value from return_states where type=%d and %s",
489 BUF_SIZE
, sql_filter
);
490 if (!buf_size_recipe
|| strcmp(buf_size_recipe
, "invalid") == 0)
492 return swap_format(expr
, buf_size_recipe
);
495 static void match_call_assignment(struct expression
*expr
)
499 sname
= get_allocation_recipe_from_call(expr
->right
);
502 set_state_expr(my_id
, expr
->left
, alloc_state_sname(sname
));
505 static void match_returns_call(int return_id
, char *return_ranges
, struct expression
*call
)
509 sname
= get_allocation_recipe_from_call(call
);
511 sm_msg("sname = %s", sname
);
515 sql_insert_return_states(return_id
, return_ranges
, BUF_SIZE
, -1, "",
519 static void print_returned_allocations(int return_id
, char *return_ranges
, struct expression
*expr
)
521 struct smatch_state
*state
;
525 expr
= strip_expr(expr
);
529 if (expr
->type
== EXPR_CALL
) {
530 match_returns_call(return_id
, return_ranges
, expr
);
534 name
= expr_to_var_sym(expr
, &sym
);
538 state
= get_state(my_id
, name
, sym
);
539 if (!state
|| !state
->data
)
542 sql_insert_return_states(return_id
, return_ranges
, BUF_SIZE
, -1, "",
548 void register_parse_call_math(int id
)
554 for (i
= 0; i
< ARRAY_SIZE(alloc_functions
); i
++)
555 add_function_assign_hook(alloc_functions
[i
].func
, &match_alloc
,
556 INT_PTR(alloc_functions
[i
].param
));
557 add_hook(&match_call_assignment
, CALL_ASSIGNMENT_HOOK
);
558 add_split_return_callback(print_returned_allocations
);