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 static struct range_list_stack
*rl_stack
;
36 static struct string_list
*op_list
;
38 static void push_op(char c
)
44 add_ptr_list(&op_list
, p
);
47 static char pop_op(void)
53 sm_msg("internal smatch error %s", __func__
);
57 p
= last_ptr_list((struct ptr_list
*)op_list
);
59 delete_ptr_list_last((struct ptr_list
**)&op_list
);
66 static int op_precedence(char c
)
80 static int top_op_precedence(void)
87 p
= last_ptr_list((struct ptr_list
*)op_list
);
88 return op_precedence(p
[0]);
91 static void rl_pop_until(char c
)
94 struct range_list
*left
, *right
;
95 struct range_list
*res
;
97 while (top_op_precedence() && op_precedence(c
) <= top_op_precedence()) {
99 right
= pop_rl(&rl_stack
);
100 left
= pop_rl(&rl_stack
);
101 res
= rl_binop(left
, op
, right
);
102 push_rl(&rl_stack
, res
);
106 static void rl_discard_stacks(void)
114 static int read_rl_from_var(struct expression
*call
, char *p
, char **end
, struct range_list
**rl
)
116 struct expression
*arg
;
117 struct smatch_state
*state
;
125 param
= strtol(p
, &p
, 10);
127 arg
= get_argument_from_call_expr(call
->args
, param
);
131 if (*p
!= '-' && *p
!= '.') {
132 get_absolute_rl(arg
, rl
);
137 *end
= strchr(p
, ' ');
139 if (arg
->type
== EXPR_PREOP
&& arg
->op
== '&') {
140 arg
= strip_expr(arg
->unop
);
148 name
= expr_to_var_sym(arg
, &sym
);
151 snprintf(buf
, sizeof(buf
), "%s%s", name
, star
? "->" : ".");
154 if (*end
- p
+ strlen(buf
) >= sizeof(buf
))
156 strncat(buf
, p
, *end
- p
);
158 state
= get_state(SMATCH_EXTRA
, buf
, sym
);
161 *rl
= estate_rl(state
);
165 static int read_var_num(struct expression
*call
, char *p
, char **end
, struct range_list
**rl
)
173 return read_rl_from_var(call
, p
, end
, rl
);
175 sval
.type
= &llong_ctype
;
176 sval
.value
= strtoll(p
, end
, 10);
179 *rl
= alloc_rl(sval
, sval
);
183 static char *read_op(char *p
)
199 int parse_call_math_rl(struct expression
*call
, char *math
, struct range_list
**rl
)
201 struct range_list
*tmp
;
204 /* try to implement shunting yard algorithm. */
209 sm_msg("parsing %s", c
);
211 /* read a number and push it onto the number stack */
212 if (!read_var_num(call
, c
, &c
, &tmp
))
214 push_rl(&rl_stack
, tmp
);
217 sm_msg("val = %s remaining = %s", show_rl(tmp
), c
);
221 if (*c
== ']' && *(c
+ 1) == '\0')
229 sm_msg("op = %c remaining = %s", *c
, c
);
237 *rl
= pop_rl(&rl_stack
);
244 int parse_call_math(struct expression
*call
, char *math
, sval_t
*sval
)
246 struct range_list
*rl
;
248 if (!parse_call_math_rl(call
, math
, &rl
))
250 if (!rl_to_sval(rl
, sval
))
255 static struct smatch_state
*alloc_state_sname(char *sname
)
257 struct smatch_state
*state
;
259 state
= __alloc_smatch_state(0);
261 state
->data
= INT_PTR(1);
265 static int get_arg_number(struct expression
*expr
)
271 expr
= strip_expr(expr
);
272 if (expr
->type
!= EXPR_SYMBOL
)
277 FOR_EACH_PTR(cur_func_sym
->ctype
.base_type
->arguments
, arg
) {
281 } END_FOR_EACH_PTR(arg
);
286 static int format_variable_helper(char *buf
, int remaining
, struct expression
*expr
)
295 name
= expr_to_var_sym(expr
, &sym
);
296 if (!name
|| !sym
|| !sym
->ident
)
298 arg
= get_param_num_from_sym(sym
);
301 if (param_was_set(expr
))
304 param_name
= sym
->ident
->name
;
305 name_len
= strlen(param_name
);
307 if (name
[name_len
] == '\0')
308 ret
= snprintf(buf
, remaining
, "$%d", arg
);
309 else if (name
[name_len
] == '-') {
310 ret
= snprintf(buf
, remaining
, "$%d%s", arg
, name
+ name_len
);
324 static int format_expr_helper(char *buf
, int remaining
, struct expression
*expr
)
335 if (expr
->type
== EXPR_BINOP
) {
336 ret
= format_expr_helper(cur
, remaining
, expr
->left
);
344 ret
= snprintf(cur
, remaining
, " %s ", show_special(expr
->op
));
350 ret
= format_expr_helper(cur
, remaining
, expr
->right
);
360 if (get_implied_value(expr
, &sval
)) {
361 ret
= snprintf(cur
, remaining
, "%s", sval_to_str(sval
));
368 return format_variable_helper(cur
, remaining
, expr
);
371 static char *format_expr(struct expression
*expr
)
376 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
380 return alloc_sname(buf
);
383 char *get_value_in_terms_of_parameter_math(struct expression
*expr
)
385 struct expression
*tmp
;
389 tmp
= get_assigned_expr(expr
);
393 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
397 return alloc_sname(buf
);
400 char *get_value_in_terms_of_parameter_math_var_sym(const char *name
, struct symbol
*sym
)
402 struct expression
*expr
;
406 expr
= get_assigned_expr_name_sym(name
, sym
);
410 ret
= format_expr_helper(buf
, sizeof(buf
), expr
);
414 return alloc_sname(buf
);
418 static void match_alloc(const char *fn
, struct expression
*expr
, void *_size_arg
)
420 int size_arg
= PTR_INT(_size_arg
);
421 struct expression
*right
;
422 struct expression
*size_expr
;
425 right
= strip_expr(expr
->right
);
426 size_expr
= get_argument_from_call_expr(right
->args
, size_arg
);
428 sname
= format_expr(size_expr
);
431 set_state_expr(my_id
, expr
->left
, alloc_state_sname(sname
));
434 static char *swap_format(struct expression
*call
, char *format
)
439 struct expression
*arg
;
444 if (format
[0] == '$' && format
[2] == '\0') {
445 param
= strtol(format
+ 1, NULL
, 10);
446 arg
= get_argument_from_call_expr(call
->args
, param
);
449 return format_expr(arg
);
458 param
= strtol(p
, &p
, 10);
459 arg
= get_argument_from_call_expr(call
->args
, param
);
462 param
= get_arg_number(arg
);
464 ret
= snprintf(out
, buf
+ sizeof(buf
) - out
, "$%ld", param
);
466 if (out
>= buf
+ sizeof(buf
))
468 } else if (get_implied_value(arg
, &sval
)) {
469 ret
= snprintf(out
, buf
+ sizeof(buf
) - out
, "%s", sval_to_str(sval
));
471 if (out
>= buf
+ sizeof(buf
))
484 return alloc_sname(buf
);
487 static char *buf_size_recipe
;
488 static int db_buf_size_callback(void *unused
, int argc
, char **argv
, char **azColName
)
493 if (!buf_size_recipe
)
494 buf_size_recipe
= alloc_sname(argv
[0]);
495 else if (strcmp(buf_size_recipe
, argv
[0]) != 0)
496 buf_size_recipe
= alloc_sname("invalid");
500 static char *get_allocation_recipe_from_call(struct expression
*expr
)
503 static char sql_filter
[1024];
506 if (is_fake_call(expr
))
508 expr
= strip_expr(expr
);
509 if (expr
->fn
->type
!= EXPR_SYMBOL
)
511 sym
= expr
->fn
->symbol
;
515 for (i
= 0; i
< ARRAY_SIZE(alloc_functions
); i
++) {
516 if (strcmp(sym
->ident
->name
, alloc_functions
[i
].func
) == 0) {
519 snprintf(buf
, sizeof(buf
), "$%d", alloc_functions
[i
].param
);
520 buf_size_recipe
= alloc_sname(buf
);
521 return swap_format(expr
, buf_size_recipe
);
525 if (sym
->ctype
.modifiers
& MOD_STATIC
) {
526 snprintf(sql_filter
, 1024, "file = '%s' and function = '%s';",
527 get_filename(), sym
->ident
->name
);
529 snprintf(sql_filter
, 1024, "function = '%s' and static = 0;",
533 buf_size_recipe
= NULL
;
534 run_sql(db_buf_size_callback
, NULL
,
535 "select value from return_states where type=%d and %s",
536 BUF_SIZE
, sql_filter
);
537 if (!buf_size_recipe
|| strcmp(buf_size_recipe
, "invalid") == 0)
539 return swap_format(expr
, buf_size_recipe
);
542 static void match_call_assignment(struct expression
*expr
)
546 sname
= get_allocation_recipe_from_call(expr
->right
);
549 set_state_expr(my_id
, expr
->left
, alloc_state_sname(sname
));
552 static void match_returns_call(int return_id
, char *return_ranges
, struct expression
*call
)
556 sname
= get_allocation_recipe_from_call(call
);
558 sm_msg("sname = %s", sname
);
562 sql_insert_return_states(return_id
, return_ranges
, BUF_SIZE
, -1, "",
566 static void print_returned_allocations(int return_id
, char *return_ranges
, struct expression
*expr
)
568 struct smatch_state
*state
;
572 expr
= strip_expr(expr
);
576 if (expr
->type
== EXPR_CALL
) {
577 match_returns_call(return_id
, return_ranges
, expr
);
581 name
= expr_to_var_sym(expr
, &sym
);
585 state
= get_state(my_id
, name
, sym
);
586 if (!state
|| !state
->data
)
589 sql_insert_return_states(return_id
, return_ranges
, BUF_SIZE
, -1, "",
595 void register_parse_call_math(int id
)
601 for (i
= 0; i
< ARRAY_SIZE(alloc_functions
); i
++)
602 add_function_assign_hook(alloc_functions
[i
].func
, &match_alloc
,
603 INT_PTR(alloc_functions
[i
].param
));
604 add_hook(&match_call_assignment
, CALL_ASSIGNMENT_HOOK
);
605 add_split_return_callback(print_returned_allocations
);