lockdep: various fixes
[safe/jmp/linux-2.6] / kernel / lockdep.c
1 /*
2  * kernel/lockdep.c
3  *
4  * Runtime locking correctness validator
5  *
6  * Started by Ingo Molnar:
7  *
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>
10  *
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:
13  *
14  * - lock inversion scenarios
15  * - circular lock dependencies
16  * - hardirq/softirq safe/unsafe locking bugs
17  *
18  * Bugs are reported even if the current locking scenario does not cause
19  * any deadlock at this point.
20  *
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.
24  *
25  * Thanks to Arjan van de Ven for coming up with the initial idea of
26  * mapping lock dependencies runtime.
27  */
28 #include <linux/mutex.h>
29 #include <linux/sched.h>
30 #include <linux/delay.h>
31 #include <linux/module.h>
32 #include <linux/proc_fs.h>
33 #include <linux/seq_file.h>
34 #include <linux/spinlock.h>
35 #include <linux/kallsyms.h>
36 #include <linux/interrupt.h>
37 #include <linux/stacktrace.h>
38 #include <linux/debug_locks.h>
39 #include <linux/irqflags.h>
40 #include <linux/utsname.h>
41 #include <linux/hash.h>
42
43 #include <asm/sections.h>
44
45 #include "lockdep_internals.h"
46
47 #ifdef CONFIG_PROVE_LOCKING
48 int prove_locking = 1;
49 module_param(prove_locking, int, 0644);
50 #else
51 #define prove_locking 0
52 #endif
53
54 #ifdef CONFIG_LOCK_STAT
55 int lock_stat = 1;
56 module_param(lock_stat, int, 0644);
57 #else
58 #define lock_stat 0
59 #endif
60
61 /*
62  * lockdep_lock: protects the lockdep graph, the hashes and the
63  *               class/list/hash allocators.
64  *
65  * This is one of the rare exceptions where it's justified
66  * to use a raw spinlock - we really dont want the spinlock
67  * code to recurse back into the lockdep code...
68  */
69 static raw_spinlock_t lockdep_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
70
71 static int graph_lock(void)
72 {
73         __raw_spin_lock(&lockdep_lock);
74         /*
75          * Make sure that if another CPU detected a bug while
76          * walking the graph we dont change it (while the other
77          * CPU is busy printing out stuff with the graph lock
78          * dropped already)
79          */
80         if (!debug_locks) {
81                 __raw_spin_unlock(&lockdep_lock);
82                 return 0;
83         }
84         return 1;
85 }
86
87 static inline int graph_unlock(void)
88 {
89         if (debug_locks && !__raw_spin_is_locked(&lockdep_lock))
90                 return DEBUG_LOCKS_WARN_ON(1);
91
92         __raw_spin_unlock(&lockdep_lock);
93         return 0;
94 }
95
96 /*
97  * Turn lock debugging off and return with 0 if it was off already,
98  * and also release the graph lock:
99  */
100 static inline int debug_locks_off_graph_unlock(void)
101 {
102         int ret = debug_locks_off();
103
104         __raw_spin_unlock(&lockdep_lock);
105
106         return ret;
107 }
108
109 static int lockdep_initialized;
110
111 unsigned long nr_list_entries;
112 static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
113
114 /*
115  * All data structures here are protected by the global debug_lock.
116  *
117  * Mutex key structs only get allocated, once during bootup, and never
118  * get freed - this significantly simplifies the debugging code.
119  */
120 unsigned long nr_lock_classes;
121 static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
122
123 #ifdef CONFIG_LOCK_STAT
124 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], lock_stats);
125
126 static int lock_contention_point(struct lock_class *class, unsigned long ip)
127 {
128         int i;
129
130         for (i = 0; i < ARRAY_SIZE(class->contention_point); i++) {
131                 if (class->contention_point[i] == 0) {
132                         class->contention_point[i] = ip;
133                         break;
134                 }
135                 if (class->contention_point[i] == ip)
136                         break;
137         }
138
139         return i;
140 }
141
142 static void lock_time_inc(struct lock_time *lt, s64 time)
143 {
144         if (time > lt->max)
145                 lt->max = time;
146
147         if (time < lt->min || !lt->min)
148                 lt->min = time;
149
150         lt->total += time;
151         lt->nr++;
152 }
153
154 static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
155 {
156         dst->min += src->min;
157         dst->max += src->max;
158         dst->total += src->total;
159         dst->nr += src->nr;
160 }
161
162 struct lock_class_stats lock_stats(struct lock_class *class)
163 {
164         struct lock_class_stats stats;
165         int cpu, i;
166
167         memset(&stats, 0, sizeof(struct lock_class_stats));
168         for_each_possible_cpu(cpu) {
169                 struct lock_class_stats *pcs =
170                         &per_cpu(lock_stats, cpu)[class - lock_classes];
171
172                 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
173                         stats.contention_point[i] += pcs->contention_point[i];
174
175                 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
176                 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
177
178                 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
179                 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
180         }
181
182         return stats;
183 }
184
185 void clear_lock_stats(struct lock_class *class)
186 {
187         int cpu;
188
189         for_each_possible_cpu(cpu) {
190                 struct lock_class_stats *cpu_stats =
191                         &per_cpu(lock_stats, cpu)[class - lock_classes];
192
193                 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
194         }
195         memset(class->contention_point, 0, sizeof(class->contention_point));
196 }
197
198 static struct lock_class_stats *get_lock_stats(struct lock_class *class)
199 {
200         return &get_cpu_var(lock_stats)[class - lock_classes];
201 }
202
203 static void put_lock_stats(struct lock_class_stats *stats)
204 {
205         put_cpu_var(lock_stats);
206 }
207
208 static void lock_release_holdtime(struct held_lock *hlock)
209 {
210         struct lock_class_stats *stats;
211         s64 holdtime;
212
213         if (!lock_stat)
214                 return;
215
216         holdtime = sched_clock() - hlock->holdtime_stamp;
217
218         stats = get_lock_stats(hlock->class);
219         if (hlock->read)
220                 lock_time_inc(&stats->read_holdtime, holdtime);
221         else
222                 lock_time_inc(&stats->write_holdtime, holdtime);
223         put_lock_stats(stats);
224 }
225 #else
226 static inline void lock_release_holdtime(struct held_lock *hlock)
227 {
228 }
229 #endif
230
231 /*
232  * We keep a global list of all lock classes. The list only grows,
233  * never shrinks. The list is only accessed with the lockdep
234  * spinlock lock held.
235  */
236 LIST_HEAD(all_lock_classes);
237
238 /*
239  * The lockdep classes are in a hash-table as well, for fast lookup:
240  */
241 #define CLASSHASH_BITS          (MAX_LOCKDEP_KEYS_BITS - 1)
242 #define CLASSHASH_SIZE          (1UL << CLASSHASH_BITS)
243 #define __classhashfn(key)      hash_long((unsigned long)key, CLASSHASH_BITS)
244 #define classhashentry(key)     (classhash_table + __classhashfn((key)))
245
246 static struct list_head classhash_table[CLASSHASH_SIZE];
247
248 /*
249  * We put the lock dependency chains into a hash-table as well, to cache
250  * their existence:
251  */
252 #define CHAINHASH_BITS          (MAX_LOCKDEP_CHAINS_BITS-1)
253 #define CHAINHASH_SIZE          (1UL << CHAINHASH_BITS)
254 #define __chainhashfn(chain)    hash_long(chain, CHAINHASH_BITS)
255 #define chainhashentry(chain)   (chainhash_table + __chainhashfn((chain)))
256
257 static struct list_head chainhash_table[CHAINHASH_SIZE];
258
259 /*
260  * The hash key of the lock dependency chains is a hash itself too:
261  * it's a hash of all locks taken up to that lock, including that lock.
262  * It's a 64-bit hash, because it's important for the keys to be
263  * unique.
264  */
265 #define iterate_chain_key(key1, key2) \
266         (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
267         ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
268         (key2))
269
270 void lockdep_off(void)
271 {
272         current->lockdep_recursion++;
273 }
274
275 EXPORT_SYMBOL(lockdep_off);
276
277 void lockdep_on(void)
278 {
279         current->lockdep_recursion--;
280 }
281
282 EXPORT_SYMBOL(lockdep_on);
283
284 /*
285  * Debugging switches:
286  */
287
288 #define VERBOSE                 0
289 #define VERY_VERBOSE            0
290
291 #if VERBOSE
292 # define HARDIRQ_VERBOSE        1
293 # define SOFTIRQ_VERBOSE        1
294 #else
295 # define HARDIRQ_VERBOSE        0
296 # define SOFTIRQ_VERBOSE        0
297 #endif
298
299 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
300 /*
301  * Quick filtering for interesting events:
302  */
303 static int class_filter(struct lock_class *class)
304 {
305 #if 0
306         /* Example */
307         if (class->name_version == 1 &&
308                         !strcmp(class->name, "lockname"))
309                 return 1;
310         if (class->name_version == 1 &&
311                         !strcmp(class->name, "&struct->lockfield"))
312                 return 1;
313 #endif
314         /* Filter everything else. 1 would be to allow everything else */
315         return 0;
316 }
317 #endif
318
319 static int verbose(struct lock_class *class)
320 {
321 #if VERBOSE
322         return class_filter(class);
323 #endif
324         return 0;
325 }
326
327 /*
328  * Stack-trace: tightly packed array of stack backtrace
329  * addresses. Protected by the graph_lock.
330  */
331 unsigned long nr_stack_trace_entries;
332 static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
333
334 static int save_trace(struct stack_trace *trace)
335 {
336         trace->nr_entries = 0;
337         trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
338         trace->entries = stack_trace + nr_stack_trace_entries;
339
340         trace->skip = 3;
341
342         save_stack_trace(trace);
343
344         trace->max_entries = trace->nr_entries;
345
346         nr_stack_trace_entries += trace->nr_entries;
347
348         if (nr_stack_trace_entries == MAX_STACK_TRACE_ENTRIES) {
349                 if (!debug_locks_off_graph_unlock())
350                         return 0;
351
352                 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
353                 printk("turning off the locking correctness validator.\n");
354                 dump_stack();
355
356                 return 0;
357         }
358
359         return 1;
360 }
361
362 unsigned int nr_hardirq_chains;
363 unsigned int nr_softirq_chains;
364 unsigned int nr_process_chains;
365 unsigned int max_lockdep_depth;
366 unsigned int max_recursion_depth;
367
368 #ifdef CONFIG_DEBUG_LOCKDEP
369 /*
370  * We cannot printk in early bootup code. Not even early_printk()
371  * might work. So we mark any initialization errors and printk
372  * about it later on, in lockdep_info().
373  */
374 static int lockdep_init_error;
375
376 /*
377  * Various lockdep statistics:
378  */
379 atomic_t chain_lookup_hits;
380 atomic_t chain_lookup_misses;
381 atomic_t hardirqs_on_events;
382 atomic_t hardirqs_off_events;
383 atomic_t redundant_hardirqs_on;
384 atomic_t redundant_hardirqs_off;
385 atomic_t softirqs_on_events;
386 atomic_t softirqs_off_events;
387 atomic_t redundant_softirqs_on;
388 atomic_t redundant_softirqs_off;
389 atomic_t nr_unused_locks;
390 atomic_t nr_cyclic_checks;
391 atomic_t nr_cyclic_check_recursions;
392 atomic_t nr_find_usage_forwards_checks;
393 atomic_t nr_find_usage_forwards_recursions;
394 atomic_t nr_find_usage_backwards_checks;
395 atomic_t nr_find_usage_backwards_recursions;
396 # define debug_atomic_inc(ptr)          atomic_inc(ptr)
397 # define debug_atomic_dec(ptr)          atomic_dec(ptr)
398 # define debug_atomic_read(ptr)         atomic_read(ptr)
399 #else
400 # define debug_atomic_inc(ptr)          do { } while (0)
401 # define debug_atomic_dec(ptr)          do { } while (0)
402 # define debug_atomic_read(ptr)         0
403 #endif
404
405 /*
406  * Locking printouts:
407  */
408
409 static const char *usage_str[] =
410 {
411         [LOCK_USED] =                   "initial-use ",
412         [LOCK_USED_IN_HARDIRQ] =        "in-hardirq-W",
413         [LOCK_USED_IN_SOFTIRQ] =        "in-softirq-W",
414         [LOCK_ENABLED_SOFTIRQS] =       "softirq-on-W",
415         [LOCK_ENABLED_HARDIRQS] =       "hardirq-on-W",
416         [LOCK_USED_IN_HARDIRQ_READ] =   "in-hardirq-R",
417         [LOCK_USED_IN_SOFTIRQ_READ] =   "in-softirq-R",
418         [LOCK_ENABLED_SOFTIRQS_READ] =  "softirq-on-R",
419         [LOCK_ENABLED_HARDIRQS_READ] =  "hardirq-on-R",
420 };
421
422 const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
423 {
424         return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
425 }
426
427 void
428 get_usage_chars(struct lock_class *class, char *c1, char *c2, char *c3, char *c4)
429 {
430         *c1 = '.', *c2 = '.', *c3 = '.', *c4 = '.';
431
432         if (class->usage_mask & LOCKF_USED_IN_HARDIRQ)
433                 *c1 = '+';
434         else
435                 if (class->usage_mask & LOCKF_ENABLED_HARDIRQS)
436                         *c1 = '-';
437
438         if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ)
439                 *c2 = '+';
440         else
441                 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS)
442                         *c2 = '-';
443
444         if (class->usage_mask & LOCKF_ENABLED_HARDIRQS_READ)
445                 *c3 = '-';
446         if (class->usage_mask & LOCKF_USED_IN_HARDIRQ_READ) {
447                 *c3 = '+';
448                 if (class->usage_mask & LOCKF_ENABLED_HARDIRQS_READ)
449                         *c3 = '?';
450         }
451
452         if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS_READ)
453                 *c4 = '-';
454         if (class->usage_mask & LOCKF_USED_IN_SOFTIRQ_READ) {
455                 *c4 = '+';
456                 if (class->usage_mask & LOCKF_ENABLED_SOFTIRQS_READ)
457                         *c4 = '?';
458         }
459 }
460
461 static void print_lock_name(struct lock_class *class)
462 {
463         char str[KSYM_NAME_LEN], c1, c2, c3, c4;
464         const char *name;
465
466         get_usage_chars(class, &c1, &c2, &c3, &c4);
467
468         name = class->name;
469         if (!name) {
470                 name = __get_key_name(class->key, str);
471                 printk(" (%s", name);
472         } else {
473                 printk(" (%s", name);
474                 if (class->name_version > 1)
475                         printk("#%d", class->name_version);
476                 if (class->subclass)
477                         printk("/%d", class->subclass);
478         }
479         printk("){%c%c%c%c}", c1, c2, c3, c4);
480 }
481
482 static void print_lockdep_cache(struct lockdep_map *lock)
483 {
484         const char *name;
485         char str[KSYM_NAME_LEN];
486
487         name = lock->name;
488         if (!name)
489                 name = __get_key_name(lock->key->subkeys, str);
490
491         printk("%s", name);
492 }
493
494 static void print_lock(struct held_lock *hlock)
495 {
496         print_lock_name(hlock->class);
497         printk(", at: ");
498         print_ip_sym(hlock->acquire_ip);
499 }
500
501 static void lockdep_print_held_locks(struct task_struct *curr)
502 {
503         int i, depth = curr->lockdep_depth;
504
505         if (!depth) {
506                 printk("no locks held by %s/%d.\n", curr->comm, curr->pid);
507                 return;
508         }
509         printk("%d lock%s held by %s/%d:\n",
510                 depth, depth > 1 ? "s" : "", curr->comm, curr->pid);
511
512         for (i = 0; i < depth; i++) {
513                 printk(" #%d: ", i);
514                 print_lock(curr->held_locks + i);
515         }
516 }
517
518 static void print_lock_class_header(struct lock_class *class, int depth)
519 {
520         int bit;
521
522         printk("%*s->", depth, "");
523         print_lock_name(class);
524         printk(" ops: %lu", class->ops);
525         printk(" {\n");
526
527         for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
528                 if (class->usage_mask & (1 << bit)) {
529                         int len = depth;
530
531                         len += printk("%*s   %s", depth, "", usage_str[bit]);
532                         len += printk(" at:\n");
533                         print_stack_trace(class->usage_traces + bit, len);
534                 }
535         }
536         printk("%*s }\n", depth, "");
537
538         printk("%*s ... key      at: ",depth,"");
539         print_ip_sym((unsigned long)class->key);
540 }
541
542 /*
543  * printk all lock dependencies starting at <entry>:
544  */
545 static void print_lock_dependencies(struct lock_class *class, int depth)
546 {
547         struct lock_list *entry;
548
549         if (DEBUG_LOCKS_WARN_ON(depth >= 20))
550                 return;
551
552         print_lock_class_header(class, depth);
553
554         list_for_each_entry(entry, &class->locks_after, entry) {
555                 if (DEBUG_LOCKS_WARN_ON(!entry->class))
556                         return;
557
558                 print_lock_dependencies(entry->class, depth + 1);
559
560                 printk("%*s ... acquired at:\n",depth,"");
561                 print_stack_trace(&entry->trace, 2);
562                 printk("\n");
563         }
564 }
565
566 static void print_kernel_version(void)
567 {
568         printk("%s %.*s\n", init_utsname()->release,
569                 (int)strcspn(init_utsname()->version, " "),
570                 init_utsname()->version);
571 }
572
573 static int very_verbose(struct lock_class *class)
574 {
575 #if VERY_VERBOSE
576         return class_filter(class);
577 #endif
578         return 0;
579 }
580
581 /*
582  * Is this the address of a static object:
583  */
584 static int static_obj(void *obj)
585 {
586         unsigned long start = (unsigned long) &_stext,
587                       end   = (unsigned long) &_end,
588                       addr  = (unsigned long) obj;
589 #ifdef CONFIG_SMP
590         int i;
591 #endif
592
593         /*
594          * static variable?
595          */
596         if ((addr >= start) && (addr < end))
597                 return 1;
598
599 #ifdef CONFIG_SMP
600         /*
601          * percpu var?
602          */
603         for_each_possible_cpu(i) {
604                 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i);
605                 end   = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
606                                         + per_cpu_offset(i);
607
608                 if ((addr >= start) && (addr < end))
609                         return 1;
610         }
611 #endif
612
613         /*
614          * module var?
615          */
616         return is_module_address(addr);
617 }
618
619 /*
620  * To make lock name printouts unique, we calculate a unique
621  * class->name_version generation counter:
622  */
623 static int count_matching_names(struct lock_class *new_class)
624 {
625         struct lock_class *class;
626         int count = 0;
627
628         if (!new_class->name)
629                 return 0;
630
631         list_for_each_entry(class, &all_lock_classes, lock_entry) {
632                 if (new_class->key - new_class->subclass == class->key)
633                         return class->name_version;
634                 if (class->name && !strcmp(class->name, new_class->name))
635                         count = max(count, class->name_version);
636         }
637
638         return count + 1;
639 }
640
641 /*
642  * Register a lock's class in the hash-table, if the class is not present
643  * yet. Otherwise we look it up. We cache the result in the lock object
644  * itself, so actual lookup of the hash should be once per lock object.
645  */
646 static inline struct lock_class *
647 look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
648 {
649         struct lockdep_subclass_key *key;
650         struct list_head *hash_head;
651         struct lock_class *class;
652
653 #ifdef CONFIG_DEBUG_LOCKDEP
654         /*
655          * If the architecture calls into lockdep before initializing
656          * the hashes then we'll warn about it later. (we cannot printk
657          * right now)
658          */
659         if (unlikely(!lockdep_initialized)) {
660                 lockdep_init();
661                 lockdep_init_error = 1;
662         }
663 #endif
664
665         /*
666          * Static locks do not have their class-keys yet - for them the key
667          * is the lock object itself:
668          */
669         if (unlikely(!lock->key))
670                 lock->key = (void *)lock;
671
672         /*
673          * NOTE: the class-key must be unique. For dynamic locks, a static
674          * lock_class_key variable is passed in through the mutex_init()
675          * (or spin_lock_init()) call - which acts as the key. For static
676          * locks we use the lock object itself as the key.
677          */
678         BUILD_BUG_ON(sizeof(struct lock_class_key) >
679                         sizeof(struct lockdep_map));
680
681         key = lock->key->subkeys + subclass;
682
683         hash_head = classhashentry(key);
684
685         /*
686          * We can walk the hash lockfree, because the hash only
687          * grows, and we are careful when adding entries to the end:
688          */
689         list_for_each_entry(class, hash_head, hash_entry) {
690                 if (class->key == key) {
691                         WARN_ON_ONCE(class->name != lock->name);
692                         return class;
693                 }
694         }
695
696         return NULL;
697 }
698
699 /*
700  * Register a lock's class in the hash-table, if the class is not present
701  * yet. Otherwise we look it up. We cache the result in the lock object
702  * itself, so actual lookup of the hash should be once per lock object.
703  */
704 static inline struct lock_class *
705 register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
706 {
707         struct lockdep_subclass_key *key;
708         struct list_head *hash_head;
709         struct lock_class *class;
710         unsigned long flags;
711
712         class = look_up_lock_class(lock, subclass);
713         if (likely(class))
714                 return class;
715
716         /*
717          * Debug-check: all keys must be persistent!
718          */
719         if (!static_obj(lock->key)) {
720                 debug_locks_off();
721                 printk("INFO: trying to register non-static key.\n");
722                 printk("the code is fine but needs lockdep annotation.\n");
723                 printk("turning off the locking correctness validator.\n");
724                 dump_stack();
725
726                 return NULL;
727         }
728
729         key = lock->key->subkeys + subclass;
730         hash_head = classhashentry(key);
731
732         raw_local_irq_save(flags);
733         if (!graph_lock()) {
734                 raw_local_irq_restore(flags);
735                 return NULL;
736         }
737         /*
738          * We have to do the hash-walk again, to avoid races
739          * with another CPU:
740          */
741         list_for_each_entry(class, hash_head, hash_entry)
742                 if (class->key == key)
743                         goto out_unlock_set;
744         /*
745          * Allocate a new key from the static array, and add it to
746          * the hash:
747          */
748         if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
749                 if (!debug_locks_off_graph_unlock()) {
750                         raw_local_irq_restore(flags);
751                         return NULL;
752                 }
753                 raw_local_irq_restore(flags);
754
755                 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
756                 printk("turning off the locking correctness validator.\n");
757                 return NULL;
758         }
759         class = lock_classes + nr_lock_classes++;
760         debug_atomic_inc(&nr_unused_locks);
761         class->key = key;
762         class->name = lock->name;
763         class->subclass = subclass;
764         INIT_LIST_HEAD(&class->lock_entry);
765         INIT_LIST_HEAD(&class->locks_before);
766         INIT_LIST_HEAD(&class->locks_after);
767         class->name_version = count_matching_names(class);
768         /*
769          * We use RCU's safe list-add method to make
770          * parallel walking of the hash-list safe:
771          */
772         list_add_tail_rcu(&class->hash_entry, hash_head);
773
774         if (verbose(class)) {
775                 graph_unlock();
776                 raw_local_irq_restore(flags);
777
778                 printk("\nnew class %p: %s", class->key, class->name);
779                 if (class->name_version > 1)
780                         printk("#%d", class->name_version);
781                 printk("\n");
782                 dump_stack();
783
784                 raw_local_irq_save(flags);
785                 if (!graph_lock()) {
786                         raw_local_irq_restore(flags);
787                         return NULL;
788                 }
789         }
790 out_unlock_set:
791         graph_unlock();
792         raw_local_irq_restore(flags);
793
794         if (!subclass || force)
795                 lock->class_cache = class;
796
797         if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
798                 return NULL;
799
800         return class;
801 }
802
803 #ifdef CONFIG_PROVE_LOCKING
804 /*
805  * Allocate a lockdep entry. (assumes the graph_lock held, returns
806  * with NULL on failure)
807  */
808 static struct lock_list *alloc_list_entry(void)
809 {
810         if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
811                 if (!debug_locks_off_graph_unlock())
812                         return NULL;
813
814                 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
815                 printk("turning off the locking correctness validator.\n");
816                 return NULL;
817         }
818         return list_entries + nr_list_entries++;
819 }
820
821 /*
822  * Add a new dependency to the head of the list:
823  */
824 static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
825                             struct list_head *head, unsigned long ip, int distance)
826 {
827         struct lock_list *entry;
828         /*
829          * Lock not present yet - get a new dependency struct and
830          * add it to the list:
831          */
832         entry = alloc_list_entry();
833         if (!entry)
834                 return 0;
835
836         entry->class = this;
837         entry->distance = distance;
838         if (!save_trace(&entry->trace))
839                 return 0;
840
841         /*
842          * Since we never remove from the dependency list, the list can
843          * be walked lockless by other CPUs, it's only allocation
844          * that must be protected by the spinlock. But this also means
845          * we must make new entries visible only once writes to the
846          * entry become visible - hence the RCU op:
847          */
848         list_add_tail_rcu(&entry->entry, head);
849
850         return 1;
851 }
852
853 /*
854  * Recursive, forwards-direction lock-dependency checking, used for
855  * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
856  * checking.
857  *
858  * (to keep the stackframe of the recursive functions small we
859  *  use these global variables, and we also mark various helper
860  *  functions as noinline.)
861  */
862 static struct held_lock *check_source, *check_target;
863
864 /*
865  * Print a dependency chain entry (this is only done when a deadlock
866  * has been detected):
867  */
868 static noinline int
869 print_circular_bug_entry(struct lock_list *target, unsigned int depth)
870 {
871         if (debug_locks_silent)
872                 return 0;
873         printk("\n-> #%u", depth);
874         print_lock_name(target->class);
875         printk(":\n");
876         print_stack_trace(&target->trace, 6);
877
878         return 0;
879 }
880
881 /*
882  * When a circular dependency is detected, print the
883  * header first:
884  */
885 static noinline int
886 print_circular_bug_header(struct lock_list *entry, unsigned int depth)
887 {
888         struct task_struct *curr = current;
889
890         if (!debug_locks_off_graph_unlock() || debug_locks_silent)
891                 return 0;
892
893         printk("\n=======================================================\n");
894         printk(  "[ INFO: possible circular locking dependency detected ]\n");
895         print_kernel_version();
896         printk(  "-------------------------------------------------------\n");
897         printk("%s/%d is trying to acquire lock:\n",
898                 curr->comm, curr->pid);
899         print_lock(check_source);
900         printk("\nbut task is already holding lock:\n");
901         print_lock(check_target);
902         printk("\nwhich lock already depends on the new lock.\n\n");
903         printk("\nthe existing dependency chain (in reverse order) is:\n");
904
905         print_circular_bug_entry(entry, depth);
906
907         return 0;
908 }
909
910 static noinline int print_circular_bug_tail(void)
911 {
912         struct task_struct *curr = current;
913         struct lock_list this;
914
915         if (debug_locks_silent)
916                 return 0;
917
918         this.class = check_source->class;
919         if (!save_trace(&this.trace))
920                 return 0;
921
922         print_circular_bug_entry(&this, 0);
923
924         printk("\nother info that might help us debug this:\n\n");
925         lockdep_print_held_locks(curr);
926
927         printk("\nstack backtrace:\n");
928         dump_stack();
929
930         return 0;
931 }
932
933 #define RECURSION_LIMIT 40
934
935 static int noinline print_infinite_recursion_bug(void)
936 {
937         if (!debug_locks_off_graph_unlock())
938                 return 0;
939
940         WARN_ON(1);
941
942         return 0;
943 }
944
945 /*
946  * Prove that the dependency graph starting at <entry> can not
947  * lead to <target>. Print an error and return 0 if it does.
948  */
949 static noinline int
950 check_noncircular(struct lock_class *source, unsigned int depth)
951 {
952         struct lock_list *entry;
953
954         debug_atomic_inc(&nr_cyclic_check_recursions);
955         if (depth > max_recursion_depth)
956                 max_recursion_depth = depth;
957         if (depth >= RECURSION_LIMIT)
958                 return print_infinite_recursion_bug();
959         /*
960          * Check this lock's dependency list:
961          */
962         list_for_each_entry(entry, &source->locks_after, entry) {
963                 if (entry->class == check_target->class)
964                         return print_circular_bug_header(entry, depth+1);
965                 debug_atomic_inc(&nr_cyclic_checks);
966                 if (!check_noncircular(entry->class, depth+1))
967                         return print_circular_bug_entry(entry, depth+1);
968         }
969         return 1;
970 }
971
972 #ifdef CONFIG_TRACE_IRQFLAGS
973 /*
974  * Forwards and backwards subgraph searching, for the purposes of
975  * proving that two subgraphs can be connected by a new dependency
976  * without creating any illegal irq-safe -> irq-unsafe lock dependency.
977  */
978 static enum lock_usage_bit find_usage_bit;
979 static struct lock_class *forwards_match, *backwards_match;
980
981 /*
982  * Find a node in the forwards-direction dependency sub-graph starting
983  * at <source> that matches <find_usage_bit>.
984  *
985  * Return 2 if such a node exists in the subgraph, and put that node
986  * into <forwards_match>.
987  *
988  * Return 1 otherwise and keep <forwards_match> unchanged.
989  * Return 0 on error.
990  */
991 static noinline int
992 find_usage_forwards(struct lock_class *source, unsigned int depth)
993 {
994         struct lock_list *entry;
995         int ret;
996
997         if (depth > max_recursion_depth)
998                 max_recursion_depth = depth;
999         if (depth >= RECURSION_LIMIT)
1000                 return print_infinite_recursion_bug();
1001
1002         debug_atomic_inc(&nr_find_usage_forwards_checks);
1003         if (source->usage_mask & (1 << find_usage_bit)) {
1004                 forwards_match = source;
1005                 return 2;
1006         }
1007
1008         /*
1009          * Check this lock's dependency list:
1010          */
1011         list_for_each_entry(entry, &source->locks_after, entry) {
1012                 debug_atomic_inc(&nr_find_usage_forwards_recursions);
1013                 ret = find_usage_forwards(entry->class, depth+1);
1014                 if (ret == 2 || ret == 0)
1015                         return ret;
1016         }
1017         return 1;
1018 }
1019
1020 /*
1021  * Find a node in the backwards-direction dependency sub-graph starting
1022  * at <source> that matches <find_usage_bit>.
1023  *
1024  * Return 2 if such a node exists in the subgraph, and put that node
1025  * into <backwards_match>.
1026  *
1027  * Return 1 otherwise and keep <backwards_match> unchanged.
1028  * Return 0 on error.
1029  */
1030 static noinline int
1031 find_usage_backwards(struct lock_class *source, unsigned int depth)
1032 {
1033         struct lock_list *entry;
1034         int ret;
1035
1036         if (!__raw_spin_is_locked(&lockdep_lock))
1037                 return DEBUG_LOCKS_WARN_ON(1);
1038
1039         if (depth > max_recursion_depth)
1040                 max_recursion_depth = depth;
1041         if (depth >= RECURSION_LIMIT)
1042                 return print_infinite_recursion_bug();
1043
1044         debug_atomic_inc(&nr_find_usage_backwards_checks);
1045         if (source->usage_mask & (1 << find_usage_bit)) {
1046                 backwards_match = source;
1047                 return 2;
1048         }
1049
1050         /*
1051          * Check this lock's dependency list:
1052          */
1053         list_for_each_entry(entry, &source->locks_before, entry) {
1054                 debug_atomic_inc(&nr_find_usage_backwards_recursions);
1055                 ret = find_usage_backwards(entry->class, depth+1);
1056                 if (ret == 2 || ret == 0)
1057                         return ret;
1058         }
1059         return 1;
1060 }
1061
1062 static int
1063 print_bad_irq_dependency(struct task_struct *curr,
1064                          struct held_lock *prev,
1065                          struct held_lock *next,
1066                          enum lock_usage_bit bit1,
1067                          enum lock_usage_bit bit2,
1068                          const char *irqclass)
1069 {
1070         if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1071                 return 0;
1072
1073         printk("\n======================================================\n");
1074         printk(  "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1075                 irqclass, irqclass);
1076         print_kernel_version();
1077         printk(  "------------------------------------------------------\n");
1078         printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1079                 curr->comm, curr->pid,
1080                 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1081                 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1082                 curr->hardirqs_enabled,
1083                 curr->softirqs_enabled);
1084         print_lock(next);
1085
1086         printk("\nand this task is already holding:\n");
1087         print_lock(prev);
1088         printk("which would create a new lock dependency:\n");
1089         print_lock_name(prev->class);
1090         printk(" ->");
1091         print_lock_name(next->class);
1092         printk("\n");
1093
1094         printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1095                 irqclass);
1096         print_lock_name(backwards_match);
1097         printk("\n... which became %s-irq-safe at:\n", irqclass);
1098
1099         print_stack_trace(backwards_match->usage_traces + bit1, 1);
1100
1101         printk("\nto a %s-irq-unsafe lock:\n", irqclass);
1102         print_lock_name(forwards_match);
1103         printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1104         printk("...");
1105
1106         print_stack_trace(forwards_match->usage_traces + bit2, 1);
1107
1108         printk("\nother info that might help us debug this:\n\n");
1109         lockdep_print_held_locks(curr);
1110
1111         printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass);
1112         print_lock_dependencies(backwards_match, 0);
1113
1114         printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass);
1115         print_lock_dependencies(forwards_match, 0);
1116
1117         printk("\nstack backtrace:\n");
1118         dump_stack();
1119
1120         return 0;
1121 }
1122
1123 static int
1124 check_usage(struct task_struct *curr, struct held_lock *prev,
1125             struct held_lock *next, enum lock_usage_bit bit_backwards,
1126             enum lock_usage_bit bit_forwards, const char *irqclass)
1127 {
1128         int ret;
1129
1130         find_usage_bit = bit_backwards;
1131         /* fills in <backwards_match> */
1132         ret = find_usage_backwards(prev->class, 0);
1133         if (!ret || ret == 1)
1134                 return ret;
1135
1136         find_usage_bit = bit_forwards;
1137         ret = find_usage_forwards(next->class, 0);
1138         if (!ret || ret == 1)
1139                 return ret;
1140         /* ret == 2 */
1141         return print_bad_irq_dependency(curr, prev, next,
1142                         bit_backwards, bit_forwards, irqclass);
1143 }
1144
1145 static int
1146 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1147                 struct held_lock *next)
1148 {
1149         /*
1150          * Prove that the new dependency does not connect a hardirq-safe
1151          * lock with a hardirq-unsafe lock - to achieve this we search
1152          * the backwards-subgraph starting at <prev>, and the
1153          * forwards-subgraph starting at <next>:
1154          */
1155         if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ,
1156                                         LOCK_ENABLED_HARDIRQS, "hard"))
1157                 return 0;
1158
1159         /*
1160          * Prove that the new dependency does not connect a hardirq-safe-read
1161          * lock with a hardirq-unsafe lock - to achieve this we search
1162          * the backwards-subgraph starting at <prev>, and the
1163          * forwards-subgraph starting at <next>:
1164          */
1165         if (!check_usage(curr, prev, next, LOCK_USED_IN_HARDIRQ_READ,
1166                                         LOCK_ENABLED_HARDIRQS, "hard-read"))
1167                 return 0;
1168
1169         /*
1170          * Prove that the new dependency does not connect a softirq-safe
1171          * lock with a softirq-unsafe lock - to achieve this we search
1172          * the backwards-subgraph starting at <prev>, and the
1173          * forwards-subgraph starting at <next>:
1174          */
1175         if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ,
1176                                         LOCK_ENABLED_SOFTIRQS, "soft"))
1177                 return 0;
1178         /*
1179          * Prove that the new dependency does not connect a softirq-safe-read
1180          * lock with a softirq-unsafe lock - to achieve this we search
1181          * the backwards-subgraph starting at <prev>, and the
1182          * forwards-subgraph starting at <next>:
1183          */
1184         if (!check_usage(curr, prev, next, LOCK_USED_IN_SOFTIRQ_READ,
1185                                         LOCK_ENABLED_SOFTIRQS, "soft"))
1186                 return 0;
1187
1188         return 1;
1189 }
1190
1191 static void inc_chains(void)
1192 {
1193         if (current->hardirq_context)
1194                 nr_hardirq_chains++;
1195         else {
1196                 if (current->softirq_context)
1197                         nr_softirq_chains++;
1198                 else
1199                         nr_process_chains++;
1200         }
1201 }
1202
1203 #else
1204
1205 static inline int
1206 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1207                 struct held_lock *next)
1208 {
1209         return 1;
1210 }
1211
1212 static inline void inc_chains(void)
1213 {
1214         nr_process_chains++;
1215 }
1216
1217 #endif
1218
1219 static int
1220 print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1221                    struct held_lock *next)
1222 {
1223         if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1224                 return 0;
1225
1226         printk("\n=============================================\n");
1227         printk(  "[ INFO: possible recursive locking detected ]\n");
1228         print_kernel_version();
1229         printk(  "---------------------------------------------\n");
1230         printk("%s/%d is trying to acquire lock:\n",
1231                 curr->comm, curr->pid);
1232         print_lock(next);
1233         printk("\nbut task is already holding lock:\n");
1234         print_lock(prev);
1235
1236         printk("\nother info that might help us debug this:\n");
1237         lockdep_print_held_locks(curr);
1238
1239         printk("\nstack backtrace:\n");
1240         dump_stack();
1241
1242         return 0;
1243 }
1244
1245 /*
1246  * Check whether we are holding such a class already.
1247  *
1248  * (Note that this has to be done separately, because the graph cannot
1249  * detect such classes of deadlocks.)
1250  *
1251  * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1252  */
1253 static int
1254 check_deadlock(struct task_struct *curr, struct held_lock *next,
1255                struct lockdep_map *next_instance, int read)
1256 {
1257         struct held_lock *prev;
1258         int i;
1259
1260         for (i = 0; i < curr->lockdep_depth; i++) {
1261                 prev = curr->held_locks + i;
1262                 if (prev->class != next->class)
1263                         continue;
1264                 /*
1265                  * Allow read-after-read recursion of the same
1266                  * lock class (i.e. read_lock(lock)+read_lock(lock)):
1267                  */
1268                 if ((read == 2) && prev->read)
1269                         return 2;
1270                 return print_deadlock_bug(curr, prev, next);
1271         }
1272         return 1;
1273 }
1274
1275 /*
1276  * There was a chain-cache miss, and we are about to add a new dependency
1277  * to a previous lock. We recursively validate the following rules:
1278  *
1279  *  - would the adding of the <prev> -> <next> dependency create a
1280  *    circular dependency in the graph? [== circular deadlock]
1281  *
1282  *  - does the new prev->next dependency connect any hardirq-safe lock
1283  *    (in the full backwards-subgraph starting at <prev>) with any
1284  *    hardirq-unsafe lock (in the full forwards-subgraph starting at
1285  *    <next>)? [== illegal lock inversion with hardirq contexts]
1286  *
1287  *  - does the new prev->next dependency connect any softirq-safe lock
1288  *    (in the full backwards-subgraph starting at <prev>) with any
1289  *    softirq-unsafe lock (in the full forwards-subgraph starting at
1290  *    <next>)? [== illegal lock inversion with softirq contexts]
1291  *
1292  * any of these scenarios could lead to a deadlock.
1293  *
1294  * Then if all the validations pass, we add the forwards and backwards
1295  * dependency.
1296  */
1297 static int
1298 check_prev_add(struct task_struct *curr, struct held_lock *prev,
1299                struct held_lock *next, int distance)
1300 {
1301         struct lock_list *entry;
1302         int ret;
1303
1304         /*
1305          * Prove that the new <prev> -> <next> dependency would not
1306          * create a circular dependency in the graph. (We do this by
1307          * forward-recursing into the graph starting at <next>, and
1308          * checking whether we can reach <prev>.)
1309          *
1310          * We are using global variables to control the recursion, to
1311          * keep the stackframe size of the recursive functions low:
1312          */
1313         check_source = next;
1314         check_target = prev;
1315         if (!(check_noncircular(next->class, 0)))
1316                 return print_circular_bug_tail();
1317
1318         if (!check_prev_add_irq(curr, prev, next))
1319                 return 0;
1320
1321         /*
1322          * For recursive read-locks we do all the dependency checks,
1323          * but we dont store read-triggered dependencies (only
1324          * write-triggered dependencies). This ensures that only the
1325          * write-side dependencies matter, and that if for example a
1326          * write-lock never takes any other locks, then the reads are
1327          * equivalent to a NOP.
1328          */
1329         if (next->read == 2 || prev->read == 2)
1330                 return 1;
1331         /*
1332          * Is the <prev> -> <next> dependency already present?
1333          *
1334          * (this may occur even though this is a new chain: consider
1335          *  e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1336          *  chains - the second one will be new, but L1 already has
1337          *  L2 added to its dependency list, due to the first chain.)
1338          */
1339         list_for_each_entry(entry, &prev->class->locks_after, entry) {
1340                 if (entry->class == next->class) {
1341                         if (distance == 1)
1342                                 entry->distance = 1;
1343                         return 2;
1344                 }
1345         }
1346
1347         /*
1348          * Ok, all validations passed, add the new lock
1349          * to the previous lock's dependency list:
1350          */
1351         ret = add_lock_to_list(prev->class, next->class,
1352                                &prev->class->locks_after, next->acquire_ip, distance);
1353
1354         if (!ret)
1355                 return 0;
1356
1357         ret = add_lock_to_list(next->class, prev->class,
1358                                &next->class->locks_before, next->acquire_ip, distance);
1359         if (!ret)
1360                 return 0;
1361
1362         /*
1363          * Debugging printouts:
1364          */
1365         if (verbose(prev->class) || verbose(next->class)) {
1366                 graph_unlock();
1367                 printk("\n new dependency: ");
1368                 print_lock_name(prev->class);
1369                 printk(" => ");
1370                 print_lock_name(next->class);
1371                 printk("\n");
1372                 dump_stack();
1373                 return graph_lock();
1374         }
1375         return 1;
1376 }
1377
1378 /*
1379  * Add the dependency to all directly-previous locks that are 'relevant'.
1380  * The ones that are relevant are (in increasing distance from curr):
1381  * all consecutive trylock entries and the final non-trylock entry - or
1382  * the end of this context's lock-chain - whichever comes first.
1383  */
1384 static int
1385 check_prevs_add(struct task_struct *curr, struct held_lock *next)
1386 {
1387         int depth = curr->lockdep_depth;
1388         struct held_lock *hlock;
1389
1390         /*
1391          * Debugging checks.
1392          *
1393          * Depth must not be zero for a non-head lock:
1394          */
1395         if (!depth)
1396                 goto out_bug;
1397         /*
1398          * At least two relevant locks must exist for this
1399          * to be a head:
1400          */
1401         if (curr->held_locks[depth].irq_context !=
1402                         curr->held_locks[depth-1].irq_context)
1403                 goto out_bug;
1404
1405         for (;;) {
1406                 int distance = curr->lockdep_depth - depth + 1;
1407                 hlock = curr->held_locks + depth-1;
1408                 /*
1409                  * Only non-recursive-read entries get new dependencies
1410                  * added:
1411                  */
1412                 if (hlock->read != 2) {
1413                         if (!check_prev_add(curr, hlock, next, distance))
1414                                 return 0;
1415                         /*
1416                          * Stop after the first non-trylock entry,
1417                          * as non-trylock entries have added their
1418                          * own direct dependencies already, so this
1419                          * lock is connected to them indirectly:
1420                          */
1421                         if (!hlock->trylock)
1422                                 break;
1423                 }
1424                 depth--;
1425                 /*
1426                  * End of lock-stack?
1427                  */
1428                 if (!depth)
1429                         break;
1430                 /*
1431                  * Stop the search if we cross into another context:
1432                  */
1433                 if (curr->held_locks[depth].irq_context !=
1434                                 curr->held_locks[depth-1].irq_context)
1435                         break;
1436         }
1437         return 1;
1438 out_bug:
1439         if (!debug_locks_off_graph_unlock())
1440                 return 0;
1441
1442         WARN_ON(1);
1443
1444         return 0;
1445 }
1446
1447 unsigned long nr_lock_chains;
1448 static struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
1449
1450 /*
1451  * Look up a dependency chain. If the key is not present yet then
1452  * add it and return 1 - in this case the new dependency chain is
1453  * validated. If the key is already hashed, return 0.
1454  * (On return with 1 graph_lock is held.)
1455  */
1456 static inline int lookup_chain_cache(u64 chain_key, struct lock_class *class)
1457 {
1458         struct list_head *hash_head = chainhashentry(chain_key);
1459         struct lock_chain *chain;
1460
1461         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1462                 return 0;
1463         /*
1464          * We can walk it lock-free, because entries only get added
1465          * to the hash:
1466          */
1467         list_for_each_entry(chain, hash_head, entry) {
1468                 if (chain->chain_key == chain_key) {
1469 cache_hit:
1470                         debug_atomic_inc(&chain_lookup_hits);
1471                         if (very_verbose(class))
1472                                 printk("\nhash chain already cached, key: "
1473                                         "%016Lx tail class: [%p] %s\n",
1474                                         (unsigned long long)chain_key,
1475                                         class->key, class->name);
1476                         return 0;
1477                 }
1478         }
1479         if (very_verbose(class))
1480                 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1481                         (unsigned long long)chain_key, class->key, class->name);
1482         /*
1483          * Allocate a new chain entry from the static array, and add
1484          * it to the hash:
1485          */
1486         if (!graph_lock())
1487                 return 0;
1488         /*
1489          * We have to walk the chain again locked - to avoid duplicates:
1490          */
1491         list_for_each_entry(chain, hash_head, entry) {
1492                 if (chain->chain_key == chain_key) {
1493                         graph_unlock();
1494                         goto cache_hit;
1495                 }
1496         }
1497         if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
1498                 if (!debug_locks_off_graph_unlock())
1499                         return 0;
1500
1501                 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1502                 printk("turning off the locking correctness validator.\n");
1503                 return 0;
1504         }
1505         chain = lock_chains + nr_lock_chains++;
1506         chain->chain_key = chain_key;
1507         list_add_tail_rcu(&chain->entry, hash_head);
1508         debug_atomic_inc(&chain_lookup_misses);
1509         inc_chains();
1510
1511         return 1;
1512 }
1513
1514 static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
1515                 struct held_lock *hlock, int chain_head)
1516 {
1517         /*
1518          * Trylock needs to maintain the stack of held locks, but it
1519          * does not add new dependencies, because trylock can be done
1520          * in any order.
1521          *
1522          * We look up the chain_key and do the O(N^2) check and update of
1523          * the dependencies only if this is a new dependency chain.
1524          * (If lookup_chain_cache() returns with 1 it acquires
1525          * graph_lock for us)
1526          */
1527         if (!hlock->trylock && (hlock->check == 2) &&
1528                         lookup_chain_cache(curr->curr_chain_key, hlock->class)) {
1529                 /*
1530                  * Check whether last held lock:
1531                  *
1532                  * - is irq-safe, if this lock is irq-unsafe
1533                  * - is softirq-safe, if this lock is hardirq-unsafe
1534                  *
1535                  * And check whether the new lock's dependency graph
1536                  * could lead back to the previous lock.
1537                  *
1538                  * any of these scenarios could lead to a deadlock. If
1539                  * All validations
1540                  */
1541                 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1542
1543                 if (!ret)
1544                         return 0;
1545                 /*
1546                  * Mark recursive read, as we jump over it when
1547                  * building dependencies (just like we jump over
1548                  * trylock entries):
1549                  */
1550                 if (ret == 2)
1551                         hlock->read = 2;
1552                 /*
1553                  * Add dependency only if this lock is not the head
1554                  * of the chain, and if it's not a secondary read-lock:
1555                  */
1556                 if (!chain_head && ret != 2)
1557                         if (!check_prevs_add(curr, hlock))
1558                                 return 0;
1559                 graph_unlock();
1560         } else
1561                 /* after lookup_chain_cache(): */
1562                 if (unlikely(!debug_locks))
1563                         return 0;
1564
1565         return 1;
1566 }
1567 #else
1568 static inline int validate_chain(struct task_struct *curr,
1569                 struct lockdep_map *lock, struct held_lock *hlock,
1570                 int chain_head)
1571 {
1572         return 1;
1573 }
1574 #endif
1575
1576 /*
1577  * We are building curr_chain_key incrementally, so double-check
1578  * it from scratch, to make sure that it's done correctly:
1579  */
1580 static void check_chain_key(struct task_struct *curr)
1581 {
1582 #ifdef CONFIG_DEBUG_LOCKDEP
1583         struct held_lock *hlock, *prev_hlock = NULL;
1584         unsigned int i, id;
1585         u64 chain_key = 0;
1586
1587         for (i = 0; i < curr->lockdep_depth; i++) {
1588                 hlock = curr->held_locks + i;
1589                 if (chain_key != hlock->prev_chain_key) {
1590                         debug_locks_off();
1591                         printk("hm#1, depth: %u [%u], %016Lx != %016Lx\n",
1592                                 curr->lockdep_depth, i,
1593                                 (unsigned long long)chain_key,
1594                                 (unsigned long long)hlock->prev_chain_key);
1595                         WARN_ON(1);
1596                         return;
1597                 }
1598                 id = hlock->class - lock_classes;
1599                 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1600                         return;
1601
1602                 if (prev_hlock && (prev_hlock->irq_context !=
1603                                                         hlock->irq_context))
1604                         chain_key = 0;
1605                 chain_key = iterate_chain_key(chain_key, id);
1606                 prev_hlock = hlock;
1607         }
1608         if (chain_key != curr->curr_chain_key) {
1609                 debug_locks_off();
1610                 printk("hm#2, depth: %u [%u], %016Lx != %016Lx\n",
1611                         curr->lockdep_depth, i,
1612                         (unsigned long long)chain_key,
1613                         (unsigned long long)curr->curr_chain_key);
1614                 WARN_ON(1);
1615         }
1616 #endif
1617 }
1618
1619 static int
1620 print_usage_bug(struct task_struct *curr, struct held_lock *this,
1621                 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
1622 {
1623         if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1624                 return 0;
1625
1626         printk("\n=================================\n");
1627         printk(  "[ INFO: inconsistent lock state ]\n");
1628         print_kernel_version();
1629         printk(  "---------------------------------\n");
1630
1631         printk("inconsistent {%s} -> {%s} usage.\n",
1632                 usage_str[prev_bit], usage_str[new_bit]);
1633
1634         printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
1635                 curr->comm, curr->pid,
1636                 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
1637                 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
1638                 trace_hardirqs_enabled(curr),
1639                 trace_softirqs_enabled(curr));
1640         print_lock(this);
1641
1642         printk("{%s} state was registered at:\n", usage_str[prev_bit]);
1643         print_stack_trace(this->class->usage_traces + prev_bit, 1);
1644
1645         print_irqtrace_events(curr);
1646         printk("\nother info that might help us debug this:\n");
1647         lockdep_print_held_locks(curr);
1648
1649         printk("\nstack backtrace:\n");
1650         dump_stack();
1651
1652         return 0;
1653 }
1654
1655 /*
1656  * Print out an error if an invalid bit is set:
1657  */
1658 static inline int
1659 valid_state(struct task_struct *curr, struct held_lock *this,
1660             enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
1661 {
1662         if (unlikely(this->class->usage_mask & (1 << bad_bit)))
1663                 return print_usage_bug(curr, this, bad_bit, new_bit);
1664         return 1;
1665 }
1666
1667 static int mark_lock(struct task_struct *curr, struct held_lock *this,
1668                      enum lock_usage_bit new_bit);
1669
1670 #ifdef CONFIG_TRACE_IRQFLAGS
1671
1672 /*
1673  * print irq inversion bug:
1674  */
1675 static int
1676 print_irq_inversion_bug(struct task_struct *curr, struct lock_class *other,
1677                         struct held_lock *this, int forwards,
1678                         const char *irqclass)
1679 {
1680         if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1681                 return 0;
1682
1683         printk("\n=========================================================\n");
1684         printk(  "[ INFO: possible irq lock inversion dependency detected ]\n");
1685         print_kernel_version();
1686         printk(  "---------------------------------------------------------\n");
1687         printk("%s/%d just changed the state of lock:\n",
1688                 curr->comm, curr->pid);
1689         print_lock(this);
1690         if (forwards)
1691                 printk("but this lock took another, %s-irq-unsafe lock in the past:\n", irqclass);
1692         else
1693                 printk("but this lock was taken by another, %s-irq-safe lock in the past:\n", irqclass);
1694         print_lock_name(other);
1695         printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
1696
1697         printk("\nother info that might help us debug this:\n");
1698         lockdep_print_held_locks(curr);
1699
1700         printk("\nthe first lock's dependencies:\n");
1701         print_lock_dependencies(this->class, 0);
1702
1703         printk("\nthe second lock's dependencies:\n");
1704         print_lock_dependencies(other, 0);
1705
1706         printk("\nstack backtrace:\n");
1707         dump_stack();
1708
1709         return 0;
1710 }
1711
1712 /*
1713  * Prove that in the forwards-direction subgraph starting at <this>
1714  * there is no lock matching <mask>:
1715  */
1716 static int
1717 check_usage_forwards(struct task_struct *curr, struct held_lock *this,
1718                      enum lock_usage_bit bit, const char *irqclass)
1719 {
1720         int ret;
1721
1722         find_usage_bit = bit;
1723         /* fills in <forwards_match> */
1724         ret = find_usage_forwards(this->class, 0);
1725         if (!ret || ret == 1)
1726                 return ret;
1727
1728         return print_irq_inversion_bug(curr, forwards_match, this, 1, irqclass);
1729 }
1730
1731 /*
1732  * Prove that in the backwards-direction subgraph starting at <this>
1733  * there is no lock matching <mask>:
1734  */
1735 static int
1736 check_usage_backwards(struct task_struct *curr, struct held_lock *this,
1737                       enum lock_usage_bit bit, const char *irqclass)
1738 {
1739         int ret;
1740
1741         find_usage_bit = bit;
1742         /* fills in <backwards_match> */
1743         ret = find_usage_backwards(this->class, 0);
1744         if (!ret || ret == 1)
1745                 return ret;
1746
1747         return print_irq_inversion_bug(curr, backwards_match, this, 0, irqclass);
1748 }
1749
1750 void print_irqtrace_events(struct task_struct *curr)
1751 {
1752         printk("irq event stamp: %u\n", curr->irq_events);
1753         printk("hardirqs last  enabled at (%u): ", curr->hardirq_enable_event);
1754         print_ip_sym(curr->hardirq_enable_ip);
1755         printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
1756         print_ip_sym(curr->hardirq_disable_ip);
1757         printk("softirqs last  enabled at (%u): ", curr->softirq_enable_event);
1758         print_ip_sym(curr->softirq_enable_ip);
1759         printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
1760         print_ip_sym(curr->softirq_disable_ip);
1761 }
1762
1763 static int hardirq_verbose(struct lock_class *class)
1764 {
1765 #if HARDIRQ_VERBOSE
1766         return class_filter(class);
1767 #endif
1768         return 0;
1769 }
1770
1771 static int softirq_verbose(struct lock_class *class)
1772 {
1773 #if SOFTIRQ_VERBOSE
1774         return class_filter(class);
1775 #endif
1776         return 0;
1777 }
1778
1779 #define STRICT_READ_CHECKS      1
1780
1781 static int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
1782                 enum lock_usage_bit new_bit)
1783 {
1784         int ret = 1;
1785
1786         switch(new_bit) {
1787         case LOCK_USED_IN_HARDIRQ:
1788                 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_HARDIRQS))
1789                         return 0;
1790                 if (!valid_state(curr, this, new_bit,
1791                                  LOCK_ENABLED_HARDIRQS_READ))
1792                         return 0;
1793                 /*
1794                  * just marked it hardirq-safe, check that this lock
1795                  * took no hardirq-unsafe lock in the past:
1796                  */
1797                 if (!check_usage_forwards(curr, this,
1798                                           LOCK_ENABLED_HARDIRQS, "hard"))
1799                         return 0;
1800 #if STRICT_READ_CHECKS
1801                 /*
1802                  * just marked it hardirq-safe, check that this lock
1803                  * took no hardirq-unsafe-read lock in the past:
1804                  */
1805                 if (!check_usage_forwards(curr, this,
1806                                 LOCK_ENABLED_HARDIRQS_READ, "hard-read"))
1807                         return 0;
1808 #endif
1809                 if (hardirq_verbose(this->class))
1810                         ret = 2;
1811                 break;
1812         case LOCK_USED_IN_SOFTIRQ:
1813                 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_SOFTIRQS))
1814                         return 0;
1815                 if (!valid_state(curr, this, new_bit,
1816                                  LOCK_ENABLED_SOFTIRQS_READ))
1817                         return 0;
1818                 /*
1819                  * just marked it softirq-safe, check that this lock
1820                  * took no softirq-unsafe lock in the past:
1821                  */
1822                 if (!check_usage_forwards(curr, this,
1823                                           LOCK_ENABLED_SOFTIRQS, "soft"))
1824                         return 0;
1825 #if STRICT_READ_CHECKS
1826                 /*
1827                  * just marked it softirq-safe, check that this lock
1828                  * took no softirq-unsafe-read lock in the past:
1829                  */
1830                 if (!check_usage_forwards(curr, this,
1831                                 LOCK_ENABLED_SOFTIRQS_READ, "soft-read"))
1832                         return 0;
1833 #endif
1834                 if (softirq_verbose(this->class))
1835                         ret = 2;
1836                 break;
1837         case LOCK_USED_IN_HARDIRQ_READ:
1838                 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_HARDIRQS))
1839                         return 0;
1840                 /*
1841                  * just marked it hardirq-read-safe, check that this lock
1842                  * took no hardirq-unsafe lock in the past:
1843                  */
1844                 if (!check_usage_forwards(curr, this,
1845                                           LOCK_ENABLED_HARDIRQS, "hard"))
1846                         return 0;
1847                 if (hardirq_verbose(this->class))
1848                         ret = 2;
1849                 break;
1850         case LOCK_USED_IN_SOFTIRQ_READ:
1851                 if (!valid_state(curr, this, new_bit, LOCK_ENABLED_SOFTIRQS))
1852                         return 0;
1853                 /*
1854                  * just marked it softirq-read-safe, check that this lock
1855                  * took no softirq-unsafe lock in the past:
1856                  */
1857                 if (!check_usage_forwards(curr, this,
1858                                           LOCK_ENABLED_SOFTIRQS, "soft"))
1859                         return 0;
1860                 if (softirq_verbose(this->class))
1861                         ret = 2;
1862                 break;
1863         case LOCK_ENABLED_HARDIRQS:
1864                 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_HARDIRQ))
1865                         return 0;
1866                 if (!valid_state(curr, this, new_bit,
1867                                  LOCK_USED_IN_HARDIRQ_READ))
1868                         return 0;
1869                 /*
1870                  * just marked it hardirq-unsafe, check that no hardirq-safe
1871                  * lock in the system ever took it in the past:
1872                  */
1873                 if (!check_usage_backwards(curr, this,
1874                                            LOCK_USED_IN_HARDIRQ, "hard"))
1875                         return 0;
1876 #if STRICT_READ_CHECKS
1877                 /*
1878                  * just marked it hardirq-unsafe, check that no
1879                  * hardirq-safe-read lock in the system ever took
1880                  * it in the past:
1881                  */
1882                 if (!check_usage_backwards(curr, this,
1883                                    LOCK_USED_IN_HARDIRQ_READ, "hard-read"))
1884                         return 0;
1885 #endif
1886                 if (hardirq_verbose(this->class))
1887                         ret = 2;
1888                 break;
1889         case LOCK_ENABLED_SOFTIRQS:
1890                 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_SOFTIRQ))
1891                         return 0;
1892                 if (!valid_state(curr, this, new_bit,
1893                                  LOCK_USED_IN_SOFTIRQ_READ))
1894                         return 0;
1895                 /*
1896                  * just marked it softirq-unsafe, check that no softirq-safe
1897                  * lock in the system ever took it in the past:
1898                  */
1899                 if (!check_usage_backwards(curr, this,
1900                                            LOCK_USED_IN_SOFTIRQ, "soft"))
1901                         return 0;
1902 #if STRICT_READ_CHECKS
1903                 /*
1904                  * just marked it softirq-unsafe, check that no
1905                  * softirq-safe-read lock in the system ever took
1906                  * it in the past:
1907                  */
1908                 if (!check_usage_backwards(curr, this,
1909                                    LOCK_USED_IN_SOFTIRQ_READ, "soft-read"))
1910                         return 0;
1911 #endif
1912                 if (softirq_verbose(this->class))
1913                         ret = 2;
1914                 break;
1915         case LOCK_ENABLED_HARDIRQS_READ:
1916                 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_HARDIRQ))
1917                         return 0;
1918 #if STRICT_READ_CHECKS
1919                 /*
1920                  * just marked it hardirq-read-unsafe, check that no
1921                  * hardirq-safe lock in the system ever took it in the past:
1922                  */
1923                 if (!check_usage_backwards(curr, this,
1924                                            LOCK_USED_IN_HARDIRQ, "hard"))
1925                         return 0;
1926 #endif
1927                 if (hardirq_verbose(this->class))
1928                         ret = 2;
1929                 break;
1930         case LOCK_ENABLED_SOFTIRQS_READ:
1931                 if (!valid_state(curr, this, new_bit, LOCK_USED_IN_SOFTIRQ))
1932                         return 0;
1933 #if STRICT_READ_CHECKS
1934                 /*
1935                  * just marked it softirq-read-unsafe, check that no
1936                  * softirq-safe lock in the system ever took it in the past:
1937                  */
1938                 if (!check_usage_backwards(curr, this,
1939                                            LOCK_USED_IN_SOFTIRQ, "soft"))
1940                         return 0;
1941 #endif
1942                 if (softirq_verbose(this->class))
1943                         ret = 2;
1944                 break;
1945         default:
1946                 WARN_ON(1);
1947                 break;
1948         }
1949
1950         return ret;
1951 }
1952
1953 /*
1954  * Mark all held locks with a usage bit:
1955  */
1956 static int
1957 mark_held_locks(struct task_struct *curr, int hardirq)
1958 {
1959         enum lock_usage_bit usage_bit;
1960         struct held_lock *hlock;
1961         int i;
1962
1963         for (i = 0; i < curr->lockdep_depth; i++) {
1964                 hlock = curr->held_locks + i;
1965
1966                 if (hardirq) {
1967                         if (hlock->read)
1968                                 usage_bit = LOCK_ENABLED_HARDIRQS_READ;
1969                         else
1970                                 usage_bit = LOCK_ENABLED_HARDIRQS;
1971                 } else {
1972                         if (hlock->read)
1973                                 usage_bit = LOCK_ENABLED_SOFTIRQS_READ;
1974                         else
1975                                 usage_bit = LOCK_ENABLED_SOFTIRQS;
1976                 }
1977                 if (!mark_lock(curr, hlock, usage_bit))
1978                         return 0;
1979         }
1980
1981         return 1;
1982 }
1983
1984 /*
1985  * Debugging helper: via this flag we know that we are in
1986  * 'early bootup code', and will warn about any invalid irqs-on event:
1987  */
1988 static int early_boot_irqs_enabled;
1989
1990 void early_boot_irqs_off(void)
1991 {
1992         early_boot_irqs_enabled = 0;
1993 }
1994
1995 void early_boot_irqs_on(void)
1996 {
1997         early_boot_irqs_enabled = 1;
1998 }
1999
2000 /*
2001  * Hardirqs will be enabled:
2002  */
2003 void trace_hardirqs_on(void)
2004 {
2005         struct task_struct *curr = current;
2006         unsigned long ip;
2007
2008         if (unlikely(!debug_locks || current->lockdep_recursion))
2009                 return;
2010
2011         if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2012                 return;
2013
2014         if (unlikely(curr->hardirqs_enabled)) {
2015                 debug_atomic_inc(&redundant_hardirqs_on);
2016                 return;
2017         }
2018         /* we'll do an OFF -> ON transition: */
2019         curr->hardirqs_enabled = 1;
2020         ip = (unsigned long) __builtin_return_address(0);
2021
2022         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2023                 return;
2024         if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2025                 return;
2026         /*
2027          * We are going to turn hardirqs on, so set the
2028          * usage bit for all held locks:
2029          */
2030         if (!mark_held_locks(curr, 1))
2031                 return;
2032         /*
2033          * If we have softirqs enabled, then set the usage
2034          * bit for all held locks. (disabled hardirqs prevented
2035          * this bit from being set before)
2036          */
2037         if (curr->softirqs_enabled)
2038                 if (!mark_held_locks(curr, 0))
2039                         return;
2040
2041         curr->hardirq_enable_ip = ip;
2042         curr->hardirq_enable_event = ++curr->irq_events;
2043         debug_atomic_inc(&hardirqs_on_events);
2044 }
2045
2046 EXPORT_SYMBOL(trace_hardirqs_on);
2047
2048 /*
2049  * Hardirqs were disabled:
2050  */
2051 void trace_hardirqs_off(void)
2052 {
2053         struct task_struct *curr = current;
2054
2055         if (unlikely(!debug_locks || current->lockdep_recursion))
2056                 return;
2057
2058         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2059                 return;
2060
2061         if (curr->hardirqs_enabled) {
2062                 /*
2063                  * We have done an ON -> OFF transition:
2064                  */
2065                 curr->hardirqs_enabled = 0;
2066                 curr->hardirq_disable_ip = _RET_IP_;
2067                 curr->hardirq_disable_event = ++curr->irq_events;
2068                 debug_atomic_inc(&hardirqs_off_events);
2069         } else
2070                 debug_atomic_inc(&redundant_hardirqs_off);
2071 }
2072
2073 EXPORT_SYMBOL(trace_hardirqs_off);
2074
2075 /*
2076  * Softirqs will be enabled:
2077  */
2078 void trace_softirqs_on(unsigned long ip)
2079 {
2080         struct task_struct *curr = current;
2081
2082         if (unlikely(!debug_locks))
2083                 return;
2084
2085         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2086                 return;
2087
2088         if (curr->softirqs_enabled) {
2089                 debug_atomic_inc(&redundant_softirqs_on);
2090                 return;
2091         }
2092
2093         /*
2094          * We'll do an OFF -> ON transition:
2095          */
2096         curr->softirqs_enabled = 1;
2097         curr->softirq_enable_ip = ip;
2098         curr->softirq_enable_event = ++curr->irq_events;
2099         debug_atomic_inc(&softirqs_on_events);
2100         /*
2101          * We are going to turn softirqs on, so set the
2102          * usage bit for all held locks, if hardirqs are
2103          * enabled too:
2104          */
2105         if (curr->hardirqs_enabled)
2106                 mark_held_locks(curr, 0);
2107 }
2108
2109 /*
2110  * Softirqs were disabled:
2111  */
2112 void trace_softirqs_off(unsigned long ip)
2113 {
2114         struct task_struct *curr = current;
2115
2116         if (unlikely(!debug_locks))
2117                 return;
2118
2119         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2120                 return;
2121
2122         if (curr->softirqs_enabled) {
2123                 /*
2124                  * We have done an ON -> OFF transition:
2125                  */
2126                 curr->softirqs_enabled = 0;
2127                 curr->softirq_disable_ip = ip;
2128                 curr->softirq_disable_event = ++curr->irq_events;
2129                 debug_atomic_inc(&softirqs_off_events);
2130                 DEBUG_LOCKS_WARN_ON(!softirq_count());
2131         } else
2132                 debug_atomic_inc(&redundant_softirqs_off);
2133 }
2134
2135 static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2136 {
2137         /*
2138          * If non-trylock use in a hardirq or softirq context, then
2139          * mark the lock as used in these contexts:
2140          */
2141         if (!hlock->trylock) {
2142                 if (hlock->read) {
2143                         if (curr->hardirq_context)
2144                                 if (!mark_lock(curr, hlock,
2145                                                 LOCK_USED_IN_HARDIRQ_READ))
2146                                         return 0;
2147                         if (curr->softirq_context)
2148                                 if (!mark_lock(curr, hlock,
2149                                                 LOCK_USED_IN_SOFTIRQ_READ))
2150                                         return 0;
2151                 } else {
2152                         if (curr->hardirq_context)
2153                                 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2154                                         return 0;
2155                         if (curr->softirq_context)
2156                                 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2157                                         return 0;
2158                 }
2159         }
2160         if (!hlock->hardirqs_off) {
2161                 if (hlock->read) {
2162                         if (!mark_lock(curr, hlock,
2163                                         LOCK_ENABLED_HARDIRQS_READ))
2164                                 return 0;
2165                         if (curr->softirqs_enabled)
2166                                 if (!mark_lock(curr, hlock,
2167                                                 LOCK_ENABLED_SOFTIRQS_READ))
2168                                         return 0;
2169                 } else {
2170                         if (!mark_lock(curr, hlock,
2171                                         LOCK_ENABLED_HARDIRQS))
2172                                 return 0;
2173                         if (curr->softirqs_enabled)
2174                                 if (!mark_lock(curr, hlock,
2175                                                 LOCK_ENABLED_SOFTIRQS))
2176                                         return 0;
2177                 }
2178         }
2179
2180         return 1;
2181 }
2182
2183 static int separate_irq_context(struct task_struct *curr,
2184                 struct held_lock *hlock)
2185 {
2186         unsigned int depth = curr->lockdep_depth;
2187
2188         /*
2189          * Keep track of points where we cross into an interrupt context:
2190          */
2191         hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2192                                 curr->softirq_context;
2193         if (depth) {
2194                 struct held_lock *prev_hlock;
2195
2196                 prev_hlock = curr->held_locks + depth-1;
2197                 /*
2198                  * If we cross into another context, reset the
2199                  * hash key (this also prevents the checking and the
2200                  * adding of the dependency to 'prev'):
2201                  */
2202                 if (prev_hlock->irq_context != hlock->irq_context)
2203                         return 1;
2204         }
2205         return 0;
2206 }
2207
2208 #else
2209
2210 static inline
2211 int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2212                 enum lock_usage_bit new_bit)
2213 {
2214         WARN_ON(1);
2215         return 1;
2216 }
2217
2218 static inline int mark_irqflags(struct task_struct *curr,
2219                 struct held_lock *hlock)
2220 {
2221         return 1;
2222 }
2223
2224 static inline int separate_irq_context(struct task_struct *curr,
2225                 struct held_lock *hlock)
2226 {
2227         return 0;
2228 }
2229
2230 #endif
2231
2232 /*
2233  * Mark a lock with a usage bit, and validate the state transition:
2234  */
2235 static int mark_lock(struct task_struct *curr, struct held_lock *this,
2236                      enum lock_usage_bit new_bit)
2237 {
2238         unsigned int new_mask = 1 << new_bit, ret = 1;
2239
2240         /*
2241          * If already set then do not dirty the cacheline,
2242          * nor do any checks:
2243          */
2244         if (likely(this->class->usage_mask & new_mask))
2245                 return 1;
2246
2247         if (!graph_lock())
2248                 return 0;
2249         /*
2250          * Make sure we didnt race:
2251          */
2252         if (unlikely(this->class->usage_mask & new_mask)) {
2253                 graph_unlock();
2254                 return 1;
2255         }
2256
2257         this->class->usage_mask |= new_mask;
2258
2259         if (!save_trace(this->class->usage_traces + new_bit))
2260                 return 0;
2261
2262         switch (new_bit) {
2263         case LOCK_USED_IN_HARDIRQ:
2264         case LOCK_USED_IN_SOFTIRQ:
2265         case LOCK_USED_IN_HARDIRQ_READ:
2266         case LOCK_USED_IN_SOFTIRQ_READ:
2267         case LOCK_ENABLED_HARDIRQS:
2268         case LOCK_ENABLED_SOFTIRQS:
2269         case LOCK_ENABLED_HARDIRQS_READ:
2270         case LOCK_ENABLED_SOFTIRQS_READ:
2271                 ret = mark_lock_irq(curr, this, new_bit);
2272                 if (!ret)
2273                         return 0;
2274                 break;
2275         case LOCK_USED:
2276                 /*
2277                  * Add it to the global list of classes:
2278                  */
2279                 list_add_tail_rcu(&this->class->lock_entry, &all_lock_classes);
2280                 debug_atomic_dec(&nr_unused_locks);
2281                 break;
2282         default:
2283                 if (!debug_locks_off_graph_unlock())
2284                         return 0;
2285                 WARN_ON(1);
2286                 return 0;
2287         }
2288
2289         graph_unlock();
2290
2291         /*
2292          * We must printk outside of the graph_lock:
2293          */
2294         if (ret == 2) {
2295                 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2296                 print_lock(this);
2297                 print_irqtrace_events(curr);
2298                 dump_stack();
2299         }
2300
2301         return ret;
2302 }
2303
2304 /*
2305  * Initialize a lock instance's lock-class mapping info:
2306  */
2307 void lockdep_init_map(struct lockdep_map *lock, const char *name,
2308                       struct lock_class_key *key, int subclass)
2309 {
2310         if (unlikely(!debug_locks))
2311                 return;
2312
2313         if (DEBUG_LOCKS_WARN_ON(!key))
2314                 return;
2315         if (DEBUG_LOCKS_WARN_ON(!name))
2316                 return;
2317         /*
2318          * Sanity check, the lock-class key must be persistent:
2319          */
2320         if (!static_obj(key)) {
2321                 printk("BUG: key %p not in .data!\n", key);
2322                 DEBUG_LOCKS_WARN_ON(1);
2323                 return;
2324         }
2325         lock->name = name;
2326         lock->key = key;
2327         lock->class_cache = NULL;
2328         if (subclass)
2329                 register_lock_class(lock, subclass, 1);
2330 }
2331
2332 EXPORT_SYMBOL_GPL(lockdep_init_map);
2333
2334 /*
2335  * This gets called for every mutex_lock*()/spin_lock*() operation.
2336  * We maintain the dependency maps and validate the locking attempt:
2337  */
2338 static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2339                           int trylock, int read, int check, int hardirqs_off,
2340                           unsigned long ip)
2341 {
2342         struct task_struct *curr = current;
2343         struct lock_class *class = NULL;
2344         struct held_lock *hlock;
2345         unsigned int depth, id;
2346         int chain_head = 0;
2347         u64 chain_key;
2348
2349         if (!prove_locking)
2350                 check = 1;
2351
2352         if (unlikely(!debug_locks))
2353                 return 0;
2354
2355         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2356                 return 0;
2357
2358         if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2359                 debug_locks_off();
2360                 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2361                 printk("turning off the locking correctness validator.\n");
2362                 return 0;
2363         }
2364
2365         if (!subclass)
2366                 class = lock->class_cache;
2367         /*
2368          * Not cached yet or subclass?
2369          */
2370         if (unlikely(!class)) {
2371                 class = register_lock_class(lock, subclass, 0);
2372                 if (!class)
2373                         return 0;
2374         }
2375         debug_atomic_inc((atomic_t *)&class->ops);
2376         if (very_verbose(class)) {
2377                 printk("\nacquire class [%p] %s", class->key, class->name);
2378                 if (class->name_version > 1)
2379                         printk("#%d", class->name_version);
2380                 printk("\n");
2381                 dump_stack();
2382         }
2383
2384         /*
2385          * Add the lock to the list of currently held locks.
2386          * (we dont increase the depth just yet, up until the
2387          * dependency checks are done)
2388          */
2389         depth = curr->lockdep_depth;
2390         if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2391                 return 0;
2392
2393         hlock = curr->held_locks + depth;
2394
2395         hlock->class = class;
2396         hlock->acquire_ip = ip;
2397         hlock->instance = lock;
2398         hlock->trylock = trylock;
2399         hlock->read = read;
2400         hlock->check = check;
2401         hlock->hardirqs_off = hardirqs_off;
2402 #ifdef CONFIG_LOCK_STAT
2403         hlock->waittime_stamp = 0;
2404         hlock->holdtime_stamp = sched_clock();
2405 #endif
2406
2407         if (check == 2 && !mark_irqflags(curr, hlock))
2408                 return 0;
2409
2410         /* mark it as used: */
2411         if (!mark_lock(curr, hlock, LOCK_USED))
2412                 return 0;
2413
2414         /*
2415          * Calculate the chain hash: it's the combined has of all the
2416          * lock keys along the dependency chain. We save the hash value
2417          * at every step so that we can get the current hash easily
2418          * after unlock. The chain hash is then used to cache dependency
2419          * results.
2420          *
2421          * The 'key ID' is what is the most compact key value to drive
2422          * the hash, not class->key.
2423          */
2424         id = class - lock_classes;
2425         if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2426                 return 0;
2427
2428         chain_key = curr->curr_chain_key;
2429         if (!depth) {
2430                 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2431                         return 0;
2432                 chain_head = 1;
2433         }
2434
2435         hlock->prev_chain_key = chain_key;
2436         if (separate_irq_context(curr, hlock)) {
2437                 chain_key = 0;
2438                 chain_head = 1;
2439         }
2440         chain_key = iterate_chain_key(chain_key, id);
2441         curr->curr_chain_key = chain_key;
2442
2443         if (!validate_chain(curr, lock, hlock, chain_head))
2444                 return 0;
2445
2446         curr->lockdep_depth++;
2447         check_chain_key(curr);
2448 #ifdef CONFIG_DEBUG_LOCKDEP
2449         if (unlikely(!debug_locks))
2450                 return 0;
2451 #endif
2452         if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2453                 debug_locks_off();
2454                 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2455                 printk("turning off the locking correctness validator.\n");
2456                 return 0;
2457         }
2458
2459         if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2460                 max_lockdep_depth = curr->lockdep_depth;
2461
2462         return 1;
2463 }
2464
2465 static int
2466 print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2467                            unsigned long ip)
2468 {
2469         if (!debug_locks_off())
2470                 return 0;
2471         if (debug_locks_silent)
2472                 return 0;
2473
2474         printk("\n=====================================\n");
2475         printk(  "[ BUG: bad unlock balance detected! ]\n");
2476         printk(  "-------------------------------------\n");
2477         printk("%s/%d is trying to release lock (",
2478                 curr->comm, curr->pid);
2479         print_lockdep_cache(lock);
2480         printk(") at:\n");
2481         print_ip_sym(ip);
2482         printk("but there are no more locks to release!\n");
2483         printk("\nother info that might help us debug this:\n");
2484         lockdep_print_held_locks(curr);
2485
2486         printk("\nstack backtrace:\n");
2487         dump_stack();
2488
2489         return 0;
2490 }
2491
2492 /*
2493  * Common debugging checks for both nested and non-nested unlock:
2494  */
2495 static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2496                         unsigned long ip)
2497 {
2498         if (unlikely(!debug_locks))
2499                 return 0;
2500         if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2501                 return 0;
2502
2503         if (curr->lockdep_depth <= 0)
2504                 return print_unlock_inbalance_bug(curr, lock, ip);
2505
2506         return 1;
2507 }
2508
2509 /*
2510  * Remove the lock to the list of currently held locks in a
2511  * potentially non-nested (out of order) manner. This is a
2512  * relatively rare operation, as all the unlock APIs default
2513  * to nested mode (which uses lock_release()):
2514  */
2515 static int
2516 lock_release_non_nested(struct task_struct *curr,
2517                         struct lockdep_map *lock, unsigned long ip)
2518 {
2519         struct held_lock *hlock, *prev_hlock;
2520         unsigned int depth;
2521         int i;
2522
2523         /*
2524          * Check whether the lock exists in the current stack
2525          * of held locks:
2526          */
2527         depth = curr->lockdep_depth;
2528         if (DEBUG_LOCKS_WARN_ON(!depth))
2529                 return 0;
2530
2531         prev_hlock = NULL;
2532         for (i = depth-1; i >= 0; i--) {
2533                 hlock = curr->held_locks + i;
2534                 /*
2535                  * We must not cross into another context:
2536                  */
2537                 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2538                         break;
2539                 if (hlock->instance == lock)
2540                         goto found_it;
2541                 prev_hlock = hlock;
2542         }
2543         return print_unlock_inbalance_bug(curr, lock, ip);
2544
2545 found_it:
2546         lock_release_holdtime(hlock);
2547
2548         /*
2549          * We have the right lock to unlock, 'hlock' points to it.
2550          * Now we remove it from the stack, and add back the other
2551          * entries (if any), recalculating the hash along the way:
2552          */
2553         curr->lockdep_depth = i;
2554         curr->curr_chain_key = hlock->prev_chain_key;
2555
2556         for (i++; i < depth; i++) {
2557                 hlock = curr->held_locks + i;
2558                 if (!__lock_acquire(hlock->instance,
2559                         hlock->class->subclass, hlock->trylock,
2560                                 hlock->read, hlock->check, hlock->hardirqs_off,
2561                                 hlock->acquire_ip))
2562                         return 0;
2563         }
2564
2565         if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
2566                 return 0;
2567         return 1;
2568 }
2569
2570 /*
2571  * Remove the lock to the list of currently held locks - this gets
2572  * called on mutex_unlock()/spin_unlock*() (or on a failed
2573  * mutex_lock_interruptible()). This is done for unlocks that nest
2574  * perfectly. (i.e. the current top of the lock-stack is unlocked)
2575  */
2576 static int lock_release_nested(struct task_struct *curr,
2577                                struct lockdep_map *lock, unsigned long ip)
2578 {
2579         struct held_lock *hlock;
2580         unsigned int depth;
2581
2582         /*
2583          * Pop off the top of the lock stack:
2584          */
2585         depth = curr->lockdep_depth - 1;
2586         hlock = curr->held_locks + depth;
2587
2588         /*
2589          * Is the unlock non-nested:
2590          */
2591         if (hlock->instance != lock)
2592                 return lock_release_non_nested(curr, lock, ip);
2593         curr->lockdep_depth--;
2594
2595         if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
2596                 return 0;
2597
2598         curr->curr_chain_key = hlock->prev_chain_key;
2599
2600         lock_release_holdtime(hlock);
2601
2602 #ifdef CONFIG_DEBUG_LOCKDEP
2603         hlock->prev_chain_key = 0;
2604         hlock->class = NULL;
2605         hlock->acquire_ip = 0;
2606         hlock->irq_context = 0;
2607 #endif
2608         return 1;
2609 }
2610
2611 /*
2612  * Remove the lock to the list of currently held locks - this gets
2613  * called on mutex_unlock()/spin_unlock*() (or on a failed
2614  * mutex_lock_interruptible()). This is done for unlocks that nest
2615  * perfectly. (i.e. the current top of the lock-stack is unlocked)
2616  */
2617 static void
2618 __lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2619 {
2620         struct task_struct *curr = current;
2621
2622         if (!check_unlock(curr, lock, ip))
2623                 return;
2624
2625         if (nested) {
2626                 if (!lock_release_nested(curr, lock, ip))
2627                         return;
2628         } else {
2629                 if (!lock_release_non_nested(curr, lock, ip))
2630                         return;
2631         }
2632
2633         check_chain_key(curr);
2634 }
2635
2636 /*
2637  * Check whether we follow the irq-flags state precisely:
2638  */
2639 static void check_flags(unsigned long flags)
2640 {
2641 #if defined(CONFIG_DEBUG_LOCKDEP) && defined(CONFIG_TRACE_IRQFLAGS)
2642         if (!debug_locks)
2643                 return;
2644
2645         if (irqs_disabled_flags(flags))
2646                 DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled);
2647         else
2648                 DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled);
2649
2650         /*
2651          * We dont accurately track softirq state in e.g.
2652          * hardirq contexts (such as on 4KSTACKS), so only
2653          * check if not in hardirq contexts:
2654          */
2655         if (!hardirq_count()) {
2656                 if (softirq_count())
2657                         DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
2658                 else
2659                         DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
2660         }
2661
2662         if (!debug_locks)
2663                 print_irqtrace_events(current);
2664 #endif
2665 }
2666
2667 /*
2668  * We are not always called with irqs disabled - do that here,
2669  * and also avoid lockdep recursion:
2670  */
2671 void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2672                   int trylock, int read, int check, unsigned long ip)
2673 {
2674         unsigned long flags;
2675
2676         if (unlikely(!lock_stat && !prove_locking))
2677                 return;
2678
2679         if (unlikely(current->lockdep_recursion))
2680                 return;
2681
2682         raw_local_irq_save(flags);
2683         check_flags(flags);
2684
2685         current->lockdep_recursion = 1;
2686         __lock_acquire(lock, subclass, trylock, read, check,
2687                        irqs_disabled_flags(flags), ip);
2688         current->lockdep_recursion = 0;
2689         raw_local_irq_restore(flags);
2690 }
2691
2692 EXPORT_SYMBOL_GPL(lock_acquire);
2693
2694 void lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2695 {
2696         unsigned long flags;
2697
2698         if (unlikely(!lock_stat && !prove_locking))
2699                 return;
2700
2701         if (unlikely(current->lockdep_recursion))
2702                 return;
2703
2704         raw_local_irq_save(flags);
2705         check_flags(flags);
2706         current->lockdep_recursion = 1;
2707         __lock_release(lock, nested, ip);
2708         current->lockdep_recursion = 0;
2709         raw_local_irq_restore(flags);
2710 }
2711
2712 EXPORT_SYMBOL_GPL(lock_release);
2713
2714 #ifdef CONFIG_LOCK_STAT
2715 static int
2716 print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
2717                            unsigned long ip)
2718 {
2719         if (!debug_locks_off())
2720                 return 0;
2721         if (debug_locks_silent)
2722                 return 0;
2723
2724         printk("\n=================================\n");
2725         printk(  "[ BUG: bad contention detected! ]\n");
2726         printk(  "---------------------------------\n");
2727         printk("%s/%d is trying to contend lock (",
2728                 curr->comm, curr->pid);
2729         print_lockdep_cache(lock);
2730         printk(") at:\n");
2731         print_ip_sym(ip);
2732         printk("but there are no locks held!\n");
2733         printk("\nother info that might help us debug this:\n");
2734         lockdep_print_held_locks(curr);
2735
2736         printk("\nstack backtrace:\n");
2737         dump_stack();
2738
2739         return 0;
2740 }
2741
2742 static void
2743 __lock_contended(struct lockdep_map *lock, unsigned long ip)
2744 {
2745         struct task_struct *curr = current;
2746         struct held_lock *hlock, *prev_hlock;
2747         struct lock_class_stats *stats;
2748         unsigned int depth;
2749         int i, point;
2750
2751         depth = curr->lockdep_depth;
2752         if (DEBUG_LOCKS_WARN_ON(!depth))
2753                 return;
2754
2755         prev_hlock = NULL;
2756         for (i = depth-1; i >= 0; i--) {
2757                 hlock = curr->held_locks + i;
2758                 /*
2759                  * We must not cross into another context:
2760                  */
2761                 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2762                         break;
2763                 if (hlock->instance == lock)
2764                         goto found_it;
2765                 prev_hlock = hlock;
2766         }
2767         print_lock_contention_bug(curr, lock, ip);
2768         return;
2769
2770 found_it:
2771         hlock->waittime_stamp = sched_clock();
2772
2773         point = lock_contention_point(hlock->class, ip);
2774
2775         stats = get_lock_stats(hlock->class);
2776         if (point < ARRAY_SIZE(stats->contention_point))
2777                 stats->contention_point[i]++;
2778         put_lock_stats(stats);
2779 }
2780
2781 static void
2782 __lock_acquired(struct lockdep_map *lock)
2783 {
2784         struct task_struct *curr = current;
2785         struct held_lock *hlock, *prev_hlock;
2786         struct lock_class_stats *stats;
2787         unsigned int depth;
2788         u64 now;
2789         s64 waittime;
2790         int i;
2791
2792         depth = curr->lockdep_depth;
2793         if (DEBUG_LOCKS_WARN_ON(!depth))
2794                 return;
2795
2796         prev_hlock = NULL;
2797         for (i = depth-1; i >= 0; i--) {
2798                 hlock = curr->held_locks + i;
2799                 /*
2800                  * We must not cross into another context:
2801                  */
2802                 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2803                         break;
2804                 if (hlock->instance == lock)
2805                         goto found_it;
2806                 prev_hlock = hlock;
2807         }
2808         print_lock_contention_bug(curr, lock, _RET_IP_);
2809         return;
2810
2811 found_it:
2812         if (!hlock->waittime_stamp)
2813                 return;
2814
2815         now = sched_clock();
2816         waittime = now - hlock->waittime_stamp;
2817         hlock->holdtime_stamp = now;
2818
2819         stats = get_lock_stats(hlock->class);
2820         if (hlock->read)
2821                 lock_time_inc(&stats->read_waittime, waittime);
2822         else
2823                 lock_time_inc(&stats->write_waittime, waittime);
2824         put_lock_stats(stats);
2825 }
2826
2827 void lock_contended(struct lockdep_map *lock, unsigned long ip)
2828 {
2829         unsigned long flags;
2830
2831         if (unlikely(!lock_stat))
2832                 return;
2833
2834         if (unlikely(current->lockdep_recursion))
2835                 return;
2836
2837         raw_local_irq_save(flags);
2838         check_flags(flags);
2839         current->lockdep_recursion = 1;
2840         __lock_contended(lock, ip);
2841         current->lockdep_recursion = 0;
2842         raw_local_irq_restore(flags);
2843 }
2844 EXPORT_SYMBOL_GPL(lock_contended);
2845
2846 void lock_acquired(struct lockdep_map *lock)
2847 {
2848         unsigned long flags;
2849
2850         if (unlikely(!lock_stat))
2851                 return;
2852
2853         if (unlikely(current->lockdep_recursion))
2854                 return;
2855
2856         raw_local_irq_save(flags);
2857         check_flags(flags);
2858         current->lockdep_recursion = 1;
2859         __lock_acquired(lock);
2860         current->lockdep_recursion = 0;
2861         raw_local_irq_restore(flags);
2862 }
2863 EXPORT_SYMBOL_GPL(lock_acquired);
2864 #endif
2865
2866 /*
2867  * Used by the testsuite, sanitize the validator state
2868  * after a simulated failure:
2869  */
2870
2871 void lockdep_reset(void)
2872 {
2873         unsigned long flags;
2874         int i;
2875
2876         raw_local_irq_save(flags);
2877         current->curr_chain_key = 0;
2878         current->lockdep_depth = 0;
2879         current->lockdep_recursion = 0;
2880         memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
2881         nr_hardirq_chains = 0;
2882         nr_softirq_chains = 0;
2883         nr_process_chains = 0;
2884         debug_locks = 1;
2885         for (i = 0; i < CHAINHASH_SIZE; i++)
2886                 INIT_LIST_HEAD(chainhash_table + i);
2887         raw_local_irq_restore(flags);
2888 }
2889
2890 static void zap_class(struct lock_class *class)
2891 {
2892         int i;
2893
2894         /*
2895          * Remove all dependencies this lock is
2896          * involved in:
2897          */
2898         for (i = 0; i < nr_list_entries; i++) {
2899                 if (list_entries[i].class == class)
2900                         list_del_rcu(&list_entries[i].entry);
2901         }
2902         /*
2903          * Unhash the class and remove it from the all_lock_classes list:
2904          */
2905         list_del_rcu(&class->hash_entry);
2906         list_del_rcu(&class->lock_entry);
2907
2908 }
2909
2910 static inline int within(void *addr, void *start, unsigned long size)
2911 {
2912         return addr >= start && addr < start + size;
2913 }
2914
2915 void lockdep_free_key_range(void *start, unsigned long size)
2916 {
2917         struct lock_class *class, *next;
2918         struct list_head *head;
2919         unsigned long flags;
2920         int i;
2921
2922         raw_local_irq_save(flags);
2923         graph_lock();
2924
2925         /*
2926          * Unhash all classes that were created by this module:
2927          */
2928         for (i = 0; i < CLASSHASH_SIZE; i++) {
2929                 head = classhash_table + i;
2930                 if (list_empty(head))
2931                         continue;
2932                 list_for_each_entry_safe(class, next, head, hash_entry)
2933                         if (within(class->key, start, size))
2934                                 zap_class(class);
2935         }
2936
2937         graph_unlock();
2938         raw_local_irq_restore(flags);
2939 }
2940
2941 void lockdep_reset_lock(struct lockdep_map *lock)
2942 {
2943         struct lock_class *class, *next;
2944         struct list_head *head;
2945         unsigned long flags;
2946         int i, j;
2947
2948         raw_local_irq_save(flags);
2949
2950         /*
2951          * Remove all classes this lock might have:
2952          */
2953         for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
2954                 /*
2955                  * If the class exists we look it up and zap it:
2956                  */
2957                 class = look_up_lock_class(lock, j);
2958                 if (class)
2959                         zap_class(class);
2960         }
2961         /*
2962          * Debug check: in the end all mapped classes should
2963          * be gone.
2964          */
2965         graph_lock();
2966         for (i = 0; i < CLASSHASH_SIZE; i++) {
2967                 head = classhash_table + i;
2968                 if (list_empty(head))
2969                         continue;
2970                 list_for_each_entry_safe(class, next, head, hash_entry) {
2971                         if (unlikely(class == lock->class_cache)) {
2972                                 if (debug_locks_off_graph_unlock())
2973                                         WARN_ON(1);
2974                                 goto out_restore;
2975                         }
2976                 }
2977         }
2978         graph_unlock();
2979
2980 out_restore:
2981         raw_local_irq_restore(flags);
2982 }
2983
2984 void lockdep_init(void)
2985 {
2986         int i;
2987
2988         /*
2989          * Some architectures have their own start_kernel()
2990          * code which calls lockdep_init(), while we also
2991          * call lockdep_init() from the start_kernel() itself,
2992          * and we want to initialize the hashes only once:
2993          */
2994         if (lockdep_initialized)
2995                 return;
2996
2997         for (i = 0; i < CLASSHASH_SIZE; i++)
2998                 INIT_LIST_HEAD(classhash_table + i);
2999
3000         for (i = 0; i < CHAINHASH_SIZE; i++)
3001                 INIT_LIST_HEAD(chainhash_table + i);
3002
3003         lockdep_initialized = 1;
3004 }
3005
3006 void __init lockdep_info(void)
3007 {
3008         printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3009
3010         printk("... MAX_LOCKDEP_SUBCLASSES:    %lu\n", MAX_LOCKDEP_SUBCLASSES);
3011         printk("... MAX_LOCK_DEPTH:          %lu\n", MAX_LOCK_DEPTH);
3012         printk("... MAX_LOCKDEP_KEYS:        %lu\n", MAX_LOCKDEP_KEYS);
3013         printk("... CLASSHASH_SIZE:           %lu\n", CLASSHASH_SIZE);
3014         printk("... MAX_LOCKDEP_ENTRIES:     %lu\n", MAX_LOCKDEP_ENTRIES);
3015         printk("... MAX_LOCKDEP_CHAINS:      %lu\n", MAX_LOCKDEP_CHAINS);
3016         printk("... CHAINHASH_SIZE:          %lu\n", CHAINHASH_SIZE);
3017
3018         printk(" memory used by lock dependency info: %lu kB\n",
3019                 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3020                 sizeof(struct list_head) * CLASSHASH_SIZE +
3021                 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3022                 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
3023                 sizeof(struct list_head) * CHAINHASH_SIZE) / 1024);
3024
3025         printk(" per task-struct memory footprint: %lu bytes\n",
3026                 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3027
3028 #ifdef CONFIG_DEBUG_LOCKDEP
3029         if (lockdep_init_error)
3030                 printk("WARNING: lockdep init error! Arch code didnt call lockdep_init() early enough?\n");
3031 #endif
3032 }
3033
3034 static inline int in_range(const void *start, const void *addr, const void *end)
3035 {
3036         return addr >= start && addr <= end;
3037 }
3038
3039 static void
3040 print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
3041                      const void *mem_to, struct held_lock *hlock)
3042 {
3043         if (!debug_locks_off())
3044                 return;
3045         if (debug_locks_silent)
3046                 return;
3047
3048         printk("\n=========================\n");
3049         printk(  "[ BUG: held lock freed! ]\n");
3050         printk(  "-------------------------\n");
3051         printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
3052                 curr->comm, curr->pid, mem_from, mem_to-1);
3053         print_lock(hlock);
3054         lockdep_print_held_locks(curr);
3055
3056         printk("\nstack backtrace:\n");
3057         dump_stack();
3058 }
3059
3060 /*
3061  * Called when kernel memory is freed (or unmapped), or if a lock
3062  * is destroyed or reinitialized - this code checks whether there is
3063  * any held lock in the memory range of <from> to <to>:
3064  */
3065 void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3066 {
3067         const void *mem_to = mem_from + mem_len, *lock_from, *lock_to;
3068         struct task_struct *curr = current;
3069         struct held_lock *hlock;
3070         unsigned long flags;
3071         int i;
3072
3073         if (unlikely(!debug_locks))
3074                 return;
3075
3076         local_irq_save(flags);
3077         for (i = 0; i < curr->lockdep_depth; i++) {
3078                 hlock = curr->held_locks + i;
3079
3080                 lock_from = (void *)hlock->instance;
3081                 lock_to = (void *)(hlock->instance + 1);
3082
3083                 if (!in_range(mem_from, lock_from, mem_to) &&
3084                                         !in_range(mem_from, lock_to, mem_to))
3085                         continue;
3086
3087                 print_freed_lock_bug(curr, mem_from, mem_to, hlock);
3088                 break;
3089         }
3090         local_irq_restore(flags);
3091 }
3092 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
3093
3094 static void print_held_locks_bug(struct task_struct *curr)
3095 {
3096         if (!debug_locks_off())
3097                 return;
3098         if (debug_locks_silent)
3099                 return;
3100
3101         printk("\n=====================================\n");
3102         printk(  "[ BUG: lock held at task exit time! ]\n");
3103         printk(  "-------------------------------------\n");
3104         printk("%s/%d is exiting with locks still held!\n",
3105                 curr->comm, curr->pid);
3106         lockdep_print_held_locks(curr);
3107
3108         printk("\nstack backtrace:\n");
3109         dump_stack();
3110 }
3111
3112 void debug_check_no_locks_held(struct task_struct *task)
3113 {
3114         if (unlikely(task->lockdep_depth > 0))
3115                 print_held_locks_bug(task);
3116 }
3117
3118 void debug_show_all_locks(void)
3119 {
3120         struct task_struct *g, *p;
3121         int count = 10;
3122         int unlock = 1;
3123
3124         if (unlikely(!debug_locks)) {
3125                 printk("INFO: lockdep is turned off.\n");
3126                 return;
3127         }
3128         printk("\nShowing all locks held in the system:\n");
3129
3130         /*
3131          * Here we try to get the tasklist_lock as hard as possible,
3132          * if not successful after 2 seconds we ignore it (but keep
3133          * trying). This is to enable a debug printout even if a
3134          * tasklist_lock-holding task deadlocks or crashes.
3135          */
3136 retry:
3137         if (!read_trylock(&tasklist_lock)) {
3138                 if (count == 10)
3139                         printk("hm, tasklist_lock locked, retrying... ");
3140                 if (count) {
3141                         count--;
3142                         printk(" #%d", 10-count);
3143                         mdelay(200);
3144                         goto retry;
3145                 }
3146                 printk(" ignoring it.\n");
3147                 unlock = 0;
3148         }
3149         if (count != 10)
3150                 printk(" locked it.\n");
3151
3152         do_each_thread(g, p) {
3153                 if (p->lockdep_depth)
3154                         lockdep_print_held_locks(p);
3155                 if (!unlock)
3156                         if (read_trylock(&tasklist_lock))
3157                                 unlock = 1;
3158         } while_each_thread(g, p);
3159
3160         printk("\n");
3161         printk("=============================================\n\n");
3162
3163         if (unlock)
3164                 read_unlock(&tasklist_lock);
3165 }
3166
3167 EXPORT_SYMBOL_GPL(debug_show_all_locks);
3168
3169 void debug_show_held_locks(struct task_struct *task)
3170 {
3171         if (unlikely(!debug_locks)) {
3172                 printk("INFO: lockdep is turned off.\n");
3173                 return;
3174         }
3175         lockdep_print_held_locks(task);
3176 }
3177
3178 EXPORT_SYMBOL_GPL(debug_show_held_locks);