2 * Copyright (C) 2009 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"
23 static int err_ptr
= 0;
24 static int returns_null
= 0;
26 static void match_err_ptr(struct expression
*expr
)
28 expr
= strip_expr(expr
);
31 if (expr
->type
!= EXPR_CALL
)
34 if (expr
->fn
->type
!= EXPR_SYMBOL
|| !expr
->fn
->symbol
)
36 if (!strcmp(expr
->fn
->symbol
->ident
->name
, "ERR_PTR"))
40 extern int check_assigned_expr_id
;
41 static void match_return(struct expression
*ret_value
)
43 struct state_list
*slist
;
49 match_err_ptr(ret_value
);
50 slist
= get_possible_states_expr(check_assigned_expr_id
, ret_value
);
51 FOR_EACH_PTR(slist
, tmp
) {
52 if (tmp
->state
== &undefined
|| tmp
->state
== &merged
)
54 match_err_ptr((struct expression
*)tmp
->state
->data
);
55 } END_FOR_EACH_PTR(tmp
);
57 if (get_implied_value(ret_value
, &sval
)) {
63 static void match_end_func(struct symbol
*sym
)
68 sm_info("returns_err_ptr");
73 void check_err_ptr(int id
)
75 if (option_project
!= PROJ_KERNEL
)
81 add_hook(&match_return
, RETURN_HOOK
);
82 add_hook(&match_end_func
, END_FUNC_HOOK
);