#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)
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);
}