forked from error27/smatch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
check_allocating_enough_data.c
58 lines (50 loc) · 1.62 KB
/
check_allocating_enough_data.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* Copyright (C) 2010 Dan Carpenter.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see http://www.gnu.org/copyleft/gpl.txt
*/
#include "smatch.h"
static void db_returns_buf_size(struct expression *expr, int param, char *unused, char *math)
{
struct expression *call;
struct symbol *left_type, *right_type;
int bytes;
sval_t sval;
char *str;
if (expr->type != EXPR_ASSIGNMENT || is_fake_var_assign(expr))
return;
if (!is_fresh_alloc(expr->right))
return;
right_type = get_pointer_type(expr->right);
if (!right_type || type_bits(right_type) != -1)
return;
call = strip_expr(expr->right);
left_type = get_pointer_type(expr->left);
if (!parse_call_math(call, math, &sval) || sval.value == 0)
return;
if (!left_type)
return;
bytes = type_bytes(left_type);
if (bytes <= 0)
return;
if (sval.uvalue >= bytes)
return;
str = expr_to_str(expr->left);
sm_error("not allocating enough for = '%s' %d vs %s", str, bytes, sval_to_str(sval));
free_string(str);
}
void check_allocating_enough_data(int id)
{
select_return_states_hook(BUF_SIZE, &db_returns_buf_size);
}