2 * Copyright (C) 2011 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
18 /* Does a search for Dan Rosenberg style info leaks */
20 /* fixme: struct includes a struct with a hole in it */
21 /* function is called that clears the struct */
25 #include "smatch_function_hashtable.h"
26 #include "smatch_slist.h"
27 #include "smatch_extra.h"
29 static int my_whole_id
;
30 static int my_member_id
;
31 static int skb_put_id
;
35 static void extra_mod_hook(const char *name
, struct symbol
*sym
, struct expression
*expr
, struct smatch_state
*state
)
39 type
= get_real_base_type(sym
);
40 if (!type
|| type
->type
!= SYM_STRUCT
)
46 if (name
&& strstr(name
, "->"))
49 set_state(my_member_id
, name
, sym
, state
);
52 static void print_holey_warning(struct expression
*data
, const char *member
)
56 name
= expr_to_str(data
);
58 sm_warning("check that '%s' doesn't leak information (struct has a hole after '%s')",
61 sm_warning("check that '%s' doesn't leak information (struct has holes)",
67 static int check_struct(struct expression
*expr
, struct symbol
*type
)
69 struct symbol
*base_type
, *prev_type
;
70 struct symbol
*tmp
, *prev
;
73 if (type
->ctype
.alignment
== 1)
79 FOR_EACH_PTR(type
->symbol_list
, tmp
) {
80 base_type
= get_real_base_type(tmp
);
81 if (base_type
&& base_type
->type
== SYM_STRUCT
) {
82 if (check_struct(expr
, base_type
))
85 if (base_type
&& base_type
->type
== SYM_BITFIELD
&&
86 prev_type
&& prev_type
->type
== SYM_BITFIELD
)
89 if (!tmp
->ctype
.alignment
) {
90 sm_perror("cannot determine the alignment here");
91 } else if (align
% tmp
->ctype
.alignment
) {
93 print_holey_warning(expr
, prev
->ident
? prev
->ident
->name
: "<unknown>");
98 if (base_type
== &bool_ctype
)
100 else if (type_bits(tmp
) <= 0)
103 align
+= type_bytes(tmp
);
106 prev_type
= base_type
;
107 } END_FOR_EACH_PTR(tmp
);
109 // FIXME: this isn't the correct fix. See sbni_siocdevprivate().
110 if (prev_type
&& prev_type
->type
== SYM_BITFIELD
)
112 if (align
% type
->ctype
.alignment
) {
113 sm_msg("%s: tmp='%s' align=%d ctype.align=%ld type='%s'", __func__
,
114 tmp
->ident
? tmp
->ident
->name
: "<unknown>",
115 align
, tmp
->ctype
.alignment
,
116 type_to_str(get_real_base_type(tmp
)));
118 print_holey_warning(expr
, (prev
&& prev
->ident
) ? prev
->ident
->name
: "<unknown>");
125 static int warn_on_holey_struct(struct expression
*expr
)
128 type
= get_type(expr
);
129 if (!type
|| type
->type
!= SYM_STRUCT
)
132 return check_struct(expr
, type
);
135 static int has_global_scope(struct expression
*expr
)
139 if (expr
->type
!= EXPR_SYMBOL
)
144 return toplevel(sym
->scope
);
147 static void match_clear(const char *fn
, struct expression
*expr
, void *_arg_no
)
149 struct expression
*ptr
, *tmp
;
150 int arg_no
= PTR_INT(_arg_no
);
152 ptr
= get_argument_from_call_expr(expr
->args
, arg_no
);
155 tmp
= get_assigned_expr(ptr
);
158 ptr
= strip_expr(ptr
);
159 if (ptr
->type
!= EXPR_PREOP
|| ptr
->op
!= '&')
161 ptr
= strip_expr(ptr
->unop
);
162 set_state_expr(my_whole_id
, ptr
, &cleared
);
165 static int was_memset(struct expression
*expr
)
167 if (get_state_expr(my_whole_id
, expr
) == &cleared
)
172 static int member_initialized(char *name
, struct symbol
*outer
, struct symbol
*member
, int pointer
)
177 base
= get_base_type(member
);
178 if (!base
|| base
->type
!= SYM_BASETYPE
|| !member
->ident
)
182 snprintf(buf
, 256, "%s->%s", name
, member
->ident
->name
);
184 snprintf(buf
, 256, "%s.%s", name
, member
->ident
->name
);
186 if (get_state(my_member_id
, buf
, outer
))
192 static int member_uninitialized(char *name
, struct symbol
*outer
, struct symbol
*member
, int pointer
)
198 base
= get_base_type(member
);
199 if (!base
|| base
->type
!= SYM_BASETYPE
|| !member
->ident
)
203 snprintf(buf
, 256, "%s->%s", name
, member
->ident
->name
);
205 snprintf(buf
, 256, "%s.%s", name
, member
->ident
->name
);
207 sm
= get_sm_state(my_member_id
, buf
, outer
);
208 if (sm
&& !slist_has_state(sm
->possible
, &undefined
))
211 sm_warning("check that '%s' doesn't leak information", buf
);
215 static int check_members_initialized(struct expression
*expr
)
218 struct symbol
*outer
;
224 sym
= get_type(expr
);
225 if (sym
&& sym
->type
== SYM_PTR
) {
227 sym
= get_real_base_type(sym
);
231 if (sym
->type
!= SYM_STRUCT
)
234 name
= expr_to_var_sym(expr
, &outer
);
237 * check that at least one member was set. If all of them were not set
238 * it's more likely a problem in the check than a problem in the kernel
241 FOR_EACH_PTR(sym
->symbol_list
, tmp
) {
242 if (member_initialized(name
, outer
, tmp
, pointer
))
244 } END_FOR_EACH_PTR(tmp
);
248 FOR_EACH_PTR(sym
->symbol_list
, tmp
) {
249 if (member_uninitialized(name
, outer
, tmp
, pointer
)) {
253 } END_FOR_EACH_PTR(tmp
);
259 static void check_was_initialized(struct expression
*data
)
261 data
= strip_expr(data
);
264 if (data
->type
== EXPR_PREOP
&& data
->op
== '&')
265 data
= strip_expr(data
->unop
);
266 if (data
->type
!= EXPR_SYMBOL
)
269 if (has_global_scope(data
))
271 if (was_memset(data
))
273 if (warn_on_holey_struct(data
))
275 check_members_initialized(data
);
278 static void check_skb_put(struct expression
*data
)
280 data
= strip_expr(data
);
283 if (data
->type
== EXPR_PREOP
&& data
->op
== '&')
284 data
= strip_expr(data
->unop
);
286 if (was_memset(data
))
288 if (warn_on_holey_struct(data
))
290 check_members_initialized(data
);
293 static void match_copy_to_user(const char *fn
, struct expression
*expr
, void *_arg
)
295 int arg
= PTR_INT(_arg
);
296 struct expression
*data
;
298 data
= get_argument_from_call_expr(expr
->args
, arg
);
299 data
= strip_expr(data
);
302 if (data
->type
!= EXPR_PREOP
|| data
->op
!= '&')
304 check_was_initialized(data
);
307 static void db_param_cleared(struct expression
*expr
, int param
, char *key
, char *value
)
309 while (expr
->type
== EXPR_ASSIGNMENT
)
310 expr
= strip_expr(expr
->right
);
311 if (expr
->type
!= EXPR_CALL
)
314 match_clear(NULL
, expr
, INT_PTR(param
));
317 static struct smatch_state
*alloc_expr_state(struct expression
*expr
)
319 struct smatch_state
*state
;
322 name
= expr_to_str(expr
);
326 state
= __alloc_smatch_state(0);
327 expr
= strip_expr(expr
);
328 state
->name
= alloc_sname(name
);
334 static void match_skb_put(const char *fn
, struct expression
*expr
, void *unused
)
337 struct smatch_state
*state
;
339 type
= get_type(expr
->left
);
340 type
= get_real_base_type(type
);
341 if (!type
|| type
->type
!= SYM_STRUCT
)
343 state
= alloc_expr_state(expr
->left
);
344 set_state_expr(skb_put_id
, expr
->left
, state
);
347 static void match_return_skb_put(struct expression
*expr
)
352 if (is_error_return(expr
))
355 stree
= __get_cur_stree();
357 FOR_EACH_MY_SM(skb_put_id
, stree
, sm
) {
358 check_skb_put(sm
->state
->data
);
359 } END_FOR_EACH_SM(sm
);
362 static void register_clears_argument(void)
368 token
= get_tokens_file("kernel.clears_argument");
371 if (token_type(token
) != TOKEN_STREAMBEGIN
)
374 while (token_type(token
) != TOKEN_STREAMEND
) {
375 if (token_type(token
) != TOKEN_IDENT
)
377 func
= show_ident(token
->ident
);
379 if (token_type(token
) != TOKEN_NUMBER
)
381 arg
= atoi(token
->number
);
383 add_function_hook(func
, &match_clear
, INT_PTR(arg
));
389 static void register_copy_funcs_from_file(void)
395 token
= get_tokens_file("kernel.rosenberg_funcs");
398 if (token_type(token
) != TOKEN_STREAMBEGIN
)
401 while (token_type(token
) != TOKEN_STREAMEND
) {
402 if (token_type(token
) != TOKEN_IDENT
)
404 func
= show_ident(token
->ident
);
406 if (token_type(token
) != TOKEN_NUMBER
)
408 arg
= atoi(token
->number
);
409 add_function_hook(func
, &match_copy_to_user
, INT_PTR(arg
));
415 void check_rosenberg(int id
)
417 if (option_project
!= PROJ_KERNEL
)
421 add_function_hook("memset", &match_clear
, INT_PTR(0));
422 add_function_hook("memcpy", &match_clear
, INT_PTR(0));
423 add_function_hook("memzero", &match_clear
, INT_PTR(0));
424 add_function_hook("__memset", &match_clear
, INT_PTR(0));
425 add_function_hook("__memcpy", &match_clear
, INT_PTR(0));
426 add_function_hook("__memzero", &match_clear
, INT_PTR(0));
427 add_function_hook("__builtin_memset", &match_clear
, INT_PTR(0));
428 add_function_hook("__builtin_memcpy", &match_clear
, INT_PTR(0));
430 register_clears_argument();
431 select_return_states_hook(BUF_CLEARED
, &db_param_cleared
);
433 register_copy_funcs_from_file();
436 void check_rosenberg2(int id
)
438 if (option_project
!= PROJ_KERNEL
)
442 set_dynamic_states(my_member_id
);
443 add_extra_mod_hook(&extra_mod_hook
);
446 void check_rosenberg3(int id
)
448 if (option_project
!= PROJ_KERNEL
)
452 set_dynamic_states(skb_put_id
);
453 add_function_assign_hook("skb_put", &match_skb_put
, NULL
);
454 add_hook(&match_return_skb_put
, RETURN_HOOK
);