buf_size: create an elements_to_bytes() function
[smatch.git] / smatch_buf_size.c
bloba30de8b24ff2529e4096553e98baf2db514dd6dd
1 /*
2 * smatch/smatch_buf_size.c
4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
8 */
10 #include <stdlib.h>
11 #include <errno.h>
12 #include "parse.h"
13 #include "smatch.h"
14 #include "smatch_slist.h"
15 #include "smatch_extra.h"
18 * This check has two smatch IDs.
19 * my_size_id - used to store the size of arrays.
20 * my_strlen_id - track the strlen() of buffers.
23 static int my_size_id;
24 static int my_strlen_id;
26 struct limiter {
27 int buf_arg;
28 int limit_arg;
30 static struct limiter b0_l2 = {0, 2};
32 static _Bool params_set[32];
34 static void set_undefined(struct sm_state *sm)
36 if (sm->state != &undefined)
37 set_state(sm->owner, sm->name, sm->sym, &undefined);
40 void set_param_buf_size(const char *name, struct symbol *sym, char *key, char *value)
42 char fullname[256];
43 unsigned int size;
45 if (strncmp(key, "$$", 2))
46 return;
48 snprintf(fullname, 256, "%s%s", name, key + 2);
50 errno = 0;
51 size = strtoul(value, NULL, 10);
52 if (errno)
53 return;
55 set_state(my_size_id, fullname, sym, alloc_state_num(size));
58 static int bytes_per_element(struct expression *expr)
60 struct symbol *type;
61 int bpe;
63 type = get_type(expr);
64 if (!type)
65 return 0;
66 if (type->type == SYM_PTR) {
67 type = get_base_type(type);
68 bpe = bits_to_bytes(type->bit_size);
69 } else if (type->type == SYM_ARRAY) {
70 bpe = type->ctype.alignment;
71 } else {
72 return 0;
75 if (bpe == 0)
76 return 0;
77 if (bpe == -1) /* void pointer */
78 bpe = 1;
80 return bpe;
83 static int bytes_to_elements(struct expression *expr, int bytes)
85 int bpe;
87 bpe = bytes_per_element(expr);
88 if (bpe == 0)
89 return 0;
90 return bytes / bpe;
93 static int elements_to_bytes(struct expression *expr, int elements)
95 int bpe;
97 bpe = bytes_per_element(expr);
98 return elements * bpe;
101 static int get_initializer_size(struct expression *expr)
103 switch (expr->type) {
104 case EXPR_STRING:
105 return expr->string->length;
106 case EXPR_INITIALIZER: {
107 struct expression *tmp;
108 int i = 0;
109 int max = 0;
111 FOR_EACH_PTR(expr->expr_list, tmp) {
112 if (tmp->type == EXPR_INDEX && tmp->idx_to > max)
113 max = tmp->idx_to;
114 i++;
115 } END_FOR_EACH_PTR(tmp);
116 if (max)
117 return max + 1;
118 return i;
120 case EXPR_SYMBOL:
121 return get_array_size(expr);
123 return 0;
126 static float get_cast_ratio(struct expression *unstripped)
128 struct expression *start_expr;
129 struct symbol *start_type;
130 struct symbol *end_type;
131 int start_bytes = 0;
132 int end_bytes = 0;
134 start_expr = strip_expr(unstripped);
135 start_type = get_type(start_expr);
136 end_type = get_type(unstripped);
137 if (!start_type || !end_type)
138 return 1;
140 if (start_type->type == SYM_PTR)
141 start_bytes = (get_base_type(start_type))->ctype.alignment;
142 if (start_type->type == SYM_ARRAY)
143 start_bytes = (get_base_type(start_type))->bit_size / 8;
144 if (end_type->type == SYM_PTR)
145 end_bytes = (get_base_type(end_type))->ctype.alignment;
146 if (end_type->type == SYM_ARRAY)
147 end_bytes = (get_base_type(end_type))->bit_size / 8;
149 if (!start_bytes || !end_bytes)
150 return 1;
151 return start_bytes / end_bytes;
154 static int db_size;
155 static int db_size_callback(void *unused, int argc, char **argv, char **azColName)
157 db_size = atoi(argv[0]);
158 return 0;
161 static int size_from_db(struct expression *expr)
163 char *name;
165 if (!option_spammy)
166 return 0;
168 name = get_member_name(expr);
169 if (!name)
170 return 0;
172 db_size = 0;
173 run_sql(db_size_callback, "select size from type_size where type = '%s'",
174 name);
175 return db_size;
178 static int get_real_array_size(struct expression *expr)
180 struct symbol *type;
181 float cast_ratio;
182 int ret;
184 type = get_type(expr);
185 if (!type || type->type != SYM_ARRAY)
186 return 0;
188 cast_ratio = get_cast_ratio(expr);
190 ret = get_expression_value(type->array_size);
191 /* Dynamically sized array are -1 in sparse */
192 if (ret <= 0)
193 return 0;
194 /* People put one element arrays on the end of structs */
195 if (ret == 1)
196 return 0;
198 return ret * cast_ratio;
201 static int get_size_from_initializer(struct expression *expr)
203 float cast_ratio;
205 if (expr->type != EXPR_SYMBOL || !expr->symbol->initializer)
206 return 0;
207 if (expr->symbol->initializer == expr) /* int a = a; */
208 return 0;
209 cast_ratio = get_cast_ratio(expr);
210 return get_initializer_size(expr->symbol->initializer) * cast_ratio;
213 static int get_stored_size_bytes(struct expression *expr)
215 struct sm_state *sm, *tmp;
216 int max = 0;
218 sm = get_sm_state_expr(my_size_id, expr);
219 if (!sm)
220 return 0;
222 FOR_EACH_PTR(sm->possible, tmp) {
223 if (PTR_INT(tmp->state->data) > max)
224 max = PTR_INT(tmp->state->data);
225 } END_FOR_EACH_PTR(tmp);
227 return max;
230 static int get_stored_size(struct expression *expr)
232 float cast_ratio;
233 int size;
235 cast_ratio = get_cast_ratio(expr);
237 size = get_stored_size_bytes(expr);
238 size = bytes_to_elements(expr, size);
239 return size * cast_ratio;
242 static int get_size_from_strlen(struct expression *expr)
244 struct smatch_state *state;
245 long long len;
247 state = get_state_expr(my_strlen_id, expr);
248 if (!state || !state->data)
249 return 0;
250 if (get_implied_max((struct expression *)state->data, &len))
251 return len + 1; /* add one because strlen doesn't include the NULL */
252 return 0;
255 int get_array_size(struct expression *expr)
257 int ret;
259 expr = strip_expr(expr);
260 if (!expr)
261 return 0;
263 /* strcpy(foo, "BAR"); */
264 if (expr->type == EXPR_STRING)
265 return expr->string->length;
267 /* buf[4] */
268 ret = get_real_array_size(expr);
269 if (ret)
270 return ret;
272 /* buf = malloc(1024); */
273 ret = get_stored_size(expr);
274 if (ret)
275 return ret;
277 /* char *foo = "BAR" */
278 ret = get_size_from_initializer(expr);
279 if (ret)
280 return ret;
282 /* if (strlen(foo) > 4) */
283 ret = get_size_from_strlen(expr);
284 if (ret)
285 return ret;
286 return 0;
289 int get_array_size_bytes(struct expression *expr)
291 int size;
293 if (!expr)
294 return 0;
296 size = get_stored_size_bytes(expr);
297 if (size)
298 return size;
300 if (expr->type == EXPR_STRING)
301 return expr->string->length;
303 size = get_array_size(expr);
304 if (size)
305 return elements_to_bytes(expr, size);
307 return size_from_db(expr);
310 static void match_strlen_condition(struct expression *expr)
312 struct expression *left;
313 struct expression *right;
314 struct expression *str = NULL;
315 int strlen_left = 0;
316 int strlen_right = 0;
317 long long val;
318 struct smatch_state *true_state = NULL;
319 struct smatch_state *false_state = NULL;
321 if (expr->type != EXPR_COMPARE)
322 return;
323 left = strip_expr(expr->left);
324 right = strip_expr(expr->right);
326 if (left->type == EXPR_CALL && sym_name_is("strlen", left->fn)) {
327 str = get_argument_from_call_expr(left->args, 0);
328 strlen_left = 1;
330 if (right->type == EXPR_CALL && sym_name_is("strlen", right->fn)) {
331 str = get_argument_from_call_expr(right->args, 0);
332 strlen_right = 1;
335 if (!strlen_left && !strlen_right)
336 return;
337 if (strlen_left && strlen_right)
338 return;
340 if (strlen_left) {
341 if (!get_value(right, &val))
342 return;
344 if (strlen_right) {
345 if (!get_value(left, &val))
346 return;
349 if (expr->op == SPECIAL_EQUAL) {
350 set_true_false_states_expr(my_size_id, str, alloc_state_num(val + 1), NULL);
351 return;
353 if (expr->op == SPECIAL_NOTEQUAL) {
354 set_true_false_states_expr(my_size_id, str, NULL, alloc_state_num(val + 1));
355 return;
358 switch (expr->op) {
359 case '<':
360 case SPECIAL_UNSIGNED_LT:
361 if (strlen_left)
362 true_state = alloc_state_num(val);
363 else
364 false_state = alloc_state_num(val + 1);
365 break;
366 case SPECIAL_LTE:
367 case SPECIAL_UNSIGNED_LTE:
368 if (strlen_left)
369 true_state = alloc_state_num(val + 1);
370 else
371 false_state = alloc_state_num(val);
372 break;
373 case SPECIAL_GTE:
374 case SPECIAL_UNSIGNED_GTE:
375 if (strlen_left)
376 false_state = alloc_state_num(val);
377 else
378 true_state = alloc_state_num(val + 1);
379 break;
380 case '>':
381 case SPECIAL_UNSIGNED_GT:
382 if (strlen_left)
383 false_state = alloc_state_num(val + 1);
384 else
385 true_state = alloc_state_num(val);
386 break;
388 set_true_false_states_expr(my_size_id, str, true_state, false_state);
391 static struct expression *strip_ampersands(struct expression *expr)
393 struct symbol *type;
395 if (expr->type != EXPR_PREOP)
396 return expr;
397 if (expr->op != '&')
398 return expr;
399 type = get_type(expr->unop);
400 if (!type || type->type != SYM_ARRAY)
401 return expr;
402 return expr->unop;
405 static void match_array_assignment(struct expression *expr)
407 struct expression *left;
408 struct expression *right;
409 int array_size;
411 if (expr->op != '=')
412 return;
413 left = strip_expr(expr->left);
414 right = strip_expr(expr->right);
415 right = strip_ampersands(right);
416 array_size = get_array_size_bytes(right);
417 if (array_size)
418 set_state_expr(my_size_id, left, alloc_state_num(array_size));
421 static void match_alloc(const char *fn, struct expression *expr, void *_size_arg)
423 int size_arg = PTR_INT(_size_arg);
424 struct expression *right;
425 struct expression *arg;
426 long long bytes;
428 right = strip_expr(expr->right);
429 arg = get_argument_from_call_expr(right->args, size_arg);
430 if (!get_implied_value(arg, &bytes))
431 return;
433 set_state_expr(my_size_id, expr->left, alloc_state_num(bytes));
435 if (option_info) {
436 char *member = get_member_name(expr->left);
438 if (member)
439 sm_msg("info: '%s' allocated_buf_size %lld",
440 member, bytes);
441 free_string(member);
445 static void match_calloc(const char *fn, struct expression *expr, void *unused)
447 struct expression *right;
448 struct expression *arg;
449 long long elements;
450 long long size;
452 right = strip_expr(expr->right);
453 arg = get_argument_from_call_expr(right->args, 0);
454 if (!get_implied_value(arg, &elements))
455 return;
456 arg = get_argument_from_call_expr(right->args, 1);
457 if (!get_implied_value(arg, &size))
458 return;
459 set_state_expr(my_size_id, expr->left, alloc_state_num(elements * size));
462 static void match_strlen(const char *fn, struct expression *expr, void *unused)
464 struct expression *right;
465 struct expression *str;
466 struct expression *len_expr;
467 char *len_name;
468 struct smatch_state *state;
470 right = strip_expr(expr->right);
471 str = get_argument_from_call_expr(right->args, 0);
472 len_expr = strip_expr(expr->left);
474 len_name = get_variable_from_expr(len_expr, NULL);
475 if (!len_name)
476 return;
478 state = __alloc_smatch_state(0);
479 state->name = len_name;
480 state->data = len_expr;
481 set_state_expr(my_strlen_id, str, state);
484 static void match_limited(const char *fn, struct expression *expr, void *_limiter)
486 struct limiter *limiter = (struct limiter *)_limiter;
487 struct expression *dest;
488 struct expression *size_expr;
489 long long size;
491 dest = get_argument_from_call_expr(expr->args, limiter->buf_arg);
492 size_expr = get_argument_from_call_expr(expr->args, limiter->limit_arg);
493 if (!get_implied_max(size_expr, &size))
494 return;
495 set_state_expr(my_size_id, dest, alloc_state_num(size));
498 static void match_strcpy(const char *fn, struct expression *expr, void *unused)
500 struct expression fake_assign;
502 fake_assign.op = '=';
503 fake_assign.left = get_argument_from_call_expr(expr->args, 0);
504 fake_assign.right = get_argument_from_call_expr(expr->args, 1);
505 match_array_assignment(&fake_assign);
508 static void match_strndup(const char *fn, struct expression *expr, void *unused)
510 struct expression *fn_expr;
511 struct expression *size_expr;
512 long long size;
514 fn_expr = strip_expr(expr->right);
515 size_expr = get_argument_from_call_expr(fn_expr->args, 1);
516 if (!get_implied_max(size_expr, &size))
517 return;
519 /* It's easy to forget space for the NUL char */
520 size++;
521 set_state_expr(my_size_id, expr->left, alloc_state_num(size));
524 static void match_call(struct expression *expr)
526 char *name;
527 struct expression *arg;
528 int bytes;
529 int i;
531 name = get_fnptr_name(expr->fn);
532 if (!name)
533 return;
535 i = 0;
536 FOR_EACH_PTR(expr->args, arg) {
537 bytes = get_array_size_bytes(arg);
538 if (bytes > 1)
539 sm_msg("info: passes_buffer '%s' %d '$$' %d %s",
540 name, i, bytes,
541 is_static(expr->fn) ? "static" : "global");
542 i++;
543 } END_FOR_EACH_PTR(arg);
545 free_string(name);
548 static void struct_member_callback(char *fn, char *global_static, int param, char *printed_name, struct smatch_state *state)
550 if (state == &merged)
551 return;
552 sm_msg("info: passes_buffer '%s' %d '%s' %s %s", fn, param, printed_name, state->name, global_static);
555 static void match_func_end(struct symbol *sym)
557 memset(params_set, 0, sizeof(params_set));
560 void register_buf_size(int id)
562 my_size_id = id;
564 add_definition_db_callback(set_param_buf_size, BUF_SIZE);
566 add_function_assign_hook("malloc", &match_alloc, INT_PTR(0));
567 add_function_assign_hook("calloc", &match_calloc, NULL);
568 add_function_assign_hook("memdup", &match_alloc, INT_PTR(1));
569 if (option_project == PROJ_KERNEL) {
570 add_function_assign_hook("kmalloc", &match_alloc, INT_PTR(0));
571 add_function_assign_hook("kzalloc", &match_alloc, INT_PTR(0));
572 add_function_assign_hook("vmalloc", &match_alloc, INT_PTR(0));
573 add_function_assign_hook("__vmalloc", &match_alloc, INT_PTR(0));
574 add_function_assign_hook("kcalloc", &match_calloc, NULL);
575 add_function_assign_hook("drm_malloc_ab", &match_calloc, NULL);
576 add_function_assign_hook("drm_calloc_large", &match_calloc, NULL);
577 add_function_assign_hook("kmemdup", &match_alloc, INT_PTR(1));
578 add_function_assign_hook("kmemdup_user", &match_alloc, INT_PTR(1));
580 add_hook(&match_array_assignment, ASSIGNMENT_HOOK);
581 add_hook(&match_strlen_condition, CONDITION_HOOK);
582 add_function_assign_hook("strlen", &match_strlen, NULL);
584 add_function_hook("strlcpy", &match_limited, &b0_l2);
585 add_function_hook("strlcat", &match_limited, &b0_l2);
586 add_function_hook("memscan", &match_limited, &b0_l2);
588 add_function_hook("strcpy", &match_strcpy, NULL);
590 add_function_assign_hook("strndup", match_strndup, NULL);
591 if (option_project == PROJ_KERNEL)
592 add_function_assign_hook("kstrndup", match_strndup, NULL);
594 if (option_info) {
595 add_hook(&match_call, FUNCTION_CALL_HOOK);
596 add_member_info_callback(my_size_id, struct_member_callback);
599 add_hook(&match_func_end, END_FUNC_HOOK);
600 add_modification_hook(my_size_id, &set_undefined);
603 void register_strlen(int id)
605 my_strlen_id = id;
606 add_modification_hook(my_strlen_id, &set_undefined);