buf_size: allow strncmp("foo", bar, 100) where 100 is larger than "foo"
[smatch.git] / check_user_data.c
blobd97598186629f4a85ce29a56bc359c0c9779bf8c
1 /*
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
19 * There are a couple checks that try to see if a variable
20 * comes from the user. It would be better to unify them
21 * into one place. Also it we should follow the data down
22 * the call paths. Hence this file.
25 #include "smatch.h"
26 #include "smatch_slist.h"
27 #include "smatch_extra.h"
29 static int my_id;
31 STATE(capped);
32 STATE(user_data_passed);
33 STATE(user_data_set);
35 enum {
36 SET_DATA = 1,
37 PASSED_DATA = 2,
40 int is_user_macro(struct expression *expr)
42 char *macro;
43 struct range_list *rl;
45 macro = get_macro_name(expr->pos);
47 if (!macro)
48 return 0;
49 if (get_implied_rl(expr, &rl) && !is_whole_rl(rl))
50 return 0;
51 if (strcmp(macro, "ntohl") == 0)
52 return SET_DATA;
53 if (strcmp(macro, "ntohs") == 0)
54 return SET_DATA;
55 return 0;
58 static int has_user_data_state(struct expression *expr)
60 struct stree *stree;
61 struct sm_state *sm;
62 struct symbol *sym;
63 char *name;
65 expr = strip_expr(expr);
66 if (expr->type == EXPR_PREOP && expr->op == '&')
67 expr = strip_expr(expr->unop);
69 name = expr_to_str_sym(expr, &sym);
70 free_string(name);
71 if (!sym)
72 return 1;
74 stree = __get_cur_stree();
75 FOR_EACH_MY_SM(my_id, stree, sm) {
76 if (sm->sym == sym)
77 return 1;
78 } END_FOR_EACH_SM(sm);
79 return 0;
82 static int passes_user_data(struct expression *expr)
84 struct expression *arg;
86 FOR_EACH_PTR(expr->args, arg) {
87 if (is_user_data(arg))
88 return 1;
89 if (has_user_data_state(arg))
90 return 1;
91 } END_FOR_EACH_PTR(arg);
93 return 0;
96 static struct expression *db_expr;
97 static int db_user_data;
98 static int db_user_data_callback(void *unused, int argc, char **argv, char **azColName)
100 if (atoi(argv[0]) == PASSED_DATA && !passes_user_data(db_expr))
101 return 0;
102 db_user_data = 1;
103 return 0;
106 static int is_user_fn_db(struct expression *expr)
108 struct symbol *sym;
109 static char sql_filter[1024];
111 if (is_fake_call(expr))
112 return 0;
113 if (expr->fn->type != EXPR_SYMBOL)
114 return 0;
115 sym = expr->fn->symbol;
116 if (!sym)
117 return 0;
119 if (sym->ctype.modifiers & MOD_STATIC) {
120 snprintf(sql_filter, 1024, "file = '%s' and function = '%s';",
121 get_filename(), sym->ident->name);
122 } else {
123 snprintf(sql_filter, 1024, "function = '%s' and static = 0;",
124 sym->ident->name);
127 db_expr = expr;
128 db_user_data = 0;
129 run_sql(db_user_data_callback,
130 "select value from return_states where type=%d and parameter = -1 and key = '$$' and %s",
131 USER_DATA, sql_filter);
132 return db_user_data;
135 static int is_user_function(struct expression *expr)
137 if (expr->type != EXPR_CALL)
138 return 0;
139 return is_user_fn_db(expr);
142 static int is_skb_data(struct expression *expr)
144 struct symbol *sym;
145 char *name;
146 int len;
147 int ret = 0;
149 name = expr_to_var_sym(expr, &sym);
150 if (!name || !sym)
151 goto free;
153 sym = get_base_type(sym);
154 if (!sym || sym->type != SYM_PTR)
155 goto free;
156 sym = get_base_type(sym);
157 if (!sym || sym->type != SYM_STRUCT || !sym->ident)
158 goto free;
159 if (strcmp(sym->ident->name, "sk_buff") != 0)
160 goto free;
162 len = strlen(name);
163 if (len < 6)
164 goto free;
165 if (strcmp(name + len - 6, "->data") == 0)
166 ret = SET_DATA;
168 free:
169 free_string(name);
170 return ret;
173 static int in_container_of_macro(struct expression *expr)
175 char *macro;
177 macro = get_macro_name(expr->pos);
179 if (!macro)
180 return 0;
181 if (strcmp(macro, "container_of") == 0)
182 return 1;
183 return 0;
186 static int is_user_data_state(struct expression *expr)
188 struct stree *stree = NULL;
189 struct sm_state *tmp;
190 struct symbol *sym;
191 char *name;
192 int user = 0;
194 tmp = get_sm_state_expr(my_id, expr);
195 if (tmp) {
196 if (slist_has_state(tmp->possible, &user_data_set))
197 return SET_DATA;
198 if (slist_has_state(tmp->possible, &user_data_passed))
199 return PASSED_DATA;
200 return 0;
203 name = expr_to_str_sym(expr, &sym);
204 if (!name || !sym)
205 goto free;
207 stree = __get_cur_stree();
208 FOR_EACH_MY_SM(my_id, stree, tmp) {
209 if (tmp->sym != sym)
210 continue;
211 if (!strncmp(tmp->name, name, strlen(tmp->name))) {
212 if (slist_has_state(tmp->possible, &user_data_set))
213 user = SET_DATA;
214 else if (slist_has_state(tmp->possible, &user_data_passed))
215 user = PASSED_DATA;
216 goto free;
218 } END_FOR_EACH_SM(tmp);
220 free:
221 free_string(name);
222 return user;
225 int is_user_data(struct expression *expr)
227 int user_data;
229 if (!expr)
230 return 0;
232 if (is_capped(expr))
233 return 0;
234 if (in_container_of_macro(expr))
235 return 0;
237 user_data = is_user_macro(expr);
238 if (user_data)
239 return user_data;
240 user_data = is_user_function(expr);
241 if (user_data)
242 return user_data;
243 user_data = is_skb_data(expr);
244 if (user_data)
245 return user_data;
247 expr = strip_expr(expr); /* this has to come after is_user_macro() */
249 if (expr->type == EXPR_BINOP) {
250 user_data = is_user_data(expr->left);
251 if (user_data)
252 return user_data;
253 if (is_array(expr))
254 return 0;
255 user_data = is_user_data(expr->right);
256 if (user_data)
257 return user_data;
258 return 0;
260 if (expr->type == EXPR_PREOP && (expr->op == '&' || expr->op == '*'))
261 expr = strip_expr(expr->unop);
263 return is_user_data_state(expr);
266 int is_capped_user_data(struct expression *expr)
268 struct sm_state *sm;
270 sm = get_sm_state_expr(my_id, expr);
271 if (!sm)
272 return 0;
273 if (slist_has_state(sm->possible, &capped))
274 return 1;
275 return 0;
278 static void set_param_user_data(const char *name, struct symbol *sym, char *key, char *value)
280 char fullname[256];
282 /* sanity check. this should always be true. */
283 if (strncmp(key, "$$", 2) != 0)
284 return;
285 snprintf(fullname, 256, "%s%s", name, key + 2);
286 set_state(my_id, fullname, sym, &user_data_passed);
289 static void match_syscall_definition(struct symbol *sym)
291 struct symbol *arg;
292 char *macro;
294 macro = get_macro_name(sym->pos);
295 if (!macro)
296 return;
297 if (strncmp("SYSCALL_DEFINE", macro, strlen("SYSCALL_DEFINE")) != 0 &&
298 strncmp("COMPAT_SYSCALL_DEFINE", macro, strlen("COMPAT_SYSCALL_DEFINE")) != 0)
299 return;
301 FOR_EACH_PTR(sym->ctype.base_type->arguments, arg) {
302 set_state(my_id, arg->ident->name, arg, &user_data_set);
303 } END_FOR_EACH_PTR(arg);
306 static void match_condition(struct expression *expr)
308 switch (expr->op) {
309 case '<':
310 case SPECIAL_LTE:
311 case SPECIAL_UNSIGNED_LT:
312 case SPECIAL_UNSIGNED_LTE:
313 if (is_user_data(expr->left))
314 set_true_false_states_expr(my_id, expr->left, &capped, NULL);
315 if (is_user_data(expr->right))
316 set_true_false_states_expr(my_id, expr->right, NULL, &capped);
317 break;
318 case '>':
319 case SPECIAL_GTE:
320 case SPECIAL_UNSIGNED_GT:
321 case SPECIAL_UNSIGNED_GTE:
322 if (is_user_data(expr->right))
323 set_true_false_states_expr(my_id, expr->right, &capped, NULL);
324 if (is_user_data(expr->left))
325 set_true_false_states_expr(my_id, expr->left, NULL, &capped);
326 break;
327 case SPECIAL_EQUAL:
328 if (is_user_data(expr->left))
329 set_true_false_states_expr(my_id, expr->left, &capped, NULL);
330 if (is_user_data(expr->right))
331 set_true_false_states_expr(my_id, expr->right, &capped, NULL);
332 break;
333 case SPECIAL_NOTEQUAL:
334 if (is_user_data(expr->left))
335 set_true_false_states_expr(my_id, expr->left, NULL, &capped);
336 if (is_user_data(expr->right))
337 set_true_false_states_expr(my_id, expr->right, NULL, &capped);
338 break;
339 default:
340 return;
344 static int handle_get_user(struct expression *expr)
346 char *name;
347 int ret = 0;
349 name = get_macro_name(expr->pos);
350 if (!name || strcmp(name, "get_user") != 0)
351 return 0;
353 name = expr_to_var(expr->right);
354 if (!name || strcmp(name, "__val_gu") != 0)
355 goto free;
356 set_state_expr(my_id, expr->left, &user_data_set);
357 ret = 1;
358 free:
359 free_string(name);
360 return ret;
363 static void match_assign(struct expression *expr)
365 int user_data;
367 if (handle_get_user(expr))
368 return;
370 user_data = is_user_data(expr->right);
371 if (user_data == PASSED_DATA)
372 set_state_expr(my_id, expr->left, &user_data_passed);
373 else if (user_data == SET_DATA)
374 set_state_expr(my_id, expr->left, &user_data_set);
375 else if (get_state_expr(my_id, expr->left))
376 set_state_expr(my_id, expr->left, &capped);
379 static void tag_struct_members(struct symbol *type, struct expression *expr)
381 struct symbol *tmp;
382 struct expression *member;
383 int op = '*';
385 if (expr->type == EXPR_PREOP && expr->op == '&') {
386 expr = strip_expr(expr->unop);
387 op = '.';
390 FOR_EACH_PTR(type->symbol_list, tmp) {
391 if (!tmp->ident)
392 continue;
393 member = member_expression(expr, op, tmp->ident);
394 set_state_expr(my_id, member, &user_data_set);
395 } END_FOR_EACH_PTR(tmp);
398 static void tag_base_type(struct expression *expr)
400 if (expr->type == EXPR_PREOP && expr->op == '&')
401 expr = strip_expr(expr->unop);
402 else
403 expr = deref_expression(expr);
404 set_state_expr(my_id, expr, &user_data_set);
407 static void tag_as_user_data(struct expression *expr)
409 struct symbol *type;
411 expr = strip_expr(expr);
413 type = get_type(expr);
414 if (!type || type->type != SYM_PTR)
415 return;
416 type = get_real_base_type(type);
417 if (!type)
418 return;
419 if (type == &void_ctype) {
420 set_state_expr(my_id, deref_expression(expr), &user_data_set);
421 return;
423 if (type->type == SYM_BASETYPE)
424 tag_base_type(expr);
425 if (type->type == SYM_STRUCT) {
426 if (expr->type != EXPR_PREOP || expr->op != '&')
427 expr = deref_expression(expr);
428 tag_struct_members(type, expr);
432 static void match_user_copy(const char *fn, struct expression *expr, void *_param)
434 int param = PTR_INT(_param);
435 struct expression *dest;
437 dest = get_argument_from_call_expr(expr->args, param);
438 dest = strip_expr(dest);
439 if (!dest)
440 return;
441 tag_as_user_data(dest);
444 static void match_user_assign_function(const char *fn, struct expression *expr, void *unused)
446 set_state_expr(my_id, expr->left, &user_data_set);
449 static void match_caller_info(struct expression *expr)
451 struct expression *tmp;
452 int i;
454 i = 0;
455 FOR_EACH_PTR(expr->args, tmp) {
456 if (is_user_data(tmp))
457 sql_insert_caller_info(expr, USER_DATA, i, "$$", "");
458 i++;
459 } END_FOR_EACH_PTR(tmp);
462 static void struct_member_callback(struct expression *call, int param, char *printed_name, struct smatch_state *state)
464 if (state == &capped)
465 return;
466 sql_insert_caller_info(call, USER_DATA, param, printed_name, "");
469 static void returned_member_callback(int return_id, char *return_ranges, char *printed_name, struct smatch_state *state)
471 if (state == &capped)
472 return;
473 sql_insert_return_states(return_id, return_ranges, USER_DATA, -1, printed_name, "");
476 static void print_returned_user_data(int return_id, char *return_ranges, struct expression *expr)
478 struct stree *stree;
479 struct sm_state *tmp;
480 int param;
481 int user_data;
482 const char *passed_or_new;
484 user_data = is_user_data(expr);
485 if (user_data == PASSED_DATA) {
486 sql_insert_return_states(return_id, return_ranges, USER_DATA,
487 -1, "$$", "2");
489 if (user_data == SET_DATA) {
490 sql_insert_return_states(return_id, return_ranges, USER_DATA,
491 -1, "$$", "1");
494 stree = __get_cur_stree();
496 FOR_EACH_MY_SM(my_id, stree, tmp) {
497 const char *param_name;
499 param = get_param_num_from_sym(tmp->sym);
500 if (param < 0)
501 continue;
503 if (is_capped_var_sym(tmp->name, tmp->sym))
504 continue;
505 /* ignore states that were already USER_DATA to begin with */
506 if (get_state_stree(get_start_states(), my_id, tmp->name, tmp->sym))
507 continue;
509 param_name = get_param_name(tmp);
510 if (!param_name || strcmp(param_name, "$$") == 0)
511 continue;
513 if (slist_has_state(tmp->possible, &user_data_set))
514 passed_or_new = "1";
515 else if (slist_has_state(tmp->possible, &user_data_passed))
516 passed_or_new = "2";
517 else
518 continue;
520 sql_insert_return_states(return_id, return_ranges, USER_DATA,
521 param, param_name, passed_or_new);
522 } END_FOR_EACH_SM(tmp);
525 static void db_return_states_userdata(struct expression *expr, int param, char *key, char *value)
527 char *name;
528 struct symbol *sym;
530 if (expr->type == EXPR_ASSIGNMENT && param == -1 && strcmp(key, "*$$") == 0) {
531 tag_as_user_data(expr->left);
532 return;
535 name = return_state_to_var_sym(expr, param, key, &sym);
536 if (!name || !sym)
537 goto free;
539 set_state(my_id, name, sym, &user_data_set);
540 free:
541 free_string(name);
544 void check_user_data(int id)
546 if (option_project != PROJ_KERNEL)
547 return;
548 my_id = id;
549 select_caller_info_hook(set_param_user_data, USER_DATA);
550 add_hook(&match_syscall_definition, FUNC_DEF_HOOK);
551 add_hook(&match_condition, CONDITION_HOOK);
552 add_hook(&match_assign, ASSIGNMENT_HOOK);
553 add_function_hook("copy_from_user", &match_user_copy, INT_PTR(0));
554 add_function_hook("__copy_from_user", &match_user_copy, INT_PTR(0));
555 add_function_hook("memcpy_fromiovec", &match_user_copy, INT_PTR(0));
556 add_function_assign_hook("kmemdup_user", &match_user_assign_function, NULL);
558 add_hook(&match_caller_info, FUNCTION_CALL_HOOK);
559 add_member_info_callback(my_id, struct_member_callback);
560 add_returned_member_callback(my_id, returned_member_callback);
561 add_split_return_callback(print_returned_user_data);
562 select_return_states_hook(USER_DATA, &db_return_states_userdata);