2 * Copyright (C) 2022 Oracle.
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_extra.h"
20 #include "smatch_slist.h"
26 static void clear_state(struct sm_state
*sm
, struct expression
*mod_expr
)
28 set_state(my_id
, sm
->name
, sm
->sym
, &undefined
);
31 static bool is_error_macro(struct expression
*expr
)
38 if (expr
->type
!= EXPR_PREOP
|| expr
->op
!= '-')
41 if (!get_value(expr
, &sval
))
43 if (sval
.value
< -4095 || sval
.value
>= 0)
47 macro
= get_macro_name(expr
->pos
);
48 if (!macro
|| macro
[0] != 'E')
54 static void match_assign(struct expression
*expr
)
59 if (!is_error_macro(expr
->right
))
62 set_state_expr(my_id
, expr
->left
, &error_code
);
65 static bool is_empty_state(struct expression
*expr
)
67 struct smatch_state
*state
;
69 state
= get_extra_state(expr
);
77 bool holds_kernel_error_codes(struct expression
*expr
)
79 struct range_list
*rl
;
84 if (is_error_macro(expr
))
87 if (is_empty_state(expr
))
90 if (get_implied_rl(expr
, &rl
)) {
91 if (rl_min(rl
).value
>= 0 &&
92 rl_max(rl
).uvalue
<= INT_MAX
)
95 if (type_positive_bits(rl_type(rl
)) >= 63 &&
96 !sval_is_negative(rl_min(rl
)) &&
97 rl_max(rl
).uvalue
<= UINT_MAX
)
101 return expr_has_possible_state(my_id
, expr
, &error_code
);
104 static void match_return(int return_id
, char *return_ranges
, struct expression
*expr
)
109 if (!holds_kernel_error_codes(expr
))
112 sql_insert_return_states(return_id
, return_ranges
, NEGATIVE_ERROR
,
116 static void set_error_code(struct expression
*expr
, const char *name
, struct symbol
*sym
, void *data
)
118 set_state(my_id
, name
, sym
, &error_code
);
121 void check_returns_negative_error_code(int id
)
125 if (option_project
!= PROJ_KERNEL
)
128 add_hook(&match_assign
, ASSIGNMENT_HOOK
);
129 add_modification_hook(my_id
, &clear_state
);
130 add_split_return_callback(&match_return
);
131 select_return_param_key(NEGATIVE_ERROR
, &set_error_code
);