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 print_args(struct expression
*expr
, int size
)
55 name
= get_variable_from_expr(expr
, &sym
);
60 FOR_EACH_PTR(this_func
->ctype
.base_type
->arguments
, arg
) {
61 arg_name
= (arg
->ident
?arg
->ident
->name
:"-");
62 if (sym
== arg
&& !strcmp(name
, arg_name
)) {
63 sm_info("param %d array index. size %d", i
, size
);
67 } END_FOR_EACH_PTR(arg
);
72 static void delete(const char *name
, struct symbol
*sym
, struct expression
*expr
, void *unused
)
74 delete_state(my_used_id
, name
, sym
);
77 static int definitely_just_used_as_limiter(struct expression
*array
, struct expression
*offset
)
80 struct expression
*tmp
;
84 if (!get_implied_value(offset
, &val
))
86 if (get_array_size(array
) != val
)
89 FOR_EACH_PTR_REVERSE(big_expression_stack
, tmp
) {
94 if (tmp
->type
== EXPR_PREOP
&& tmp
->op
== '(')
96 if (tmp
->op
== '.' && !dot_ops
++)
98 if (step
== 1 && tmp
->op
== '&') {
102 if (step
== 2 && tmp
->type
== EXPR_COMPARE
)
105 } END_FOR_EACH_PTR_REVERSE(tmp
);
109 static void array_check(struct expression
*expr
)
111 struct expression
*array_expr
;
113 struct expression
*offset
;
117 expr
= strip_expr(expr
);
121 array_expr
= strip_parens(expr
->unop
->left
);
122 array_size
= get_array_size(array_expr
);
123 if (!array_size
|| array_size
== 1)
126 offset
= get_array_offset(expr
);
127 if (!get_fuzzy_max(offset
, &max
)) {
128 if (getting_address())
130 set_state_expr(my_used_id
, offset
, alloc_state_num(array_size
));
131 add_modification_hook_expr(my_used_id
, offset
, &delete, NULL
);
132 print_args(offset
, array_size
);
133 } else if (array_size
<= max
) {
134 const char *level
= "error";
136 if (getting_address())
139 if (definitely_just_used_as_limiter(array_expr
, offset
))
142 if (!option_spammy
) {
143 struct smatch_state
*state
;
145 state
= get_state_expr(SMATCH_EXTRA
, offset
);
146 if (state
&& is_whole_range(state
))
150 name
= get_variable_from_expr_complex(array_expr
, NULL
);
151 /* Blast. Smatch can't figure out glibc's strcmp __strcmp_cg()
152 * so it prints an error every time you compare to a string
153 * literal array with 4 or less chars.
155 if (name
&& strcmp(name
, "__s1") && strcmp(name
, "__s2")) {
156 sm_msg("%s: buffer overflow '%s' %d <= %lld",
157 level
, name
, array_size
, max
);
163 static void match_condition(struct expression
*expr
)
167 struct state_list
*slist
;
168 struct sm_state
*tmp
;
171 if (!expr
|| expr
->type
!= EXPR_COMPARE
)
173 if (get_implied_value(expr
->left
, &val
))
175 else if (get_implied_value(expr
->right
, &val
))
181 slist
= get_possible_states_expr(my_used_id
, expr
->right
);
183 slist
= get_possible_states_expr(my_used_id
, expr
->left
);
186 FOR_EACH_PTR(slist
, tmp
) {
187 if (tmp
->state
== &merged
)
189 boundary
= (int)tmp
->state
->data
;
191 if (boundary
< 1 && boundary
> -1) {
194 name
= get_variable_from_expr((left
? expr
->right
: expr
->left
), NULL
);
195 sm_msg("error: testing array offset '%s' after use.", name
);
198 } END_FOR_EACH_PTR(tmp
);
201 static void match_strcpy(const char *fn
, struct expression
*expr
, void *unused
)
203 struct expression
*dest
;
204 struct expression
*data
;
205 char *dest_name
= NULL
;
206 char *data_name
= NULL
;
210 dest
= get_argument_from_call_expr(expr
->args
, 0);
211 data
= get_argument_from_call_expr(expr
->args
, 1);
212 dest_size
= get_array_size_bytes(dest
);
213 data_size
= get_array_size_bytes(data
);
218 /* If the size of both arrays is known and the destination
219 * buffer is larger than the source buffer, we're okay.
221 if (data_size
&& dest_size
>= data_size
)
224 dest_name
= get_variable_from_expr_complex(dest
, NULL
);
225 data_name
= get_variable_from_expr_complex(data
, NULL
);
228 sm_msg("error: %s() '%s' too large for '%s' (%d vs %d)",
229 fn
, data_name
, dest_name
, data_size
, dest_size
);
230 else if (option_spammy
)
231 sm_msg("warn: %s() '%s' of unknown size might be too large for '%s'",
232 fn
, data_name
, dest_name
);
234 free_string(dest_name
);
235 free_string(data_name
);
238 static void match_limited(const char *fn
, struct expression
*expr
, void *_limiter
)
240 struct limiter
*limiter
= (struct limiter
*)_limiter
;
241 struct expression
*dest
;
242 struct expression
*data
;
243 char *dest_name
= NULL
;
247 dest
= get_argument_from_call_expr(expr
->args
, limiter
->buf_arg
);
248 data
= get_argument_from_call_expr(expr
->args
, limiter
->limit_arg
);
249 if (!get_fuzzy_max(data
, &needed
))
251 has
= get_array_size_bytes(dest
);
257 dest_name
= get_variable_from_expr_complex(dest
, NULL
);
258 sm_msg("error: %s() '%s' too small (%d vs %lld)", fn
, dest_name
, has
, needed
);
259 free_string(dest_name
);
262 static void match_array_func(const char *fn
, struct expression
*expr
, void *info
)
264 struct bound
*bound_info
= (struct bound
*)info
;
265 struct expression
*arg
;
268 arg
= get_argument_from_call_expr(expr
->args
, bound_info
->param
);
269 if (!get_implied_max(arg
, &offset
))
271 if (offset
>= bound_info
->size
)
272 sm_msg("error: buffer overflow calling %s. param %d. %lld >= %d",
273 fn
, bound_info
->param
, offset
, bound_info
->size
);
276 static void register_array_funcs(void)
280 struct bound
*bound_info
= NULL
;
283 snprintf(name
, 256, "%s.array_bounds", option_project_str
);
284 token
= get_tokens_file(name
);
287 if (token_type(token
) != TOKEN_STREAMBEGIN
)
290 while (token_type(token
) != TOKEN_STREAMEND
) {
291 bound_info
= malloc(sizeof(*bound_info
));
292 if (token_type(token
) != TOKEN_IDENT
)
294 func
= show_ident(token
->ident
);
296 if (token_type(token
) != TOKEN_NUMBER
)
298 bound_info
->param
= atoi(token
->number
);
300 if (token_type(token
) != TOKEN_NUMBER
)
302 bound_info
->size
= atoi(token
->number
);
303 add_function_hook(func
, &match_array_func
, bound_info
);
306 if (token_type(token
) != TOKEN_STREAMEND
) {
307 printf("failed to load %s", name
);
313 void check_overflow(int id
)
316 add_hook(&match_function_def
, FUNC_DEF_HOOK
);
317 add_hook(&array_check
, OP_HOOK
);
318 add_hook(&match_condition
, CONDITION_HOOK
);
319 add_function_hook("strcpy", &match_strcpy
, NULL
);
320 add_function_hook("strncpy", &match_limited
, &b0_l2
);
321 add_function_hook("memset", &match_limited
, &b0_l2
);
322 if (option_project
== PROJ_KERNEL
) {
323 add_function_hook("copy_to_user", &match_limited
, &b0_l2
);
324 add_function_hook("copy_to_user", &match_limited
, &b1_l2
);
325 add_function_hook("_copy_to_user", &match_limited
, &b0_l2
);
326 add_function_hook("_copy_to_user", &match_limited
, &b1_l2
);
327 add_function_hook("__copy_to_user", &match_limited
, &b0_l2
);
328 add_function_hook("__copy_to_user", &match_limited
, &b1_l2
);
329 add_function_hook("copy_from_user", &match_limited
, &b0_l2
);
330 add_function_hook("copy_from_user", &match_limited
, &b1_l2
);
331 add_function_hook("_copy_from_user", &match_limited
, &b0_l2
);
332 add_function_hook("_copy_from_user", &match_limited
, &b1_l2
);
333 add_function_hook("__copy_from_user", &match_limited
, &b0_l2
);
334 add_function_hook("__copy_from_user", &match_limited
, &b1_l2
);
335 add_function_hook("__builtin_memset", &match_limited
, &b0_l2
);
338 register_array_funcs();