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
19 #include "smatch_slist.h"
26 static char *my_get_variable(struct expression
*expr
, struct symbol
**sym
)
30 name
= expr_to_var_sym(expr
, sym
);
35 return (*sym
)->ident
->name
;
38 static void match_kmalloc(const char *fn
, struct expression
*expr
, void *unused
)
43 name
= my_get_variable(expr
->left
, &sym
);
46 set_state(my_id
, name
, sym
, &alloced
);
49 static void match_strcpy(const char *fn
, struct expression
*expr
, void *unused
)
51 struct expression
*dest
;
55 dest
= get_argument_from_call_expr(expr
->args
, 0);
56 name
= my_get_variable(dest
, &sym
);
59 if (!get_state(my_id
, name
, sym
))
61 set_state(my_id
, name
, sym
, &string
);
64 static void match_copy_to_user(const char *fn
, struct expression
*expr
, void *unused
)
66 struct expression
*src
;
71 src
= get_argument_from_call_expr(expr
->args
, 1);
72 name
= my_get_variable(src
, &sym
);
75 sm
= get_sm_state(my_id
, name
, sym
);
76 if (!sm
|| !slist_has_state(sm
->possible
, &string
))
78 name
= expr_to_var(src
);
79 sm_msg("warn: possible info leak '%s'", name
);
83 void check_info_leak(int id
)
85 if (option_project
!= PROJ_KERNEL
)
88 add_function_assign_hook("kmalloc", &match_kmalloc
, NULL
);
89 add_function_hook("strcpy", &match_strcpy
, NULL
);
90 add_function_hook("strlcpy", &match_strcpy
, NULL
);
91 add_function_hook("strlcat", &match_strcpy
, NULL
);
92 add_function_hook("strncpy", &match_strcpy
, NULL
);
93 add_function_hook("copy_to_user", &match_copy_to_user
, NULL
);