2 * Copyright (C) 2010 Dan Carpenter.
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
21 #include "smatch_slist.h"
22 #include "smatch_extra.h"
30 * This check has two smatch IDs.
31 * my_used_id - keeps a record of array offsets that have been used.
32 * If the code checks that they are within bounds later on,
33 * we complain about using an array offset before checking
34 * that it is within bounds.
36 static int my_used_id
;
38 static struct symbol
*this_func
;
40 static void match_function_def(struct symbol
*sym
)
49 static struct limiter b0_l2
= {0, 2};
50 static struct limiter b1_l2
= {1, 2};
52 static void delete(struct sm_state
*sm
, struct expression
*mod_expr
)
54 set_state(my_used_id
, sm
->name
, sm
->sym
, &undefined
);
57 static int definitely_just_used_as_limiter(struct expression
*array
, struct expression
*offset
)
60 struct expression
*tmp
;
64 if (!get_implied_value(offset
, &sval
))
66 if (get_array_size(array
) != sval
.value
)
69 FOR_EACH_PTR_REVERSE(big_expression_stack
, tmp
) {
74 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '(')
76 if (tmp
->op
== '.' && !dot_ops
++)
78 if (step
== 1 && tmp
->op
== '&') {
82 if (step
== 2 && tmp
->type
== EXPR_COMPARE
)
84 if (step
== 2 && tmp
->type
== EXPR_ASSIGNMENT
)
87 } END_FOR_EACH_PTR_REVERSE(tmp
);
91 static int get_the_max(struct expression
*expr
, sval_t
*sval
)
93 if (get_hard_max(expr
, sval
))
97 if (get_fuzzy_max(expr
, sval
))
99 if (is_user_data(expr
))
100 return get_absolute_max(expr
, sval
);
104 static int common_false_positives(char *name
)
109 /* Smatch can't figure out glibc's strcmp __strcmp_cg()
110 * so it prints an error every time you compare to a string
111 * literal array with 4 or less chars.
113 if (strcmp(name
, "__s1") == 0 || strcmp(name
, "__s2") == 0)
117 * passing WORK_CPU_UNBOUND is idiomatic but Smatch doesn't understand
118 * how it's used so it causes a bunch of false positives.
120 if (option_project
== PROJ_KERNEL
&&
121 strcmp(name
, "__per_cpu_offset") == 0)
126 static void array_check(struct expression
*expr
)
128 struct expression
*array_expr
;
130 struct expression
*offset
;
134 expr
= strip_expr(expr
);
138 array_expr
= strip_parens(expr
->unop
->left
);
139 array_size
= get_array_size(array_expr
);
140 if (!array_size
|| array_size
== 1)
143 offset
= get_array_offset(expr
);
144 if (!get_the_max(offset
, &max
)) {
145 if (getting_address())
147 if (is_capped(offset
))
149 set_state_expr(my_used_id
, offset
, alloc_state_num(array_size
));
150 } else if (array_size
<= max
.value
) {
151 const char *level
= "error";
153 if (getting_address())
156 if (definitely_just_used_as_limiter(array_expr
, offset
))
159 name
= expr_to_str(array_expr
);
160 if (!common_false_positives(name
)) {
161 sm_msg("%s: buffer overflow '%s' %d <= %s",
162 level
, name
, array_size
, sval_to_str(max
));
168 static void match_condition(struct expression
*expr
)
172 struct state_list
*slist
;
173 struct sm_state
*tmp
;
176 if (!expr
|| expr
->type
!= EXPR_COMPARE
)
178 if (get_macro_name(expr
->pos
))
180 if (get_implied_value(expr
->left
, &sval
))
182 else if (get_implied_value(expr
->right
, &sval
))
188 slist
= get_possible_states_expr(my_used_id
, expr
->right
);
190 slist
= get_possible_states_expr(my_used_id
, expr
->left
);
193 FOR_EACH_PTR(slist
, tmp
) {
194 if (tmp
->state
== &merged
|| tmp
->state
== &undefined
)
196 boundary
= PTR_INT(tmp
->state
->data
);
197 boundary
-= sval
.value
;
198 if (boundary
< 1 && boundary
> -1) {
201 name
= expr_to_var(left
? expr
->right
: expr
->left
);
202 sm_msg("error: testing array offset '%s' after use.", name
);
205 } END_FOR_EACH_PTR(tmp
);
208 static void match_strcpy(const char *fn
, struct expression
*expr
, void *unused
)
210 struct expression
*dest
;
211 struct expression
*data
;
212 char *dest_name
= NULL
;
213 char *data_name
= NULL
;
217 dest
= get_argument_from_call_expr(expr
->args
, 0);
218 data
= get_argument_from_call_expr(expr
->args
, 1);
219 dest_size
= get_array_size_bytes(dest
);
220 data_size
= get_array_size_bytes(data
);
225 /* If the size of both arrays is known and the destination
226 * buffer is larger than the source buffer, we're okay.
228 if (data_size
&& dest_size
>= data_size
)
231 dest_name
= expr_to_str(dest
);
232 data_name
= expr_to_str(data
);
235 sm_msg("error: %s() '%s' too large for '%s' (%d vs %d)",
236 fn
, data_name
, dest_name
, data_size
, dest_size
);
237 else if (option_spammy
)
238 sm_msg("warn: %s() '%s' of unknown size might be too large for '%s'",
239 fn
, data_name
, dest_name
);
241 free_string(dest_name
);
242 free_string(data_name
);
245 static void match_snprintf(const char *fn
, struct expression
*expr
, void *unused
)
247 struct expression
*dest
;
248 struct expression
*dest_size_expr
;
249 struct expression
*format_string
;
250 struct expression
*data
;
251 char *data_name
= NULL
;
257 dest
= get_argument_from_call_expr(expr
->args
, 0);
258 dest_size_expr
= get_argument_from_call_expr(expr
->args
, 1);
259 format_string
= get_argument_from_call_expr(expr
->args
, 2);
260 data
= get_argument_from_call_expr(expr
->args
, 3);
262 dest_size
= get_array_size_bytes(dest
);
263 if (!get_implied_value(dest_size_expr
, &limit_size
))
265 if (dest_size
&& dest_size
< limit_size
.value
)
266 sm_msg("error: snprintf() is printing too much %s vs %d",
267 sval_to_str(limit_size
), dest_size
);
268 format
= expr_to_var(format_string
);
271 if (strcmp(format
, "\"%s\""))
273 data_name
= expr_to_str(data
);
274 data_size
= get_array_size_bytes(data
);
275 if (limit_size
.value
< data_size
)
276 sm_msg("error: snprintf() chops off the last chars of '%s': %d vs %s",
277 data_name
, data_size
, sval_to_str(limit_size
));
279 free_string(data_name
);
283 static void match_sprintf(const char *fn
, struct expression
*expr
, void *unused
)
285 struct expression
*dest
;
286 struct expression
*format_string
;
287 struct expression
*data
;
288 char *data_name
= NULL
;
293 dest
= get_argument_from_call_expr(expr
->args
, 0);
294 format_string
= get_argument_from_call_expr(expr
->args
, 1);
295 data
= get_argument_from_call_expr(expr
->args
, 2);
297 dest_size
= get_array_size_bytes(dest
);
300 format
= expr_to_var(format_string
);
303 if (strcmp(format
, "\"%s\""))
305 data_name
= expr_to_str(data
);
306 data_size
= get_array_size_bytes(data
);
307 if (dest_size
< data_size
)
308 sm_msg("error: sprintf() copies too much data from '%s': %d vs %d",
309 data_name
, data_size
, dest_size
);
311 free_string(data_name
);
315 static void match_limited(const char *fn
, struct expression
*expr
, void *_limiter
)
317 struct limiter
*limiter
= (struct limiter
*)_limiter
;
318 struct expression
*dest
;
319 struct expression
*data
;
320 char *dest_name
= NULL
;
324 dest
= get_argument_from_call_expr(expr
->args
, limiter
->buf_arg
);
325 data
= get_argument_from_call_expr(expr
->args
, limiter
->limit_arg
);
326 if (!get_the_max(data
, &needed
))
328 has
= get_array_size_bytes_max(dest
);
331 if (has
>= needed
.value
)
334 dest_name
= expr_to_str(dest
);
335 sm_msg("error: %s() '%s' too small (%d vs %s)", fn
, dest_name
, has
, sval_to_str(needed
));
336 free_string(dest_name
);
339 static void db_returns_buf_size(struct expression
*expr
, int param
, char *unused
, char *math
)
341 struct expression
*call
;
342 struct symbol
*left_type
, *right_type
;
346 if (expr
->type
!= EXPR_ASSIGNMENT
)
348 right_type
= get_pointer_type(expr
->right
);
349 if (!right_type
|| right_type
->bit_size
!= -1)
352 call
= strip_expr(expr
->right
);
353 left_type
= get_pointer_type(expr
->left
);
355 if (!parse_call_math(call
, math
, &sval
) || sval
.value
== 0)
359 bytes
= bits_to_bytes(left_type
->bit_size
);
362 if (sval
.uvalue
>= bytes
)
364 sm_msg("error: not allocating enough data %d vs %s", bytes
, sval_to_str(sval
));
367 static void register_funcs_from_file(void)
373 struct limiter
*limiter
;
375 snprintf(name
, 256, "%s.sizeof_param", option_project_str
);
377 token
= get_tokens_file(name
);
380 if (token_type(token
) != TOKEN_STREAMBEGIN
)
383 while (token_type(token
) != TOKEN_STREAMEND
) {
384 if (token_type(token
) != TOKEN_IDENT
)
386 func
= show_ident(token
->ident
);
389 if (token_type(token
) != TOKEN_NUMBER
)
391 size
= atoi(token
->number
);
394 if (token_type(token
) != TOKEN_NUMBER
)
396 buf
= atoi(token
->number
);
398 limiter
= malloc(sizeof(*limiter
));
399 limiter
->limit_arg
= size
;
400 limiter
->buf_arg
= buf
;
402 add_function_hook(func
, &match_limited
, limiter
);
409 void check_overflow(int id
)
412 register_funcs_from_file();
413 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
414 add_hook(&array_check
, OP_HOOK
);
415 add_hook(&match_condition
, CONDITION_HOOK
);
416 add_function_hook("strcpy", &match_strcpy
, NULL
);
417 add_function_hook("snprintf", &match_snprintf
, NULL
);
418 add_function_hook("sprintf", &match_sprintf
, NULL
);
419 add_function_hook("memcmp", &match_limited
, &b0_l2
);
420 add_function_hook("memcmp", &match_limited
, &b1_l2
);
421 select_return_states_hook(BUF_SIZE
, &db_returns_buf_size
);
422 add_modification_hook(my_used_id
, &delete);
423 if (option_project
== PROJ_KERNEL
) {
424 add_function_hook("copy_to_user", &match_limited
, &b0_l2
);
425 add_function_hook("copy_to_user", &match_limited
, &b1_l2
);
426 add_function_hook("_copy_to_user", &match_limited
, &b0_l2
);
427 add_function_hook("_copy_to_user", &match_limited
, &b1_l2
);
428 add_function_hook("__copy_to_user", &match_limited
, &b0_l2
);
429 add_function_hook("__copy_to_user", &match_limited
, &b1_l2
);
430 add_function_hook("copy_from_user", &match_limited
, &b0_l2
);
431 add_function_hook("copy_from_user", &match_limited
, &b1_l2
);
432 add_function_hook("_copy_from_user", &match_limited
, &b0_l2
);
433 add_function_hook("_copy_from_user", &match_limited
, &b1_l2
);
434 add_function_hook("__copy_from_user", &match_limited
, &b0_l2
);
435 add_function_hook("__copy_from_user", &match_limited
, &b1_l2
);