2 * smatch/check_overflow.c
4 * Copyright (C) 2010 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
13 #include "smatch_slist.h"
14 #include "smatch_extra.h"
22 * This check has two smatch IDs.
23 * my_used_id - keeps a record of array offsets that have been used.
24 * If the code checks that they are within bounds later on,
25 * we complain about using an array offset before checking
26 * that it is within bounds.
28 static int my_used_id
;
30 static struct symbol
*this_func
;
32 static void match_function_def(struct symbol
*sym
)
41 static struct limiter b0_l2
= {0, 2};
42 static struct limiter b1_l2
= {1, 2};
44 static void delete(struct sm_state
*sm
)
46 set_state(my_used_id
, sm
->name
, sm
->sym
, &undefined
);
49 static int definitely_just_used_as_limiter(struct expression
*array
, struct expression
*offset
)
52 struct expression
*tmp
;
56 if (!get_implied_value(offset
, &sval
))
58 if (get_array_size(array
) != sval
.value
)
61 FOR_EACH_PTR_REVERSE(big_expression_stack
, tmp
) {
66 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '(')
68 if (tmp
->op
== '.' && !dot_ops
++)
70 if (step
== 1 && tmp
->op
== '&') {
74 if (step
== 2 && tmp
->type
== EXPR_COMPARE
)
76 if (step
== 2 && tmp
->type
== EXPR_ASSIGNMENT
)
79 } END_FOR_EACH_PTR_REVERSE(tmp
);
83 static void array_check(struct expression
*expr
)
85 struct expression
*array_expr
;
87 struct expression
*offset
;
91 expr
= strip_expr(expr
);
95 array_expr
= strip_parens(expr
->unop
->left
);
96 array_size
= get_array_size(array_expr
);
97 if (!array_size
|| array_size
== 1)
100 offset
= get_array_offset(expr
);
101 if (!get_fuzzy_max(offset
, &max
)) {
102 if (getting_address())
104 set_state_expr(my_used_id
, offset
, alloc_state_num(array_size
));
105 } else if (array_size
<= max
.value
) {
106 const char *level
= "error";
108 if (getting_address())
111 if (definitely_just_used_as_limiter(array_expr
, offset
))
114 if (!option_spammy
) {
115 struct smatch_state
*state
;
117 state
= get_state_expr(SMATCH_EXTRA
, offset
);
118 if (state
&& estate_is_whole(state
))
122 name
= expr_to_str(array_expr
);
123 /* Blast. Smatch can't figure out glibc's strcmp __strcmp_cg()
124 * so it prints an error every time you compare to a string
125 * literal array with 4 or less chars.
127 if (name
&& strcmp(name
, "__s1") && strcmp(name
, "__s2")) {
128 sm_msg("%s: buffer overflow '%s' %d <= %s",
129 level
, name
, array_size
, sval_to_str(max
));
135 static void match_condition(struct expression
*expr
)
139 struct state_list
*slist
;
140 struct sm_state
*tmp
;
143 if (!expr
|| expr
->type
!= EXPR_COMPARE
)
145 if (get_macro_name(expr
->pos
))
147 if (get_implied_value(expr
->left
, &sval
))
149 else if (get_implied_value(expr
->right
, &sval
))
155 slist
= get_possible_states_expr(my_used_id
, expr
->right
);
157 slist
= get_possible_states_expr(my_used_id
, expr
->left
);
160 FOR_EACH_PTR(slist
, tmp
) {
161 if (tmp
->state
== &merged
|| tmp
->state
== &undefined
)
163 boundary
= PTR_INT(tmp
->state
->data
);
164 boundary
-= sval
.value
;
165 if (boundary
< 1 && boundary
> -1) {
168 name
= expr_to_var(left
? expr
->right
: expr
->left
);
169 sm_msg("error: testing array offset '%s' after use.", name
);
172 } END_FOR_EACH_PTR(tmp
);
175 static void match_strcpy(const char *fn
, struct expression
*expr
, void *unused
)
177 struct expression
*dest
;
178 struct expression
*data
;
179 char *dest_name
= NULL
;
180 char *data_name
= NULL
;
184 dest
= get_argument_from_call_expr(expr
->args
, 0);
185 data
= get_argument_from_call_expr(expr
->args
, 1);
186 dest_size
= get_array_size_bytes(dest
);
187 data_size
= get_array_size_bytes(data
);
192 /* If the size of both arrays is known and the destination
193 * buffer is larger than the source buffer, we're okay.
195 if (data_size
&& dest_size
>= data_size
)
198 dest_name
= expr_to_str(dest
);
199 data_name
= expr_to_str(data
);
202 sm_msg("error: %s() '%s' too large for '%s' (%d vs %d)",
203 fn
, data_name
, dest_name
, data_size
, dest_size
);
204 else if (option_spammy
)
205 sm_msg("warn: %s() '%s' of unknown size might be too large for '%s'",
206 fn
, data_name
, dest_name
);
208 free_string(dest_name
);
209 free_string(data_name
);
212 static void match_snprintf(const char *fn
, struct expression
*expr
, void *unused
)
214 struct expression
*dest
;
215 struct expression
*dest_size_expr
;
216 struct expression
*format_string
;
217 struct expression
*data
;
218 char *data_name
= NULL
;
224 dest
= get_argument_from_call_expr(expr
->args
, 0);
225 dest_size_expr
= get_argument_from_call_expr(expr
->args
, 1);
226 format_string
= get_argument_from_call_expr(expr
->args
, 2);
227 data
= get_argument_from_call_expr(expr
->args
, 3);
229 dest_size
= get_array_size_bytes(dest
);
230 if (!get_implied_value(dest_size_expr
, &limit_size
))
232 if (dest_size
&& dest_size
< limit_size
.value
)
233 sm_msg("error: snprintf() is printing too much %s vs %d",
234 sval_to_str(limit_size
), dest_size
);
235 format
= expr_to_var(format_string
);
238 if (strcmp(format
, "\"%s\""))
240 data_name
= expr_to_str(data
);
241 data_size
= get_array_size_bytes(data
);
242 if (limit_size
.value
< data_size
)
243 sm_msg("error: snprintf() chops off the last chars of '%s': %d vs %s",
244 data_name
, data_size
, sval_to_str(limit_size
));
246 free_string(data_name
);
250 static void match_sprintf(const char *fn
, struct expression
*expr
, void *unused
)
252 struct expression
*dest
;
253 struct expression
*format_string
;
254 struct expression
*data
;
255 char *data_name
= NULL
;
260 dest
= get_argument_from_call_expr(expr
->args
, 0);
261 format_string
= get_argument_from_call_expr(expr
->args
, 1);
262 data
= get_argument_from_call_expr(expr
->args
, 2);
264 dest_size
= get_array_size_bytes(dest
);
267 format
= expr_to_var(format_string
);
270 if (strcmp(format
, "\"%s\""))
272 data_name
= expr_to_str(data
);
273 data_size
= get_array_size_bytes(data
);
274 if (dest_size
< data_size
)
275 sm_msg("error: sprintf() copies too much data from '%s': %d vs %d",
276 data_name
, data_size
, dest_size
);
278 free_string(data_name
);
282 static void match_limited(const char *fn
, struct expression
*expr
, void *_limiter
)
284 struct limiter
*limiter
= (struct limiter
*)_limiter
;
285 struct expression
*dest
;
286 struct expression
*data
;
287 char *dest_name
= NULL
;
291 dest
= get_argument_from_call_expr(expr
->args
, limiter
->buf_arg
);
292 data
= get_argument_from_call_expr(expr
->args
, limiter
->limit_arg
);
293 if (!get_fuzzy_max(data
, &needed
))
295 has
= get_array_size_bytes(dest
);
298 if (has
>= needed
.value
)
301 dest_name
= expr_to_str(dest
);
302 sm_msg("error: %s() '%s' too small (%d vs %s)", fn
, dest_name
, has
, sval_to_str(needed
));
303 free_string(dest_name
);
306 static void db_returns_buf_size(struct expression
*expr
, int param
, char *unused
, char *math
)
308 struct expression
*call
;
313 if (expr
->type
!= EXPR_ASSIGNMENT
)
315 call
= strip_expr(expr
->right
);
316 type
= get_pointer_type(expr
->left
);
318 if (!parse_call_math(call
, math
, &sval
) || sval
.value
== 0)
322 bytes
= bits_to_bytes(type
->bit_size
);
325 if (sval
.uvalue
>= bytes
)
327 sm_msg("error: not allocating enough data %d vs %s", bytes
, sval_to_str(sval
));
330 static void register_funcs_from_file(void)
336 struct limiter
*limiter
;
338 snprintf(name
, 256, "%s.sizeof_param", option_project_str
);
340 token
= get_tokens_file(name
);
343 if (token_type(token
) != TOKEN_STREAMBEGIN
)
346 while (token_type(token
) != TOKEN_STREAMEND
) {
347 if (token_type(token
) != TOKEN_IDENT
)
349 func
= show_ident(token
->ident
);
352 if (token_type(token
) != TOKEN_NUMBER
)
354 size
= atoi(token
->number
);
357 if (token_type(token
) != TOKEN_NUMBER
)
359 buf
= atoi(token
->number
);
361 limiter
= malloc(sizeof(*limiter
));
362 limiter
->limit_arg
= size
;
363 limiter
->buf_arg
= buf
;
365 add_function_hook(func
, &match_limited
, limiter
);
372 void check_overflow(int id
)
375 register_funcs_from_file();
376 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
377 add_hook(&array_check
, OP_HOOK
);
378 add_hook(&match_condition
, CONDITION_HOOK
);
379 add_function_hook("strcpy", &match_strcpy
, NULL
);
380 add_function_hook("snprintf", &match_snprintf
, NULL
);
381 add_function_hook("sprintf", &match_sprintf
, NULL
);
382 add_function_hook("memcmp", &match_limited
, &b0_l2
);
383 add_function_hook("memcmp", &match_limited
, &b1_l2
);
384 add_db_return_states_callback(BUF_SIZE
, &db_returns_buf_size
);
385 add_modification_hook(my_used_id
, &delete);
386 if (option_project
== PROJ_KERNEL
) {
387 add_function_hook("copy_to_user", &match_limited
, &b0_l2
);
388 add_function_hook("copy_to_user", &match_limited
, &b1_l2
);
389 add_function_hook("_copy_to_user", &match_limited
, &b0_l2
);
390 add_function_hook("_copy_to_user", &match_limited
, &b1_l2
);
391 add_function_hook("__copy_to_user", &match_limited
, &b0_l2
);
392 add_function_hook("__copy_to_user", &match_limited
, &b1_l2
);
393 add_function_hook("copy_from_user", &match_limited
, &b0_l2
);
394 add_function_hook("copy_from_user", &match_limited
, &b1_l2
);
395 add_function_hook("_copy_from_user", &match_limited
, &b0_l2
);
396 add_function_hook("_copy_from_user", &match_limited
, &b1_l2
);
397 add_function_hook("__copy_from_user", &match_limited
, &b0_l2
);
398 add_function_hook("__copy_from_user", &match_limited
, &b1_l2
);