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
22 static int can_overflow(struct expression
*expr
)
27 expr
= strip_expr(expr
);
29 if (expr
->type
== EXPR_BINOP
) {
30 uncapped
+= can_overflow(expr
->left
);
31 uncapped
+= can_overflow(expr
->right
);
34 (expr
->op
== '+' || expr
->op
== '*' || expr
->op
== SPECIAL_LEFTSHIFT
))
40 if (get_implied_max(expr
, &max
))
42 if (get_absolute_max(expr
, &max
) && sval_cmp_val(max
, 4096) <= 0)
47 static void match_size(struct expression
*size_expr
)
51 size_expr
= strip_expr(size_expr
);
54 if (size_expr
->type
!= EXPR_BINOP
) {
55 size_expr
= get_assigned_expr(size_expr
);
56 if (!size_expr
|| size_expr
->type
!= EXPR_BINOP
)
59 if (!can_overflow(size_expr
))
62 name
= expr_to_str(size_expr
);
63 sm_msg("warn: math in access_ok() is dangerous '%s'", name
);
68 static void match_access_ok(const char *fn
, struct expression
*expr
, void *data
)
70 struct expression
*size_expr
;
72 size_expr
= get_argument_from_call_expr(expr
->args
, 1);
73 match_size(size_expr
);
76 static void split_asm_constraints(struct expression_list
*expr_list
)
78 struct expression
*expr
;
83 FOR_EACH_PTR(expr_list
, expr
) {
86 case 0: /* identifier */
87 case 1: /* constraint */
90 case 2: /* expression */
97 } END_FOR_EACH_PTR(expr
);
100 static void match_asm_stmt(struct statement
*stmt
)
104 name
= get_macro_name(stmt
->pos
);
105 if (!name
|| strcmp(name
, "access_ok") != 0)
107 split_asm_constraints(stmt
->asm_inputs
);
110 void check_access_ok_math(int id
)
113 if (option_project
!= PROJ_KERNEL
)
117 add_function_hook("__access_ok", &match_access_ok
, NULL
);
118 add_hook(&match_asm_stmt
, ASM_HOOK
);