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 * This check is supposed to find bugs in reference counting using dev_hold()
22 * When a device is first held, if an error happens later in the function
23 * it needs to be released on all the error paths.
28 #include "smatch_extra.h"
29 #include "smatch_slist.h"
36 static void match_dev_hold(const char *fn
, struct expression
*expr
, void *data
)
38 struct expression
*arg_expr
;
40 arg_expr
= get_argument_from_call_expr(expr
->args
, 0);
41 set_state_expr(my_id
, arg_expr
, &held
);
44 static void match_dev_put(const char *fn
, struct expression
*expr
, void *data
)
46 struct expression
*arg_expr
;
48 arg_expr
= get_argument_from_call_expr(expr
->args
, 0);
49 set_state_expr(my_id
, arg_expr
, &released
);
52 static void match_returns_held(const char *fn
, struct expression
*call_expr
,
53 struct expression
*assign_expr
, void *unused
)
56 set_state_expr(my_id
, assign_expr
->left
, &held
);
59 static void match_returns_null(const char *fn
, struct expression
*call_expr
,
60 struct expression
*assign_expr
, void *unused
)
63 set_state_expr(my_id
, assign_expr
->left
, &released
);
66 static void check_for_held(void)
68 struct state_list
*slist
;
71 slist
= get_all_states(my_id
);
72 FOR_EACH_PTR(slist
, tmp
) {
73 if (slist_has_state(tmp
->possible
, &held
)) {
74 sm_msg("warn: '%s' held on error path.",
77 } END_FOR_EACH_PTR(tmp
);
81 static void print_returns_held(struct expression
*expr
)
87 sm
= get_sm_state_expr(my_id
, expr
);
90 if (slist_has_state(sm
->possible
, &held
))
91 sm_info("returned dev is held.");
94 static void match_return(struct expression
*ret_value
)
96 print_returns_held(ret_value
);
97 if (!is_error_return(ret_value
))
102 static void register_returns_held_funcs(void)
107 token
= get_tokens_file("kernel.returns_held_funcs");
110 if (token_type(token
) != TOKEN_STREAMBEGIN
)
113 while (token_type(token
) != TOKEN_STREAMEND
) {
114 if (token_type(token
) != TOKEN_IDENT
)
116 func
= show_ident(token
->ident
);
117 return_implies_state(func
, valid_ptr_min
, valid_ptr_max
,
118 &match_returns_held
, NULL
);
119 return_implies_state(func
, 0, 0, &match_returns_null
,
126 void check_held_dev(int id
)
128 if (option_project
!= PROJ_KERNEL
)
132 add_function_hook("dev_hold", &match_dev_hold
, NULL
);
133 add_function_hook("dev_put", &match_dev_put
, NULL
);
134 register_returns_held_funcs();
135 add_hook(&match_return
, RETURN_HOOK
);