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_end
+ per_cpu_offset(i
);
1086 if ((addr
>= start
) && (addr
< end
))
1094 return is_module_address(addr
);
1098 * To make lock name printouts unique, we calculate a unique
1099 * class->name_version generation counter:
1101 static int count_matching_names(struct lock_class
*new_class
)
1103 struct lock_class
*class;
1106 if (!new_class
->name
)
1109 list_for_each_entry(class, &all_lock_classes
, lock_entry
) {
1110 if (new_class
->key
- new_class
->subclass
== class->key
)
1111 return class->name_version
;
1112 if (class->name
&& !strcmp(class->name
, new_class
->name
))
1113 count
= max(count
, class->name_version
);
1120 * Register a lock's class in the hash-table, if the class is not present
1121 * yet. Otherwise we look it up. We cache the result in the lock object
1122 * itself, so actual lookup of the hash should be once per lock object.
1124 static inline struct lock_class
*
1125 look_up_lock_class(struct lockdep_map
*lock
, unsigned int subclass
)
1127 struct lockdep_subclass_key
*key
;
1128 struct list_head
*hash_head
;
1129 struct lock_class
*class;
1131 #ifdef CONFIG_DEBUG_LOCKDEP
1133 * If the architecture calls into lockdep before initializing
1134 * the hashes then we'll warn about it later. (we cannot printk
1137 if (unlikely(!lockdep_initialized
)) {
1139 lockdep_init_error
= 1;
1144 * Static locks do not have their class-keys yet - for them the key
1145 * is the lock object itself:
1147 if (unlikely(!lock
->key
))
1148 lock
->key
= (void *)lock
;
1151 * NOTE: the class-key must be unique. For dynamic locks, a static
1152 * lock_class_key variable is passed in through the mutex_init()
1153 * (or spin_lock_init()) call - which acts as the key. For static
1154 * locks we use the lock object itself as the key.
1156 BUILD_BUG_ON(sizeof(struct lock_class_key
) > sizeof(struct lock_class
));
1158 key
= lock
->key
->subkeys
+ subclass
;
1160 hash_head
= classhashentry(key
);
1163 * We can walk the hash lockfree, because the hash only
1164 * grows, and we are careful when adding entries to the end:
1166 list_for_each_entry(class, hash_head
, hash_entry
)
1167 if (class->key
== key
)
1174 * Register a lock's class in the hash-table, if the class is not present
1175 * yet. Otherwise we look it up. We cache the result in the lock object
1176 * itself, so actual lookup of the hash should be once per lock object.
1178 static inline struct lock_class
*
1179 register_lock_class(struct lockdep_map
*lock
, unsigned int subclass
, int force
)
1181 struct lockdep_subclass_key
*key
;
1182 struct list_head
*hash_head
;
1183 struct lock_class
*class;
1185 class = look_up_lock_class(lock
, subclass
);
1190 * Debug-check: all keys must be persistent!
1192 if (!static_obj(lock
->key
)) {
1194 printk("INFO: trying to register non-static key.\n");
1195 printk("the code is fine but needs lockdep annotation.\n");
1196 printk("turning off the locking correctness validator.\n");
1202 key
= lock
->key
->subkeys
+ subclass
;
1203 hash_head
= classhashentry(key
);
1205 __raw_spin_lock(&hash_lock
);
1207 * We have to do the hash-walk again, to avoid races
1210 list_for_each_entry(class, hash_head
, hash_entry
)
1211 if (class->key
== key
)
1212 goto out_unlock_set
;
1214 * Allocate a new key from the static array, and add it to
1217 if (nr_lock_classes
>= MAX_LOCKDEP_KEYS
) {
1218 __raw_spin_unlock(&hash_lock
);
1220 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
1221 printk("turning off the locking correctness validator.\n");
1224 class = lock_classes
+ nr_lock_classes
++;
1225 debug_atomic_inc(&nr_unused_locks
);
1227 class->name
= lock
->name
;
1228 class->subclass
= subclass
;
1229 INIT_LIST_HEAD(&class->lock_entry
);
1230 INIT_LIST_HEAD(&class->locks_before
);
1231 INIT_LIST_HEAD(&class->locks_after
);
1232 class->name_version
= count_matching_names(class);
1234 * We use RCU's safe list-add method to make
1235 * parallel walking of the hash-list safe:
1237 list_add_tail_rcu(&class->hash_entry
, hash_head
);
1239 if (verbose(class)) {
1240 __raw_spin_unlock(&hash_lock
);
1241 printk("\nnew class %p: %s", class->key
, class->name
);
1242 if (class->name_version
> 1)
1243 printk("#%d", class->name_version
);
1246 __raw_spin_lock(&hash_lock
);
1249 __raw_spin_unlock(&hash_lock
);
1251 if (!subclass
|| force
)
1252 lock
->class_cache
= class;
1254 DEBUG_LOCKS_WARN_ON(class->subclass
!= subclass
);
1260 * Look up a dependency chain. If the key is not present yet then
1261 * add it and return 0 - in this case the new dependency chain is
1262 * validated. If the key is already hashed, return 1.
1264 static inline int lookup_chain_cache(u64 chain_key
)
1266 struct list_head
*hash_head
= chainhashentry(chain_key
);
1267 struct lock_chain
*chain
;
1269 DEBUG_LOCKS_WARN_ON(!irqs_disabled());
1271 * We can walk it lock-free, because entries only get added
1274 list_for_each_entry(chain
, hash_head
, entry
) {
1275 if (chain
->chain_key
== chain_key
) {
1277 debug_atomic_inc(&chain_lookup_hits
);
1279 * In the debugging case, force redundant checking
1282 #ifdef CONFIG_DEBUG_LOCKDEP
1283 __raw_spin_lock(&hash_lock
);
1290 * Allocate a new chain entry from the static array, and add
1293 __raw_spin_lock(&hash_lock
);
1295 * We have to walk the chain again locked - to avoid duplicates:
1297 list_for_each_entry(chain
, hash_head
, entry
) {
1298 if (chain
->chain_key
== chain_key
) {
1299 __raw_spin_unlock(&hash_lock
);
1303 if (unlikely(nr_lock_chains
>= MAX_LOCKDEP_CHAINS
)) {
1304 __raw_spin_unlock(&hash_lock
);
1306 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1307 printk("turning off the locking correctness validator.\n");
1310 chain
= lock_chains
+ nr_lock_chains
++;
1311 chain
->chain_key
= chain_key
;
1312 list_add_tail_rcu(&chain
->entry
, hash_head
);
1313 debug_atomic_inc(&chain_lookup_misses
);
1314 #ifdef CONFIG_TRACE_IRQFLAGS
1315 if (current
->hardirq_context
)
1316 nr_hardirq_chains
++;
1318 if (current
->softirq_context
)
1319 nr_softirq_chains
++;
1321 nr_process_chains
++;
1324 nr_process_chains
++;
1331 * We are building curr_chain_key incrementally, so double-check
1332 * it from scratch, to make sure that it's done correctly:
1334 static void check_chain_key(struct task_struct
*curr
)
1336 #ifdef CONFIG_DEBUG_LOCKDEP
1337 struct held_lock
*hlock
, *prev_hlock
= NULL
;
1341 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1342 hlock
= curr
->held_locks
+ i
;
1343 if (chain_key
!= hlock
->prev_chain_key
) {
1345 printk("hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1346 curr
->lockdep_depth
, i
,
1347 (unsigned long long)chain_key
,
1348 (unsigned long long)hlock
->prev_chain_key
);
1352 id
= hlock
->class - lock_classes
;
1353 DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
);
1354 if (prev_hlock
&& (prev_hlock
->irq_context
!=
1355 hlock
->irq_context
))
1357 chain_key
= iterate_chain_key(chain_key
, id
);
1360 if (chain_key
!= curr
->curr_chain_key
) {
1362 printk("hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1363 curr
->lockdep_depth
, i
,
1364 (unsigned long long)chain_key
,
1365 (unsigned long long)curr
->curr_chain_key
);
1371 #ifdef CONFIG_TRACE_IRQFLAGS
1374 * print irq inversion bug:
1377 print_irq_inversion_bug(struct task_struct
*curr
, struct lock_class
*other
,
1378 struct held_lock
*this, int forwards
,
1379 const char *irqclass
)
1381 __raw_spin_unlock(&hash_lock
);
1383 if (debug_locks_silent
)
1386 printk("\n=========================================================\n");
1387 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
1388 print_kernel_version();
1389 printk( "---------------------------------------------------------\n");
1390 printk("%s/%d just changed the state of lock:\n",
1391 curr
->comm
, curr
->pid
);
1394 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass
);
1396 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass
);
1397 print_lock_name(other
);
1398 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1400 printk("\nother info that might help us debug this:\n");
1401 lockdep_print_held_locks(curr
);
1403 printk("\nthe first lock's dependencies:\n");
1404 print_lock_dependencies(this->class, 0);
1406 printk("\nthe second lock's dependencies:\n");
1407 print_lock_dependencies(other
, 0);
1409 printk("\nstack backtrace:\n");
1416 * Prove that in the forwards-direction subgraph starting at <this>
1417 * there is no lock matching <mask>:
1420 check_usage_forwards(struct task_struct
*curr
, struct held_lock
*this,
1421 enum lock_usage_bit bit
, const char *irqclass
)
1425 find_usage_bit
= bit
;
1426 /* fills in <forwards_match> */
1427 ret
= find_usage_forwards(this->class, 0);
1428 if (!ret
|| ret
== 1)
1431 return print_irq_inversion_bug(curr
, forwards_match
, this, 1, irqclass
);
1435 * Prove that in the backwards-direction subgraph starting at <this>
1436 * there is no lock matching <mask>:
1439 check_usage_backwards(struct task_struct
*curr
, struct held_lock
*this,
1440 enum lock_usage_bit bit
, const char *irqclass
)
1444 find_usage_bit
= bit
;
1445 /* fills in <backwards_match> */
1446 ret
= find_usage_backwards(this->class, 0);
1447 if (!ret
|| ret
== 1)
1450 return print_irq_inversion_bug(curr
, backwards_match
, this, 0, irqclass
);
1453 static inline void print_irqtrace_events(struct task_struct
*curr
)
1455 printk("irq event stamp: %u\n", curr
->irq_events
);
1456 printk("hardirqs last enabled at (%u): ", curr
->hardirq_enable_event
);
1457 print_ip_sym(curr
->hardirq_enable_ip
);
1458 printk("hardirqs last disabled at (%u): ", curr
->hardirq_disable_event
);
1459 print_ip_sym(curr
->hardirq_disable_ip
);
1460 printk("softirqs last enabled at (%u): ", curr
->softirq_enable_event
);
1461 print_ip_sym(curr
->softirq_enable_ip
);
1462 printk("softirqs last disabled at (%u): ", curr
->softirq_disable_event
);
1463 print_ip_sym(curr
->softirq_disable_ip
);
1467 static inline void print_irqtrace_events(struct task_struct
*curr
)
1473 print_usage_bug(struct task_struct
*curr
, struct held_lock
*this,
1474 enum lock_usage_bit prev_bit
, enum lock_usage_bit new_bit
)
1476 __raw_spin_unlock(&hash_lock
);
1478 if (debug_locks_silent
)
1481 printk("\n=================================\n");
1482 printk( "[ INFO: inconsistent lock state ]\n");
1483 print_kernel_version();
1484 printk( "---------------------------------\n");
1486 printk("inconsistent {%s} -> {%s} usage.\n",
1487 usage_str
[prev_bit
], usage_str
[new_bit
]);
1489 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1490 curr
->comm
, curr
->pid
,
1491 trace_hardirq_context(curr
), hardirq_count() >> HARDIRQ_SHIFT
,
1492 trace_softirq_context(curr
), softirq_count() >> SOFTIRQ_SHIFT
,
1493 trace_hardirqs_enabled(curr
),
1494 trace_softirqs_enabled(curr
));
1497 printk("{%s} state was registered at:\n", usage_str
[prev_bit
]);
1498 print_stack_trace(this->class->usage_traces
+ prev_bit
, 1);
1500 print_irqtrace_events(curr
);
1501 printk("\nother info that might help us debug this:\n");
1502 lockdep_print_held_locks(curr
);
1504 printk("\nstack backtrace:\n");
1511 * Print out an error if an invalid bit is set:
1514 valid_state(struct task_struct
*curr
, struct held_lock
*this,
1515 enum lock_usage_bit new_bit
, enum lock_usage_bit bad_bit
)
1517 if (unlikely(this->class->usage_mask
& (1 << bad_bit
)))
1518 return print_usage_bug(curr
, this, bad_bit
, new_bit
);
1522 #define STRICT_READ_CHECKS 1
1525 * Mark a lock with a usage bit, and validate the state transition:
1527 static int mark_lock(struct task_struct
*curr
, struct held_lock
*this,
1528 enum lock_usage_bit new_bit
, unsigned long ip
)
1530 unsigned int new_mask
= 1 << new_bit
, ret
= 1;
1533 * If already set then do not dirty the cacheline,
1534 * nor do any checks:
1536 if (likely(this->class->usage_mask
& new_mask
))
1539 __raw_spin_lock(&hash_lock
);
1541 * Make sure we didnt race:
1543 if (unlikely(this->class->usage_mask
& new_mask
)) {
1544 __raw_spin_unlock(&hash_lock
);
1548 this->class->usage_mask
|= new_mask
;
1550 #ifdef CONFIG_TRACE_IRQFLAGS
1551 if (new_bit
== LOCK_ENABLED_HARDIRQS
||
1552 new_bit
== LOCK_ENABLED_HARDIRQS_READ
)
1553 ip
= curr
->hardirq_enable_ip
;
1554 else if (new_bit
== LOCK_ENABLED_SOFTIRQS
||
1555 new_bit
== LOCK_ENABLED_SOFTIRQS_READ
)
1556 ip
= curr
->softirq_enable_ip
;
1558 if (!save_trace(this->class->usage_traces
+ new_bit
))
1562 #ifdef CONFIG_TRACE_IRQFLAGS
1563 case LOCK_USED_IN_HARDIRQ
:
1564 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1566 if (!valid_state(curr
, this, new_bit
,
1567 LOCK_ENABLED_HARDIRQS_READ
))
1570 * just marked it hardirq-safe, check that this lock
1571 * took no hardirq-unsafe lock in the past:
1573 if (!check_usage_forwards(curr
, this,
1574 LOCK_ENABLED_HARDIRQS
, "hard"))
1576 #if STRICT_READ_CHECKS
1578 * just marked it hardirq-safe, check that this lock
1579 * took no hardirq-unsafe-read lock in the past:
1581 if (!check_usage_forwards(curr
, this,
1582 LOCK_ENABLED_HARDIRQS_READ
, "hard-read"))
1585 if (hardirq_verbose(this->class))
1588 case LOCK_USED_IN_SOFTIRQ
:
1589 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1591 if (!valid_state(curr
, this, new_bit
,
1592 LOCK_ENABLED_SOFTIRQS_READ
))
1595 * just marked it softirq-safe, check that this lock
1596 * took no softirq-unsafe lock in the past:
1598 if (!check_usage_forwards(curr
, this,
1599 LOCK_ENABLED_SOFTIRQS
, "soft"))
1601 #if STRICT_READ_CHECKS
1603 * just marked it softirq-safe, check that this lock
1604 * took no softirq-unsafe-read lock in the past:
1606 if (!check_usage_forwards(curr
, this,
1607 LOCK_ENABLED_SOFTIRQS_READ
, "soft-read"))
1610 if (softirq_verbose(this->class))
1613 case LOCK_USED_IN_HARDIRQ_READ
:
1614 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1617 * just marked it hardirq-read-safe, check that this lock
1618 * took no hardirq-unsafe lock in the past:
1620 if (!check_usage_forwards(curr
, this,
1621 LOCK_ENABLED_HARDIRQS
, "hard"))
1623 if (hardirq_verbose(this->class))
1626 case LOCK_USED_IN_SOFTIRQ_READ
:
1627 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1630 * just marked it softirq-read-safe, check that this lock
1631 * took no softirq-unsafe lock in the past:
1633 if (!check_usage_forwards(curr
, this,
1634 LOCK_ENABLED_SOFTIRQS
, "soft"))
1636 if (softirq_verbose(this->class))
1639 case LOCK_ENABLED_HARDIRQS
:
1640 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1642 if (!valid_state(curr
, this, new_bit
,
1643 LOCK_USED_IN_HARDIRQ_READ
))
1646 * just marked it hardirq-unsafe, check that no hardirq-safe
1647 * lock in the system ever took it in the past:
1649 if (!check_usage_backwards(curr
, this,
1650 LOCK_USED_IN_HARDIRQ
, "hard"))
1652 #if STRICT_READ_CHECKS
1654 * just marked it hardirq-unsafe, check that no
1655 * hardirq-safe-read lock in the system ever took
1658 if (!check_usage_backwards(curr
, this,
1659 LOCK_USED_IN_HARDIRQ_READ
, "hard-read"))
1662 if (hardirq_verbose(this->class))
1665 case LOCK_ENABLED_SOFTIRQS
:
1666 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1668 if (!valid_state(curr
, this, new_bit
,
1669 LOCK_USED_IN_SOFTIRQ_READ
))
1672 * just marked it softirq-unsafe, check that no softirq-safe
1673 * lock in the system ever took it in the past:
1675 if (!check_usage_backwards(curr
, this,
1676 LOCK_USED_IN_SOFTIRQ
, "soft"))
1678 #if STRICT_READ_CHECKS
1680 * just marked it softirq-unsafe, check that no
1681 * softirq-safe-read lock in the system ever took
1684 if (!check_usage_backwards(curr
, this,
1685 LOCK_USED_IN_SOFTIRQ_READ
, "soft-read"))
1688 if (softirq_verbose(this->class))
1691 case LOCK_ENABLED_HARDIRQS_READ
:
1692 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1694 #if STRICT_READ_CHECKS
1696 * just marked it hardirq-read-unsafe, check that no
1697 * hardirq-safe lock in the system ever took it in the past:
1699 if (!check_usage_backwards(curr
, this,
1700 LOCK_USED_IN_HARDIRQ
, "hard"))
1703 if (hardirq_verbose(this->class))
1706 case LOCK_ENABLED_SOFTIRQS_READ
:
1707 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1709 #if STRICT_READ_CHECKS
1711 * just marked it softirq-read-unsafe, check that no
1712 * softirq-safe lock in the system ever took it in the past:
1714 if (!check_usage_backwards(curr
, this,
1715 LOCK_USED_IN_SOFTIRQ
, "soft"))
1718 if (softirq_verbose(this->class))
1724 * Add it to the global list of classes:
1726 list_add_tail_rcu(&this->class->lock_entry
, &all_lock_classes
);
1727 debug_atomic_dec(&nr_unused_locks
);
1735 __raw_spin_unlock(&hash_lock
);
1738 * We must printk outside of the hash_lock:
1741 printk("\nmarked lock as {%s}:\n", usage_str
[new_bit
]);
1743 print_irqtrace_events(curr
);
1750 #ifdef CONFIG_TRACE_IRQFLAGS
1752 * Mark all held locks with a usage bit:
1755 mark_held_locks(struct task_struct
*curr
, int hardirq
, unsigned long ip
)
1757 enum lock_usage_bit usage_bit
;
1758 struct held_lock
*hlock
;
1761 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1762 hlock
= curr
->held_locks
+ i
;
1766 usage_bit
= LOCK_ENABLED_HARDIRQS_READ
;
1768 usage_bit
= LOCK_ENABLED_HARDIRQS
;
1771 usage_bit
= LOCK_ENABLED_SOFTIRQS_READ
;
1773 usage_bit
= LOCK_ENABLED_SOFTIRQS
;
1775 if (!mark_lock(curr
, hlock
, usage_bit
, ip
))
1783 * Debugging helper: via this flag we know that we are in
1784 * 'early bootup code', and will warn about any invalid irqs-on event:
1786 static int early_boot_irqs_enabled
;
1788 void early_boot_irqs_off(void)
1790 early_boot_irqs_enabled
= 0;
1793 void early_boot_irqs_on(void)
1795 early_boot_irqs_enabled
= 1;
1799 * Hardirqs will be enabled:
1801 void trace_hardirqs_on(void)
1803 struct task_struct
*curr
= current
;
1806 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1809 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled
)))
1812 if (unlikely(curr
->hardirqs_enabled
)) {
1813 debug_atomic_inc(&redundant_hardirqs_on
);
1816 /* we'll do an OFF -> ON transition: */
1817 curr
->hardirqs_enabled
= 1;
1818 ip
= (unsigned long) __builtin_return_address(0);
1820 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1822 if (DEBUG_LOCKS_WARN_ON(current
->hardirq_context
))
1825 * We are going to turn hardirqs on, so set the
1826 * usage bit for all held locks:
1828 if (!mark_held_locks(curr
, 1, ip
))
1831 * If we have softirqs enabled, then set the usage
1832 * bit for all held locks. (disabled hardirqs prevented
1833 * this bit from being set before)
1835 if (curr
->softirqs_enabled
)
1836 if (!mark_held_locks(curr
, 0, ip
))
1839 curr
->hardirq_enable_ip
= ip
;
1840 curr
->hardirq_enable_event
= ++curr
->irq_events
;
1841 debug_atomic_inc(&hardirqs_on_events
);
1844 EXPORT_SYMBOL(trace_hardirqs_on
);
1847 * Hardirqs were disabled:
1849 void trace_hardirqs_off(void)
1851 struct task_struct
*curr
= current
;
1853 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1856 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1859 if (curr
->hardirqs_enabled
) {
1861 * We have done an ON -> OFF transition:
1863 curr
->hardirqs_enabled
= 0;
1864 curr
->hardirq_disable_ip
= _RET_IP_
;
1865 curr
->hardirq_disable_event
= ++curr
->irq_events
;
1866 debug_atomic_inc(&hardirqs_off_events
);
1868 debug_atomic_inc(&redundant_hardirqs_off
);
1871 EXPORT_SYMBOL(trace_hardirqs_off
);
1874 * Softirqs will be enabled:
1876 void trace_softirqs_on(unsigned long ip
)
1878 struct task_struct
*curr
= current
;
1880 if (unlikely(!debug_locks
))
1883 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1886 if (curr
->softirqs_enabled
) {
1887 debug_atomic_inc(&redundant_softirqs_on
);
1892 * We'll do an OFF -> ON transition:
1894 curr
->softirqs_enabled
= 1;
1895 curr
->softirq_enable_ip
= ip
;
1896 curr
->softirq_enable_event
= ++curr
->irq_events
;
1897 debug_atomic_inc(&softirqs_on_events
);
1899 * We are going to turn softirqs on, so set the
1900 * usage bit for all held locks, if hardirqs are
1903 if (curr
->hardirqs_enabled
)
1904 mark_held_locks(curr
, 0, ip
);
1908 * Softirqs were disabled:
1910 void trace_softirqs_off(unsigned long ip
)
1912 struct task_struct
*curr
= current
;
1914 if (unlikely(!debug_locks
))
1917 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1920 if (curr
->softirqs_enabled
) {
1922 * We have done an ON -> OFF transition:
1924 curr
->softirqs_enabled
= 0;
1925 curr
->softirq_disable_ip
= ip
;
1926 curr
->softirq_disable_event
= ++curr
->irq_events
;
1927 debug_atomic_inc(&softirqs_off_events
);
1928 DEBUG_LOCKS_WARN_ON(!softirq_count());
1930 debug_atomic_inc(&redundant_softirqs_off
);
1936 * Initialize a lock instance's lock-class mapping info:
1938 void lockdep_init_map(struct lockdep_map
*lock
, const char *name
,
1939 struct lock_class_key
*key
, int subclass
)
1941 if (unlikely(!debug_locks
))
1944 if (DEBUG_LOCKS_WARN_ON(!key
))
1946 if (DEBUG_LOCKS_WARN_ON(!name
))
1949 * Sanity check, the lock-class key must be persistent:
1951 if (!static_obj(key
)) {
1952 printk("BUG: key %p not in .data!\n", key
);
1953 DEBUG_LOCKS_WARN_ON(1);
1958 lock
->class_cache
= NULL
;
1960 register_lock_class(lock
, subclass
, 1);
1963 EXPORT_SYMBOL_GPL(lockdep_init_map
);
1966 * This gets called for every mutex_lock*()/spin_lock*() operation.
1967 * We maintain the dependency maps and validate the locking attempt:
1969 static int __lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
1970 int trylock
, int read
, int check
, int hardirqs_off
,
1973 struct task_struct
*curr
= current
;
1974 struct lock_class
*class = NULL
;
1975 struct held_lock
*hlock
;
1976 unsigned int depth
, id
;
1980 if (unlikely(!debug_locks
))
1983 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1986 if (unlikely(subclass
>= MAX_LOCKDEP_SUBCLASSES
)) {
1988 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
1989 printk("turning off the locking correctness validator.\n");
1994 class = lock
->class_cache
;
1996 * Not cached yet or subclass?
1998 if (unlikely(!class)) {
1999 class = register_lock_class(lock
, subclass
, 0);
2003 debug_atomic_inc((atomic_t
*)&class->ops
);
2004 if (very_verbose(class)) {
2005 printk("\nacquire class [%p] %s", class->key
, class->name
);
2006 if (class->name_version
> 1)
2007 printk("#%d", class->name_version
);
2013 * Add the lock to the list of currently held locks.
2014 * (we dont increase the depth just yet, up until the
2015 * dependency checks are done)
2017 depth
= curr
->lockdep_depth
;
2018 if (DEBUG_LOCKS_WARN_ON(depth
>= MAX_LOCK_DEPTH
))
2021 hlock
= curr
->held_locks
+ depth
;
2023 hlock
->class = class;
2024 hlock
->acquire_ip
= ip
;
2025 hlock
->instance
= lock
;
2026 hlock
->trylock
= trylock
;
2028 hlock
->check
= check
;
2029 hlock
->hardirqs_off
= hardirqs_off
;
2033 #ifdef CONFIG_TRACE_IRQFLAGS
2035 * If non-trylock use in a hardirq or softirq context, then
2036 * mark the lock as used in these contexts:
2040 if (curr
->hardirq_context
)
2041 if (!mark_lock(curr
, hlock
,
2042 LOCK_USED_IN_HARDIRQ_READ
, ip
))
2044 if (curr
->softirq_context
)
2045 if (!mark_lock(curr
, hlock
,
2046 LOCK_USED_IN_SOFTIRQ_READ
, ip
))
2049 if (curr
->hardirq_context
)
2050 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_HARDIRQ
, ip
))
2052 if (curr
->softirq_context
)
2053 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_SOFTIRQ
, ip
))
2057 if (!hardirqs_off
) {
2059 if (!mark_lock(curr
, hlock
,
2060 LOCK_ENABLED_HARDIRQS_READ
, ip
))
2062 if (curr
->softirqs_enabled
)
2063 if (!mark_lock(curr
, hlock
,
2064 LOCK_ENABLED_SOFTIRQS_READ
, ip
))
2067 if (!mark_lock(curr
, hlock
,
2068 LOCK_ENABLED_HARDIRQS
, ip
))
2070 if (curr
->softirqs_enabled
)
2071 if (!mark_lock(curr
, hlock
,
2072 LOCK_ENABLED_SOFTIRQS
, ip
))
2077 /* mark it as used: */
2078 if (!mark_lock(curr
, hlock
, LOCK_USED
, ip
))
2082 * Calculate the chain hash: it's the combined has of all the
2083 * lock keys along the dependency chain. We save the hash value
2084 * at every step so that we can get the current hash easily
2085 * after unlock. The chain hash is then used to cache dependency
2088 * The 'key ID' is what is the most compact key value to drive
2089 * the hash, not class->key.
2091 id
= class - lock_classes
;
2092 if (DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
))
2095 chain_key
= curr
->curr_chain_key
;
2097 if (DEBUG_LOCKS_WARN_ON(chain_key
!= 0))
2102 hlock
->prev_chain_key
= chain_key
;
2104 #ifdef CONFIG_TRACE_IRQFLAGS
2106 * Keep track of points where we cross into an interrupt context:
2108 hlock
->irq_context
= 2*(curr
->hardirq_context
? 1 : 0) +
2109 curr
->softirq_context
;
2111 struct held_lock
*prev_hlock
;
2113 prev_hlock
= curr
->held_locks
+ depth
-1;
2115 * If we cross into another context, reset the
2116 * hash key (this also prevents the checking and the
2117 * adding of the dependency to 'prev'):
2119 if (prev_hlock
->irq_context
!= hlock
->irq_context
) {
2125 chain_key
= iterate_chain_key(chain_key
, id
);
2126 curr
->curr_chain_key
= chain_key
;
2129 * Trylock needs to maintain the stack of held locks, but it
2130 * does not add new dependencies, because trylock can be done
2133 * We look up the chain_key and do the O(N^2) check and update of
2134 * the dependencies only if this is a new dependency chain.
2135 * (If lookup_chain_cache() returns with 1 it acquires
2138 if (!trylock
&& (check
== 2) && lookup_chain_cache(chain_key
)) {
2140 * Check whether last held lock:
2142 * - is irq-safe, if this lock is irq-unsafe
2143 * - is softirq-safe, if this lock is hardirq-unsafe
2145 * And check whether the new lock's dependency graph
2146 * could lead back to the previous lock.
2148 * any of these scenarios could lead to a deadlock. If
2151 int ret
= check_deadlock(curr
, hlock
, lock
, read
);
2156 * Mark recursive read, as we jump over it when
2157 * building dependencies (just like we jump over
2163 * Add dependency only if this lock is not the head
2164 * of the chain, and if it's not a secondary read-lock:
2166 if (!chain_head
&& ret
!= 2)
2167 if (!check_prevs_add(curr
, hlock
))
2169 __raw_spin_unlock(&hash_lock
);
2171 curr
->lockdep_depth
++;
2172 check_chain_key(curr
);
2173 if (unlikely(curr
->lockdep_depth
>= MAX_LOCK_DEPTH
)) {
2175 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2176 printk("turning off the locking correctness validator.\n");
2179 if (unlikely(curr
->lockdep_depth
> max_lockdep_depth
))
2180 max_lockdep_depth
= curr
->lockdep_depth
;
2186 print_unlock_inbalance_bug(struct task_struct
*curr
, struct lockdep_map
*lock
,
2189 if (!debug_locks_off())
2191 if (debug_locks_silent
)
2194 printk("\n=====================================\n");
2195 printk( "[ BUG: bad unlock balance detected! ]\n");
2196 printk( "-------------------------------------\n");
2197 printk("%s/%d is trying to release lock (",
2198 curr
->comm
, curr
->pid
);
2199 print_lockdep_cache(lock
);
2202 printk("but there are no more locks to release!\n");
2203 printk("\nother info that might help us debug this:\n");
2204 lockdep_print_held_locks(curr
);
2206 printk("\nstack backtrace:\n");
2213 * Common debugging checks for both nested and non-nested unlock:
2215 static int check_unlock(struct task_struct
*curr
, struct lockdep_map
*lock
,
2218 if (unlikely(!debug_locks
))
2220 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2223 if (curr
->lockdep_depth
<= 0)
2224 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2230 * Remove the lock to the list of currently held locks in a
2231 * potentially non-nested (out of order) manner. This is a
2232 * relatively rare operation, as all the unlock APIs default
2233 * to nested mode (which uses lock_release()):
2236 lock_release_non_nested(struct task_struct
*curr
,
2237 struct lockdep_map
*lock
, unsigned long ip
)
2239 struct held_lock
*hlock
, *prev_hlock
;
2244 * Check whether the lock exists in the current stack
2247 depth
= curr
->lockdep_depth
;
2248 if (DEBUG_LOCKS_WARN_ON(!depth
))
2252 for (i
= depth
-1; i
>= 0; i
--) {
2253 hlock
= curr
->held_locks
+ i
;
2255 * We must not cross into another context:
2257 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
2259 if (hlock
->instance
== lock
)
2263 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2267 * We have the right lock to unlock, 'hlock' points to it.
2268 * Now we remove it from the stack, and add back the other
2269 * entries (if any), recalculating the hash along the way:
2271 curr
->lockdep_depth
= i
;
2272 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2274 for (i
++; i
< depth
; i
++) {
2275 hlock
= curr
->held_locks
+ i
;
2276 if (!__lock_acquire(hlock
->instance
,
2277 hlock
->class->subclass
, hlock
->trylock
,
2278 hlock
->read
, hlock
->check
, hlock
->hardirqs_off
,
2283 if (DEBUG_LOCKS_WARN_ON(curr
->lockdep_depth
!= depth
- 1))
2289 * Remove the lock to the list of currently held locks - this gets
2290 * called on mutex_unlock()/spin_unlock*() (or on a failed
2291 * mutex_lock_interruptible()). This is done for unlocks that nest
2292 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2294 static int lock_release_nested(struct task_struct
*curr
,
2295 struct lockdep_map
*lock
, unsigned long ip
)
2297 struct held_lock
*hlock
;
2301 * Pop off the top of the lock stack:
2303 depth
= curr
->lockdep_depth
- 1;
2304 hlock
= curr
->held_locks
+ depth
;
2307 * Is the unlock non-nested:
2309 if (hlock
->instance
!= lock
)
2310 return lock_release_non_nested(curr
, lock
, ip
);
2311 curr
->lockdep_depth
--;
2313 if (DEBUG_LOCKS_WARN_ON(!depth
&& (hlock
->prev_chain_key
!= 0)))
2316 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2318 #ifdef CONFIG_DEBUG_LOCKDEP
2319 hlock
->prev_chain_key
= 0;
2320 hlock
->class = NULL
;
2321 hlock
->acquire_ip
= 0;
2322 hlock
->irq_context
= 0;
2328 * Remove the lock to the list of currently held locks - this gets
2329 * called on mutex_unlock()/spin_unlock*() (or on a failed
2330 * mutex_lock_interruptible()). This is done for unlocks that nest
2331 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2334 __lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2336 struct task_struct
*curr
= current
;
2338 if (!check_unlock(curr
, lock
, ip
))
2342 if (!lock_release_nested(curr
, lock
, ip
))
2345 if (!lock_release_non_nested(curr
, lock
, ip
))
2349 check_chain_key(curr
);
2353 * Check whether we follow the irq-flags state precisely:
2355 static void check_flags(unsigned long flags
)
2357 #if defined(CONFIG_DEBUG_LOCKDEP) && defined(CONFIG_TRACE_IRQFLAGS)
2361 if (irqs_disabled_flags(flags
))
2362 DEBUG_LOCKS_WARN_ON(current
->hardirqs_enabled
);
2364 DEBUG_LOCKS_WARN_ON(!current
->hardirqs_enabled
);
2367 * We dont accurately track softirq state in e.g.
2368 * hardirq contexts (such as on 4KSTACKS), so only
2369 * check if not in hardirq contexts:
2371 if (!hardirq_count()) {
2372 if (softirq_count())
2373 DEBUG_LOCKS_WARN_ON(current
->softirqs_enabled
);
2375 DEBUG_LOCKS_WARN_ON(!current
->softirqs_enabled
);
2379 print_irqtrace_events(current
);
2384 * We are not always called with irqs disabled - do that here,
2385 * and also avoid lockdep recursion:
2387 void lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
2388 int trylock
, int read
, int check
, unsigned long ip
)
2390 unsigned long flags
;
2392 if (unlikely(current
->lockdep_recursion
))
2395 raw_local_irq_save(flags
);
2398 current
->lockdep_recursion
= 1;
2399 __lock_acquire(lock
, subclass
, trylock
, read
, check
,
2400 irqs_disabled_flags(flags
), ip
);
2401 current
->lockdep_recursion
= 0;
2402 raw_local_irq_restore(flags
);
2405 EXPORT_SYMBOL_GPL(lock_acquire
);
2407 void lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2409 unsigned long flags
;
2411 if (unlikely(current
->lockdep_recursion
))
2414 raw_local_irq_save(flags
);
2416 current
->lockdep_recursion
= 1;
2417 __lock_release(lock
, nested
, ip
);
2418 current
->lockdep_recursion
= 0;
2419 raw_local_irq_restore(flags
);
2422 EXPORT_SYMBOL_GPL(lock_release
);
2425 * Used by the testsuite, sanitize the validator state
2426 * after a simulated failure:
2429 void lockdep_reset(void)
2431 unsigned long flags
;
2433 raw_local_irq_save(flags
);
2434 current
->curr_chain_key
= 0;
2435 current
->lockdep_depth
= 0;
2436 current
->lockdep_recursion
= 0;
2437 memset(current
->held_locks
, 0, MAX_LOCK_DEPTH
*sizeof(struct held_lock
));
2438 nr_hardirq_chains
= 0;
2439 nr_softirq_chains
= 0;
2440 nr_process_chains
= 0;
2442 raw_local_irq_restore(flags
);
2445 static void zap_class(struct lock_class
*class)
2450 * Remove all dependencies this lock is
2453 for (i
= 0; i
< nr_list_entries
; i
++) {
2454 if (list_entries
[i
].class == class)
2455 list_del_rcu(&list_entries
[i
].entry
);
2458 * Unhash the class and remove it from the all_lock_classes list:
2460 list_del_rcu(&class->hash_entry
);
2461 list_del_rcu(&class->lock_entry
);
2465 static inline int within(void *addr
, void *start
, unsigned long size
)
2467 return addr
>= start
&& addr
< start
+ size
;
2470 void lockdep_free_key_range(void *start
, unsigned long size
)
2472 struct lock_class
*class, *next
;
2473 struct list_head
*head
;
2474 unsigned long flags
;
2477 raw_local_irq_save(flags
);
2478 __raw_spin_lock(&hash_lock
);
2481 * Unhash all classes that were created by this module:
2483 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2484 head
= classhash_table
+ i
;
2485 if (list_empty(head
))
2487 list_for_each_entry_safe(class, next
, head
, hash_entry
)
2488 if (within(class->key
, start
, size
))
2492 __raw_spin_unlock(&hash_lock
);
2493 raw_local_irq_restore(flags
);
2496 void lockdep_reset_lock(struct lockdep_map
*lock
)
2498 struct lock_class
*class, *next
;
2499 struct list_head
*head
;
2500 unsigned long flags
;
2503 raw_local_irq_save(flags
);
2506 * Remove all classes this lock might have:
2508 for (j
= 0; j
< MAX_LOCKDEP_SUBCLASSES
; j
++) {
2510 * If the class exists we look it up and zap it:
2512 class = look_up_lock_class(lock
, j
);
2517 * Debug check: in the end all mapped classes should
2520 __raw_spin_lock(&hash_lock
);
2521 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2522 head
= classhash_table
+ i
;
2523 if (list_empty(head
))
2525 list_for_each_entry_safe(class, next
, head
, hash_entry
) {
2526 if (unlikely(class == lock
->class_cache
)) {
2527 __raw_spin_unlock(&hash_lock
);
2528 DEBUG_LOCKS_WARN_ON(1);
2533 __raw_spin_unlock(&hash_lock
);
2536 raw_local_irq_restore(flags
);
2539 void __init
lockdep_init(void)
2544 * Some architectures have their own start_kernel()
2545 * code which calls lockdep_init(), while we also
2546 * call lockdep_init() from the start_kernel() itself,
2547 * and we want to initialize the hashes only once:
2549 if (lockdep_initialized
)
2552 for (i
= 0; i
< CLASSHASH_SIZE
; i
++)
2553 INIT_LIST_HEAD(classhash_table
+ i
);
2555 for (i
= 0; i
< CHAINHASH_SIZE
; i
++)
2556 INIT_LIST_HEAD(chainhash_table
+ i
);
2558 lockdep_initialized
= 1;
2561 void __init
lockdep_info(void)
2563 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
2565 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES
);
2566 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH
);
2567 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS
);
2568 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE
);
2569 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES
);
2570 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS
);
2571 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE
);
2573 printk(" memory used by lock dependency info: %lu kB\n",
2574 (sizeof(struct lock_class
) * MAX_LOCKDEP_KEYS
+
2575 sizeof(struct list_head
) * CLASSHASH_SIZE
+
2576 sizeof(struct lock_list
) * MAX_LOCKDEP_ENTRIES
+
2577 sizeof(struct lock_chain
) * MAX_LOCKDEP_CHAINS
+
2578 sizeof(struct list_head
) * CHAINHASH_SIZE
) / 1024);
2580 printk(" per task-struct memory footprint: %lu bytes\n",
2581 sizeof(struct held_lock
) * MAX_LOCK_DEPTH
);
2583 #ifdef CONFIG_DEBUG_LOCKDEP
2584 if (lockdep_init_error
)
2585 printk("WARNING: lockdep init error! Arch code didnt call lockdep_init() early enough?\n");
2589 static inline int in_range(const void *start
, const void *addr
, const void *end
)
2591 return addr
>= start
&& addr
<= end
;
2595 print_freed_lock_bug(struct task_struct
*curr
, const void *mem_from
,
2596 const void *mem_to
, struct held_lock
*hlock
)
2598 if (!debug_locks_off())
2600 if (debug_locks_silent
)
2603 printk("\n=========================\n");
2604 printk( "[ BUG: held lock freed! ]\n");
2605 printk( "-------------------------\n");
2606 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
2607 curr
->comm
, curr
->pid
, mem_from
, mem_to
-1);
2609 lockdep_print_held_locks(curr
);
2611 printk("\nstack backtrace:\n");
2616 * Called when kernel memory is freed (or unmapped), or if a lock
2617 * is destroyed or reinitialized - this code checks whether there is
2618 * any held lock in the memory range of <from> to <to>:
2620 void debug_check_no_locks_freed(const void *mem_from
, unsigned long mem_len
)
2622 const void *mem_to
= mem_from
+ mem_len
, *lock_from
, *lock_to
;
2623 struct task_struct
*curr
= current
;
2624 struct held_lock
*hlock
;
2625 unsigned long flags
;
2628 if (unlikely(!debug_locks
))
2631 local_irq_save(flags
);
2632 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
2633 hlock
= curr
->held_locks
+ i
;
2635 lock_from
= (void *)hlock
->instance
;
2636 lock_to
= (void *)(hlock
->instance
+ 1);
2638 if (!in_range(mem_from
, lock_from
, mem_to
) &&
2639 !in_range(mem_from
, lock_to
, mem_to
))
2642 print_freed_lock_bug(curr
, mem_from
, mem_to
, hlock
);
2645 local_irq_restore(flags
);
2648 static void print_held_locks_bug(struct task_struct
*curr
)
2650 if (!debug_locks_off())
2652 if (debug_locks_silent
)
2655 printk("\n=====================================\n");
2656 printk( "[ BUG: lock held at task exit time! ]\n");
2657 printk( "-------------------------------------\n");
2658 printk("%s/%d is exiting with locks still held!\n",
2659 curr
->comm
, curr
->pid
);
2660 lockdep_print_held_locks(curr
);
2662 printk("\nstack backtrace:\n");
2666 void debug_check_no_locks_held(struct task_struct
*task
)
2668 if (unlikely(task
->lockdep_depth
> 0))
2669 print_held_locks_bug(task
);
2672 void debug_show_all_locks(void)
2674 struct task_struct
*g
, *p
;
2678 printk("\nShowing all locks held in the system:\n");
2681 * Here we try to get the tasklist_lock as hard as possible,
2682 * if not successful after 2 seconds we ignore it (but keep
2683 * trying). This is to enable a debug printout even if a
2684 * tasklist_lock-holding task deadlocks or crashes.
2687 if (!read_trylock(&tasklist_lock
)) {
2689 printk("hm, tasklist_lock locked, retrying... ");
2692 printk(" #%d", 10-count
);
2696 printk(" ignoring it.\n");
2700 printk(" locked it.\n");
2702 do_each_thread(g
, p
) {
2703 if (p
->lockdep_depth
)
2704 lockdep_print_held_locks(p
);
2706 if (read_trylock(&tasklist_lock
))
2708 } while_each_thread(g
, p
);
2711 printk("=============================================\n\n");
2714 read_unlock(&tasklist_lock
);
2717 EXPORT_SYMBOL_GPL(debug_show_all_locks
);
2719 void debug_show_held_locks(struct task_struct
*task
)
2721 lockdep_print_held_locks(task
);
2724 EXPORT_SYMBOL_GPL(debug_show_held_locks
);