lockdep: simplify mark_lock_irq() helpers #3
[linux-2.6/mini2440.git] / kernel / lockdep.c
blobe0a027d58dab60c49568c64e2c00ca74765ddc2b
1 /*
2 * kernel/lockdep.c
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>
45 #include <asm/sections.h>
47 #include "lockdep_internals.h"
49 #ifdef CONFIG_PROVE_LOCKING
50 int prove_locking = 1;
51 module_param(prove_locking, int, 0644);
52 #else
53 #define prove_locking 0
54 #endif
56 #ifdef CONFIG_LOCK_STAT
57 int lock_stat = 1;
58 module_param(lock_stat, int, 0644);
59 #else
60 #define lock_stat 0
61 #endif
64 * lockdep_lock: protects the lockdep graph, the hashes and the
65 * class/list/hash allocators.
67 * This is one of the rare exceptions where it's justified
68 * to use a raw spinlock - we really dont want the spinlock
69 * code to recurse back into the lockdep code...
71 static raw_spinlock_t lockdep_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
73 static int graph_lock(void)
75 __raw_spin_lock(&lockdep_lock);
77 * Make sure that if another CPU detected a bug while
78 * walking the graph we dont change it (while the other
79 * CPU is busy printing out stuff with the graph lock
80 * dropped already)
82 if (!debug_locks) {
83 __raw_spin_unlock(&lockdep_lock);
84 return 0;
86 /* prevent any recursions within lockdep from causing deadlocks */
87 current->lockdep_recursion++;
88 return 1;
91 static inline int graph_unlock(void)
93 if (debug_locks && !__raw_spin_is_locked(&lockdep_lock))
94 return DEBUG_LOCKS_WARN_ON(1);
96 current->lockdep_recursion--;
97 __raw_spin_unlock(&lockdep_lock);
98 return 0;
102 * Turn lock debugging off and return with 0 if it was off already,
103 * and also release the graph lock:
105 static inline int debug_locks_off_graph_unlock(void)
107 int ret = debug_locks_off();
109 __raw_spin_unlock(&lockdep_lock);
111 return ret;
114 static int lockdep_initialized;
116 unsigned long nr_list_entries;
117 static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
120 * All data structures here are protected by the global debug_lock.
122 * Mutex key structs only get allocated, once during bootup, and never
123 * get freed - this significantly simplifies the debugging code.
125 unsigned long nr_lock_classes;
126 static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
128 static inline struct lock_class *hlock_class(struct held_lock *hlock)
130 if (!hlock->class_idx) {
131 DEBUG_LOCKS_WARN_ON(1);
132 return NULL;
134 return lock_classes + hlock->class_idx - 1;
137 #ifdef CONFIG_LOCK_STAT
138 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], lock_stats);
140 static int lock_point(unsigned long points[], unsigned long ip)
142 int i;
144 for (i = 0; i < LOCKSTAT_POINTS; i++) {
145 if (points[i] == 0) {
146 points[i] = ip;
147 break;
149 if (points[i] == ip)
150 break;
153 return i;
156 static void lock_time_inc(struct lock_time *lt, s64 time)
158 if (time > lt->max)
159 lt->max = time;
161 if (time < lt->min || !lt->min)
162 lt->min = time;
164 lt->total += time;
165 lt->nr++;
168 static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
170 dst->min += src->min;
171 dst->max += src->max;
172 dst->total += src->total;
173 dst->nr += src->nr;
176 struct lock_class_stats lock_stats(struct lock_class *class)
178 struct lock_class_stats stats;
179 int cpu, i;
181 memset(&stats, 0, sizeof(struct lock_class_stats));
182 for_each_possible_cpu(cpu) {
183 struct lock_class_stats *pcs =
184 &per_cpu(lock_stats, cpu)[class - lock_classes];
186 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
187 stats.contention_point[i] += pcs->contention_point[i];
189 for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
190 stats.contending_point[i] += pcs->contending_point[i];
192 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
193 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
195 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
196 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
198 for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
199 stats.bounces[i] += pcs->bounces[i];
202 return stats;
205 void clear_lock_stats(struct lock_class *class)
207 int cpu;
209 for_each_possible_cpu(cpu) {
210 struct lock_class_stats *cpu_stats =
211 &per_cpu(lock_stats, cpu)[class - lock_classes];
213 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
215 memset(class->contention_point, 0, sizeof(class->contention_point));
216 memset(class->contending_point, 0, sizeof(class->contending_point));
219 static struct lock_class_stats *get_lock_stats(struct lock_class *class)
221 return &get_cpu_var(lock_stats)[class - lock_classes];
224 static void put_lock_stats(struct lock_class_stats *stats)
226 put_cpu_var(lock_stats);
229 static void lock_release_holdtime(struct held_lock *hlock)
231 struct lock_class_stats *stats;
232 s64 holdtime;
234 if (!lock_stat)
235 return;
237 holdtime = sched_clock() - hlock->holdtime_stamp;
239 stats = get_lock_stats(hlock_class(hlock));
240 if (hlock->read)
241 lock_time_inc(&stats->read_holdtime, holdtime);
242 else
243 lock_time_inc(&stats->write_holdtime, holdtime);
244 put_lock_stats(stats);
246 #else
247 static inline void lock_release_holdtime(struct held_lock *hlock)
250 #endif
253 * We keep a global list of all lock classes. The list only grows,
254 * never shrinks. The list is only accessed with the lockdep
255 * spinlock lock held.
257 LIST_HEAD(all_lock_classes);
260 * The lockdep classes are in a hash-table as well, for fast lookup:
262 #define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
263 #define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
264 #define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
265 #define classhashentry(key) (classhash_table + __classhashfn((key)))
267 static struct list_head classhash_table[CLASSHASH_SIZE];
270 * We put the lock dependency chains into a hash-table as well, to cache
271 * their existence:
273 #define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
274 #define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
275 #define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
276 #define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
278 static struct list_head chainhash_table[CHAINHASH_SIZE];
281 * The hash key of the lock dependency chains is a hash itself too:
282 * it's a hash of all locks taken up to that lock, including that lock.
283 * It's a 64-bit hash, because it's important for the keys to be
284 * unique.
286 #define iterate_chain_key(key1, key2) \
287 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
288 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
289 (key2))
291 void lockdep_off(void)
293 current->lockdep_recursion++;
295 EXPORT_SYMBOL(lockdep_off);
297 void lockdep_on(void)
299 current->lockdep_recursion--;
301 EXPORT_SYMBOL(lockdep_on);
304 * Debugging switches:
307 #define VERBOSE 0
308 #define VERY_VERBOSE 0
310 #if VERBOSE
311 # define HARDIRQ_VERBOSE 1
312 # define SOFTIRQ_VERBOSE 1
313 # define RECLAIM_VERBOSE 1
314 #else
315 # define HARDIRQ_VERBOSE 0
316 # define SOFTIRQ_VERBOSE 0
317 # define RECLAIM_VERBOSE 0
318 #endif
320 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE
322 * Quick filtering for interesting events:
324 static int class_filter(struct lock_class *class)
326 #if 0
327 /* Example */
328 if (class->name_version == 1 &&
329 !strcmp(class->name, "lockname"))
330 return 1;
331 if (class->name_version == 1 &&
332 !strcmp(class->name, "&struct->lockfield"))
333 return 1;
334 #endif
335 /* Filter everything else. 1 would be to allow everything else */
336 return 0;
338 #endif
340 static int verbose(struct lock_class *class)
342 #if VERBOSE
343 return class_filter(class);
344 #endif
345 return 0;
349 * Stack-trace: tightly packed array of stack backtrace
350 * addresses. Protected by the graph_lock.
352 unsigned long nr_stack_trace_entries;
353 static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
355 static int save_trace(struct stack_trace *trace)
357 trace->nr_entries = 0;
358 trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
359 trace->entries = stack_trace + nr_stack_trace_entries;
361 trace->skip = 3;
363 save_stack_trace(trace);
365 trace->max_entries = trace->nr_entries;
367 nr_stack_trace_entries += trace->nr_entries;
369 if (nr_stack_trace_entries == MAX_STACK_TRACE_ENTRIES) {
370 if (!debug_locks_off_graph_unlock())
371 return 0;
373 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
374 printk("turning off the locking correctness validator.\n");
375 dump_stack();
377 return 0;
380 return 1;
383 unsigned int nr_hardirq_chains;
384 unsigned int nr_softirq_chains;
385 unsigned int nr_process_chains;
386 unsigned int max_lockdep_depth;
387 unsigned int max_recursion_depth;
389 static unsigned int lockdep_dependency_gen_id;
391 static bool lockdep_dependency_visit(struct lock_class *source,
392 unsigned int depth)
394 if (!depth)
395 lockdep_dependency_gen_id++;
396 if (source->dep_gen_id == lockdep_dependency_gen_id)
397 return true;
398 source->dep_gen_id = lockdep_dependency_gen_id;
399 return false;
402 #ifdef CONFIG_DEBUG_LOCKDEP
404 * We cannot printk in early bootup code. Not even early_printk()
405 * might work. So we mark any initialization errors and printk
406 * about it later on, in lockdep_info().
408 static int lockdep_init_error;
409 static unsigned long lockdep_init_trace_data[20];
410 static struct stack_trace lockdep_init_trace = {
411 .max_entries = ARRAY_SIZE(lockdep_init_trace_data),
412 .entries = lockdep_init_trace_data,
416 * Various lockdep statistics:
418 atomic_t chain_lookup_hits;
419 atomic_t chain_lookup_misses;
420 atomic_t hardirqs_on_events;
421 atomic_t hardirqs_off_events;
422 atomic_t redundant_hardirqs_on;
423 atomic_t redundant_hardirqs_off;
424 atomic_t softirqs_on_events;
425 atomic_t softirqs_off_events;
426 atomic_t redundant_softirqs_on;
427 atomic_t redundant_softirqs_off;
428 atomic_t nr_unused_locks;
429 atomic_t nr_cyclic_checks;
430 atomic_t nr_cyclic_check_recursions;
431 atomic_t nr_find_usage_forwards_checks;
432 atomic_t nr_find_usage_forwards_recursions;
433 atomic_t nr_find_usage_backwards_checks;
434 atomic_t nr_find_usage_backwards_recursions;
435 # define debug_atomic_inc(ptr) atomic_inc(ptr)
436 # define debug_atomic_dec(ptr) atomic_dec(ptr)
437 # define debug_atomic_read(ptr) atomic_read(ptr)
438 #else
439 # define debug_atomic_inc(ptr) do { } while (0)
440 # define debug_atomic_dec(ptr) do { } while (0)
441 # define debug_atomic_read(ptr) 0
442 #endif
445 * Locking printouts:
448 #define __STR(foo) #foo
449 #define STR(foo) __STR(foo)
451 #define __USAGE(__STATE) \
452 [LOCK_USED_IN_##__STATE] = "IN-"STR(__STATE)"-W", \
453 [LOCK_ENABLED_##__STATE] = STR(__STATE)"-ON-W", \
454 [LOCK_USED_IN_##__STATE##_READ] = "IN-"STR(__STATE)"-R", \
455 [LOCK_ENABLED_##__STATE##_READ] = STR(__STATE)"-ON-R",
457 static const char *usage_str[] =
459 #define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
460 #include "lockdep_states.h"
461 #undef LOCKDEP_STATE
462 [LOCK_USED] = "INITIAL USE",
465 const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
467 return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
470 void
471 get_usage_chars(struct lock_class *class, char *c1, char *c2, char *c3,
472 char *c4, char *c5, char *c6)
474 *c1 = '.', *c2 = '.', *c3 = '.', *c4 = '.', *c5 = '.', *c6 = '.';
476 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ)
477 *c1 = '+';
478 else
479 if (class->usage_mask & LOCKF_ENABLED_HARDIRQ)
480 *c1 = '-';
482 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ)
483 *c2 = '+';
484 else
485 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQ)
486 *c2 = '-';
488 if (class->usage_mask & LOCKF_ENABLED_HARDIRQ_READ)
489 *c3 = '-';
490 if (class->usage_mask & LOCKF_USED_IN_HARDIRQ_READ) {
491 *c3 = '+';
492 if (class->usage_mask & LOCKF_ENABLED_HARDIRQ_READ)
493 *c3 = '?';
496 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQ_READ)
497 *c4 = '-';
498 if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ_READ) {
499 *c4 = '+';
500 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQ_READ)
501 *c4 = '?';
504 if (class->usage_mask & LOCKF_USED_IN_RECLAIM_FS)
505 *c5 = '+';
506 else
507 if (class->usage_mask & LOCKF_ENABLED_RECLAIM_FS)
508 *c5 = '-';
510 if (class->usage_mask & LOCKF_ENABLED_RECLAIM_FS_READ)
511 *c6 = '-';
512 if (class->usage_mask & LOCKF_USED_IN_RECLAIM_FS_READ) {
513 *c6 = '+';
514 if (class->usage_mask & LOCKF_ENABLED_RECLAIM_FS_READ)
515 *c6 = '?';
520 static void print_lock_name(struct lock_class *class)
522 char str[KSYM_NAME_LEN], c1, c2, c3, c4, c5, c6;
523 const char *name;
525 get_usage_chars(class, &c1, &c2, &c3, &c4, &c5, &c6);
527 name = class->name;
528 if (!name) {
529 name = __get_key_name(class->key, str);
530 printk(" (%s", name);
531 } else {
532 printk(" (%s", name);
533 if (class->name_version > 1)
534 printk("#%d", class->name_version);
535 if (class->subclass)
536 printk("/%d", class->subclass);
538 printk("){%c%c%c%c%c%c}", c1, c2, c3, c4, c5, c6);
541 static void print_lockdep_cache(struct lockdep_map *lock)
543 const char *name;
544 char str[KSYM_NAME_LEN];
546 name = lock->name;
547 if (!name)
548 name = __get_key_name(lock->key->subkeys, str);
550 printk("%s", name);
553 static void print_lock(struct held_lock *hlock)
555 print_lock_name(hlock_class(hlock));
556 printk(", at: ");
557 print_ip_sym(hlock->acquire_ip);
560 static void lockdep_print_held_locks(struct task_struct *curr)
562 int i, depth = curr->lockdep_depth;
564 if (!depth) {
565 printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr));
566 return;
568 printk("%d lock%s held by %s/%d:\n",
569 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr));
571 for (i = 0; i < depth; i++) {
572 printk(" #%d: ", i);
573 print_lock(curr->held_locks + i);
577 static void print_lock_class_header(struct lock_class *class, int depth)
579 int bit;
581 printk("%*s->", depth, "");
582 print_lock_name(class);
583 printk(" ops: %lu", class->ops);
584 printk(" {\n");
586 for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
587 if (class->usage_mask & (1 << bit)) {
588 int len = depth;
590 len += printk("%*s %s", depth, "", usage_str[bit]);
591 len += printk(" at:\n");
592 print_stack_trace(class->usage_traces + bit, len);
595 printk("%*s }\n", depth, "");
597 printk("%*s ... key at: ",depth,"");
598 print_ip_sym((unsigned long)class->key);
602 * printk all lock dependencies starting at <entry>:
604 static void __used
605 print_lock_dependencies(struct lock_class *class, int depth)
607 struct lock_list *entry;
609 if (lockdep_dependency_visit(class, depth))
610 return;
612 if (DEBUG_LOCKS_WARN_ON(depth >= 20))
613 return;
615 print_lock_class_header(class, depth);
617 list_for_each_entry(entry, &class->locks_after, entry) {
618 if (DEBUG_LOCKS_WARN_ON(!entry->class))
619 return;
621 print_lock_dependencies(entry->class, depth + 1);
623 printk("%*s ... acquired at:\n",depth,"");
624 print_stack_trace(&entry->trace, 2);
625 printk("\n");
629 static void print_kernel_version(void)
631 printk("%s %.*s\n", init_utsname()->release,
632 (int)strcspn(init_utsname()->version, " "),
633 init_utsname()->version);
636 static int very_verbose(struct lock_class *class)
638 #if VERY_VERBOSE
639 return class_filter(class);
640 #endif
641 return 0;
645 * Is this the address of a static object:
647 static int static_obj(void *obj)
649 unsigned long start = (unsigned long) &_stext,
650 end = (unsigned long) &_end,
651 addr = (unsigned long) obj;
652 #ifdef CONFIG_SMP
653 int i;
654 #endif
657 * static variable?
659 if ((addr >= start) && (addr < end))
660 return 1;
662 #ifdef CONFIG_SMP
664 * percpu var?
666 for_each_possible_cpu(i) {
667 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i);
668 end = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
669 + per_cpu_offset(i);
671 if ((addr >= start) && (addr < end))
672 return 1;
674 #endif
677 * module var?
679 return is_module_address(addr);
683 * To make lock name printouts unique, we calculate a unique
684 * class->name_version generation counter:
686 static int count_matching_names(struct lock_class *new_class)
688 struct lock_class *class;
689 int count = 0;
691 if (!new_class->name)
692 return 0;
694 list_for_each_entry(class, &all_lock_classes, lock_entry) {
695 if (new_class->key - new_class->subclass == class->key)
696 return class->name_version;
697 if (class->name && !strcmp(class->name, new_class->name))
698 count = max(count, class->name_version);
701 return count + 1;
705 * Register a lock's class in the hash-table, if the class is not present
706 * yet. Otherwise we look it up. We cache the result in the lock object
707 * itself, so actual lookup of the hash should be once per lock object.
709 static inline struct lock_class *
710 look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
712 struct lockdep_subclass_key *key;
713 struct list_head *hash_head;
714 struct lock_class *class;
716 #ifdef CONFIG_DEBUG_LOCKDEP
718 * If the architecture calls into lockdep before initializing
719 * the hashes then we'll warn about it later. (we cannot printk
720 * right now)
722 if (unlikely(!lockdep_initialized)) {
723 lockdep_init();
724 lockdep_init_error = 1;
725 save_stack_trace(&lockdep_init_trace);
727 #endif
730 * Static locks do not have their class-keys yet - for them the key
731 * is the lock object itself:
733 if (unlikely(!lock->key))
734 lock->key = (void *)lock;
737 * NOTE: the class-key must be unique. For dynamic locks, a static
738 * lock_class_key variable is passed in through the mutex_init()
739 * (or spin_lock_init()) call - which acts as the key. For static
740 * locks we use the lock object itself as the key.
742 BUILD_BUG_ON(sizeof(struct lock_class_key) >
743 sizeof(struct lockdep_map));
745 key = lock->key->subkeys + subclass;
747 hash_head = classhashentry(key);
750 * We can walk the hash lockfree, because the hash only
751 * grows, and we are careful when adding entries to the end:
753 list_for_each_entry(class, hash_head, hash_entry) {
754 if (class->key == key) {
755 WARN_ON_ONCE(class->name != lock->name);
756 return class;
760 return NULL;
764 * Register a lock's class in the hash-table, if the class is not present
765 * yet. Otherwise we look it up. We cache the result in the lock object
766 * itself, so actual lookup of the hash should be once per lock object.
768 static inline struct lock_class *
769 register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
771 struct lockdep_subclass_key *key;
772 struct list_head *hash_head;
773 struct lock_class *class;
774 unsigned long flags;
776 class = look_up_lock_class(lock, subclass);
777 if (likely(class))
778 return class;
781 * Debug-check: all keys must be persistent!
783 if (!static_obj(lock->key)) {
784 debug_locks_off();
785 printk("INFO: trying to register non-static key.\n");
786 printk("the code is fine but needs lockdep annotation.\n");
787 printk("turning off the locking correctness validator.\n");
788 dump_stack();
790 return NULL;
793 key = lock->key->subkeys + subclass;
794 hash_head = classhashentry(key);
796 raw_local_irq_save(flags);
797 if (!graph_lock()) {
798 raw_local_irq_restore(flags);
799 return NULL;
802 * We have to do the hash-walk again, to avoid races
803 * with another CPU:
805 list_for_each_entry(class, hash_head, hash_entry)
806 if (class->key == key)
807 goto out_unlock_set;
809 * Allocate a new key from the static array, and add it to
810 * the hash:
812 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
813 if (!debug_locks_off_graph_unlock()) {
814 raw_local_irq_restore(flags);
815 return NULL;
817 raw_local_irq_restore(flags);
819 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
820 printk("turning off the locking correctness validator.\n");
821 return NULL;
823 class = lock_classes + nr_lock_classes++;
824 debug_atomic_inc(&nr_unused_locks);
825 class->key = key;
826 class->name = lock->name;
827 class->subclass = subclass;
828 INIT_LIST_HEAD(&class->lock_entry);
829 INIT_LIST_HEAD(&class->locks_before);
830 INIT_LIST_HEAD(&class->locks_after);
831 class->name_version = count_matching_names(class);
833 * We use RCU's safe list-add method to make
834 * parallel walking of the hash-list safe:
836 list_add_tail_rcu(&class->hash_entry, hash_head);
838 * Add it to the global list of classes:
840 list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
842 if (verbose(class)) {
843 graph_unlock();
844 raw_local_irq_restore(flags);
846 printk("\nnew class %p: %s", class->key, class->name);
847 if (class->name_version > 1)
848 printk("#%d", class->name_version);
849 printk("\n");
850 dump_stack();
852 raw_local_irq_save(flags);
853 if (!graph_lock()) {
854 raw_local_irq_restore(flags);
855 return NULL;
858 out_unlock_set:
859 graph_unlock();
860 raw_local_irq_restore(flags);
862 if (!subclass || force)
863 lock->class_cache = class;
865 if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
866 return NULL;
868 return class;
871 #ifdef CONFIG_PROVE_LOCKING
873 * Allocate a lockdep entry. (assumes the graph_lock held, returns
874 * with NULL on failure)
876 static struct lock_list *alloc_list_entry(void)
878 if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
879 if (!debug_locks_off_graph_unlock())
880 return NULL;
882 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
883 printk("turning off the locking correctness validator.\n");
884 return NULL;
886 return list_entries + nr_list_entries++;
890 * Add a new dependency to the head of the list:
892 static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
893 struct list_head *head, unsigned long ip, int distance)
895 struct lock_list *entry;
897 * Lock not present yet - get a new dependency struct and
898 * add it to the list:
900 entry = alloc_list_entry();
901 if (!entry)
902 return 0;
904 if (!save_trace(&entry->trace))
905 return 0;
907 entry->class = this;
908 entry->distance = distance;
910 * Since we never remove from the dependency list, the list can
911 * be walked lockless by other CPUs, it's only allocation
912 * that must be protected by the spinlock. But this also means
913 * we must make new entries visible only once writes to the
914 * entry become visible - hence the RCU op:
916 list_add_tail_rcu(&entry->entry, head);
918 return 1;
922 * Recursive, forwards-direction lock-dependency checking, used for
923 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
924 * checking.
926 * (to keep the stackframe of the recursive functions small we
927 * use these global variables, and we also mark various helper
928 * functions as noinline.)
930 static struct held_lock *check_source, *check_target;
933 * Print a dependency chain entry (this is only done when a deadlock
934 * has been detected):
936 static noinline int
937 print_circular_bug_entry(struct lock_list *target, unsigned int depth)
939 if (debug_locks_silent)
940 return 0;
941 printk("\n-> #%u", depth);
942 print_lock_name(target->class);
943 printk(":\n");
944 print_stack_trace(&target->trace, 6);
946 return 0;
950 * When a circular dependency is detected, print the
951 * header first:
953 static noinline int
954 print_circular_bug_header(struct lock_list *entry, unsigned int depth)
956 struct task_struct *curr = current;
958 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
959 return 0;
961 printk("\n=======================================================\n");
962 printk( "[ INFO: possible circular locking dependency detected ]\n");
963 print_kernel_version();
964 printk( "-------------------------------------------------------\n");
965 printk("%s/%d is trying to acquire lock:\n",
966 curr->comm, task_pid_nr(curr));
967 print_lock(check_source);
968 printk("\nbut task is already holding lock:\n");
969 print_lock(check_target);
970 printk("\nwhich lock already depends on the new lock.\n\n");
971 printk("\nthe existing dependency chain (in reverse order) is:\n");
973 print_circular_bug_entry(entry, depth);
975 return 0;
978 static noinline int print_circular_bug_tail(void)
980 struct task_struct *curr = current;
981 struct lock_list this;
983 if (debug_locks_silent)
984 return 0;
986 this.class = hlock_class(check_source);
987 if (!save_trace(&this.trace))
988 return 0;
990 print_circular_bug_entry(&this, 0);
992 printk("\nother info that might help us debug this:\n\n");
993 lockdep_print_held_locks(curr);
995 printk("\nstack backtrace:\n");
996 dump_stack();
998 return 0;
1001 #define RECURSION_LIMIT 40
1003 static int noinline print_infinite_recursion_bug(void)
1005 if (!debug_locks_off_graph_unlock())
1006 return 0;
1008 WARN_ON(1);
1010 return 0;
1013 unsigned long __lockdep_count_forward_deps(struct lock_class *class,
1014 unsigned int depth)
1016 struct lock_list *entry;
1017 unsigned long ret = 1;
1019 if (lockdep_dependency_visit(class, depth))
1020 return 0;
1023 * Recurse this class's dependency list:
1025 list_for_each_entry(entry, &class->locks_after, entry)
1026 ret += __lockdep_count_forward_deps(entry->class, depth + 1);
1028 return ret;
1031 unsigned long lockdep_count_forward_deps(struct lock_class *class)
1033 unsigned long ret, flags;
1035 local_irq_save(flags);
1036 __raw_spin_lock(&lockdep_lock);
1037 ret = __lockdep_count_forward_deps(class, 0);
1038 __raw_spin_unlock(&lockdep_lock);
1039 local_irq_restore(flags);
1041 return ret;
1044 unsigned long __lockdep_count_backward_deps(struct lock_class *class,
1045 unsigned int depth)
1047 struct lock_list *entry;
1048 unsigned long ret = 1;
1050 if (lockdep_dependency_visit(class, depth))
1051 return 0;
1053 * Recurse this class's dependency list:
1055 list_for_each_entry(entry, &class->locks_before, entry)
1056 ret += __lockdep_count_backward_deps(entry->class, depth + 1);
1058 return ret;
1061 unsigned long lockdep_count_backward_deps(struct lock_class *class)
1063 unsigned long ret, flags;
1065 local_irq_save(flags);
1066 __raw_spin_lock(&lockdep_lock);
1067 ret = __lockdep_count_backward_deps(class, 0);
1068 __raw_spin_unlock(&lockdep_lock);
1069 local_irq_restore(flags);
1071 return ret;
1075 * Prove that the dependency graph starting at <entry> can not
1076 * lead to <target>. Print an error and return 0 if it does.
1078 static noinline int
1079 check_noncircular(struct lock_class *source, unsigned int depth)
1081 struct lock_list *entry;
1083 if (lockdep_dependency_visit(source, depth))
1084 return 1;
1086 debug_atomic_inc(&nr_cyclic_check_recursions);
1087 if (depth > max_recursion_depth)
1088 max_recursion_depth = depth;
1089 if (depth >= RECURSION_LIMIT)
1090 return print_infinite_recursion_bug();
1092 * Check this lock's dependency list:
1094 list_for_each_entry(entry, &source->locks_after, entry) {
1095 if (entry->class == hlock_class(check_target))
1096 return print_circular_bug_header(entry, depth+1);
1097 debug_atomic_inc(&nr_cyclic_checks);
1098 if (!check_noncircular(entry->class, depth+1))
1099 return print_circular_bug_entry(entry, depth+1);
1101 return 1;
1104 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
1106 * Forwards and backwards subgraph searching, for the purposes of
1107 * proving that two subgraphs can be connected by a new dependency
1108 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1110 static enum lock_usage_bit find_usage_bit;
1111 static struct lock_class *forwards_match, *backwards_match;
1114 * Find a node in the forwards-direction dependency sub-graph starting
1115 * at <source> that matches <find_usage_bit>.
1117 * Return 2 if such a node exists in the subgraph, and put that node
1118 * into <forwards_match>.
1120 * Return 1 otherwise and keep <forwards_match> unchanged.
1121 * Return 0 on error.
1123 static noinline int
1124 find_usage_forwards(struct lock_class *source, unsigned int depth)
1126 struct lock_list *entry;
1127 int ret;
1129 if (lockdep_dependency_visit(source, depth))
1130 return 1;
1132 if (depth > max_recursion_depth)
1133 max_recursion_depth = depth;
1134 if (depth >= RECURSION_LIMIT)
1135 return print_infinite_recursion_bug();
1137 debug_atomic_inc(&nr_find_usage_forwards_checks);
1138 if (source->usage_mask & (1 << find_usage_bit)) {
1139 forwards_match = source;
1140 return 2;
1144 * Check this lock's dependency list:
1146 list_for_each_entry(entry, &source->locks_after, entry) {
1147 debug_atomic_inc(&nr_find_usage_forwards_recursions);
1148 ret = find_usage_forwards(entry->class, depth+1);
1149 if (ret == 2 || ret == 0)
1150 return ret;
1152 return 1;
1156 * Find a node in the backwards-direction dependency sub-graph starting
1157 * at <source> that matches <find_usage_bit>.
1159 * Return 2 if such a node exists in the subgraph, and put that node
1160 * into <backwards_match>.
1162 * Return 1 otherwise and keep <backwards_match> unchanged.
1163 * Return 0 on error.
1165 static noinline int
1166 find_usage_backwards(struct lock_class *source, unsigned int depth)
1168 struct lock_list *entry;
1169 int ret;
1171 if (lockdep_dependency_visit(source, depth))
1172 return 1;
1174 if (!__raw_spin_is_locked(&lockdep_lock))
1175 return DEBUG_LOCKS_WARN_ON(1);
1177 if (depth > max_recursion_depth)
1178 max_recursion_depth = depth;
1179 if (depth >= RECURSION_LIMIT)
1180 return print_infinite_recursion_bug();
1182 debug_atomic_inc(&nr_find_usage_backwards_checks);
1183 if (source->usage_mask & (1 << find_usage_bit)) {
1184 backwards_match = source;
1185 return 2;
1188 if (!source && debug_locks_off_graph_unlock()) {
1189 WARN_ON(1);
1190 return 0;
1194 * Check this lock's dependency list:
1196 list_for_each_entry(entry, &source->locks_before, entry) {
1197 debug_atomic_inc(&nr_find_usage_backwards_recursions);
1198 ret = find_usage_backwards(entry->class, depth+1);
1199 if (ret == 2 || ret == 0)
1200 return ret;
1202 return 1;
1205 static int
1206 print_bad_irq_dependency(struct task_struct *curr,
1207 struct held_lock *prev,
1208 struct held_lock *next,
1209 enum lock_usage_bit bit1,
1210 enum lock_usage_bit bit2,
1211 const char *irqclass)
1213 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1214 return 0;
1216 printk("\n======================================================\n");
1217 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1218 irqclass, irqclass);
1219 print_kernel_version();
1220 printk( "------------------------------------------------------\n");
1221 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1222 curr->comm, task_pid_nr(curr),
1223 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1224 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1225 curr->hardirqs_enabled,
1226 curr->softirqs_enabled);
1227 print_lock(next);
1229 printk("\nand this task is already holding:\n");
1230 print_lock(prev);
1231 printk("which would create a new lock dependency:\n");
1232 print_lock_name(hlock_class(prev));
1233 printk(" ->");
1234 print_lock_name(hlock_class(next));
1235 printk("\n");
1237 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1238 irqclass);
1239 print_lock_name(backwards_match);
1240 printk("\n... which became %s-irq-safe at:\n", irqclass);
1242 print_stack_trace(backwards_match->usage_traces + bit1, 1);
1244 printk("\nto a %s-irq-unsafe lock:\n", irqclass);
1245 print_lock_name(forwards_match);
1246 printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1247 printk("...");
1249 print_stack_trace(forwards_match->usage_traces + bit2, 1);
1251 printk("\nother info that might help us debug this:\n\n");
1252 lockdep_print_held_locks(curr);
1254 printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass);
1255 print_lock_dependencies(backwards_match, 0);
1257 printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass);
1258 print_lock_dependencies(forwards_match, 0);
1260 printk("\nstack backtrace:\n");
1261 dump_stack();
1263 return 0;
1266 static int
1267 check_usage(struct task_struct *curr, struct held_lock *prev,
1268 struct held_lock *next, enum lock_usage_bit bit_backwards,
1269 enum lock_usage_bit bit_forwards, const char *irqclass)
1271 int ret;
1273 find_usage_bit = bit_backwards;
1274 /* fills in <backwards_match> */
1275 ret = find_usage_backwards(hlock_class(prev), 0);
1276 if (!ret || ret == 1)
1277 return ret;
1279 find_usage_bit = bit_forwards;
1280 ret = find_usage_forwards(hlock_class(next), 0);
1281 if (!ret || ret == 1)
1282 return ret;
1283 /* ret == 2 */
1284 return print_bad_irq_dependency(curr, prev, next,
1285 bit_backwards, bit_forwards, irqclass);
1288 static int
1289 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1290 struct held_lock *next)
1293 * Prove that the new dependency does not connect a hardirq-safe
1294 * lock with a hardirq-unsafe lock - to achieve this we search
1295 * the backwards-subgraph starting at <prev>, and the
1296 * forwards-subgraph starting at <next>:
1298 if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ,
1299 LOCK_ENABLED_HARDIRQ, "hard"))
1300 return 0;
1303 * Prove that the new dependency does not connect a hardirq-safe-read
1304 * lock with a hardirq-unsafe lock - to achieve this we search
1305 * the backwards-subgraph starting at <prev>, and the
1306 * forwards-subgraph starting at <next>:
1308 if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ_READ,
1309 LOCK_ENABLED_HARDIRQ, "hard-read"))
1310 return 0;
1313 * Prove that the new dependency does not connect a softirq-safe
1314 * lock with a softirq-unsafe lock - to achieve this we search
1315 * the backwards-subgraph starting at <prev>, and the
1316 * forwards-subgraph starting at <next>:
1318 if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ,
1319 LOCK_ENABLED_SOFTIRQ, "soft"))
1320 return 0;
1322 * Prove that the new dependency does not connect a softirq-safe-read
1323 * lock with a softirq-unsafe lock - to achieve this we search
1324 * the backwards-subgraph starting at <prev>, and the
1325 * forwards-subgraph starting at <next>:
1327 if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ_READ,
1328 LOCK_ENABLED_SOFTIRQ, "soft"))
1329 return 0;
1332 * Prove that the new dependency does not connect a reclaim-fs-safe
1333 * lock with a reclaim-fs-unsafe lock - to achieve this we search
1334 * the backwards-subgraph starting at <prev>, and the
1335 * forwards-subgraph starting at <next>:
1337 if (!check_usage(curr, prev, next, LOCK_USED_IN_RECLAIM_FS,
1338 LOCK_ENABLED_RECLAIM_FS, "reclaim-fs"))
1339 return 0;
1342 * Prove that the new dependency does not connect a reclaim-fs-safe-read
1343 * lock with a reclaim-fs-unsafe lock - to achieve this we search
1344 * the backwards-subgraph starting at <prev>, and the
1345 * forwards-subgraph starting at <next>:
1347 if (!check_usage(curr, prev, next, LOCK_USED_IN_RECLAIM_FS_READ,
1348 LOCK_ENABLED_RECLAIM_FS, "reclaim-fs-read"))
1349 return 0;
1351 return 1;
1354 static void inc_chains(void)
1356 if (current->hardirq_context)
1357 nr_hardirq_chains++;
1358 else {
1359 if (current->softirq_context)
1360 nr_softirq_chains++;
1361 else
1362 nr_process_chains++;
1366 #else
1368 static inline int
1369 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1370 struct held_lock *next)
1372 return 1;
1375 static inline void inc_chains(void)
1377 nr_process_chains++;
1380 #endif
1382 static int
1383 print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1384 struct held_lock *next)
1386 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1387 return 0;
1389 printk("\n=============================================\n");
1390 printk( "[ INFO: possible recursive locking detected ]\n");
1391 print_kernel_version();
1392 printk( "---------------------------------------------\n");
1393 printk("%s/%d is trying to acquire lock:\n",
1394 curr->comm, task_pid_nr(curr));
1395 print_lock(next);
1396 printk("\nbut task is already holding lock:\n");
1397 print_lock(prev);
1399 printk("\nother info that might help us debug this:\n");
1400 lockdep_print_held_locks(curr);
1402 printk("\nstack backtrace:\n");
1403 dump_stack();
1405 return 0;
1409 * Check whether we are holding such a class already.
1411 * (Note that this has to be done separately, because the graph cannot
1412 * detect such classes of deadlocks.)
1414 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1416 static int
1417 check_deadlock(struct task_struct *curr, struct held_lock *next,
1418 struct lockdep_map *next_instance, int read)
1420 struct held_lock *prev;
1421 struct held_lock *nest = NULL;
1422 int i;
1424 for (i = 0; i < curr->lockdep_depth; i++) {
1425 prev = curr->held_locks + i;
1427 if (prev->instance == next->nest_lock)
1428 nest = prev;
1430 if (hlock_class(prev) != hlock_class(next))
1431 continue;
1434 * Allow read-after-read recursion of the same
1435 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1437 if ((read == 2) && prev->read)
1438 return 2;
1441 * We're holding the nest_lock, which serializes this lock's
1442 * nesting behaviour.
1444 if (nest)
1445 return 2;
1447 return print_deadlock_bug(curr, prev, next);
1449 return 1;
1453 * There was a chain-cache miss, and we are about to add a new dependency
1454 * to a previous lock. We recursively validate the following rules:
1456 * - would the adding of the <prev> -> <next> dependency create a
1457 * circular dependency in the graph? [== circular deadlock]
1459 * - does the new prev->next dependency connect any hardirq-safe lock
1460 * (in the full backwards-subgraph starting at <prev>) with any
1461 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1462 * <next>)? [== illegal lock inversion with hardirq contexts]
1464 * - does the new prev->next dependency connect any softirq-safe lock
1465 * (in the full backwards-subgraph starting at <prev>) with any
1466 * softirq-unsafe lock (in the full forwards-subgraph starting at
1467 * <next>)? [== illegal lock inversion with softirq contexts]
1469 * any of these scenarios could lead to a deadlock.
1471 * Then if all the validations pass, we add the forwards and backwards
1472 * dependency.
1474 static int
1475 check_prev_add(struct task_struct *curr, struct held_lock *prev,
1476 struct held_lock *next, int distance)
1478 struct lock_list *entry;
1479 int ret;
1482 * Prove that the new <prev> -> <next> dependency would not
1483 * create a circular dependency in the graph. (We do this by
1484 * forward-recursing into the graph starting at <next>, and
1485 * checking whether we can reach <prev>.)
1487 * We are using global variables to control the recursion, to
1488 * keep the stackframe size of the recursive functions low:
1490 check_source = next;
1491 check_target = prev;
1492 if (!(check_noncircular(hlock_class(next), 0)))
1493 return print_circular_bug_tail();
1495 if (!check_prev_add_irq(curr, prev, next))
1496 return 0;
1499 * For recursive read-locks we do all the dependency checks,
1500 * but we dont store read-triggered dependencies (only
1501 * write-triggered dependencies). This ensures that only the
1502 * write-side dependencies matter, and that if for example a
1503 * write-lock never takes any other locks, then the reads are
1504 * equivalent to a NOP.
1506 if (next->read == 2 || prev->read == 2)
1507 return 1;
1509 * Is the <prev> -> <next> dependency already present?
1511 * (this may occur even though this is a new chain: consider
1512 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1513 * chains - the second one will be new, but L1 already has
1514 * L2 added to its dependency list, due to the first chain.)
1516 list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1517 if (entry->class == hlock_class(next)) {
1518 if (distance == 1)
1519 entry->distance = 1;
1520 return 2;
1525 * Ok, all validations passed, add the new lock
1526 * to the previous lock's dependency list:
1528 ret = add_lock_to_list(hlock_class(prev), hlock_class(next),
1529 &hlock_class(prev)->locks_after,
1530 next->acquire_ip, distance);
1532 if (!ret)
1533 return 0;
1535 ret = add_lock_to_list(hlock_class(next), hlock_class(prev),
1536 &hlock_class(next)->locks_before,
1537 next->acquire_ip, distance);
1538 if (!ret)
1539 return 0;
1542 * Debugging printouts:
1544 if (verbose(hlock_class(prev)) || verbose(hlock_class(next))) {
1545 graph_unlock();
1546 printk("\n new dependency: ");
1547 print_lock_name(hlock_class(prev));
1548 printk(" => ");
1549 print_lock_name(hlock_class(next));
1550 printk("\n");
1551 dump_stack();
1552 return graph_lock();
1554 return 1;
1558 * Add the dependency to all directly-previous locks that are 'relevant'.
1559 * The ones that are relevant are (in increasing distance from curr):
1560 * all consecutive trylock entries and the final non-trylock entry - or
1561 * the end of this context's lock-chain - whichever comes first.
1563 static int
1564 check_prevs_add(struct task_struct *curr, struct held_lock *next)
1566 int depth = curr->lockdep_depth;
1567 struct held_lock *hlock;
1570 * Debugging checks.
1572 * Depth must not be zero for a non-head lock:
1574 if (!depth)
1575 goto out_bug;
1577 * At least two relevant locks must exist for this
1578 * to be a head:
1580 if (curr->held_locks[depth].irq_context !=
1581 curr->held_locks[depth-1].irq_context)
1582 goto out_bug;
1584 for (;;) {
1585 int distance = curr->lockdep_depth - depth + 1;
1586 hlock = curr->held_locks + depth-1;
1588 * Only non-recursive-read entries get new dependencies
1589 * added:
1591 if (hlock->read != 2) {
1592 if (!check_prev_add(curr, hlock, next, distance))
1593 return 0;
1595 * Stop after the first non-trylock entry,
1596 * as non-trylock entries have added their
1597 * own direct dependencies already, so this
1598 * lock is connected to them indirectly:
1600 if (!hlock->trylock)
1601 break;
1603 depth--;
1605 * End of lock-stack?
1607 if (!depth)
1608 break;
1610 * Stop the search if we cross into another context:
1612 if (curr->held_locks[depth].irq_context !=
1613 curr->held_locks[depth-1].irq_context)
1614 break;
1616 return 1;
1617 out_bug:
1618 if (!debug_locks_off_graph_unlock())
1619 return 0;
1621 WARN_ON(1);
1623 return 0;
1626 unsigned long nr_lock_chains;
1627 struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
1628 int nr_chain_hlocks;
1629 static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
1631 struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
1633 return lock_classes + chain_hlocks[chain->base + i];
1637 * Look up a dependency chain. If the key is not present yet then
1638 * add it and return 1 - in this case the new dependency chain is
1639 * validated. If the key is already hashed, return 0.
1640 * (On return with 1 graph_lock is held.)
1642 static inline int lookup_chain_cache(struct task_struct *curr,
1643 struct held_lock *hlock,
1644 u64 chain_key)
1646 struct lock_class *class = hlock_class(hlock);
1647 struct list_head *hash_head = chainhashentry(chain_key);
1648 struct lock_chain *chain;
1649 struct held_lock *hlock_curr, *hlock_next;
1650 int i, j, n, cn;
1652 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1653 return 0;
1655 * We can walk it lock-free, because entries only get added
1656 * to the hash:
1658 list_for_each_entry(chain, hash_head, entry) {
1659 if (chain->chain_key == chain_key) {
1660 cache_hit:
1661 debug_atomic_inc(&chain_lookup_hits);
1662 if (very_verbose(class))
1663 printk("\nhash chain already cached, key: "
1664 "%016Lx tail class: [%p] %s\n",
1665 (unsigned long long)chain_key,
1666 class->key, class->name);
1667 return 0;
1670 if (very_verbose(class))
1671 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1672 (unsigned long long)chain_key, class->key, class->name);
1674 * Allocate a new chain entry from the static array, and add
1675 * it to the hash:
1677 if (!graph_lock())
1678 return 0;
1680 * We have to walk the chain again locked - to avoid duplicates:
1682 list_for_each_entry(chain, hash_head, entry) {
1683 if (chain->chain_key == chain_key) {
1684 graph_unlock();
1685 goto cache_hit;
1688 if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
1689 if (!debug_locks_off_graph_unlock())
1690 return 0;
1692 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1693 printk("turning off the locking correctness validator.\n");
1694 return 0;
1696 chain = lock_chains + nr_lock_chains++;
1697 chain->chain_key = chain_key;
1698 chain->irq_context = hlock->irq_context;
1699 /* Find the first held_lock of current chain */
1700 hlock_next = hlock;
1701 for (i = curr->lockdep_depth - 1; i >= 0; i--) {
1702 hlock_curr = curr->held_locks + i;
1703 if (hlock_curr->irq_context != hlock_next->irq_context)
1704 break;
1705 hlock_next = hlock;
1707 i++;
1708 chain->depth = curr->lockdep_depth + 1 - i;
1709 cn = nr_chain_hlocks;
1710 while (cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS) {
1711 n = cmpxchg(&nr_chain_hlocks, cn, cn + chain->depth);
1712 if (n == cn)
1713 break;
1714 cn = n;
1716 if (likely(cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
1717 chain->base = cn;
1718 for (j = 0; j < chain->depth - 1; j++, i++) {
1719 int lock_id = curr->held_locks[i].class_idx - 1;
1720 chain_hlocks[chain->base + j] = lock_id;
1722 chain_hlocks[chain->base + j] = class - lock_classes;
1724 list_add_tail_rcu(&chain->entry, hash_head);
1725 debug_atomic_inc(&chain_lookup_misses);
1726 inc_chains();
1728 return 1;
1731 static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
1732 struct held_lock *hlock, int chain_head, u64 chain_key)
1735 * Trylock needs to maintain the stack of held locks, but it
1736 * does not add new dependencies, because trylock can be done
1737 * in any order.
1739 * We look up the chain_key and do the O(N^2) check and update of
1740 * the dependencies only if this is a new dependency chain.
1741 * (If lookup_chain_cache() returns with 1 it acquires
1742 * graph_lock for us)
1744 if (!hlock->trylock && (hlock->check == 2) &&
1745 lookup_chain_cache(curr, hlock, chain_key)) {
1747 * Check whether last held lock:
1749 * - is irq-safe, if this lock is irq-unsafe
1750 * - is softirq-safe, if this lock is hardirq-unsafe
1752 * And check whether the new lock's dependency graph
1753 * could lead back to the previous lock.
1755 * any of these scenarios could lead to a deadlock. If
1756 * All validations
1758 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1760 if (!ret)
1761 return 0;
1763 * Mark recursive read, as we jump over it when
1764 * building dependencies (just like we jump over
1765 * trylock entries):
1767 if (ret == 2)
1768 hlock->read = 2;
1770 * Add dependency only if this lock is not the head
1771 * of the chain, and if it's not a secondary read-lock:
1773 if (!chain_head && ret != 2)
1774 if (!check_prevs_add(curr, hlock))
1775 return 0;
1776 graph_unlock();
1777 } else
1778 /* after lookup_chain_cache(): */
1779 if (unlikely(!debug_locks))
1780 return 0;
1782 return 1;
1784 #else
1785 static inline int validate_chain(struct task_struct *curr,
1786 struct lockdep_map *lock, struct held_lock *hlock,
1787 int chain_head, u64 chain_key)
1789 return 1;
1791 #endif
1794 * We are building curr_chain_key incrementally, so double-check
1795 * it from scratch, to make sure that it's done correctly:
1797 static void check_chain_key(struct task_struct *curr)
1799 #ifdef CONFIG_DEBUG_LOCKDEP
1800 struct held_lock *hlock, *prev_hlock = NULL;
1801 unsigned int i, id;
1802 u64 chain_key = 0;
1804 for (i = 0; i < curr->lockdep_depth; i++) {
1805 hlock = curr->held_locks + i;
1806 if (chain_key != hlock->prev_chain_key) {
1807 debug_locks_off();
1808 WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1809 curr->lockdep_depth, i,
1810 (unsigned long long)chain_key,
1811 (unsigned long long)hlock->prev_chain_key);
1812 return;
1814 id = hlock->class_idx - 1;
1815 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1816 return;
1818 if (prev_hlock && (prev_hlock->irq_context !=
1819 hlock->irq_context))
1820 chain_key = 0;
1821 chain_key = iterate_chain_key(chain_key, id);
1822 prev_hlock = hlock;
1824 if (chain_key != curr->curr_chain_key) {
1825 debug_locks_off();
1826 WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1827 curr->lockdep_depth, i,
1828 (unsigned long long)chain_key,
1829 (unsigned long long)curr->curr_chain_key);
1831 #endif
1834 static int
1835 print_usage_bug(struct task_struct *curr, struct held_lock *this,
1836 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
1838 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1839 return 0;
1841 printk("\n=================================\n");
1842 printk( "[ INFO: inconsistent lock state ]\n");
1843 print_kernel_version();
1844 printk( "---------------------------------\n");
1846 printk("inconsistent {%s} -> {%s} usage.\n",
1847 usage_str[prev_bit], usage_str[new_bit]);
1849 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1850 curr->comm, task_pid_nr(curr),
1851 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
1852 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
1853 trace_hardirqs_enabled(curr),
1854 trace_softirqs_enabled(curr));
1855 print_lock(this);
1857 printk("{%s} state was registered at:\n", usage_str[prev_bit]);
1858 print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
1860 print_irqtrace_events(curr);
1861 printk("\nother info that might help us debug this:\n");
1862 lockdep_print_held_locks(curr);
1864 printk("\nstack backtrace:\n");
1865 dump_stack();
1867 return 0;
1871 * Print out an error if an invalid bit is set:
1873 static inline int
1874 valid_state(struct task_struct *curr, struct held_lock *this,
1875 enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
1877 if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
1878 return print_usage_bug(curr, this, bad_bit, new_bit);
1879 return 1;
1882 static int mark_lock(struct task_struct *curr, struct held_lock *this,
1883 enum lock_usage_bit new_bit);
1885 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
1888 * print irq inversion bug:
1890 static int
1891 print_irq_inversion_bug(struct task_struct *curr, struct lock_class *other,
1892 struct held_lock *this, int forwards,
1893 const char *irqclass)
1895 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1896 return 0;
1898 printk("\n=========================================================\n");
1899 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
1900 print_kernel_version();
1901 printk( "---------------------------------------------------------\n");
1902 printk("%s/%d just changed the state of lock:\n",
1903 curr->comm, task_pid_nr(curr));
1904 print_lock(this);
1905 if (forwards)
1906 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass);
1907 else
1908 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass);
1909 print_lock_name(other);
1910 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1912 printk("\nother info that might help us debug this:\n");
1913 lockdep_print_held_locks(curr);
1915 printk("\nthe first lock's dependencies:\n");
1916 print_lock_dependencies(hlock_class(this), 0);
1918 printk("\nthe second lock's dependencies:\n");
1919 print_lock_dependencies(other, 0);
1921 printk("\nstack backtrace:\n");
1922 dump_stack();
1924 return 0;
1928 * Prove that in the forwards-direction subgraph starting at <this>
1929 * there is no lock matching <mask>:
1931 static int
1932 check_usage_forwards(struct task_struct *curr, struct held_lock *this,
1933 enum lock_usage_bit bit, const char *irqclass)
1935 int ret;
1937 find_usage_bit = bit;
1938 /* fills in <forwards_match> */
1939 ret = find_usage_forwards(hlock_class(this), 0);
1940 if (!ret || ret == 1)
1941 return ret;
1943 return print_irq_inversion_bug(curr, forwards_match, this, 1, irqclass);
1947 * Prove that in the backwards-direction subgraph starting at <this>
1948 * there is no lock matching <mask>:
1950 static int
1951 check_usage_backwards(struct task_struct *curr, struct held_lock *this,
1952 enum lock_usage_bit bit, const char *irqclass)
1954 int ret;
1956 find_usage_bit = bit;
1957 /* fills in <backwards_match> */
1958 ret = find_usage_backwards(hlock_class(this), 0);
1959 if (!ret || ret == 1)
1960 return ret;
1962 return print_irq_inversion_bug(curr, backwards_match, this, 0, irqclass);
1965 void print_irqtrace_events(struct task_struct *curr)
1967 printk("irq event stamp: %u\n", curr->irq_events);
1968 printk("hardirqs last enabled at (%u): ", curr->hardirq_enable_event);
1969 print_ip_sym(curr->hardirq_enable_ip);
1970 printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
1971 print_ip_sym(curr->hardirq_disable_ip);
1972 printk("softirqs last enabled at (%u): ", curr->softirq_enable_event);
1973 print_ip_sym(curr->softirq_enable_ip);
1974 printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
1975 print_ip_sym(curr->softirq_disable_ip);
1978 static int HARDIRQ_verbose(struct lock_class *class)
1980 #if HARDIRQ_VERBOSE
1981 return class_filter(class);
1982 #endif
1983 return 0;
1986 static int SOFTIRQ_verbose(struct lock_class *class)
1988 #if SOFTIRQ_VERBOSE
1989 return class_filter(class);
1990 #endif
1991 return 0;
1994 static int RECLAIM_FS_verbose(struct lock_class *class)
1996 #if RECLAIM_VERBOSE
1997 return class_filter(class);
1998 #endif
1999 return 0;
2002 #define STRICT_READ_CHECKS 1
2004 static const char *state_names[] = {
2005 #define LOCKDEP_STATE(__STATE) \
2006 STR(__STATE),
2007 #include "lockdep_states.h"
2008 #undef LOCKDEP_STATE
2011 static inline const char *state_name(enum lock_usage_bit bit)
2013 return state_names[bit >> 2];
2016 static const char *state_rnames[] = {
2017 #define LOCKDEP_STATE(__STATE) \
2018 STR(__STATE)"-READ",
2019 #include "lockdep_states.h"
2020 #undef LOCKDEP_STATE
2023 static inline const char *state_rname(enum lock_usage_bit bit)
2025 return state_rnames[bit >> 2];
2028 static int (*state_verbose_f[])(struct lock_class *class) = {
2029 #define LOCKDEP_STATE(__STATE) \
2030 __STATE##_verbose,
2031 #include "lockdep_states.h"
2032 #undef LOCKDEP_STATE
2035 static inline int state_verbose(enum lock_usage_bit bit,
2036 struct lock_class *class)
2038 return state_verbose_f[bit >> 2](class);
2041 static int exclusive_bit(int new_bit)
2044 * USED_IN
2045 * USED_IN_READ
2046 * ENABLED
2047 * ENABLED_READ
2049 * bit 0 - write/read
2050 * bit 1 - used_in/enabled
2051 * bit 2+ state
2054 int state = new_bit & ~3;
2055 int dir = new_bit & 2;
2057 return state | (dir ^ 2);
2060 static int
2061 mark_lock_irq_used_in(struct task_struct *curr, struct held_lock *this,
2062 int new_bit)
2064 const char *name = state_name(new_bit);
2065 const char *rname = state_rname(new_bit);
2067 int excl_bit = exclusive_bit(new_bit);
2069 if (!valid_state(curr, this, new_bit, excl_bit))
2070 return 0;
2071 if (!valid_state(curr, this, new_bit, excl_bit + 1))
2072 return 0;
2074 * just marked it hardirq-safe, check that this lock
2075 * took no hardirq-unsafe lock in the past:
2077 if (!check_usage_forwards(curr, this, excl_bit, name))
2078 return 0;
2079 #if STRICT_READ_CHECKS
2081 * just marked it hardirq-safe, check that this lock
2082 * took no hardirq-unsafe-read lock in the past:
2084 if (!check_usage_forwards(curr, this, excl_bit + 1, rname))
2085 return 0;
2086 #endif
2087 if (state_verbose(new_bit, hlock_class(this)))
2088 return 2;
2090 return 1;
2093 static int
2094 mark_lock_irq_used_in_read(struct task_struct *curr, struct held_lock *this,
2095 int new_bit)
2097 const char *name = state_name(new_bit);
2098 const char *rname = state_rname(new_bit);
2100 int excl_bit = exclusive_bit(new_bit);
2102 if (!valid_state(curr, this, new_bit, excl_bit))
2103 return 0;
2105 * just marked it hardirq-read-safe, check that this lock
2106 * took no hardirq-unsafe lock in the past:
2108 if (!check_usage_forwards(curr, this, excl_bit, name))
2109 return 0;
2110 if (state_verbose(new_bit, hlock_class(this)))
2111 return 2;
2113 return 1;
2116 static int
2117 mark_lock_irq_enabled(struct task_struct *curr, struct held_lock *this,
2118 int new_bit)
2120 const char *name = state_name(new_bit);
2121 const char *rname = state_rname(new_bit);
2123 int excl_bit = exclusive_bit(new_bit);
2125 if (!valid_state(curr, this, new_bit, excl_bit))
2126 return 0;
2127 if (!valid_state(curr, this, new_bit, excl_bit + 1))
2128 return 0;
2130 * just marked it hardirq-unsafe, check that no hardirq-safe
2131 * lock in the system ever took it in the past:
2133 if (!check_usage_backwards(curr, this, excl_bit, name))
2134 return 0;
2135 #if STRICT_READ_CHECKS
2137 * just marked it hardirq-unsafe, check that no
2138 * hardirq-safe-read lock in the system ever took
2139 * it in the past:
2141 if (!check_usage_backwards(curr, this, excl_bit + 1, rname))
2142 return 0;
2143 #endif
2144 if (state_verbose(new_bit, hlock_class(this)))
2145 return 2;
2147 return 1;
2150 static int
2151 mark_lock_irq_enabled_read(struct task_struct *curr, struct held_lock *this,
2152 int new_bit)
2154 const char *name = state_name(new_bit);
2155 const char *rname = state_rname(new_bit);
2157 int excl_bit = exclusive_bit(new_bit);
2159 if (!valid_state(curr, this, new_bit, excl_bit))
2160 return 0;
2161 #if STRICT_READ_CHECKS
2163 * just marked it hardirq-read-unsafe, check that no
2164 * hardirq-safe lock in the system ever took it in the past:
2166 if (!check_usage_backwards(curr, this, excl_bit, name))
2167 return 0;
2168 #endif
2169 if (verbose(hlock_class(this)))
2170 return 2;
2172 return 1;
2175 static int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2176 enum lock_usage_bit new_bit)
2178 int ret = 1;
2180 switch(new_bit) {
2181 case LOCK_USED_IN_HARDIRQ:
2182 case LOCK_USED_IN_SOFTIRQ:
2183 case LOCK_USED_IN_RECLAIM_FS:
2184 return mark_lock_irq_used_in(curr, this, new_bit);
2186 case LOCK_USED_IN_HARDIRQ_READ:
2187 case LOCK_USED_IN_SOFTIRQ_READ:
2188 case LOCK_USED_IN_RECLAIM_FS_READ:
2189 return mark_lock_irq_used_in_read(curr, this, new_bit);
2191 case LOCK_ENABLED_HARDIRQ:
2192 case LOCK_ENABLED_SOFTIRQ:
2193 case LOCK_ENABLED_RECLAIM_FS:
2194 return mark_lock_irq_enabled(curr, this, new_bit);
2196 case LOCK_ENABLED_HARDIRQ_READ:
2197 case LOCK_ENABLED_SOFTIRQ_READ:
2198 case LOCK_ENABLED_RECLAIM_FS_READ:
2199 return mark_lock_irq_enabled_read(curr, this, new_bit);
2201 default:
2202 WARN_ON(1);
2203 break;
2206 return ret;
2209 enum mark_type {
2210 #define LOCKDEP_STATE(__STATE) __STATE,
2211 #include "lockdep_states.h"
2212 #undef LOCKDEP_STATE
2215 #define MARK_HELD_CASE(__STATE) \
2216 case __STATE: \
2217 if (hlock->read) \
2218 usage_bit = LOCK_ENABLED_##__STATE##_READ; \
2219 else \
2220 usage_bit = LOCK_ENABLED_##__STATE; \
2221 break;
2224 * Mark all held locks with a usage bit:
2226 static int
2227 mark_held_locks(struct task_struct *curr, enum mark_type mark)
2229 enum lock_usage_bit usage_bit;
2230 struct held_lock *hlock;
2231 int i;
2233 for (i = 0; i < curr->lockdep_depth; i++) {
2234 hlock = curr->held_locks + i;
2236 switch (mark) {
2237 #define LOCKDEP_STATE(__STATE) MARK_HELD_CASE(__STATE)
2238 #include "lockdep_states.h"
2239 #undef LOCKDEP_STATE
2240 default:
2241 BUG();
2244 if (!mark_lock(curr, hlock, usage_bit))
2245 return 0;
2248 return 1;
2252 * Debugging helper: via this flag we know that we are in
2253 * 'early bootup code', and will warn about any invalid irqs-on event:
2255 static int early_boot_irqs_enabled;
2257 void early_boot_irqs_off(void)
2259 early_boot_irqs_enabled = 0;
2262 void early_boot_irqs_on(void)
2264 early_boot_irqs_enabled = 1;
2268 * Hardirqs will be enabled:
2270 void trace_hardirqs_on_caller(unsigned long ip)
2272 struct task_struct *curr = current;
2274 time_hardirqs_on(CALLER_ADDR0, ip);
2276 if (unlikely(!debug_locks || current->lockdep_recursion))
2277 return;
2279 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2280 return;
2282 if (unlikely(curr->hardirqs_enabled)) {
2283 debug_atomic_inc(&redundant_hardirqs_on);
2284 return;
2286 /* we'll do an OFF -> ON transition: */
2287 curr->hardirqs_enabled = 1;
2289 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2290 return;
2291 if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2292 return;
2294 * We are going to turn hardirqs on, so set the
2295 * usage bit for all held locks:
2297 if (!mark_held_locks(curr, HARDIRQ))
2298 return;
2300 * If we have softirqs enabled, then set the usage
2301 * bit for all held locks. (disabled hardirqs prevented
2302 * this bit from being set before)
2304 if (curr->softirqs_enabled)
2305 if (!mark_held_locks(curr, SOFTIRQ))
2306 return;
2308 curr->hardirq_enable_ip = ip;
2309 curr->hardirq_enable_event = ++curr->irq_events;
2310 debug_atomic_inc(&hardirqs_on_events);
2312 EXPORT_SYMBOL(trace_hardirqs_on_caller);
2314 void trace_hardirqs_on(void)
2316 trace_hardirqs_on_caller(CALLER_ADDR0);
2318 EXPORT_SYMBOL(trace_hardirqs_on);
2321 * Hardirqs were disabled:
2323 void trace_hardirqs_off_caller(unsigned long ip)
2325 struct task_struct *curr = current;
2327 time_hardirqs_off(CALLER_ADDR0, ip);
2329 if (unlikely(!debug_locks || current->lockdep_recursion))
2330 return;
2332 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2333 return;
2335 if (curr->hardirqs_enabled) {
2337 * We have done an ON -> OFF transition:
2339 curr->hardirqs_enabled = 0;
2340 curr->hardirq_disable_ip = ip;
2341 curr->hardirq_disable_event = ++curr->irq_events;
2342 debug_atomic_inc(&hardirqs_off_events);
2343 } else
2344 debug_atomic_inc(&redundant_hardirqs_off);
2346 EXPORT_SYMBOL(trace_hardirqs_off_caller);
2348 void trace_hardirqs_off(void)
2350 trace_hardirqs_off_caller(CALLER_ADDR0);
2352 EXPORT_SYMBOL(trace_hardirqs_off);
2355 * Softirqs will be enabled:
2357 void trace_softirqs_on(unsigned long ip)
2359 struct task_struct *curr = current;
2361 if (unlikely(!debug_locks))
2362 return;
2364 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2365 return;
2367 if (curr->softirqs_enabled) {
2368 debug_atomic_inc(&redundant_softirqs_on);
2369 return;
2373 * We'll do an OFF -> ON transition:
2375 curr->softirqs_enabled = 1;
2376 curr->softirq_enable_ip = ip;
2377 curr->softirq_enable_event = ++curr->irq_events;
2378 debug_atomic_inc(&softirqs_on_events);
2380 * We are going to turn softirqs on, so set the
2381 * usage bit for all held locks, if hardirqs are
2382 * enabled too:
2384 if (curr->hardirqs_enabled)
2385 mark_held_locks(curr, SOFTIRQ);
2389 * Softirqs were disabled:
2391 void trace_softirqs_off(unsigned long ip)
2393 struct task_struct *curr = current;
2395 if (unlikely(!debug_locks))
2396 return;
2398 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2399 return;
2401 if (curr->softirqs_enabled) {
2403 * We have done an ON -> OFF transition:
2405 curr->softirqs_enabled = 0;
2406 curr->softirq_disable_ip = ip;
2407 curr->softirq_disable_event = ++curr->irq_events;
2408 debug_atomic_inc(&softirqs_off_events);
2409 DEBUG_LOCKS_WARN_ON(!softirq_count());
2410 } else
2411 debug_atomic_inc(&redundant_softirqs_off);
2414 void lockdep_trace_alloc(gfp_t gfp_mask)
2416 struct task_struct *curr = current;
2418 if (unlikely(!debug_locks))
2419 return;
2421 /* no reclaim without waiting on it */
2422 if (!(gfp_mask & __GFP_WAIT))
2423 return;
2425 /* this guy won't enter reclaim */
2426 if ((curr->flags & PF_MEMALLOC) && !(gfp_mask & __GFP_NOMEMALLOC))
2427 return;
2429 /* We're only interested __GFP_FS allocations for now */
2430 if (!(gfp_mask & __GFP_FS))
2431 return;
2433 if (DEBUG_LOCKS_WARN_ON(irqs_disabled()))
2434 return;
2436 mark_held_locks(curr, RECLAIM_FS);
2439 static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2442 * If non-trylock use in a hardirq or softirq context, then
2443 * mark the lock as used in these contexts:
2445 if (!hlock->trylock) {
2446 if (hlock->read) {
2447 if (curr->hardirq_context)
2448 if (!mark_lock(curr, hlock,
2449 LOCK_USED_IN_HARDIRQ_READ))
2450 return 0;
2451 if (curr->softirq_context)
2452 if (!mark_lock(curr, hlock,
2453 LOCK_USED_IN_SOFTIRQ_READ))
2454 return 0;
2455 } else {
2456 if (curr->hardirq_context)
2457 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2458 return 0;
2459 if (curr->softirq_context)
2460 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2461 return 0;
2464 if (!hlock->hardirqs_off) {
2465 if (hlock->read) {
2466 if (!mark_lock(curr, hlock,
2467 LOCK_ENABLED_HARDIRQ_READ))
2468 return 0;
2469 if (curr->softirqs_enabled)
2470 if (!mark_lock(curr, hlock,
2471 LOCK_ENABLED_SOFTIRQ_READ))
2472 return 0;
2473 } else {
2474 if (!mark_lock(curr, hlock,
2475 LOCK_ENABLED_HARDIRQ))
2476 return 0;
2477 if (curr->softirqs_enabled)
2478 if (!mark_lock(curr, hlock,
2479 LOCK_ENABLED_SOFTIRQ))
2480 return 0;
2485 * We reuse the irq context infrastructure more broadly as a general
2486 * context checking code. This tests GFP_FS recursion (a lock taken
2487 * during reclaim for a GFP_FS allocation is held over a GFP_FS
2488 * allocation).
2490 if (!hlock->trylock && (curr->lockdep_reclaim_gfp & __GFP_FS)) {
2491 if (hlock->read) {
2492 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS_READ))
2493 return 0;
2494 } else {
2495 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS))
2496 return 0;
2500 return 1;
2503 static int separate_irq_context(struct task_struct *curr,
2504 struct held_lock *hlock)
2506 unsigned int depth = curr->lockdep_depth;
2509 * Keep track of points where we cross into an interrupt context:
2511 hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2512 curr->softirq_context;
2513 if (depth) {
2514 struct held_lock *prev_hlock;
2516 prev_hlock = curr->held_locks + depth-1;
2518 * If we cross into another context, reset the
2519 * hash key (this also prevents the checking and the
2520 * adding of the dependency to 'prev'):
2522 if (prev_hlock->irq_context != hlock->irq_context)
2523 return 1;
2525 return 0;
2528 #else
2530 static inline
2531 int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2532 enum lock_usage_bit new_bit)
2534 WARN_ON(1);
2535 return 1;
2538 static inline int mark_irqflags(struct task_struct *curr,
2539 struct held_lock *hlock)
2541 return 1;
2544 static inline int separate_irq_context(struct task_struct *curr,
2545 struct held_lock *hlock)
2547 return 0;
2550 #endif
2553 * Mark a lock with a usage bit, and validate the state transition:
2555 static int mark_lock(struct task_struct *curr, struct held_lock *this,
2556 enum lock_usage_bit new_bit)
2558 unsigned int new_mask = 1 << new_bit, ret = 1;
2561 * If already set then do not dirty the cacheline,
2562 * nor do any checks:
2564 if (likely(hlock_class(this)->usage_mask & new_mask))
2565 return 1;
2567 if (!graph_lock())
2568 return 0;
2570 * Make sure we didnt race:
2572 if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
2573 graph_unlock();
2574 return 1;
2577 hlock_class(this)->usage_mask |= new_mask;
2579 if (!save_trace(hlock_class(this)->usage_traces + new_bit))
2580 return 0;
2582 switch (new_bit) {
2583 #define LOCKDEP_STATE(__STATE) \
2584 case LOCK_USED_IN_##__STATE: \
2585 case LOCK_USED_IN_##__STATE##_READ: \
2586 case LOCK_ENABLED_##__STATE: \
2587 case LOCK_ENABLED_##__STATE##_READ:
2588 #include "lockdep_states.h"
2589 #undef LOCKDEP_STATE
2590 ret = mark_lock_irq(curr, this, new_bit);
2591 if (!ret)
2592 return 0;
2593 break;
2594 case LOCK_USED:
2595 debug_atomic_dec(&nr_unused_locks);
2596 break;
2597 default:
2598 if (!debug_locks_off_graph_unlock())
2599 return 0;
2600 WARN_ON(1);
2601 return 0;
2604 graph_unlock();
2607 * We must printk outside of the graph_lock:
2609 if (ret == 2) {
2610 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2611 print_lock(this);
2612 print_irqtrace_events(curr);
2613 dump_stack();
2616 return ret;
2620 * Initialize a lock instance's lock-class mapping info:
2622 void lockdep_init_map(struct lockdep_map *lock, const char *name,
2623 struct lock_class_key *key, int subclass)
2625 if (unlikely(!debug_locks))
2626 return;
2628 if (DEBUG_LOCKS_WARN_ON(!key))
2629 return;
2630 if (DEBUG_LOCKS_WARN_ON(!name))
2631 return;
2633 * Sanity check, the lock-class key must be persistent:
2635 if (!static_obj(key)) {
2636 printk("BUG: key %p not in .data!\n", key);
2637 DEBUG_LOCKS_WARN_ON(1);
2638 return;
2640 lock->name = name;
2641 lock->key = key;
2642 lock->class_cache = NULL;
2643 #ifdef CONFIG_LOCK_STAT
2644 lock->cpu = raw_smp_processor_id();
2645 #endif
2646 if (subclass)
2647 register_lock_class(lock, subclass, 1);
2649 EXPORT_SYMBOL_GPL(lockdep_init_map);
2652 * This gets called for every mutex_lock*()/spin_lock*() operation.
2653 * We maintain the dependency maps and validate the locking attempt:
2655 static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2656 int trylock, int read, int check, int hardirqs_off,
2657 struct lockdep_map *nest_lock, unsigned long ip)
2659 struct task_struct *curr = current;
2660 struct lock_class *class = NULL;
2661 struct held_lock *hlock;
2662 unsigned int depth, id;
2663 int chain_head = 0;
2664 u64 chain_key;
2666 if (!prove_locking)
2667 check = 1;
2669 if (unlikely(!debug_locks))
2670 return 0;
2672 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2673 return 0;
2675 if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2676 debug_locks_off();
2677 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2678 printk("turning off the locking correctness validator.\n");
2679 return 0;
2682 if (!subclass)
2683 class = lock->class_cache;
2685 * Not cached yet or subclass?
2687 if (unlikely(!class)) {
2688 class = register_lock_class(lock, subclass, 0);
2689 if (!class)
2690 return 0;
2692 debug_atomic_inc((atomic_t *)&class->ops);
2693 if (very_verbose(class)) {
2694 printk("\nacquire class [%p] %s", class->key, class->name);
2695 if (class->name_version > 1)
2696 printk("#%d", class->name_version);
2697 printk("\n");
2698 dump_stack();
2702 * Add the lock to the list of currently held locks.
2703 * (we dont increase the depth just yet, up until the
2704 * dependency checks are done)
2706 depth = curr->lockdep_depth;
2707 if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2708 return 0;
2710 hlock = curr->held_locks + depth;
2711 if (DEBUG_LOCKS_WARN_ON(!class))
2712 return 0;
2713 hlock->class_idx = class - lock_classes + 1;
2714 hlock->acquire_ip = ip;
2715 hlock->instance = lock;
2716 hlock->nest_lock = nest_lock;
2717 hlock->trylock = trylock;
2718 hlock->read = read;
2719 hlock->check = check;
2720 hlock->hardirqs_off = !!hardirqs_off;
2721 #ifdef CONFIG_LOCK_STAT
2722 hlock->waittime_stamp = 0;
2723 hlock->holdtime_stamp = sched_clock();
2724 #endif
2726 if (check == 2 && !mark_irqflags(curr, hlock))
2727 return 0;
2729 /* mark it as used: */
2730 if (!mark_lock(curr, hlock, LOCK_USED))
2731 return 0;
2734 * Calculate the chain hash: it's the combined hash of all the
2735 * lock keys along the dependency chain. We save the hash value
2736 * at every step so that we can get the current hash easily
2737 * after unlock. The chain hash is then used to cache dependency
2738 * results.
2740 * The 'key ID' is what is the most compact key value to drive
2741 * the hash, not class->key.
2743 id = class - lock_classes;
2744 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2745 return 0;
2747 chain_key = curr->curr_chain_key;
2748 if (!depth) {
2749 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2750 return 0;
2751 chain_head = 1;
2754 hlock->prev_chain_key = chain_key;
2755 if (separate_irq_context(curr, hlock)) {
2756 chain_key = 0;
2757 chain_head = 1;
2759 chain_key = iterate_chain_key(chain_key, id);
2761 if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
2762 return 0;
2764 curr->curr_chain_key = chain_key;
2765 curr->lockdep_depth++;
2766 check_chain_key(curr);
2767 #ifdef CONFIG_DEBUG_LOCKDEP
2768 if (unlikely(!debug_locks))
2769 return 0;
2770 #endif
2771 if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2772 debug_locks_off();
2773 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2774 printk("turning off the locking correctness validator.\n");
2775 return 0;
2778 if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2779 max_lockdep_depth = curr->lockdep_depth;
2781 return 1;
2784 static int
2785 print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2786 unsigned long ip)
2788 if (!debug_locks_off())
2789 return 0;
2790 if (debug_locks_silent)
2791 return 0;
2793 printk("\n=====================================\n");
2794 printk( "[ BUG: bad unlock balance detected! ]\n");
2795 printk( "-------------------------------------\n");
2796 printk("%s/%d is trying to release lock (",
2797 curr->comm, task_pid_nr(curr));
2798 print_lockdep_cache(lock);
2799 printk(") at:\n");
2800 print_ip_sym(ip);
2801 printk("but there are no more locks to release!\n");
2802 printk("\nother info that might help us debug this:\n");
2803 lockdep_print_held_locks(curr);
2805 printk("\nstack backtrace:\n");
2806 dump_stack();
2808 return 0;
2812 * Common debugging checks for both nested and non-nested unlock:
2814 static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2815 unsigned long ip)
2817 if (unlikely(!debug_locks))
2818 return 0;
2819 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2820 return 0;
2822 if (curr->lockdep_depth <= 0)
2823 return print_unlock_inbalance_bug(curr, lock, ip);
2825 return 1;
2828 static int
2829 __lock_set_class(struct lockdep_map *lock, const char *name,
2830 struct lock_class_key *key, unsigned int subclass,
2831 unsigned long ip)
2833 struct task_struct *curr = current;
2834 struct held_lock *hlock, *prev_hlock;
2835 struct lock_class *class;
2836 unsigned int depth;
2837 int i;
2839 depth = curr->lockdep_depth;
2840 if (DEBUG_LOCKS_WARN_ON(!depth))
2841 return 0;
2843 prev_hlock = NULL;
2844 for (i = depth-1; i >= 0; i--) {
2845 hlock = curr->held_locks + i;
2847 * We must not cross into another context:
2849 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2850 break;
2851 if (hlock->instance == lock)
2852 goto found_it;
2853 prev_hlock = hlock;
2855 return print_unlock_inbalance_bug(curr, lock, ip);
2857 found_it:
2858 lockdep_init_map(lock, name, key, 0);
2859 class = register_lock_class(lock, subclass, 0);
2860 hlock->class_idx = class - lock_classes + 1;
2862 curr->lockdep_depth = i;
2863 curr->curr_chain_key = hlock->prev_chain_key;
2865 for (; i < depth; i++) {
2866 hlock = curr->held_locks + i;
2867 if (!__lock_acquire(hlock->instance,
2868 hlock_class(hlock)->subclass, hlock->trylock,
2869 hlock->read, hlock->check, hlock->hardirqs_off,
2870 hlock->nest_lock, hlock->acquire_ip))
2871 return 0;
2874 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
2875 return 0;
2876 return 1;
2880 * Remove the lock to the list of currently held locks in a
2881 * potentially non-nested (out of order) manner. This is a
2882 * relatively rare operation, as all the unlock APIs default
2883 * to nested mode (which uses lock_release()):
2885 static int
2886 lock_release_non_nested(struct task_struct *curr,
2887 struct lockdep_map *lock, unsigned long ip)
2889 struct held_lock *hlock, *prev_hlock;
2890 unsigned int depth;
2891 int i;
2894 * Check whether the lock exists in the current stack
2895 * of held locks:
2897 depth = curr->lockdep_depth;
2898 if (DEBUG_LOCKS_WARN_ON(!depth))
2899 return 0;
2901 prev_hlock = NULL;
2902 for (i = depth-1; i >= 0; i--) {
2903 hlock = curr->held_locks + i;
2905 * We must not cross into another context:
2907 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2908 break;
2909 if (hlock->instance == lock)
2910 goto found_it;
2911 prev_hlock = hlock;
2913 return print_unlock_inbalance_bug(curr, lock, ip);
2915 found_it:
2916 lock_release_holdtime(hlock);
2919 * We have the right lock to unlock, 'hlock' points to it.
2920 * Now we remove it from the stack, and add back the other
2921 * entries (if any), recalculating the hash along the way:
2923 curr->lockdep_depth = i;
2924 curr->curr_chain_key = hlock->prev_chain_key;
2926 for (i++; i < depth; i++) {
2927 hlock = curr->held_locks + i;
2928 if (!__lock_acquire(hlock->instance,
2929 hlock_class(hlock)->subclass, hlock->trylock,
2930 hlock->read, hlock->check, hlock->hardirqs_off,
2931 hlock->nest_lock, hlock->acquire_ip))
2932 return 0;
2935 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
2936 return 0;
2937 return 1;
2941 * Remove the lock to the list of currently held locks - this gets
2942 * called on mutex_unlock()/spin_unlock*() (or on a failed
2943 * mutex_lock_interruptible()). This is done for unlocks that nest
2944 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2946 static int lock_release_nested(struct task_struct *curr,
2947 struct lockdep_map *lock, unsigned long ip)
2949 struct held_lock *hlock;
2950 unsigned int depth;
2953 * Pop off the top of the lock stack:
2955 depth = curr->lockdep_depth - 1;
2956 hlock = curr->held_locks + depth;
2959 * Is the unlock non-nested:
2961 if (hlock->instance != lock)
2962 return lock_release_non_nested(curr, lock, ip);
2963 curr->lockdep_depth--;
2965 if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
2966 return 0;
2968 curr->curr_chain_key = hlock->prev_chain_key;
2970 lock_release_holdtime(hlock);
2972 #ifdef CONFIG_DEBUG_LOCKDEP
2973 hlock->prev_chain_key = 0;
2974 hlock->class_idx = 0;
2975 hlock->acquire_ip = 0;
2976 hlock->irq_context = 0;
2977 #endif
2978 return 1;
2982 * Remove the lock to the list of currently held locks - this gets
2983 * called on mutex_unlock()/spin_unlock*() (or on a failed
2984 * mutex_lock_interruptible()). This is done for unlocks that nest
2985 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2987 static void
2988 __lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2990 struct task_struct *curr = current;
2992 if (!check_unlock(curr, lock, ip))
2993 return;
2995 if (nested) {
2996 if (!lock_release_nested(curr, lock, ip))
2997 return;
2998 } else {
2999 if (!lock_release_non_nested(curr, lock, ip))
3000 return;
3003 check_chain_key(curr);
3007 * Check whether we follow the irq-flags state precisely:
3009 static void check_flags(unsigned long flags)
3011 #if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3012 defined(CONFIG_TRACE_IRQFLAGS)
3013 if (!debug_locks)
3014 return;
3016 if (irqs_disabled_flags(flags)) {
3017 if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3018 printk("possible reason: unannotated irqs-off.\n");
3020 } else {
3021 if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3022 printk("possible reason: unannotated irqs-on.\n");
3027 * We dont accurately track softirq state in e.g.
3028 * hardirq contexts (such as on 4KSTACKS), so only
3029 * check if not in hardirq contexts:
3031 if (!hardirq_count()) {
3032 if (softirq_count())
3033 DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3034 else
3035 DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3038 if (!debug_locks)
3039 print_irqtrace_events(current);
3040 #endif
3043 void lock_set_class(struct lockdep_map *lock, const char *name,
3044 struct lock_class_key *key, unsigned int subclass,
3045 unsigned long ip)
3047 unsigned long flags;
3049 if (unlikely(current->lockdep_recursion))
3050 return;
3052 raw_local_irq_save(flags);
3053 current->lockdep_recursion = 1;
3054 check_flags(flags);
3055 if (__lock_set_class(lock, name, key, subclass, ip))
3056 check_chain_key(current);
3057 current->lockdep_recursion = 0;
3058 raw_local_irq_restore(flags);
3060 EXPORT_SYMBOL_GPL(lock_set_class);
3063 * We are not always called with irqs disabled - do that here,
3064 * and also avoid lockdep recursion:
3066 void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3067 int trylock, int read, int check,
3068 struct lockdep_map *nest_lock, unsigned long ip)
3070 unsigned long flags;
3072 if (unlikely(current->lockdep_recursion))
3073 return;
3075 raw_local_irq_save(flags);
3076 check_flags(flags);
3078 current->lockdep_recursion = 1;
3079 __lock_acquire(lock, subclass, trylock, read, check,
3080 irqs_disabled_flags(flags), nest_lock, ip);
3081 current->lockdep_recursion = 0;
3082 raw_local_irq_restore(flags);
3084 EXPORT_SYMBOL_GPL(lock_acquire);
3086 void lock_release(struct lockdep_map *lock, int nested,
3087 unsigned long ip)
3089 unsigned long flags;
3091 if (unlikely(current->lockdep_recursion))
3092 return;
3094 raw_local_irq_save(flags);
3095 check_flags(flags);
3096 current->lockdep_recursion = 1;
3097 __lock_release(lock, nested, ip);
3098 current->lockdep_recursion = 0;
3099 raw_local_irq_restore(flags);
3101 EXPORT_SYMBOL_GPL(lock_release);
3103 void lockdep_set_current_reclaim_state(gfp_t gfp_mask)
3105 current->lockdep_reclaim_gfp = gfp_mask;
3108 void lockdep_clear_current_reclaim_state(void)
3110 current->lockdep_reclaim_gfp = 0;
3113 #ifdef CONFIG_LOCK_STAT
3114 static int
3115 print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
3116 unsigned long ip)
3118 if (!debug_locks_off())
3119 return 0;
3120 if (debug_locks_silent)
3121 return 0;
3123 printk("\n=================================\n");
3124 printk( "[ BUG: bad contention detected! ]\n");
3125 printk( "---------------------------------\n");
3126 printk("%s/%d is trying to contend lock (",
3127 curr->comm, task_pid_nr(curr));
3128 print_lockdep_cache(lock);
3129 printk(") at:\n");
3130 print_ip_sym(ip);
3131 printk("but there are no locks held!\n");
3132 printk("\nother info that might help us debug this:\n");
3133 lockdep_print_held_locks(curr);
3135 printk("\nstack backtrace:\n");
3136 dump_stack();
3138 return 0;
3141 static void
3142 __lock_contended(struct lockdep_map *lock, unsigned long ip)
3144 struct task_struct *curr = current;
3145 struct held_lock *hlock, *prev_hlock;
3146 struct lock_class_stats *stats;
3147 unsigned int depth;
3148 int i, contention_point, contending_point;
3150 depth = curr->lockdep_depth;
3151 if (DEBUG_LOCKS_WARN_ON(!depth))
3152 return;
3154 prev_hlock = NULL;
3155 for (i = depth-1; i >= 0; i--) {
3156 hlock = curr->held_locks + i;
3158 * We must not cross into another context:
3160 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3161 break;
3162 if (hlock->instance == lock)
3163 goto found_it;
3164 prev_hlock = hlock;
3166 print_lock_contention_bug(curr, lock, ip);
3167 return;
3169 found_it:
3170 hlock->waittime_stamp = sched_clock();
3172 contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
3173 contending_point = lock_point(hlock_class(hlock)->contending_point,
3174 lock->ip);
3176 stats = get_lock_stats(hlock_class(hlock));
3177 if (contention_point < LOCKSTAT_POINTS)
3178 stats->contention_point[contention_point]++;
3179 if (contending_point < LOCKSTAT_POINTS)
3180 stats->contending_point[contending_point]++;
3181 if (lock->cpu != smp_processor_id())
3182 stats->bounces[bounce_contended + !!hlock->read]++;
3183 put_lock_stats(stats);
3186 static void
3187 __lock_acquired(struct lockdep_map *lock, unsigned long ip)
3189 struct task_struct *curr = current;
3190 struct held_lock *hlock, *prev_hlock;
3191 struct lock_class_stats *stats;
3192 unsigned int depth;
3193 u64 now;
3194 s64 waittime = 0;
3195 int i, cpu;
3197 depth = curr->lockdep_depth;
3198 if (DEBUG_LOCKS_WARN_ON(!depth))
3199 return;
3201 prev_hlock = NULL;
3202 for (i = depth-1; i >= 0; i--) {
3203 hlock = curr->held_locks + i;
3205 * We must not cross into another context:
3207 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3208 break;
3209 if (hlock->instance == lock)
3210 goto found_it;
3211 prev_hlock = hlock;
3213 print_lock_contention_bug(curr, lock, _RET_IP_);
3214 return;
3216 found_it:
3217 cpu = smp_processor_id();
3218 if (hlock->waittime_stamp) {
3219 now = sched_clock();
3220 waittime = now - hlock->waittime_stamp;
3221 hlock->holdtime_stamp = now;
3224 stats = get_lock_stats(hlock_class(hlock));
3225 if (waittime) {
3226 if (hlock->read)
3227 lock_time_inc(&stats->read_waittime, waittime);
3228 else
3229 lock_time_inc(&stats->write_waittime, waittime);
3231 if (lock->cpu != cpu)
3232 stats->bounces[bounce_acquired + !!hlock->read]++;
3233 put_lock_stats(stats);
3235 lock->cpu = cpu;
3236 lock->ip = ip;
3239 void lock_contended(struct lockdep_map *lock, unsigned long ip)
3241 unsigned long flags;
3243 if (unlikely(!lock_stat))
3244 return;
3246 if (unlikely(current->lockdep_recursion))
3247 return;
3249 raw_local_irq_save(flags);
3250 check_flags(flags);
3251 current->lockdep_recursion = 1;
3252 __lock_contended(lock, ip);
3253 current->lockdep_recursion = 0;
3254 raw_local_irq_restore(flags);
3256 EXPORT_SYMBOL_GPL(lock_contended);
3258 void lock_acquired(struct lockdep_map *lock, unsigned long ip)
3260 unsigned long flags;
3262 if (unlikely(!lock_stat))
3263 return;
3265 if (unlikely(current->lockdep_recursion))
3266 return;
3268 raw_local_irq_save(flags);
3269 check_flags(flags);
3270 current->lockdep_recursion = 1;
3271 __lock_acquired(lock, ip);
3272 current->lockdep_recursion = 0;
3273 raw_local_irq_restore(flags);
3275 EXPORT_SYMBOL_GPL(lock_acquired);
3276 #endif
3279 * Used by the testsuite, sanitize the validator state
3280 * after a simulated failure:
3283 void lockdep_reset(void)
3285 unsigned long flags;
3286 int i;
3288 raw_local_irq_save(flags);
3289 current->curr_chain_key = 0;
3290 current->lockdep_depth = 0;
3291 current->lockdep_recursion = 0;
3292 memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
3293 nr_hardirq_chains = 0;
3294 nr_softirq_chains = 0;
3295 nr_process_chains = 0;
3296 debug_locks = 1;
3297 for (i = 0; i < CHAINHASH_SIZE; i++)
3298 INIT_LIST_HEAD(chainhash_table + i);
3299 raw_local_irq_restore(flags);
3302 static void zap_class(struct lock_class *class)
3304 int i;
3307 * Remove all dependencies this lock is
3308 * involved in:
3310 for (i = 0; i < nr_list_entries; i++) {
3311 if (list_entries[i].class == class)
3312 list_del_rcu(&list_entries[i].entry);
3315 * Unhash the class and remove it from the all_lock_classes list:
3317 list_del_rcu(&class->hash_entry);
3318 list_del_rcu(&class->lock_entry);
3320 class->key = NULL;
3323 static inline int within(const void *addr, void *start, unsigned long size)
3325 return addr >= start && addr < start + size;
3328 void lockdep_free_key_range(void *start, unsigned long size)
3330 struct lock_class *class, *next;
3331 struct list_head *head;
3332 unsigned long flags;
3333 int i;
3334 int locked;
3336 raw_local_irq_save(flags);
3337 locked = graph_lock();
3340 * Unhash all classes that were created by this module:
3342 for (i = 0; i < CLASSHASH_SIZE; i++) {
3343 head = classhash_table + i;
3344 if (list_empty(head))
3345 continue;
3346 list_for_each_entry_safe(class, next, head, hash_entry) {
3347 if (within(class->key, start, size))
3348 zap_class(class);
3349 else if (within(class->name, start, size))
3350 zap_class(class);
3354 if (locked)
3355 graph_unlock();
3356 raw_local_irq_restore(flags);
3359 void lockdep_reset_lock(struct lockdep_map *lock)
3361 struct lock_class *class, *next;
3362 struct list_head *head;
3363 unsigned long flags;
3364 int i, j;
3365 int locked;
3367 raw_local_irq_save(flags);
3370 * Remove all classes this lock might have:
3372 for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
3374 * If the class exists we look it up and zap it:
3376 class = look_up_lock_class(lock, j);
3377 if (class)
3378 zap_class(class);
3381 * Debug check: in the end all mapped classes should
3382 * be gone.
3384 locked = graph_lock();
3385 for (i = 0; i < CLASSHASH_SIZE; i++) {
3386 head = classhash_table + i;
3387 if (list_empty(head))
3388 continue;
3389 list_for_each_entry_safe(class, next, head, hash_entry) {
3390 if (unlikely(class == lock->class_cache)) {
3391 if (debug_locks_off_graph_unlock())
3392 WARN_ON(1);
3393 goto out_restore;
3397 if (locked)
3398 graph_unlock();
3400 out_restore:
3401 raw_local_irq_restore(flags);
3404 void lockdep_init(void)
3406 int i;
3409 * Some architectures have their own start_kernel()
3410 * code which calls lockdep_init(), while we also
3411 * call lockdep_init() from the start_kernel() itself,
3412 * and we want to initialize the hashes only once:
3414 if (lockdep_initialized)
3415 return;
3417 for (i = 0; i < CLASSHASH_SIZE; i++)
3418 INIT_LIST_HEAD(classhash_table + i);
3420 for (i = 0; i < CHAINHASH_SIZE; i++)
3421 INIT_LIST_HEAD(chainhash_table + i);
3423 lockdep_initialized = 1;
3426 void __init lockdep_info(void)
3428 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3430 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES);
3431 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH);
3432 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS);
3433 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE);
3434 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES);
3435 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS);
3436 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE);
3438 printk(" memory used by lock dependency info: %lu kB\n",
3439 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3440 sizeof(struct list_head) * CLASSHASH_SIZE +
3441 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3442 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
3443 sizeof(struct list_head) * CHAINHASH_SIZE) / 1024);
3445 printk(" per task-struct memory footprint: %lu bytes\n",
3446 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3448 #ifdef CONFIG_DEBUG_LOCKDEP
3449 if (lockdep_init_error) {
3450 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3451 printk("Call stack leading to lockdep invocation was:\n");
3452 print_stack_trace(&lockdep_init_trace, 0);
3454 #endif
3457 static void
3458 print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
3459 const void *mem_to, struct held_lock *hlock)
3461 if (!debug_locks_off())
3462 return;
3463 if (debug_locks_silent)
3464 return;
3466 printk("\n=========================\n");
3467 printk( "[ BUG: held lock freed! ]\n");
3468 printk( "-------------------------\n");
3469 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
3470 curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
3471 print_lock(hlock);
3472 lockdep_print_held_locks(curr);
3474 printk("\nstack backtrace:\n");
3475 dump_stack();
3478 static inline int not_in_range(const void* mem_from, unsigned long mem_len,
3479 const void* lock_from, unsigned long lock_len)
3481 return lock_from + lock_len <= mem_from ||
3482 mem_from + mem_len <= lock_from;
3486 * Called when kernel memory is freed (or unmapped), or if a lock
3487 * is destroyed or reinitialized - this code checks whether there is
3488 * any held lock in the memory range of <from> to <to>:
3490 void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3492 struct task_struct *curr = current;
3493 struct held_lock *hlock;
3494 unsigned long flags;
3495 int i;
3497 if (unlikely(!debug_locks))
3498 return;
3500 local_irq_save(flags);
3501 for (i = 0; i < curr->lockdep_depth; i++) {
3502 hlock = curr->held_locks + i;
3504 if (not_in_range(mem_from, mem_len, hlock->instance,
3505 sizeof(*hlock->instance)))
3506 continue;
3508 print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
3509 break;
3511 local_irq_restore(flags);
3513 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
3515 static void print_held_locks_bug(struct task_struct *curr)
3517 if (!debug_locks_off())
3518 return;
3519 if (debug_locks_silent)
3520 return;
3522 printk("\n=====================================\n");
3523 printk( "[ BUG: lock held at task exit time! ]\n");
3524 printk( "-------------------------------------\n");
3525 printk("%s/%d is exiting with locks still held!\n",
3526 curr->comm, task_pid_nr(curr));
3527 lockdep_print_held_locks(curr);
3529 printk("\nstack backtrace:\n");
3530 dump_stack();
3533 void debug_check_no_locks_held(struct task_struct *task)
3535 if (unlikely(task->lockdep_depth > 0))
3536 print_held_locks_bug(task);
3539 void debug_show_all_locks(void)
3541 struct task_struct *g, *p;
3542 int count = 10;
3543 int unlock = 1;
3545 if (unlikely(!debug_locks)) {
3546 printk("INFO: lockdep is turned off.\n");
3547 return;
3549 printk("\nShowing all locks held in the system:\n");
3552 * Here we try to get the tasklist_lock as hard as possible,
3553 * if not successful after 2 seconds we ignore it (but keep
3554 * trying). This is to enable a debug printout even if a
3555 * tasklist_lock-holding task deadlocks or crashes.
3557 retry:
3558 if (!read_trylock(&tasklist_lock)) {
3559 if (count == 10)
3560 printk("hm, tasklist_lock locked, retrying... ");
3561 if (count) {
3562 count--;
3563 printk(" #%d", 10-count);
3564 mdelay(200);
3565 goto retry;
3567 printk(" ignoring it.\n");
3568 unlock = 0;
3569 } else {
3570 if (count != 10)
3571 printk(KERN_CONT " locked it.\n");
3574 do_each_thread(g, p) {
3576 * It's not reliable to print a task's held locks
3577 * if it's not sleeping (or if it's not the current
3578 * task):
3580 if (p->state == TASK_RUNNING && p != current)
3581 continue;
3582 if (p->lockdep_depth)
3583 lockdep_print_held_locks(p);
3584 if (!unlock)
3585 if (read_trylock(&tasklist_lock))
3586 unlock = 1;
3587 } while_each_thread(g, p);
3589 printk("\n");
3590 printk("=============================================\n\n");
3592 if (unlock)
3593 read_unlock(&tasklist_lock);
3595 EXPORT_SYMBOL_GPL(debug_show_all_locks);
3598 * Careful: only use this function if you are sure that
3599 * the task cannot run in parallel!
3601 void __debug_show_held_locks(struct task_struct *task)
3603 if (unlikely(!debug_locks)) {
3604 printk("INFO: lockdep is turned off.\n");
3605 return;
3607 lockdep_print_held_locks(task);
3609 EXPORT_SYMBOL_GPL(__debug_show_held_locks);
3611 void debug_show_held_locks(struct task_struct *task)
3613 __debug_show_held_locks(task);
3615 EXPORT_SYMBOL_GPL(debug_show_held_locks);
3617 void lockdep_sys_exit(void)
3619 struct task_struct *curr = current;
3621 if (unlikely(curr->lockdep_depth)) {
3622 if (!debug_locks_off())
3623 return;
3624 printk("\n================================================\n");
3625 printk( "[ BUG: lock held when returning to user space! ]\n");
3626 printk( "------------------------------------------------\n");
3627 printk("%s/%d is leaving the kernel with locks still held!\n",
3628 curr->comm, curr->pid);
3629 lockdep_print_held_locks(curr);