2 * sparse/check_locking.c
4 * Copyright (C) 2009 Dan Carpenter.
6 * Licensed under the Open Software License version 1.1
11 * This test checks that locks are held the same across all returns.
13 * Of course, some functions are designed to only hold the locks on success.
14 * Oh well... We can rewrite it later if we want.
19 #include "smatch_slist.h"
21 static const char *lock_funcs
[] = {
27 "_spin_lock_irqsave_nested",
34 "_write_lock_irqsave",
43 static const char *unlock_funcs
[] = {
45 "_spin_unlock_irqrestore",
50 "_read_unlock_irqrestore",
54 "_write_unlock_irqrestore",
62 /* These are return 1 if they aquire the lock */
63 static const char *conditional_funcs
[] = {
68 "generic__raw_read_trylock",
74 "__raw_write_trylock",
75 "__raw_write_trylock",
80 /* These functions return 0 on success */
81 static const char *reverse_cond_funcs
[] = {
84 "mutex_lock_interruptible",
85 "mutex_lock_interruptible_nested",
86 "mutex_lock_killable",
87 "mutex_lock_killable_nested",
91 /* todo still need to handle__raw_spin_is_locked */
98 static struct locked_call lock_needed
[] = {
99 {"tty_ldisc_ref_wait", "tty_ldisc_lock"},
104 static struct tracker_list
*starts_locked
;
105 static struct tracker_list
*starts_unlocked
;
107 struct locks_on_return
{
109 struct tracker_list
*locked
;
110 struct tracker_list
*unlocked
;
112 DECLARE_PTR_LIST(return_list
, struct locks_on_return
);
113 static struct return_list
*all_returns
;
119 static struct smatch_state
*get_start_state(struct sm_state
*sm
)
124 if (in_tracker_list(starts_locked
, sm
->name
, my_id
, sm
->sym
))
126 if (in_tracker_list(starts_unlocked
, sm
->name
, my_id
, sm
->sym
))
128 if (is_locked
&& is_unlocked
)
137 static struct smatch_state
*unmatched_state(struct sm_state
*sm
)
142 static char *get_lock_name(struct expression
*expr
, void *data
)
144 struct expression
*lock_expr
;
147 return alloc_string((char *)data
);
149 lock_expr
= get_argument_from_call_expr(expr
->args
, 0);
150 return get_variable_from_expr(lock_expr
, NULL
);
154 static void match_lock_func(const char *fn
, struct expression
*expr
, void *data
)
159 lock_name
= get_lock_name(expr
, data
);
162 sm
= get_sm_state(lock_name
, my_id
, NULL
);
164 add_tracker(&starts_unlocked
, lock_name
, my_id
, NULL
);
165 if (sm
&& slist_has_state(sm
->possible
, &locked
))
166 smatch_msg("error: double lock '%s'", lock_name
);
167 set_state(lock_name
, my_id
, NULL
, &locked
);
168 free_string(lock_name
);
171 static void match_unlock_func(const char *fn
, struct expression
*expr
,
177 lock_name
= get_lock_name(expr
, data
);
180 sm
= get_sm_state(lock_name
, my_id
, NULL
);
182 add_tracker(&starts_locked
, lock_name
, my_id
, NULL
);
183 if (sm
&& slist_has_state(sm
->possible
, &unlocked
))
184 smatch_msg("error: double unlock '%s'", lock_name
);
185 set_state(lock_name
, my_id
, NULL
, &unlocked
);
186 free_string(lock_name
);
189 static void match_lock_needed(const char *fn
, struct expression
*expr
,
192 struct smatch_state
*state
;
195 state
= get_state((char *)data
, my_id
, NULL
);
196 if (state
== &locked
)
198 fn_name
= get_variable_from_expr(expr
->fn
, NULL
);
200 smatch_msg("Internal error.");
203 smatch_msg("error: %s called without holding '%s' lock", fn_name
,
205 free_string(fn_name
);
208 static void match_locks_on_zero(const char *fn
, struct expression
*expr
,
214 lock_name
= get_lock_name(expr
, data
);
217 sm
= get_sm_state(lock_name
, my_id
, NULL
);
219 add_tracker(&starts_unlocked
, lock_name
, my_id
, NULL
);
220 set_cond_states(lock_name
, my_id
, NULL
, &unlocked
, &locked
);
221 free_string(lock_name
);
224 static void match_locks_on_non_zero(const char *fn
, struct expression
*expr
,
230 lock_name
= get_lock_name(expr
, data
);
233 sm
= get_sm_state(lock_name
, my_id
, NULL
);
235 add_tracker(&starts_unlocked
, lock_name
, my_id
, NULL
);
236 set_cond_states(lock_name
, my_id
, NULL
, &locked
, &unlocked
);
237 free_string(lock_name
);
240 static struct locks_on_return
*alloc_return(int line
)
242 struct locks_on_return
*ret
;
244 ret
= malloc(sizeof(*ret
));
247 ret
->unlocked
= NULL
;
251 static void check_possible(struct sm_state
*sm
)
253 struct sm_state
*tmp
;
258 FOR_EACH_PTR(sm
->possible
, tmp
) {
259 if (tmp
->state
== &locked
)
261 if (tmp
->state
== &unlocked
)
263 if (tmp
->state
== &start_state
) {
264 struct smatch_state
*s
;
266 s
= get_start_state(tmp
);
269 else if (s
== &unlocked
)
274 if (tmp
->state
== &undefined
)
275 undef
= 1; // i don't think this is possible any more.
276 } END_FOR_EACH_PTR(tmp
);
277 if ((islocked
&& isunlocked
) || undef
)
278 smatch_msg("warn: '%s' is sometimes locked here and "
279 "sometimes unlocked.", sm
->name
);
282 static void match_return(struct statement
*stmt
)
284 struct locks_on_return
*ret
;
285 struct state_list
*slist
;
286 struct sm_state
*tmp
;
288 ret
= alloc_return(get_lineno());
290 slist
= get_all_states(my_id
);
291 FOR_EACH_PTR(slist
, tmp
) {
292 if (tmp
->state
== &locked
) {
293 add_tracker(&ret
->locked
, tmp
->name
, tmp
->owner
,
295 } else if (tmp
->state
== &unlocked
) {
296 add_tracker(&ret
->unlocked
, tmp
->name
, tmp
->owner
,
298 } else if (tmp
->state
== &start_state
) {
299 struct smatch_state
*s
;
301 s
= get_start_state(tmp
);
303 add_tracker(&ret
->locked
, tmp
->name
, tmp
->owner
,
306 add_tracker(&ret
->unlocked
, tmp
->name
,
307 tmp
->owner
, tmp
->sym
);
311 } END_FOR_EACH_PTR(tmp
);
313 add_ptr_list(&all_returns
, ret
);
316 static void check_returns_consistently(struct tracker
*lock
,
317 struct smatch_state
*start
)
319 int returns_locked
= 0;
320 int returns_unlocked
= 0;
321 struct locks_on_return
*tmp
;
323 FOR_EACH_PTR(all_returns
, tmp
) {
324 if (in_tracker_list(tmp
->unlocked
, lock
->name
, lock
->owner
,
326 returns_unlocked
= tmp
->line
;
327 else if (in_tracker_list(tmp
->locked
, lock
->name
, lock
->owner
,
329 returns_locked
= tmp
->line
;
330 else if (start
== &locked
)
331 returns_locked
= tmp
->line
;
332 else if (start
== &unlocked
)
333 returns_unlocked
= tmp
->line
;
334 } END_FOR_EACH_PTR(tmp
);
336 if (returns_locked
&& returns_unlocked
)
337 smatch_msg("warn: lock '%s' held on line %d but not on %d.",
338 lock
->name
, returns_locked
, returns_unlocked
);
342 static void check_consistency(struct symbol
*sym
)
349 FOR_EACH_PTR(starts_locked
, tmp
) {
350 if (in_tracker_list(starts_unlocked
, tmp
->name
, tmp
->owner
,
352 smatch_msg("error: locking inconsistency. We assume "
353 "'%s' is both locked and unlocked at the "
356 } END_FOR_EACH_PTR(tmp
);
358 FOR_EACH_PTR(starts_locked
, tmp
) {
359 check_returns_consistently(tmp
, &locked
);
360 } END_FOR_EACH_PTR(tmp
);
362 FOR_EACH_PTR(starts_unlocked
, tmp
) {
363 check_returns_consistently(tmp
, &unlocked
);
364 } END_FOR_EACH_PTR(tmp
);
368 static void clear_lists(void)
370 struct locks_on_return
*tmp
;
372 free_trackers_and_list(&starts_locked
);
373 free_trackers_and_list(&starts_unlocked
);
375 FOR_EACH_PTR(all_returns
, tmp
) {
376 free_trackers_and_list(&tmp
->locked
);
377 free_trackers_and_list(&tmp
->unlocked
);
378 } END_FOR_EACH_PTR(tmp
);
379 __free_ptr_list((struct ptr_list
**)&all_returns
);
382 static void match_func_end(struct symbol
*sym
)
384 check_consistency(sym
);
388 void check_locking(int id
)
393 add_unmatched_state_hook(my_id
, &unmatched_state
);
394 add_hook(&match_return
, RETURN_HOOK
);
395 add_hook(&match_func_end
, END_FUNC_HOOK
);
397 for (i
= 0; lock_funcs
[i
]; i
++) {
398 add_function_hook(lock_funcs
[i
], &match_lock_func
, NULL
);
400 add_function_hook("lock_kernel", &match_lock_func
, (void *)"kernel");
401 for (i
= 0; unlock_funcs
[i
]; i
++) {
402 add_function_hook(unlock_funcs
[i
], &match_unlock_func
, NULL
);
404 add_function_hook("unlock_kernel", &match_unlock_func
, (void *)"kernel");
405 for (i
= 0; i
< sizeof(lock_needed
)/sizeof(struct locked_call
); i
++) {
406 add_function_hook(lock_needed
[i
].function
, &match_lock_needed
,
407 (void *)lock_needed
[i
].lock
);
410 for (i
= 0; conditional_funcs
[i
]; i
++) {
411 add_conditional_hook(conditional_funcs
[i
],
412 &match_locks_on_non_zero
, NULL
);
415 for (i
= 0; reverse_cond_funcs
[i
]; i
++) {
416 add_conditional_hook(reverse_cond_funcs
[i
],
417 &match_locks_on_zero
, NULL
);