4 * Runtime locking correctness validator
6 * Started by Ingo Molnar:
8 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
10 * this code maps all the lock dependencies as they occur in a live kernel
11 * and will warn about the following classes of locking bugs:
13 * - lock inversion scenarios
14 * - circular lock dependencies
15 * - hardirq/softirq safe/unsafe locking bugs
17 * Bugs are reported even if the current locking scenario does not cause
18 * any deadlock at this point.
20 * I.e. if anytime in the past two locks were taken in a different order,
21 * even if it happened for another task, even if those were different
22 * locks (but of the same class as this lock), this code will detect it.
24 * Thanks to Arjan van de Ven for coming up with the initial idea of
25 * mapping lock dependencies runtime.
27 #include <linux/mutex.h>
28 #include <linux/sched.h>
29 #include <linux/delay.h>
30 #include <linux/module.h>
31 #include <linux/proc_fs.h>
32 #include <linux/seq_file.h>
33 #include <linux/spinlock.h>
34 #include <linux/kallsyms.h>
35 #include <linux/interrupt.h>
36 #include <linux/stacktrace.h>
37 #include <linux/debug_locks.h>
38 #include <linux/irqflags.h>
39 #include <linux/utsname.h>
41 #include <asm/sections.h>
43 #include "lockdep_internals.h"
46 * hash_lock: protects the lockdep hashes and class/list/hash allocators.
48 * This is one of the rare exceptions where it's justified
49 * to use a raw spinlock - we really dont want the spinlock
50 * code to recurse back into the lockdep code.
52 static raw_spinlock_t hash_lock
= (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
54 static int lockdep_initialized
;
56 unsigned long nr_list_entries
;
57 static struct lock_list list_entries
[MAX_LOCKDEP_ENTRIES
];
60 * Allocate a lockdep entry. (assumes hash_lock held, returns
61 * with NULL on failure)
63 static struct lock_list
*alloc_list_entry(void)
65 if (nr_list_entries
>= MAX_LOCKDEP_ENTRIES
) {
66 __raw_spin_unlock(&hash_lock
);
68 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
69 printk("turning off the locking correctness validator.\n");
72 return list_entries
+ nr_list_entries
++;
76 * All data structures here are protected by the global debug_lock.
78 * Mutex key structs only get allocated, once during bootup, and never
79 * get freed - this significantly simplifies the debugging code.
81 unsigned long nr_lock_classes
;
82 static struct lock_class lock_classes
[MAX_LOCKDEP_KEYS
];
85 * We keep a global list of all lock classes. The list only grows,
86 * never shrinks. The list is only accessed with the lockdep
89 LIST_HEAD(all_lock_classes
);
92 * The lockdep classes are in a hash-table as well, for fast lookup:
94 #define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
95 #define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
96 #define CLASSHASH_MASK (CLASSHASH_SIZE - 1)
97 #define __classhashfn(key) ((((unsigned long)key >> CLASSHASH_BITS) + (unsigned long)key) & CLASSHASH_MASK)
98 #define classhashentry(key) (classhash_table + __classhashfn((key)))
100 static struct list_head classhash_table
[CLASSHASH_SIZE
];
102 unsigned long nr_lock_chains
;
103 static struct lock_chain lock_chains
[MAX_LOCKDEP_CHAINS
];
106 * We put the lock dependency chains into a hash-table as well, to cache
109 #define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
110 #define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
111 #define CHAINHASH_MASK (CHAINHASH_SIZE - 1)
112 #define __chainhashfn(chain) \
113 (((chain >> CHAINHASH_BITS) + chain) & CHAINHASH_MASK)
114 #define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
116 static struct list_head chainhash_table
[CHAINHASH_SIZE
];
119 * The hash key of the lock dependency chains is a hash itself too:
120 * it's a hash of all locks taken up to that lock, including that lock.
121 * It's a 64-bit hash, because it's important for the keys to be
124 #define iterate_chain_key(key1, key2) \
125 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
126 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
129 void lockdep_off(void)
131 current
->lockdep_recursion
++;
134 EXPORT_SYMBOL(lockdep_off
);
136 void lockdep_on(void)
138 current
->lockdep_recursion
--;
141 EXPORT_SYMBOL(lockdep_on
);
143 int lockdep_internal(void)
145 return current
->lockdep_recursion
!= 0;
148 EXPORT_SYMBOL(lockdep_internal
);
151 * Debugging switches:
156 # define VERY_VERBOSE 0
160 # define HARDIRQ_VERBOSE 1
161 # define SOFTIRQ_VERBOSE 1
163 # define HARDIRQ_VERBOSE 0
164 # define SOFTIRQ_VERBOSE 0
167 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
169 * Quick filtering for interesting events:
171 static int class_filter(struct lock_class
*class)
175 if (class->name_version
== 1 &&
176 !strcmp(class->name
, "lockname"))
178 if (class->name_version
== 1 &&
179 !strcmp(class->name
, "&struct->lockfield"))
182 /* Allow everything else. 0 would be filter everything else */
187 static int verbose(struct lock_class
*class)
190 return class_filter(class);
195 #ifdef CONFIG_TRACE_IRQFLAGS
197 static int hardirq_verbose(struct lock_class
*class)
200 return class_filter(class);
205 static int softirq_verbose(struct lock_class
*class)
208 return class_filter(class);
216 * Stack-trace: tightly packed array of stack backtrace
217 * addresses. Protected by the hash_lock.
219 unsigned long nr_stack_trace_entries
;
220 static unsigned long stack_trace
[MAX_STACK_TRACE_ENTRIES
];
222 static int save_trace(struct stack_trace
*trace
)
224 trace
->nr_entries
= 0;
225 trace
->max_entries
= MAX_STACK_TRACE_ENTRIES
- nr_stack_trace_entries
;
226 trace
->entries
= stack_trace
+ nr_stack_trace_entries
;
229 trace
->all_contexts
= 0;
231 /* Make sure to not recurse in case the the unwinder needs to tak
234 save_stack_trace(trace
, NULL
);
237 trace
->max_entries
= trace
->nr_entries
;
239 nr_stack_trace_entries
+= trace
->nr_entries
;
240 if (DEBUG_LOCKS_WARN_ON(nr_stack_trace_entries
> MAX_STACK_TRACE_ENTRIES
))
243 if (nr_stack_trace_entries
== MAX_STACK_TRACE_ENTRIES
) {
244 __raw_spin_unlock(&hash_lock
);
245 if (debug_locks_off()) {
246 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
247 printk("turning off the locking correctness validator.\n");
256 unsigned int nr_hardirq_chains
;
257 unsigned int nr_softirq_chains
;
258 unsigned int nr_process_chains
;
259 unsigned int max_lockdep_depth
;
260 unsigned int max_recursion_depth
;
262 #ifdef CONFIG_DEBUG_LOCKDEP
264 * We cannot printk in early bootup code. Not even early_printk()
265 * might work. So we mark any initialization errors and printk
266 * about it later on, in lockdep_info().
268 static int lockdep_init_error
;
271 * Various lockdep statistics:
273 atomic_t chain_lookup_hits
;
274 atomic_t chain_lookup_misses
;
275 atomic_t hardirqs_on_events
;
276 atomic_t hardirqs_off_events
;
277 atomic_t redundant_hardirqs_on
;
278 atomic_t redundant_hardirqs_off
;
279 atomic_t softirqs_on_events
;
280 atomic_t softirqs_off_events
;
281 atomic_t redundant_softirqs_on
;
282 atomic_t redundant_softirqs_off
;
283 atomic_t nr_unused_locks
;
284 atomic_t nr_cyclic_checks
;
285 atomic_t nr_cyclic_check_recursions
;
286 atomic_t nr_find_usage_forwards_checks
;
287 atomic_t nr_find_usage_forwards_recursions
;
288 atomic_t nr_find_usage_backwards_checks
;
289 atomic_t nr_find_usage_backwards_recursions
;
290 # define debug_atomic_inc(ptr) atomic_inc(ptr)
291 # define debug_atomic_dec(ptr) atomic_dec(ptr)
292 # define debug_atomic_read(ptr) atomic_read(ptr)
294 # define debug_atomic_inc(ptr) do { } while (0)
295 # define debug_atomic_dec(ptr) do { } while (0)
296 # define debug_atomic_read(ptr) 0
303 static const char *usage_str
[] =
305 [LOCK_USED
] = "initial-use ",
306 [LOCK_USED_IN_HARDIRQ
] = "in-hardirq-W",
307 [LOCK_USED_IN_SOFTIRQ
] = "in-softirq-W",
308 [LOCK_ENABLED_SOFTIRQS
] = "softirq-on-W",
309 [LOCK_ENABLED_HARDIRQS
] = "hardirq-on-W",
310 [LOCK_USED_IN_HARDIRQ_READ
] = "in-hardirq-R",
311 [LOCK_USED_IN_SOFTIRQ_READ
] = "in-softirq-R",
312 [LOCK_ENABLED_SOFTIRQS_READ
] = "softirq-on-R",
313 [LOCK_ENABLED_HARDIRQS_READ
] = "hardirq-on-R",
316 const char * __get_key_name(struct lockdep_subclass_key
*key
, char *str
)
318 unsigned long offs
, size
;
321 return kallsyms_lookup((unsigned long)key
, &size
, &offs
, &modname
, str
);
325 get_usage_chars(struct lock_class
*class, char *c1
, char *c2
, char *c3
, char *c4
)
327 *c1
= '.', *c2
= '.', *c3
= '.', *c4
= '.';
329 if (class->usage_mask
& LOCKF_USED_IN_HARDIRQ
)
332 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS
)
335 if (class->usage_mask
& LOCKF_USED_IN_SOFTIRQ
)
338 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS
)
341 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS_READ
)
343 if (class->usage_mask
& LOCKF_USED_IN_HARDIRQ_READ
) {
345 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS_READ
)
349 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS_READ
)
351 if (class->usage_mask
& LOCKF_USED_IN_SOFTIRQ_READ
) {
353 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS_READ
)
358 static void print_lock_name(struct lock_class
*class)
360 char str
[128], c1
, c2
, c3
, c4
;
363 get_usage_chars(class, &c1
, &c2
, &c3
, &c4
);
367 name
= __get_key_name(class->key
, str
);
368 printk(" (%s", name
);
370 printk(" (%s", name
);
371 if (class->name_version
> 1)
372 printk("#%d", class->name_version
);
374 printk("/%d", class->subclass
);
376 printk("){%c%c%c%c}", c1
, c2
, c3
, c4
);
379 static void print_lockdep_cache(struct lockdep_map
*lock
)
386 name
= __get_key_name(lock
->key
->subkeys
, str
);
391 static void print_lock(struct held_lock
*hlock
)
393 print_lock_name(hlock
->class);
395 print_ip_sym(hlock
->acquire_ip
);
398 static void lockdep_print_held_locks(struct task_struct
*curr
)
400 int i
, depth
= curr
->lockdep_depth
;
403 printk("no locks held by %s/%d.\n", curr
->comm
, curr
->pid
);
406 printk("%d lock%s held by %s/%d:\n",
407 depth
, depth
> 1 ? "s" : "", curr
->comm
, curr
->pid
);
409 for (i
= 0; i
< depth
; i
++) {
411 print_lock(curr
->held_locks
+ i
);
415 static void print_lock_class_header(struct lock_class
*class, int depth
)
419 printk("%*s->", depth
, "");
420 print_lock_name(class);
421 printk(" ops: %lu", class->ops
);
424 for (bit
= 0; bit
< LOCK_USAGE_STATES
; bit
++) {
425 if (class->usage_mask
& (1 << bit
)) {
428 len
+= printk("%*s %s", depth
, "", usage_str
[bit
]);
429 len
+= printk(" at:\n");
430 print_stack_trace(class->usage_traces
+ bit
, len
);
433 printk("%*s }\n", depth
, "");
435 printk("%*s ... key at: ",depth
,"");
436 print_ip_sym((unsigned long)class->key
);
440 * printk all lock dependencies starting at <entry>:
442 static void print_lock_dependencies(struct lock_class
*class, int depth
)
444 struct lock_list
*entry
;
446 if (DEBUG_LOCKS_WARN_ON(depth
>= 20))
449 print_lock_class_header(class, depth
);
451 list_for_each_entry(entry
, &class->locks_after
, entry
) {
452 DEBUG_LOCKS_WARN_ON(!entry
->class);
453 print_lock_dependencies(entry
->class, depth
+ 1);
455 printk("%*s ... acquired at:\n",depth
,"");
456 print_stack_trace(&entry
->trace
, 2);
462 * Add a new dependency to the head of the list:
464 static int add_lock_to_list(struct lock_class
*class, struct lock_class
*this,
465 struct list_head
*head
, unsigned long ip
)
467 struct lock_list
*entry
;
469 * Lock not present yet - get a new dependency struct and
470 * add it to the list:
472 entry
= alloc_list_entry();
477 save_trace(&entry
->trace
);
480 * Since we never remove from the dependency list, the list can
481 * be walked lockless by other CPUs, it's only allocation
482 * that must be protected by the spinlock. But this also means
483 * we must make new entries visible only once writes to the
484 * entry become visible - hence the RCU op:
486 list_add_tail_rcu(&entry
->entry
, head
);
492 * Recursive, forwards-direction lock-dependency checking, used for
493 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
496 * (to keep the stackframe of the recursive functions small we
497 * use these global variables, and we also mark various helper
498 * functions as noinline.)
500 static struct held_lock
*check_source
, *check_target
;
503 * Print a dependency chain entry (this is only done when a deadlock
504 * has been detected):
507 print_circular_bug_entry(struct lock_list
*target
, unsigned int depth
)
509 if (debug_locks_silent
)
511 printk("\n-> #%u", depth
);
512 print_lock_name(target
->class);
514 print_stack_trace(&target
->trace
, 6);
519 static void print_kernel_version(void)
521 printk("%s %.*s\n", init_utsname()->release
,
522 (int)strcspn(init_utsname()->version
, " "),
523 init_utsname()->version
);
527 * When a circular dependency is detected, print the
531 print_circular_bug_header(struct lock_list
*entry
, unsigned int depth
)
533 struct task_struct
*curr
= current
;
535 __raw_spin_unlock(&hash_lock
);
537 if (debug_locks_silent
)
540 printk("\n=======================================================\n");
541 printk( "[ INFO: possible circular locking dependency detected ]\n");
542 print_kernel_version();
543 printk( "-------------------------------------------------------\n");
544 printk("%s/%d is trying to acquire lock:\n",
545 curr
->comm
, curr
->pid
);
546 print_lock(check_source
);
547 printk("\nbut task is already holding lock:\n");
548 print_lock(check_target
);
549 printk("\nwhich lock already depends on the new lock.\n\n");
550 printk("\nthe existing dependency chain (in reverse order) is:\n");
552 print_circular_bug_entry(entry
, depth
);
557 static noinline
int print_circular_bug_tail(void)
559 struct task_struct
*curr
= current
;
560 struct lock_list
this;
562 if (debug_locks_silent
)
565 this.class = check_source
->class;
566 save_trace(&this.trace
);
567 print_circular_bug_entry(&this, 0);
569 printk("\nother info that might help us debug this:\n\n");
570 lockdep_print_held_locks(curr
);
572 printk("\nstack backtrace:\n");
578 #define RECURSION_LIMIT 40
580 static int noinline
print_infinite_recursion_bug(void)
582 __raw_spin_unlock(&hash_lock
);
583 DEBUG_LOCKS_WARN_ON(1);
589 * Prove that the dependency graph starting at <entry> can not
590 * lead to <target>. Print an error and return 0 if it does.
593 check_noncircular(struct lock_class
*source
, unsigned int depth
)
595 struct lock_list
*entry
;
597 debug_atomic_inc(&nr_cyclic_check_recursions
);
598 if (depth
> max_recursion_depth
)
599 max_recursion_depth
= depth
;
600 if (depth
>= RECURSION_LIMIT
)
601 return print_infinite_recursion_bug();
603 * Check this lock's dependency list:
605 list_for_each_entry(entry
, &source
->locks_after
, entry
) {
606 if (entry
->class == check_target
->class)
607 return print_circular_bug_header(entry
, depth
+1);
608 debug_atomic_inc(&nr_cyclic_checks
);
609 if (!check_noncircular(entry
->class, depth
+1))
610 return print_circular_bug_entry(entry
, depth
+1);
615 static int very_verbose(struct lock_class
*class)
618 return class_filter(class);
622 #ifdef CONFIG_TRACE_IRQFLAGS
625 * Forwards and backwards subgraph searching, for the purposes of
626 * proving that two subgraphs can be connected by a new dependency
627 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
629 static enum lock_usage_bit find_usage_bit
;
630 static struct lock_class
*forwards_match
, *backwards_match
;
633 * Find a node in the forwards-direction dependency sub-graph starting
634 * at <source> that matches <find_usage_bit>.
636 * Return 2 if such a node exists in the subgraph, and put that node
637 * into <forwards_match>.
639 * Return 1 otherwise and keep <forwards_match> unchanged.
643 find_usage_forwards(struct lock_class
*source
, unsigned int depth
)
645 struct lock_list
*entry
;
648 if (depth
> max_recursion_depth
)
649 max_recursion_depth
= depth
;
650 if (depth
>= RECURSION_LIMIT
)
651 return print_infinite_recursion_bug();
653 debug_atomic_inc(&nr_find_usage_forwards_checks
);
654 if (source
->usage_mask
& (1 << find_usage_bit
)) {
655 forwards_match
= source
;
660 * Check this lock's dependency list:
662 list_for_each_entry(entry
, &source
->locks_after
, entry
) {
663 debug_atomic_inc(&nr_find_usage_forwards_recursions
);
664 ret
= find_usage_forwards(entry
->class, depth
+1);
665 if (ret
== 2 || ret
== 0)
672 * Find a node in the backwards-direction dependency sub-graph starting
673 * at <source> that matches <find_usage_bit>.
675 * Return 2 if such a node exists in the subgraph, and put that node
676 * into <backwards_match>.
678 * Return 1 otherwise and keep <backwards_match> unchanged.
682 find_usage_backwards(struct lock_class
*source
, unsigned int depth
)
684 struct lock_list
*entry
;
687 if (depth
> max_recursion_depth
)
688 max_recursion_depth
= depth
;
689 if (depth
>= RECURSION_LIMIT
)
690 return print_infinite_recursion_bug();
692 debug_atomic_inc(&nr_find_usage_backwards_checks
);
693 if (source
->usage_mask
& (1 << find_usage_bit
)) {
694 backwards_match
= source
;
699 * Check this lock's dependency list:
701 list_for_each_entry(entry
, &source
->locks_before
, entry
) {
702 debug_atomic_inc(&nr_find_usage_backwards_recursions
);
703 ret
= find_usage_backwards(entry
->class, depth
+1);
704 if (ret
== 2 || ret
== 0)
711 print_bad_irq_dependency(struct task_struct
*curr
,
712 struct held_lock
*prev
,
713 struct held_lock
*next
,
714 enum lock_usage_bit bit1
,
715 enum lock_usage_bit bit2
,
716 const char *irqclass
)
718 __raw_spin_unlock(&hash_lock
);
720 if (debug_locks_silent
)
723 printk("\n======================================================\n");
724 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
726 print_kernel_version();
727 printk( "------------------------------------------------------\n");
728 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
729 curr
->comm
, curr
->pid
,
730 curr
->hardirq_context
, hardirq_count() >> HARDIRQ_SHIFT
,
731 curr
->softirq_context
, softirq_count() >> SOFTIRQ_SHIFT
,
732 curr
->hardirqs_enabled
,
733 curr
->softirqs_enabled
);
736 printk("\nand this task is already holding:\n");
738 printk("which would create a new lock dependency:\n");
739 print_lock_name(prev
->class);
741 print_lock_name(next
->class);
744 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
746 print_lock_name(backwards_match
);
747 printk("\n... which became %s-irq-safe at:\n", irqclass
);
749 print_stack_trace(backwards_match
->usage_traces
+ bit1
, 1);
751 printk("\nto a %s-irq-unsafe lock:\n", irqclass
);
752 print_lock_name(forwards_match
);
753 printk("\n... which became %s-irq-unsafe at:\n", irqclass
);
756 print_stack_trace(forwards_match
->usage_traces
+ bit2
, 1);
758 printk("\nother info that might help us debug this:\n\n");
759 lockdep_print_held_locks(curr
);
761 printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass
);
762 print_lock_dependencies(backwards_match
, 0);
764 printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass
);
765 print_lock_dependencies(forwards_match
, 0);
767 printk("\nstack backtrace:\n");
774 check_usage(struct task_struct
*curr
, struct held_lock
*prev
,
775 struct held_lock
*next
, enum lock_usage_bit bit_backwards
,
776 enum lock_usage_bit bit_forwards
, const char *irqclass
)
780 find_usage_bit
= bit_backwards
;
781 /* fills in <backwards_match> */
782 ret
= find_usage_backwards(prev
->class, 0);
783 if (!ret
|| ret
== 1)
786 find_usage_bit
= bit_forwards
;
787 ret
= find_usage_forwards(next
->class, 0);
788 if (!ret
|| ret
== 1)
791 return print_bad_irq_dependency(curr
, prev
, next
,
792 bit_backwards
, bit_forwards
, irqclass
);
798 print_deadlock_bug(struct task_struct
*curr
, struct held_lock
*prev
,
799 struct held_lock
*next
)
802 __raw_spin_unlock(&hash_lock
);
803 if (debug_locks_silent
)
806 printk("\n=============================================\n");
807 printk( "[ INFO: possible recursive locking detected ]\n");
808 print_kernel_version();
809 printk( "---------------------------------------------\n");
810 printk("%s/%d is trying to acquire lock:\n",
811 curr
->comm
, curr
->pid
);
813 printk("\nbut task is already holding lock:\n");
816 printk("\nother info that might help us debug this:\n");
817 lockdep_print_held_locks(curr
);
819 printk("\nstack backtrace:\n");
826 * Check whether we are holding such a class already.
828 * (Note that this has to be done separately, because the graph cannot
829 * detect such classes of deadlocks.)
831 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
834 check_deadlock(struct task_struct
*curr
, struct held_lock
*next
,
835 struct lockdep_map
*next_instance
, int read
)
837 struct held_lock
*prev
;
840 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
841 prev
= curr
->held_locks
+ i
;
842 if (prev
->class != next
->class)
845 * Allow read-after-read recursion of the same
846 * lock class (i.e. read_lock(lock)+read_lock(lock)):
848 if ((read
== 2) && prev
->read
)
850 return print_deadlock_bug(curr
, prev
, next
);
856 * There was a chain-cache miss, and we are about to add a new dependency
857 * to a previous lock. We recursively validate the following rules:
859 * - would the adding of the <prev> -> <next> dependency create a
860 * circular dependency in the graph? [== circular deadlock]
862 * - does the new prev->next dependency connect any hardirq-safe lock
863 * (in the full backwards-subgraph starting at <prev>) with any
864 * hardirq-unsafe lock (in the full forwards-subgraph starting at
865 * <next>)? [== illegal lock inversion with hardirq contexts]
867 * - does the new prev->next dependency connect any softirq-safe lock
868 * (in the full backwards-subgraph starting at <prev>) with any
869 * softirq-unsafe lock (in the full forwards-subgraph starting at
870 * <next>)? [== illegal lock inversion with softirq contexts]
872 * any of these scenarios could lead to a deadlock.
874 * Then if all the validations pass, we add the forwards and backwards
878 check_prev_add(struct task_struct
*curr
, struct held_lock
*prev
,
879 struct held_lock
*next
)
881 struct lock_list
*entry
;
885 * Prove that the new <prev> -> <next> dependency would not
886 * create a circular dependency in the graph. (We do this by
887 * forward-recursing into the graph starting at <next>, and
888 * checking whether we can reach <prev>.)
890 * We are using global variables to control the recursion, to
891 * keep the stackframe size of the recursive functions low:
895 if (!(check_noncircular(next
->class, 0)))
896 return print_circular_bug_tail();
898 #ifdef CONFIG_TRACE_IRQFLAGS
900 * Prove that the new dependency does not connect a hardirq-safe
901 * lock with a hardirq-unsafe lock - to achieve this we search
902 * the backwards-subgraph starting at <prev>, and the
903 * forwards-subgraph starting at <next>:
905 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_HARDIRQ
,
906 LOCK_ENABLED_HARDIRQS
, "hard"))
910 * Prove that the new dependency does not connect a hardirq-safe-read
911 * lock with a hardirq-unsafe lock - to achieve this we search
912 * the backwards-subgraph starting at <prev>, and the
913 * forwards-subgraph starting at <next>:
915 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_HARDIRQ_READ
,
916 LOCK_ENABLED_HARDIRQS
, "hard-read"))
920 * Prove that the new dependency does not connect a softirq-safe
921 * lock with a softirq-unsafe lock - to achieve this we search
922 * the backwards-subgraph starting at <prev>, and the
923 * forwards-subgraph starting at <next>:
925 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_SOFTIRQ
,
926 LOCK_ENABLED_SOFTIRQS
, "soft"))
929 * Prove that the new dependency does not connect a softirq-safe-read
930 * lock with a softirq-unsafe lock - to achieve this we search
931 * the backwards-subgraph starting at <prev>, and the
932 * forwards-subgraph starting at <next>:
934 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_SOFTIRQ_READ
,
935 LOCK_ENABLED_SOFTIRQS
, "soft"))
939 * For recursive read-locks we do all the dependency checks,
940 * but we dont store read-triggered dependencies (only
941 * write-triggered dependencies). This ensures that only the
942 * write-side dependencies matter, and that if for example a
943 * write-lock never takes any other locks, then the reads are
944 * equivalent to a NOP.
946 if (next
->read
== 2 || prev
->read
== 2)
949 * Is the <prev> -> <next> dependency already present?
951 * (this may occur even though this is a new chain: consider
952 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
953 * chains - the second one will be new, but L1 already has
954 * L2 added to its dependency list, due to the first chain.)
956 list_for_each_entry(entry
, &prev
->class->locks_after
, entry
) {
957 if (entry
->class == next
->class)
962 * Ok, all validations passed, add the new lock
963 * to the previous lock's dependency list:
965 ret
= add_lock_to_list(prev
->class, next
->class,
966 &prev
->class->locks_after
, next
->acquire_ip
);
970 * Return value of 2 signals 'dependency already added',
971 * in that case we dont have to add the backlink either.
975 ret
= add_lock_to_list(next
->class, prev
->class,
976 &next
->class->locks_before
, next
->acquire_ip
);
979 * Debugging printouts:
981 if (verbose(prev
->class) || verbose(next
->class)) {
982 __raw_spin_unlock(&hash_lock
);
983 printk("\n new dependency: ");
984 print_lock_name(prev
->class);
986 print_lock_name(next
->class);
989 __raw_spin_lock(&hash_lock
);
995 * Add the dependency to all directly-previous locks that are 'relevant'.
996 * The ones that are relevant are (in increasing distance from curr):
997 * all consecutive trylock entries and the final non-trylock entry - or
998 * the end of this context's lock-chain - whichever comes first.
1001 check_prevs_add(struct task_struct
*curr
, struct held_lock
*next
)
1003 int depth
= curr
->lockdep_depth
;
1004 struct held_lock
*hlock
;
1009 * Depth must not be zero for a non-head lock:
1014 * At least two relevant locks must exist for this
1017 if (curr
->held_locks
[depth
].irq_context
!=
1018 curr
->held_locks
[depth
-1].irq_context
)
1022 hlock
= curr
->held_locks
+ depth
-1;
1024 * Only non-recursive-read entries get new dependencies
1027 if (hlock
->read
!= 2) {
1028 check_prev_add(curr
, hlock
, next
);
1030 * Stop after the first non-trylock entry,
1031 * as non-trylock entries have added their
1032 * own direct dependencies already, so this
1033 * lock is connected to them indirectly:
1035 if (!hlock
->trylock
)
1040 * End of lock-stack?
1045 * Stop the search if we cross into another context:
1047 if (curr
->held_locks
[depth
].irq_context
!=
1048 curr
->held_locks
[depth
-1].irq_context
)
1053 __raw_spin_unlock(&hash_lock
);
1054 DEBUG_LOCKS_WARN_ON(1);
1061 * Is this the address of a static object:
1063 static int static_obj(void *obj
)
1065 unsigned long start
= (unsigned long) &_stext
,
1066 end
= (unsigned long) &_end
,
1067 addr
= (unsigned long) obj
;
1075 if ((addr
>= start
) && (addr
< end
))
1082 for_each_possible_cpu(i
) {
1083 start
= (unsigned long) &__per_cpu_start
+ per_cpu_offset(i
);
1084 end
= (unsigned long) &__per_cpu_start
+ PERCPU_ENOUGH_ROOM
1085 + per_cpu_offset(i
);
1087 if ((addr
>= start
) && (addr
< end
))
1095 return is_module_address(addr
);
1099 * To make lock name printouts unique, we calculate a unique
1100 * class->name_version generation counter:
1102 static int count_matching_names(struct lock_class
*new_class
)
1104 struct lock_class
*class;
1107 if (!new_class
->name
)
1110 list_for_each_entry(class, &all_lock_classes
, lock_entry
) {
1111 if (new_class
->key
- new_class
->subclass
== class->key
)
1112 return class->name_version
;
1113 if (class->name
&& !strcmp(class->name
, new_class
->name
))
1114 count
= max(count
, class->name_version
);
1121 * Register a lock's class in the hash-table, if the class is not present
1122 * yet. Otherwise we look it up. We cache the result in the lock object
1123 * itself, so actual lookup of the hash should be once per lock object.
1125 static inline struct lock_class
*
1126 look_up_lock_class(struct lockdep_map
*lock
, unsigned int subclass
)
1128 struct lockdep_subclass_key
*key
;
1129 struct list_head
*hash_head
;
1130 struct lock_class
*class;
1132 #ifdef CONFIG_DEBUG_LOCKDEP
1134 * If the architecture calls into lockdep before initializing
1135 * the hashes then we'll warn about it later. (we cannot printk
1138 if (unlikely(!lockdep_initialized
)) {
1140 lockdep_init_error
= 1;
1145 * Static locks do not have their class-keys yet - for them the key
1146 * is the lock object itself:
1148 if (unlikely(!lock
->key
))
1149 lock
->key
= (void *)lock
;
1152 * NOTE: the class-key must be unique. For dynamic locks, a static
1153 * lock_class_key variable is passed in through the mutex_init()
1154 * (or spin_lock_init()) call - which acts as the key. For static
1155 * locks we use the lock object itself as the key.
1157 BUILD_BUG_ON(sizeof(struct lock_class_key
) > sizeof(struct lock_class
));
1159 key
= lock
->key
->subkeys
+ subclass
;
1161 hash_head
= classhashentry(key
);
1164 * We can walk the hash lockfree, because the hash only
1165 * grows, and we are careful when adding entries to the end:
1167 list_for_each_entry(class, hash_head
, hash_entry
)
1168 if (class->key
== key
)
1175 * Register a lock's class in the hash-table, if the class is not present
1176 * yet. Otherwise we look it up. We cache the result in the lock object
1177 * itself, so actual lookup of the hash should be once per lock object.
1179 static inline struct lock_class
*
1180 register_lock_class(struct lockdep_map
*lock
, unsigned int subclass
, int force
)
1182 struct lockdep_subclass_key
*key
;
1183 struct list_head
*hash_head
;
1184 struct lock_class
*class;
1186 class = look_up_lock_class(lock
, subclass
);
1191 * Debug-check: all keys must be persistent!
1193 if (!static_obj(lock
->key
)) {
1195 printk("INFO: trying to register non-static key.\n");
1196 printk("the code is fine but needs lockdep annotation.\n");
1197 printk("turning off the locking correctness validator.\n");
1203 key
= lock
->key
->subkeys
+ subclass
;
1204 hash_head
= classhashentry(key
);
1206 __raw_spin_lock(&hash_lock
);
1208 * We have to do the hash-walk again, to avoid races
1211 list_for_each_entry(class, hash_head
, hash_entry
)
1212 if (class->key
== key
)
1213 goto out_unlock_set
;
1215 * Allocate a new key from the static array, and add it to
1218 if (nr_lock_classes
>= MAX_LOCKDEP_KEYS
) {
1219 __raw_spin_unlock(&hash_lock
);
1221 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
1222 printk("turning off the locking correctness validator.\n");
1225 class = lock_classes
+ nr_lock_classes
++;
1226 debug_atomic_inc(&nr_unused_locks
);
1228 class->name
= lock
->name
;
1229 class->subclass
= subclass
;
1230 INIT_LIST_HEAD(&class->lock_entry
);
1231 INIT_LIST_HEAD(&class->locks_before
);
1232 INIT_LIST_HEAD(&class->locks_after
);
1233 class->name_version
= count_matching_names(class);
1235 * We use RCU's safe list-add method to make
1236 * parallel walking of the hash-list safe:
1238 list_add_tail_rcu(&class->hash_entry
, hash_head
);
1240 if (verbose(class)) {
1241 __raw_spin_unlock(&hash_lock
);
1242 printk("\nnew class %p: %s", class->key
, class->name
);
1243 if (class->name_version
> 1)
1244 printk("#%d", class->name_version
);
1247 __raw_spin_lock(&hash_lock
);
1250 __raw_spin_unlock(&hash_lock
);
1252 if (!subclass
|| force
)
1253 lock
->class_cache
= class;
1255 DEBUG_LOCKS_WARN_ON(class->subclass
!= subclass
);
1261 * Look up a dependency chain. If the key is not present yet then
1262 * add it and return 0 - in this case the new dependency chain is
1263 * validated. If the key is already hashed, return 1.
1265 static inline int lookup_chain_cache(u64 chain_key
)
1267 struct list_head
*hash_head
= chainhashentry(chain_key
);
1268 struct lock_chain
*chain
;
1270 DEBUG_LOCKS_WARN_ON(!irqs_disabled());
1272 * We can walk it lock-free, because entries only get added
1275 list_for_each_entry(chain
, hash_head
, entry
) {
1276 if (chain
->chain_key
== chain_key
) {
1278 debug_atomic_inc(&chain_lookup_hits
);
1280 * In the debugging case, force redundant checking
1283 #ifdef CONFIG_DEBUG_LOCKDEP
1284 __raw_spin_lock(&hash_lock
);
1291 * Allocate a new chain entry from the static array, and add
1294 __raw_spin_lock(&hash_lock
);
1296 * We have to walk the chain again locked - to avoid duplicates:
1298 list_for_each_entry(chain
, hash_head
, entry
) {
1299 if (chain
->chain_key
== chain_key
) {
1300 __raw_spin_unlock(&hash_lock
);
1304 if (unlikely(nr_lock_chains
>= MAX_LOCKDEP_CHAINS
)) {
1305 __raw_spin_unlock(&hash_lock
);
1307 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1308 printk("turning off the locking correctness validator.\n");
1311 chain
= lock_chains
+ nr_lock_chains
++;
1312 chain
->chain_key
= chain_key
;
1313 list_add_tail_rcu(&chain
->entry
, hash_head
);
1314 debug_atomic_inc(&chain_lookup_misses
);
1315 #ifdef CONFIG_TRACE_IRQFLAGS
1316 if (current
->hardirq_context
)
1317 nr_hardirq_chains
++;
1319 if (current
->softirq_context
)
1320 nr_softirq_chains
++;
1322 nr_process_chains
++;
1325 nr_process_chains
++;
1332 * We are building curr_chain_key incrementally, so double-check
1333 * it from scratch, to make sure that it's done correctly:
1335 static void check_chain_key(struct task_struct
*curr
)
1337 #ifdef CONFIG_DEBUG_LOCKDEP
1338 struct held_lock
*hlock
, *prev_hlock
= NULL
;
1342 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1343 hlock
= curr
->held_locks
+ i
;
1344 if (chain_key
!= hlock
->prev_chain_key
) {
1346 printk("hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1347 curr
->lockdep_depth
, i
,
1348 (unsigned long long)chain_key
,
1349 (unsigned long long)hlock
->prev_chain_key
);
1353 id
= hlock
->class - lock_classes
;
1354 DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
);
1355 if (prev_hlock
&& (prev_hlock
->irq_context
!=
1356 hlock
->irq_context
))
1358 chain_key
= iterate_chain_key(chain_key
, id
);
1361 if (chain_key
!= curr
->curr_chain_key
) {
1363 printk("hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1364 curr
->lockdep_depth
, i
,
1365 (unsigned long long)chain_key
,
1366 (unsigned long long)curr
->curr_chain_key
);
1372 #ifdef CONFIG_TRACE_IRQFLAGS
1375 * print irq inversion bug:
1378 print_irq_inversion_bug(struct task_struct
*curr
, struct lock_class
*other
,
1379 struct held_lock
*this, int forwards
,
1380 const char *irqclass
)
1382 __raw_spin_unlock(&hash_lock
);
1384 if (debug_locks_silent
)
1387 printk("\n=========================================================\n");
1388 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
1389 print_kernel_version();
1390 printk( "---------------------------------------------------------\n");
1391 printk("%s/%d just changed the state of lock:\n",
1392 curr
->comm
, curr
->pid
);
1395 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass
);
1397 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass
);
1398 print_lock_name(other
);
1399 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1401 printk("\nother info that might help us debug this:\n");
1402 lockdep_print_held_locks(curr
);
1404 printk("\nthe first lock's dependencies:\n");
1405 print_lock_dependencies(this->class, 0);
1407 printk("\nthe second lock's dependencies:\n");
1408 print_lock_dependencies(other
, 0);
1410 printk("\nstack backtrace:\n");
1417 * Prove that in the forwards-direction subgraph starting at <this>
1418 * there is no lock matching <mask>:
1421 check_usage_forwards(struct task_struct
*curr
, struct held_lock
*this,
1422 enum lock_usage_bit bit
, const char *irqclass
)
1426 find_usage_bit
= bit
;
1427 /* fills in <forwards_match> */
1428 ret
= find_usage_forwards(this->class, 0);
1429 if (!ret
|| ret
== 1)
1432 return print_irq_inversion_bug(curr
, forwards_match
, this, 1, irqclass
);
1436 * Prove that in the backwards-direction subgraph starting at <this>
1437 * there is no lock matching <mask>:
1440 check_usage_backwards(struct task_struct
*curr
, struct held_lock
*this,
1441 enum lock_usage_bit bit
, const char *irqclass
)
1445 find_usage_bit
= bit
;
1446 /* fills in <backwards_match> */
1447 ret
= find_usage_backwards(this->class, 0);
1448 if (!ret
|| ret
== 1)
1451 return print_irq_inversion_bug(curr
, backwards_match
, this, 0, irqclass
);
1454 static inline void print_irqtrace_events(struct task_struct
*curr
)
1456 printk("irq event stamp: %u\n", curr
->irq_events
);
1457 printk("hardirqs last enabled at (%u): ", curr
->hardirq_enable_event
);
1458 print_ip_sym(curr
->hardirq_enable_ip
);
1459 printk("hardirqs last disabled at (%u): ", curr
->hardirq_disable_event
);
1460 print_ip_sym(curr
->hardirq_disable_ip
);
1461 printk("softirqs last enabled at (%u): ", curr
->softirq_enable_event
);
1462 print_ip_sym(curr
->softirq_enable_ip
);
1463 printk("softirqs last disabled at (%u): ", curr
->softirq_disable_event
);
1464 print_ip_sym(curr
->softirq_disable_ip
);
1468 static inline void print_irqtrace_events(struct task_struct
*curr
)
1474 print_usage_bug(struct task_struct
*curr
, struct held_lock
*this,
1475 enum lock_usage_bit prev_bit
, enum lock_usage_bit new_bit
)
1477 __raw_spin_unlock(&hash_lock
);
1479 if (debug_locks_silent
)
1482 printk("\n=================================\n");
1483 printk( "[ INFO: inconsistent lock state ]\n");
1484 print_kernel_version();
1485 printk( "---------------------------------\n");
1487 printk("inconsistent {%s} -> {%s} usage.\n",
1488 usage_str
[prev_bit
], usage_str
[new_bit
]);
1490 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1491 curr
->comm
, curr
->pid
,
1492 trace_hardirq_context(curr
), hardirq_count() >> HARDIRQ_SHIFT
,
1493 trace_softirq_context(curr
), softirq_count() >> SOFTIRQ_SHIFT
,
1494 trace_hardirqs_enabled(curr
),
1495 trace_softirqs_enabled(curr
));
1498 printk("{%s} state was registered at:\n", usage_str
[prev_bit
]);
1499 print_stack_trace(this->class->usage_traces
+ prev_bit
, 1);
1501 print_irqtrace_events(curr
);
1502 printk("\nother info that might help us debug this:\n");
1503 lockdep_print_held_locks(curr
);
1505 printk("\nstack backtrace:\n");
1512 * Print out an error if an invalid bit is set:
1515 valid_state(struct task_struct
*curr
, struct held_lock
*this,
1516 enum lock_usage_bit new_bit
, enum lock_usage_bit bad_bit
)
1518 if (unlikely(this->class->usage_mask
& (1 << bad_bit
)))
1519 return print_usage_bug(curr
, this, bad_bit
, new_bit
);
1523 #define STRICT_READ_CHECKS 1
1526 * Mark a lock with a usage bit, and validate the state transition:
1528 static int mark_lock(struct task_struct
*curr
, struct held_lock
*this,
1529 enum lock_usage_bit new_bit
, unsigned long ip
)
1531 unsigned int new_mask
= 1 << new_bit
, ret
= 1;
1534 * If already set then do not dirty the cacheline,
1535 * nor do any checks:
1537 if (likely(this->class->usage_mask
& new_mask
))
1540 __raw_spin_lock(&hash_lock
);
1542 * Make sure we didnt race:
1544 if (unlikely(this->class->usage_mask
& new_mask
)) {
1545 __raw_spin_unlock(&hash_lock
);
1549 this->class->usage_mask
|= new_mask
;
1551 #ifdef CONFIG_TRACE_IRQFLAGS
1552 if (new_bit
== LOCK_ENABLED_HARDIRQS
||
1553 new_bit
== LOCK_ENABLED_HARDIRQS_READ
)
1554 ip
= curr
->hardirq_enable_ip
;
1555 else if (new_bit
== LOCK_ENABLED_SOFTIRQS
||
1556 new_bit
== LOCK_ENABLED_SOFTIRQS_READ
)
1557 ip
= curr
->softirq_enable_ip
;
1559 if (!save_trace(this->class->usage_traces
+ new_bit
))
1563 #ifdef CONFIG_TRACE_IRQFLAGS
1564 case LOCK_USED_IN_HARDIRQ
:
1565 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1567 if (!valid_state(curr
, this, new_bit
,
1568 LOCK_ENABLED_HARDIRQS_READ
))
1571 * just marked it hardirq-safe, check that this lock
1572 * took no hardirq-unsafe lock in the past:
1574 if (!check_usage_forwards(curr
, this,
1575 LOCK_ENABLED_HARDIRQS
, "hard"))
1577 #if STRICT_READ_CHECKS
1579 * just marked it hardirq-safe, check that this lock
1580 * took no hardirq-unsafe-read lock in the past:
1582 if (!check_usage_forwards(curr
, this,
1583 LOCK_ENABLED_HARDIRQS_READ
, "hard-read"))
1586 if (hardirq_verbose(this->class))
1589 case LOCK_USED_IN_SOFTIRQ
:
1590 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1592 if (!valid_state(curr
, this, new_bit
,
1593 LOCK_ENABLED_SOFTIRQS_READ
))
1596 * just marked it softirq-safe, check that this lock
1597 * took no softirq-unsafe lock in the past:
1599 if (!check_usage_forwards(curr
, this,
1600 LOCK_ENABLED_SOFTIRQS
, "soft"))
1602 #if STRICT_READ_CHECKS
1604 * just marked it softirq-safe, check that this lock
1605 * took no softirq-unsafe-read lock in the past:
1607 if (!check_usage_forwards(curr
, this,
1608 LOCK_ENABLED_SOFTIRQS_READ
, "soft-read"))
1611 if (softirq_verbose(this->class))
1614 case LOCK_USED_IN_HARDIRQ_READ
:
1615 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1618 * just marked it hardirq-read-safe, check that this lock
1619 * took no hardirq-unsafe lock in the past:
1621 if (!check_usage_forwards(curr
, this,
1622 LOCK_ENABLED_HARDIRQS
, "hard"))
1624 if (hardirq_verbose(this->class))
1627 case LOCK_USED_IN_SOFTIRQ_READ
:
1628 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1631 * just marked it softirq-read-safe, check that this lock
1632 * took no softirq-unsafe lock in the past:
1634 if (!check_usage_forwards(curr
, this,
1635 LOCK_ENABLED_SOFTIRQS
, "soft"))
1637 if (softirq_verbose(this->class))
1640 case LOCK_ENABLED_HARDIRQS
:
1641 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1643 if (!valid_state(curr
, this, new_bit
,
1644 LOCK_USED_IN_HARDIRQ_READ
))
1647 * just marked it hardirq-unsafe, check that no hardirq-safe
1648 * lock in the system ever took it in the past:
1650 if (!check_usage_backwards(curr
, this,
1651 LOCK_USED_IN_HARDIRQ
, "hard"))
1653 #if STRICT_READ_CHECKS
1655 * just marked it hardirq-unsafe, check that no
1656 * hardirq-safe-read lock in the system ever took
1659 if (!check_usage_backwards(curr
, this,
1660 LOCK_USED_IN_HARDIRQ_READ
, "hard-read"))
1663 if (hardirq_verbose(this->class))
1666 case LOCK_ENABLED_SOFTIRQS
:
1667 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1669 if (!valid_state(curr
, this, new_bit
,
1670 LOCK_USED_IN_SOFTIRQ_READ
))
1673 * just marked it softirq-unsafe, check that no softirq-safe
1674 * lock in the system ever took it in the past:
1676 if (!check_usage_backwards(curr
, this,
1677 LOCK_USED_IN_SOFTIRQ
, "soft"))
1679 #if STRICT_READ_CHECKS
1681 * just marked it softirq-unsafe, check that no
1682 * softirq-safe-read lock in the system ever took
1685 if (!check_usage_backwards(curr
, this,
1686 LOCK_USED_IN_SOFTIRQ_READ
, "soft-read"))
1689 if (softirq_verbose(this->class))
1692 case LOCK_ENABLED_HARDIRQS_READ
:
1693 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1695 #if STRICT_READ_CHECKS
1697 * just marked it hardirq-read-unsafe, check that no
1698 * hardirq-safe lock in the system ever took it in the past:
1700 if (!check_usage_backwards(curr
, this,
1701 LOCK_USED_IN_HARDIRQ
, "hard"))
1704 if (hardirq_verbose(this->class))
1707 case LOCK_ENABLED_SOFTIRQS_READ
:
1708 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1710 #if STRICT_READ_CHECKS
1712 * just marked it softirq-read-unsafe, check that no
1713 * softirq-safe lock in the system ever took it in the past:
1715 if (!check_usage_backwards(curr
, this,
1716 LOCK_USED_IN_SOFTIRQ
, "soft"))
1719 if (softirq_verbose(this->class))
1725 * Add it to the global list of classes:
1727 list_add_tail_rcu(&this->class->lock_entry
, &all_lock_classes
);
1728 debug_atomic_dec(&nr_unused_locks
);
1736 __raw_spin_unlock(&hash_lock
);
1739 * We must printk outside of the hash_lock:
1742 printk("\nmarked lock as {%s}:\n", usage_str
[new_bit
]);
1744 print_irqtrace_events(curr
);
1751 #ifdef CONFIG_TRACE_IRQFLAGS
1753 * Mark all held locks with a usage bit:
1756 mark_held_locks(struct task_struct
*curr
, int hardirq
, unsigned long ip
)
1758 enum lock_usage_bit usage_bit
;
1759 struct held_lock
*hlock
;
1762 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1763 hlock
= curr
->held_locks
+ i
;
1767 usage_bit
= LOCK_ENABLED_HARDIRQS_READ
;
1769 usage_bit
= LOCK_ENABLED_HARDIRQS
;
1772 usage_bit
= LOCK_ENABLED_SOFTIRQS_READ
;
1774 usage_bit
= LOCK_ENABLED_SOFTIRQS
;
1776 if (!mark_lock(curr
, hlock
, usage_bit
, ip
))
1784 * Debugging helper: via this flag we know that we are in
1785 * 'early bootup code', and will warn about any invalid irqs-on event:
1787 static int early_boot_irqs_enabled
;
1789 void early_boot_irqs_off(void)
1791 early_boot_irqs_enabled
= 0;
1794 void early_boot_irqs_on(void)
1796 early_boot_irqs_enabled
= 1;
1800 * Hardirqs will be enabled:
1802 void trace_hardirqs_on(void)
1804 struct task_struct
*curr
= current
;
1807 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1810 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled
)))
1813 if (unlikely(curr
->hardirqs_enabled
)) {
1814 debug_atomic_inc(&redundant_hardirqs_on
);
1817 /* we'll do an OFF -> ON transition: */
1818 curr
->hardirqs_enabled
= 1;
1819 ip
= (unsigned long) __builtin_return_address(0);
1821 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1823 if (DEBUG_LOCKS_WARN_ON(current
->hardirq_context
))
1826 * We are going to turn hardirqs on, so set the
1827 * usage bit for all held locks:
1829 if (!mark_held_locks(curr
, 1, ip
))
1832 * If we have softirqs enabled, then set the usage
1833 * bit for all held locks. (disabled hardirqs prevented
1834 * this bit from being set before)
1836 if (curr
->softirqs_enabled
)
1837 if (!mark_held_locks(curr
, 0, ip
))
1840 curr
->hardirq_enable_ip
= ip
;
1841 curr
->hardirq_enable_event
= ++curr
->irq_events
;
1842 debug_atomic_inc(&hardirqs_on_events
);
1845 EXPORT_SYMBOL(trace_hardirqs_on
);
1848 * Hardirqs were disabled:
1850 void trace_hardirqs_off(void)
1852 struct task_struct
*curr
= current
;
1854 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1857 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1860 if (curr
->hardirqs_enabled
) {
1862 * We have done an ON -> OFF transition:
1864 curr
->hardirqs_enabled
= 0;
1865 curr
->hardirq_disable_ip
= _RET_IP_
;
1866 curr
->hardirq_disable_event
= ++curr
->irq_events
;
1867 debug_atomic_inc(&hardirqs_off_events
);
1869 debug_atomic_inc(&redundant_hardirqs_off
);
1872 EXPORT_SYMBOL(trace_hardirqs_off
);
1875 * Softirqs will be enabled:
1877 void trace_softirqs_on(unsigned long ip
)
1879 struct task_struct
*curr
= current
;
1881 if (unlikely(!debug_locks
))
1884 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1887 if (curr
->softirqs_enabled
) {
1888 debug_atomic_inc(&redundant_softirqs_on
);
1893 * We'll do an OFF -> ON transition:
1895 curr
->softirqs_enabled
= 1;
1896 curr
->softirq_enable_ip
= ip
;
1897 curr
->softirq_enable_event
= ++curr
->irq_events
;
1898 debug_atomic_inc(&softirqs_on_events
);
1900 * We are going to turn softirqs on, so set the
1901 * usage bit for all held locks, if hardirqs are
1904 if (curr
->hardirqs_enabled
)
1905 mark_held_locks(curr
, 0, ip
);
1909 * Softirqs were disabled:
1911 void trace_softirqs_off(unsigned long ip
)
1913 struct task_struct
*curr
= current
;
1915 if (unlikely(!debug_locks
))
1918 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1921 if (curr
->softirqs_enabled
) {
1923 * We have done an ON -> OFF transition:
1925 curr
->softirqs_enabled
= 0;
1926 curr
->softirq_disable_ip
= ip
;
1927 curr
->softirq_disable_event
= ++curr
->irq_events
;
1928 debug_atomic_inc(&softirqs_off_events
);
1929 DEBUG_LOCKS_WARN_ON(!softirq_count());
1931 debug_atomic_inc(&redundant_softirqs_off
);
1937 * Initialize a lock instance's lock-class mapping info:
1939 void lockdep_init_map(struct lockdep_map
*lock
, const char *name
,
1940 struct lock_class_key
*key
, int subclass
)
1942 if (unlikely(!debug_locks
))
1945 if (DEBUG_LOCKS_WARN_ON(!key
))
1947 if (DEBUG_LOCKS_WARN_ON(!name
))
1950 * Sanity check, the lock-class key must be persistent:
1952 if (!static_obj(key
)) {
1953 printk("BUG: key %p not in .data!\n", key
);
1954 DEBUG_LOCKS_WARN_ON(1);
1959 lock
->class_cache
= NULL
;
1961 register_lock_class(lock
, subclass
, 1);
1964 EXPORT_SYMBOL_GPL(lockdep_init_map
);
1967 * This gets called for every mutex_lock*()/spin_lock*() operation.
1968 * We maintain the dependency maps and validate the locking attempt:
1970 static int __lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
1971 int trylock
, int read
, int check
, int hardirqs_off
,
1974 struct task_struct
*curr
= current
;
1975 struct lock_class
*class = NULL
;
1976 struct held_lock
*hlock
;
1977 unsigned int depth
, id
;
1981 if (unlikely(!debug_locks
))
1984 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1987 if (unlikely(subclass
>= MAX_LOCKDEP_SUBCLASSES
)) {
1989 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
1990 printk("turning off the locking correctness validator.\n");
1995 class = lock
->class_cache
;
1997 * Not cached yet or subclass?
1999 if (unlikely(!class)) {
2000 class = register_lock_class(lock
, subclass
, 0);
2004 debug_atomic_inc((atomic_t
*)&class->ops
);
2005 if (very_verbose(class)) {
2006 printk("\nacquire class [%p] %s", class->key
, class->name
);
2007 if (class->name_version
> 1)
2008 printk("#%d", class->name_version
);
2014 * Add the lock to the list of currently held locks.
2015 * (we dont increase the depth just yet, up until the
2016 * dependency checks are done)
2018 depth
= curr
->lockdep_depth
;
2019 if (DEBUG_LOCKS_WARN_ON(depth
>= MAX_LOCK_DEPTH
))
2022 hlock
= curr
->held_locks
+ depth
;
2024 hlock
->class = class;
2025 hlock
->acquire_ip
= ip
;
2026 hlock
->instance
= lock
;
2027 hlock
->trylock
= trylock
;
2029 hlock
->check
= check
;
2030 hlock
->hardirqs_off
= hardirqs_off
;
2034 #ifdef CONFIG_TRACE_IRQFLAGS
2036 * If non-trylock use in a hardirq or softirq context, then
2037 * mark the lock as used in these contexts:
2041 if (curr
->hardirq_context
)
2042 if (!mark_lock(curr
, hlock
,
2043 LOCK_USED_IN_HARDIRQ_READ
, ip
))
2045 if (curr
->softirq_context
)
2046 if (!mark_lock(curr
, hlock
,
2047 LOCK_USED_IN_SOFTIRQ_READ
, ip
))
2050 if (curr
->hardirq_context
)
2051 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_HARDIRQ
, ip
))
2053 if (curr
->softirq_context
)
2054 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_SOFTIRQ
, ip
))
2058 if (!hardirqs_off
) {
2060 if (!mark_lock(curr
, hlock
,
2061 LOCK_ENABLED_HARDIRQS_READ
, ip
))
2063 if (curr
->softirqs_enabled
)
2064 if (!mark_lock(curr
, hlock
,
2065 LOCK_ENABLED_SOFTIRQS_READ
, ip
))
2068 if (!mark_lock(curr
, hlock
,
2069 LOCK_ENABLED_HARDIRQS
, ip
))
2071 if (curr
->softirqs_enabled
)
2072 if (!mark_lock(curr
, hlock
,
2073 LOCK_ENABLED_SOFTIRQS
, ip
))
2078 /* mark it as used: */
2079 if (!mark_lock(curr
, hlock
, LOCK_USED
, ip
))
2083 * Calculate the chain hash: it's the combined has of all the
2084 * lock keys along the dependency chain. We save the hash value
2085 * at every step so that we can get the current hash easily
2086 * after unlock. The chain hash is then used to cache dependency
2089 * The 'key ID' is what is the most compact key value to drive
2090 * the hash, not class->key.
2092 id
= class - lock_classes
;
2093 if (DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
))
2096 chain_key
= curr
->curr_chain_key
;
2098 if (DEBUG_LOCKS_WARN_ON(chain_key
!= 0))
2103 hlock
->prev_chain_key
= chain_key
;
2105 #ifdef CONFIG_TRACE_IRQFLAGS
2107 * Keep track of points where we cross into an interrupt context:
2109 hlock
->irq_context
= 2*(curr
->hardirq_context
? 1 : 0) +
2110 curr
->softirq_context
;
2112 struct held_lock
*prev_hlock
;
2114 prev_hlock
= curr
->held_locks
+ depth
-1;
2116 * If we cross into another context, reset the
2117 * hash key (this also prevents the checking and the
2118 * adding of the dependency to 'prev'):
2120 if (prev_hlock
->irq_context
!= hlock
->irq_context
) {
2126 chain_key
= iterate_chain_key(chain_key
, id
);
2127 curr
->curr_chain_key
= chain_key
;
2130 * Trylock needs to maintain the stack of held locks, but it
2131 * does not add new dependencies, because trylock can be done
2134 * We look up the chain_key and do the O(N^2) check and update of
2135 * the dependencies only if this is a new dependency chain.
2136 * (If lookup_chain_cache() returns with 1 it acquires
2139 if (!trylock
&& (check
== 2) && lookup_chain_cache(chain_key
)) {
2141 * Check whether last held lock:
2143 * - is irq-safe, if this lock is irq-unsafe
2144 * - is softirq-safe, if this lock is hardirq-unsafe
2146 * And check whether the new lock's dependency graph
2147 * could lead back to the previous lock.
2149 * any of these scenarios could lead to a deadlock. If
2152 int ret
= check_deadlock(curr
, hlock
, lock
, read
);
2157 * Mark recursive read, as we jump over it when
2158 * building dependencies (just like we jump over
2164 * Add dependency only if this lock is not the head
2165 * of the chain, and if it's not a secondary read-lock:
2167 if (!chain_head
&& ret
!= 2)
2168 if (!check_prevs_add(curr
, hlock
))
2170 __raw_spin_unlock(&hash_lock
);
2172 curr
->lockdep_depth
++;
2173 check_chain_key(curr
);
2174 if (unlikely(curr
->lockdep_depth
>= MAX_LOCK_DEPTH
)) {
2176 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2177 printk("turning off the locking correctness validator.\n");
2180 if (unlikely(curr
->lockdep_depth
> max_lockdep_depth
))
2181 max_lockdep_depth
= curr
->lockdep_depth
;
2187 print_unlock_inbalance_bug(struct task_struct
*curr
, struct lockdep_map
*lock
,
2190 if (!debug_locks_off())
2192 if (debug_locks_silent
)
2195 printk("\n=====================================\n");
2196 printk( "[ BUG: bad unlock balance detected! ]\n");
2197 printk( "-------------------------------------\n");
2198 printk("%s/%d is trying to release lock (",
2199 curr
->comm
, curr
->pid
);
2200 print_lockdep_cache(lock
);
2203 printk("but there are no more locks to release!\n");
2204 printk("\nother info that might help us debug this:\n");
2205 lockdep_print_held_locks(curr
);
2207 printk("\nstack backtrace:\n");
2214 * Common debugging checks for both nested and non-nested unlock:
2216 static int check_unlock(struct task_struct
*curr
, struct lockdep_map
*lock
,
2219 if (unlikely(!debug_locks
))
2221 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2224 if (curr
->lockdep_depth
<= 0)
2225 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2231 * Remove the lock to the list of currently held locks in a
2232 * potentially non-nested (out of order) manner. This is a
2233 * relatively rare operation, as all the unlock APIs default
2234 * to nested mode (which uses lock_release()):
2237 lock_release_non_nested(struct task_struct
*curr
,
2238 struct lockdep_map
*lock
, unsigned long ip
)
2240 struct held_lock
*hlock
, *prev_hlock
;
2245 * Check whether the lock exists in the current stack
2248 depth
= curr
->lockdep_depth
;
2249 if (DEBUG_LOCKS_WARN_ON(!depth
))
2253 for (i
= depth
-1; i
>= 0; i
--) {
2254 hlock
= curr
->held_locks
+ i
;
2256 * We must not cross into another context:
2258 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
2260 if (hlock
->instance
== lock
)
2264 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2268 * We have the right lock to unlock, 'hlock' points to it.
2269 * Now we remove it from the stack, and add back the other
2270 * entries (if any), recalculating the hash along the way:
2272 curr
->lockdep_depth
= i
;
2273 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2275 for (i
++; i
< depth
; i
++) {
2276 hlock
= curr
->held_locks
+ i
;
2277 if (!__lock_acquire(hlock
->instance
,
2278 hlock
->class->subclass
, hlock
->trylock
,
2279 hlock
->read
, hlock
->check
, hlock
->hardirqs_off
,
2284 if (DEBUG_LOCKS_WARN_ON(curr
->lockdep_depth
!= depth
- 1))
2290 * Remove the lock to the list of currently held locks - this gets
2291 * called on mutex_unlock()/spin_unlock*() (or on a failed
2292 * mutex_lock_interruptible()). This is done for unlocks that nest
2293 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2295 static int lock_release_nested(struct task_struct
*curr
,
2296 struct lockdep_map
*lock
, unsigned long ip
)
2298 struct held_lock
*hlock
;
2302 * Pop off the top of the lock stack:
2304 depth
= curr
->lockdep_depth
- 1;
2305 hlock
= curr
->held_locks
+ depth
;
2308 * Is the unlock non-nested:
2310 if (hlock
->instance
!= lock
)
2311 return lock_release_non_nested(curr
, lock
, ip
);
2312 curr
->lockdep_depth
--;
2314 if (DEBUG_LOCKS_WARN_ON(!depth
&& (hlock
->prev_chain_key
!= 0)))
2317 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2319 #ifdef CONFIG_DEBUG_LOCKDEP
2320 hlock
->prev_chain_key
= 0;
2321 hlock
->class = NULL
;
2322 hlock
->acquire_ip
= 0;
2323 hlock
->irq_context
= 0;
2329 * Remove the lock to the list of currently held locks - this gets
2330 * called on mutex_unlock()/spin_unlock*() (or on a failed
2331 * mutex_lock_interruptible()). This is done for unlocks that nest
2332 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2335 __lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2337 struct task_struct
*curr
= current
;
2339 if (!check_unlock(curr
, lock
, ip
))
2343 if (!lock_release_nested(curr
, lock
, ip
))
2346 if (!lock_release_non_nested(curr
, lock
, ip
))
2350 check_chain_key(curr
);
2354 * Check whether we follow the irq-flags state precisely:
2356 static void check_flags(unsigned long flags
)
2358 #if defined(CONFIG_DEBUG_LOCKDEP) && defined(CONFIG_TRACE_IRQFLAGS)
2362 if (irqs_disabled_flags(flags
))
2363 DEBUG_LOCKS_WARN_ON(current
->hardirqs_enabled
);
2365 DEBUG_LOCKS_WARN_ON(!current
->hardirqs_enabled
);
2368 * We dont accurately track softirq state in e.g.
2369 * hardirq contexts (such as on 4KSTACKS), so only
2370 * check if not in hardirq contexts:
2372 if (!hardirq_count()) {
2373 if (softirq_count())
2374 DEBUG_LOCKS_WARN_ON(current
->softirqs_enabled
);
2376 DEBUG_LOCKS_WARN_ON(!current
->softirqs_enabled
);
2380 print_irqtrace_events(current
);
2385 * We are not always called with irqs disabled - do that here,
2386 * and also avoid lockdep recursion:
2388 void lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
2389 int trylock
, int read
, int check
, unsigned long ip
)
2391 unsigned long flags
;
2393 if (unlikely(current
->lockdep_recursion
))
2396 raw_local_irq_save(flags
);
2399 current
->lockdep_recursion
= 1;
2400 __lock_acquire(lock
, subclass
, trylock
, read
, check
,
2401 irqs_disabled_flags(flags
), ip
);
2402 current
->lockdep_recursion
= 0;
2403 raw_local_irq_restore(flags
);
2406 EXPORT_SYMBOL_GPL(lock_acquire
);
2408 void lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2410 unsigned long flags
;
2412 if (unlikely(current
->lockdep_recursion
))
2415 raw_local_irq_save(flags
);
2417 current
->lockdep_recursion
= 1;
2418 __lock_release(lock
, nested
, ip
);
2419 current
->lockdep_recursion
= 0;
2420 raw_local_irq_restore(flags
);
2423 EXPORT_SYMBOL_GPL(lock_release
);
2426 * Used by the testsuite, sanitize the validator state
2427 * after a simulated failure:
2430 void lockdep_reset(void)
2432 unsigned long flags
;
2434 raw_local_irq_save(flags
);
2435 current
->curr_chain_key
= 0;
2436 current
->lockdep_depth
= 0;
2437 current
->lockdep_recursion
= 0;
2438 memset(current
->held_locks
, 0, MAX_LOCK_DEPTH
*sizeof(struct held_lock
));
2439 nr_hardirq_chains
= 0;
2440 nr_softirq_chains
= 0;
2441 nr_process_chains
= 0;
2443 raw_local_irq_restore(flags
);
2446 static void zap_class(struct lock_class
*class)
2451 * Remove all dependencies this lock is
2454 for (i
= 0; i
< nr_list_entries
; i
++) {
2455 if (list_entries
[i
].class == class)
2456 list_del_rcu(&list_entries
[i
].entry
);
2459 * Unhash the class and remove it from the all_lock_classes list:
2461 list_del_rcu(&class->hash_entry
);
2462 list_del_rcu(&class->lock_entry
);
2466 static inline int within(void *addr
, void *start
, unsigned long size
)
2468 return addr
>= start
&& addr
< start
+ size
;
2471 void lockdep_free_key_range(void *start
, unsigned long size
)
2473 struct lock_class
*class, *next
;
2474 struct list_head
*head
;
2475 unsigned long flags
;
2478 raw_local_irq_save(flags
);
2479 __raw_spin_lock(&hash_lock
);
2482 * Unhash all classes that were created by this module:
2484 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2485 head
= classhash_table
+ i
;
2486 if (list_empty(head
))
2488 list_for_each_entry_safe(class, next
, head
, hash_entry
)
2489 if (within(class->key
, start
, size
))
2493 __raw_spin_unlock(&hash_lock
);
2494 raw_local_irq_restore(flags
);
2497 void lockdep_reset_lock(struct lockdep_map
*lock
)
2499 struct lock_class
*class, *next
;
2500 struct list_head
*head
;
2501 unsigned long flags
;
2504 raw_local_irq_save(flags
);
2507 * Remove all classes this lock might have:
2509 for (j
= 0; j
< MAX_LOCKDEP_SUBCLASSES
; j
++) {
2511 * If the class exists we look it up and zap it:
2513 class = look_up_lock_class(lock
, j
);
2518 * Debug check: in the end all mapped classes should
2521 __raw_spin_lock(&hash_lock
);
2522 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2523 head
= classhash_table
+ i
;
2524 if (list_empty(head
))
2526 list_for_each_entry_safe(class, next
, head
, hash_entry
) {
2527 if (unlikely(class == lock
->class_cache
)) {
2528 __raw_spin_unlock(&hash_lock
);
2529 DEBUG_LOCKS_WARN_ON(1);
2534 __raw_spin_unlock(&hash_lock
);
2537 raw_local_irq_restore(flags
);
2540 void __init
lockdep_init(void)
2545 * Some architectures have their own start_kernel()
2546 * code which calls lockdep_init(), while we also
2547 * call lockdep_init() from the start_kernel() itself,
2548 * and we want to initialize the hashes only once:
2550 if (lockdep_initialized
)
2553 for (i
= 0; i
< CLASSHASH_SIZE
; i
++)
2554 INIT_LIST_HEAD(classhash_table
+ i
);
2556 for (i
= 0; i
< CHAINHASH_SIZE
; i
++)
2557 INIT_LIST_HEAD(chainhash_table
+ i
);
2559 lockdep_initialized
= 1;
2562 void __init
lockdep_info(void)
2564 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
2566 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES
);
2567 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH
);
2568 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS
);
2569 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE
);
2570 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES
);
2571 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS
);
2572 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE
);
2574 printk(" memory used by lock dependency info: %lu kB\n",
2575 (sizeof(struct lock_class
) * MAX_LOCKDEP_KEYS
+
2576 sizeof(struct list_head
) * CLASSHASH_SIZE
+
2577 sizeof(struct lock_list
) * MAX_LOCKDEP_ENTRIES
+
2578 sizeof(struct lock_chain
) * MAX_LOCKDEP_CHAINS
+
2579 sizeof(struct list_head
) * CHAINHASH_SIZE
) / 1024);
2581 printk(" per task-struct memory footprint: %lu bytes\n",
2582 sizeof(struct held_lock
) * MAX_LOCK_DEPTH
);
2584 #ifdef CONFIG_DEBUG_LOCKDEP
2585 if (lockdep_init_error
)
2586 printk("WARNING: lockdep init error! Arch code didnt call lockdep_init() early enough?\n");
2590 static inline int in_range(const void *start
, const void *addr
, const void *end
)
2592 return addr
>= start
&& addr
<= end
;
2596 print_freed_lock_bug(struct task_struct
*curr
, const void *mem_from
,
2597 const void *mem_to
, struct held_lock
*hlock
)
2599 if (!debug_locks_off())
2601 if (debug_locks_silent
)
2604 printk("\n=========================\n");
2605 printk( "[ BUG: held lock freed! ]\n");
2606 printk( "-------------------------\n");
2607 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
2608 curr
->comm
, curr
->pid
, mem_from
, mem_to
-1);
2610 lockdep_print_held_locks(curr
);
2612 printk("\nstack backtrace:\n");
2617 * Called when kernel memory is freed (or unmapped), or if a lock
2618 * is destroyed or reinitialized - this code checks whether there is
2619 * any held lock in the memory range of <from> to <to>:
2621 void debug_check_no_locks_freed(const void *mem_from
, unsigned long mem_len
)
2623 const void *mem_to
= mem_from
+ mem_len
, *lock_from
, *lock_to
;
2624 struct task_struct
*curr
= current
;
2625 struct held_lock
*hlock
;
2626 unsigned long flags
;
2629 if (unlikely(!debug_locks
))
2632 local_irq_save(flags
);
2633 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
2634 hlock
= curr
->held_locks
+ i
;
2636 lock_from
= (void *)hlock
->instance
;
2637 lock_to
= (void *)(hlock
->instance
+ 1);
2639 if (!in_range(mem_from
, lock_from
, mem_to
) &&
2640 !in_range(mem_from
, lock_to
, mem_to
))
2643 print_freed_lock_bug(curr
, mem_from
, mem_to
, hlock
);
2646 local_irq_restore(flags
);
2649 static void print_held_locks_bug(struct task_struct
*curr
)
2651 if (!debug_locks_off())
2653 if (debug_locks_silent
)
2656 printk("\n=====================================\n");
2657 printk( "[ BUG: lock held at task exit time! ]\n");
2658 printk( "-------------------------------------\n");
2659 printk("%s/%d is exiting with locks still held!\n",
2660 curr
->comm
, curr
->pid
);
2661 lockdep_print_held_locks(curr
);
2663 printk("\nstack backtrace:\n");
2667 void debug_check_no_locks_held(struct task_struct
*task
)
2669 if (unlikely(task
->lockdep_depth
> 0))
2670 print_held_locks_bug(task
);
2673 void debug_show_all_locks(void)
2675 struct task_struct
*g
, *p
;
2679 printk("\nShowing all locks held in the system:\n");
2682 * Here we try to get the tasklist_lock as hard as possible,
2683 * if not successful after 2 seconds we ignore it (but keep
2684 * trying). This is to enable a debug printout even if a
2685 * tasklist_lock-holding task deadlocks or crashes.
2688 if (!read_trylock(&tasklist_lock
)) {
2690 printk("hm, tasklist_lock locked, retrying... ");
2693 printk(" #%d", 10-count
);
2697 printk(" ignoring it.\n");
2701 printk(" locked it.\n");
2703 do_each_thread(g
, p
) {
2704 if (p
->lockdep_depth
)
2705 lockdep_print_held_locks(p
);
2707 if (read_trylock(&tasklist_lock
))
2709 } while_each_thread(g
, p
);
2712 printk("=============================================\n\n");
2715 read_unlock(&tasklist_lock
);
2718 EXPORT_SYMBOL_GPL(debug_show_all_locks
);
2720 void debug_show_held_locks(struct task_struct
*task
)
2722 lockdep_print_held_locks(task
);
2725 EXPORT_SYMBOL_GPL(debug_show_held_locks
);