extra: save return values in terms of parameter math
[smatch.git] / smatch_parse_call_math.c
blobe8deb71038f5b651395f83ed5e4334cb9ef3a920
1 /*
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
18 #include "smatch.h"
19 #include "smatch_slist.h"
20 #include "smatch_extra.h"
22 static int my_id;
24 struct {
25 const char *func;
26 int param;
27 } alloc_functions[] = {
28 {"kmalloc", 0},
29 {"__kmalloc", 0},
30 {"vmalloc", 0},
31 {"__vmalloc", 0},
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)
42 sval_t *p;
44 p = malloc(sizeof(*p));
45 *p = sval;
46 add_ptr_list(&num_list, p);
49 static sval_t pop_val(void)
51 sval_t *p;
52 sval_t ret;
54 if (!num_list) {
55 sm_msg("internal bug: %s popping empty list", __func__);
56 ret.type = &llong_ctype;
57 ret.value = 0;
58 return ret;
60 p = last_ptr_list((struct ptr_list *)num_list);
61 delete_ptr_list_last((struct ptr_list **)&num_list);
62 ret = *p;
63 free(p);
65 return ret;
68 static void push_op(char c)
70 char *p;
72 p = malloc(1);
73 p[0] = c;
74 add_ptr_list(&op_list, p);
77 static char pop_op(void)
79 char *p;
80 char c;
82 if (!op_list) {
83 sm_msg("internal smatch error %s", __func__);
84 return '\0';
87 p = last_ptr_list((struct ptr_list *)op_list);
89 delete_ptr_list_last((struct ptr_list **)&op_list);
90 c = p[0];
91 free(p);
93 return c;
96 static int op_precedence(char c)
98 switch (c) {
99 case '+':
100 case '-':
101 return 1;
102 case '*':
103 case '/':
104 return 2;
105 default:
106 return 0;
110 static int top_op_precedence(void)
112 char *p;
114 if (!op_list)
115 return 0;
117 p = last_ptr_list((struct ptr_list *)op_list);
118 return op_precedence(p[0]);
121 static void pop_until(char c)
123 char op;
124 sval_t left, right;
125 sval_t res;
127 while (top_op_precedence() && op_precedence(c) <= top_op_precedence()) {
128 op = pop_op();
129 right = pop_val();
130 left = pop_val();
131 res = sval_binop(left, op, right);
132 push_val(res);
136 static void discard_stacks(void)
138 while (op_list)
139 pop_op();
140 while (num_list)
141 pop_val();
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)
154 long param;
156 while (*p == ' ')
157 p++;
159 if (*p == '$') {
160 p++;
161 param = strtol(p, &p, 10);
162 if (!get_implied_param(call, param, sval))
163 return 0;
164 *end = p;
165 } else {
166 sval->type = &llong_ctype;
167 sval->value = strtoll(p, end, 10);
168 if (*end == p)
169 return 0;
171 return 1;
174 static char *read_op(char *p)
176 while (*p == ' ')
177 p++;
179 switch (*p) {
180 case '+':
181 case '-':
182 case '*':
183 case '/':
184 return p;
185 default:
186 return NULL;
190 int parse_call_math(struct expression *call, char *math, sval_t *sval)
192 sval_t tmp;
193 char *c;
195 /* try to implement shunting yard algorithm. */
197 c = (char *)math;
198 while (1) {
199 if (option_debug)
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))
204 goto fail;
205 push_val(tmp);
207 if (option_debug)
208 sm_msg("val = %s remaining = %s", sval_to_str(tmp), c);
210 if (!*c)
211 break;
213 c = read_op(c);
214 if (!c)
215 goto fail;
217 if (option_debug)
218 sm_msg("op = %c remaining = %s", *c, c);
220 pop_until(*c);
221 push_op(*c);
222 c++;
225 pop_until(0);
226 *sval = pop_val();
227 return 1;
228 fail:
229 discard_stacks();
230 return 0;
233 static struct smatch_state *alloc_state_sname(char *sname)
235 struct smatch_state *state;
237 state = __alloc_smatch_state(0);
238 state->name = sname;
239 state->data = INT_PTR(1);
240 return state;
243 static int get_arg_number(struct expression *expr)
245 struct symbol *sym;
246 struct symbol *arg;
247 int i;
249 expr = strip_expr(expr);
250 if (expr->type != EXPR_SYMBOL)
251 return -1;
252 sym = expr->symbol;
254 i = 0;
255 FOR_EACH_PTR(cur_func_sym->ctype.base_type->arguments, arg) {
256 if (arg == sym)
257 return i;
258 i++;
259 } END_FOR_EACH_PTR(arg);
261 return -1;
264 static int format_expr_helper(char *buf, int remaining, struct expression *expr)
266 int arg;
267 sval_t sval;
268 int ret;
269 char *cur;
271 if (!expr)
272 return 0;
274 cur = buf;
276 if (expr->type == EXPR_BINOP) {
277 ret = format_expr_helper(cur, remaining, expr->left);
278 if (ret == 0)
279 return 0;
280 remaining -= ret;
281 if (remaining <= 0)
282 return 0;
283 cur += ret;
285 ret = snprintf(cur, remaining, " %s ", show_special(expr->op));
286 remaining -= ret;
287 if (remaining <= 0)
288 return 0;
289 cur += ret;
291 ret = format_expr_helper(cur, remaining, expr->right);
292 if (ret == 0)
293 return 0;
294 remaining -= ret;
295 if (remaining <= 0)
296 return 0;
297 cur += ret;
298 return cur - buf;
301 arg = get_arg_number(expr);
302 if (arg >= 0) {
303 ret = snprintf(cur, remaining, "$%d", arg);
304 remaining -= ret;
305 if (remaining <= 0)
306 return 0;
307 return ret;
310 if (get_implied_value(expr, &sval)) {
311 ret = snprintf(cur, remaining, "%s", sval_to_str(sval));
312 remaining -= ret;
313 if (remaining <= 0)
314 return 0;
315 return ret;
318 return 0;
321 static char *format_expr(struct expression *expr)
323 char buf[256];
324 int ret;
326 ret = format_expr_helper(buf, sizeof(buf), expr);
327 if (ret == 0)
328 return NULL;
330 return alloc_sname(buf);
333 char *get_value_in_terms_of_parameter_math(struct expression *expr)
335 struct expression *tmp;
336 char buf[256];
337 int ret;
339 tmp = get_assigned_expr(expr);
340 if (tmp)
341 expr = tmp;
343 ret = format_expr_helper(buf, sizeof(buf), expr);
344 if (ret == 0)
345 return NULL;
347 return alloc_sname(buf);
350 static void match_alloc(const char *fn, struct expression *expr, void *_size_arg)
352 int size_arg = PTR_INT(_size_arg);
353 struct expression *right;
354 struct expression *size_expr;
355 char *sname;
357 right = strip_expr(expr->right);
358 size_expr = get_argument_from_call_expr(right->args, size_arg);
360 sname = format_expr(size_expr);
361 if (!sname)
362 return;
363 set_state_expr(my_id, expr->left, alloc_state_sname(sname));
366 static char *swap_format(struct expression *call, char *format)
368 static char buf[256];
369 sval_t sval;
370 long param;
371 struct expression *arg;
372 char *p;
373 char *out;
374 int ret;
376 if (format[0] == '<' && format[2] == '>' && format[3] == '\0') {
377 param = strtol(format + 1, NULL, 10);
378 arg = get_argument_from_call_expr(call->args, param);
379 if (!arg)
380 return NULL;
381 return format_expr(arg);
384 buf[0] = '\0';
385 p = format;
386 out = buf;
387 while (*p) {
388 if (*p == '<') {
389 p++;
390 param = strtol(p, &p, 10);
391 if (*p != '>')
392 return NULL;
393 p++;
394 arg = get_argument_from_call_expr(call->args, param);
395 if (!arg)
396 return NULL;
397 param = get_arg_number(arg);
398 if (param >= 0) {
399 ret = snprintf(out, buf + sizeof(buf) - out, "$%ld", param);
400 out += ret;
401 if (out >= buf + sizeof(buf))
402 return NULL;
403 } else if (get_implied_value(arg, &sval)) {
404 ret = snprintf(out, buf + sizeof(buf) - out, "%s", sval_to_str(sval));
405 out += ret;
406 if (out >= buf + sizeof(buf))
407 return NULL;
408 } else {
409 return NULL;
412 *out = *p;
413 p++;
414 out++;
416 if (buf[0] == '\0')
417 return NULL;
418 return alloc_sname(buf);
421 static char *buf_size_recipe;
422 static int db_buf_size_callback(void *unused, int argc, char **argv, char **azColName)
424 if (argc != 1)
425 return 0;
427 if (!buf_size_recipe)
428 buf_size_recipe = alloc_sname(argv[0]);
429 else if (strcmp(buf_size_recipe, argv[0]) != 0)
430 buf_size_recipe = alloc_sname("invalid");
431 return 0;
434 static char *get_allocation_recipe_from_call(struct expression *expr)
436 struct symbol *sym;
437 static char sql_filter[1024];
438 int i;
440 if (is_fake_call(expr))
441 return NULL;
442 expr = strip_expr(expr);
443 if (expr->fn->type != EXPR_SYMBOL)
444 return NULL;
445 sym = expr->fn->symbol;
446 if (!sym)
447 return NULL;
449 for (i = 0; i < ARRAY_SIZE(alloc_functions); i++) {
450 if (strcmp(sym->ident->name, alloc_functions[i].func) == 0) {
451 char buf[32];
453 snprintf(buf, sizeof(buf), "$%d", alloc_functions[i].param);
454 buf_size_recipe = alloc_sname(buf);
455 return swap_format(expr, buf_size_recipe);
459 if (sym->ctype.modifiers & MOD_STATIC) {
460 snprintf(sql_filter, 1024, "file = '%s' and function = '%s';",
461 get_filename(), sym->ident->name);
462 } else {
463 snprintf(sql_filter, 1024, "function = '%s' and static = 0;",
464 sym->ident->name);
467 buf_size_recipe = NULL;
468 run_sql(db_buf_size_callback, "select value from return_states where type=%d and %s",
469 BUF_SIZE, sql_filter);
470 if (!buf_size_recipe || strcmp(buf_size_recipe, "invalid") == 0)
471 return NULL;
472 return swap_format(expr, buf_size_recipe);
475 static void match_call_assignment(struct expression *expr)
477 char *sname;
479 sname = get_allocation_recipe_from_call(expr->right);
480 if (!sname)
481 return;
482 set_state_expr(my_id, expr->left, alloc_state_sname(sname));
485 static void match_returns_call(int return_id, char *return_ranges, struct expression *call)
487 char *sname;
489 sname = get_allocation_recipe_from_call(call);
490 if (option_debug)
491 sm_msg("sname = %s", sname);
492 if (!sname)
493 return;
495 sql_insert_return_states(return_id, return_ranges, BUF_SIZE, -1, "",
496 sname);
499 static void print_returned_allocations(int return_id, char *return_ranges, struct expression *expr)
501 struct smatch_state *state;
502 struct symbol *sym;
503 char *name;
505 expr = strip_expr(expr);
506 if (!expr)
507 return;
509 if (expr->type == EXPR_CALL) {
510 match_returns_call(return_id, return_ranges, expr);
511 return;
514 name = expr_to_var_sym(expr, &sym);
515 if (!name || !sym)
516 goto free;
518 state = get_state(my_id, name, sym);
519 if (!state || !state->data)
520 goto free;
522 sql_insert_return_states(return_id, return_ranges, BUF_SIZE, -1, "",
523 state->name);
524 free:
525 free_string(name);
528 void register_parse_call_math(int id)
530 int i;
532 my_id = id;
534 for (i = 0; i < ARRAY_SIZE(alloc_functions); i++)
535 add_function_assign_hook(alloc_functions[i].func, &match_alloc,
536 INT_PTR(alloc_functions[i].param));
537 add_hook(&match_call_assignment, CALL_ASSIGNMENT_HOOK);
538 add_split_return_callback(print_returned_allocations);