4 * Runtime locking correctness validator
6 * Started by Ingo Molnar:
8 * Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
11 * this code maps all the lock dependencies as they occur in a live kernel
12 * and will warn about the following classes of locking bugs:
14 * - lock inversion scenarios
15 * - circular lock dependencies
16 * - hardirq/softirq safe/unsafe locking bugs
18 * Bugs are reported even if the current locking scenario does not cause
19 * any deadlock at this point.
21 * I.e. if anytime in the past two locks were taken in a different order,
22 * even if it happened for another task, even if those were different
23 * locks (but of the same class as this lock), this code will detect it.
25 * Thanks to Arjan van de Ven for coming up with the initial idea of
26 * mapping lock dependencies runtime.
28 #define DISABLE_BRANCH_PROFILING
29 #include <linux/mutex.h>
30 #include <linux/sched.h>
31 #include <linux/delay.h>
32 #include <linux/module.h>
33 #include <linux/proc_fs.h>
34 #include <linux/seq_file.h>
35 #include <linux/spinlock.h>
36 #include <linux/kallsyms.h>
37 #include <linux/interrupt.h>
38 #include <linux/stacktrace.h>
39 #include <linux/debug_locks.h>
40 #include <linux/irqflags.h>
41 #include <linux/utsname.h>
42 #include <linux/hash.h>
43 #include <linux/ftrace.h>
44 #include <linux/stringify.h>
45 #include <linux/bitops.h>
47 #include <asm/sections.h>
49 #include "lockdep_internals.h"
51 #define CREATE_TRACE_POINTS
52 #include <trace/events/lockdep.h>
54 #ifdef CONFIG_PROVE_LOCKING
55 int prove_locking
= 1;
56 module_param(prove_locking
, int, 0644);
58 #define prove_locking 0
61 #ifdef CONFIG_LOCK_STAT
63 module_param(lock_stat
, int, 0644);
69 * lockdep_lock: protects the lockdep graph, the hashes and the
70 * class/list/hash allocators.
72 * This is one of the rare exceptions where it's justified
73 * to use a raw spinlock - we really dont want the spinlock
74 * code to recurse back into the lockdep code...
76 static raw_spinlock_t lockdep_lock
= (raw_spinlock_t
)__RAW_SPIN_LOCK_UNLOCKED
;
78 static int graph_lock(void)
80 __raw_spin_lock(&lockdep_lock
);
82 * Make sure that if another CPU detected a bug while
83 * walking the graph we dont change it (while the other
84 * CPU is busy printing out stuff with the graph lock
88 __raw_spin_unlock(&lockdep_lock
);
91 /* prevent any recursions within lockdep from causing deadlocks */
92 current
->lockdep_recursion
++;
96 static inline int graph_unlock(void)
98 if (debug_locks
&& !__raw_spin_is_locked(&lockdep_lock
))
99 return DEBUG_LOCKS_WARN_ON(1);
101 current
->lockdep_recursion
--;
102 __raw_spin_unlock(&lockdep_lock
);
107 * Turn lock debugging off and return with 0 if it was off already,
108 * and also release the graph lock:
110 static inline int debug_locks_off_graph_unlock(void)
112 int ret
= debug_locks_off();
114 __raw_spin_unlock(&lockdep_lock
);
119 static int lockdep_initialized
;
121 unsigned long nr_list_entries
;
122 static struct lock_list list_entries
[MAX_LOCKDEP_ENTRIES
];
125 * All data structures here are protected by the global debug_lock.
127 * Mutex key structs only get allocated, once during bootup, and never
128 * get freed - this significantly simplifies the debugging code.
130 unsigned long nr_lock_classes
;
131 static struct lock_class lock_classes
[MAX_LOCKDEP_KEYS
];
133 static inline struct lock_class
*hlock_class(struct held_lock
*hlock
)
135 if (!hlock
->class_idx
) {
136 DEBUG_LOCKS_WARN_ON(1);
139 return lock_classes
+ hlock
->class_idx
- 1;
142 #ifdef CONFIG_LOCK_STAT
143 static DEFINE_PER_CPU(struct lock_class_stats
[MAX_LOCKDEP_KEYS
], lock_stats
);
145 static inline u64
lockstat_clock(void)
147 return cpu_clock(smp_processor_id());
150 static int lock_point(unsigned long points
[], unsigned long ip
)
154 for (i
= 0; i
< LOCKSTAT_POINTS
; i
++) {
155 if (points
[i
] == 0) {
166 static void lock_time_inc(struct lock_time
*lt
, u64 time
)
171 if (time
< lt
->min
|| !lt
->min
)
178 static inline void lock_time_add(struct lock_time
*src
, struct lock_time
*dst
)
180 dst
->min
+= src
->min
;
181 dst
->max
+= src
->max
;
182 dst
->total
+= src
->total
;
186 struct lock_class_stats
lock_stats(struct lock_class
*class)
188 struct lock_class_stats stats
;
191 memset(&stats
, 0, sizeof(struct lock_class_stats
));
192 for_each_possible_cpu(cpu
) {
193 struct lock_class_stats
*pcs
=
194 &per_cpu(lock_stats
, cpu
)[class - lock_classes
];
196 for (i
= 0; i
< ARRAY_SIZE(stats
.contention_point
); i
++)
197 stats
.contention_point
[i
] += pcs
->contention_point
[i
];
199 for (i
= 0; i
< ARRAY_SIZE(stats
.contending_point
); i
++)
200 stats
.contending_point
[i
] += pcs
->contending_point
[i
];
202 lock_time_add(&pcs
->read_waittime
, &stats
.read_waittime
);
203 lock_time_add(&pcs
->write_waittime
, &stats
.write_waittime
);
205 lock_time_add(&pcs
->read_holdtime
, &stats
.read_holdtime
);
206 lock_time_add(&pcs
->write_holdtime
, &stats
.write_holdtime
);
208 for (i
= 0; i
< ARRAY_SIZE(stats
.bounces
); i
++)
209 stats
.bounces
[i
] += pcs
->bounces
[i
];
215 void clear_lock_stats(struct lock_class
*class)
219 for_each_possible_cpu(cpu
) {
220 struct lock_class_stats
*cpu_stats
=
221 &per_cpu(lock_stats
, cpu
)[class - lock_classes
];
223 memset(cpu_stats
, 0, sizeof(struct lock_class_stats
));
225 memset(class->contention_point
, 0, sizeof(class->contention_point
));
226 memset(class->contending_point
, 0, sizeof(class->contending_point
));
229 static struct lock_class_stats
*get_lock_stats(struct lock_class
*class)
231 return &get_cpu_var(lock_stats
)[class - lock_classes
];
234 static void put_lock_stats(struct lock_class_stats
*stats
)
236 put_cpu_var(lock_stats
);
239 static void lock_release_holdtime(struct held_lock
*hlock
)
241 struct lock_class_stats
*stats
;
247 holdtime
= lockstat_clock() - hlock
->holdtime_stamp
;
249 stats
= get_lock_stats(hlock_class(hlock
));
251 lock_time_inc(&stats
->read_holdtime
, holdtime
);
253 lock_time_inc(&stats
->write_holdtime
, holdtime
);
254 put_lock_stats(stats
);
257 static inline void lock_release_holdtime(struct held_lock
*hlock
)
263 * We keep a global list of all lock classes. The list only grows,
264 * never shrinks. The list is only accessed with the lockdep
265 * spinlock lock held.
267 LIST_HEAD(all_lock_classes
);
270 * The lockdep classes are in a hash-table as well, for fast lookup:
272 #define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
273 #define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
274 #define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
275 #define classhashentry(key) (classhash_table + __classhashfn((key)))
277 static struct list_head classhash_table
[CLASSHASH_SIZE
];
280 * We put the lock dependency chains into a hash-table as well, to cache
283 #define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
284 #define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
285 #define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
286 #define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
288 static struct list_head chainhash_table
[CHAINHASH_SIZE
];
291 * The hash key of the lock dependency chains is a hash itself too:
292 * it's a hash of all locks taken up to that lock, including that lock.
293 * It's a 64-bit hash, because it's important for the keys to be
296 #define iterate_chain_key(key1, key2) \
297 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
298 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
301 void lockdep_off(void)
303 current
->lockdep_recursion
++;
305 EXPORT_SYMBOL(lockdep_off
);
307 void lockdep_on(void)
309 current
->lockdep_recursion
--;
311 EXPORT_SYMBOL(lockdep_on
);
314 * Debugging switches:
318 #define VERY_VERBOSE 0
321 # define HARDIRQ_VERBOSE 1
322 # define SOFTIRQ_VERBOSE 1
323 # define RECLAIM_VERBOSE 1
325 # define HARDIRQ_VERBOSE 0
326 # define SOFTIRQ_VERBOSE 0
327 # define RECLAIM_VERBOSE 0
330 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE
332 * Quick filtering for interesting events:
334 static int class_filter(struct lock_class
*class)
338 if (class->name_version
== 1 &&
339 !strcmp(class->name
, "lockname"))
341 if (class->name_version
== 1 &&
342 !strcmp(class->name
, "&struct->lockfield"))
345 /* Filter everything else. 1 would be to allow everything else */
350 static int verbose(struct lock_class
*class)
353 return class_filter(class);
359 * Stack-trace: tightly packed array of stack backtrace
360 * addresses. Protected by the graph_lock.
362 unsigned long nr_stack_trace_entries
;
363 static unsigned long stack_trace
[MAX_STACK_TRACE_ENTRIES
];
365 static int save_trace(struct stack_trace
*trace
)
367 trace
->nr_entries
= 0;
368 trace
->max_entries
= MAX_STACK_TRACE_ENTRIES
- nr_stack_trace_entries
;
369 trace
->entries
= stack_trace
+ nr_stack_trace_entries
;
373 save_stack_trace(trace
);
376 * Some daft arches put -1 at the end to indicate its a full trace.
378 * <rant> this is buggy anyway, since it takes a whole extra entry so a
379 * complete trace that maxes out the entries provided will be reported
380 * as incomplete, friggin useless </rant>
382 if (trace
->entries
[trace
->nr_entries
-1] == ULONG_MAX
)
385 trace
->max_entries
= trace
->nr_entries
;
387 nr_stack_trace_entries
+= trace
->nr_entries
;
389 if (nr_stack_trace_entries
>= MAX_STACK_TRACE_ENTRIES
-1) {
390 if (!debug_locks_off_graph_unlock())
393 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
394 printk("turning off the locking correctness validator.\n");
403 unsigned int nr_hardirq_chains
;
404 unsigned int nr_softirq_chains
;
405 unsigned int nr_process_chains
;
406 unsigned int max_lockdep_depth
;
408 #ifdef CONFIG_DEBUG_LOCKDEP
410 * We cannot printk in early bootup code. Not even early_printk()
411 * might work. So we mark any initialization errors and printk
412 * about it later on, in lockdep_info().
414 static int lockdep_init_error
;
415 static unsigned long lockdep_init_trace_data
[20];
416 static struct stack_trace lockdep_init_trace
= {
417 .max_entries
= ARRAY_SIZE(lockdep_init_trace_data
),
418 .entries
= lockdep_init_trace_data
,
422 * Various lockdep statistics:
424 atomic_t chain_lookup_hits
;
425 atomic_t chain_lookup_misses
;
426 atomic_t hardirqs_on_events
;
427 atomic_t hardirqs_off_events
;
428 atomic_t redundant_hardirqs_on
;
429 atomic_t redundant_hardirqs_off
;
430 atomic_t softirqs_on_events
;
431 atomic_t softirqs_off_events
;
432 atomic_t redundant_softirqs_on
;
433 atomic_t redundant_softirqs_off
;
434 atomic_t nr_unused_locks
;
435 atomic_t nr_cyclic_checks
;
436 atomic_t nr_find_usage_forwards_checks
;
437 atomic_t nr_find_usage_backwards_checks
;
444 #define __USAGE(__STATE) \
445 [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W", \
446 [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W", \
447 [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
448 [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
450 static const char *usage_str
[] =
452 #define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
453 #include "lockdep_states.h"
455 [LOCK_USED
] = "INITIAL USE",
458 const char * __get_key_name(struct lockdep_subclass_key
*key
, char *str
)
460 return kallsyms_lookup((unsigned long)key
, NULL
, NULL
, NULL
, str
);
463 static inline unsigned long lock_flag(enum lock_usage_bit bit
)
468 static char get_usage_char(struct lock_class
*class, enum lock_usage_bit bit
)
472 if (class->usage_mask
& lock_flag(bit
+ 2))
474 if (class->usage_mask
& lock_flag(bit
)) {
476 if (class->usage_mask
& lock_flag(bit
+ 2))
483 void get_usage_chars(struct lock_class
*class, char usage
[LOCK_USAGE_CHARS
])
487 #define LOCKDEP_STATE(__STATE) \
488 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE); \
489 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
490 #include "lockdep_states.h"
496 static void print_lock_name(struct lock_class
*class)
498 char str
[KSYM_NAME_LEN
], usage
[LOCK_USAGE_CHARS
];
501 get_usage_chars(class, usage
);
505 name
= __get_key_name(class->key
, str
);
506 printk(" (%s", name
);
508 printk(" (%s", name
);
509 if (class->name_version
> 1)
510 printk("#%d", class->name_version
);
512 printk("/%d", class->subclass
);
514 printk("){%s}", usage
);
517 static void print_lockdep_cache(struct lockdep_map
*lock
)
520 char str
[KSYM_NAME_LEN
];
524 name
= __get_key_name(lock
->key
->subkeys
, str
);
529 static void print_lock(struct held_lock
*hlock
)
531 print_lock_name(hlock_class(hlock
));
533 print_ip_sym(hlock
->acquire_ip
);
536 static void lockdep_print_held_locks(struct task_struct
*curr
)
538 int i
, depth
= curr
->lockdep_depth
;
541 printk("no locks held by %s/%d.\n", curr
->comm
, task_pid_nr(curr
));
544 printk("%d lock%s held by %s/%d:\n",
545 depth
, depth
> 1 ? "s" : "", curr
->comm
, task_pid_nr(curr
));
547 for (i
= 0; i
< depth
; i
++) {
549 print_lock(curr
->held_locks
+ i
);
553 static void print_kernel_version(void)
555 printk("%s %.*s\n", init_utsname()->release
,
556 (int)strcspn(init_utsname()->version
, " "),
557 init_utsname()->version
);
560 static int very_verbose(struct lock_class
*class)
563 return class_filter(class);
569 * Is this the address of a static object:
571 static int static_obj(void *obj
)
573 unsigned long start
= (unsigned long) &_stext
,
574 end
= (unsigned long) &_end
,
575 addr
= (unsigned long) obj
;
583 if ((addr
>= start
) && (addr
< end
))
586 if (arch_is_kernel_data(addr
))
593 for_each_possible_cpu(i
) {
594 start
= (unsigned long) &__per_cpu_start
+ per_cpu_offset(i
);
595 end
= (unsigned long) &__per_cpu_start
+ PERCPU_ENOUGH_ROOM
598 if ((addr
>= start
) && (addr
< end
))
606 return is_module_address(addr
);
610 * To make lock name printouts unique, we calculate a unique
611 * class->name_version generation counter:
613 static int count_matching_names(struct lock_class
*new_class
)
615 struct lock_class
*class;
618 if (!new_class
->name
)
621 list_for_each_entry(class, &all_lock_classes
, lock_entry
) {
622 if (new_class
->key
- new_class
->subclass
== class->key
)
623 return class->name_version
;
624 if (class->name
&& !strcmp(class->name
, new_class
->name
))
625 count
= max(count
, class->name_version
);
632 * Register a lock's class in the hash-table, if the class is not present
633 * yet. Otherwise we look it up. We cache the result in the lock object
634 * itself, so actual lookup of the hash should be once per lock object.
636 static inline struct lock_class
*
637 look_up_lock_class(struct lockdep_map
*lock
, unsigned int subclass
)
639 struct lockdep_subclass_key
*key
;
640 struct list_head
*hash_head
;
641 struct lock_class
*class;
643 #ifdef CONFIG_DEBUG_LOCKDEP
645 * If the architecture calls into lockdep before initializing
646 * the hashes then we'll warn about it later. (we cannot printk
649 if (unlikely(!lockdep_initialized
)) {
651 lockdep_init_error
= 1;
652 save_stack_trace(&lockdep_init_trace
);
657 * Static locks do not have their class-keys yet - for them the key
658 * is the lock object itself:
660 if (unlikely(!lock
->key
))
661 lock
->key
= (void *)lock
;
664 * NOTE: the class-key must be unique. For dynamic locks, a static
665 * lock_class_key variable is passed in through the mutex_init()
666 * (or spin_lock_init()) call - which acts as the key. For static
667 * locks we use the lock object itself as the key.
669 BUILD_BUG_ON(sizeof(struct lock_class_key
) >
670 sizeof(struct lockdep_map
));
672 key
= lock
->key
->subkeys
+ subclass
;
674 hash_head
= classhashentry(key
);
677 * We can walk the hash lockfree, because the hash only
678 * grows, and we are careful when adding entries to the end:
680 list_for_each_entry(class, hash_head
, hash_entry
) {
681 if (class->key
== key
) {
682 WARN_ON_ONCE(class->name
!= lock
->name
);
691 * Register a lock's class in the hash-table, if the class is not present
692 * yet. Otherwise we look it up. We cache the result in the lock object
693 * itself, so actual lookup of the hash should be once per lock object.
695 static inline struct lock_class
*
696 register_lock_class(struct lockdep_map
*lock
, unsigned int subclass
, int force
)
698 struct lockdep_subclass_key
*key
;
699 struct list_head
*hash_head
;
700 struct lock_class
*class;
703 class = look_up_lock_class(lock
, subclass
);
708 * Debug-check: all keys must be persistent!
710 if (!static_obj(lock
->key
)) {
712 printk("INFO: trying to register non-static key.\n");
713 printk("the code is fine but needs lockdep annotation.\n");
714 printk("turning off the locking correctness validator.\n");
720 key
= lock
->key
->subkeys
+ subclass
;
721 hash_head
= classhashentry(key
);
723 raw_local_irq_save(flags
);
725 raw_local_irq_restore(flags
);
729 * We have to do the hash-walk again, to avoid races
732 list_for_each_entry(class, hash_head
, hash_entry
)
733 if (class->key
== key
)
736 * Allocate a new key from the static array, and add it to
739 if (nr_lock_classes
>= MAX_LOCKDEP_KEYS
) {
740 if (!debug_locks_off_graph_unlock()) {
741 raw_local_irq_restore(flags
);
744 raw_local_irq_restore(flags
);
746 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
747 printk("turning off the locking correctness validator.\n");
751 class = lock_classes
+ nr_lock_classes
++;
752 debug_atomic_inc(&nr_unused_locks
);
754 class->name
= lock
->name
;
755 class->subclass
= subclass
;
756 INIT_LIST_HEAD(&class->lock_entry
);
757 INIT_LIST_HEAD(&class->locks_before
);
758 INIT_LIST_HEAD(&class->locks_after
);
759 class->name_version
= count_matching_names(class);
761 * We use RCU's safe list-add method to make
762 * parallel walking of the hash-list safe:
764 list_add_tail_rcu(&class->hash_entry
, hash_head
);
766 * Add it to the global list of classes:
768 list_add_tail_rcu(&class->lock_entry
, &all_lock_classes
);
770 if (verbose(class)) {
772 raw_local_irq_restore(flags
);
774 printk("\nnew class %p: %s", class->key
, class->name
);
775 if (class->name_version
> 1)
776 printk("#%d", class->name_version
);
780 raw_local_irq_save(flags
);
782 raw_local_irq_restore(flags
);
788 raw_local_irq_restore(flags
);
790 if (!subclass
|| force
)
791 lock
->class_cache
= class;
793 if (DEBUG_LOCKS_WARN_ON(class->subclass
!= subclass
))
799 #ifdef CONFIG_PROVE_LOCKING
801 * Allocate a lockdep entry. (assumes the graph_lock held, returns
802 * with NULL on failure)
804 static struct lock_list
*alloc_list_entry(void)
806 if (nr_list_entries
>= MAX_LOCKDEP_ENTRIES
) {
807 if (!debug_locks_off_graph_unlock())
810 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
811 printk("turning off the locking correctness validator.\n");
815 return list_entries
+ nr_list_entries
++;
819 * Add a new dependency to the head of the list:
821 static int add_lock_to_list(struct lock_class
*class, struct lock_class
*this,
822 struct list_head
*head
, unsigned long ip
, int distance
)
824 struct lock_list
*entry
;
826 * Lock not present yet - get a new dependency struct and
827 * add it to the list:
829 entry
= alloc_list_entry();
833 if (!save_trace(&entry
->trace
))
837 entry
->distance
= distance
;
839 * Since we never remove from the dependency list, the list can
840 * be walked lockless by other CPUs, it's only allocation
841 * that must be protected by the spinlock. But this also means
842 * we must make new entries visible only once writes to the
843 * entry become visible - hence the RCU op:
845 list_add_tail_rcu(&entry
->entry
, head
);
851 * For good efficiency of modular, we use power of 2
853 #define MAX_CIRCULAR_QUEUE_SIZE 4096UL
854 #define CQ_MASK (MAX_CIRCULAR_QUEUE_SIZE-1)
857 * The circular_queue and helpers is used to implement the
858 * breadth-first search(BFS)algorithem, by which we can build
859 * the shortest path from the next lock to be acquired to the
860 * previous held lock if there is a circular between them.
862 struct circular_queue
{
863 unsigned long element
[MAX_CIRCULAR_QUEUE_SIZE
];
864 unsigned int front
, rear
;
867 static struct circular_queue lock_cq
;
869 unsigned int max_bfs_queue_depth
;
871 static unsigned int lockdep_dependency_gen_id
;
873 static inline void __cq_init(struct circular_queue
*cq
)
875 cq
->front
= cq
->rear
= 0;
876 lockdep_dependency_gen_id
++;
879 static inline int __cq_empty(struct circular_queue
*cq
)
881 return (cq
->front
== cq
->rear
);
884 static inline int __cq_full(struct circular_queue
*cq
)
886 return ((cq
->rear
+ 1) & CQ_MASK
) == cq
->front
;
889 static inline int __cq_enqueue(struct circular_queue
*cq
, unsigned long elem
)
894 cq
->element
[cq
->rear
] = elem
;
895 cq
->rear
= (cq
->rear
+ 1) & CQ_MASK
;
899 static inline int __cq_dequeue(struct circular_queue
*cq
, unsigned long *elem
)
904 *elem
= cq
->element
[cq
->front
];
905 cq
->front
= (cq
->front
+ 1) & CQ_MASK
;
909 static inline unsigned int __cq_get_elem_count(struct circular_queue
*cq
)
911 return (cq
->rear
- cq
->front
) & CQ_MASK
;
914 static inline void mark_lock_accessed(struct lock_list
*lock
,
915 struct lock_list
*parent
)
919 nr
= lock
- list_entries
;
920 WARN_ON(nr
>= nr_list_entries
);
921 lock
->parent
= parent
;
922 lock
->class->dep_gen_id
= lockdep_dependency_gen_id
;
925 static inline unsigned long lock_accessed(struct lock_list
*lock
)
929 nr
= lock
- list_entries
;
930 WARN_ON(nr
>= nr_list_entries
);
931 return lock
->class->dep_gen_id
== lockdep_dependency_gen_id
;
934 static inline struct lock_list
*get_lock_parent(struct lock_list
*child
)
936 return child
->parent
;
939 static inline int get_lock_depth(struct lock_list
*child
)
942 struct lock_list
*parent
;
944 while ((parent
= get_lock_parent(child
))) {
951 static int __bfs(struct lock_list
*source_entry
,
953 int (*match
)(struct lock_list
*entry
, void *data
),
954 struct lock_list
**target_entry
,
957 struct lock_list
*entry
;
958 struct list_head
*head
;
959 struct circular_queue
*cq
= &lock_cq
;
962 if (match(source_entry
, data
)) {
963 *target_entry
= source_entry
;
969 head
= &source_entry
->class->locks_after
;
971 head
= &source_entry
->class->locks_before
;
973 if (list_empty(head
))
977 __cq_enqueue(cq
, (unsigned long)source_entry
);
979 while (!__cq_empty(cq
)) {
980 struct lock_list
*lock
;
982 __cq_dequeue(cq
, (unsigned long *)&lock
);
990 head
= &lock
->class->locks_after
;
992 head
= &lock
->class->locks_before
;
994 list_for_each_entry(entry
, head
, entry
) {
995 if (!lock_accessed(entry
)) {
996 unsigned int cq_depth
;
997 mark_lock_accessed(entry
, lock
);
998 if (match(entry
, data
)) {
999 *target_entry
= entry
;
1004 if (__cq_enqueue(cq
, (unsigned long)entry
)) {
1008 cq_depth
= __cq_get_elem_count(cq
);
1009 if (max_bfs_queue_depth
< cq_depth
)
1010 max_bfs_queue_depth
= cq_depth
;
1018 static inline int __bfs_forwards(struct lock_list
*src_entry
,
1020 int (*match
)(struct lock_list
*entry
, void *data
),
1021 struct lock_list
**target_entry
)
1023 return __bfs(src_entry
, data
, match
, target_entry
, 1);
1027 static inline int __bfs_backwards(struct lock_list
*src_entry
,
1029 int (*match
)(struct lock_list
*entry
, void *data
),
1030 struct lock_list
**target_entry
)
1032 return __bfs(src_entry
, data
, match
, target_entry
, 0);
1037 * Recursive, forwards-direction lock-dependency checking, used for
1038 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
1043 * Print a dependency chain entry (this is only done when a deadlock
1044 * has been detected):
1047 print_circular_bug_entry(struct lock_list
*target
, int depth
)
1049 if (debug_locks_silent
)
1051 printk("\n-> #%u", depth
);
1052 print_lock_name(target
->class);
1054 print_stack_trace(&target
->trace
, 6);
1060 * When a circular dependency is detected, print the
1064 print_circular_bug_header(struct lock_list
*entry
, unsigned int depth
,
1065 struct held_lock
*check_src
,
1066 struct held_lock
*check_tgt
)
1068 struct task_struct
*curr
= current
;
1070 if (debug_locks_silent
)
1073 printk("\n=======================================================\n");
1074 printk( "[ INFO: possible circular locking dependency detected ]\n");
1075 print_kernel_version();
1076 printk( "-------------------------------------------------------\n");
1077 printk("%s/%d is trying to acquire lock:\n",
1078 curr
->comm
, task_pid_nr(curr
));
1079 print_lock(check_src
);
1080 printk("\nbut task is already holding lock:\n");
1081 print_lock(check_tgt
);
1082 printk("\nwhich lock already depends on the new lock.\n\n");
1083 printk("\nthe existing dependency chain (in reverse order) is:\n");
1085 print_circular_bug_entry(entry
, depth
);
1090 static inline int class_equal(struct lock_list
*entry
, void *data
)
1092 return entry
->class == data
;
1095 static noinline
int print_circular_bug(struct lock_list
*this,
1096 struct lock_list
*target
,
1097 struct held_lock
*check_src
,
1098 struct held_lock
*check_tgt
)
1100 struct task_struct
*curr
= current
;
1101 struct lock_list
*parent
;
1104 if (!debug_locks_off_graph_unlock() || debug_locks_silent
)
1107 if (!save_trace(&this->trace
))
1110 depth
= get_lock_depth(target
);
1112 print_circular_bug_header(target
, depth
, check_src
, check_tgt
);
1114 parent
= get_lock_parent(target
);
1117 print_circular_bug_entry(parent
, --depth
);
1118 parent
= get_lock_parent(parent
);
1121 printk("\nother info that might help us debug this:\n\n");
1122 lockdep_print_held_locks(curr
);
1124 printk("\nstack backtrace:\n");
1130 static noinline
int print_bfs_bug(int ret
)
1132 if (!debug_locks_off_graph_unlock())
1135 WARN(1, "lockdep bfs error:%d\n", ret
);
1140 static int noop_count(struct lock_list
*entry
, void *data
)
1142 (*(unsigned long *)data
)++;
1146 unsigned long __lockdep_count_forward_deps(struct lock_list
*this)
1148 unsigned long count
= 0;
1149 struct lock_list
*uninitialized_var(target_entry
);
1151 __bfs_forwards(this, (void *)&count
, noop_count
, &target_entry
);
1155 unsigned long lockdep_count_forward_deps(struct lock_class
*class)
1157 unsigned long ret
, flags
;
1158 struct lock_list
this;
1163 local_irq_save(flags
);
1164 __raw_spin_lock(&lockdep_lock
);
1165 ret
= __lockdep_count_forward_deps(&this);
1166 __raw_spin_unlock(&lockdep_lock
);
1167 local_irq_restore(flags
);
1172 unsigned long __lockdep_count_backward_deps(struct lock_list
*this)
1174 unsigned long count
= 0;
1175 struct lock_list
*uninitialized_var(target_entry
);
1177 __bfs_backwards(this, (void *)&count
, noop_count
, &target_entry
);
1182 unsigned long lockdep_count_backward_deps(struct lock_class
*class)
1184 unsigned long ret
, flags
;
1185 struct lock_list
this;
1190 local_irq_save(flags
);
1191 __raw_spin_lock(&lockdep_lock
);
1192 ret
= __lockdep_count_backward_deps(&this);
1193 __raw_spin_unlock(&lockdep_lock
);
1194 local_irq_restore(flags
);
1200 * Prove that the dependency graph starting at <entry> can not
1201 * lead to <target>. Print an error and return 0 if it does.
1204 check_noncircular(struct lock_list
*root
, struct lock_class
*target
,
1205 struct lock_list
**target_entry
)
1209 debug_atomic_inc(&nr_cyclic_checks
);
1211 result
= __bfs_forwards(root
, target
, class_equal
, target_entry
);
1216 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
1218 * Forwards and backwards subgraph searching, for the purposes of
1219 * proving that two subgraphs can be connected by a new dependency
1220 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1223 static inline int usage_match(struct lock_list
*entry
, void *bit
)
1225 return entry
->class->usage_mask
& (1 << (enum lock_usage_bit
)bit
);
1231 * Find a node in the forwards-direction dependency sub-graph starting
1232 * at @root->class that matches @bit.
1234 * Return 0 if such a node exists in the subgraph, and put that node
1235 * into *@target_entry.
1237 * Return 1 otherwise and keep *@target_entry unchanged.
1238 * Return <0 on error.
1241 find_usage_forwards(struct lock_list
*root
, enum lock_usage_bit bit
,
1242 struct lock_list
**target_entry
)
1246 debug_atomic_inc(&nr_find_usage_forwards_checks
);
1248 result
= __bfs_forwards(root
, (void *)bit
, usage_match
, target_entry
);
1254 * Find a node in the backwards-direction dependency sub-graph starting
1255 * at @root->class that matches @bit.
1257 * Return 0 if such a node exists in the subgraph, and put that node
1258 * into *@target_entry.
1260 * Return 1 otherwise and keep *@target_entry unchanged.
1261 * Return <0 on error.
1264 find_usage_backwards(struct lock_list
*root
, enum lock_usage_bit bit
,
1265 struct lock_list
**target_entry
)
1269 debug_atomic_inc(&nr_find_usage_backwards_checks
);
1271 result
= __bfs_backwards(root
, (void *)bit
, usage_match
, target_entry
);
1276 static void print_lock_class_header(struct lock_class
*class, int depth
)
1280 printk("%*s->", depth
, "");
1281 print_lock_name(class);
1282 printk(" ops: %lu", class->ops
);
1285 for (bit
= 0; bit
< LOCK_USAGE_STATES
; bit
++) {
1286 if (class->usage_mask
& (1 << bit
)) {
1289 len
+= printk("%*s %s", depth
, "", usage_str
[bit
]);
1290 len
+= printk(" at:\n");
1291 print_stack_trace(class->usage_traces
+ bit
, len
);
1294 printk("%*s }\n", depth
, "");
1296 printk("%*s ... key at: ",depth
,"");
1297 print_ip_sym((unsigned long)class->key
);
1301 * printk the shortest lock dependencies from @start to @end in reverse order:
1304 print_shortest_lock_dependencies(struct lock_list
*leaf
,
1305 struct lock_list
*root
)
1307 struct lock_list
*entry
= leaf
;
1310 /*compute depth from generated tree by BFS*/
1311 depth
= get_lock_depth(leaf
);
1314 print_lock_class_header(entry
->class, depth
);
1315 printk("%*s ... acquired at:\n", depth
, "");
1316 print_stack_trace(&entry
->trace
, 2);
1319 if (depth
== 0 && (entry
!= root
)) {
1320 printk("lockdep:%s bad BFS generated tree\n", __func__
);
1324 entry
= get_lock_parent(entry
);
1326 } while (entry
&& (depth
>= 0));
1332 print_bad_irq_dependency(struct task_struct
*curr
,
1333 struct lock_list
*prev_root
,
1334 struct lock_list
*next_root
,
1335 struct lock_list
*backwards_entry
,
1336 struct lock_list
*forwards_entry
,
1337 struct held_lock
*prev
,
1338 struct held_lock
*next
,
1339 enum lock_usage_bit bit1
,
1340 enum lock_usage_bit bit2
,
1341 const char *irqclass
)
1343 if (!debug_locks_off_graph_unlock() || debug_locks_silent
)
1346 printk("\n======================================================\n");
1347 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1348 irqclass
, irqclass
);
1349 print_kernel_version();
1350 printk( "------------------------------------------------------\n");
1351 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1352 curr
->comm
, task_pid_nr(curr
),
1353 curr
->hardirq_context
, hardirq_count() >> HARDIRQ_SHIFT
,
1354 curr
->softirq_context
, softirq_count() >> SOFTIRQ_SHIFT
,
1355 curr
->hardirqs_enabled
,
1356 curr
->softirqs_enabled
);
1359 printk("\nand this task is already holding:\n");
1361 printk("which would create a new lock dependency:\n");
1362 print_lock_name(hlock_class(prev
));
1364 print_lock_name(hlock_class(next
));
1367 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1369 print_lock_name(backwards_entry
->class);
1370 printk("\n... which became %s-irq-safe at:\n", irqclass
);
1372 print_stack_trace(backwards_entry
->class->usage_traces
+ bit1
, 1);
1374 printk("\nto a %s-irq-unsafe lock:\n", irqclass
);
1375 print_lock_name(forwards_entry
->class);
1376 printk("\n... which became %s-irq-unsafe at:\n", irqclass
);
1379 print_stack_trace(forwards_entry
->class->usage_traces
+ bit2
, 1);
1381 printk("\nother info that might help us debug this:\n\n");
1382 lockdep_print_held_locks(curr
);
1384 printk("\nthe dependencies between %s-irq-safe lock", irqclass
);
1385 printk(" and the holding lock:\n");
1386 if (!save_trace(&prev_root
->trace
))
1388 print_shortest_lock_dependencies(backwards_entry
, prev_root
);
1390 printk("\nthe dependencies between the lock to be acquired");
1391 printk(" and %s-irq-unsafe lock:\n", irqclass
);
1392 if (!save_trace(&next_root
->trace
))
1394 print_shortest_lock_dependencies(forwards_entry
, next_root
);
1396 printk("\nstack backtrace:\n");
1403 check_usage(struct task_struct
*curr
, struct held_lock
*prev
,
1404 struct held_lock
*next
, enum lock_usage_bit bit_backwards
,
1405 enum lock_usage_bit bit_forwards
, const char *irqclass
)
1408 struct lock_list
this, that
;
1409 struct lock_list
*uninitialized_var(target_entry
);
1410 struct lock_list
*uninitialized_var(target_entry1
);
1414 this.class = hlock_class(prev
);
1415 ret
= find_usage_backwards(&this, bit_backwards
, &target_entry
);
1417 return print_bfs_bug(ret
);
1422 that
.class = hlock_class(next
);
1423 ret
= find_usage_forwards(&that
, bit_forwards
, &target_entry1
);
1425 return print_bfs_bug(ret
);
1429 return print_bad_irq_dependency(curr
, &this, &that
,
1430 target_entry
, target_entry1
,
1432 bit_backwards
, bit_forwards
, irqclass
);
1435 static const char *state_names
[] = {
1436 #define LOCKDEP_STATE(__STATE) \
1437 __stringify(__STATE),
1438 #include "lockdep_states.h"
1439 #undef LOCKDEP_STATE
1442 static const char *state_rnames
[] = {
1443 #define LOCKDEP_STATE(__STATE) \
1444 __stringify(__STATE)"-READ",
1445 #include "lockdep_states.h"
1446 #undef LOCKDEP_STATE
1449 static inline const char *state_name(enum lock_usage_bit bit
)
1451 return (bit
& 1) ? state_rnames
[bit
>> 2] : state_names
[bit
>> 2];
1454 static int exclusive_bit(int new_bit
)
1462 * bit 0 - write/read
1463 * bit 1 - used_in/enabled
1467 int state
= new_bit
& ~3;
1468 int dir
= new_bit
& 2;
1471 * keep state, bit flip the direction and strip read.
1473 return state
| (dir
^ 2);
1476 static int check_irq_usage(struct task_struct
*curr
, struct held_lock
*prev
,
1477 struct held_lock
*next
, enum lock_usage_bit bit
)
1480 * Prove that the new dependency does not connect a hardirq-safe
1481 * lock with a hardirq-unsafe lock - to achieve this we search
1482 * the backwards-subgraph starting at <prev>, and the
1483 * forwards-subgraph starting at <next>:
1485 if (!check_usage(curr
, prev
, next
, bit
,
1486 exclusive_bit(bit
), state_name(bit
)))
1492 * Prove that the new dependency does not connect a hardirq-safe-read
1493 * lock with a hardirq-unsafe lock - to achieve this we search
1494 * the backwards-subgraph starting at <prev>, and the
1495 * forwards-subgraph starting at <next>:
1497 if (!check_usage(curr
, prev
, next
, bit
,
1498 exclusive_bit(bit
), state_name(bit
)))
1505 check_prev_add_irq(struct task_struct
*curr
, struct held_lock
*prev
,
1506 struct held_lock
*next
)
1508 #define LOCKDEP_STATE(__STATE) \
1509 if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \
1511 #include "lockdep_states.h"
1512 #undef LOCKDEP_STATE
1517 static void inc_chains(void)
1519 if (current
->hardirq_context
)
1520 nr_hardirq_chains
++;
1522 if (current
->softirq_context
)
1523 nr_softirq_chains
++;
1525 nr_process_chains
++;
1532 check_prev_add_irq(struct task_struct
*curr
, struct held_lock
*prev
,
1533 struct held_lock
*next
)
1538 static inline void inc_chains(void)
1540 nr_process_chains
++;
1546 print_deadlock_bug(struct task_struct
*curr
, struct held_lock
*prev
,
1547 struct held_lock
*next
)
1549 if (!debug_locks_off_graph_unlock() || debug_locks_silent
)
1552 printk("\n=============================================\n");
1553 printk( "[ INFO: possible recursive locking detected ]\n");
1554 print_kernel_version();
1555 printk( "---------------------------------------------\n");
1556 printk("%s/%d is trying to acquire lock:\n",
1557 curr
->comm
, task_pid_nr(curr
));
1559 printk("\nbut task is already holding lock:\n");
1562 printk("\nother info that might help us debug this:\n");
1563 lockdep_print_held_locks(curr
);
1565 printk("\nstack backtrace:\n");
1572 * Check whether we are holding such a class already.
1574 * (Note that this has to be done separately, because the graph cannot
1575 * detect such classes of deadlocks.)
1577 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1580 check_deadlock(struct task_struct
*curr
, struct held_lock
*next
,
1581 struct lockdep_map
*next_instance
, int read
)
1583 struct held_lock
*prev
;
1584 struct held_lock
*nest
= NULL
;
1587 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1588 prev
= curr
->held_locks
+ i
;
1590 if (prev
->instance
== next
->nest_lock
)
1593 if (hlock_class(prev
) != hlock_class(next
))
1597 * Allow read-after-read recursion of the same
1598 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1600 if ((read
== 2) && prev
->read
)
1604 * We're holding the nest_lock, which serializes this lock's
1605 * nesting behaviour.
1610 return print_deadlock_bug(curr
, prev
, next
);
1616 * There was a chain-cache miss, and we are about to add a new dependency
1617 * to a previous lock. We recursively validate the following rules:
1619 * - would the adding of the <prev> -> <next> dependency create a
1620 * circular dependency in the graph? [== circular deadlock]
1622 * - does the new prev->next dependency connect any hardirq-safe lock
1623 * (in the full backwards-subgraph starting at <prev>) with any
1624 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1625 * <next>)? [== illegal lock inversion with hardirq contexts]
1627 * - does the new prev->next dependency connect any softirq-safe lock
1628 * (in the full backwards-subgraph starting at <prev>) with any
1629 * softirq-unsafe lock (in the full forwards-subgraph starting at
1630 * <next>)? [== illegal lock inversion with softirq contexts]
1632 * any of these scenarios could lead to a deadlock.
1634 * Then if all the validations pass, we add the forwards and backwards
1638 check_prev_add(struct task_struct
*curr
, struct held_lock
*prev
,
1639 struct held_lock
*next
, int distance
)
1641 struct lock_list
*entry
;
1643 struct lock_list
this;
1644 struct lock_list
*uninitialized_var(target_entry
);
1647 * Prove that the new <prev> -> <next> dependency would not
1648 * create a circular dependency in the graph. (We do this by
1649 * forward-recursing into the graph starting at <next>, and
1650 * checking whether we can reach <prev>.)
1652 * We are using global variables to control the recursion, to
1653 * keep the stackframe size of the recursive functions low:
1655 this.class = hlock_class(next
);
1657 ret
= check_noncircular(&this, hlock_class(prev
), &target_entry
);
1659 return print_circular_bug(&this, target_entry
, next
, prev
);
1660 else if (unlikely(ret
< 0))
1661 return print_bfs_bug(ret
);
1663 if (!check_prev_add_irq(curr
, prev
, next
))
1667 * For recursive read-locks we do all the dependency checks,
1668 * but we dont store read-triggered dependencies (only
1669 * write-triggered dependencies). This ensures that only the
1670 * write-side dependencies matter, and that if for example a
1671 * write-lock never takes any other locks, then the reads are
1672 * equivalent to a NOP.
1674 if (next
->read
== 2 || prev
->read
== 2)
1677 * Is the <prev> -> <next> dependency already present?
1679 * (this may occur even though this is a new chain: consider
1680 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1681 * chains - the second one will be new, but L1 already has
1682 * L2 added to its dependency list, due to the first chain.)
1684 list_for_each_entry(entry
, &hlock_class(prev
)->locks_after
, entry
) {
1685 if (entry
->class == hlock_class(next
)) {
1687 entry
->distance
= 1;
1693 * Ok, all validations passed, add the new lock
1694 * to the previous lock's dependency list:
1696 ret
= add_lock_to_list(hlock_class(prev
), hlock_class(next
),
1697 &hlock_class(prev
)->locks_after
,
1698 next
->acquire_ip
, distance
);
1703 ret
= add_lock_to_list(hlock_class(next
), hlock_class(prev
),
1704 &hlock_class(next
)->locks_before
,
1705 next
->acquire_ip
, distance
);
1710 * Debugging printouts:
1712 if (verbose(hlock_class(prev
)) || verbose(hlock_class(next
))) {
1714 printk("\n new dependency: ");
1715 print_lock_name(hlock_class(prev
));
1717 print_lock_name(hlock_class(next
));
1720 return graph_lock();
1726 * Add the dependency to all directly-previous locks that are 'relevant'.
1727 * The ones that are relevant are (in increasing distance from curr):
1728 * all consecutive trylock entries and the final non-trylock entry - or
1729 * the end of this context's lock-chain - whichever comes first.
1732 check_prevs_add(struct task_struct
*curr
, struct held_lock
*next
)
1734 int depth
= curr
->lockdep_depth
;
1735 struct held_lock
*hlock
;
1740 * Depth must not be zero for a non-head lock:
1745 * At least two relevant locks must exist for this
1748 if (curr
->held_locks
[depth
].irq_context
!=
1749 curr
->held_locks
[depth
-1].irq_context
)
1753 int distance
= curr
->lockdep_depth
- depth
+ 1;
1754 hlock
= curr
->held_locks
+ depth
-1;
1756 * Only non-recursive-read entries get new dependencies
1759 if (hlock
->read
!= 2) {
1760 if (!check_prev_add(curr
, hlock
, next
, distance
))
1763 * Stop after the first non-trylock entry,
1764 * as non-trylock entries have added their
1765 * own direct dependencies already, so this
1766 * lock is connected to them indirectly:
1768 if (!hlock
->trylock
)
1773 * End of lock-stack?
1778 * Stop the search if we cross into another context:
1780 if (curr
->held_locks
[depth
].irq_context
!=
1781 curr
->held_locks
[depth
-1].irq_context
)
1786 if (!debug_locks_off_graph_unlock())
1794 unsigned long nr_lock_chains
;
1795 struct lock_chain lock_chains
[MAX_LOCKDEP_CHAINS
];
1796 int nr_chain_hlocks
;
1797 static u16 chain_hlocks
[MAX_LOCKDEP_CHAIN_HLOCKS
];
1799 struct lock_class
*lock_chain_get_class(struct lock_chain
*chain
, int i
)
1801 return lock_classes
+ chain_hlocks
[chain
->base
+ i
];
1805 * Look up a dependency chain. If the key is not present yet then
1806 * add it and return 1 - in this case the new dependency chain is
1807 * validated. If the key is already hashed, return 0.
1808 * (On return with 1 graph_lock is held.)
1810 static inline int lookup_chain_cache(struct task_struct
*curr
,
1811 struct held_lock
*hlock
,
1814 struct lock_class
*class = hlock_class(hlock
);
1815 struct list_head
*hash_head
= chainhashentry(chain_key
);
1816 struct lock_chain
*chain
;
1817 struct held_lock
*hlock_curr
, *hlock_next
;
1820 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1823 * We can walk it lock-free, because entries only get added
1826 list_for_each_entry(chain
, hash_head
, entry
) {
1827 if (chain
->chain_key
== chain_key
) {
1829 debug_atomic_inc(&chain_lookup_hits
);
1830 if (very_verbose(class))
1831 printk("\nhash chain already cached, key: "
1832 "%016Lx tail class: [%p] %s\n",
1833 (unsigned long long)chain_key
,
1834 class->key
, class->name
);
1838 if (very_verbose(class))
1839 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1840 (unsigned long long)chain_key
, class->key
, class->name
);
1842 * Allocate a new chain entry from the static array, and add
1848 * We have to walk the chain again locked - to avoid duplicates:
1850 list_for_each_entry(chain
, hash_head
, entry
) {
1851 if (chain
->chain_key
== chain_key
) {
1856 if (unlikely(nr_lock_chains
>= MAX_LOCKDEP_CHAINS
)) {
1857 if (!debug_locks_off_graph_unlock())
1860 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1861 printk("turning off the locking correctness validator.\n");
1865 chain
= lock_chains
+ nr_lock_chains
++;
1866 chain
->chain_key
= chain_key
;
1867 chain
->irq_context
= hlock
->irq_context
;
1868 /* Find the first held_lock of current chain */
1870 for (i
= curr
->lockdep_depth
- 1; i
>= 0; i
--) {
1871 hlock_curr
= curr
->held_locks
+ i
;
1872 if (hlock_curr
->irq_context
!= hlock_next
->irq_context
)
1877 chain
->depth
= curr
->lockdep_depth
+ 1 - i
;
1878 cn
= nr_chain_hlocks
;
1879 while (cn
+ chain
->depth
<= MAX_LOCKDEP_CHAIN_HLOCKS
) {
1880 n
= cmpxchg(&nr_chain_hlocks
, cn
, cn
+ chain
->depth
);
1885 if (likely(cn
+ chain
->depth
<= MAX_LOCKDEP_CHAIN_HLOCKS
)) {
1887 for (j
= 0; j
< chain
->depth
- 1; j
++, i
++) {
1888 int lock_id
= curr
->held_locks
[i
].class_idx
- 1;
1889 chain_hlocks
[chain
->base
+ j
] = lock_id
;
1891 chain_hlocks
[chain
->base
+ j
] = class - lock_classes
;
1893 list_add_tail_rcu(&chain
->entry
, hash_head
);
1894 debug_atomic_inc(&chain_lookup_misses
);
1900 static int validate_chain(struct task_struct
*curr
, struct lockdep_map
*lock
,
1901 struct held_lock
*hlock
, int chain_head
, u64 chain_key
)
1904 * Trylock needs to maintain the stack of held locks, but it
1905 * does not add new dependencies, because trylock can be done
1908 * We look up the chain_key and do the O(N^2) check and update of
1909 * the dependencies only if this is a new dependency chain.
1910 * (If lookup_chain_cache() returns with 1 it acquires
1911 * graph_lock for us)
1913 if (!hlock
->trylock
&& (hlock
->check
== 2) &&
1914 lookup_chain_cache(curr
, hlock
, chain_key
)) {
1916 * Check whether last held lock:
1918 * - is irq-safe, if this lock is irq-unsafe
1919 * - is softirq-safe, if this lock is hardirq-unsafe
1921 * And check whether the new lock's dependency graph
1922 * could lead back to the previous lock.
1924 * any of these scenarios could lead to a deadlock. If
1927 int ret
= check_deadlock(curr
, hlock
, lock
, hlock
->read
);
1932 * Mark recursive read, as we jump over it when
1933 * building dependencies (just like we jump over
1939 * Add dependency only if this lock is not the head
1940 * of the chain, and if it's not a secondary read-lock:
1942 if (!chain_head
&& ret
!= 2)
1943 if (!check_prevs_add(curr
, hlock
))
1947 /* after lookup_chain_cache(): */
1948 if (unlikely(!debug_locks
))
1954 static inline int validate_chain(struct task_struct
*curr
,
1955 struct lockdep_map
*lock
, struct held_lock
*hlock
,
1956 int chain_head
, u64 chain_key
)
1963 * We are building curr_chain_key incrementally, so double-check
1964 * it from scratch, to make sure that it's done correctly:
1966 static void check_chain_key(struct task_struct
*curr
)
1968 #ifdef CONFIG_DEBUG_LOCKDEP
1969 struct held_lock
*hlock
, *prev_hlock
= NULL
;
1973 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
1974 hlock
= curr
->held_locks
+ i
;
1975 if (chain_key
!= hlock
->prev_chain_key
) {
1977 WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1978 curr
->lockdep_depth
, i
,
1979 (unsigned long long)chain_key
,
1980 (unsigned long long)hlock
->prev_chain_key
);
1983 id
= hlock
->class_idx
- 1;
1984 if (DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
))
1987 if (prev_hlock
&& (prev_hlock
->irq_context
!=
1988 hlock
->irq_context
))
1990 chain_key
= iterate_chain_key(chain_key
, id
);
1993 if (chain_key
!= curr
->curr_chain_key
) {
1995 WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1996 curr
->lockdep_depth
, i
,
1997 (unsigned long long)chain_key
,
1998 (unsigned long long)curr
->curr_chain_key
);
2004 print_usage_bug(struct task_struct
*curr
, struct held_lock
*this,
2005 enum lock_usage_bit prev_bit
, enum lock_usage_bit new_bit
)
2007 if (!debug_locks_off_graph_unlock() || debug_locks_silent
)
2010 printk("\n=================================\n");
2011 printk( "[ INFO: inconsistent lock state ]\n");
2012 print_kernel_version();
2013 printk( "---------------------------------\n");
2015 printk("inconsistent {%s} -> {%s} usage.\n",
2016 usage_str
[prev_bit
], usage_str
[new_bit
]);
2018 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
2019 curr
->comm
, task_pid_nr(curr
),
2020 trace_hardirq_context(curr
), hardirq_count() >> HARDIRQ_SHIFT
,
2021 trace_softirq_context(curr
), softirq_count() >> SOFTIRQ_SHIFT
,
2022 trace_hardirqs_enabled(curr
),
2023 trace_softirqs_enabled(curr
));
2026 printk("{%s} state was registered at:\n", usage_str
[prev_bit
]);
2027 print_stack_trace(hlock_class(this)->usage_traces
+ prev_bit
, 1);
2029 print_irqtrace_events(curr
);
2030 printk("\nother info that might help us debug this:\n");
2031 lockdep_print_held_locks(curr
);
2033 printk("\nstack backtrace:\n");
2040 * Print out an error if an invalid bit is set:
2043 valid_state(struct task_struct
*curr
, struct held_lock
*this,
2044 enum lock_usage_bit new_bit
, enum lock_usage_bit bad_bit
)
2046 if (unlikely(hlock_class(this)->usage_mask
& (1 << bad_bit
)))
2047 return print_usage_bug(curr
, this, bad_bit
, new_bit
);
2051 static int mark_lock(struct task_struct
*curr
, struct held_lock
*this,
2052 enum lock_usage_bit new_bit
);
2054 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
2057 * print irq inversion bug:
2060 print_irq_inversion_bug(struct task_struct
*curr
,
2061 struct lock_list
*root
, struct lock_list
*other
,
2062 struct held_lock
*this, int forwards
,
2063 const char *irqclass
)
2065 if (!debug_locks_off_graph_unlock() || debug_locks_silent
)
2068 printk("\n=========================================================\n");
2069 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
2070 print_kernel_version();
2071 printk( "---------------------------------------------------------\n");
2072 printk("%s/%d just changed the state of lock:\n",
2073 curr
->comm
, task_pid_nr(curr
));
2076 printk("but this lock took another, %s-unsafe lock in the past:\n", irqclass
);
2078 printk("but this lock was taken by another, %s-safe lock in the past:\n", irqclass
);
2079 print_lock_name(other
->class);
2080 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2082 printk("\nother info that might help us debug this:\n");
2083 lockdep_print_held_locks(curr
);
2085 printk("\nthe shortest dependencies between 2nd lock and 1st lock:\n");
2086 if (!save_trace(&root
->trace
))
2088 print_shortest_lock_dependencies(other
, root
);
2090 printk("\nstack backtrace:\n");
2097 * Prove that in the forwards-direction subgraph starting at <this>
2098 * there is no lock matching <mask>:
2101 check_usage_forwards(struct task_struct
*curr
, struct held_lock
*this,
2102 enum lock_usage_bit bit
, const char *irqclass
)
2105 struct lock_list root
;
2106 struct lock_list
*uninitialized_var(target_entry
);
2109 root
.class = hlock_class(this);
2110 ret
= find_usage_forwards(&root
, bit
, &target_entry
);
2112 return print_bfs_bug(ret
);
2116 return print_irq_inversion_bug(curr
, &root
, target_entry
,
2121 * Prove that in the backwards-direction subgraph starting at <this>
2122 * there is no lock matching <mask>:
2125 check_usage_backwards(struct task_struct
*curr
, struct held_lock
*this,
2126 enum lock_usage_bit bit
, const char *irqclass
)
2129 struct lock_list root
;
2130 struct lock_list
*uninitialized_var(target_entry
);
2133 root
.class = hlock_class(this);
2134 ret
= find_usage_backwards(&root
, bit
, &target_entry
);
2136 return print_bfs_bug(ret
);
2140 return print_irq_inversion_bug(curr
, &root
, target_entry
,
2144 void print_irqtrace_events(struct task_struct
*curr
)
2146 printk("irq event stamp: %u\n", curr
->irq_events
);
2147 printk("hardirqs last enabled at (%u): ", curr
->hardirq_enable_event
);
2148 print_ip_sym(curr
->hardirq_enable_ip
);
2149 printk("hardirqs last disabled at (%u): ", curr
->hardirq_disable_event
);
2150 print_ip_sym(curr
->hardirq_disable_ip
);
2151 printk("softirqs last enabled at (%u): ", curr
->softirq_enable_event
);
2152 print_ip_sym(curr
->softirq_enable_ip
);
2153 printk("softirqs last disabled at (%u): ", curr
->softirq_disable_event
);
2154 print_ip_sym(curr
->softirq_disable_ip
);
2157 static int HARDIRQ_verbose(struct lock_class
*class)
2160 return class_filter(class);
2165 static int SOFTIRQ_verbose(struct lock_class
*class)
2168 return class_filter(class);
2173 static int RECLAIM_FS_verbose(struct lock_class
*class)
2176 return class_filter(class);
2181 #define STRICT_READ_CHECKS 1
2183 static int (*state_verbose_f
[])(struct lock_class
*class) = {
2184 #define LOCKDEP_STATE(__STATE) \
2186 #include "lockdep_states.h"
2187 #undef LOCKDEP_STATE
2190 static inline int state_verbose(enum lock_usage_bit bit
,
2191 struct lock_class
*class)
2193 return state_verbose_f
[bit
>> 2](class);
2196 typedef int (*check_usage_f
)(struct task_struct
*, struct held_lock
*,
2197 enum lock_usage_bit bit
, const char *name
);
2200 mark_lock_irq(struct task_struct
*curr
, struct held_lock
*this,
2201 enum lock_usage_bit new_bit
)
2203 int excl_bit
= exclusive_bit(new_bit
);
2204 int read
= new_bit
& 1;
2205 int dir
= new_bit
& 2;
2208 * mark USED_IN has to look forwards -- to ensure no dependency
2209 * has ENABLED state, which would allow recursion deadlocks.
2211 * mark ENABLED has to look backwards -- to ensure no dependee
2212 * has USED_IN state, which, again, would allow recursion deadlocks.
2214 check_usage_f usage
= dir
?
2215 check_usage_backwards
: check_usage_forwards
;
2218 * Validate that this particular lock does not have conflicting
2221 if (!valid_state(curr
, this, new_bit
, excl_bit
))
2225 * Validate that the lock dependencies don't have conflicting usage
2228 if ((!read
|| !dir
|| STRICT_READ_CHECKS
) &&
2229 !usage(curr
, this, excl_bit
, state_name(new_bit
& ~1)))
2233 * Check for read in write conflicts
2236 if (!valid_state(curr
, this, new_bit
, excl_bit
+ 1))
2239 if (STRICT_READ_CHECKS
&&
2240 !usage(curr
, this, excl_bit
+ 1,
2241 state_name(new_bit
+ 1)))
2245 if (state_verbose(new_bit
, hlock_class(this)))
2252 #define LOCKDEP_STATE(__STATE) __STATE,
2253 #include "lockdep_states.h"
2254 #undef LOCKDEP_STATE
2258 * Mark all held locks with a usage bit:
2261 mark_held_locks(struct task_struct
*curr
, enum mark_type mark
)
2263 enum lock_usage_bit usage_bit
;
2264 struct held_lock
*hlock
;
2267 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
2268 hlock
= curr
->held_locks
+ i
;
2270 usage_bit
= 2 + (mark
<< 2); /* ENABLED */
2272 usage_bit
+= 1; /* READ */
2274 BUG_ON(usage_bit
>= LOCK_USAGE_STATES
);
2276 if (!mark_lock(curr
, hlock
, usage_bit
))
2284 * Debugging helper: via this flag we know that we are in
2285 * 'early bootup code', and will warn about any invalid irqs-on event:
2287 static int early_boot_irqs_enabled
;
2289 void early_boot_irqs_off(void)
2291 early_boot_irqs_enabled
= 0;
2294 void early_boot_irqs_on(void)
2296 early_boot_irqs_enabled
= 1;
2300 * Hardirqs will be enabled:
2302 void trace_hardirqs_on_caller(unsigned long ip
)
2304 struct task_struct
*curr
= current
;
2306 time_hardirqs_on(CALLER_ADDR0
, ip
);
2308 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
2311 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled
)))
2314 if (unlikely(curr
->hardirqs_enabled
)) {
2315 debug_atomic_inc(&redundant_hardirqs_on
);
2318 /* we'll do an OFF -> ON transition: */
2319 curr
->hardirqs_enabled
= 1;
2321 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2323 if (DEBUG_LOCKS_WARN_ON(current
->hardirq_context
))
2326 * We are going to turn hardirqs on, so set the
2327 * usage bit for all held locks:
2329 if (!mark_held_locks(curr
, HARDIRQ
))
2332 * If we have softirqs enabled, then set the usage
2333 * bit for all held locks. (disabled hardirqs prevented
2334 * this bit from being set before)
2336 if (curr
->softirqs_enabled
)
2337 if (!mark_held_locks(curr
, SOFTIRQ
))
2340 curr
->hardirq_enable_ip
= ip
;
2341 curr
->hardirq_enable_event
= ++curr
->irq_events
;
2342 debug_atomic_inc(&hardirqs_on_events
);
2344 EXPORT_SYMBOL(trace_hardirqs_on_caller
);
2346 void trace_hardirqs_on(void)
2348 trace_hardirqs_on_caller(CALLER_ADDR0
);
2350 EXPORT_SYMBOL(trace_hardirqs_on
);
2353 * Hardirqs were disabled:
2355 void trace_hardirqs_off_caller(unsigned long ip
)
2357 struct task_struct
*curr
= current
;
2359 time_hardirqs_off(CALLER_ADDR0
, ip
);
2361 if (unlikely(!debug_locks
|| current
->lockdep_recursion
))
2364 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2367 if (curr
->hardirqs_enabled
) {
2369 * We have done an ON -> OFF transition:
2371 curr
->hardirqs_enabled
= 0;
2372 curr
->hardirq_disable_ip
= ip
;
2373 curr
->hardirq_disable_event
= ++curr
->irq_events
;
2374 debug_atomic_inc(&hardirqs_off_events
);
2376 debug_atomic_inc(&redundant_hardirqs_off
);
2378 EXPORT_SYMBOL(trace_hardirqs_off_caller
);
2380 void trace_hardirqs_off(void)
2382 trace_hardirqs_off_caller(CALLER_ADDR0
);
2384 EXPORT_SYMBOL(trace_hardirqs_off
);
2387 * Softirqs will be enabled:
2389 void trace_softirqs_on(unsigned long ip
)
2391 struct task_struct
*curr
= current
;
2393 if (unlikely(!debug_locks
))
2396 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2399 if (curr
->softirqs_enabled
) {
2400 debug_atomic_inc(&redundant_softirqs_on
);
2405 * We'll do an OFF -> ON transition:
2407 curr
->softirqs_enabled
= 1;
2408 curr
->softirq_enable_ip
= ip
;
2409 curr
->softirq_enable_event
= ++curr
->irq_events
;
2410 debug_atomic_inc(&softirqs_on_events
);
2412 * We are going to turn softirqs on, so set the
2413 * usage bit for all held locks, if hardirqs are
2416 if (curr
->hardirqs_enabled
)
2417 mark_held_locks(curr
, SOFTIRQ
);
2421 * Softirqs were disabled:
2423 void trace_softirqs_off(unsigned long ip
)
2425 struct task_struct
*curr
= current
;
2427 if (unlikely(!debug_locks
))
2430 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2433 if (curr
->softirqs_enabled
) {
2435 * We have done an ON -> OFF transition:
2437 curr
->softirqs_enabled
= 0;
2438 curr
->softirq_disable_ip
= ip
;
2439 curr
->softirq_disable_event
= ++curr
->irq_events
;
2440 debug_atomic_inc(&softirqs_off_events
);
2441 DEBUG_LOCKS_WARN_ON(!softirq_count());
2443 debug_atomic_inc(&redundant_softirqs_off
);
2446 static void __lockdep_trace_alloc(gfp_t gfp_mask
, unsigned long flags
)
2448 struct task_struct
*curr
= current
;
2450 if (unlikely(!debug_locks
))
2453 /* no reclaim without waiting on it */
2454 if (!(gfp_mask
& __GFP_WAIT
))
2457 /* this guy won't enter reclaim */
2458 if ((curr
->flags
& PF_MEMALLOC
) && !(gfp_mask
& __GFP_NOMEMALLOC
))
2461 /* We're only interested __GFP_FS allocations for now */
2462 if (!(gfp_mask
& __GFP_FS
))
2465 if (DEBUG_LOCKS_WARN_ON(irqs_disabled_flags(flags
)))
2468 mark_held_locks(curr
, RECLAIM_FS
);
2471 static void check_flags(unsigned long flags
);
2473 void lockdep_trace_alloc(gfp_t gfp_mask
)
2475 unsigned long flags
;
2477 if (unlikely(current
->lockdep_recursion
))
2480 raw_local_irq_save(flags
);
2482 current
->lockdep_recursion
= 1;
2483 __lockdep_trace_alloc(gfp_mask
, flags
);
2484 current
->lockdep_recursion
= 0;
2485 raw_local_irq_restore(flags
);
2488 static int mark_irqflags(struct task_struct
*curr
, struct held_lock
*hlock
)
2491 * If non-trylock use in a hardirq or softirq context, then
2492 * mark the lock as used in these contexts:
2494 if (!hlock
->trylock
) {
2496 if (curr
->hardirq_context
)
2497 if (!mark_lock(curr
, hlock
,
2498 LOCK_USED_IN_HARDIRQ_READ
))
2500 if (curr
->softirq_context
)
2501 if (!mark_lock(curr
, hlock
,
2502 LOCK_USED_IN_SOFTIRQ_READ
))
2505 if (curr
->hardirq_context
)
2506 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_HARDIRQ
))
2508 if (curr
->softirq_context
)
2509 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_SOFTIRQ
))
2513 if (!hlock
->hardirqs_off
) {
2515 if (!mark_lock(curr
, hlock
,
2516 LOCK_ENABLED_HARDIRQ_READ
))
2518 if (curr
->softirqs_enabled
)
2519 if (!mark_lock(curr
, hlock
,
2520 LOCK_ENABLED_SOFTIRQ_READ
))
2523 if (!mark_lock(curr
, hlock
,
2524 LOCK_ENABLED_HARDIRQ
))
2526 if (curr
->softirqs_enabled
)
2527 if (!mark_lock(curr
, hlock
,
2528 LOCK_ENABLED_SOFTIRQ
))
2534 * We reuse the irq context infrastructure more broadly as a general
2535 * context checking code. This tests GFP_FS recursion (a lock taken
2536 * during reclaim for a GFP_FS allocation is held over a GFP_FS
2539 if (!hlock
->trylock
&& (curr
->lockdep_reclaim_gfp
& __GFP_FS
)) {
2541 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_RECLAIM_FS_READ
))
2544 if (!mark_lock(curr
, hlock
, LOCK_USED_IN_RECLAIM_FS
))
2552 static int separate_irq_context(struct task_struct
*curr
,
2553 struct held_lock
*hlock
)
2555 unsigned int depth
= curr
->lockdep_depth
;
2558 * Keep track of points where we cross into an interrupt context:
2560 hlock
->irq_context
= 2*(curr
->hardirq_context
? 1 : 0) +
2561 curr
->softirq_context
;
2563 struct held_lock
*prev_hlock
;
2565 prev_hlock
= curr
->held_locks
+ depth
-1;
2567 * If we cross into another context, reset the
2568 * hash key (this also prevents the checking and the
2569 * adding of the dependency to 'prev'):
2571 if (prev_hlock
->irq_context
!= hlock
->irq_context
)
2580 int mark_lock_irq(struct task_struct
*curr
, struct held_lock
*this,
2581 enum lock_usage_bit new_bit
)
2587 static inline int mark_irqflags(struct task_struct
*curr
,
2588 struct held_lock
*hlock
)
2593 static inline int separate_irq_context(struct task_struct
*curr
,
2594 struct held_lock
*hlock
)
2599 void lockdep_trace_alloc(gfp_t gfp_mask
)
2606 * Mark a lock with a usage bit, and validate the state transition:
2608 static int mark_lock(struct task_struct
*curr
, struct held_lock
*this,
2609 enum lock_usage_bit new_bit
)
2611 unsigned int new_mask
= 1 << new_bit
, ret
= 1;
2614 * If already set then do not dirty the cacheline,
2615 * nor do any checks:
2617 if (likely(hlock_class(this)->usage_mask
& new_mask
))
2623 * Make sure we didnt race:
2625 if (unlikely(hlock_class(this)->usage_mask
& new_mask
)) {
2630 hlock_class(this)->usage_mask
|= new_mask
;
2632 if (!save_trace(hlock_class(this)->usage_traces
+ new_bit
))
2636 #define LOCKDEP_STATE(__STATE) \
2637 case LOCK_USED_IN_##__STATE: \
2638 case LOCK_USED_IN_##__STATE##_READ: \
2639 case LOCK_ENABLED_##__STATE: \
2640 case LOCK_ENABLED_##__STATE##_READ:
2641 #include "lockdep_states.h"
2642 #undef LOCKDEP_STATE
2643 ret
= mark_lock_irq(curr
, this, new_bit
);
2648 debug_atomic_dec(&nr_unused_locks
);
2651 if (!debug_locks_off_graph_unlock())
2660 * We must printk outside of the graph_lock:
2663 printk("\nmarked lock as {%s}:\n", usage_str
[new_bit
]);
2665 print_irqtrace_events(curr
);
2673 * Initialize a lock instance's lock-class mapping info:
2675 void lockdep_init_map(struct lockdep_map
*lock
, const char *name
,
2676 struct lock_class_key
*key
, int subclass
)
2678 lock
->class_cache
= NULL
;
2679 #ifdef CONFIG_LOCK_STAT
2680 lock
->cpu
= raw_smp_processor_id();
2683 if (DEBUG_LOCKS_WARN_ON(!name
)) {
2684 lock
->name
= "NULL";
2690 if (DEBUG_LOCKS_WARN_ON(!key
))
2693 * Sanity check, the lock-class key must be persistent:
2695 if (!static_obj(key
)) {
2696 printk("BUG: key %p not in .data!\n", key
);
2697 DEBUG_LOCKS_WARN_ON(1);
2702 if (unlikely(!debug_locks
))
2706 register_lock_class(lock
, subclass
, 1);
2708 EXPORT_SYMBOL_GPL(lockdep_init_map
);
2711 * This gets called for every mutex_lock*()/spin_lock*() operation.
2712 * We maintain the dependency maps and validate the locking attempt:
2714 static int __lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
2715 int trylock
, int read
, int check
, int hardirqs_off
,
2716 struct lockdep_map
*nest_lock
, unsigned long ip
,
2719 struct task_struct
*curr
= current
;
2720 struct lock_class
*class = NULL
;
2721 struct held_lock
*hlock
;
2722 unsigned int depth
, id
;
2730 if (unlikely(!debug_locks
))
2733 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2736 if (unlikely(subclass
>= MAX_LOCKDEP_SUBCLASSES
)) {
2738 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2739 printk("turning off the locking correctness validator.\n");
2745 class = lock
->class_cache
;
2747 * Not cached yet or subclass?
2749 if (unlikely(!class)) {
2750 class = register_lock_class(lock
, subclass
, 0);
2754 debug_atomic_inc((atomic_t
*)&class->ops
);
2755 if (very_verbose(class)) {
2756 printk("\nacquire class [%p] %s", class->key
, class->name
);
2757 if (class->name_version
> 1)
2758 printk("#%d", class->name_version
);
2764 * Add the lock to the list of currently held locks.
2765 * (we dont increase the depth just yet, up until the
2766 * dependency checks are done)
2768 depth
= curr
->lockdep_depth
;
2769 if (DEBUG_LOCKS_WARN_ON(depth
>= MAX_LOCK_DEPTH
))
2772 class_idx
= class - lock_classes
+ 1;
2775 hlock
= curr
->held_locks
+ depth
- 1;
2776 if (hlock
->class_idx
== class_idx
&& nest_lock
) {
2777 if (hlock
->references
)
2778 hlock
->references
++;
2780 hlock
->references
= 2;
2786 hlock
= curr
->held_locks
+ depth
;
2787 if (DEBUG_LOCKS_WARN_ON(!class))
2789 hlock
->class_idx
= class_idx
;
2790 hlock
->acquire_ip
= ip
;
2791 hlock
->instance
= lock
;
2792 hlock
->nest_lock
= nest_lock
;
2793 hlock
->trylock
= trylock
;
2795 hlock
->check
= check
;
2796 hlock
->hardirqs_off
= !!hardirqs_off
;
2797 hlock
->references
= references
;
2798 #ifdef CONFIG_LOCK_STAT
2799 hlock
->waittime_stamp
= 0;
2800 hlock
->holdtime_stamp
= lockstat_clock();
2803 if (check
== 2 && !mark_irqflags(curr
, hlock
))
2806 /* mark it as used: */
2807 if (!mark_lock(curr
, hlock
, LOCK_USED
))
2811 * Calculate the chain hash: it's the combined hash of all the
2812 * lock keys along the dependency chain. We save the hash value
2813 * at every step so that we can get the current hash easily
2814 * after unlock. The chain hash is then used to cache dependency
2817 * The 'key ID' is what is the most compact key value to drive
2818 * the hash, not class->key.
2820 id
= class - lock_classes
;
2821 if (DEBUG_LOCKS_WARN_ON(id
>= MAX_LOCKDEP_KEYS
))
2824 chain_key
= curr
->curr_chain_key
;
2826 if (DEBUG_LOCKS_WARN_ON(chain_key
!= 0))
2831 hlock
->prev_chain_key
= chain_key
;
2832 if (separate_irq_context(curr
, hlock
)) {
2836 chain_key
= iterate_chain_key(chain_key
, id
);
2838 if (!validate_chain(curr
, lock
, hlock
, chain_head
, chain_key
))
2841 curr
->curr_chain_key
= chain_key
;
2842 curr
->lockdep_depth
++;
2843 check_chain_key(curr
);
2844 #ifdef CONFIG_DEBUG_LOCKDEP
2845 if (unlikely(!debug_locks
))
2848 if (unlikely(curr
->lockdep_depth
>= MAX_LOCK_DEPTH
)) {
2850 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2851 printk("turning off the locking correctness validator.\n");
2856 if (unlikely(curr
->lockdep_depth
> max_lockdep_depth
))
2857 max_lockdep_depth
= curr
->lockdep_depth
;
2863 print_unlock_inbalance_bug(struct task_struct
*curr
, struct lockdep_map
*lock
,
2866 if (!debug_locks_off())
2868 if (debug_locks_silent
)
2871 printk("\n=====================================\n");
2872 printk( "[ BUG: bad unlock balance detected! ]\n");
2873 printk( "-------------------------------------\n");
2874 printk("%s/%d is trying to release lock (",
2875 curr
->comm
, task_pid_nr(curr
));
2876 print_lockdep_cache(lock
);
2879 printk("but there are no more locks to release!\n");
2880 printk("\nother info that might help us debug this:\n");
2881 lockdep_print_held_locks(curr
);
2883 printk("\nstack backtrace:\n");
2890 * Common debugging checks for both nested and non-nested unlock:
2892 static int check_unlock(struct task_struct
*curr
, struct lockdep_map
*lock
,
2895 if (unlikely(!debug_locks
))
2897 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2900 if (curr
->lockdep_depth
<= 0)
2901 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2906 static int match_held_lock(struct held_lock
*hlock
, struct lockdep_map
*lock
)
2908 if (hlock
->instance
== lock
)
2911 if (hlock
->references
) {
2912 struct lock_class
*class = lock
->class_cache
;
2915 class = look_up_lock_class(lock
, 0);
2917 if (DEBUG_LOCKS_WARN_ON(!class))
2920 if (DEBUG_LOCKS_WARN_ON(!hlock
->nest_lock
))
2923 if (hlock
->class_idx
== class - lock_classes
+ 1)
2931 __lock_set_class(struct lockdep_map
*lock
, const char *name
,
2932 struct lock_class_key
*key
, unsigned int subclass
,
2935 struct task_struct
*curr
= current
;
2936 struct held_lock
*hlock
, *prev_hlock
;
2937 struct lock_class
*class;
2941 depth
= curr
->lockdep_depth
;
2942 if (DEBUG_LOCKS_WARN_ON(!depth
))
2946 for (i
= depth
-1; i
>= 0; i
--) {
2947 hlock
= curr
->held_locks
+ i
;
2949 * We must not cross into another context:
2951 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
2953 if (match_held_lock(hlock
, lock
))
2957 return print_unlock_inbalance_bug(curr
, lock
, ip
);
2960 lockdep_init_map(lock
, name
, key
, 0);
2961 class = register_lock_class(lock
, subclass
, 0);
2962 hlock
->class_idx
= class - lock_classes
+ 1;
2964 curr
->lockdep_depth
= i
;
2965 curr
->curr_chain_key
= hlock
->prev_chain_key
;
2967 for (; i
< depth
; i
++) {
2968 hlock
= curr
->held_locks
+ i
;
2969 if (!__lock_acquire(hlock
->instance
,
2970 hlock_class(hlock
)->subclass
, hlock
->trylock
,
2971 hlock
->read
, hlock
->check
, hlock
->hardirqs_off
,
2972 hlock
->nest_lock
, hlock
->acquire_ip
,
2977 if (DEBUG_LOCKS_WARN_ON(curr
->lockdep_depth
!= depth
))
2983 * Remove the lock to the list of currently held locks in a
2984 * potentially non-nested (out of order) manner. This is a
2985 * relatively rare operation, as all the unlock APIs default
2986 * to nested mode (which uses lock_release()):
2989 lock_release_non_nested(struct task_struct
*curr
,
2990 struct lockdep_map
*lock
, unsigned long ip
)
2992 struct held_lock
*hlock
, *prev_hlock
;
2997 * Check whether the lock exists in the current stack
3000 depth
= curr
->lockdep_depth
;
3001 if (DEBUG_LOCKS_WARN_ON(!depth
))
3005 for (i
= depth
-1; i
>= 0; i
--) {
3006 hlock
= curr
->held_locks
+ i
;
3008 * We must not cross into another context:
3010 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
3012 if (match_held_lock(hlock
, lock
))
3016 return print_unlock_inbalance_bug(curr
, lock
, ip
);
3019 if (hlock
->instance
== lock
)
3020 lock_release_holdtime(hlock
);
3022 if (hlock
->references
) {
3023 hlock
->references
--;
3024 if (hlock
->references
) {
3026 * We had, and after removing one, still have
3027 * references, the current lock stack is still
3028 * valid. We're done!
3035 * We have the right lock to unlock, 'hlock' points to it.
3036 * Now we remove it from the stack, and add back the other
3037 * entries (if any), recalculating the hash along the way:
3040 curr
->lockdep_depth
= i
;
3041 curr
->curr_chain_key
= hlock
->prev_chain_key
;
3043 for (i
++; i
< depth
; i
++) {
3044 hlock
= curr
->held_locks
+ i
;
3045 if (!__lock_acquire(hlock
->instance
,
3046 hlock_class(hlock
)->subclass
, hlock
->trylock
,
3047 hlock
->read
, hlock
->check
, hlock
->hardirqs_off
,
3048 hlock
->nest_lock
, hlock
->acquire_ip
,
3053 if (DEBUG_LOCKS_WARN_ON(curr
->lockdep_depth
!= depth
- 1))
3059 * Remove the lock to the list of currently held locks - this gets
3060 * called on mutex_unlock()/spin_unlock*() (or on a failed
3061 * mutex_lock_interruptible()). This is done for unlocks that nest
3062 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3064 static int lock_release_nested(struct task_struct
*curr
,
3065 struct lockdep_map
*lock
, unsigned long ip
)
3067 struct held_lock
*hlock
;
3071 * Pop off the top of the lock stack:
3073 depth
= curr
->lockdep_depth
- 1;
3074 hlock
= curr
->held_locks
+ depth
;
3077 * Is the unlock non-nested:
3079 if (hlock
->instance
!= lock
|| hlock
->references
)
3080 return lock_release_non_nested(curr
, lock
, ip
);
3081 curr
->lockdep_depth
--;
3083 if (DEBUG_LOCKS_WARN_ON(!depth
&& (hlock
->prev_chain_key
!= 0)))
3086 curr
->curr_chain_key
= hlock
->prev_chain_key
;
3088 lock_release_holdtime(hlock
);
3090 #ifdef CONFIG_DEBUG_LOCKDEP
3091 hlock
->prev_chain_key
= 0;
3092 hlock
->class_idx
= 0;
3093 hlock
->acquire_ip
= 0;
3094 hlock
->irq_context
= 0;
3100 * Remove the lock to the list of currently held locks - this gets
3101 * called on mutex_unlock()/spin_unlock*() (or on a failed
3102 * mutex_lock_interruptible()). This is done for unlocks that nest
3103 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3106 __lock_release(struct lockdep_map
*lock
, int nested
, unsigned long ip
)
3108 struct task_struct
*curr
= current
;
3110 if (!check_unlock(curr
, lock
, ip
))
3114 if (!lock_release_nested(curr
, lock
, ip
))
3117 if (!lock_release_non_nested(curr
, lock
, ip
))
3121 check_chain_key(curr
);
3124 static int __lock_is_held(struct lockdep_map
*lock
)
3126 struct task_struct
*curr
= current
;
3129 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
3130 struct held_lock
*hlock
= curr
->held_locks
+ i
;
3132 if (match_held_lock(hlock
, lock
))
3140 * Check whether we follow the irq-flags state precisely:
3142 static void check_flags(unsigned long flags
)
3144 #if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3145 defined(CONFIG_TRACE_IRQFLAGS)
3149 if (irqs_disabled_flags(flags
)) {
3150 if (DEBUG_LOCKS_WARN_ON(current
->hardirqs_enabled
)) {
3151 printk("possible reason: unannotated irqs-off.\n");
3154 if (DEBUG_LOCKS_WARN_ON(!current
->hardirqs_enabled
)) {
3155 printk("possible reason: unannotated irqs-on.\n");
3160 * We dont accurately track softirq state in e.g.
3161 * hardirq contexts (such as on 4KSTACKS), so only
3162 * check if not in hardirq contexts:
3164 if (!hardirq_count()) {
3165 if (softirq_count())
3166 DEBUG_LOCKS_WARN_ON(current
->softirqs_enabled
);
3168 DEBUG_LOCKS_WARN_ON(!current
->softirqs_enabled
);
3172 print_irqtrace_events(current
);
3176 void lock_set_class(struct lockdep_map
*lock
, const char *name
,
3177 struct lock_class_key
*key
, unsigned int subclass
,
3180 unsigned long flags
;
3182 if (unlikely(current
->lockdep_recursion
))
3185 raw_local_irq_save(flags
);
3186 current
->lockdep_recursion
= 1;
3188 if (__lock_set_class(lock
, name
, key
, subclass
, ip
))
3189 check_chain_key(current
);
3190 current
->lockdep_recursion
= 0;
3191 raw_local_irq_restore(flags
);
3193 EXPORT_SYMBOL_GPL(lock_set_class
);
3196 * We are not always called with irqs disabled - do that here,
3197 * and also avoid lockdep recursion:
3199 void lock_acquire(struct lockdep_map
*lock
, unsigned int subclass
,
3200 int trylock
, int read
, int check
,
3201 struct lockdep_map
*nest_lock
, unsigned long ip
)
3203 unsigned long flags
;
3205 trace_lock_acquire(lock
, subclass
, trylock
, read
, check
, nest_lock
, ip
);
3207 if (unlikely(current
->lockdep_recursion
))
3210 raw_local_irq_save(flags
);
3213 current
->lockdep_recursion
= 1;
3214 __lock_acquire(lock
, subclass
, trylock
, read
, check
,
3215 irqs_disabled_flags(flags
), nest_lock
, ip
, 0);
3216 current
->lockdep_recursion
= 0;
3217 raw_local_irq_restore(flags
);
3219 EXPORT_SYMBOL_GPL(lock_acquire
);
3221 void lock_release(struct lockdep_map
*lock
, int nested
,
3224 unsigned long flags
;
3226 trace_lock_release(lock
, nested
, ip
);
3228 if (unlikely(current
->lockdep_recursion
))
3231 raw_local_irq_save(flags
);
3233 current
->lockdep_recursion
= 1;
3234 __lock_release(lock
, nested
, ip
);
3235 current
->lockdep_recursion
= 0;
3236 raw_local_irq_restore(flags
);
3238 EXPORT_SYMBOL_GPL(lock_release
);
3240 int lock_is_held(struct lockdep_map
*lock
)
3242 unsigned long flags
;
3245 if (unlikely(current
->lockdep_recursion
))
3248 raw_local_irq_save(flags
);
3251 current
->lockdep_recursion
= 1;
3252 ret
= __lock_is_held(lock
);
3253 current
->lockdep_recursion
= 0;
3254 raw_local_irq_restore(flags
);
3258 EXPORT_SYMBOL_GPL(lock_is_held
);
3260 void lockdep_set_current_reclaim_state(gfp_t gfp_mask
)
3262 current
->lockdep_reclaim_gfp
= gfp_mask
;
3265 void lockdep_clear_current_reclaim_state(void)
3267 current
->lockdep_reclaim_gfp
= 0;
3270 #ifdef CONFIG_LOCK_STAT
3272 print_lock_contention_bug(struct task_struct
*curr
, struct lockdep_map
*lock
,
3275 if (!debug_locks_off())
3277 if (debug_locks_silent
)
3280 printk("\n=================================\n");
3281 printk( "[ BUG: bad contention detected! ]\n");
3282 printk( "---------------------------------\n");
3283 printk("%s/%d is trying to contend lock (",
3284 curr
->comm
, task_pid_nr(curr
));
3285 print_lockdep_cache(lock
);
3288 printk("but there are no locks held!\n");
3289 printk("\nother info that might help us debug this:\n");
3290 lockdep_print_held_locks(curr
);
3292 printk("\nstack backtrace:\n");
3299 __lock_contended(struct lockdep_map
*lock
, unsigned long ip
)
3301 struct task_struct
*curr
= current
;
3302 struct held_lock
*hlock
, *prev_hlock
;
3303 struct lock_class_stats
*stats
;
3305 int i
, contention_point
, contending_point
;
3307 depth
= curr
->lockdep_depth
;
3308 if (DEBUG_LOCKS_WARN_ON(!depth
))
3312 for (i
= depth
-1; i
>= 0; i
--) {
3313 hlock
= curr
->held_locks
+ i
;
3315 * We must not cross into another context:
3317 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
3319 if (match_held_lock(hlock
, lock
))
3323 print_lock_contention_bug(curr
, lock
, ip
);
3327 if (hlock
->instance
!= lock
)
3330 hlock
->waittime_stamp
= lockstat_clock();
3332 contention_point
= lock_point(hlock_class(hlock
)->contention_point
, ip
);
3333 contending_point
= lock_point(hlock_class(hlock
)->contending_point
,
3336 stats
= get_lock_stats(hlock_class(hlock
));
3337 if (contention_point
< LOCKSTAT_POINTS
)
3338 stats
->contention_point
[contention_point
]++;
3339 if (contending_point
< LOCKSTAT_POINTS
)
3340 stats
->contending_point
[contending_point
]++;
3341 if (lock
->cpu
!= smp_processor_id())
3342 stats
->bounces
[bounce_contended
+ !!hlock
->read
]++;
3343 put_lock_stats(stats
);
3347 __lock_acquired(struct lockdep_map
*lock
, unsigned long ip
)
3349 struct task_struct
*curr
= current
;
3350 struct held_lock
*hlock
, *prev_hlock
;
3351 struct lock_class_stats
*stats
;
3353 u64 now
, waittime
= 0;
3356 depth
= curr
->lockdep_depth
;
3357 if (DEBUG_LOCKS_WARN_ON(!depth
))
3361 for (i
= depth
-1; i
>= 0; i
--) {
3362 hlock
= curr
->held_locks
+ i
;
3364 * We must not cross into another context:
3366 if (prev_hlock
&& prev_hlock
->irq_context
!= hlock
->irq_context
)
3368 if (match_held_lock(hlock
, lock
))
3372 print_lock_contention_bug(curr
, lock
, _RET_IP_
);
3376 if (hlock
->instance
!= lock
)
3379 cpu
= smp_processor_id();
3380 if (hlock
->waittime_stamp
) {
3381 now
= lockstat_clock();
3382 waittime
= now
- hlock
->waittime_stamp
;
3383 hlock
->holdtime_stamp
= now
;
3386 trace_lock_acquired(lock
, ip
, waittime
);
3388 stats
= get_lock_stats(hlock_class(hlock
));
3391 lock_time_inc(&stats
->read_waittime
, waittime
);
3393 lock_time_inc(&stats
->write_waittime
, waittime
);
3395 if (lock
->cpu
!= cpu
)
3396 stats
->bounces
[bounce_acquired
+ !!hlock
->read
]++;
3397 put_lock_stats(stats
);
3403 void lock_contended(struct lockdep_map
*lock
, unsigned long ip
)
3405 unsigned long flags
;
3407 trace_lock_contended(lock
, ip
);
3409 if (unlikely(!lock_stat
))
3412 if (unlikely(current
->lockdep_recursion
))
3415 raw_local_irq_save(flags
);
3417 current
->lockdep_recursion
= 1;
3418 __lock_contended(lock
, ip
);
3419 current
->lockdep_recursion
= 0;
3420 raw_local_irq_restore(flags
);
3422 EXPORT_SYMBOL_GPL(lock_contended
);
3424 void lock_acquired(struct lockdep_map
*lock
, unsigned long ip
)
3426 unsigned long flags
;
3428 if (unlikely(!lock_stat
))
3431 if (unlikely(current
->lockdep_recursion
))
3434 raw_local_irq_save(flags
);
3436 current
->lockdep_recursion
= 1;
3437 __lock_acquired(lock
, ip
);
3438 current
->lockdep_recursion
= 0;
3439 raw_local_irq_restore(flags
);
3441 EXPORT_SYMBOL_GPL(lock_acquired
);
3445 * Used by the testsuite, sanitize the validator state
3446 * after a simulated failure:
3449 void lockdep_reset(void)
3451 unsigned long flags
;
3454 raw_local_irq_save(flags
);
3455 current
->curr_chain_key
= 0;
3456 current
->lockdep_depth
= 0;
3457 current
->lockdep_recursion
= 0;
3458 memset(current
->held_locks
, 0, MAX_LOCK_DEPTH
*sizeof(struct held_lock
));
3459 nr_hardirq_chains
= 0;
3460 nr_softirq_chains
= 0;
3461 nr_process_chains
= 0;
3463 for (i
= 0; i
< CHAINHASH_SIZE
; i
++)
3464 INIT_LIST_HEAD(chainhash_table
+ i
);
3465 raw_local_irq_restore(flags
);
3468 static void zap_class(struct lock_class
*class)
3473 * Remove all dependencies this lock is
3476 for (i
= 0; i
< nr_list_entries
; i
++) {
3477 if (list_entries
[i
].class == class)
3478 list_del_rcu(&list_entries
[i
].entry
);
3481 * Unhash the class and remove it from the all_lock_classes list:
3483 list_del_rcu(&class->hash_entry
);
3484 list_del_rcu(&class->lock_entry
);
3489 static inline int within(const void *addr
, void *start
, unsigned long size
)
3491 return addr
>= start
&& addr
< start
+ size
;
3494 void lockdep_free_key_range(void *start
, unsigned long size
)
3496 struct lock_class
*class, *next
;
3497 struct list_head
*head
;
3498 unsigned long flags
;
3502 raw_local_irq_save(flags
);
3503 locked
= graph_lock();
3506 * Unhash all classes that were created by this module:
3508 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
3509 head
= classhash_table
+ i
;
3510 if (list_empty(head
))
3512 list_for_each_entry_safe(class, next
, head
, hash_entry
) {
3513 if (within(class->key
, start
, size
))
3515 else if (within(class->name
, start
, size
))
3522 raw_local_irq_restore(flags
);
3525 void lockdep_reset_lock(struct lockdep_map
*lock
)
3527 struct lock_class
*class, *next
;
3528 struct list_head
*head
;
3529 unsigned long flags
;
3533 raw_local_irq_save(flags
);
3536 * Remove all classes this lock might have:
3538 for (j
= 0; j
< MAX_LOCKDEP_SUBCLASSES
; j
++) {
3540 * If the class exists we look it up and zap it:
3542 class = look_up_lock_class(lock
, j
);
3547 * Debug check: in the end all mapped classes should
3550 locked
= graph_lock();
3551 for (i
= 0; i
< CLASSHASH_SIZE
; i
++) {
3552 head
= classhash_table
+ i
;
3553 if (list_empty(head
))
3555 list_for_each_entry_safe(class, next
, head
, hash_entry
) {
3556 if (unlikely(class == lock
->class_cache
)) {
3557 if (debug_locks_off_graph_unlock())
3567 raw_local_irq_restore(flags
);
3570 void lockdep_init(void)
3575 * Some architectures have their own start_kernel()
3576 * code which calls lockdep_init(), while we also
3577 * call lockdep_init() from the start_kernel() itself,
3578 * and we want to initialize the hashes only once:
3580 if (lockdep_initialized
)
3583 for (i
= 0; i
< CLASSHASH_SIZE
; i
++)
3584 INIT_LIST_HEAD(classhash_table
+ i
);
3586 for (i
= 0; i
< CHAINHASH_SIZE
; i
++)
3587 INIT_LIST_HEAD(chainhash_table
+ i
);
3589 lockdep_initialized
= 1;
3592 void __init
lockdep_info(void)
3594 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3596 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES
);
3597 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH
);
3598 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS
);
3599 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE
);
3600 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES
);
3601 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS
);
3602 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE
);
3604 printk(" memory used by lock dependency info: %lu kB\n",
3605 (sizeof(struct lock_class
) * MAX_LOCKDEP_KEYS
+
3606 sizeof(struct list_head
) * CLASSHASH_SIZE
+
3607 sizeof(struct lock_list
) * MAX_LOCKDEP_ENTRIES
+
3608 sizeof(struct lock_chain
) * MAX_LOCKDEP_CHAINS
+
3609 sizeof(struct list_head
) * CHAINHASH_SIZE
3610 #ifdef CONFIG_PROVE_LOCKING
3611 + sizeof(struct circular_queue
)
3616 printk(" per task-struct memory footprint: %lu bytes\n",
3617 sizeof(struct held_lock
) * MAX_LOCK_DEPTH
);
3619 #ifdef CONFIG_DEBUG_LOCKDEP
3620 if (lockdep_init_error
) {
3621 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3622 printk("Call stack leading to lockdep invocation was:\n");
3623 print_stack_trace(&lockdep_init_trace
, 0);
3629 print_freed_lock_bug(struct task_struct
*curr
, const void *mem_from
,
3630 const void *mem_to
, struct held_lock
*hlock
)
3632 if (!debug_locks_off())
3634 if (debug_locks_silent
)
3637 printk("\n=========================\n");
3638 printk( "[ BUG: held lock freed! ]\n");
3639 printk( "-------------------------\n");
3640 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
3641 curr
->comm
, task_pid_nr(curr
), mem_from
, mem_to
-1);
3643 lockdep_print_held_locks(curr
);
3645 printk("\nstack backtrace:\n");
3649 static inline int not_in_range(const void* mem_from
, unsigned long mem_len
,
3650 const void* lock_from
, unsigned long lock_len
)
3652 return lock_from
+ lock_len
<= mem_from
||
3653 mem_from
+ mem_len
<= lock_from
;
3657 * Called when kernel memory is freed (or unmapped), or if a lock
3658 * is destroyed or reinitialized - this code checks whether there is
3659 * any held lock in the memory range of <from> to <to>:
3661 void debug_check_no_locks_freed(const void *mem_from
, unsigned long mem_len
)
3663 struct task_struct
*curr
= current
;
3664 struct held_lock
*hlock
;
3665 unsigned long flags
;
3668 if (unlikely(!debug_locks
))
3671 local_irq_save(flags
);
3672 for (i
= 0; i
< curr
->lockdep_depth
; i
++) {
3673 hlock
= curr
->held_locks
+ i
;
3675 if (not_in_range(mem_from
, mem_len
, hlock
->instance
,
3676 sizeof(*hlock
->instance
)))
3679 print_freed_lock_bug(curr
, mem_from
, mem_from
+ mem_len
, hlock
);
3682 local_irq_restore(flags
);
3684 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed
);
3686 static void print_held_locks_bug(struct task_struct
*curr
)
3688 if (!debug_locks_off())
3690 if (debug_locks_silent
)
3693 printk("\n=====================================\n");
3694 printk( "[ BUG: lock held at task exit time! ]\n");
3695 printk( "-------------------------------------\n");
3696 printk("%s/%d is exiting with locks still held!\n",
3697 curr
->comm
, task_pid_nr(curr
));
3698 lockdep_print_held_locks(curr
);
3700 printk("\nstack backtrace:\n");
3704 void debug_check_no_locks_held(struct task_struct
*task
)
3706 if (unlikely(task
->lockdep_depth
> 0))
3707 print_held_locks_bug(task
);
3710 void debug_show_all_locks(void)
3712 struct task_struct
*g
, *p
;
3716 if (unlikely(!debug_locks
)) {
3717 printk("INFO: lockdep is turned off.\n");
3720 printk("\nShowing all locks held in the system:\n");
3723 * Here we try to get the tasklist_lock as hard as possible,
3724 * if not successful after 2 seconds we ignore it (but keep
3725 * trying). This is to enable a debug printout even if a
3726 * tasklist_lock-holding task deadlocks or crashes.
3729 if (!read_trylock(&tasklist_lock
)) {
3731 printk("hm, tasklist_lock locked, retrying... ");
3734 printk(" #%d", 10-count
);
3738 printk(" ignoring it.\n");
3742 printk(KERN_CONT
" locked it.\n");
3745 do_each_thread(g
, p
) {
3747 * It's not reliable to print a task's held locks
3748 * if it's not sleeping (or if it's not the current
3751 if (p
->state
== TASK_RUNNING
&& p
!= current
)
3753 if (p
->lockdep_depth
)
3754 lockdep_print_held_locks(p
);
3756 if (read_trylock(&tasklist_lock
))
3758 } while_each_thread(g
, p
);
3761 printk("=============================================\n\n");
3764 read_unlock(&tasklist_lock
);
3766 EXPORT_SYMBOL_GPL(debug_show_all_locks
);
3769 * Careful: only use this function if you are sure that
3770 * the task cannot run in parallel!
3772 void __debug_show_held_locks(struct task_struct
*task
)
3774 if (unlikely(!debug_locks
)) {
3775 printk("INFO: lockdep is turned off.\n");
3778 lockdep_print_held_locks(task
);
3780 EXPORT_SYMBOL_GPL(__debug_show_held_locks
);
3782 void debug_show_held_locks(struct task_struct
*task
)
3784 __debug_show_held_locks(task
);
3786 EXPORT_SYMBOL_GPL(debug_show_held_locks
);
3788 void lockdep_sys_exit(void)
3790 struct task_struct
*curr
= current
;
3792 if (unlikely(curr
->lockdep_depth
)) {
3793 if (!debug_locks_off())
3795 printk("\n================================================\n");
3796 printk( "[ BUG: lock held when returning to user space! ]\n");
3797 printk( "------------------------------------------------\n");
3798 printk("%s/%d is leaving the kernel with locks still held!\n",
3799 curr
->comm
, curr
->pid
);
3800 lockdep_print_held_locks(curr
);