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
)) {
241 __raw_spin_unlock(&hash_lock
);
245 if (nr_stack_trace_entries
== MAX_STACK_TRACE_ENTRIES
) {
246 __raw_spin_unlock(&hash_lock
);
247 if (debug_locks_off()) {
248 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
249 printk("turning off the locking correctness validator.\n");
258 unsigned int nr_hardirq_chains
;
259 unsigned int nr_softirq_chains
;
260 unsigned int nr_process_chains
;
261 unsigned int max_lockdep_depth
;
262 unsigned int max_recursion_depth
;
264 #ifdef CONFIG_DEBUG_LOCKDEP
266 * We cannot printk in early bootup code. Not even early_printk()
267 * might work. So we mark any initialization errors and printk
268 * about it later on, in lockdep_info().
270 static int lockdep_init_error
;
273 * Various lockdep statistics:
275 atomic_t chain_lookup_hits
;
276 atomic_t chain_lookup_misses
;
277 atomic_t hardirqs_on_events
;
278 atomic_t hardirqs_off_events
;
279 atomic_t redundant_hardirqs_on
;
280 atomic_t redundant_hardirqs_off
;
281 atomic_t softirqs_on_events
;
282 atomic_t softirqs_off_events
;
283 atomic_t redundant_softirqs_on
;
284 atomic_t redundant_softirqs_off
;
285 atomic_t nr_unused_locks
;
286 atomic_t nr_cyclic_checks
;
287 atomic_t nr_cyclic_check_recursions
;
288 atomic_t nr_find_usage_forwards_checks
;
289 atomic_t nr_find_usage_forwards_recursions
;
290 atomic_t nr_find_usage_backwards_checks
;
291 atomic_t nr_find_usage_backwards_recursions
;
292 # define debug_atomic_inc(ptr) atomic_inc(ptr)
293 # define debug_atomic_dec(ptr) atomic_dec(ptr)
294 # define debug_atomic_read(ptr) atomic_read(ptr)
296 # define debug_atomic_inc(ptr) do { } while (0)
297 # define debug_atomic_dec(ptr) do { } while (0)
298 # define debug_atomic_read(ptr) 0
305 static const char *usage_str
[] =
307 [LOCK_USED
] = "initial-use ",
308 [LOCK_USED_IN_HARDIRQ
] = "in-hardirq-W",
309 [LOCK_USED_IN_SOFTIRQ
] = "in-softirq-W",
310 [LOCK_ENABLED_SOFTIRQS
] = "softirq-on-W",
311 [LOCK_ENABLED_HARDIRQS
] = "hardirq-on-W",
312 [LOCK_USED_IN_HARDIRQ_READ
] = "in-hardirq-R",
313 [LOCK_USED_IN_SOFTIRQ_READ
] = "in-softirq-R",
314 [LOCK_ENABLED_SOFTIRQS_READ
] = "softirq-on-R",
315 [LOCK_ENABLED_HARDIRQS_READ
] = "hardirq-on-R",
318 const char * __get_key_name(struct lockdep_subclass_key
*key
, char *str
)
320 unsigned long offs
, size
;
323 return kallsyms_lookup((unsigned long)key
, &size
, &offs
, &modname
, str
);
327 get_usage_chars(struct lock_class
*class, char *c1
, char *c2
, char *c3
, char *c4
)
329 *c1
= '.', *c2
= '.', *c3
= '.', *c4
= '.';
331 if (class->usage_mask
& LOCKF_USED_IN_HARDIRQ
)
334 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS
)
337 if (class->usage_mask
& LOCKF_USED_IN_SOFTIRQ
)
340 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS
)
343 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS_READ
)
345 if (class->usage_mask
& LOCKF_USED_IN_HARDIRQ_READ
) {
347 if (class->usage_mask
& LOCKF_ENABLED_HARDIRQS_READ
)
351 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS_READ
)
353 if (class->usage_mask
& LOCKF_USED_IN_SOFTIRQ_READ
) {
355 if (class->usage_mask
& LOCKF_ENABLED_SOFTIRQS_READ
)
360 static void print_lock_name(struct lock_class
*class)
362 char str
[KSYM_NAME_LEN
+ 1], c1
, c2
, c3
, c4
;
365 get_usage_chars(class, &c1
, &c2
, &c3
, &c4
);
369 name
= __get_key_name(class->key
, str
);
370 printk(" (%s", name
);
372 printk(" (%s", name
);
373 if (class->name_version
> 1)
374 printk("#%d", class->name_version
);
376 printk("/%d", class->subclass
);
378 printk("){%c%c%c%c}", c1
, c2
, c3
, c4
);
381 static void print_lockdep_cache(struct lockdep_map
*lock
)
384 char str
[KSYM_NAME_LEN
+ 1];
388 name
= __get_key_name(lock
->key
->subkeys
, str
);
393 static void print_lock(struct held_lock
*hlock
)
395 print_lock_name(hlock
->class);
397 print_ip_sym(hlock
->acquire_ip
);
400 static void lockdep_print_held_locks(struct task_struct
*curr
)
402 int i
, depth
= curr
->lockdep_depth
;
405 printk("no locks held by %s/%d.\n", curr
->comm
, curr
->pid
);
408 printk("%d lock%s held by %s/%d:\n",
409 depth
, depth
> 1 ? "s" : "", curr
->comm
, curr
->pid
);
411 for (i
= 0; i
< depth
; i
++) {
413 print_lock(curr
->held_locks
+ i
);
417 static void print_lock_class_header(struct lock_class
*class, int depth
)
421 printk("%*s->", depth
, "");
422 print_lock_name(class);
423 printk(" ops: %lu", class->ops
);
426 for (bit
= 0; bit
< LOCK_USAGE_STATES
; bit
++) {
427 if (class->usage_mask
& (1 << bit
)) {
430 len
+= printk("%*s %s", depth
, "", usage_str
[bit
]);
431 len
+= printk(" at:\n");
432 print_stack_trace(class->usage_traces
+ bit
, len
);
435 printk("%*s }\n", depth
, "");
437 printk("%*s ... key at: ",depth
,"");
438 print_ip_sym((unsigned long)class->key
);
442 * printk all lock dependencies starting at <entry>:
444 static void print_lock_dependencies(struct lock_class
*class, int depth
)
446 struct lock_list
*entry
;
448 if (DEBUG_LOCKS_WARN_ON(depth
>= 20))
451 print_lock_class_header(class, depth
);
453 list_for_each_entry(entry
, &class->locks_after
, entry
) {
454 if (DEBUG_LOCKS_WARN_ON(!entry
->class))
457 print_lock_dependencies(entry
->class, depth
+ 1);
459 printk("%*s ... acquired at:\n",depth
,"");
460 print_stack_trace(&entry
->trace
, 2);
466 * Add a new dependency to the head of the list:
468 static int add_lock_to_list(struct lock_class
*class, struct lock_class
*this,
469 struct list_head
*head
, unsigned long ip
)
471 struct lock_list
*entry
;
473 * Lock not present yet - get a new dependency struct and
474 * add it to the list:
476 entry
= alloc_list_entry();
481 if (!save_trace(&entry
->trace
))
485 * Since we never remove from the dependency list, the list can
486 * be walked lockless by other CPUs, it's only allocation
487 * that must be protected by the spinlock. But this also means
488 * we must make new entries visible only once writes to the
489 * entry become visible - hence the RCU op:
491 list_add_tail_rcu(&entry
->entry
, head
);
497 * Recursive, forwards-direction lock-dependency checking, used for
498 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
501 * (to keep the stackframe of the recursive functions small we
502 * use these global variables, and we also mark various helper
503 * functions as noinline.)
505 static struct held_lock
*check_source
, *check_target
;
508 * Print a dependency chain entry (this is only done when a deadlock
509 * has been detected):
512 print_circular_bug_entry(struct lock_list
*target
, unsigned int depth
)
514 if (debug_locks_silent
)
516 printk("\n-> #%u", depth
);
517 print_lock_name(target
->class);
519 print_stack_trace(&target
->trace
, 6);
524 static void print_kernel_version(void)
526 printk("%s %.*s\n", init_utsname()->release
,
527 (int)strcspn(init_utsname()->version
, " "),
528 init_utsname()->version
);
532 * When a circular dependency is detected, print the
536 print_circular_bug_header(struct lock_list
*entry
, unsigned int depth
)
538 struct task_struct
*curr
= current
;
540 __raw_spin_unlock(&hash_lock
);
542 if (debug_locks_silent
)
545 printk("\n=======================================================\n");
546 printk( "[ INFO: possible circular locking dependency detected ]\n");
547 print_kernel_version();
548 printk( "-------------------------------------------------------\n");
549 printk("%s/%d is trying to acquire lock:\n",
550 curr
->comm
, curr
->pid
);
551 print_lock(check_source
);
552 printk("\nbut task is already holding lock:\n");
553 print_lock(check_target
);
554 printk("\nwhich lock already depends on the new lock.\n\n");
555 printk("\nthe existing dependency chain (in reverse order) is:\n");
557 print_circular_bug_entry(entry
, depth
);
562 static noinline
int print_circular_bug_tail(void)
564 struct task_struct
*curr
= current
;
565 struct lock_list
this;
567 if (debug_locks_silent
)
570 /* hash_lock unlocked by the header */
571 __raw_spin_lock(&hash_lock
);
572 this.class = check_source
->class;
573 if (!save_trace(&this.trace
))
575 __raw_spin_unlock(&hash_lock
);
576 print_circular_bug_entry(&this, 0);
578 printk("\nother info that might help us debug this:\n\n");
579 lockdep_print_held_locks(curr
);
581 printk("\nstack backtrace:\n");
587 #define RECURSION_LIMIT 40
589 static int noinline
print_infinite_recursion_bug(void)
591 __raw_spin_unlock(&hash_lock
);
592 DEBUG_LOCKS_WARN_ON(1);
598 * Prove that the dependency graph starting at <entry> can not
599 * lead to <target>. Print an error and return 0 if it does.
602 check_noncircular(struct lock_class
*source
, unsigned int depth
)
604 struct lock_list
*entry
;
606 debug_atomic_inc(&nr_cyclic_check_recursions
);
607 if (depth
> max_recursion_depth
)
608 max_recursion_depth
= depth
;
609 if (depth
>= RECURSION_LIMIT
)
610 return print_infinite_recursion_bug();
612 * Check this lock's dependency list:
614 list_for_each_entry(entry
, &source
->locks_after
, entry
) {
615 if (entry
->class == check_target
->class)
616 return print_circular_bug_header(entry
, depth
+1);
617 debug_atomic_inc(&nr_cyclic_checks
);
618 if (!check_noncircular(entry
->class, depth
+1))
619 return print_circular_bug_entry(entry
, depth
+1);
624 static int very_verbose(struct lock_class
*class)
627 return class_filter(class);
631 #ifdef CONFIG_TRACE_IRQFLAGS
634 * Forwards and backwards subgraph searching, for the purposes of
635 * proving that two subgraphs can be connected by a new dependency
636 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
638 static enum lock_usage_bit find_usage_bit
;
639 static struct lock_class
*forwards_match
, *backwards_match
;
642 * Find a node in the forwards-direction dependency sub-graph starting
643 * at <source> that matches <find_usage_bit>.
645 * Return 2 if such a node exists in the subgraph, and put that node
646 * into <forwards_match>.
648 * Return 1 otherwise and keep <forwards_match> unchanged.
652 find_usage_forwards(struct lock_class
*source
, unsigned int depth
)
654 struct lock_list
*entry
;
657 if (depth
> max_recursion_depth
)
658 max_recursion_depth
= depth
;
659 if (depth
>= RECURSION_LIMIT
)
660 return print_infinite_recursion_bug();
662 debug_atomic_inc(&nr_find_usage_forwards_checks
);
663 if (source
->usage_mask
& (1 << find_usage_bit
)) {
664 forwards_match
= source
;
669 * Check this lock's dependency list:
671 list_for_each_entry(entry
, &source
->locks_after
, entry
) {
672 debug_atomic_inc(&nr_find_usage_forwards_recursions
);
673 ret
= find_usage_forwards(entry
->class, depth
+1);
674 if (ret
== 2 || ret
== 0)
681 * Find a node in the backwards-direction dependency sub-graph starting
682 * at <source> that matches <find_usage_bit>.
684 * Return 2 if such a node exists in the subgraph, and put that node
685 * into <backwards_match>.
687 * Return 1 otherwise and keep <backwards_match> unchanged.
691 find_usage_backwards(struct lock_class
*source
, unsigned int depth
)
693 struct lock_list
*entry
;
696 if (depth
> max_recursion_depth
)
697 max_recursion_depth
= depth
;
698 if (depth
>= RECURSION_LIMIT
)
699 return print_infinite_recursion_bug();
701 debug_atomic_inc(&nr_find_usage_backwards_checks
);
702 if (source
->usage_mask
& (1 << find_usage_bit
)) {
703 backwards_match
= source
;
708 * Check this lock's dependency list:
710 list_for_each_entry(entry
, &source
->locks_before
, entry
) {
711 debug_atomic_inc(&nr_find_usage_backwards_recursions
);
712 ret
= find_usage_backwards(entry
->class, depth
+1);
713 if (ret
== 2 || ret
== 0)
720 print_bad_irq_dependency(struct task_struct
*curr
,
721 struct held_lock
*prev
,
722 struct held_lock
*next
,
723 enum lock_usage_bit bit1
,
724 enum lock_usage_bit bit2
,
725 const char *irqclass
)
727 __raw_spin_unlock(&hash_lock
);
729 if (debug_locks_silent
)
732 printk("\n======================================================\n");
733 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
735 print_kernel_version();
736 printk( "------------------------------------------------------\n");
737 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
738 curr
->comm
, curr
->pid
,
739 curr
->hardirq_context
, hardirq_count() >> HARDIRQ_SHIFT
,
740 curr
->softirq_context
, softirq_count() >> SOFTIRQ_SHIFT
,
741 curr
->hardirqs_enabled
,
742 curr
->softirqs_enabled
);
745 printk("\nand this task is already holding:\n");
747 printk("which would create a new lock dependency:\n");
748 print_lock_name(prev
->class);
750 print_lock_name(next
->class);
753 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
755 print_lock_name(backwards_match
);
756 printk("\n... which became %s-irq-safe at:\n", irqclass
);
758 print_stack_trace(backwards_match
->usage_traces
+ bit1
, 1);
760 printk("\nto a %s-irq-unsafe lock:\n", irqclass
);
761 print_lock_name(forwards_match
);
762 printk("\n... which became %s-irq-unsafe at:\n", irqclass
);
765 print_stack_trace(forwards_match
->usage_traces
+ bit2
, 1);
767 printk("\nother info that might help us debug this:\n\n");
768 lockdep_print_held_locks(curr
);
770 printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass
);
771 print_lock_dependencies(backwards_match
, 0);
773 printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass
);
774 print_lock_dependencies(forwards_match
, 0);
776 printk("\nstack backtrace:\n");
783 check_usage(struct task_struct
*curr
, struct held_lock
*prev
,
784 struct held_lock
*next
, enum lock_usage_bit bit_backwards
,
785 enum lock_usage_bit bit_forwards
, const char *irqclass
)
789 find_usage_bit
= bit_backwards
;
790 /* fills in <backwards_match> */
791 ret
= find_usage_backwards(prev
->class, 0);
792 if (!ret
|| ret
== 1)
795 find_usage_bit
= bit_forwards
;
796 ret
= find_usage_forwards(next
->class, 0);
797 if (!ret
|| ret
== 1)
800 return print_bad_irq_dependency(curr
, prev
, next
,
801 bit_backwards
, bit_forwards
, irqclass
);
807 print_deadlock_bug(struct task_struct
*curr
, struct held_lock
*prev
,
808 struct held_lock
*next
)
811 __raw_spin_unlock(&hash_lock
);
812 if (debug_locks_silent
)
815 printk("\n=============================================\n");
816 printk( "[ INFO: possible recursive locking detected ]\n");
817 print_kernel_version();
818 printk( "---------------------------------------------\n");
819 printk("%s/%d is trying to acquire lock:\n",
820 curr
->comm
, curr
->pid
);
822 printk("\nbut task is already holding lock:\n");
825 printk("\nother info that might help us debug this:\n");
826 lockdep_print_held_locks(curr
);
828 printk("\nstack backtrace:\n");
835 * Check whether we are holding such a class already.
837 * (Note that this has to be done separately, because the graph cannot
838 * detect such classes of deadlocks.)
840 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
843 check_deadlock(struct task_struct
*curr
, struct held_lock
*next
,
844 struct lockdep_map
*next_instance
, int read
)
846 struct held_lock
*prev
;
849 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
850 prev
= curr
->held_locks
+ i
;
851 if (prev
->class != next
->class)
854 * Allow read-after-read recursion of the same
855 * lock class (i.e. read_lock(lock)+read_lock(lock)):
857 if ((read
== 2) && prev
->read
)
859 return print_deadlock_bug(curr
, prev
, next
);
865 * There was a chain-cache miss, and we are about to add a new dependency
866 * to a previous lock. We recursively validate the following rules:
868 * - would the adding of the <prev> -> <next> dependency create a
869 * circular dependency in the graph? [== circular deadlock]
871 * - does the new prev->next dependency connect any hardirq-safe lock
872 * (in the full backwards-subgraph starting at <prev>) with any
873 * hardirq-unsafe lock (in the full forwards-subgraph starting at
874 * <next>)? [== illegal lock inversion with hardirq contexts]
876 * - does the new prev->next dependency connect any softirq-safe lock
877 * (in the full backwards-subgraph starting at <prev>) with any
878 * softirq-unsafe lock (in the full forwards-subgraph starting at
879 * <next>)? [== illegal lock inversion with softirq contexts]
881 * any of these scenarios could lead to a deadlock.
883 * Then if all the validations pass, we add the forwards and backwards
887 check_prev_add(struct task_struct
*curr
, struct held_lock
*prev
,
888 struct held_lock
*next
)
890 struct lock_list
*entry
;
894 * Prove that the new <prev> -> <next> dependency would not
895 * create a circular dependency in the graph. (We do this by
896 * forward-recursing into the graph starting at <next>, and
897 * checking whether we can reach <prev>.)
899 * We are using global variables to control the recursion, to
900 * keep the stackframe size of the recursive functions low:
904 if (!(check_noncircular(next
->class, 0)))
905 return print_circular_bug_tail();
907 #ifdef CONFIG_TRACE_IRQFLAGS
909 * Prove that the new dependency does not connect a hardirq-safe
910 * lock with a hardirq-unsafe lock - to achieve this we search
911 * the backwards-subgraph starting at <prev>, and the
912 * forwards-subgraph starting at <next>:
914 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_HARDIRQ
,
915 LOCK_ENABLED_HARDIRQS
, "hard"))
919 * Prove that the new dependency does not connect a hardirq-safe-read
920 * lock with a hardirq-unsafe lock - to achieve this we search
921 * the backwards-subgraph starting at <prev>, and the
922 * forwards-subgraph starting at <next>:
924 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_HARDIRQ_READ
,
925 LOCK_ENABLED_HARDIRQS
, "hard-read"))
929 * Prove that the new dependency does not connect a softirq-safe
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
,
935 LOCK_ENABLED_SOFTIRQS
, "soft"))
938 * Prove that the new dependency does not connect a softirq-safe-read
939 * lock with a softirq-unsafe lock - to achieve this we search
940 * the backwards-subgraph starting at <prev>, and the
941 * forwards-subgraph starting at <next>:
943 if (!check_usage(curr
, prev
, next
, LOCK_USED_IN_SOFTIRQ_READ
,
944 LOCK_ENABLED_SOFTIRQS
, "soft"))
948 * For recursive read-locks we do all the dependency checks,
949 * but we dont store read-triggered dependencies (only
950 * write-triggered dependencies). This ensures that only the
951 * write-side dependencies matter, and that if for example a
952 * write-lock never takes any other locks, then the reads are
953 * equivalent to a NOP.
955 if (next
->read
== 2 || prev
->read
== 2)
958 * Is the <prev> -> <next> dependency already present?
960 * (this may occur even though this is a new chain: consider
961 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
962 * chains - the second one will be new, but L1 already has
963 * L2 added to its dependency list, due to the first chain.)
965 list_for_each_entry(entry
, &prev
->class->locks_after
, entry
) {
966 if (entry
->class == next
->class)
971 * Ok, all validations passed, add the new lock
972 * to the previous lock's dependency list:
974 ret
= add_lock_to_list(prev
->class, next
->class,
975 &prev
->class->locks_after
, next
->acquire_ip
);
979 ret
= add_lock_to_list(next
->class, prev
->class,
980 &next
->class->locks_before
, next
->acquire_ip
);
985 * Debugging printouts:
987 if (verbose(prev
->class) || verbose(next
->class)) {
988 __raw_spin_unlock(&hash_lock
);
989 printk("\n new dependency: ");
990 print_lock_name(prev
->class);
992 print_lock_name(next
->class);
995 __raw_spin_lock(&hash_lock
);
1001 * Add the dependency to all directly-previous locks that are 'relevant'.
1002 * The ones that are relevant are (in increasing distance from curr):
1003 * all consecutive trylock entries and the final non-trylock entry - or
1004 * the end of this context's lock-chain - whichever comes first.
1007 check_prevs_add(struct task_struct
*curr
, struct held_lock
*next
)
1009 int depth
= curr
->lockdep_depth
;
1010 struct held_lock
*hlock
;
1015 * Depth must not be zero for a non-head lock:
1020 * At least two relevant locks must exist for this
1023 if (curr
->held_locks
[depth
].irq_context
!=
1024 curr
->held_locks
[depth
-1].irq_context
)
1028 hlock
= curr
->held_locks
+ depth
-1;
1030 * Only non-recursive-read entries get new dependencies
1033 if (hlock
->read
!= 2) {
1034 if (!check_prev_add(curr
, hlock
, next
))
1037 * Stop after the first non-trylock entry,
1038 * as non-trylock entries have added their
1039 * own direct dependencies already, so this
1040 * lock is connected to them indirectly:
1042 if (!hlock
->trylock
)
1047 * End of lock-stack?
1052 * Stop the search if we cross into another context:
1054 if (curr
->held_locks
[depth
].irq_context
!=
1055 curr
->held_locks
[depth
-1].irq_context
)
1060 __raw_spin_unlock(&hash_lock
);
1061 DEBUG_LOCKS_WARN_ON(1);
1068 * Is this the address of a static object:
1070 static int static_obj(void *obj
)
1072 unsigned long start
= (unsigned long) &_stext
,
1073 end
= (unsigned long) &_end
,
1074 addr
= (unsigned long) obj
;
1082 if ((addr
>= start
) && (addr
< end
))
1089 for_each_possible_cpu(i
) {
1090 start
= (unsigned long) &__per_cpu_start
+ per_cpu_offset(i
);
1091 end
= (unsigned long) &__per_cpu_start
+ PERCPU_ENOUGH_ROOM
1092 + per_cpu_offset(i
);
1094 if ((addr
>= start
) && (addr
< end
))
1102 return is_module_address(addr
);
1106 * To make lock name printouts unique, we calculate a unique
1107 * class->name_version generation counter:
1109 static int count_matching_names(struct lock_class
*new_class
)
1111 struct lock_class
*class;
1114 if (!new_class
->name
)
1117 list_for_each_entry(class, &all_lock_classes
, lock_entry
) {
1118 if (new_class
->key
- new_class
->subclass
== class->key
)
1119 return class->name_version
;
1120 if (class->name
&& !strcmp(class->name
, new_class
->name
))
1121 count
= max(count
, class->name_version
);
1128 * Register a lock's class in the hash-table, if the class is not present
1129 * yet. Otherwise we look it up. We cache the result in the lock object
1130 * itself, so actual lookup of the hash should be once per lock object.
1132 static inline struct lock_class
*
1133 look_up_lock_class(struct lockdep_map
*lock
, unsigned int subclass
)
1135 struct lockdep_subclass_key
*key
;
1136 struct list_head
*hash_head
;
1137 struct lock_class
*class;
1139 #ifdef CONFIG_DEBUG_LOCKDEP
1141 * If the architecture calls into lockdep before initializing
1142 * the hashes then we'll warn about it later. (we cannot printk
1145 if (unlikely(!lockdep_initialized
)) {
1147 lockdep_init_error
= 1;
1152 * Static locks do not have their class-keys yet - for them the key
1153 * is the lock object itself:
1155 if (unlikely(!lock
->key
))
1156 lock
->key
= (void *)lock
;
1159 * NOTE: the class-key must be unique. For dynamic locks, a static
1160 * lock_class_key variable is passed in through the mutex_init()
1161 * (or spin_lock_init()) call - which acts as the key. For static
1162 * locks we use the lock object itself as the key.
1164 BUILD_BUG_ON(sizeof(struct lock_class_key
) > sizeof(struct lock_class
));
1166 key
= lock
->key
->subkeys
+ subclass
;
1168 hash_head
= classhashentry(key
);
1171 * We can walk the hash lockfree, because the hash only
1172 * grows, and we are careful when adding entries to the end:
1174 list_for_each_entry(class, hash_head
, hash_entry
)
1175 if (class->key
== key
)
1182 * Register a lock's class in the hash-table, if the class is not present
1183 * yet. Otherwise we look it up. We cache the result in the lock object
1184 * itself, so actual lookup of the hash should be once per lock object.
1186 static inline struct lock_class
*
1187 register_lock_class(struct lockdep_map
*lock
, unsigned int subclass
, int force
)
1189 struct lockdep_subclass_key
*key
;
1190 struct list_head
*hash_head
;
1191 struct lock_class
*class;
1193 class = look_up_lock_class(lock
, subclass
);
1198 * Debug-check: all keys must be persistent!
1200 if (!static_obj(lock
->key
)) {
1202 printk("INFO: trying to register non-static key.\n");
1203 printk("the code is fine but needs lockdep annotation.\n");
1204 printk("turning off the locking correctness validator.\n");
1210 key
= lock
->key
->subkeys
+ subclass
;
1211 hash_head
= classhashentry(key
);
1213 __raw_spin_lock(&hash_lock
);
1215 * We have to do the hash-walk again, to avoid races
1218 list_for_each_entry(class, hash_head
, hash_entry
)
1219 if (class->key
== key
)
1220 goto out_unlock_set
;
1222 * Allocate a new key from the static array, and add it to
1225 if (nr_lock_classes
>= MAX_LOCKDEP_KEYS
) {
1226 __raw_spin_unlock(&hash_lock
);
1228 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
1229 printk("turning off the locking correctness validator.\n");
1232 class = lock_classes
+ nr_lock_classes
++;
1233 debug_atomic_inc(&nr_unused_locks
);
1235 class->name
= lock
->name
;
1236 class->subclass
= subclass
;
1237 INIT_LIST_HEAD(&class->lock_entry
);
1238 INIT_LIST_HEAD(&class->locks_before
);
1239 INIT_LIST_HEAD(&class->locks_after
);
1240 class->name_version
= count_matching_names(class);
1242 * We use RCU's safe list-add method to make
1243 * parallel walking of the hash-list safe:
1245 list_add_tail_rcu(&class->hash_entry
, hash_head
);
1247 if (verbose(class)) {
1248 __raw_spin_unlock(&hash_lock
);
1249 printk("\nnew class %p: %s", class->key
, class->name
);
1250 if (class->name_version
> 1)
1251 printk("#%d", class->name_version
);
1254 __raw_spin_lock(&hash_lock
);
1257 __raw_spin_unlock(&hash_lock
);
1259 if (!subclass
|| force
)
1260 lock
->class_cache
= class;
1262 DEBUG_LOCKS_WARN_ON(class->subclass
!= subclass
);
1268 * Look up a dependency chain. If the key is not present yet then
1269 * add it and return 0 - in this case the new dependency chain is
1270 * validated. If the key is already hashed, return 1.
1272 static inline int lookup_chain_cache(u64 chain_key
)
1274 struct list_head
*hash_head
= chainhashentry(chain_key
);
1275 struct lock_chain
*chain
;
1277 DEBUG_LOCKS_WARN_ON(!irqs_disabled());
1279 * We can walk it lock-free, because entries only get added
1282 list_for_each_entry(chain
, hash_head
, entry
) {
1283 if (chain
->chain_key
== chain_key
) {
1285 debug_atomic_inc(&chain_lookup_hits
);
1287 * In the debugging case, force redundant checking
1290 #ifdef CONFIG_DEBUG_LOCKDEP
1291 __raw_spin_lock(&hash_lock
);
1298 * Allocate a new chain entry from the static array, and add
1301 __raw_spin_lock(&hash_lock
);
1303 * We have to walk the chain again locked - to avoid duplicates:
1305 list_for_each_entry(chain
, hash_head
, entry
) {
1306 if (chain
->chain_key
== chain_key
) {
1307 __raw_spin_unlock(&hash_lock
);
1311 if (unlikely(nr_lock_chains
>= MAX_LOCKDEP_CHAINS
)) {
1312 __raw_spin_unlock(&hash_lock
);
1314 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1315 printk("turning off the locking correctness validator.\n");
1318 chain
= lock_chains
+ nr_lock_chains
++;
1319 chain
->chain_key
= chain_key
;
1320 list_add_tail_rcu(&chain
->entry
, hash_head
);
1321 debug_atomic_inc(&chain_lookup_misses
);
1322 #ifdef CONFIG_TRACE_IRQFLAGS
1323 if (current
->hardirq_context
)
1324 nr_hardirq_chains
++;
1326 if (current
->softirq_context
)
1327 nr_softirq_chains
++;
1329 nr_process_chains
++;
1332 nr_process_chains
++;
1339 * We are building curr_chain_key incrementally, so double-check
1340 * it from scratch, to make sure that it's done correctly:
1342 static void check_chain_key(struct task_struct
*curr
)
1344 #ifdef CONFIG_DEBUG_LOCKDEP
1345 struct held_lock
*hlock
, *prev_hlock
= NULL
;
1349 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1350 hlock
= curr
->held_locks
+ i
;
1351 if (chain_key
!= hlock
->prev_chain_key
) {
1353 printk("hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1354 curr
->lockdep_depth
, i
,
1355 (unsigned long long)chain_key
,
1356 (unsigned long long)hlock
->prev_chain_key
);
1360 id
= hlock
->class - lock_classes
;
1361 DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
);
1362 if (prev_hlock
&& (prev_hlock
->irq_context
!=
1363 hlock
->irq_context
))
1365 chain_key
= iterate_chain_key(chain_key
, id
);
1368 if (chain_key
!= curr
->curr_chain_key
) {
1370 printk("hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1371 curr
->lockdep_depth
, i
,
1372 (unsigned long long)chain_key
,
1373 (unsigned long long)curr
->curr_chain_key
);
1379 #ifdef CONFIG_TRACE_IRQFLAGS
1382 * print irq inversion bug:
1385 print_irq_inversion_bug(struct task_struct
*curr
, struct lock_class
*other
,
1386 struct held_lock
*this, int forwards
,
1387 const char *irqclass
)
1389 __raw_spin_unlock(&hash_lock
);
1391 if (debug_locks_silent
)
1394 printk("\n=========================================================\n");
1395 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
1396 print_kernel_version();
1397 printk( "---------------------------------------------------------\n");
1398 printk("%s/%d just changed the state of lock:\n",
1399 curr
->comm
, curr
->pid
);
1402 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass
);
1404 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass
);
1405 print_lock_name(other
);
1406 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1408 printk("\nother info that might help us debug this:\n");
1409 lockdep_print_held_locks(curr
);
1411 printk("\nthe first lock's dependencies:\n");
1412 print_lock_dependencies(this->class, 0);
1414 printk("\nthe second lock's dependencies:\n");
1415 print_lock_dependencies(other
, 0);
1417 printk("\nstack backtrace:\n");
1424 * Prove that in the forwards-direction subgraph starting at <this>
1425 * there is no lock matching <mask>:
1428 check_usage_forwards(struct task_struct
*curr
, struct held_lock
*this,
1429 enum lock_usage_bit bit
, const char *irqclass
)
1433 find_usage_bit
= bit
;
1434 /* fills in <forwards_match> */
1435 ret
= find_usage_forwards(this->class, 0);
1436 if (!ret
|| ret
== 1)
1439 return print_irq_inversion_bug(curr
, forwards_match
, this, 1, irqclass
);
1443 * Prove that in the backwards-direction subgraph starting at <this>
1444 * there is no lock matching <mask>:
1447 check_usage_backwards(struct task_struct
*curr
, struct held_lock
*this,
1448 enum lock_usage_bit bit
, const char *irqclass
)
1452 find_usage_bit
= bit
;
1453 /* fills in <backwards_match> */
1454 ret
= find_usage_backwards(this->class, 0);
1455 if (!ret
|| ret
== 1)
1458 return print_irq_inversion_bug(curr
, backwards_match
, this, 0, irqclass
);
1461 static inline void print_irqtrace_events(struct task_struct
*curr
)
1463 printk("irq event stamp: %u\n", curr
->irq_events
);
1464 printk("hardirqs last enabled at (%u): ", curr
->hardirq_enable_event
);
1465 print_ip_sym(curr
->hardirq_enable_ip
);
1466 printk("hardirqs last disabled at (%u): ", curr
->hardirq_disable_event
);
1467 print_ip_sym(curr
->hardirq_disable_ip
);
1468 printk("softirqs last enabled at (%u): ", curr
->softirq_enable_event
);
1469 print_ip_sym(curr
->softirq_enable_ip
);
1470 printk("softirqs last disabled at (%u): ", curr
->softirq_disable_event
);
1471 print_ip_sym(curr
->softirq_disable_ip
);
1475 static inline void print_irqtrace_events(struct task_struct
*curr
)
1481 print_usage_bug(struct task_struct
*curr
, struct held_lock
*this,
1482 enum lock_usage_bit prev_bit
, enum lock_usage_bit new_bit
)
1484 __raw_spin_unlock(&hash_lock
);
1486 if (debug_locks_silent
)
1489 printk("\n=================================\n");
1490 printk( "[ INFO: inconsistent lock state ]\n");
1491 print_kernel_version();
1492 printk( "---------------------------------\n");
1494 printk("inconsistent {%s} -> {%s} usage.\n",
1495 usage_str
[prev_bit
], usage_str
[new_bit
]);
1497 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1498 curr
->comm
, curr
->pid
,
1499 trace_hardirq_context(curr
), hardirq_count() >> HARDIRQ_SHIFT
,
1500 trace_softirq_context(curr
), softirq_count() >> SOFTIRQ_SHIFT
,
1501 trace_hardirqs_enabled(curr
),
1502 trace_softirqs_enabled(curr
));
1505 printk("{%s} state was registered at:\n", usage_str
[prev_bit
]);
1506 print_stack_trace(this->class->usage_traces
+ prev_bit
, 1);
1508 print_irqtrace_events(curr
);
1509 printk("\nother info that might help us debug this:\n");
1510 lockdep_print_held_locks(curr
);
1512 printk("\nstack backtrace:\n");
1519 * Print out an error if an invalid bit is set:
1522 valid_state(struct task_struct
*curr
, struct held_lock
*this,
1523 enum lock_usage_bit new_bit
, enum lock_usage_bit bad_bit
)
1525 if (unlikely(this->class->usage_mask
& (1 << bad_bit
)))
1526 return print_usage_bug(curr
, this, bad_bit
, new_bit
);
1530 #define STRICT_READ_CHECKS 1
1533 * Mark a lock with a usage bit, and validate the state transition:
1535 static int mark_lock(struct task_struct
*curr
, struct held_lock
*this,
1536 enum lock_usage_bit new_bit
, unsigned long ip
)
1538 unsigned int new_mask
= 1 << new_bit
, ret
= 1;
1541 * If already set then do not dirty the cacheline,
1542 * nor do any checks:
1544 if (likely(this->class->usage_mask
& new_mask
))
1547 __raw_spin_lock(&hash_lock
);
1549 * Make sure we didnt race:
1551 if (unlikely(this->class->usage_mask
& new_mask
)) {
1552 __raw_spin_unlock(&hash_lock
);
1556 this->class->usage_mask
|= new_mask
;
1558 #ifdef CONFIG_TRACE_IRQFLAGS
1559 if (new_bit
== LOCK_ENABLED_HARDIRQS
||
1560 new_bit
== LOCK_ENABLED_HARDIRQS_READ
)
1561 ip
= curr
->hardirq_enable_ip
;
1562 else if (new_bit
== LOCK_ENABLED_SOFTIRQS
||
1563 new_bit
== LOCK_ENABLED_SOFTIRQS_READ
)
1564 ip
= curr
->softirq_enable_ip
;
1566 if (!save_trace(this->class->usage_traces
+ new_bit
))
1570 #ifdef CONFIG_TRACE_IRQFLAGS
1571 case LOCK_USED_IN_HARDIRQ
:
1572 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1574 if (!valid_state(curr
, this, new_bit
,
1575 LOCK_ENABLED_HARDIRQS_READ
))
1578 * just marked it hardirq-safe, check that this lock
1579 * took no hardirq-unsafe lock in the past:
1581 if (!check_usage_forwards(curr
, this,
1582 LOCK_ENABLED_HARDIRQS
, "hard"))
1584 #if STRICT_READ_CHECKS
1586 * just marked it hardirq-safe, check that this lock
1587 * took no hardirq-unsafe-read lock in the past:
1589 if (!check_usage_forwards(curr
, this,
1590 LOCK_ENABLED_HARDIRQS_READ
, "hard-read"))
1593 if (hardirq_verbose(this->class))
1596 case LOCK_USED_IN_SOFTIRQ
:
1597 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1599 if (!valid_state(curr
, this, new_bit
,
1600 LOCK_ENABLED_SOFTIRQS_READ
))
1603 * just marked it softirq-safe, check that this lock
1604 * took no softirq-unsafe lock in the past:
1606 if (!check_usage_forwards(curr
, this,
1607 LOCK_ENABLED_SOFTIRQS
, "soft"))
1609 #if STRICT_READ_CHECKS
1611 * just marked it softirq-safe, check that this lock
1612 * took no softirq-unsafe-read lock in the past:
1614 if (!check_usage_forwards(curr
, this,
1615 LOCK_ENABLED_SOFTIRQS_READ
, "soft-read"))
1618 if (softirq_verbose(this->class))
1621 case LOCK_USED_IN_HARDIRQ_READ
:
1622 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_HARDIRQS
))
1625 * just marked it hardirq-read-safe, check that this lock
1626 * took no hardirq-unsafe lock in the past:
1628 if (!check_usage_forwards(curr
, this,
1629 LOCK_ENABLED_HARDIRQS
, "hard"))
1631 if (hardirq_verbose(this->class))
1634 case LOCK_USED_IN_SOFTIRQ_READ
:
1635 if (!valid_state(curr
, this, new_bit
, LOCK_ENABLED_SOFTIRQS
))
1638 * just marked it softirq-read-safe, check that this lock
1639 * took no softirq-unsafe lock in the past:
1641 if (!check_usage_forwards(curr
, this,
1642 LOCK_ENABLED_SOFTIRQS
, "soft"))
1644 if (softirq_verbose(this->class))
1647 case LOCK_ENABLED_HARDIRQS
:
1648 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1650 if (!valid_state(curr
, this, new_bit
,
1651 LOCK_USED_IN_HARDIRQ_READ
))
1654 * just marked it hardirq-unsafe, check that no hardirq-safe
1655 * lock in the system ever took it in the past:
1657 if (!check_usage_backwards(curr
, this,
1658 LOCK_USED_IN_HARDIRQ
, "hard"))
1660 #if STRICT_READ_CHECKS
1662 * just marked it hardirq-unsafe, check that no
1663 * hardirq-safe-read lock in the system ever took
1666 if (!check_usage_backwards(curr
, this,
1667 LOCK_USED_IN_HARDIRQ_READ
, "hard-read"))
1670 if (hardirq_verbose(this->class))
1673 case LOCK_ENABLED_SOFTIRQS
:
1674 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1676 if (!valid_state(curr
, this, new_bit
,
1677 LOCK_USED_IN_SOFTIRQ_READ
))
1680 * just marked it softirq-unsafe, check that no softirq-safe
1681 * lock in the system ever took it in the past:
1683 if (!check_usage_backwards(curr
, this,
1684 LOCK_USED_IN_SOFTIRQ
, "soft"))
1686 #if STRICT_READ_CHECKS
1688 * just marked it softirq-unsafe, check that no
1689 * softirq-safe-read lock in the system ever took
1692 if (!check_usage_backwards(curr
, this,
1693 LOCK_USED_IN_SOFTIRQ_READ
, "soft-read"))
1696 if (softirq_verbose(this->class))
1699 case LOCK_ENABLED_HARDIRQS_READ
:
1700 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_HARDIRQ
))
1702 #if STRICT_READ_CHECKS
1704 * just marked it hardirq-read-unsafe, check that no
1705 * hardirq-safe lock in the system ever took it in the past:
1707 if (!check_usage_backwards(curr
, this,
1708 LOCK_USED_IN_HARDIRQ
, "hard"))
1711 if (hardirq_verbose(this->class))
1714 case LOCK_ENABLED_SOFTIRQS_READ
:
1715 if (!valid_state(curr
, this, new_bit
, LOCK_USED_IN_SOFTIRQ
))
1717 #if STRICT_READ_CHECKS
1719 * just marked it softirq-read-unsafe, check that no
1720 * softirq-safe lock in the system ever took it in the past:
1722 if (!check_usage_backwards(curr
, this,
1723 LOCK_USED_IN_SOFTIRQ
, "soft"))
1726 if (softirq_verbose(this->class))
1732 * Add it to the global list of classes:
1734 list_add_tail_rcu(&this->class->lock_entry
, &all_lock_classes
);
1735 debug_atomic_dec(&nr_unused_locks
);
1738 __raw_spin_unlock(&hash_lock
);
1744 __raw_spin_unlock(&hash_lock
);
1747 * We must printk outside of the hash_lock:
1750 printk("\nmarked lock as {%s}:\n", usage_str
[new_bit
]);
1752 print_irqtrace_events(curr
);
1759 #ifdef CONFIG_TRACE_IRQFLAGS
1761 * Mark all held locks with a usage bit:
1764 mark_held_locks(struct task_struct
*curr
, int hardirq
, unsigned long ip
)
1766 enum lock_usage_bit usage_bit
;
1767 struct held_lock
*hlock
;
1770 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1771 hlock
= curr
->held_locks
+ i
;
1775 usage_bit
= LOCK_ENABLED_HARDIRQS_READ
;
1777 usage_bit
= LOCK_ENABLED_HARDIRQS
;
1780 usage_bit
= LOCK_ENABLED_SOFTIRQS_READ
;
1782 usage_bit
= LOCK_ENABLED_SOFTIRQS
;
1784 if (!mark_lock(curr
, hlock
, usage_bit
, ip
))
1792 * Debugging helper: via this flag we know that we are in
1793 * 'early bootup code', and will warn about any invalid irqs-on event:
1795 static int early_boot_irqs_enabled
;
1797 void early_boot_irqs_off(void)
1799 early_boot_irqs_enabled
= 0;
1802 void early_boot_irqs_on(void)
1804 early_boot_irqs_enabled
= 1;
1808 * Hardirqs will be enabled:
1810 void trace_hardirqs_on(void)
1812 struct task_struct
*curr
= current
;
1815 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1818 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled
)))
1821 if (unlikely(curr
->hardirqs_enabled
)) {
1822 debug_atomic_inc(&redundant_hardirqs_on
);
1825 /* we'll do an OFF -> ON transition: */
1826 curr
->hardirqs_enabled
= 1;
1827 ip
= (unsigned long) __builtin_return_address(0);
1829 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1831 if (DEBUG_LOCKS_WARN_ON(current
->hardirq_context
))
1834 * We are going to turn hardirqs on, so set the
1835 * usage bit for all held locks:
1837 if (!mark_held_locks(curr
, 1, ip
))
1840 * If we have softirqs enabled, then set the usage
1841 * bit for all held locks. (disabled hardirqs prevented
1842 * this bit from being set before)
1844 if (curr
->softirqs_enabled
)
1845 if (!mark_held_locks(curr
, 0, ip
))
1848 curr
->hardirq_enable_ip
= ip
;
1849 curr
->hardirq_enable_event
= ++curr
->irq_events
;
1850 debug_atomic_inc(&hardirqs_on_events
);
1853 EXPORT_SYMBOL(trace_hardirqs_on
);
1856 * Hardirqs were disabled:
1858 void trace_hardirqs_off(void)
1860 struct task_struct
*curr
= current
;
1862 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
1865 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1868 if (curr
->hardirqs_enabled
) {
1870 * We have done an ON -> OFF transition:
1872 curr
->hardirqs_enabled
= 0;
1873 curr
->hardirq_disable_ip
= _RET_IP_
;
1874 curr
->hardirq_disable_event
= ++curr
->irq_events
;
1875 debug_atomic_inc(&hardirqs_off_events
);
1877 debug_atomic_inc(&redundant_hardirqs_off
);
1880 EXPORT_SYMBOL(trace_hardirqs_off
);
1883 * Softirqs will be enabled:
1885 void trace_softirqs_on(unsigned long ip
)
1887 struct task_struct
*curr
= current
;
1889 if (unlikely(!debug_locks
))
1892 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1895 if (curr
->softirqs_enabled
) {
1896 debug_atomic_inc(&redundant_softirqs_on
);
1901 * We'll do an OFF -> ON transition:
1903 curr
->softirqs_enabled
= 1;
1904 curr
->softirq_enable_ip
= ip
;
1905 curr
->softirq_enable_event
= ++curr
->irq_events
;
1906 debug_atomic_inc(&softirqs_on_events
);
1908 * We are going to turn softirqs on, so set the
1909 * usage bit for all held locks, if hardirqs are
1912 if (curr
->hardirqs_enabled
)
1913 mark_held_locks(curr
, 0, ip
);
1917 * Softirqs were disabled:
1919 void trace_softirqs_off(unsigned long ip
)
1921 struct task_struct
*curr
= current
;
1923 if (unlikely(!debug_locks
))
1926 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1929 if (curr
->softirqs_enabled
) {
1931 * We have done an ON -> OFF transition:
1933 curr
->softirqs_enabled
= 0;
1934 curr
->softirq_disable_ip
= ip
;
1935 curr
->softirq_disable_event
= ++curr
->irq_events
;
1936 debug_atomic_inc(&softirqs_off_events
);
1937 DEBUG_LOCKS_WARN_ON(!softirq_count());
1939 debug_atomic_inc(&redundant_softirqs_off
);
1945 * Initialize a lock instance's lock-class mapping info:
1947 void lockdep_init_map(struct lockdep_map
*lock
, const char *name
,
1948 struct lock_class_key
*key
, int subclass
)
1950 if (unlikely(!debug_locks
))
1953 if (DEBUG_LOCKS_WARN_ON(!key
))
1955 if (DEBUG_LOCKS_WARN_ON(!name
))
1958 * Sanity check, the lock-class key must be persistent:
1960 if (!static_obj(key
)) {
1961 printk("BUG: key %p not in .data!\n", key
);
1962 DEBUG_LOCKS_WARN_ON(1);
1967 lock
->class_cache
= NULL
;
1969 register_lock_class(lock
, subclass
, 1);
1972 EXPORT_SYMBOL_GPL(lockdep_init_map
);
1975 * This gets called for every mutex_lock*()/spin_lock*() operation.
1976 * We maintain the dependency maps and validate the locking attempt:
1978 static int __lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
1979 int trylock
, int read
, int check
, int hardirqs_off
,
1982 struct task_struct
*curr
= current
;
1983 struct lock_class
*class = NULL
;
1984 struct held_lock
*hlock
;
1985 unsigned int depth
, id
;
1989 if (unlikely(!debug_locks
))
1992 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1995 if (unlikely(subclass
>= MAX_LOCKDEP_SUBCLASSES
)) {
1997 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
1998 printk("turning off the locking correctness validator.\n");
2003 class = lock
->class_cache
;
2005 * Not cached yet or subclass?
2007 if (unlikely(!class)) {
2008 class = register_lock_class(lock
, subclass
, 0);
2012 debug_atomic_inc((atomic_t
*)&class->ops
);
2013 if (very_verbose(class)) {
2014 printk("\nacquire class [%p] %s", class->key
, class->name
);
2015 if (class->name_version
> 1)
2016 printk("#%d", class->name_version
);
2022 * Add the lock to the list of currently held locks.
2023 * (we dont increase the depth just yet, up until the
2024 * dependency checks are done)
2026 depth
= curr
->lockdep_depth
;
2027 if (DEBUG_LOCKS_WARN_ON(depth
>= MAX_LOCK_DEPTH
))
2030 hlock
= curr
->held_locks
+ depth
;
2032 hlock
->class = class;
2033 hlock
->acquire_ip
= ip
;
2034 hlock
->instance
= lock
;
2035 hlock
->trylock
= trylock
;
2037 hlock
->check
= check
;
2038 hlock
->hardirqs_off
= hardirqs_off
;
2042 #ifdef CONFIG_TRACE_IRQFLAGS
2044 * If non-trylock use in a hardirq or softirq context, then
2045 * mark the lock as used in these contexts:
2049 if (curr
->hardirq_context
)
2050 if (!mark_lock(curr
, hlock
,
2051 LOCK_USED_IN_HARDIRQ_READ
, ip
))
2053 if (curr
->softirq_context
)
2054 if (!mark_lock(curr
, hlock
,
2055 LOCK_USED_IN_SOFTIRQ_READ
, ip
))
2058 if (curr
->hardirq_context
)
2059 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_HARDIRQ
, ip
))
2061 if (curr
->softirq_context
)
2062 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_SOFTIRQ
, ip
))
2066 if (!hardirqs_off
) {
2068 if (!mark_lock(curr
, hlock
,
2069 LOCK_ENABLED_HARDIRQS_READ
, ip
))
2071 if (curr
->softirqs_enabled
)
2072 if (!mark_lock(curr
, hlock
,
2073 LOCK_ENABLED_SOFTIRQS_READ
, ip
))
2076 if (!mark_lock(curr
, hlock
,
2077 LOCK_ENABLED_HARDIRQS
, ip
))
2079 if (curr
->softirqs_enabled
)
2080 if (!mark_lock(curr
, hlock
,
2081 LOCK_ENABLED_SOFTIRQS
, ip
))
2086 /* mark it as used: */
2087 if (!mark_lock(curr
, hlock
, LOCK_USED
, ip
))
2091 * Calculate the chain hash: it's the combined has of all the
2092 * lock keys along the dependency chain. We save the hash value
2093 * at every step so that we can get the current hash easily
2094 * after unlock. The chain hash is then used to cache dependency
2097 * The 'key ID' is what is the most compact key value to drive
2098 * the hash, not class->key.
2100 id
= class - lock_classes
;
2101 if (DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
))
2104 chain_key
= curr
->curr_chain_key
;
2106 if (DEBUG_LOCKS_WARN_ON(chain_key
!= 0))
2111 hlock
->prev_chain_key
= chain_key
;
2113 #ifdef CONFIG_TRACE_IRQFLAGS
2115 * Keep track of points where we cross into an interrupt context:
2117 hlock
->irq_context
= 2*(curr
->hardirq_context
? 1 : 0) +
2118 curr
->softirq_context
;
2120 struct held_lock
*prev_hlock
;
2122 prev_hlock
= curr
->held_locks
+ depth
-1;
2124 * If we cross into another context, reset the
2125 * hash key (this also prevents the checking and the
2126 * adding of the dependency to 'prev'):
2128 if (prev_hlock
->irq_context
!= hlock
->irq_context
) {
2134 chain_key
= iterate_chain_key(chain_key
, id
);
2135 curr
->curr_chain_key
= chain_key
;
2138 * Trylock needs to maintain the stack of held locks, but it
2139 * does not add new dependencies, because trylock can be done
2142 * We look up the chain_key and do the O(N^2) check and update of
2143 * the dependencies only if this is a new dependency chain.
2144 * (If lookup_chain_cache() returns with 1 it acquires
2147 if (!trylock
&& (check
== 2) && lookup_chain_cache(chain_key
)) {
2149 * Check whether last held lock:
2151 * - is irq-safe, if this lock is irq-unsafe
2152 * - is softirq-safe, if this lock is hardirq-unsafe
2154 * And check whether the new lock's dependency graph
2155 * could lead back to the previous lock.
2157 * any of these scenarios could lead to a deadlock. If
2160 int ret
= check_deadlock(curr
, hlock
, lock
, read
);
2165 * Mark recursive read, as we jump over it when
2166 * building dependencies (just like we jump over
2172 * Add dependency only if this lock is not the head
2173 * of the chain, and if it's not a secondary read-lock:
2175 if (!chain_head
&& ret
!= 2)
2176 if (!check_prevs_add(curr
, hlock
))
2178 __raw_spin_unlock(&hash_lock
);
2180 curr
->lockdep_depth
++;
2181 check_chain_key(curr
);
2182 if (unlikely(curr
->lockdep_depth
>= MAX_LOCK_DEPTH
)) {
2184 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2185 printk("turning off the locking correctness validator.\n");
2188 if (unlikely(curr
->lockdep_depth
> max_lockdep_depth
))
2189 max_lockdep_depth
= curr
->lockdep_depth
;
2195 print_unlock_inbalance_bug(struct task_struct
*curr
, struct lockdep_map
*lock
,
2198 if (!debug_locks_off())
2200 if (debug_locks_silent
)
2203 printk("\n=====================================\n");
2204 printk( "[ BUG: bad unlock balance detected! ]\n");
2205 printk( "-------------------------------------\n");
2206 printk("%s/%d is trying to release lock (",
2207 curr
->comm
, curr
->pid
);
2208 print_lockdep_cache(lock
);
2211 printk("but there are no more locks to release!\n");
2212 printk("\nother info that might help us debug this:\n");
2213 lockdep_print_held_locks(curr
);
2215 printk("\nstack backtrace:\n");
2222 * Common debugging checks for both nested and non-nested unlock:
2224 static int check_unlock(struct task_struct
*curr
, struct lockdep_map
*lock
,
2227 if (unlikely(!debug_locks
))
2229 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2232 if (curr
->lockdep_depth
<= 0)
2233 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2239 * Remove the lock to the list of currently held locks in a
2240 * potentially non-nested (out of order) manner. This is a
2241 * relatively rare operation, as all the unlock APIs default
2242 * to nested mode (which uses lock_release()):
2245 lock_release_non_nested(struct task_struct
*curr
,
2246 struct lockdep_map
*lock
, unsigned long ip
)
2248 struct held_lock
*hlock
, *prev_hlock
;
2253 * Check whether the lock exists in the current stack
2256 depth
= curr
->lockdep_depth
;
2257 if (DEBUG_LOCKS_WARN_ON(!depth
))
2261 for (i
= depth
-1; i
>= 0; i
--) {
2262 hlock
= curr
->held_locks
+ i
;
2264 * We must not cross into another context:
2266 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
2268 if (hlock
->instance
== lock
)
2272 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2276 * We have the right lock to unlock, 'hlock' points to it.
2277 * Now we remove it from the stack, and add back the other
2278 * entries (if any), recalculating the hash along the way:
2280 curr
->lockdep_depth
= i
;
2281 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2283 for (i
++; i
< depth
; i
++) {
2284 hlock
= curr
->held_locks
+ i
;
2285 if (!__lock_acquire(hlock
->instance
,
2286 hlock
->class->subclass
, hlock
->trylock
,
2287 hlock
->read
, hlock
->check
, hlock
->hardirqs_off
,
2292 if (DEBUG_LOCKS_WARN_ON(curr
->lockdep_depth
!= depth
- 1))
2298 * Remove the lock to the list of currently held locks - this gets
2299 * called on mutex_unlock()/spin_unlock*() (or on a failed
2300 * mutex_lock_interruptible()). This is done for unlocks that nest
2301 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2303 static int lock_release_nested(struct task_struct
*curr
,
2304 struct lockdep_map
*lock
, unsigned long ip
)
2306 struct held_lock
*hlock
;
2310 * Pop off the top of the lock stack:
2312 depth
= curr
->lockdep_depth
- 1;
2313 hlock
= curr
->held_locks
+ depth
;
2316 * Is the unlock non-nested:
2318 if (hlock
->instance
!= lock
)
2319 return lock_release_non_nested(curr
, lock
, ip
);
2320 curr
->lockdep_depth
--;
2322 if (DEBUG_LOCKS_WARN_ON(!depth
&& (hlock
->prev_chain_key
!= 0)))
2325 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2327 #ifdef CONFIG_DEBUG_LOCKDEP
2328 hlock
->prev_chain_key
= 0;
2329 hlock
->class = NULL
;
2330 hlock
->acquire_ip
= 0;
2331 hlock
->irq_context
= 0;
2337 * Remove the lock to the list of currently held locks - this gets
2338 * called on mutex_unlock()/spin_unlock*() (or on a failed
2339 * mutex_lock_interruptible()). This is done for unlocks that nest
2340 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2343 __lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2345 struct task_struct
*curr
= current
;
2347 if (!check_unlock(curr
, lock
, ip
))
2351 if (!lock_release_nested(curr
, lock
, ip
))
2354 if (!lock_release_non_nested(curr
, lock
, ip
))
2358 check_chain_key(curr
);
2362 * Check whether we follow the irq-flags state precisely:
2364 static void check_flags(unsigned long flags
)
2366 #if defined(CONFIG_DEBUG_LOCKDEP) && defined(CONFIG_TRACE_IRQFLAGS)
2370 if (irqs_disabled_flags(flags
))
2371 DEBUG_LOCKS_WARN_ON(current
->hardirqs_enabled
);
2373 DEBUG_LOCKS_WARN_ON(!current
->hardirqs_enabled
);
2376 * We dont accurately track softirq state in e.g.
2377 * hardirq contexts (such as on 4KSTACKS), so only
2378 * check if not in hardirq contexts:
2380 if (!hardirq_count()) {
2381 if (softirq_count())
2382 DEBUG_LOCKS_WARN_ON(current
->softirqs_enabled
);
2384 DEBUG_LOCKS_WARN_ON(!current
->softirqs_enabled
);
2388 print_irqtrace_events(current
);
2393 * We are not always called with irqs disabled - do that here,
2394 * and also avoid lockdep recursion:
2396 void lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
2397 int trylock
, int read
, int check
, unsigned long ip
)
2399 unsigned long flags
;
2401 if (unlikely(current
->lockdep_recursion
))
2404 raw_local_irq_save(flags
);
2407 current
->lockdep_recursion
= 1;
2408 __lock_acquire(lock
, subclass
, trylock
, read
, check
,
2409 irqs_disabled_flags(flags
), ip
);
2410 current
->lockdep_recursion
= 0;
2411 raw_local_irq_restore(flags
);
2414 EXPORT_SYMBOL_GPL(lock_acquire
);
2416 void lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
2418 unsigned long flags
;
2420 if (unlikely(current
->lockdep_recursion
))
2423 raw_local_irq_save(flags
);
2425 current
->lockdep_recursion
= 1;
2426 __lock_release(lock
, nested
, ip
);
2427 current
->lockdep_recursion
= 0;
2428 raw_local_irq_restore(flags
);
2431 EXPORT_SYMBOL_GPL(lock_release
);
2434 * Used by the testsuite, sanitize the validator state
2435 * after a simulated failure:
2438 void lockdep_reset(void)
2440 unsigned long flags
;
2442 raw_local_irq_save(flags
);
2443 current
->curr_chain_key
= 0;
2444 current
->lockdep_depth
= 0;
2445 current
->lockdep_recursion
= 0;
2446 memset(current
->held_locks
, 0, MAX_LOCK_DEPTH
*sizeof(struct held_lock
));
2447 nr_hardirq_chains
= 0;
2448 nr_softirq_chains
= 0;
2449 nr_process_chains
= 0;
2451 raw_local_irq_restore(flags
);
2454 static void zap_class(struct lock_class
*class)
2459 * Remove all dependencies this lock is
2462 for (i
= 0; i
< nr_list_entries
; i
++) {
2463 if (list_entries
[i
].class == class)
2464 list_del_rcu(&list_entries
[i
].entry
);
2467 * Unhash the class and remove it from the all_lock_classes list:
2469 list_del_rcu(&class->hash_entry
);
2470 list_del_rcu(&class->lock_entry
);
2474 static inline int within(void *addr
, void *start
, unsigned long size
)
2476 return addr
>= start
&& addr
< start
+ size
;
2479 void lockdep_free_key_range(void *start
, unsigned long size
)
2481 struct lock_class
*class, *next
;
2482 struct list_head
*head
;
2483 unsigned long flags
;
2486 raw_local_irq_save(flags
);
2487 __raw_spin_lock(&hash_lock
);
2490 * Unhash all classes that were created by this module:
2492 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2493 head
= classhash_table
+ i
;
2494 if (list_empty(head
))
2496 list_for_each_entry_safe(class, next
, head
, hash_entry
)
2497 if (within(class->key
, start
, size
))
2501 __raw_spin_unlock(&hash_lock
);
2502 raw_local_irq_restore(flags
);
2505 void lockdep_reset_lock(struct lockdep_map
*lock
)
2507 struct lock_class
*class, *next
;
2508 struct list_head
*head
;
2509 unsigned long flags
;
2512 raw_local_irq_save(flags
);
2515 * Remove all classes this lock might have:
2517 for (j
= 0; j
< MAX_LOCKDEP_SUBCLASSES
; j
++) {
2519 * If the class exists we look it up and zap it:
2521 class = look_up_lock_class(lock
, j
);
2526 * Debug check: in the end all mapped classes should
2529 __raw_spin_lock(&hash_lock
);
2530 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
2531 head
= classhash_table
+ i
;
2532 if (list_empty(head
))
2534 list_for_each_entry_safe(class, next
, head
, hash_entry
) {
2535 if (unlikely(class == lock
->class_cache
)) {
2536 __raw_spin_unlock(&hash_lock
);
2537 DEBUG_LOCKS_WARN_ON(1);
2542 __raw_spin_unlock(&hash_lock
);
2545 raw_local_irq_restore(flags
);
2548 void __init
lockdep_init(void)
2553 * Some architectures have their own start_kernel()
2554 * code which calls lockdep_init(), while we also
2555 * call lockdep_init() from the start_kernel() itself,
2556 * and we want to initialize the hashes only once:
2558 if (lockdep_initialized
)
2561 for (i
= 0; i
< CLASSHASH_SIZE
; i
++)
2562 INIT_LIST_HEAD(classhash_table
+ i
);
2564 for (i
= 0; i
< CHAINHASH_SIZE
; i
++)
2565 INIT_LIST_HEAD(chainhash_table
+ i
);
2567 lockdep_initialized
= 1;
2570 void __init
lockdep_info(void)
2572 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
2574 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES
);
2575 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH
);
2576 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS
);
2577 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE
);
2578 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES
);
2579 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS
);
2580 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE
);
2582 printk(" memory used by lock dependency info: %lu kB\n",
2583 (sizeof(struct lock_class
) * MAX_LOCKDEP_KEYS
+
2584 sizeof(struct list_head
) * CLASSHASH_SIZE
+
2585 sizeof(struct lock_list
) * MAX_LOCKDEP_ENTRIES
+
2586 sizeof(struct lock_chain
) * MAX_LOCKDEP_CHAINS
+
2587 sizeof(struct list_head
) * CHAINHASH_SIZE
) / 1024);
2589 printk(" per task-struct memory footprint: %lu bytes\n",
2590 sizeof(struct held_lock
) * MAX_LOCK_DEPTH
);
2592 #ifdef CONFIG_DEBUG_LOCKDEP
2593 if (lockdep_init_error
)
2594 printk("WARNING: lockdep init error! Arch code didnt call lockdep_init() early enough?\n");
2598 static inline int in_range(const void *start
, const void *addr
, const void *end
)
2600 return addr
>= start
&& addr
<= end
;
2604 print_freed_lock_bug(struct task_struct
*curr
, const void *mem_from
,
2605 const void *mem_to
, struct held_lock
*hlock
)
2607 if (!debug_locks_off())
2609 if (debug_locks_silent
)
2612 printk("\n=========================\n");
2613 printk( "[ BUG: held lock freed! ]\n");
2614 printk( "-------------------------\n");
2615 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
2616 curr
->comm
, curr
->pid
, mem_from
, mem_to
-1);
2618 lockdep_print_held_locks(curr
);
2620 printk("\nstack backtrace:\n");
2625 * Called when kernel memory is freed (or unmapped), or if a lock
2626 * is destroyed or reinitialized - this code checks whether there is
2627 * any held lock in the memory range of <from> to <to>:
2629 void debug_check_no_locks_freed(const void *mem_from
, unsigned long mem_len
)
2631 const void *mem_to
= mem_from
+ mem_len
, *lock_from
, *lock_to
;
2632 struct task_struct
*curr
= current
;
2633 struct held_lock
*hlock
;
2634 unsigned long flags
;
2637 if (unlikely(!debug_locks
))
2640 local_irq_save(flags
);
2641 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
2642 hlock
= curr
->held_locks
+ i
;
2644 lock_from
= (void *)hlock
->instance
;
2645 lock_to
= (void *)(hlock
->instance
+ 1);
2647 if (!in_range(mem_from
, lock_from
, mem_to
) &&
2648 !in_range(mem_from
, lock_to
, mem_to
))
2651 print_freed_lock_bug(curr
, mem_from
, mem_to
, hlock
);
2654 local_irq_restore(flags
);
2656 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed
);
2658 static void print_held_locks_bug(struct task_struct
*curr
)
2660 if (!debug_locks_off())
2662 if (debug_locks_silent
)
2665 printk("\n=====================================\n");
2666 printk( "[ BUG: lock held at task exit time! ]\n");
2667 printk( "-------------------------------------\n");
2668 printk("%s/%d is exiting with locks still held!\n",
2669 curr
->comm
, curr
->pid
);
2670 lockdep_print_held_locks(curr
);
2672 printk("\nstack backtrace:\n");
2676 void debug_check_no_locks_held(struct task_struct
*task
)
2678 if (unlikely(task
->lockdep_depth
> 0))
2679 print_held_locks_bug(task
);
2682 void debug_show_all_locks(void)
2684 struct task_struct
*g
, *p
;
2688 printk("\nShowing all locks held in the system:\n");
2691 * Here we try to get the tasklist_lock as hard as possible,
2692 * if not successful after 2 seconds we ignore it (but keep
2693 * trying). This is to enable a debug printout even if a
2694 * tasklist_lock-holding task deadlocks or crashes.
2697 if (!read_trylock(&tasklist_lock
)) {
2699 printk("hm, tasklist_lock locked, retrying... ");
2702 printk(" #%d", 10-count
);
2706 printk(" ignoring it.\n");
2710 printk(" locked it.\n");
2712 do_each_thread(g
, p
) {
2713 if (p
->lockdep_depth
)
2714 lockdep_print_held_locks(p
);
2716 if (read_trylock(&tasklist_lock
))
2718 } while_each_thread(g
, p
);
2721 printk("=============================================\n\n");
2724 read_unlock(&tasklist_lock
);
2727 EXPORT_SYMBOL_GPL(debug_show_all_locks
);
2729 void debug_show_held_locks(struct task_struct
*task
)
2731 lockdep_print_held_locks(task
);
2734 EXPORT_SYMBOL_GPL(debug_show_held_locks
);