flow: add a comment to handle__builtin_choose_expr_assigns()
[smatch.git] / check_returns_negative_error_code.c
blob31c0afb6c066ebc383790b0e993ebcd603618e28
1 /*
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
18 #include "smatch.h"
19 #include "smatch_extra.h"
20 #include "smatch_slist.h"
22 static int my_id;
24 STATE(error_code);
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 void pre_merge_hook(struct sm_state *cur, struct sm_state *other)
33 struct sm_state *sm;
34 sval_t sval;
36 sm = get_sm_state(SMATCH_EXTRA, cur->name, cur->sym);
37 if (!sm || !estate_rl(sm->state))
38 return;
39 if (type_unsigned(estate_type(sm->state)))
40 return;
41 sval = estate_min(sm->state);
42 if (sval.value == 0)
43 set_state(my_id, cur->name, cur->sym, &undefined);
46 static bool is_error_macro(struct expression *expr)
48 char *macro;
49 sval_t sval;
51 if (!expr)
52 return false;
53 if (expr->type != EXPR_PREOP || expr->op != '-')
54 return false;
56 if (!get_value(expr, &sval))
57 return false;
58 if (sval.value < -4095 || sval.value >= 0)
59 return false;
61 expr = expr->unop;
62 macro = get_macro_name(expr->pos);
63 if (!macro || macro[0] != 'E')
64 return false;
66 return true;
69 static void match_assign(struct expression *expr)
71 if (expr->op != '=')
72 return;
74 if (!is_error_macro(expr->right))
75 return;
77 set_state_expr(my_id, expr->left, &error_code);
80 static bool is_empty_state(struct expression *expr)
82 struct smatch_state *state;
84 state = get_extra_state(expr);
85 if (!state)
86 return false;
87 if (estate_rl(state))
88 return false;
89 return true;
92 bool holds_kernel_error_codes(struct expression *expr)
94 struct range_list *rl;
96 if (!expr)
97 return false;
99 if (is_error_macro(expr))
100 return true;
102 if (is_empty_state(expr))
103 return false;
105 if (get_implied_rl(expr, &rl)) {
106 if (rl_min(rl).value >= 0 &&
107 rl_max(rl).uvalue <= INT_MAX)
108 return false;
110 if (type_positive_bits(rl_type(rl)) >= 63 &&
111 !sval_is_negative(rl_min(rl)) &&
112 rl_max(rl).uvalue <= UINT_MAX)
113 return false;
116 return expr_has_possible_state(my_id, expr, &error_code);
119 static void match_return(int return_id, char *return_ranges, struct expression *expr)
121 if (!expr)
122 return;
124 if (!holds_kernel_error_codes(expr))
125 return;
127 sql_insert_return_states(return_id, return_ranges, NEGATIVE_ERROR,
128 -1, "$", "");
131 static void set_error_code(struct expression *expr, const char *name, struct symbol *sym, void *data)
133 set_state(my_id, name, sym, &error_code);
136 void check_returns_negative_error_code(int id)
138 my_id = id;
140 if (option_project != PROJ_KERNEL)
141 return;
143 add_hook(&match_assign, ASSIGNMENT_HOOK);
144 add_modification_hook(my_id, &clear_state);
145 add_pre_merge_hook(my_id, &pre_merge_hook);
146 add_split_return_callback(&match_return);
147 select_return_param_key(NEGATIVE_ERROR, &set_error_code);