xref: /openbmc/linux/kernel/locking/lockdep.c (revision b9b77222)
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
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 #define DISABLE_BRANCH_PROFILING
29 #include <linux/mutex.h>
30 #include <linux/sched.h>
31 #include <linux/sched/clock.h>
32 #include <linux/sched/task.h>
33 #include <linux/sched/mm.h>
34 #include <linux/delay.h>
35 #include <linux/module.h>
36 #include <linux/proc_fs.h>
37 #include <linux/seq_file.h>
38 #include <linux/spinlock.h>
39 #include <linux/kallsyms.h>
40 #include <linux/interrupt.h>
41 #include <linux/stacktrace.h>
42 #include <linux/debug_locks.h>
43 #include <linux/irqflags.h>
44 #include <linux/utsname.h>
45 #include <linux/hash.h>
46 #include <linux/ftrace.h>
47 #include <linux/stringify.h>
48 #include <linux/bitops.h>
49 #include <linux/gfp.h>
50 #include <linux/random.h>
51 #include <linux/jhash.h>
52 #include <linux/nmi.h>
53 
54 #include <asm/sections.h>
55 
56 #include "lockdep_internals.h"
57 
58 #define CREATE_TRACE_POINTS
59 #include <trace/events/lock.h>
60 
61 #ifdef CONFIG_PROVE_LOCKING
62 int prove_locking = 1;
63 module_param(prove_locking, int, 0644);
64 #else
65 #define prove_locking 0
66 #endif
67 
68 #ifdef CONFIG_LOCK_STAT
69 int lock_stat = 1;
70 module_param(lock_stat, int, 0644);
71 #else
72 #define lock_stat 0
73 #endif
74 
75 /*
76  * lockdep_lock: protects the lockdep graph, the hashes and the
77  *               class/list/hash allocators.
78  *
79  * This is one of the rare exceptions where it's justified
80  * to use a raw spinlock - we really dont want the spinlock
81  * code to recurse back into the lockdep code...
82  */
83 static arch_spinlock_t lockdep_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
84 
85 static int graph_lock(void)
86 {
87 	arch_spin_lock(&lockdep_lock);
88 	/*
89 	 * Make sure that if another CPU detected a bug while
90 	 * walking the graph we dont change it (while the other
91 	 * CPU is busy printing out stuff with the graph lock
92 	 * dropped already)
93 	 */
94 	if (!debug_locks) {
95 		arch_spin_unlock(&lockdep_lock);
96 		return 0;
97 	}
98 	/* prevent any recursions within lockdep from causing deadlocks */
99 	current->lockdep_recursion++;
100 	return 1;
101 }
102 
103 static inline int graph_unlock(void)
104 {
105 	if (debug_locks && !arch_spin_is_locked(&lockdep_lock)) {
106 		/*
107 		 * The lockdep graph lock isn't locked while we expect it to
108 		 * be, we're confused now, bye!
109 		 */
110 		return DEBUG_LOCKS_WARN_ON(1);
111 	}
112 
113 	current->lockdep_recursion--;
114 	arch_spin_unlock(&lockdep_lock);
115 	return 0;
116 }
117 
118 /*
119  * Turn lock debugging off and return with 0 if it was off already,
120  * and also release the graph lock:
121  */
122 static inline int debug_locks_off_graph_unlock(void)
123 {
124 	int ret = debug_locks_off();
125 
126 	arch_spin_unlock(&lockdep_lock);
127 
128 	return ret;
129 }
130 
131 unsigned long nr_list_entries;
132 static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
133 
134 /*
135  * All data structures here are protected by the global debug_lock.
136  *
137  * Mutex key structs only get allocated, once during bootup, and never
138  * get freed - this significantly simplifies the debugging code.
139  */
140 unsigned long nr_lock_classes;
141 static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
142 
143 static inline struct lock_class *hlock_class(struct held_lock *hlock)
144 {
145 	if (!hlock->class_idx) {
146 		/*
147 		 * Someone passed in garbage, we give up.
148 		 */
149 		DEBUG_LOCKS_WARN_ON(1);
150 		return NULL;
151 	}
152 	return lock_classes + hlock->class_idx - 1;
153 }
154 
155 #ifdef CONFIG_LOCK_STAT
156 static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], cpu_lock_stats);
157 
158 static inline u64 lockstat_clock(void)
159 {
160 	return local_clock();
161 }
162 
163 static int lock_point(unsigned long points[], unsigned long ip)
164 {
165 	int i;
166 
167 	for (i = 0; i < LOCKSTAT_POINTS; i++) {
168 		if (points[i] == 0) {
169 			points[i] = ip;
170 			break;
171 		}
172 		if (points[i] == ip)
173 			break;
174 	}
175 
176 	return i;
177 }
178 
179 static void lock_time_inc(struct lock_time *lt, u64 time)
180 {
181 	if (time > lt->max)
182 		lt->max = time;
183 
184 	if (time < lt->min || !lt->nr)
185 		lt->min = time;
186 
187 	lt->total += time;
188 	lt->nr++;
189 }
190 
191 static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
192 {
193 	if (!src->nr)
194 		return;
195 
196 	if (src->max > dst->max)
197 		dst->max = src->max;
198 
199 	if (src->min < dst->min || !dst->nr)
200 		dst->min = src->min;
201 
202 	dst->total += src->total;
203 	dst->nr += src->nr;
204 }
205 
206 struct lock_class_stats lock_stats(struct lock_class *class)
207 {
208 	struct lock_class_stats stats;
209 	int cpu, i;
210 
211 	memset(&stats, 0, sizeof(struct lock_class_stats));
212 	for_each_possible_cpu(cpu) {
213 		struct lock_class_stats *pcs =
214 			&per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
215 
216 		for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
217 			stats.contention_point[i] += pcs->contention_point[i];
218 
219 		for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
220 			stats.contending_point[i] += pcs->contending_point[i];
221 
222 		lock_time_add(&pcs->read_waittime, &stats.read_waittime);
223 		lock_time_add(&pcs->write_waittime, &stats.write_waittime);
224 
225 		lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
226 		lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
227 
228 		for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
229 			stats.bounces[i] += pcs->bounces[i];
230 	}
231 
232 	return stats;
233 }
234 
235 void clear_lock_stats(struct lock_class *class)
236 {
237 	int cpu;
238 
239 	for_each_possible_cpu(cpu) {
240 		struct lock_class_stats *cpu_stats =
241 			&per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
242 
243 		memset(cpu_stats, 0, sizeof(struct lock_class_stats));
244 	}
245 	memset(class->contention_point, 0, sizeof(class->contention_point));
246 	memset(class->contending_point, 0, sizeof(class->contending_point));
247 }
248 
249 static struct lock_class_stats *get_lock_stats(struct lock_class *class)
250 {
251 	return &get_cpu_var(cpu_lock_stats)[class - lock_classes];
252 }
253 
254 static void put_lock_stats(struct lock_class_stats *stats)
255 {
256 	put_cpu_var(cpu_lock_stats);
257 }
258 
259 static void lock_release_holdtime(struct held_lock *hlock)
260 {
261 	struct lock_class_stats *stats;
262 	u64 holdtime;
263 
264 	if (!lock_stat)
265 		return;
266 
267 	holdtime = lockstat_clock() - hlock->holdtime_stamp;
268 
269 	stats = get_lock_stats(hlock_class(hlock));
270 	if (hlock->read)
271 		lock_time_inc(&stats->read_holdtime, holdtime);
272 	else
273 		lock_time_inc(&stats->write_holdtime, holdtime);
274 	put_lock_stats(stats);
275 }
276 #else
277 static inline void lock_release_holdtime(struct held_lock *hlock)
278 {
279 }
280 #endif
281 
282 /*
283  * We keep a global list of all lock classes. The list only grows,
284  * never shrinks. The list is only accessed with the lockdep
285  * spinlock lock held.
286  */
287 LIST_HEAD(all_lock_classes);
288 
289 /*
290  * The lockdep classes are in a hash-table as well, for fast lookup:
291  */
292 #define CLASSHASH_BITS		(MAX_LOCKDEP_KEYS_BITS - 1)
293 #define CLASSHASH_SIZE		(1UL << CLASSHASH_BITS)
294 #define __classhashfn(key)	hash_long((unsigned long)key, CLASSHASH_BITS)
295 #define classhashentry(key)	(classhash_table + __classhashfn((key)))
296 
297 static struct hlist_head classhash_table[CLASSHASH_SIZE];
298 
299 /*
300  * We put the lock dependency chains into a hash-table as well, to cache
301  * their existence:
302  */
303 #define CHAINHASH_BITS		(MAX_LOCKDEP_CHAINS_BITS-1)
304 #define CHAINHASH_SIZE		(1UL << CHAINHASH_BITS)
305 #define __chainhashfn(chain)	hash_long(chain, CHAINHASH_BITS)
306 #define chainhashentry(chain)	(chainhash_table + __chainhashfn((chain)))
307 
308 static struct hlist_head chainhash_table[CHAINHASH_SIZE];
309 
310 /*
311  * The hash key of the lock dependency chains is a hash itself too:
312  * it's a hash of all locks taken up to that lock, including that lock.
313  * It's a 64-bit hash, because it's important for the keys to be
314  * unique.
315  */
316 static inline u64 iterate_chain_key(u64 key, u32 idx)
317 {
318 	u32 k0 = key, k1 = key >> 32;
319 
320 	__jhash_mix(idx, k0, k1); /* Macro that modifies arguments! */
321 
322 	return k0 | (u64)k1 << 32;
323 }
324 
325 void lockdep_off(void)
326 {
327 	current->lockdep_recursion++;
328 }
329 EXPORT_SYMBOL(lockdep_off);
330 
331 void lockdep_on(void)
332 {
333 	current->lockdep_recursion--;
334 }
335 EXPORT_SYMBOL(lockdep_on);
336 
337 /*
338  * Debugging switches:
339  */
340 
341 #define VERBOSE			0
342 #define VERY_VERBOSE		0
343 
344 #if VERBOSE
345 # define HARDIRQ_VERBOSE	1
346 # define SOFTIRQ_VERBOSE	1
347 #else
348 # define HARDIRQ_VERBOSE	0
349 # define SOFTIRQ_VERBOSE	0
350 #endif
351 
352 #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE
353 /*
354  * Quick filtering for interesting events:
355  */
356 static int class_filter(struct lock_class *class)
357 {
358 #if 0
359 	/* Example */
360 	if (class->name_version == 1 &&
361 			!strcmp(class->name, "lockname"))
362 		return 1;
363 	if (class->name_version == 1 &&
364 			!strcmp(class->name, "&struct->lockfield"))
365 		return 1;
366 #endif
367 	/* Filter everything else. 1 would be to allow everything else */
368 	return 0;
369 }
370 #endif
371 
372 static int verbose(struct lock_class *class)
373 {
374 #if VERBOSE
375 	return class_filter(class);
376 #endif
377 	return 0;
378 }
379 
380 /*
381  * Stack-trace: tightly packed array of stack backtrace
382  * addresses. Protected by the graph_lock.
383  */
384 unsigned long nr_stack_trace_entries;
385 static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
386 
387 static void print_lockdep_off(const char *bug_msg)
388 {
389 	printk(KERN_DEBUG "%s\n", bug_msg);
390 	printk(KERN_DEBUG "turning off the locking correctness validator.\n");
391 #ifdef CONFIG_LOCK_STAT
392 	printk(KERN_DEBUG "Please attach the output of /proc/lock_stat to the bug report\n");
393 #endif
394 }
395 
396 static int save_trace(struct stack_trace *trace)
397 {
398 	trace->nr_entries = 0;
399 	trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
400 	trace->entries = stack_trace + nr_stack_trace_entries;
401 
402 	trace->skip = 3;
403 
404 	save_stack_trace(trace);
405 
406 	/*
407 	 * Some daft arches put -1 at the end to indicate its a full trace.
408 	 *
409 	 * <rant> this is buggy anyway, since it takes a whole extra entry so a
410 	 * complete trace that maxes out the entries provided will be reported
411 	 * as incomplete, friggin useless </rant>
412 	 */
413 	if (trace->nr_entries != 0 &&
414 	    trace->entries[trace->nr_entries-1] == ULONG_MAX)
415 		trace->nr_entries--;
416 
417 	trace->max_entries = trace->nr_entries;
418 
419 	nr_stack_trace_entries += trace->nr_entries;
420 
421 	if (nr_stack_trace_entries >= MAX_STACK_TRACE_ENTRIES-1) {
422 		if (!debug_locks_off_graph_unlock())
423 			return 0;
424 
425 		print_lockdep_off("BUG: MAX_STACK_TRACE_ENTRIES too low!");
426 		dump_stack();
427 
428 		return 0;
429 	}
430 
431 	return 1;
432 }
433 
434 unsigned int nr_hardirq_chains;
435 unsigned int nr_softirq_chains;
436 unsigned int nr_process_chains;
437 unsigned int max_lockdep_depth;
438 
439 #ifdef CONFIG_DEBUG_LOCKDEP
440 /*
441  * Various lockdep statistics:
442  */
443 DEFINE_PER_CPU(struct lockdep_stats, lockdep_stats);
444 #endif
445 
446 /*
447  * Locking printouts:
448  */
449 
450 #define __USAGE(__STATE)						\
451 	[LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W",	\
452 	[LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W",		\
453 	[LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
454 	[LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
455 
456 static const char *usage_str[] =
457 {
458 #define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
459 #include "lockdep_states.h"
460 #undef LOCKDEP_STATE
461 	[LOCK_USED] = "INITIAL USE",
462 };
463 
464 const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
465 {
466 	return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
467 }
468 
469 static inline unsigned long lock_flag(enum lock_usage_bit bit)
470 {
471 	return 1UL << bit;
472 }
473 
474 static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit)
475 {
476 	char c = '.';
477 
478 	if (class->usage_mask & lock_flag(bit + 2))
479 		c = '+';
480 	if (class->usage_mask & lock_flag(bit)) {
481 		c = '-';
482 		if (class->usage_mask & lock_flag(bit + 2))
483 			c = '?';
484 	}
485 
486 	return c;
487 }
488 
489 void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS])
490 {
491 	int i = 0;
492 
493 #define LOCKDEP_STATE(__STATE) 						\
494 	usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE);	\
495 	usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
496 #include "lockdep_states.h"
497 #undef LOCKDEP_STATE
498 
499 	usage[i] = '\0';
500 }
501 
502 static void __print_lock_name(struct lock_class *class)
503 {
504 	char str[KSYM_NAME_LEN];
505 	const char *name;
506 
507 	name = class->name;
508 	if (!name) {
509 		name = __get_key_name(class->key, str);
510 		printk(KERN_CONT "%s", name);
511 	} else {
512 		printk(KERN_CONT "%s", name);
513 		if (class->name_version > 1)
514 			printk(KERN_CONT "#%d", class->name_version);
515 		if (class->subclass)
516 			printk(KERN_CONT "/%d", class->subclass);
517 	}
518 }
519 
520 static void print_lock_name(struct lock_class *class)
521 {
522 	char usage[LOCK_USAGE_CHARS];
523 
524 	get_usage_chars(class, usage);
525 
526 	printk(KERN_CONT " (");
527 	__print_lock_name(class);
528 	printk(KERN_CONT "){%s}", usage);
529 }
530 
531 static void print_lockdep_cache(struct lockdep_map *lock)
532 {
533 	const char *name;
534 	char str[KSYM_NAME_LEN];
535 
536 	name = lock->name;
537 	if (!name)
538 		name = __get_key_name(lock->key->subkeys, str);
539 
540 	printk(KERN_CONT "%s", name);
541 }
542 
543 static void print_lock(struct held_lock *hlock)
544 {
545 	/*
546 	 * We can be called locklessly through debug_show_all_locks() so be
547 	 * extra careful, the hlock might have been released and cleared.
548 	 */
549 	unsigned int class_idx = hlock->class_idx;
550 
551 	/* Don't re-read hlock->class_idx, can't use READ_ONCE() on bitfields: */
552 	barrier();
553 
554 	if (!class_idx || (class_idx - 1) >= MAX_LOCKDEP_KEYS) {
555 		printk(KERN_CONT "<RELEASED>\n");
556 		return;
557 	}
558 
559 	printk(KERN_CONT "%p", hlock->instance);
560 	print_lock_name(lock_classes + class_idx - 1);
561 	printk(KERN_CONT ", at: %pS\n", (void *)hlock->acquire_ip);
562 }
563 
564 static void lockdep_print_held_locks(struct task_struct *p)
565 {
566 	int i, depth = READ_ONCE(p->lockdep_depth);
567 
568 	if (!depth)
569 		printk("no locks held by %s/%d.\n", p->comm, task_pid_nr(p));
570 	else
571 		printk("%d lock%s held by %s/%d:\n", depth,
572 		       depth > 1 ? "s" : "", p->comm, task_pid_nr(p));
573 	/*
574 	 * It's not reliable to print a task's held locks if it's not sleeping
575 	 * and it's not the current task.
576 	 */
577 	if (p->state == TASK_RUNNING && p != current)
578 		return;
579 	for (i = 0; i < depth; i++) {
580 		printk(" #%d: ", i);
581 		print_lock(p->held_locks + i);
582 	}
583 }
584 
585 static void print_kernel_ident(void)
586 {
587 	printk("%s %.*s %s\n", init_utsname()->release,
588 		(int)strcspn(init_utsname()->version, " "),
589 		init_utsname()->version,
590 		print_tainted());
591 }
592 
593 static int very_verbose(struct lock_class *class)
594 {
595 #if VERY_VERBOSE
596 	return class_filter(class);
597 #endif
598 	return 0;
599 }
600 
601 /*
602  * Is this the address of a static object:
603  */
604 #ifdef __KERNEL__
605 static int static_obj(void *obj)
606 {
607 	unsigned long start = (unsigned long) &_stext,
608 		      end   = (unsigned long) &_end,
609 		      addr  = (unsigned long) obj;
610 
611 	/*
612 	 * static variable?
613 	 */
614 	if ((addr >= start) && (addr < end))
615 		return 1;
616 
617 	if (arch_is_kernel_data(addr))
618 		return 1;
619 
620 	/*
621 	 * in-kernel percpu var?
622 	 */
623 	if (is_kernel_percpu_address(addr))
624 		return 1;
625 
626 	/*
627 	 * module static or percpu var?
628 	 */
629 	return is_module_address(addr) || is_module_percpu_address(addr);
630 }
631 #endif
632 
633 /*
634  * To make lock name printouts unique, we calculate a unique
635  * class->name_version generation counter:
636  */
637 static int count_matching_names(struct lock_class *new_class)
638 {
639 	struct lock_class *class;
640 	int count = 0;
641 
642 	if (!new_class->name)
643 		return 0;
644 
645 	list_for_each_entry_rcu(class, &all_lock_classes, lock_entry) {
646 		if (new_class->key - new_class->subclass == class->key)
647 			return class->name_version;
648 		if (class->name && !strcmp(class->name, new_class->name))
649 			count = max(count, class->name_version);
650 	}
651 
652 	return count + 1;
653 }
654 
655 static inline struct lock_class *
656 look_up_lock_class(const struct lockdep_map *lock, unsigned int subclass)
657 {
658 	struct lockdep_subclass_key *key;
659 	struct hlist_head *hash_head;
660 	struct lock_class *class;
661 
662 	if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
663 		debug_locks_off();
664 		printk(KERN_ERR
665 			"BUG: looking up invalid subclass: %u\n", subclass);
666 		printk(KERN_ERR
667 			"turning off the locking correctness validator.\n");
668 		dump_stack();
669 		return NULL;
670 	}
671 
672 	/*
673 	 * If it is not initialised then it has never been locked,
674 	 * so it won't be present in the hash table.
675 	 */
676 	if (unlikely(!lock->key))
677 		return NULL;
678 
679 	/*
680 	 * NOTE: the class-key must be unique. For dynamic locks, a static
681 	 * lock_class_key variable is passed in through the mutex_init()
682 	 * (or spin_lock_init()) call - which acts as the key. For static
683 	 * locks we use the lock object itself as the key.
684 	 */
685 	BUILD_BUG_ON(sizeof(struct lock_class_key) >
686 			sizeof(struct lockdep_map));
687 
688 	key = lock->key->subkeys + subclass;
689 
690 	hash_head = classhashentry(key);
691 
692 	/*
693 	 * We do an RCU walk of the hash, see lockdep_free_key_range().
694 	 */
695 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
696 		return NULL;
697 
698 	hlist_for_each_entry_rcu(class, hash_head, hash_entry) {
699 		if (class->key == key) {
700 			/*
701 			 * Huh! same key, different name? Did someone trample
702 			 * on some memory? We're most confused.
703 			 */
704 			WARN_ON_ONCE(class->name != lock->name);
705 			return class;
706 		}
707 	}
708 
709 	return NULL;
710 }
711 
712 /*
713  * Static locks do not have their class-keys yet - for them the key is
714  * the lock object itself. If the lock is in the per cpu area, the
715  * canonical address of the lock (per cpu offset removed) is used.
716  */
717 static bool assign_lock_key(struct lockdep_map *lock)
718 {
719 	unsigned long can_addr, addr = (unsigned long)lock;
720 
721 	if (__is_kernel_percpu_address(addr, &can_addr))
722 		lock->key = (void *)can_addr;
723 	else if (__is_module_percpu_address(addr, &can_addr))
724 		lock->key = (void *)can_addr;
725 	else if (static_obj(lock))
726 		lock->key = (void *)lock;
727 	else {
728 		/* Debug-check: all keys must be persistent! */
729 		debug_locks_off();
730 		pr_err("INFO: trying to register non-static key.\n");
731 		pr_err("the code is fine but needs lockdep annotation.\n");
732 		pr_err("turning off the locking correctness validator.\n");
733 		dump_stack();
734 		return false;
735 	}
736 
737 	return true;
738 }
739 
740 /*
741  * Register a lock's class in the hash-table, if the class is not present
742  * yet. Otherwise we look it up. We cache the result in the lock object
743  * itself, so actual lookup of the hash should be once per lock object.
744  */
745 static struct lock_class *
746 register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
747 {
748 	struct lockdep_subclass_key *key;
749 	struct hlist_head *hash_head;
750 	struct lock_class *class;
751 
752 	DEBUG_LOCKS_WARN_ON(!irqs_disabled());
753 
754 	class = look_up_lock_class(lock, subclass);
755 	if (likely(class))
756 		goto out_set_class_cache;
757 
758 	if (!lock->key) {
759 		if (!assign_lock_key(lock))
760 			return NULL;
761 	} else if (!static_obj(lock->key)) {
762 		return NULL;
763 	}
764 
765 	key = lock->key->subkeys + subclass;
766 	hash_head = classhashentry(key);
767 
768 	if (!graph_lock()) {
769 		return NULL;
770 	}
771 	/*
772 	 * We have to do the hash-walk again, to avoid races
773 	 * with another CPU:
774 	 */
775 	hlist_for_each_entry_rcu(class, hash_head, hash_entry) {
776 		if (class->key == key)
777 			goto out_unlock_set;
778 	}
779 
780 	/*
781 	 * Allocate a new key from the static array, and add it to
782 	 * the hash:
783 	 */
784 	if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
785 		if (!debug_locks_off_graph_unlock()) {
786 			return NULL;
787 		}
788 
789 		print_lockdep_off("BUG: MAX_LOCKDEP_KEYS too low!");
790 		dump_stack();
791 		return NULL;
792 	}
793 	class = lock_classes + nr_lock_classes++;
794 	debug_atomic_inc(nr_unused_locks);
795 	class->key = key;
796 	class->name = lock->name;
797 	class->subclass = subclass;
798 	INIT_LIST_HEAD(&class->lock_entry);
799 	INIT_LIST_HEAD(&class->locks_before);
800 	INIT_LIST_HEAD(&class->locks_after);
801 	class->name_version = count_matching_names(class);
802 	/*
803 	 * We use RCU's safe list-add method to make
804 	 * parallel walking of the hash-list safe:
805 	 */
806 	hlist_add_head_rcu(&class->hash_entry, hash_head);
807 	/*
808 	 * Add it to the global list of classes:
809 	 */
810 	list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
811 
812 	if (verbose(class)) {
813 		graph_unlock();
814 
815 		printk("\nnew class %px: %s", class->key, class->name);
816 		if (class->name_version > 1)
817 			printk(KERN_CONT "#%d", class->name_version);
818 		printk(KERN_CONT "\n");
819 		dump_stack();
820 
821 		if (!graph_lock()) {
822 			return NULL;
823 		}
824 	}
825 out_unlock_set:
826 	graph_unlock();
827 
828 out_set_class_cache:
829 	if (!subclass || force)
830 		lock->class_cache[0] = class;
831 	else if (subclass < NR_LOCKDEP_CACHING_CLASSES)
832 		lock->class_cache[subclass] = class;
833 
834 	/*
835 	 * Hash collision, did we smoke some? We found a class with a matching
836 	 * hash but the subclass -- which is hashed in -- didn't match.
837 	 */
838 	if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
839 		return NULL;
840 
841 	return class;
842 }
843 
844 #ifdef CONFIG_PROVE_LOCKING
845 /*
846  * Allocate a lockdep entry. (assumes the graph_lock held, returns
847  * with NULL on failure)
848  */
849 static struct lock_list *alloc_list_entry(void)
850 {
851 	if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
852 		if (!debug_locks_off_graph_unlock())
853 			return NULL;
854 
855 		print_lockdep_off("BUG: MAX_LOCKDEP_ENTRIES too low!");
856 		dump_stack();
857 		return NULL;
858 	}
859 	return list_entries + nr_list_entries++;
860 }
861 
862 /*
863  * Add a new dependency to the head of the list:
864  */
865 static int add_lock_to_list(struct lock_class *this, struct list_head *head,
866 			    unsigned long ip, int distance,
867 			    struct stack_trace *trace)
868 {
869 	struct lock_list *entry;
870 	/*
871 	 * Lock not present yet - get a new dependency struct and
872 	 * add it to the list:
873 	 */
874 	entry = alloc_list_entry();
875 	if (!entry)
876 		return 0;
877 
878 	entry->class = this;
879 	entry->distance = distance;
880 	entry->trace = *trace;
881 	/*
882 	 * Both allocation and removal are done under the graph lock; but
883 	 * iteration is under RCU-sched; see look_up_lock_class() and
884 	 * lockdep_free_key_range().
885 	 */
886 	list_add_tail_rcu(&entry->entry, head);
887 
888 	return 1;
889 }
890 
891 /*
892  * For good efficiency of modular, we use power of 2
893  */
894 #define MAX_CIRCULAR_QUEUE_SIZE		4096UL
895 #define CQ_MASK				(MAX_CIRCULAR_QUEUE_SIZE-1)
896 
897 /*
898  * The circular_queue and helpers is used to implement the
899  * breadth-first search(BFS)algorithem, by which we can build
900  * the shortest path from the next lock to be acquired to the
901  * previous held lock if there is a circular between them.
902  */
903 struct circular_queue {
904 	unsigned long element[MAX_CIRCULAR_QUEUE_SIZE];
905 	unsigned int  front, rear;
906 };
907 
908 static struct circular_queue lock_cq;
909 
910 unsigned int max_bfs_queue_depth;
911 
912 static unsigned int lockdep_dependency_gen_id;
913 
914 static inline void __cq_init(struct circular_queue *cq)
915 {
916 	cq->front = cq->rear = 0;
917 	lockdep_dependency_gen_id++;
918 }
919 
920 static inline int __cq_empty(struct circular_queue *cq)
921 {
922 	return (cq->front == cq->rear);
923 }
924 
925 static inline int __cq_full(struct circular_queue *cq)
926 {
927 	return ((cq->rear + 1) & CQ_MASK) == cq->front;
928 }
929 
930 static inline int __cq_enqueue(struct circular_queue *cq, unsigned long elem)
931 {
932 	if (__cq_full(cq))
933 		return -1;
934 
935 	cq->element[cq->rear] = elem;
936 	cq->rear = (cq->rear + 1) & CQ_MASK;
937 	return 0;
938 }
939 
940 static inline int __cq_dequeue(struct circular_queue *cq, unsigned long *elem)
941 {
942 	if (__cq_empty(cq))
943 		return -1;
944 
945 	*elem = cq->element[cq->front];
946 	cq->front = (cq->front + 1) & CQ_MASK;
947 	return 0;
948 }
949 
950 static inline unsigned int  __cq_get_elem_count(struct circular_queue *cq)
951 {
952 	return (cq->rear - cq->front) & CQ_MASK;
953 }
954 
955 static inline void mark_lock_accessed(struct lock_list *lock,
956 					struct lock_list *parent)
957 {
958 	unsigned long nr;
959 
960 	nr = lock - list_entries;
961 	WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */
962 	lock->parent = parent;
963 	lock->class->dep_gen_id = lockdep_dependency_gen_id;
964 }
965 
966 static inline unsigned long lock_accessed(struct lock_list *lock)
967 {
968 	unsigned long nr;
969 
970 	nr = lock - list_entries;
971 	WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */
972 	return lock->class->dep_gen_id == lockdep_dependency_gen_id;
973 }
974 
975 static inline struct lock_list *get_lock_parent(struct lock_list *child)
976 {
977 	return child->parent;
978 }
979 
980 static inline int get_lock_depth(struct lock_list *child)
981 {
982 	int depth = 0;
983 	struct lock_list *parent;
984 
985 	while ((parent = get_lock_parent(child))) {
986 		child = parent;
987 		depth++;
988 	}
989 	return depth;
990 }
991 
992 static int __bfs(struct lock_list *source_entry,
993 		 void *data,
994 		 int (*match)(struct lock_list *entry, void *data),
995 		 struct lock_list **target_entry,
996 		 int forward)
997 {
998 	struct lock_list *entry;
999 	struct list_head *head;
1000 	struct circular_queue *cq = &lock_cq;
1001 	int ret = 1;
1002 
1003 	if (match(source_entry, data)) {
1004 		*target_entry = source_entry;
1005 		ret = 0;
1006 		goto exit;
1007 	}
1008 
1009 	if (forward)
1010 		head = &source_entry->class->locks_after;
1011 	else
1012 		head = &source_entry->class->locks_before;
1013 
1014 	if (list_empty(head))
1015 		goto exit;
1016 
1017 	__cq_init(cq);
1018 	__cq_enqueue(cq, (unsigned long)source_entry);
1019 
1020 	while (!__cq_empty(cq)) {
1021 		struct lock_list *lock;
1022 
1023 		__cq_dequeue(cq, (unsigned long *)&lock);
1024 
1025 		if (!lock->class) {
1026 			ret = -2;
1027 			goto exit;
1028 		}
1029 
1030 		if (forward)
1031 			head = &lock->class->locks_after;
1032 		else
1033 			head = &lock->class->locks_before;
1034 
1035 		DEBUG_LOCKS_WARN_ON(!irqs_disabled());
1036 
1037 		list_for_each_entry_rcu(entry, head, entry) {
1038 			if (!lock_accessed(entry)) {
1039 				unsigned int cq_depth;
1040 				mark_lock_accessed(entry, lock);
1041 				if (match(entry, data)) {
1042 					*target_entry = entry;
1043 					ret = 0;
1044 					goto exit;
1045 				}
1046 
1047 				if (__cq_enqueue(cq, (unsigned long)entry)) {
1048 					ret = -1;
1049 					goto exit;
1050 				}
1051 				cq_depth = __cq_get_elem_count(cq);
1052 				if (max_bfs_queue_depth < cq_depth)
1053 					max_bfs_queue_depth = cq_depth;
1054 			}
1055 		}
1056 	}
1057 exit:
1058 	return ret;
1059 }
1060 
1061 static inline int __bfs_forwards(struct lock_list *src_entry,
1062 			void *data,
1063 			int (*match)(struct lock_list *entry, void *data),
1064 			struct lock_list **target_entry)
1065 {
1066 	return __bfs(src_entry, data, match, target_entry, 1);
1067 
1068 }
1069 
1070 static inline int __bfs_backwards(struct lock_list *src_entry,
1071 			void *data,
1072 			int (*match)(struct lock_list *entry, void *data),
1073 			struct lock_list **target_entry)
1074 {
1075 	return __bfs(src_entry, data, match, target_entry, 0);
1076 
1077 }
1078 
1079 /*
1080  * Recursive, forwards-direction lock-dependency checking, used for
1081  * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
1082  * checking.
1083  */
1084 
1085 /*
1086  * Print a dependency chain entry (this is only done when a deadlock
1087  * has been detected):
1088  */
1089 static noinline int
1090 print_circular_bug_entry(struct lock_list *target, int depth)
1091 {
1092 	if (debug_locks_silent)
1093 		return 0;
1094 	printk("\n-> #%u", depth);
1095 	print_lock_name(target->class);
1096 	printk(KERN_CONT ":\n");
1097 	print_stack_trace(&target->trace, 6);
1098 
1099 	return 0;
1100 }
1101 
1102 static void
1103 print_circular_lock_scenario(struct held_lock *src,
1104 			     struct held_lock *tgt,
1105 			     struct lock_list *prt)
1106 {
1107 	struct lock_class *source = hlock_class(src);
1108 	struct lock_class *target = hlock_class(tgt);
1109 	struct lock_class *parent = prt->class;
1110 
1111 	/*
1112 	 * A direct locking problem where unsafe_class lock is taken
1113 	 * directly by safe_class lock, then all we need to show
1114 	 * is the deadlock scenario, as it is obvious that the
1115 	 * unsafe lock is taken under the safe lock.
1116 	 *
1117 	 * But if there is a chain instead, where the safe lock takes
1118 	 * an intermediate lock (middle_class) where this lock is
1119 	 * not the same as the safe lock, then the lock chain is
1120 	 * used to describe the problem. Otherwise we would need
1121 	 * to show a different CPU case for each link in the chain
1122 	 * from the safe_class lock to the unsafe_class lock.
1123 	 */
1124 	if (parent != source) {
1125 		printk("Chain exists of:\n  ");
1126 		__print_lock_name(source);
1127 		printk(KERN_CONT " --> ");
1128 		__print_lock_name(parent);
1129 		printk(KERN_CONT " --> ");
1130 		__print_lock_name(target);
1131 		printk(KERN_CONT "\n\n");
1132 	}
1133 
1134 	printk(" Possible unsafe locking scenario:\n\n");
1135 	printk("       CPU0                    CPU1\n");
1136 	printk("       ----                    ----\n");
1137 	printk("  lock(");
1138 	__print_lock_name(target);
1139 	printk(KERN_CONT ");\n");
1140 	printk("                               lock(");
1141 	__print_lock_name(parent);
1142 	printk(KERN_CONT ");\n");
1143 	printk("                               lock(");
1144 	__print_lock_name(target);
1145 	printk(KERN_CONT ");\n");
1146 	printk("  lock(");
1147 	__print_lock_name(source);
1148 	printk(KERN_CONT ");\n");
1149 	printk("\n *** DEADLOCK ***\n\n");
1150 }
1151 
1152 /*
1153  * When a circular dependency is detected, print the
1154  * header first:
1155  */
1156 static noinline int
1157 print_circular_bug_header(struct lock_list *entry, unsigned int depth,
1158 			struct held_lock *check_src,
1159 			struct held_lock *check_tgt)
1160 {
1161 	struct task_struct *curr = current;
1162 
1163 	if (debug_locks_silent)
1164 		return 0;
1165 
1166 	pr_warn("\n");
1167 	pr_warn("======================================================\n");
1168 	pr_warn("WARNING: possible circular locking dependency detected\n");
1169 	print_kernel_ident();
1170 	pr_warn("------------------------------------------------------\n");
1171 	pr_warn("%s/%d is trying to acquire lock:\n",
1172 		curr->comm, task_pid_nr(curr));
1173 	print_lock(check_src);
1174 
1175 	pr_warn("\nbut task is already holding lock:\n");
1176 
1177 	print_lock(check_tgt);
1178 	pr_warn("\nwhich lock already depends on the new lock.\n\n");
1179 	pr_warn("\nthe existing dependency chain (in reverse order) is:\n");
1180 
1181 	print_circular_bug_entry(entry, depth);
1182 
1183 	return 0;
1184 }
1185 
1186 static inline int class_equal(struct lock_list *entry, void *data)
1187 {
1188 	return entry->class == data;
1189 }
1190 
1191 static noinline int print_circular_bug(struct lock_list *this,
1192 				struct lock_list *target,
1193 				struct held_lock *check_src,
1194 				struct held_lock *check_tgt,
1195 				struct stack_trace *trace)
1196 {
1197 	struct task_struct *curr = current;
1198 	struct lock_list *parent;
1199 	struct lock_list *first_parent;
1200 	int depth;
1201 
1202 	if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1203 		return 0;
1204 
1205 	if (!save_trace(&this->trace))
1206 		return 0;
1207 
1208 	depth = get_lock_depth(target);
1209 
1210 	print_circular_bug_header(target, depth, check_src, check_tgt);
1211 
1212 	parent = get_lock_parent(target);
1213 	first_parent = parent;
1214 
1215 	while (parent) {
1216 		print_circular_bug_entry(parent, --depth);
1217 		parent = get_lock_parent(parent);
1218 	}
1219 
1220 	printk("\nother info that might help us debug this:\n\n");
1221 	print_circular_lock_scenario(check_src, check_tgt,
1222 				     first_parent);
1223 
1224 	lockdep_print_held_locks(curr);
1225 
1226 	printk("\nstack backtrace:\n");
1227 	dump_stack();
1228 
1229 	return 0;
1230 }
1231 
1232 static noinline int print_bfs_bug(int ret)
1233 {
1234 	if (!debug_locks_off_graph_unlock())
1235 		return 0;
1236 
1237 	/*
1238 	 * Breadth-first-search failed, graph got corrupted?
1239 	 */
1240 	WARN(1, "lockdep bfs error:%d\n", ret);
1241 
1242 	return 0;
1243 }
1244 
1245 static int noop_count(struct lock_list *entry, void *data)
1246 {
1247 	(*(unsigned long *)data)++;
1248 	return 0;
1249 }
1250 
1251 static unsigned long __lockdep_count_forward_deps(struct lock_list *this)
1252 {
1253 	unsigned long  count = 0;
1254 	struct lock_list *uninitialized_var(target_entry);
1255 
1256 	__bfs_forwards(this, (void *)&count, noop_count, &target_entry);
1257 
1258 	return count;
1259 }
1260 unsigned long lockdep_count_forward_deps(struct lock_class *class)
1261 {
1262 	unsigned long ret, flags;
1263 	struct lock_list this;
1264 
1265 	this.parent = NULL;
1266 	this.class = class;
1267 
1268 	raw_local_irq_save(flags);
1269 	arch_spin_lock(&lockdep_lock);
1270 	ret = __lockdep_count_forward_deps(&this);
1271 	arch_spin_unlock(&lockdep_lock);
1272 	raw_local_irq_restore(flags);
1273 
1274 	return ret;
1275 }
1276 
1277 static unsigned long __lockdep_count_backward_deps(struct lock_list *this)
1278 {
1279 	unsigned long  count = 0;
1280 	struct lock_list *uninitialized_var(target_entry);
1281 
1282 	__bfs_backwards(this, (void *)&count, noop_count, &target_entry);
1283 
1284 	return count;
1285 }
1286 
1287 unsigned long lockdep_count_backward_deps(struct lock_class *class)
1288 {
1289 	unsigned long ret, flags;
1290 	struct lock_list this;
1291 
1292 	this.parent = NULL;
1293 	this.class = class;
1294 
1295 	raw_local_irq_save(flags);
1296 	arch_spin_lock(&lockdep_lock);
1297 	ret = __lockdep_count_backward_deps(&this);
1298 	arch_spin_unlock(&lockdep_lock);
1299 	raw_local_irq_restore(flags);
1300 
1301 	return ret;
1302 }
1303 
1304 /*
1305  * Prove that the dependency graph starting at <entry> can not
1306  * lead to <target>. Print an error and return 0 if it does.
1307  */
1308 static noinline int
1309 check_noncircular(struct lock_list *root, struct lock_class *target,
1310 		struct lock_list **target_entry)
1311 {
1312 	int result;
1313 
1314 	debug_atomic_inc(nr_cyclic_checks);
1315 
1316 	result = __bfs_forwards(root, target, class_equal, target_entry);
1317 
1318 	return result;
1319 }
1320 
1321 static noinline int
1322 check_redundant(struct lock_list *root, struct lock_class *target,
1323 		struct lock_list **target_entry)
1324 {
1325 	int result;
1326 
1327 	debug_atomic_inc(nr_redundant_checks);
1328 
1329 	result = __bfs_forwards(root, target, class_equal, target_entry);
1330 
1331 	return result;
1332 }
1333 
1334 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
1335 /*
1336  * Forwards and backwards subgraph searching, for the purposes of
1337  * proving that two subgraphs can be connected by a new dependency
1338  * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1339  */
1340 
1341 static inline int usage_match(struct lock_list *entry, void *bit)
1342 {
1343 	return entry->class->usage_mask & (1 << (enum lock_usage_bit)bit);
1344 }
1345 
1346 
1347 
1348 /*
1349  * Find a node in the forwards-direction dependency sub-graph starting
1350  * at @root->class that matches @bit.
1351  *
1352  * Return 0 if such a node exists in the subgraph, and put that node
1353  * into *@target_entry.
1354  *
1355  * Return 1 otherwise and keep *@target_entry unchanged.
1356  * Return <0 on error.
1357  */
1358 static int
1359 find_usage_forwards(struct lock_list *root, enum lock_usage_bit bit,
1360 			struct lock_list **target_entry)
1361 {
1362 	int result;
1363 
1364 	debug_atomic_inc(nr_find_usage_forwards_checks);
1365 
1366 	result = __bfs_forwards(root, (void *)bit, usage_match, target_entry);
1367 
1368 	return result;
1369 }
1370 
1371 /*
1372  * Find a node in the backwards-direction dependency sub-graph starting
1373  * at @root->class that matches @bit.
1374  *
1375  * Return 0 if such a node exists in the subgraph, and put that node
1376  * into *@target_entry.
1377  *
1378  * Return 1 otherwise and keep *@target_entry unchanged.
1379  * Return <0 on error.
1380  */
1381 static int
1382 find_usage_backwards(struct lock_list *root, enum lock_usage_bit bit,
1383 			struct lock_list **target_entry)
1384 {
1385 	int result;
1386 
1387 	debug_atomic_inc(nr_find_usage_backwards_checks);
1388 
1389 	result = __bfs_backwards(root, (void *)bit, usage_match, target_entry);
1390 
1391 	return result;
1392 }
1393 
1394 static void print_lock_class_header(struct lock_class *class, int depth)
1395 {
1396 	int bit;
1397 
1398 	printk("%*s->", depth, "");
1399 	print_lock_name(class);
1400 	printk(KERN_CONT " ops: %lu", class->ops);
1401 	printk(KERN_CONT " {\n");
1402 
1403 	for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
1404 		if (class->usage_mask & (1 << bit)) {
1405 			int len = depth;
1406 
1407 			len += printk("%*s   %s", depth, "", usage_str[bit]);
1408 			len += printk(KERN_CONT " at:\n");
1409 			print_stack_trace(class->usage_traces + bit, len);
1410 		}
1411 	}
1412 	printk("%*s }\n", depth, "");
1413 
1414 	printk("%*s ... key      at: [<%px>] %pS\n",
1415 		depth, "", class->key, class->key);
1416 }
1417 
1418 /*
1419  * printk the shortest lock dependencies from @start to @end in reverse order:
1420  */
1421 static void __used
1422 print_shortest_lock_dependencies(struct lock_list *leaf,
1423 				struct lock_list *root)
1424 {
1425 	struct lock_list *entry = leaf;
1426 	int depth;
1427 
1428 	/*compute depth from generated tree by BFS*/
1429 	depth = get_lock_depth(leaf);
1430 
1431 	do {
1432 		print_lock_class_header(entry->class, depth);
1433 		printk("%*s ... acquired at:\n", depth, "");
1434 		print_stack_trace(&entry->trace, 2);
1435 		printk("\n");
1436 
1437 		if (depth == 0 && (entry != root)) {
1438 			printk("lockdep:%s bad path found in chain graph\n", __func__);
1439 			break;
1440 		}
1441 
1442 		entry = get_lock_parent(entry);
1443 		depth--;
1444 	} while (entry && (depth >= 0));
1445 
1446 	return;
1447 }
1448 
1449 static void
1450 print_irq_lock_scenario(struct lock_list *safe_entry,
1451 			struct lock_list *unsafe_entry,
1452 			struct lock_class *prev_class,
1453 			struct lock_class *next_class)
1454 {
1455 	struct lock_class *safe_class = safe_entry->class;
1456 	struct lock_class *unsafe_class = unsafe_entry->class;
1457 	struct lock_class *middle_class = prev_class;
1458 
1459 	if (middle_class == safe_class)
1460 		middle_class = next_class;
1461 
1462 	/*
1463 	 * A direct locking problem where unsafe_class lock is taken
1464 	 * directly by safe_class lock, then all we need to show
1465 	 * is the deadlock scenario, as it is obvious that the
1466 	 * unsafe lock is taken under the safe lock.
1467 	 *
1468 	 * But if there is a chain instead, where the safe lock takes
1469 	 * an intermediate lock (middle_class) where this lock is
1470 	 * not the same as the safe lock, then the lock chain is
1471 	 * used to describe the problem. Otherwise we would need
1472 	 * to show a different CPU case for each link in the chain
1473 	 * from the safe_class lock to the unsafe_class lock.
1474 	 */
1475 	if (middle_class != unsafe_class) {
1476 		printk("Chain exists of:\n  ");
1477 		__print_lock_name(safe_class);
1478 		printk(KERN_CONT " --> ");
1479 		__print_lock_name(middle_class);
1480 		printk(KERN_CONT " --> ");
1481 		__print_lock_name(unsafe_class);
1482 		printk(KERN_CONT "\n\n");
1483 	}
1484 
1485 	printk(" Possible interrupt unsafe locking scenario:\n\n");
1486 	printk("       CPU0                    CPU1\n");
1487 	printk("       ----                    ----\n");
1488 	printk("  lock(");
1489 	__print_lock_name(unsafe_class);
1490 	printk(KERN_CONT ");\n");
1491 	printk("                               local_irq_disable();\n");
1492 	printk("                               lock(");
1493 	__print_lock_name(safe_class);
1494 	printk(KERN_CONT ");\n");
1495 	printk("                               lock(");
1496 	__print_lock_name(middle_class);
1497 	printk(KERN_CONT ");\n");
1498 	printk("  <Interrupt>\n");
1499 	printk("    lock(");
1500 	__print_lock_name(safe_class);
1501 	printk(KERN_CONT ");\n");
1502 	printk("\n *** DEADLOCK ***\n\n");
1503 }
1504 
1505 static int
1506 print_bad_irq_dependency(struct task_struct *curr,
1507 			 struct lock_list *prev_root,
1508 			 struct lock_list *next_root,
1509 			 struct lock_list *backwards_entry,
1510 			 struct lock_list *forwards_entry,
1511 			 struct held_lock *prev,
1512 			 struct held_lock *next,
1513 			 enum lock_usage_bit bit1,
1514 			 enum lock_usage_bit bit2,
1515 			 const char *irqclass)
1516 {
1517 	if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1518 		return 0;
1519 
1520 	pr_warn("\n");
1521 	pr_warn("=====================================================\n");
1522 	pr_warn("WARNING: %s-safe -> %s-unsafe lock order detected\n",
1523 		irqclass, irqclass);
1524 	print_kernel_ident();
1525 	pr_warn("-----------------------------------------------------\n");
1526 	pr_warn("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
1527 		curr->comm, task_pid_nr(curr),
1528 		curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1529 		curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1530 		curr->hardirqs_enabled,
1531 		curr->softirqs_enabled);
1532 	print_lock(next);
1533 
1534 	pr_warn("\nand this task is already holding:\n");
1535 	print_lock(prev);
1536 	pr_warn("which would create a new lock dependency:\n");
1537 	print_lock_name(hlock_class(prev));
1538 	pr_cont(" ->");
1539 	print_lock_name(hlock_class(next));
1540 	pr_cont("\n");
1541 
1542 	pr_warn("\nbut this new dependency connects a %s-irq-safe lock:\n",
1543 		irqclass);
1544 	print_lock_name(backwards_entry->class);
1545 	pr_warn("\n... which became %s-irq-safe at:\n", irqclass);
1546 
1547 	print_stack_trace(backwards_entry->class->usage_traces + bit1, 1);
1548 
1549 	pr_warn("\nto a %s-irq-unsafe lock:\n", irqclass);
1550 	print_lock_name(forwards_entry->class);
1551 	pr_warn("\n... which became %s-irq-unsafe at:\n", irqclass);
1552 	pr_warn("...");
1553 
1554 	print_stack_trace(forwards_entry->class->usage_traces + bit2, 1);
1555 
1556 	pr_warn("\nother info that might help us debug this:\n\n");
1557 	print_irq_lock_scenario(backwards_entry, forwards_entry,
1558 				hlock_class(prev), hlock_class(next));
1559 
1560 	lockdep_print_held_locks(curr);
1561 
1562 	pr_warn("\nthe dependencies between %s-irq-safe lock and the holding lock:\n", irqclass);
1563 	if (!save_trace(&prev_root->trace))
1564 		return 0;
1565 	print_shortest_lock_dependencies(backwards_entry, prev_root);
1566 
1567 	pr_warn("\nthe dependencies between the lock to be acquired");
1568 	pr_warn(" and %s-irq-unsafe lock:\n", irqclass);
1569 	if (!save_trace(&next_root->trace))
1570 		return 0;
1571 	print_shortest_lock_dependencies(forwards_entry, next_root);
1572 
1573 	pr_warn("\nstack backtrace:\n");
1574 	dump_stack();
1575 
1576 	return 0;
1577 }
1578 
1579 static int
1580 check_usage(struct task_struct *curr, struct held_lock *prev,
1581 	    struct held_lock *next, enum lock_usage_bit bit_backwards,
1582 	    enum lock_usage_bit bit_forwards, const char *irqclass)
1583 {
1584 	int ret;
1585 	struct lock_list this, that;
1586 	struct lock_list *uninitialized_var(target_entry);
1587 	struct lock_list *uninitialized_var(target_entry1);
1588 
1589 	this.parent = NULL;
1590 
1591 	this.class = hlock_class(prev);
1592 	ret = find_usage_backwards(&this, bit_backwards, &target_entry);
1593 	if (ret < 0)
1594 		return print_bfs_bug(ret);
1595 	if (ret == 1)
1596 		return ret;
1597 
1598 	that.parent = NULL;
1599 	that.class = hlock_class(next);
1600 	ret = find_usage_forwards(&that, bit_forwards, &target_entry1);
1601 	if (ret < 0)
1602 		return print_bfs_bug(ret);
1603 	if (ret == 1)
1604 		return ret;
1605 
1606 	return print_bad_irq_dependency(curr, &this, &that,
1607 			target_entry, target_entry1,
1608 			prev, next,
1609 			bit_backwards, bit_forwards, irqclass);
1610 }
1611 
1612 static const char *state_names[] = {
1613 #define LOCKDEP_STATE(__STATE) \
1614 	__stringify(__STATE),
1615 #include "lockdep_states.h"
1616 #undef LOCKDEP_STATE
1617 };
1618 
1619 static const char *state_rnames[] = {
1620 #define LOCKDEP_STATE(__STATE) \
1621 	__stringify(__STATE)"-READ",
1622 #include "lockdep_states.h"
1623 #undef LOCKDEP_STATE
1624 };
1625 
1626 static inline const char *state_name(enum lock_usage_bit bit)
1627 {
1628 	return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2];
1629 }
1630 
1631 static int exclusive_bit(int new_bit)
1632 {
1633 	/*
1634 	 * USED_IN
1635 	 * USED_IN_READ
1636 	 * ENABLED
1637 	 * ENABLED_READ
1638 	 *
1639 	 * bit 0 - write/read
1640 	 * bit 1 - used_in/enabled
1641 	 * bit 2+  state
1642 	 */
1643 
1644 	int state = new_bit & ~3;
1645 	int dir = new_bit & 2;
1646 
1647 	/*
1648 	 * keep state, bit flip the direction and strip read.
1649 	 */
1650 	return state | (dir ^ 2);
1651 }
1652 
1653 static int check_irq_usage(struct task_struct *curr, struct held_lock *prev,
1654 			   struct held_lock *next, enum lock_usage_bit bit)
1655 {
1656 	/*
1657 	 * Prove that the new dependency does not connect a hardirq-safe
1658 	 * lock with a hardirq-unsafe lock - to achieve this we search
1659 	 * the backwards-subgraph starting at <prev>, and the
1660 	 * forwards-subgraph starting at <next>:
1661 	 */
1662 	if (!check_usage(curr, prev, next, bit,
1663 			   exclusive_bit(bit), state_name(bit)))
1664 		return 0;
1665 
1666 	bit++; /* _READ */
1667 
1668 	/*
1669 	 * Prove that the new dependency does not connect a hardirq-safe-read
1670 	 * lock with a hardirq-unsafe lock - to achieve this we search
1671 	 * the backwards-subgraph starting at <prev>, and the
1672 	 * forwards-subgraph starting at <next>:
1673 	 */
1674 	if (!check_usage(curr, prev, next, bit,
1675 			   exclusive_bit(bit), state_name(bit)))
1676 		return 0;
1677 
1678 	return 1;
1679 }
1680 
1681 static int
1682 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1683 		struct held_lock *next)
1684 {
1685 #define LOCKDEP_STATE(__STATE)						\
1686 	if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE))	\
1687 		return 0;
1688 #include "lockdep_states.h"
1689 #undef LOCKDEP_STATE
1690 
1691 	return 1;
1692 }
1693 
1694 static void inc_chains(void)
1695 {
1696 	if (current->hardirq_context)
1697 		nr_hardirq_chains++;
1698 	else {
1699 		if (current->softirq_context)
1700 			nr_softirq_chains++;
1701 		else
1702 			nr_process_chains++;
1703 	}
1704 }
1705 
1706 #else
1707 
1708 static inline int
1709 check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1710 		struct held_lock *next)
1711 {
1712 	return 1;
1713 }
1714 
1715 static inline void inc_chains(void)
1716 {
1717 	nr_process_chains++;
1718 }
1719 
1720 #endif
1721 
1722 static void
1723 print_deadlock_scenario(struct held_lock *nxt,
1724 			     struct held_lock *prv)
1725 {
1726 	struct lock_class *next = hlock_class(nxt);
1727 	struct lock_class *prev = hlock_class(prv);
1728 
1729 	printk(" Possible unsafe locking scenario:\n\n");
1730 	printk("       CPU0\n");
1731 	printk("       ----\n");
1732 	printk("  lock(");
1733 	__print_lock_name(prev);
1734 	printk(KERN_CONT ");\n");
1735 	printk("  lock(");
1736 	__print_lock_name(next);
1737 	printk(KERN_CONT ");\n");
1738 	printk("\n *** DEADLOCK ***\n\n");
1739 	printk(" May be due to missing lock nesting notation\n\n");
1740 }
1741 
1742 static int
1743 print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1744 		   struct held_lock *next)
1745 {
1746 	if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1747 		return 0;
1748 
1749 	pr_warn("\n");
1750 	pr_warn("============================================\n");
1751 	pr_warn("WARNING: possible recursive locking detected\n");
1752 	print_kernel_ident();
1753 	pr_warn("--------------------------------------------\n");
1754 	pr_warn("%s/%d is trying to acquire lock:\n",
1755 		curr->comm, task_pid_nr(curr));
1756 	print_lock(next);
1757 	pr_warn("\nbut task is already holding lock:\n");
1758 	print_lock(prev);
1759 
1760 	pr_warn("\nother info that might help us debug this:\n");
1761 	print_deadlock_scenario(next, prev);
1762 	lockdep_print_held_locks(curr);
1763 
1764 	pr_warn("\nstack backtrace:\n");
1765 	dump_stack();
1766 
1767 	return 0;
1768 }
1769 
1770 /*
1771  * Check whether we are holding such a class already.
1772  *
1773  * (Note that this has to be done separately, because the graph cannot
1774  * detect such classes of deadlocks.)
1775  *
1776  * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1777  */
1778 static int
1779 check_deadlock(struct task_struct *curr, struct held_lock *next,
1780 	       struct lockdep_map *next_instance, int read)
1781 {
1782 	struct held_lock *prev;
1783 	struct held_lock *nest = NULL;
1784 	int i;
1785 
1786 	for (i = 0; i < curr->lockdep_depth; i++) {
1787 		prev = curr->held_locks + i;
1788 
1789 		if (prev->instance == next->nest_lock)
1790 			nest = prev;
1791 
1792 		if (hlock_class(prev) != hlock_class(next))
1793 			continue;
1794 
1795 		/*
1796 		 * Allow read-after-read recursion of the same
1797 		 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1798 		 */
1799 		if ((read == 2) && prev->read)
1800 			return 2;
1801 
1802 		/*
1803 		 * We're holding the nest_lock, which serializes this lock's
1804 		 * nesting behaviour.
1805 		 */
1806 		if (nest)
1807 			return 2;
1808 
1809 		return print_deadlock_bug(curr, prev, next);
1810 	}
1811 	return 1;
1812 }
1813 
1814 /*
1815  * There was a chain-cache miss, and we are about to add a new dependency
1816  * to a previous lock. We recursively validate the following rules:
1817  *
1818  *  - would the adding of the <prev> -> <next> dependency create a
1819  *    circular dependency in the graph? [== circular deadlock]
1820  *
1821  *  - does the new prev->next dependency connect any hardirq-safe lock
1822  *    (in the full backwards-subgraph starting at <prev>) with any
1823  *    hardirq-unsafe lock (in the full forwards-subgraph starting at
1824  *    <next>)? [== illegal lock inversion with hardirq contexts]
1825  *
1826  *  - does the new prev->next dependency connect any softirq-safe lock
1827  *    (in the full backwards-subgraph starting at <prev>) with any
1828  *    softirq-unsafe lock (in the full forwards-subgraph starting at
1829  *    <next>)? [== illegal lock inversion with softirq contexts]
1830  *
1831  * any of these scenarios could lead to a deadlock.
1832  *
1833  * Then if all the validations pass, we add the forwards and backwards
1834  * dependency.
1835  */
1836 static int
1837 check_prev_add(struct task_struct *curr, struct held_lock *prev,
1838 	       struct held_lock *next, int distance, struct stack_trace *trace,
1839 	       int (*save)(struct stack_trace *trace))
1840 {
1841 	struct lock_list *uninitialized_var(target_entry);
1842 	struct lock_list *entry;
1843 	struct lock_list this;
1844 	int ret;
1845 
1846 	/*
1847 	 * Prove that the new <prev> -> <next> dependency would not
1848 	 * create a circular dependency in the graph. (We do this by
1849 	 * forward-recursing into the graph starting at <next>, and
1850 	 * checking whether we can reach <prev>.)
1851 	 *
1852 	 * We are using global variables to control the recursion, to
1853 	 * keep the stackframe size of the recursive functions low:
1854 	 */
1855 	this.class = hlock_class(next);
1856 	this.parent = NULL;
1857 	ret = check_noncircular(&this, hlock_class(prev), &target_entry);
1858 	if (unlikely(!ret)) {
1859 		if (!trace->entries) {
1860 			/*
1861 			 * If @save fails here, the printing might trigger
1862 			 * a WARN but because of the !nr_entries it should
1863 			 * not do bad things.
1864 			 */
1865 			save(trace);
1866 		}
1867 		return print_circular_bug(&this, target_entry, next, prev, trace);
1868 	}
1869 	else if (unlikely(ret < 0))
1870 		return print_bfs_bug(ret);
1871 
1872 	if (!check_prev_add_irq(curr, prev, next))
1873 		return 0;
1874 
1875 	/*
1876 	 * For recursive read-locks we do all the dependency checks,
1877 	 * but we dont store read-triggered dependencies (only
1878 	 * write-triggered dependencies). This ensures that only the
1879 	 * write-side dependencies matter, and that if for example a
1880 	 * write-lock never takes any other locks, then the reads are
1881 	 * equivalent to a NOP.
1882 	 */
1883 	if (next->read == 2 || prev->read == 2)
1884 		return 1;
1885 	/*
1886 	 * Is the <prev> -> <next> dependency already present?
1887 	 *
1888 	 * (this may occur even though this is a new chain: consider
1889 	 *  e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1890 	 *  chains - the second one will be new, but L1 already has
1891 	 *  L2 added to its dependency list, due to the first chain.)
1892 	 */
1893 	list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1894 		if (entry->class == hlock_class(next)) {
1895 			if (distance == 1)
1896 				entry->distance = 1;
1897 			return 1;
1898 		}
1899 	}
1900 
1901 	/*
1902 	 * Is the <prev> -> <next> link redundant?
1903 	 */
1904 	this.class = hlock_class(prev);
1905 	this.parent = NULL;
1906 	ret = check_redundant(&this, hlock_class(next), &target_entry);
1907 	if (!ret) {
1908 		debug_atomic_inc(nr_redundant);
1909 		return 2;
1910 	}
1911 	if (ret < 0)
1912 		return print_bfs_bug(ret);
1913 
1914 
1915 	if (!trace->entries && !save(trace))
1916 		return 0;
1917 
1918 	/*
1919 	 * Ok, all validations passed, add the new lock
1920 	 * to the previous lock's dependency list:
1921 	 */
1922 	ret = add_lock_to_list(hlock_class(next),
1923 			       &hlock_class(prev)->locks_after,
1924 			       next->acquire_ip, distance, trace);
1925 
1926 	if (!ret)
1927 		return 0;
1928 
1929 	ret = add_lock_to_list(hlock_class(prev),
1930 			       &hlock_class(next)->locks_before,
1931 			       next->acquire_ip, distance, trace);
1932 	if (!ret)
1933 		return 0;
1934 
1935 	return 2;
1936 }
1937 
1938 /*
1939  * Add the dependency to all directly-previous locks that are 'relevant'.
1940  * The ones that are relevant are (in increasing distance from curr):
1941  * all consecutive trylock entries and the final non-trylock entry - or
1942  * the end of this context's lock-chain - whichever comes first.
1943  */
1944 static int
1945 check_prevs_add(struct task_struct *curr, struct held_lock *next)
1946 {
1947 	int depth = curr->lockdep_depth;
1948 	struct held_lock *hlock;
1949 	struct stack_trace trace = {
1950 		.nr_entries = 0,
1951 		.max_entries = 0,
1952 		.entries = NULL,
1953 		.skip = 0,
1954 	};
1955 
1956 	/*
1957 	 * Debugging checks.
1958 	 *
1959 	 * Depth must not be zero for a non-head lock:
1960 	 */
1961 	if (!depth)
1962 		goto out_bug;
1963 	/*
1964 	 * At least two relevant locks must exist for this
1965 	 * to be a head:
1966 	 */
1967 	if (curr->held_locks[depth].irq_context !=
1968 			curr->held_locks[depth-1].irq_context)
1969 		goto out_bug;
1970 
1971 	for (;;) {
1972 		int distance = curr->lockdep_depth - depth + 1;
1973 		hlock = curr->held_locks + depth - 1;
1974 
1975 		/*
1976 		 * Only non-recursive-read entries get new dependencies
1977 		 * added:
1978 		 */
1979 		if (hlock->read != 2 && hlock->check) {
1980 			int ret = check_prev_add(curr, hlock, next, distance, &trace, save_trace);
1981 			if (!ret)
1982 				return 0;
1983 
1984 			/*
1985 			 * Stop after the first non-trylock entry,
1986 			 * as non-trylock entries have added their
1987 			 * own direct dependencies already, so this
1988 			 * lock is connected to them indirectly:
1989 			 */
1990 			if (!hlock->trylock)
1991 				break;
1992 		}
1993 
1994 		depth--;
1995 		/*
1996 		 * End of lock-stack?
1997 		 */
1998 		if (!depth)
1999 			break;
2000 		/*
2001 		 * Stop the search if we cross into another context:
2002 		 */
2003 		if (curr->held_locks[depth].irq_context !=
2004 				curr->held_locks[depth-1].irq_context)
2005 			break;
2006 	}
2007 	return 1;
2008 out_bug:
2009 	if (!debug_locks_off_graph_unlock())
2010 		return 0;
2011 
2012 	/*
2013 	 * Clearly we all shouldn't be here, but since we made it we
2014 	 * can reliable say we messed up our state. See the above two
2015 	 * gotos for reasons why we could possibly end up here.
2016 	 */
2017 	WARN_ON(1);
2018 
2019 	return 0;
2020 }
2021 
2022 unsigned long nr_lock_chains;
2023 struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
2024 int nr_chain_hlocks;
2025 static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
2026 
2027 struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
2028 {
2029 	return lock_classes + chain_hlocks[chain->base + i];
2030 }
2031 
2032 /*
2033  * Returns the index of the first held_lock of the current chain
2034  */
2035 static inline int get_first_held_lock(struct task_struct *curr,
2036 					struct held_lock *hlock)
2037 {
2038 	int i;
2039 	struct held_lock *hlock_curr;
2040 
2041 	for (i = curr->lockdep_depth - 1; i >= 0; i--) {
2042 		hlock_curr = curr->held_locks + i;
2043 		if (hlock_curr->irq_context != hlock->irq_context)
2044 			break;
2045 
2046 	}
2047 
2048 	return ++i;
2049 }
2050 
2051 #ifdef CONFIG_DEBUG_LOCKDEP
2052 /*
2053  * Returns the next chain_key iteration
2054  */
2055 static u64 print_chain_key_iteration(int class_idx, u64 chain_key)
2056 {
2057 	u64 new_chain_key = iterate_chain_key(chain_key, class_idx);
2058 
2059 	printk(" class_idx:%d -> chain_key:%016Lx",
2060 		class_idx,
2061 		(unsigned long long)new_chain_key);
2062 	return new_chain_key;
2063 }
2064 
2065 static void
2066 print_chain_keys_held_locks(struct task_struct *curr, struct held_lock *hlock_next)
2067 {
2068 	struct held_lock *hlock;
2069 	u64 chain_key = 0;
2070 	int depth = curr->lockdep_depth;
2071 	int i;
2072 
2073 	printk("depth: %u\n", depth + 1);
2074 	for (i = get_first_held_lock(curr, hlock_next); i < depth; i++) {
2075 		hlock = curr->held_locks + i;
2076 		chain_key = print_chain_key_iteration(hlock->class_idx, chain_key);
2077 
2078 		print_lock(hlock);
2079 	}
2080 
2081 	print_chain_key_iteration(hlock_next->class_idx, chain_key);
2082 	print_lock(hlock_next);
2083 }
2084 
2085 static void print_chain_keys_chain(struct lock_chain *chain)
2086 {
2087 	int i;
2088 	u64 chain_key = 0;
2089 	int class_id;
2090 
2091 	printk("depth: %u\n", chain->depth);
2092 	for (i = 0; i < chain->depth; i++) {
2093 		class_id = chain_hlocks[chain->base + i];
2094 		chain_key = print_chain_key_iteration(class_id + 1, chain_key);
2095 
2096 		print_lock_name(lock_classes + class_id);
2097 		printk("\n");
2098 	}
2099 }
2100 
2101 static void print_collision(struct task_struct *curr,
2102 			struct held_lock *hlock_next,
2103 			struct lock_chain *chain)
2104 {
2105 	pr_warn("\n");
2106 	pr_warn("============================\n");
2107 	pr_warn("WARNING: chain_key collision\n");
2108 	print_kernel_ident();
2109 	pr_warn("----------------------------\n");
2110 	pr_warn("%s/%d: ", current->comm, task_pid_nr(current));
2111 	pr_warn("Hash chain already cached but the contents don't match!\n");
2112 
2113 	pr_warn("Held locks:");
2114 	print_chain_keys_held_locks(curr, hlock_next);
2115 
2116 	pr_warn("Locks in cached chain:");
2117 	print_chain_keys_chain(chain);
2118 
2119 	pr_warn("\nstack backtrace:\n");
2120 	dump_stack();
2121 }
2122 #endif
2123 
2124 /*
2125  * Checks whether the chain and the current held locks are consistent
2126  * in depth and also in content. If they are not it most likely means
2127  * that there was a collision during the calculation of the chain_key.
2128  * Returns: 0 not passed, 1 passed
2129  */
2130 static int check_no_collision(struct task_struct *curr,
2131 			struct held_lock *hlock,
2132 			struct lock_chain *chain)
2133 {
2134 #ifdef CONFIG_DEBUG_LOCKDEP
2135 	int i, j, id;
2136 
2137 	i = get_first_held_lock(curr, hlock);
2138 
2139 	if (DEBUG_LOCKS_WARN_ON(chain->depth != curr->lockdep_depth - (i - 1))) {
2140 		print_collision(curr, hlock, chain);
2141 		return 0;
2142 	}
2143 
2144 	for (j = 0; j < chain->depth - 1; j++, i++) {
2145 		id = curr->held_locks[i].class_idx - 1;
2146 
2147 		if (DEBUG_LOCKS_WARN_ON(chain_hlocks[chain->base + j] != id)) {
2148 			print_collision(curr, hlock, chain);
2149 			return 0;
2150 		}
2151 	}
2152 #endif
2153 	return 1;
2154 }
2155 
2156 /*
2157  * This is for building a chain between just two different classes,
2158  * instead of adding a new hlock upon current, which is done by
2159  * add_chain_cache().
2160  *
2161  * This can be called in any context with two classes, while
2162  * add_chain_cache() must be done within the lock owener's context
2163  * since it uses hlock which might be racy in another context.
2164  */
2165 static inline int add_chain_cache_classes(unsigned int prev,
2166 					  unsigned int next,
2167 					  unsigned int irq_context,
2168 					  u64 chain_key)
2169 {
2170 	struct hlist_head *hash_head = chainhashentry(chain_key);
2171 	struct lock_chain *chain;
2172 
2173 	/*
2174 	 * Allocate a new chain entry from the static array, and add
2175 	 * it to the hash:
2176 	 */
2177 
2178 	/*
2179 	 * We might need to take the graph lock, ensure we've got IRQs
2180 	 * disabled to make this an IRQ-safe lock.. for recursion reasons
2181 	 * lockdep won't complain about its own locking errors.
2182 	 */
2183 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2184 		return 0;
2185 
2186 	if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
2187 		if (!debug_locks_off_graph_unlock())
2188 			return 0;
2189 
2190 		print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!");
2191 		dump_stack();
2192 		return 0;
2193 	}
2194 
2195 	chain = lock_chains + nr_lock_chains++;
2196 	chain->chain_key = chain_key;
2197 	chain->irq_context = irq_context;
2198 	chain->depth = 2;
2199 	if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
2200 		chain->base = nr_chain_hlocks;
2201 		nr_chain_hlocks += chain->depth;
2202 		chain_hlocks[chain->base] = prev - 1;
2203 		chain_hlocks[chain->base + 1] = next -1;
2204 	}
2205 #ifdef CONFIG_DEBUG_LOCKDEP
2206 	/*
2207 	 * Important for check_no_collision().
2208 	 */
2209 	else {
2210 		if (!debug_locks_off_graph_unlock())
2211 			return 0;
2212 
2213 		print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!");
2214 		dump_stack();
2215 		return 0;
2216 	}
2217 #endif
2218 
2219 	hlist_add_head_rcu(&chain->entry, hash_head);
2220 	debug_atomic_inc(chain_lookup_misses);
2221 	inc_chains();
2222 
2223 	return 1;
2224 }
2225 
2226 /*
2227  * Adds a dependency chain into chain hashtable. And must be called with
2228  * graph_lock held.
2229  *
2230  * Return 0 if fail, and graph_lock is released.
2231  * Return 1 if succeed, with graph_lock held.
2232  */
2233 static inline int add_chain_cache(struct task_struct *curr,
2234 				  struct held_lock *hlock,
2235 				  u64 chain_key)
2236 {
2237 	struct lock_class *class = hlock_class(hlock);
2238 	struct hlist_head *hash_head = chainhashentry(chain_key);
2239 	struct lock_chain *chain;
2240 	int i, j;
2241 
2242 	/*
2243 	 * Allocate a new chain entry from the static array, and add
2244 	 * it to the hash:
2245 	 */
2246 
2247 	/*
2248 	 * We might need to take the graph lock, ensure we've got IRQs
2249 	 * disabled to make this an IRQ-safe lock.. for recursion reasons
2250 	 * lockdep won't complain about its own locking errors.
2251 	 */
2252 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2253 		return 0;
2254 
2255 	if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
2256 		if (!debug_locks_off_graph_unlock())
2257 			return 0;
2258 
2259 		print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!");
2260 		dump_stack();
2261 		return 0;
2262 	}
2263 	chain = lock_chains + nr_lock_chains++;
2264 	chain->chain_key = chain_key;
2265 	chain->irq_context = hlock->irq_context;
2266 	i = get_first_held_lock(curr, hlock);
2267 	chain->depth = curr->lockdep_depth + 1 - i;
2268 
2269 	BUILD_BUG_ON((1UL << 24) <= ARRAY_SIZE(chain_hlocks));
2270 	BUILD_BUG_ON((1UL << 6)  <= ARRAY_SIZE(curr->held_locks));
2271 	BUILD_BUG_ON((1UL << 8*sizeof(chain_hlocks[0])) <= ARRAY_SIZE(lock_classes));
2272 
2273 	if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
2274 		chain->base = nr_chain_hlocks;
2275 		for (j = 0; j < chain->depth - 1; j++, i++) {
2276 			int lock_id = curr->held_locks[i].class_idx - 1;
2277 			chain_hlocks[chain->base + j] = lock_id;
2278 		}
2279 		chain_hlocks[chain->base + j] = class - lock_classes;
2280 	}
2281 
2282 	if (nr_chain_hlocks < MAX_LOCKDEP_CHAIN_HLOCKS)
2283 		nr_chain_hlocks += chain->depth;
2284 
2285 #ifdef CONFIG_DEBUG_LOCKDEP
2286 	/*
2287 	 * Important for check_no_collision().
2288 	 */
2289 	if (unlikely(nr_chain_hlocks > MAX_LOCKDEP_CHAIN_HLOCKS)) {
2290 		if (!debug_locks_off_graph_unlock())
2291 			return 0;
2292 
2293 		print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!");
2294 		dump_stack();
2295 		return 0;
2296 	}
2297 #endif
2298 
2299 	hlist_add_head_rcu(&chain->entry, hash_head);
2300 	debug_atomic_inc(chain_lookup_misses);
2301 	inc_chains();
2302 
2303 	return 1;
2304 }
2305 
2306 /*
2307  * Look up a dependency chain.
2308  */
2309 static inline struct lock_chain *lookup_chain_cache(u64 chain_key)
2310 {
2311 	struct hlist_head *hash_head = chainhashentry(chain_key);
2312 	struct lock_chain *chain;
2313 
2314 	/*
2315 	 * We can walk it lock-free, because entries only get added
2316 	 * to the hash:
2317 	 */
2318 	hlist_for_each_entry_rcu(chain, hash_head, entry) {
2319 		if (chain->chain_key == chain_key) {
2320 			debug_atomic_inc(chain_lookup_hits);
2321 			return chain;
2322 		}
2323 	}
2324 	return NULL;
2325 }
2326 
2327 /*
2328  * If the key is not present yet in dependency chain cache then
2329  * add it and return 1 - in this case the new dependency chain is
2330  * validated. If the key is already hashed, return 0.
2331  * (On return with 1 graph_lock is held.)
2332  */
2333 static inline int lookup_chain_cache_add(struct task_struct *curr,
2334 					 struct held_lock *hlock,
2335 					 u64 chain_key)
2336 {
2337 	struct lock_class *class = hlock_class(hlock);
2338 	struct lock_chain *chain = lookup_chain_cache(chain_key);
2339 
2340 	if (chain) {
2341 cache_hit:
2342 		if (!check_no_collision(curr, hlock, chain))
2343 			return 0;
2344 
2345 		if (very_verbose(class)) {
2346 			printk("\nhash chain already cached, key: "
2347 					"%016Lx tail class: [%px] %s\n",
2348 					(unsigned long long)chain_key,
2349 					class->key, class->name);
2350 		}
2351 
2352 		return 0;
2353 	}
2354 
2355 	if (very_verbose(class)) {
2356 		printk("\nnew hash chain, key: %016Lx tail class: [%px] %s\n",
2357 			(unsigned long long)chain_key, class->key, class->name);
2358 	}
2359 
2360 	if (!graph_lock())
2361 		return 0;
2362 
2363 	/*
2364 	 * We have to walk the chain again locked - to avoid duplicates:
2365 	 */
2366 	chain = lookup_chain_cache(chain_key);
2367 	if (chain) {
2368 		graph_unlock();
2369 		goto cache_hit;
2370 	}
2371 
2372 	if (!add_chain_cache(curr, hlock, chain_key))
2373 		return 0;
2374 
2375 	return 1;
2376 }
2377 
2378 static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
2379 		struct held_lock *hlock, int chain_head, u64 chain_key)
2380 {
2381 	/*
2382 	 * Trylock needs to maintain the stack of held locks, but it
2383 	 * does not add new dependencies, because trylock can be done
2384 	 * in any order.
2385 	 *
2386 	 * We look up the chain_key and do the O(N^2) check and update of
2387 	 * the dependencies only if this is a new dependency chain.
2388 	 * (If lookup_chain_cache_add() return with 1 it acquires
2389 	 * graph_lock for us)
2390 	 */
2391 	if (!hlock->trylock && hlock->check &&
2392 	    lookup_chain_cache_add(curr, hlock, chain_key)) {
2393 		/*
2394 		 * Check whether last held lock:
2395 		 *
2396 		 * - is irq-safe, if this lock is irq-unsafe
2397 		 * - is softirq-safe, if this lock is hardirq-unsafe
2398 		 *
2399 		 * And check whether the new lock's dependency graph
2400 		 * could lead back to the previous lock.
2401 		 *
2402 		 * any of these scenarios could lead to a deadlock. If
2403 		 * All validations
2404 		 */
2405 		int ret = check_deadlock(curr, hlock, lock, hlock->read);
2406 
2407 		if (!ret)
2408 			return 0;
2409 		/*
2410 		 * Mark recursive read, as we jump over it when
2411 		 * building dependencies (just like we jump over
2412 		 * trylock entries):
2413 		 */
2414 		if (ret == 2)
2415 			hlock->read = 2;
2416 		/*
2417 		 * Add dependency only if this lock is not the head
2418 		 * of the chain, and if it's not a secondary read-lock:
2419 		 */
2420 		if (!chain_head && ret != 2) {
2421 			if (!check_prevs_add(curr, hlock))
2422 				return 0;
2423 		}
2424 
2425 		graph_unlock();
2426 	} else {
2427 		/* after lookup_chain_cache_add(): */
2428 		if (unlikely(!debug_locks))
2429 			return 0;
2430 	}
2431 
2432 	return 1;
2433 }
2434 #else
2435 static inline int validate_chain(struct task_struct *curr,
2436 	       	struct lockdep_map *lock, struct held_lock *hlock,
2437 		int chain_head, u64 chain_key)
2438 {
2439 	return 1;
2440 }
2441 #endif
2442 
2443 /*
2444  * We are building curr_chain_key incrementally, so double-check
2445  * it from scratch, to make sure that it's done correctly:
2446  */
2447 static void check_chain_key(struct task_struct *curr)
2448 {
2449 #ifdef CONFIG_DEBUG_LOCKDEP
2450 	struct held_lock *hlock, *prev_hlock = NULL;
2451 	unsigned int i;
2452 	u64 chain_key = 0;
2453 
2454 	for (i = 0; i < curr->lockdep_depth; i++) {
2455 		hlock = curr->held_locks + i;
2456 		if (chain_key != hlock->prev_chain_key) {
2457 			debug_locks_off();
2458 			/*
2459 			 * We got mighty confused, our chain keys don't match
2460 			 * with what we expect, someone trample on our task state?
2461 			 */
2462 			WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
2463 				curr->lockdep_depth, i,
2464 				(unsigned long long)chain_key,
2465 				(unsigned long long)hlock->prev_chain_key);
2466 			return;
2467 		}
2468 		/*
2469 		 * Whoops ran out of static storage again?
2470 		 */
2471 		if (DEBUG_LOCKS_WARN_ON(hlock->class_idx > MAX_LOCKDEP_KEYS))
2472 			return;
2473 
2474 		if (prev_hlock && (prev_hlock->irq_context !=
2475 							hlock->irq_context))
2476 			chain_key = 0;
2477 		chain_key = iterate_chain_key(chain_key, hlock->class_idx);
2478 		prev_hlock = hlock;
2479 	}
2480 	if (chain_key != curr->curr_chain_key) {
2481 		debug_locks_off();
2482 		/*
2483 		 * More smoking hash instead of calculating it, damn see these
2484 		 * numbers float.. I bet that a pink elephant stepped on my memory.
2485 		 */
2486 		WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
2487 			curr->lockdep_depth, i,
2488 			(unsigned long long)chain_key,
2489 			(unsigned long long)curr->curr_chain_key);
2490 	}
2491 #endif
2492 }
2493 
2494 static void
2495 print_usage_bug_scenario(struct held_lock *lock)
2496 {
2497 	struct lock_class *class = hlock_class(lock);
2498 
2499 	printk(" Possible unsafe locking scenario:\n\n");
2500 	printk("       CPU0\n");
2501 	printk("       ----\n");
2502 	printk("  lock(");
2503 	__print_lock_name(class);
2504 	printk(KERN_CONT ");\n");
2505 	printk("  <Interrupt>\n");
2506 	printk("    lock(");
2507 	__print_lock_name(class);
2508 	printk(KERN_CONT ");\n");
2509 	printk("\n *** DEADLOCK ***\n\n");
2510 }
2511 
2512 static int
2513 print_usage_bug(struct task_struct *curr, struct held_lock *this,
2514 		enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
2515 {
2516 	if (!debug_locks_off_graph_unlock() || debug_locks_silent)
2517 		return 0;
2518 
2519 	pr_warn("\n");
2520 	pr_warn("================================\n");
2521 	pr_warn("WARNING: inconsistent lock state\n");
2522 	print_kernel_ident();
2523 	pr_warn("--------------------------------\n");
2524 
2525 	pr_warn("inconsistent {%s} -> {%s} usage.\n",
2526 		usage_str[prev_bit], usage_str[new_bit]);
2527 
2528 	pr_warn("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
2529 		curr->comm, task_pid_nr(curr),
2530 		trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
2531 		trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
2532 		trace_hardirqs_enabled(curr),
2533 		trace_softirqs_enabled(curr));
2534 	print_lock(this);
2535 
2536 	pr_warn("{%s} state was registered at:\n", usage_str[prev_bit]);
2537 	print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
2538 
2539 	print_irqtrace_events(curr);
2540 	pr_warn("\nother info that might help us debug this:\n");
2541 	print_usage_bug_scenario(this);
2542 
2543 	lockdep_print_held_locks(curr);
2544 
2545 	pr_warn("\nstack backtrace:\n");
2546 	dump_stack();
2547 
2548 	return 0;
2549 }
2550 
2551 /*
2552  * Print out an error if an invalid bit is set:
2553  */
2554 static inline int
2555 valid_state(struct task_struct *curr, struct held_lock *this,
2556 	    enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
2557 {
2558 	if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
2559 		return print_usage_bug(curr, this, bad_bit, new_bit);
2560 	return 1;
2561 }
2562 
2563 static int mark_lock(struct task_struct *curr, struct held_lock *this,
2564 		     enum lock_usage_bit new_bit);
2565 
2566 #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
2567 
2568 /*
2569  * print irq inversion bug:
2570  */
2571 static int
2572 print_irq_inversion_bug(struct task_struct *curr,
2573 			struct lock_list *root, struct lock_list *other,
2574 			struct held_lock *this, int forwards,
2575 			const char *irqclass)
2576 {
2577 	struct lock_list *entry = other;
2578 	struct lock_list *middle = NULL;
2579 	int depth;
2580 
2581 	if (!debug_locks_off_graph_unlock() || debug_locks_silent)
2582 		return 0;
2583 
2584 	pr_warn("\n");
2585 	pr_warn("========================================================\n");
2586 	pr_warn("WARNING: possible irq lock inversion dependency detected\n");
2587 	print_kernel_ident();
2588 	pr_warn("--------------------------------------------------------\n");
2589 	pr_warn("%s/%d just changed the state of lock:\n",
2590 		curr->comm, task_pid_nr(curr));
2591 	print_lock(this);
2592 	if (forwards)
2593 		pr_warn("but this lock took another, %s-unsafe lock in the past:\n", irqclass);
2594 	else
2595 		pr_warn("but this lock was taken by another, %s-safe lock in the past:\n", irqclass);
2596 	print_lock_name(other->class);
2597 	pr_warn("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2598 
2599 	pr_warn("\nother info that might help us debug this:\n");
2600 
2601 	/* Find a middle lock (if one exists) */
2602 	depth = get_lock_depth(other);
2603 	do {
2604 		if (depth == 0 && (entry != root)) {
2605 			pr_warn("lockdep:%s bad path found in chain graph\n", __func__);
2606 			break;
2607 		}
2608 		middle = entry;
2609 		entry = get_lock_parent(entry);
2610 		depth--;
2611 	} while (entry && entry != root && (depth >= 0));
2612 	if (forwards)
2613 		print_irq_lock_scenario(root, other,
2614 			middle ? middle->class : root->class, other->class);
2615 	else
2616 		print_irq_lock_scenario(other, root,
2617 			middle ? middle->class : other->class, root->class);
2618 
2619 	lockdep_print_held_locks(curr);
2620 
2621 	pr_warn("\nthe shortest dependencies between 2nd lock and 1st lock:\n");
2622 	if (!save_trace(&root->trace))
2623 		return 0;
2624 	print_shortest_lock_dependencies(other, root);
2625 
2626 	pr_warn("\nstack backtrace:\n");
2627 	dump_stack();
2628 
2629 	return 0;
2630 }
2631 
2632 /*
2633  * Prove that in the forwards-direction subgraph starting at <this>
2634  * there is no lock matching <mask>:
2635  */
2636 static int
2637 check_usage_forwards(struct task_struct *curr, struct held_lock *this,
2638 		     enum lock_usage_bit bit, const char *irqclass)
2639 {
2640 	int ret;
2641 	struct lock_list root;
2642 	struct lock_list *uninitialized_var(target_entry);
2643 
2644 	root.parent = NULL;
2645 	root.class = hlock_class(this);
2646 	ret = find_usage_forwards(&root, bit, &target_entry);
2647 	if (ret < 0)
2648 		return print_bfs_bug(ret);
2649 	if (ret == 1)
2650 		return ret;
2651 
2652 	return print_irq_inversion_bug(curr, &root, target_entry,
2653 					this, 1, irqclass);
2654 }
2655 
2656 /*
2657  * Prove that in the backwards-direction subgraph starting at <this>
2658  * there is no lock matching <mask>:
2659  */
2660 static int
2661 check_usage_backwards(struct task_struct *curr, struct held_lock *this,
2662 		      enum lock_usage_bit bit, const char *irqclass)
2663 {
2664 	int ret;
2665 	struct lock_list root;
2666 	struct lock_list *uninitialized_var(target_entry);
2667 
2668 	root.parent = NULL;
2669 	root.class = hlock_class(this);
2670 	ret = find_usage_backwards(&root, bit, &target_entry);
2671 	if (ret < 0)
2672 		return print_bfs_bug(ret);
2673 	if (ret == 1)
2674 		return ret;
2675 
2676 	return print_irq_inversion_bug(curr, &root, target_entry,
2677 					this, 0, irqclass);
2678 }
2679 
2680 void print_irqtrace_events(struct task_struct *curr)
2681 {
2682 	printk("irq event stamp: %u\n", curr->irq_events);
2683 	printk("hardirqs last  enabled at (%u): [<%px>] %pS\n",
2684 		curr->hardirq_enable_event, (void *)curr->hardirq_enable_ip,
2685 		(void *)curr->hardirq_enable_ip);
2686 	printk("hardirqs last disabled at (%u): [<%px>] %pS\n",
2687 		curr->hardirq_disable_event, (void *)curr->hardirq_disable_ip,
2688 		(void *)curr->hardirq_disable_ip);
2689 	printk("softirqs last  enabled at (%u): [<%px>] %pS\n",
2690 		curr->softirq_enable_event, (void *)curr->softirq_enable_ip,
2691 		(void *)curr->softirq_enable_ip);
2692 	printk("softirqs last disabled at (%u): [<%px>] %pS\n",
2693 		curr->softirq_disable_event, (void *)curr->softirq_disable_ip,
2694 		(void *)curr->softirq_disable_ip);
2695 }
2696 
2697 static int HARDIRQ_verbose(struct lock_class *class)
2698 {
2699 #if HARDIRQ_VERBOSE
2700 	return class_filter(class);
2701 #endif
2702 	return 0;
2703 }
2704 
2705 static int SOFTIRQ_verbose(struct lock_class *class)
2706 {
2707 #if SOFTIRQ_VERBOSE
2708 	return class_filter(class);
2709 #endif
2710 	return 0;
2711 }
2712 
2713 #define STRICT_READ_CHECKS	1
2714 
2715 static int (*state_verbose_f[])(struct lock_class *class) = {
2716 #define LOCKDEP_STATE(__STATE) \
2717 	__STATE##_verbose,
2718 #include "lockdep_states.h"
2719 #undef LOCKDEP_STATE
2720 };
2721 
2722 static inline int state_verbose(enum lock_usage_bit bit,
2723 				struct lock_class *class)
2724 {
2725 	return state_verbose_f[bit >> 2](class);
2726 }
2727 
2728 typedef int (*check_usage_f)(struct task_struct *, struct held_lock *,
2729 			     enum lock_usage_bit bit, const char *name);
2730 
2731 static int
2732 mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2733 		enum lock_usage_bit new_bit)
2734 {
2735 	int excl_bit = exclusive_bit(new_bit);
2736 	int read = new_bit & 1;
2737 	int dir = new_bit & 2;
2738 
2739 	/*
2740 	 * mark USED_IN has to look forwards -- to ensure no dependency
2741 	 * has ENABLED state, which would allow recursion deadlocks.
2742 	 *
2743 	 * mark ENABLED has to look backwards -- to ensure no dependee
2744 	 * has USED_IN state, which, again, would allow  recursion deadlocks.
2745 	 */
2746 	check_usage_f usage = dir ?
2747 		check_usage_backwards : check_usage_forwards;
2748 
2749 	/*
2750 	 * Validate that this particular lock does not have conflicting
2751 	 * usage states.
2752 	 */
2753 	if (!valid_state(curr, this, new_bit, excl_bit))
2754 		return 0;
2755 
2756 	/*
2757 	 * Validate that the lock dependencies don't have conflicting usage
2758 	 * states.
2759 	 */
2760 	if ((!read || !dir || STRICT_READ_CHECKS) &&
2761 			!usage(curr, this, excl_bit, state_name(new_bit & ~1)))
2762 		return 0;
2763 
2764 	/*
2765 	 * Check for read in write conflicts
2766 	 */
2767 	if (!read) {
2768 		if (!valid_state(curr, this, new_bit, excl_bit + 1))
2769 			return 0;
2770 
2771 		if (STRICT_READ_CHECKS &&
2772 			!usage(curr, this, excl_bit + 1,
2773 				state_name(new_bit + 1)))
2774 			return 0;
2775 	}
2776 
2777 	if (state_verbose(new_bit, hlock_class(this)))
2778 		return 2;
2779 
2780 	return 1;
2781 }
2782 
2783 enum mark_type {
2784 #define LOCKDEP_STATE(__STATE)	__STATE,
2785 #include "lockdep_states.h"
2786 #undef LOCKDEP_STATE
2787 };
2788 
2789 /*
2790  * Mark all held locks with a usage bit:
2791  */
2792 static int
2793 mark_held_locks(struct task_struct *curr, enum mark_type mark)
2794 {
2795 	enum lock_usage_bit usage_bit;
2796 	struct held_lock *hlock;
2797 	int i;
2798 
2799 	for (i = 0; i < curr->lockdep_depth; i++) {
2800 		hlock = curr->held_locks + i;
2801 
2802 		usage_bit = 2 + (mark << 2); /* ENABLED */
2803 		if (hlock->read)
2804 			usage_bit += 1; /* READ */
2805 
2806 		BUG_ON(usage_bit >= LOCK_USAGE_STATES);
2807 
2808 		if (!hlock->check)
2809 			continue;
2810 
2811 		if (!mark_lock(curr, hlock, usage_bit))
2812 			return 0;
2813 	}
2814 
2815 	return 1;
2816 }
2817 
2818 /*
2819  * Hardirqs will be enabled:
2820  */
2821 static void __trace_hardirqs_on_caller(unsigned long ip)
2822 {
2823 	struct task_struct *curr = current;
2824 
2825 	/* we'll do an OFF -> ON transition: */
2826 	curr->hardirqs_enabled = 1;
2827 
2828 	/*
2829 	 * We are going to turn hardirqs on, so set the
2830 	 * usage bit for all held locks:
2831 	 */
2832 	if (!mark_held_locks(curr, HARDIRQ))
2833 		return;
2834 	/*
2835 	 * If we have softirqs enabled, then set the usage
2836 	 * bit for all held locks. (disabled hardirqs prevented
2837 	 * this bit from being set before)
2838 	 */
2839 	if (curr->softirqs_enabled)
2840 		if (!mark_held_locks(curr, SOFTIRQ))
2841 			return;
2842 
2843 	curr->hardirq_enable_ip = ip;
2844 	curr->hardirq_enable_event = ++curr->irq_events;
2845 	debug_atomic_inc(hardirqs_on_events);
2846 }
2847 
2848 __visible void trace_hardirqs_on_caller(unsigned long ip)
2849 {
2850 	time_hardirqs_on(CALLER_ADDR0, ip);
2851 
2852 	if (unlikely(!debug_locks || current->lockdep_recursion))
2853 		return;
2854 
2855 	if (unlikely(current->hardirqs_enabled)) {
2856 		/*
2857 		 * Neither irq nor preemption are disabled here
2858 		 * so this is racy by nature but losing one hit
2859 		 * in a stat is not a big deal.
2860 		 */
2861 		__debug_atomic_inc(redundant_hardirqs_on);
2862 		return;
2863 	}
2864 
2865 	/*
2866 	 * We're enabling irqs and according to our state above irqs weren't
2867 	 * already enabled, yet we find the hardware thinks they are in fact
2868 	 * enabled.. someone messed up their IRQ state tracing.
2869 	 */
2870 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2871 		return;
2872 
2873 	/*
2874 	 * See the fine text that goes along with this variable definition.
2875 	 */
2876 	if (DEBUG_LOCKS_WARN_ON(unlikely(early_boot_irqs_disabled)))
2877 		return;
2878 
2879 	/*
2880 	 * Can't allow enabling interrupts while in an interrupt handler,
2881 	 * that's general bad form and such. Recursion, limited stack etc..
2882 	 */
2883 	if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2884 		return;
2885 
2886 	current->lockdep_recursion = 1;
2887 	__trace_hardirqs_on_caller(ip);
2888 	current->lockdep_recursion = 0;
2889 }
2890 EXPORT_SYMBOL(trace_hardirqs_on_caller);
2891 
2892 void trace_hardirqs_on(void)
2893 {
2894 	trace_hardirqs_on_caller(CALLER_ADDR0);
2895 }
2896 EXPORT_SYMBOL(trace_hardirqs_on);
2897 
2898 /*
2899  * Hardirqs were disabled:
2900  */
2901 __visible void trace_hardirqs_off_caller(unsigned long ip)
2902 {
2903 	struct task_struct *curr = current;
2904 
2905 	time_hardirqs_off(CALLER_ADDR0, ip);
2906 
2907 	if (unlikely(!debug_locks || current->lockdep_recursion))
2908 		return;
2909 
2910 	/*
2911 	 * So we're supposed to get called after you mask local IRQs, but for
2912 	 * some reason the hardware doesn't quite think you did a proper job.
2913 	 */
2914 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2915 		return;
2916 
2917 	if (curr->hardirqs_enabled) {
2918 		/*
2919 		 * We have done an ON -> OFF transition:
2920 		 */
2921 		curr->hardirqs_enabled = 0;
2922 		curr->hardirq_disable_ip = ip;
2923 		curr->hardirq_disable_event = ++curr->irq_events;
2924 		debug_atomic_inc(hardirqs_off_events);
2925 	} else
2926 		debug_atomic_inc(redundant_hardirqs_off);
2927 }
2928 EXPORT_SYMBOL(trace_hardirqs_off_caller);
2929 
2930 void trace_hardirqs_off(void)
2931 {
2932 	trace_hardirqs_off_caller(CALLER_ADDR0);
2933 }
2934 EXPORT_SYMBOL(trace_hardirqs_off);
2935 
2936 /*
2937  * Softirqs will be enabled:
2938  */
2939 void trace_softirqs_on(unsigned long ip)
2940 {
2941 	struct task_struct *curr = current;
2942 
2943 	if (unlikely(!debug_locks || current->lockdep_recursion))
2944 		return;
2945 
2946 	/*
2947 	 * We fancy IRQs being disabled here, see softirq.c, avoids
2948 	 * funny state and nesting things.
2949 	 */
2950 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2951 		return;
2952 
2953 	if (curr->softirqs_enabled) {
2954 		debug_atomic_inc(redundant_softirqs_on);
2955 		return;
2956 	}
2957 
2958 	current->lockdep_recursion = 1;
2959 	/*
2960 	 * We'll do an OFF -> ON transition:
2961 	 */
2962 	curr->softirqs_enabled = 1;
2963 	curr->softirq_enable_ip = ip;
2964 	curr->softirq_enable_event = ++curr->irq_events;
2965 	debug_atomic_inc(softirqs_on_events);
2966 	/*
2967 	 * We are going to turn softirqs on, so set the
2968 	 * usage bit for all held locks, if hardirqs are
2969 	 * enabled too:
2970 	 */
2971 	if (curr->hardirqs_enabled)
2972 		mark_held_locks(curr, SOFTIRQ);
2973 	current->lockdep_recursion = 0;
2974 }
2975 
2976 /*
2977  * Softirqs were disabled:
2978  */
2979 void trace_softirqs_off(unsigned long ip)
2980 {
2981 	struct task_struct *curr = current;
2982 
2983 	if (unlikely(!debug_locks || current->lockdep_recursion))
2984 		return;
2985 
2986 	/*
2987 	 * We fancy IRQs being disabled here, see softirq.c
2988 	 */
2989 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2990 		return;
2991 
2992 	if (curr->softirqs_enabled) {
2993 		/*
2994 		 * We have done an ON -> OFF transition:
2995 		 */
2996 		curr->softirqs_enabled = 0;
2997 		curr->softirq_disable_ip = ip;
2998 		curr->softirq_disable_event = ++curr->irq_events;
2999 		debug_atomic_inc(softirqs_off_events);
3000 		/*
3001 		 * Whoops, we wanted softirqs off, so why aren't they?
3002 		 */
3003 		DEBUG_LOCKS_WARN_ON(!softirq_count());
3004 	} else
3005 		debug_atomic_inc(redundant_softirqs_off);
3006 }
3007 
3008 static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
3009 {
3010 	/*
3011 	 * If non-trylock use in a hardirq or softirq context, then
3012 	 * mark the lock as used in these contexts:
3013 	 */
3014 	if (!hlock->trylock) {
3015 		if (hlock->read) {
3016 			if (curr->hardirq_context)
3017 				if (!mark_lock(curr, hlock,
3018 						LOCK_USED_IN_HARDIRQ_READ))
3019 					return 0;
3020 			if (curr->softirq_context)
3021 				if (!mark_lock(curr, hlock,
3022 						LOCK_USED_IN_SOFTIRQ_READ))
3023 					return 0;
3024 		} else {
3025 			if (curr->hardirq_context)
3026 				if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
3027 					return 0;
3028 			if (curr->softirq_context)
3029 				if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
3030 					return 0;
3031 		}
3032 	}
3033 	if (!hlock->hardirqs_off) {
3034 		if (hlock->read) {
3035 			if (!mark_lock(curr, hlock,
3036 					LOCK_ENABLED_HARDIRQ_READ))
3037 				return 0;
3038 			if (curr->softirqs_enabled)
3039 				if (!mark_lock(curr, hlock,
3040 						LOCK_ENABLED_SOFTIRQ_READ))
3041 					return 0;
3042 		} else {
3043 			if (!mark_lock(curr, hlock,
3044 					LOCK_ENABLED_HARDIRQ))
3045 				return 0;
3046 			if (curr->softirqs_enabled)
3047 				if (!mark_lock(curr, hlock,
3048 						LOCK_ENABLED_SOFTIRQ))
3049 					return 0;
3050 		}
3051 	}
3052 
3053 	return 1;
3054 }
3055 
3056 static inline unsigned int task_irq_context(struct task_struct *task)
3057 {
3058 	return 2 * !!task->hardirq_context + !!task->softirq_context;
3059 }
3060 
3061 static int separate_irq_context(struct task_struct *curr,
3062 		struct held_lock *hlock)
3063 {
3064 	unsigned int depth = curr->lockdep_depth;
3065 
3066 	/*
3067 	 * Keep track of points where we cross into an interrupt context:
3068 	 */
3069 	if (depth) {
3070 		struct held_lock *prev_hlock;
3071 
3072 		prev_hlock = curr->held_locks + depth-1;
3073 		/*
3074 		 * If we cross into another context, reset the
3075 		 * hash key (this also prevents the checking and the
3076 		 * adding of the dependency to 'prev'):
3077 		 */
3078 		if (prev_hlock->irq_context != hlock->irq_context)
3079 			return 1;
3080 	}
3081 	return 0;
3082 }
3083 
3084 #else /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */
3085 
3086 static inline
3087 int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
3088 		enum lock_usage_bit new_bit)
3089 {
3090 	WARN_ON(1); /* Impossible innit? when we don't have TRACE_IRQFLAG */
3091 	return 1;
3092 }
3093 
3094 static inline int mark_irqflags(struct task_struct *curr,
3095 		struct held_lock *hlock)
3096 {
3097 	return 1;
3098 }
3099 
3100 static inline unsigned int task_irq_context(struct task_struct *task)
3101 {
3102 	return 0;
3103 }
3104 
3105 static inline int separate_irq_context(struct task_struct *curr,
3106 		struct held_lock *hlock)
3107 {
3108 	return 0;
3109 }
3110 
3111 #endif /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */
3112 
3113 /*
3114  * Mark a lock with a usage bit, and validate the state transition:
3115  */
3116 static int mark_lock(struct task_struct *curr, struct held_lock *this,
3117 			     enum lock_usage_bit new_bit)
3118 {
3119 	unsigned int new_mask = 1 << new_bit, ret = 1;
3120 
3121 	/*
3122 	 * If already set then do not dirty the cacheline,
3123 	 * nor do any checks:
3124 	 */
3125 	if (likely(hlock_class(this)->usage_mask & new_mask))
3126 		return 1;
3127 
3128 	if (!graph_lock())
3129 		return 0;
3130 	/*
3131 	 * Make sure we didn't race:
3132 	 */
3133 	if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
3134 		graph_unlock();
3135 		return 1;
3136 	}
3137 
3138 	hlock_class(this)->usage_mask |= new_mask;
3139 
3140 	if (!save_trace(hlock_class(this)->usage_traces + new_bit))
3141 		return 0;
3142 
3143 	switch (new_bit) {
3144 #define LOCKDEP_STATE(__STATE)			\
3145 	case LOCK_USED_IN_##__STATE:		\
3146 	case LOCK_USED_IN_##__STATE##_READ:	\
3147 	case LOCK_ENABLED_##__STATE:		\
3148 	case LOCK_ENABLED_##__STATE##_READ:
3149 #include "lockdep_states.h"
3150 #undef LOCKDEP_STATE
3151 		ret = mark_lock_irq(curr, this, new_bit);
3152 		if (!ret)
3153 			return 0;
3154 		break;
3155 	case LOCK_USED:
3156 		debug_atomic_dec(nr_unused_locks);
3157 		break;
3158 	default:
3159 		if (!debug_locks_off_graph_unlock())
3160 			return 0;
3161 		WARN_ON(1);
3162 		return 0;
3163 	}
3164 
3165 	graph_unlock();
3166 
3167 	/*
3168 	 * We must printk outside of the graph_lock:
3169 	 */
3170 	if (ret == 2) {
3171 		printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
3172 		print_lock(this);
3173 		print_irqtrace_events(curr);
3174 		dump_stack();
3175 	}
3176 
3177 	return ret;
3178 }
3179 
3180 /*
3181  * Initialize a lock instance's lock-class mapping info:
3182  */
3183 static void __lockdep_init_map(struct lockdep_map *lock, const char *name,
3184 		      struct lock_class_key *key, int subclass)
3185 {
3186 	int i;
3187 
3188 	for (i = 0; i < NR_LOCKDEP_CACHING_CLASSES; i++)
3189 		lock->class_cache[i] = NULL;
3190 
3191 #ifdef CONFIG_LOCK_STAT
3192 	lock->cpu = raw_smp_processor_id();
3193 #endif
3194 
3195 	/*
3196 	 * Can't be having no nameless bastards around this place!
3197 	 */
3198 	if (DEBUG_LOCKS_WARN_ON(!name)) {
3199 		lock->name = "NULL";
3200 		return;
3201 	}
3202 
3203 	lock->name = name;
3204 
3205 	/*
3206 	 * No key, no joy, we need to hash something.
3207 	 */
3208 	if (DEBUG_LOCKS_WARN_ON(!key))
3209 		return;
3210 	/*
3211 	 * Sanity check, the lock-class key must be persistent:
3212 	 */
3213 	if (!static_obj(key)) {
3214 		printk("BUG: key %px not in .data!\n", key);
3215 		/*
3216 		 * What it says above ^^^^^, I suggest you read it.
3217 		 */
3218 		DEBUG_LOCKS_WARN_ON(1);
3219 		return;
3220 	}
3221 	lock->key = key;
3222 
3223 	if (unlikely(!debug_locks))
3224 		return;
3225 
3226 	if (subclass) {
3227 		unsigned long flags;
3228 
3229 		if (DEBUG_LOCKS_WARN_ON(current->lockdep_recursion))
3230 			return;
3231 
3232 		raw_local_irq_save(flags);
3233 		current->lockdep_recursion = 1;
3234 		register_lock_class(lock, subclass, 1);
3235 		current->lockdep_recursion = 0;
3236 		raw_local_irq_restore(flags);
3237 	}
3238 }
3239 
3240 void lockdep_init_map(struct lockdep_map *lock, const char *name,
3241 		      struct lock_class_key *key, int subclass)
3242 {
3243 	__lockdep_init_map(lock, name, key, subclass);
3244 }
3245 EXPORT_SYMBOL_GPL(lockdep_init_map);
3246 
3247 struct lock_class_key __lockdep_no_validate__;
3248 EXPORT_SYMBOL_GPL(__lockdep_no_validate__);
3249 
3250 static int
3251 print_lock_nested_lock_not_held(struct task_struct *curr,
3252 				struct held_lock *hlock,
3253 				unsigned long ip)
3254 {
3255 	if (!debug_locks_off())
3256 		return 0;
3257 	if (debug_locks_silent)
3258 		return 0;
3259 
3260 	pr_warn("\n");
3261 	pr_warn("==================================\n");
3262 	pr_warn("WARNING: Nested lock was not taken\n");
3263 	print_kernel_ident();
3264 	pr_warn("----------------------------------\n");
3265 
3266 	pr_warn("%s/%d is trying to lock:\n", curr->comm, task_pid_nr(curr));
3267 	print_lock(hlock);
3268 
3269 	pr_warn("\nbut this task is not holding:\n");
3270 	pr_warn("%s\n", hlock->nest_lock->name);
3271 
3272 	pr_warn("\nstack backtrace:\n");
3273 	dump_stack();
3274 
3275 	pr_warn("\nother info that might help us debug this:\n");
3276 	lockdep_print_held_locks(curr);
3277 
3278 	pr_warn("\nstack backtrace:\n");
3279 	dump_stack();
3280 
3281 	return 0;
3282 }
3283 
3284 static int __lock_is_held(const struct lockdep_map *lock, int read);
3285 
3286 /*
3287  * This gets called for every mutex_lock*()/spin_lock*() operation.
3288  * We maintain the dependency maps and validate the locking attempt:
3289  */
3290 static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3291 			  int trylock, int read, int check, int hardirqs_off,
3292 			  struct lockdep_map *nest_lock, unsigned long ip,
3293 			  int references, int pin_count)
3294 {
3295 	struct task_struct *curr = current;
3296 	struct lock_class *class = NULL;
3297 	struct held_lock *hlock;
3298 	unsigned int depth;
3299 	int chain_head = 0;
3300 	int class_idx;
3301 	u64 chain_key;
3302 
3303 	if (unlikely(!debug_locks))
3304 		return 0;
3305 
3306 	/*
3307 	 * Lockdep should run with IRQs disabled, otherwise we could
3308 	 * get an interrupt which would want to take locks, which would
3309 	 * end up in lockdep and have you got a head-ache already?
3310 	 */
3311 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
3312 		return 0;
3313 
3314 	if (!prove_locking || lock->key == &__lockdep_no_validate__)
3315 		check = 0;
3316 
3317 	if (subclass < NR_LOCKDEP_CACHING_CLASSES)
3318 		class = lock->class_cache[subclass];
3319 	/*
3320 	 * Not cached?
3321 	 */
3322 	if (unlikely(!class)) {
3323 		class = register_lock_class(lock, subclass, 0);
3324 		if (!class)
3325 			return 0;
3326 	}
3327 	atomic_inc((atomic_t *)&class->ops);
3328 	if (very_verbose(class)) {
3329 		printk("\nacquire class [%px] %s", class->key, class->name);
3330 		if (class->name_version > 1)
3331 			printk(KERN_CONT "#%d", class->name_version);
3332 		printk(KERN_CONT "\n");
3333 		dump_stack();
3334 	}
3335 
3336 	/*
3337 	 * Add the lock to the list of currently held locks.
3338 	 * (we dont increase the depth just yet, up until the
3339 	 * dependency checks are done)
3340 	 */
3341 	depth = curr->lockdep_depth;
3342 	/*
3343 	 * Ran out of static storage for our per-task lock stack again have we?
3344 	 */
3345 	if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
3346 		return 0;
3347 
3348 	class_idx = class - lock_classes + 1;
3349 
3350 	if (depth) {
3351 		hlock = curr->held_locks + depth - 1;
3352 		if (hlock->class_idx == class_idx && nest_lock) {
3353 			if (hlock->references) {
3354 				/*
3355 				 * Check: unsigned int references:12, overflow.
3356 				 */
3357 				if (DEBUG_LOCKS_WARN_ON(hlock->references == (1 << 12)-1))
3358 					return 0;
3359 
3360 				hlock->references++;
3361 			} else {
3362 				hlock->references = 2;
3363 			}
3364 
3365 			return 1;
3366 		}
3367 	}
3368 
3369 	hlock = curr->held_locks + depth;
3370 	/*
3371 	 * Plain impossible, we just registered it and checked it weren't no
3372 	 * NULL like.. I bet this mushroom I ate was good!
3373 	 */
3374 	if (DEBUG_LOCKS_WARN_ON(!class))
3375 		return 0;
3376 	hlock->class_idx = class_idx;
3377 	hlock->acquire_ip = ip;
3378 	hlock->instance = lock;
3379 	hlock->nest_lock = nest_lock;
3380 	hlock->irq_context = task_irq_context(curr);
3381 	hlock->trylock = trylock;
3382 	hlock->read = read;
3383 	hlock->check = check;
3384 	hlock->hardirqs_off = !!hardirqs_off;
3385 	hlock->references = references;
3386 #ifdef CONFIG_LOCK_STAT
3387 	hlock->waittime_stamp = 0;
3388 	hlock->holdtime_stamp = lockstat_clock();
3389 #endif
3390 	hlock->pin_count = pin_count;
3391 
3392 	if (check && !mark_irqflags(curr, hlock))
3393 		return 0;
3394 
3395 	/* mark it as used: */
3396 	if (!mark_lock(curr, hlock, LOCK_USED))
3397 		return 0;
3398 
3399 	/*
3400 	 * Calculate the chain hash: it's the combined hash of all the
3401 	 * lock keys along the dependency chain. We save the hash value
3402 	 * at every step so that we can get the current hash easily
3403 	 * after unlock. The chain hash is then used to cache dependency
3404 	 * results.
3405 	 *
3406 	 * The 'key ID' is what is the most compact key value to drive
3407 	 * the hash, not class->key.
3408 	 */
3409 	/*
3410 	 * Whoops, we did it again.. ran straight out of our static allocation.
3411 	 */
3412 	if (DEBUG_LOCKS_WARN_ON(class_idx > MAX_LOCKDEP_KEYS))
3413 		return 0;
3414 
3415 	chain_key = curr->curr_chain_key;
3416 	if (!depth) {
3417 		/*
3418 		 * How can we have a chain hash when we ain't got no keys?!
3419 		 */
3420 		if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
3421 			return 0;
3422 		chain_head = 1;
3423 	}
3424 
3425 	hlock->prev_chain_key = chain_key;
3426 	if (separate_irq_context(curr, hlock)) {
3427 		chain_key = 0;
3428 		chain_head = 1;
3429 	}
3430 	chain_key = iterate_chain_key(chain_key, class_idx);
3431 
3432 	if (nest_lock && !__lock_is_held(nest_lock, -1))
3433 		return print_lock_nested_lock_not_held(curr, hlock, ip);
3434 
3435 	if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
3436 		return 0;
3437 
3438 	curr->curr_chain_key = chain_key;
3439 	curr->lockdep_depth++;
3440 	check_chain_key(curr);
3441 #ifdef CONFIG_DEBUG_LOCKDEP
3442 	if (unlikely(!debug_locks))
3443 		return 0;
3444 #endif
3445 	if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
3446 		debug_locks_off();
3447 		print_lockdep_off("BUG: MAX_LOCK_DEPTH too low!");
3448 		printk(KERN_DEBUG "depth: %i  max: %lu!\n",
3449 		       curr->lockdep_depth, MAX_LOCK_DEPTH);
3450 
3451 		lockdep_print_held_locks(current);
3452 		debug_show_all_locks();
3453 		dump_stack();
3454 
3455 		return 0;
3456 	}
3457 
3458 	if (unlikely(curr->lockdep_depth > max_lockdep_depth))
3459 		max_lockdep_depth = curr->lockdep_depth;
3460 
3461 	return 1;
3462 }
3463 
3464 static int
3465 print_unlock_imbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
3466 			   unsigned long ip)
3467 {
3468 	if (!debug_locks_off())
3469 		return 0;
3470 	if (debug_locks_silent)
3471 		return 0;
3472 
3473 	pr_warn("\n");
3474 	pr_warn("=====================================\n");
3475 	pr_warn("WARNING: bad unlock balance detected!\n");
3476 	print_kernel_ident();
3477 	pr_warn("-------------------------------------\n");
3478 	pr_warn("%s/%d is trying to release lock (",
3479 		curr->comm, task_pid_nr(curr));
3480 	print_lockdep_cache(lock);
3481 	pr_cont(") at:\n");
3482 	print_ip_sym(ip);
3483 	pr_warn("but there are no more locks to release!\n");
3484 	pr_warn("\nother info that might help us debug this:\n");
3485 	lockdep_print_held_locks(curr);
3486 
3487 	pr_warn("\nstack backtrace:\n");
3488 	dump_stack();
3489 
3490 	return 0;
3491 }
3492 
3493 static int match_held_lock(const struct held_lock *hlock,
3494 					const struct lockdep_map *lock)
3495 {
3496 	if (hlock->instance == lock)
3497 		return 1;
3498 
3499 	if (hlock->references) {
3500 		const struct lock_class *class = lock->class_cache[0];
3501 
3502 		if (!class)
3503 			class = look_up_lock_class(lock, 0);
3504 
3505 		/*
3506 		 * If look_up_lock_class() failed to find a class, we're trying
3507 		 * to test if we hold a lock that has never yet been acquired.
3508 		 * Clearly if the lock hasn't been acquired _ever_, we're not
3509 		 * holding it either, so report failure.
3510 		 */
3511 		if (!class)
3512 			return 0;
3513 
3514 		/*
3515 		 * References, but not a lock we're actually ref-counting?
3516 		 * State got messed up, follow the sites that change ->references
3517 		 * and try to make sense of it.
3518 		 */
3519 		if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock))
3520 			return 0;
3521 
3522 		if (hlock->class_idx == class - lock_classes + 1)
3523 			return 1;
3524 	}
3525 
3526 	return 0;
3527 }
3528 
3529 /* @depth must not be zero */
3530 static struct held_lock *find_held_lock(struct task_struct *curr,
3531 					struct lockdep_map *lock,
3532 					unsigned int depth, int *idx)
3533 {
3534 	struct held_lock *ret, *hlock, *prev_hlock;
3535 	int i;
3536 
3537 	i = depth - 1;
3538 	hlock = curr->held_locks + i;
3539 	ret = hlock;
3540 	if (match_held_lock(hlock, lock))
3541 		goto out;
3542 
3543 	ret = NULL;
3544 	for (i--, prev_hlock = hlock--;
3545 	     i >= 0;
3546 	     i--, prev_hlock = hlock--) {
3547 		/*
3548 		 * We must not cross into another context:
3549 		 */
3550 		if (prev_hlock->irq_context != hlock->irq_context) {
3551 			ret = NULL;
3552 			break;
3553 		}
3554 		if (match_held_lock(hlock, lock)) {
3555 			ret = hlock;
3556 			break;
3557 		}
3558 	}
3559 
3560 out:
3561 	*idx = i;
3562 	return ret;
3563 }
3564 
3565 static int reacquire_held_locks(struct task_struct *curr, unsigned int depth,
3566 			      int idx)
3567 {
3568 	struct held_lock *hlock;
3569 
3570 	for (hlock = curr->held_locks + idx; idx < depth; idx++, hlock++) {
3571 		if (!__lock_acquire(hlock->instance,
3572 				    hlock_class(hlock)->subclass,
3573 				    hlock->trylock,
3574 				    hlock->read, hlock->check,
3575 				    hlock->hardirqs_off,
3576 				    hlock->nest_lock, hlock->acquire_ip,
3577 				    hlock->references, hlock->pin_count))
3578 			return 1;
3579 	}
3580 	return 0;
3581 }
3582 
3583 static int
3584 __lock_set_class(struct lockdep_map *lock, const char *name,
3585 		 struct lock_class_key *key, unsigned int subclass,
3586 		 unsigned long ip)
3587 {
3588 	struct task_struct *curr = current;
3589 	struct held_lock *hlock;
3590 	struct lock_class *class;
3591 	unsigned int depth;
3592 	int i;
3593 
3594 	depth = curr->lockdep_depth;
3595 	/*
3596 	 * This function is about (re)setting the class of a held lock,
3597 	 * yet we're not actually holding any locks. Naughty user!
3598 	 */
3599 	if (DEBUG_LOCKS_WARN_ON(!depth))
3600 		return 0;
3601 
3602 	hlock = find_held_lock(curr, lock, depth, &i);
3603 	if (!hlock)
3604 		return print_unlock_imbalance_bug(curr, lock, ip);
3605 
3606 	lockdep_init_map(lock, name, key, 0);
3607 	class = register_lock_class(lock, subclass, 0);
3608 	hlock->class_idx = class - lock_classes + 1;
3609 
3610 	curr->lockdep_depth = i;
3611 	curr->curr_chain_key = hlock->prev_chain_key;
3612 
3613 	if (reacquire_held_locks(curr, depth, i))
3614 		return 0;
3615 
3616 	/*
3617 	 * I took it apart and put it back together again, except now I have
3618 	 * these 'spare' parts.. where shall I put them.
3619 	 */
3620 	if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
3621 		return 0;
3622 	return 1;
3623 }
3624 
3625 static int __lock_downgrade(struct lockdep_map *lock, unsigned long ip)
3626 {
3627 	struct task_struct *curr = current;
3628 	struct held_lock *hlock;
3629 	unsigned int depth;
3630 	int i;
3631 
3632 	depth = curr->lockdep_depth;
3633 	/*
3634 	 * This function is about (re)setting the class of a held lock,
3635 	 * yet we're not actually holding any locks. Naughty user!
3636 	 */
3637 	if (DEBUG_LOCKS_WARN_ON(!depth))
3638 		return 0;
3639 
3640 	hlock = find_held_lock(curr, lock, depth, &i);
3641 	if (!hlock)
3642 		return print_unlock_imbalance_bug(curr, lock, ip);
3643 
3644 	curr->lockdep_depth = i;
3645 	curr->curr_chain_key = hlock->prev_chain_key;
3646 
3647 	WARN(hlock->read, "downgrading a read lock");
3648 	hlock->read = 1;
3649 	hlock->acquire_ip = ip;
3650 
3651 	if (reacquire_held_locks(curr, depth, i))
3652 		return 0;
3653 
3654 	/*
3655 	 * I took it apart and put it back together again, except now I have
3656 	 * these 'spare' parts.. where shall I put them.
3657 	 */
3658 	if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
3659 		return 0;
3660 	return 1;
3661 }
3662 
3663 /*
3664  * Remove the lock to the list of currently held locks - this gets
3665  * called on mutex_unlock()/spin_unlock*() (or on a failed
3666  * mutex_lock_interruptible()).
3667  *
3668  * @nested is an hysterical artifact, needs a tree wide cleanup.
3669  */
3670 static int
3671 __lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
3672 {
3673 	struct task_struct *curr = current;
3674 	struct held_lock *hlock;
3675 	unsigned int depth;
3676 	int i;
3677 
3678 	if (unlikely(!debug_locks))
3679 		return 0;
3680 
3681 	depth = curr->lockdep_depth;
3682 	/*
3683 	 * So we're all set to release this lock.. wait what lock? We don't
3684 	 * own any locks, you've been drinking again?
3685 	 */
3686 	if (DEBUG_LOCKS_WARN_ON(depth <= 0))
3687 		 return print_unlock_imbalance_bug(curr, lock, ip);
3688 
3689 	/*
3690 	 * Check whether the lock exists in the current stack
3691 	 * of held locks:
3692 	 */
3693 	hlock = find_held_lock(curr, lock, depth, &i);
3694 	if (!hlock)
3695 		return print_unlock_imbalance_bug(curr, lock, ip);
3696 
3697 	if (hlock->instance == lock)
3698 		lock_release_holdtime(hlock);
3699 
3700 	WARN(hlock->pin_count, "releasing a pinned lock\n");
3701 
3702 	if (hlock->references) {
3703 		hlock->references--;
3704 		if (hlock->references) {
3705 			/*
3706 			 * We had, and after removing one, still have
3707 			 * references, the current lock stack is still
3708 			 * valid. We're done!
3709 			 */
3710 			return 1;
3711 		}
3712 	}
3713 
3714 	/*
3715 	 * We have the right lock to unlock, 'hlock' points to it.
3716 	 * Now we remove it from the stack, and add back the other
3717 	 * entries (if any), recalculating the hash along the way:
3718 	 */
3719 
3720 	curr->lockdep_depth = i;
3721 	curr->curr_chain_key = hlock->prev_chain_key;
3722 
3723 	if (reacquire_held_locks(curr, depth, i + 1))
3724 		return 0;
3725 
3726 	/*
3727 	 * We had N bottles of beer on the wall, we drank one, but now
3728 	 * there's not N-1 bottles of beer left on the wall...
3729 	 */
3730 	if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
3731 		return 0;
3732 
3733 	return 1;
3734 }
3735 
3736 static int __lock_is_held(const struct lockdep_map *lock, int read)
3737 {
3738 	struct task_struct *curr = current;
3739 	int i;
3740 
3741 	for (i = 0; i < curr->lockdep_depth; i++) {
3742 		struct held_lock *hlock = curr->held_locks + i;
3743 
3744 		if (match_held_lock(hlock, lock)) {
3745 			if (read == -1 || hlock->read == read)
3746 				return 1;
3747 
3748 			return 0;
3749 		}
3750 	}
3751 
3752 	return 0;
3753 }
3754 
3755 static struct pin_cookie __lock_pin_lock(struct lockdep_map *lock)
3756 {
3757 	struct pin_cookie cookie = NIL_COOKIE;
3758 	struct task_struct *curr = current;
3759 	int i;
3760 
3761 	if (unlikely(!debug_locks))
3762 		return cookie;
3763 
3764 	for (i = 0; i < curr->lockdep_depth; i++) {
3765 		struct held_lock *hlock = curr->held_locks + i;
3766 
3767 		if (match_held_lock(hlock, lock)) {
3768 			/*
3769 			 * Grab 16bits of randomness; this is sufficient to not
3770 			 * be guessable and still allows some pin nesting in
3771 			 * our u32 pin_count.
3772 			 */
3773 			cookie.val = 1 + (prandom_u32() >> 16);
3774 			hlock->pin_count += cookie.val;
3775 			return cookie;
3776 		}
3777 	}
3778 
3779 	WARN(1, "pinning an unheld lock\n");
3780 	return cookie;
3781 }
3782 
3783 static void __lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3784 {
3785 	struct task_struct *curr = current;
3786 	int i;
3787 
3788 	if (unlikely(!debug_locks))
3789 		return;
3790 
3791 	for (i = 0; i < curr->lockdep_depth; i++) {
3792 		struct held_lock *hlock = curr->held_locks + i;
3793 
3794 		if (match_held_lock(hlock, lock)) {
3795 			hlock->pin_count += cookie.val;
3796 			return;
3797 		}
3798 	}
3799 
3800 	WARN(1, "pinning an unheld lock\n");
3801 }
3802 
3803 static void __lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3804 {
3805 	struct task_struct *curr = current;
3806 	int i;
3807 
3808 	if (unlikely(!debug_locks))
3809 		return;
3810 
3811 	for (i = 0; i < curr->lockdep_depth; i++) {
3812 		struct held_lock *hlock = curr->held_locks + i;
3813 
3814 		if (match_held_lock(hlock, lock)) {
3815 			if (WARN(!hlock->pin_count, "unpinning an unpinned lock\n"))
3816 				return;
3817 
3818 			hlock->pin_count -= cookie.val;
3819 
3820 			if (WARN((int)hlock->pin_count < 0, "pin count corrupted\n"))
3821 				hlock->pin_count = 0;
3822 
3823 			return;
3824 		}
3825 	}
3826 
3827 	WARN(1, "unpinning an unheld lock\n");
3828 }
3829 
3830 /*
3831  * Check whether we follow the irq-flags state precisely:
3832  */
3833 static void check_flags(unsigned long flags)
3834 {
3835 #if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3836     defined(CONFIG_TRACE_IRQFLAGS)
3837 	if (!debug_locks)
3838 		return;
3839 
3840 	if (irqs_disabled_flags(flags)) {
3841 		if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3842 			printk("possible reason: unannotated irqs-off.\n");
3843 		}
3844 	} else {
3845 		if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3846 			printk("possible reason: unannotated irqs-on.\n");
3847 		}
3848 	}
3849 
3850 	/*
3851 	 * We dont accurately track softirq state in e.g.
3852 	 * hardirq contexts (such as on 4KSTACKS), so only
3853 	 * check if not in hardirq contexts:
3854 	 */
3855 	if (!hardirq_count()) {
3856 		if (softirq_count()) {
3857 			/* like the above, but with softirqs */
3858 			DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3859 		} else {
3860 			/* lick the above, does it taste good? */
3861 			DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3862 		}
3863 	}
3864 
3865 	if (!debug_locks)
3866 		print_irqtrace_events(current);
3867 #endif
3868 }
3869 
3870 void lock_set_class(struct lockdep_map *lock, const char *name,
3871 		    struct lock_class_key *key, unsigned int subclass,
3872 		    unsigned long ip)
3873 {
3874 	unsigned long flags;
3875 
3876 	if (unlikely(current->lockdep_recursion))
3877 		return;
3878 
3879 	raw_local_irq_save(flags);
3880 	current->lockdep_recursion = 1;
3881 	check_flags(flags);
3882 	if (__lock_set_class(lock, name, key, subclass, ip))
3883 		check_chain_key(current);
3884 	current->lockdep_recursion = 0;
3885 	raw_local_irq_restore(flags);
3886 }
3887 EXPORT_SYMBOL_GPL(lock_set_class);
3888 
3889 void lock_downgrade(struct lockdep_map *lock, unsigned long ip)
3890 {
3891 	unsigned long flags;
3892 
3893 	if (unlikely(current->lockdep_recursion))
3894 		return;
3895 
3896 	raw_local_irq_save(flags);
3897 	current->lockdep_recursion = 1;
3898 	check_flags(flags);
3899 	if (__lock_downgrade(lock, ip))
3900 		check_chain_key(current);
3901 	current->lockdep_recursion = 0;
3902 	raw_local_irq_restore(flags);
3903 }
3904 EXPORT_SYMBOL_GPL(lock_downgrade);
3905 
3906 /*
3907  * We are not always called with irqs disabled - do that here,
3908  * and also avoid lockdep recursion:
3909  */
3910 void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
3911 			  int trylock, int read, int check,
3912 			  struct lockdep_map *nest_lock, unsigned long ip)
3913 {
3914 	unsigned long flags;
3915 
3916 	if (unlikely(current->lockdep_recursion))
3917 		return;
3918 
3919 	raw_local_irq_save(flags);
3920 	check_flags(flags);
3921 
3922 	current->lockdep_recursion = 1;
3923 	trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip);
3924 	__lock_acquire(lock, subclass, trylock, read, check,
3925 		       irqs_disabled_flags(flags), nest_lock, ip, 0, 0);
3926 	current->lockdep_recursion = 0;
3927 	raw_local_irq_restore(flags);
3928 }
3929 EXPORT_SYMBOL_GPL(lock_acquire);
3930 
3931 void lock_release(struct lockdep_map *lock, int nested,
3932 			  unsigned long ip)
3933 {
3934 	unsigned long flags;
3935 
3936 	if (unlikely(current->lockdep_recursion))
3937 		return;
3938 
3939 	raw_local_irq_save(flags);
3940 	check_flags(flags);
3941 	current->lockdep_recursion = 1;
3942 	trace_lock_release(lock, ip);
3943 	if (__lock_release(lock, nested, ip))
3944 		check_chain_key(current);
3945 	current->lockdep_recursion = 0;
3946 	raw_local_irq_restore(flags);
3947 }
3948 EXPORT_SYMBOL_GPL(lock_release);
3949 
3950 int lock_is_held_type(const struct lockdep_map *lock, int read)
3951 {
3952 	unsigned long flags;
3953 	int ret = 0;
3954 
3955 	if (unlikely(current->lockdep_recursion))
3956 		return 1; /* avoid false negative lockdep_assert_held() */
3957 
3958 	raw_local_irq_save(flags);
3959 	check_flags(flags);
3960 
3961 	current->lockdep_recursion = 1;
3962 	ret = __lock_is_held(lock, read);
3963 	current->lockdep_recursion = 0;
3964 	raw_local_irq_restore(flags);
3965 
3966 	return ret;
3967 }
3968 EXPORT_SYMBOL_GPL(lock_is_held_type);
3969 
3970 struct pin_cookie lock_pin_lock(struct lockdep_map *lock)
3971 {
3972 	struct pin_cookie cookie = NIL_COOKIE;
3973 	unsigned long flags;
3974 
3975 	if (unlikely(current->lockdep_recursion))
3976 		return cookie;
3977 
3978 	raw_local_irq_save(flags);
3979 	check_flags(flags);
3980 
3981 	current->lockdep_recursion = 1;
3982 	cookie = __lock_pin_lock(lock);
3983 	current->lockdep_recursion = 0;
3984 	raw_local_irq_restore(flags);
3985 
3986 	return cookie;
3987 }
3988 EXPORT_SYMBOL_GPL(lock_pin_lock);
3989 
3990 void lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
3991 {
3992 	unsigned long flags;
3993 
3994 	if (unlikely(current->lockdep_recursion))
3995 		return;
3996 
3997 	raw_local_irq_save(flags);
3998 	check_flags(flags);
3999 
4000 	current->lockdep_recursion = 1;
4001 	__lock_repin_lock(lock, cookie);
4002 	current->lockdep_recursion = 0;
4003 	raw_local_irq_restore(flags);
4004 }
4005 EXPORT_SYMBOL_GPL(lock_repin_lock);
4006 
4007 void lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie)
4008 {
4009 	unsigned long flags;
4010 
4011 	if (unlikely(current->lockdep_recursion))
4012 		return;
4013 
4014 	raw_local_irq_save(flags);
4015 	check_flags(flags);
4016 
4017 	current->lockdep_recursion = 1;
4018 	__lock_unpin_lock(lock, cookie);
4019 	current->lockdep_recursion = 0;
4020 	raw_local_irq_restore(flags);
4021 }
4022 EXPORT_SYMBOL_GPL(lock_unpin_lock);
4023 
4024 #ifdef CONFIG_LOCK_STAT
4025 static int
4026 print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
4027 			   unsigned long ip)
4028 {
4029 	if (!debug_locks_off())
4030 		return 0;
4031 	if (debug_locks_silent)
4032 		return 0;
4033 
4034 	pr_warn("\n");
4035 	pr_warn("=================================\n");
4036 	pr_warn("WARNING: bad contention detected!\n");
4037 	print_kernel_ident();
4038 	pr_warn("---------------------------------\n");
4039 	pr_warn("%s/%d is trying to contend lock (",
4040 		curr->comm, task_pid_nr(curr));
4041 	print_lockdep_cache(lock);
4042 	pr_cont(") at:\n");
4043 	print_ip_sym(ip);
4044 	pr_warn("but there are no locks held!\n");
4045 	pr_warn("\nother info that might help us debug this:\n");
4046 	lockdep_print_held_locks(curr);
4047 
4048 	pr_warn("\nstack backtrace:\n");
4049 	dump_stack();
4050 
4051 	return 0;
4052 }
4053 
4054 static void
4055 __lock_contended(struct lockdep_map *lock, unsigned long ip)
4056 {
4057 	struct task_struct *curr = current;
4058 	struct held_lock *hlock;
4059 	struct lock_class_stats *stats;
4060 	unsigned int depth;
4061 	int i, contention_point, contending_point;
4062 
4063 	depth = curr->lockdep_depth;
4064 	/*
4065 	 * Whee, we contended on this lock, except it seems we're not
4066 	 * actually trying to acquire anything much at all..
4067 	 */
4068 	if (DEBUG_LOCKS_WARN_ON(!depth))
4069 		return;
4070 
4071 	hlock = find_held_lock(curr, lock, depth, &i);
4072 	if (!hlock) {
4073 		print_lock_contention_bug(curr, lock, ip);
4074 		return;
4075 	}
4076 
4077 	if (hlock->instance != lock)
4078 		return;
4079 
4080 	hlock->waittime_stamp = lockstat_clock();
4081 
4082 	contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
4083 	contending_point = lock_point(hlock_class(hlock)->contending_point,
4084 				      lock->ip);
4085 
4086 	stats = get_lock_stats(hlock_class(hlock));
4087 	if (contention_point < LOCKSTAT_POINTS)
4088 		stats->contention_point[contention_point]++;
4089 	if (contending_point < LOCKSTAT_POINTS)
4090 		stats->contending_point[contending_point]++;
4091 	if (lock->cpu != smp_processor_id())
4092 		stats->bounces[bounce_contended + !!hlock->read]++;
4093 	put_lock_stats(stats);
4094 }
4095 
4096 static void
4097 __lock_acquired(struct lockdep_map *lock, unsigned long ip)
4098 {
4099 	struct task_struct *curr = current;
4100 	struct held_lock *hlock;
4101 	struct lock_class_stats *stats;
4102 	unsigned int depth;
4103 	u64 now, waittime = 0;
4104 	int i, cpu;
4105 
4106 	depth = curr->lockdep_depth;
4107 	/*
4108 	 * Yay, we acquired ownership of this lock we didn't try to
4109 	 * acquire, how the heck did that happen?
4110 	 */
4111 	if (DEBUG_LOCKS_WARN_ON(!depth))
4112 		return;
4113 
4114 	hlock = find_held_lock(curr, lock, depth, &i);
4115 	if (!hlock) {
4116 		print_lock_contention_bug(curr, lock, _RET_IP_);
4117 		return;
4118 	}
4119 
4120 	if (hlock->instance != lock)
4121 		return;
4122 
4123 	cpu = smp_processor_id();
4124 	if (hlock->waittime_stamp) {
4125 		now = lockstat_clock();
4126 		waittime = now - hlock->waittime_stamp;
4127 		hlock->holdtime_stamp = now;
4128 	}
4129 
4130 	trace_lock_acquired(lock, ip);
4131 
4132 	stats = get_lock_stats(hlock_class(hlock));
4133 	if (waittime) {
4134 		if (hlock->read)
4135 			lock_time_inc(&stats->read_waittime, waittime);
4136 		else
4137 			lock_time_inc(&stats->write_waittime, waittime);
4138 	}
4139 	if (lock->cpu != cpu)
4140 		stats->bounces[bounce_acquired + !!hlock->read]++;
4141 	put_lock_stats(stats);
4142 
4143 	lock->cpu = cpu;
4144 	lock->ip = ip;
4145 }
4146 
4147 void lock_contended(struct lockdep_map *lock, unsigned long ip)
4148 {
4149 	unsigned long flags;
4150 
4151 	if (unlikely(!lock_stat))
4152 		return;
4153 
4154 	if (unlikely(current->lockdep_recursion))
4155 		return;
4156 
4157 	raw_local_irq_save(flags);
4158 	check_flags(flags);
4159 	current->lockdep_recursion = 1;
4160 	trace_lock_contended(lock, ip);
4161 	__lock_contended(lock, ip);
4162 	current->lockdep_recursion = 0;
4163 	raw_local_irq_restore(flags);
4164 }
4165 EXPORT_SYMBOL_GPL(lock_contended);
4166 
4167 void lock_acquired(struct lockdep_map *lock, unsigned long ip)
4168 {
4169 	unsigned long flags;
4170 
4171 	if (unlikely(!lock_stat))
4172 		return;
4173 
4174 	if (unlikely(current->lockdep_recursion))
4175 		return;
4176 
4177 	raw_local_irq_save(flags);
4178 	check_flags(flags);
4179 	current->lockdep_recursion = 1;
4180 	__lock_acquired(lock, ip);
4181 	current->lockdep_recursion = 0;
4182 	raw_local_irq_restore(flags);
4183 }
4184 EXPORT_SYMBOL_GPL(lock_acquired);
4185 #endif
4186 
4187 /*
4188  * Used by the testsuite, sanitize the validator state
4189  * after a simulated failure:
4190  */
4191 
4192 void lockdep_reset(void)
4193 {
4194 	unsigned long flags;
4195 	int i;
4196 
4197 	raw_local_irq_save(flags);
4198 	current->curr_chain_key = 0;
4199 	current->lockdep_depth = 0;
4200 	current->lockdep_recursion = 0;
4201 	memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
4202 	nr_hardirq_chains = 0;
4203 	nr_softirq_chains = 0;
4204 	nr_process_chains = 0;
4205 	debug_locks = 1;
4206 	for (i = 0; i < CHAINHASH_SIZE; i++)
4207 		INIT_HLIST_HEAD(chainhash_table + i);
4208 	raw_local_irq_restore(flags);
4209 }
4210 
4211 static void zap_class(struct lock_class *class)
4212 {
4213 	int i;
4214 
4215 	/*
4216 	 * Remove all dependencies this lock is
4217 	 * involved in:
4218 	 */
4219 	for (i = 0; i < nr_list_entries; i++) {
4220 		if (list_entries[i].class == class)
4221 			list_del_rcu(&list_entries[i].entry);
4222 	}
4223 	/*
4224 	 * Unhash the class and remove it from the all_lock_classes list:
4225 	 */
4226 	hlist_del_rcu(&class->hash_entry);
4227 	list_del_rcu(&class->lock_entry);
4228 
4229 	RCU_INIT_POINTER(class->key, NULL);
4230 	RCU_INIT_POINTER(class->name, NULL);
4231 }
4232 
4233 static inline int within(const void *addr, void *start, unsigned long size)
4234 {
4235 	return addr >= start && addr < start + size;
4236 }
4237 
4238 /*
4239  * Used in module.c to remove lock classes from memory that is going to be
4240  * freed; and possibly re-used by other modules.
4241  *
4242  * We will have had one sync_sched() before getting here, so we're guaranteed
4243  * nobody will look up these exact classes -- they're properly dead but still
4244  * allocated.
4245  */
4246 void lockdep_free_key_range(void *start, unsigned long size)
4247 {
4248 	struct lock_class *class;
4249 	struct hlist_head *head;
4250 	unsigned long flags;
4251 	int i;
4252 	int locked;
4253 
4254 	raw_local_irq_save(flags);
4255 	locked = graph_lock();
4256 
4257 	/*
4258 	 * Unhash all classes that were created by this module:
4259 	 */
4260 	for (i = 0; i < CLASSHASH_SIZE; i++) {
4261 		head = classhash_table + i;
4262 		hlist_for_each_entry_rcu(class, head, hash_entry) {
4263 			if (within(class->key, start, size))
4264 				zap_class(class);
4265 			else if (within(class->name, start, size))
4266 				zap_class(class);
4267 		}
4268 	}
4269 
4270 	if (locked)
4271 		graph_unlock();
4272 	raw_local_irq_restore(flags);
4273 
4274 	/*
4275 	 * Wait for any possible iterators from look_up_lock_class() to pass
4276 	 * before continuing to free the memory they refer to.
4277 	 *
4278 	 * sync_sched() is sufficient because the read-side is IRQ disable.
4279 	 */
4280 	synchronize_sched();
4281 
4282 	/*
4283 	 * XXX at this point we could return the resources to the pool;
4284 	 * instead we leak them. We would need to change to bitmap allocators
4285 	 * instead of the linear allocators we have now.
4286 	 */
4287 }
4288 
4289 void lockdep_reset_lock(struct lockdep_map *lock)
4290 {
4291 	struct lock_class *class;
4292 	struct hlist_head *head;
4293 	unsigned long flags;
4294 	int i, j;
4295 	int locked;
4296 
4297 	raw_local_irq_save(flags);
4298 
4299 	/*
4300 	 * Remove all classes this lock might have:
4301 	 */
4302 	for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
4303 		/*
4304 		 * If the class exists we look it up and zap it:
4305 		 */
4306 		class = look_up_lock_class(lock, j);
4307 		if (class)
4308 			zap_class(class);
4309 	}
4310 	/*
4311 	 * Debug check: in the end all mapped classes should
4312 	 * be gone.
4313 	 */
4314 	locked = graph_lock();
4315 	for (i = 0; i < CLASSHASH_SIZE; i++) {
4316 		head = classhash_table + i;
4317 		hlist_for_each_entry_rcu(class, head, hash_entry) {
4318 			int match = 0;
4319 
4320 			for (j = 0; j < NR_LOCKDEP_CACHING_CLASSES; j++)
4321 				match |= class == lock->class_cache[j];
4322 
4323 			if (unlikely(match)) {
4324 				if (debug_locks_off_graph_unlock()) {
4325 					/*
4326 					 * We all just reset everything, how did it match?
4327 					 */
4328 					WARN_ON(1);
4329 				}
4330 				goto out_restore;
4331 			}
4332 		}
4333 	}
4334 	if (locked)
4335 		graph_unlock();
4336 
4337 out_restore:
4338 	raw_local_irq_restore(flags);
4339 }
4340 
4341 void __init lockdep_info(void)
4342 {
4343 	printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
4344 
4345 	printk("... MAX_LOCKDEP_SUBCLASSES:  %lu\n", MAX_LOCKDEP_SUBCLASSES);
4346 	printk("... MAX_LOCK_DEPTH:          %lu\n", MAX_LOCK_DEPTH);
4347 	printk("... MAX_LOCKDEP_KEYS:        %lu\n", MAX_LOCKDEP_KEYS);
4348 	printk("... CLASSHASH_SIZE:          %lu\n", CLASSHASH_SIZE);
4349 	printk("... MAX_LOCKDEP_ENTRIES:     %lu\n", MAX_LOCKDEP_ENTRIES);
4350 	printk("... MAX_LOCKDEP_CHAINS:      %lu\n", MAX_LOCKDEP_CHAINS);
4351 	printk("... CHAINHASH_SIZE:          %lu\n", CHAINHASH_SIZE);
4352 
4353 	printk(" memory used by lock dependency info: %lu kB\n",
4354 		(sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
4355 		sizeof(struct list_head) * CLASSHASH_SIZE +
4356 		sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
4357 		sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
4358 		sizeof(struct list_head) * CHAINHASH_SIZE
4359 #ifdef CONFIG_PROVE_LOCKING
4360 		+ sizeof(struct circular_queue)
4361 #endif
4362 		) / 1024
4363 		);
4364 
4365 	printk(" per task-struct memory footprint: %lu bytes\n",
4366 		sizeof(struct held_lock) * MAX_LOCK_DEPTH);
4367 }
4368 
4369 static void
4370 print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
4371 		     const void *mem_to, struct held_lock *hlock)
4372 {
4373 	if (!debug_locks_off())
4374 		return;
4375 	if (debug_locks_silent)
4376 		return;
4377 
4378 	pr_warn("\n");
4379 	pr_warn("=========================\n");
4380 	pr_warn("WARNING: held lock freed!\n");
4381 	print_kernel_ident();
4382 	pr_warn("-------------------------\n");
4383 	pr_warn("%s/%d is freeing memory %px-%px, with a lock still held there!\n",
4384 		curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
4385 	print_lock(hlock);
4386 	lockdep_print_held_locks(curr);
4387 
4388 	pr_warn("\nstack backtrace:\n");
4389 	dump_stack();
4390 }
4391 
4392 static inline int not_in_range(const void* mem_from, unsigned long mem_len,
4393 				const void* lock_from, unsigned long lock_len)
4394 {
4395 	return lock_from + lock_len <= mem_from ||
4396 		mem_from + mem_len <= lock_from;
4397 }
4398 
4399 /*
4400  * Called when kernel memory is freed (or unmapped), or if a lock
4401  * is destroyed or reinitialized - this code checks whether there is
4402  * any held lock in the memory range of <from> to <to>:
4403  */
4404 void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
4405 {
4406 	struct task_struct *curr = current;
4407 	struct held_lock *hlock;
4408 	unsigned long flags;
4409 	int i;
4410 
4411 	if (unlikely(!debug_locks))
4412 		return;
4413 
4414 	raw_local_irq_save(flags);
4415 	for (i = 0; i < curr->lockdep_depth; i++) {
4416 		hlock = curr->held_locks + i;
4417 
4418 		if (not_in_range(mem_from, mem_len, hlock->instance,
4419 					sizeof(*hlock->instance)))
4420 			continue;
4421 
4422 		print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
4423 		break;
4424 	}
4425 	raw_local_irq_restore(flags);
4426 }
4427 EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
4428 
4429 static void print_held_locks_bug(void)
4430 {
4431 	if (!debug_locks_off())
4432 		return;
4433 	if (debug_locks_silent)
4434 		return;
4435 
4436 	pr_warn("\n");
4437 	pr_warn("====================================\n");
4438 	pr_warn("WARNING: %s/%d still has locks held!\n",
4439 	       current->comm, task_pid_nr(current));
4440 	print_kernel_ident();
4441 	pr_warn("------------------------------------\n");
4442 	lockdep_print_held_locks(current);
4443 	pr_warn("\nstack backtrace:\n");
4444 	dump_stack();
4445 }
4446 
4447 void debug_check_no_locks_held(void)
4448 {
4449 	if (unlikely(current->lockdep_depth > 0))
4450 		print_held_locks_bug();
4451 }
4452 EXPORT_SYMBOL_GPL(debug_check_no_locks_held);
4453 
4454 #ifdef __KERNEL__
4455 void debug_show_all_locks(void)
4456 {
4457 	struct task_struct *g, *p;
4458 
4459 	if (unlikely(!debug_locks)) {
4460 		pr_warn("INFO: lockdep is turned off.\n");
4461 		return;
4462 	}
4463 	pr_warn("\nShowing all locks held in the system:\n");
4464 
4465 	rcu_read_lock();
4466 	for_each_process_thread(g, p) {
4467 		if (!p->lockdep_depth)
4468 			continue;
4469 		lockdep_print_held_locks(p);
4470 		touch_nmi_watchdog();
4471 		touch_all_softlockup_watchdogs();
4472 	}
4473 	rcu_read_unlock();
4474 
4475 	pr_warn("\n");
4476 	pr_warn("=============================================\n\n");
4477 }
4478 EXPORT_SYMBOL_GPL(debug_show_all_locks);
4479 #endif
4480 
4481 /*
4482  * Careful: only use this function if you are sure that
4483  * the task cannot run in parallel!
4484  */
4485 void debug_show_held_locks(struct task_struct *task)
4486 {
4487 	if (unlikely(!debug_locks)) {
4488 		printk("INFO: lockdep is turned off.\n");
4489 		return;
4490 	}
4491 	lockdep_print_held_locks(task);
4492 }
4493 EXPORT_SYMBOL_GPL(debug_show_held_locks);
4494 
4495 asmlinkage __visible void lockdep_sys_exit(void)
4496 {
4497 	struct task_struct *curr = current;
4498 
4499 	if (unlikely(curr->lockdep_depth)) {
4500 		if (!debug_locks_off())
4501 			return;
4502 		pr_warn("\n");
4503 		pr_warn("================================================\n");
4504 		pr_warn("WARNING: lock held when returning to user space!\n");
4505 		print_kernel_ident();
4506 		pr_warn("------------------------------------------------\n");
4507 		pr_warn("%s/%d is leaving the kernel with locks still held!\n",
4508 				curr->comm, curr->pid);
4509 		lockdep_print_held_locks(curr);
4510 	}
4511 
4512 	/*
4513 	 * The lock history for each syscall should be independent. So wipe the
4514 	 * slate clean on return to userspace.
4515 	 */
4516 	lockdep_invariant_state(false);
4517 }
4518 
4519 void lockdep_rcu_suspicious(const char *file, const int line, const char *s)
4520 {
4521 	struct task_struct *curr = current;
4522 
4523 	/* Note: the following can be executed concurrently, so be careful. */
4524 	pr_warn("\n");
4525 	pr_warn("=============================\n");
4526 	pr_warn("WARNING: suspicious RCU usage\n");
4527 	print_kernel_ident();
4528 	pr_warn("-----------------------------\n");
4529 	pr_warn("%s:%d %s!\n", file, line, s);
4530 	pr_warn("\nother info that might help us debug this:\n\n");
4531 	pr_warn("\n%srcu_scheduler_active = %d, debug_locks = %d\n",
4532 	       !rcu_lockdep_current_cpu_online()
4533 			? "RCU used illegally from offline CPU!\n"
4534 			: !rcu_is_watching()
4535 				? "RCU used illegally from idle CPU!\n"
4536 				: "",
4537 	       rcu_scheduler_active, debug_locks);
4538 
4539 	/*
4540 	 * If a CPU is in the RCU-free window in idle (ie: in the section
4541 	 * between rcu_idle_enter() and rcu_idle_exit(), then RCU
4542 	 * considers that CPU to be in an "extended quiescent state",
4543 	 * which means that RCU will be completely ignoring that CPU.
4544 	 * Therefore, rcu_read_lock() and friends have absolutely no
4545 	 * effect on a CPU running in that state. In other words, even if
4546 	 * such an RCU-idle CPU has called rcu_read_lock(), RCU might well
4547 	 * delete data structures out from under it.  RCU really has no
4548 	 * choice here: we need to keep an RCU-free window in idle where
4549 	 * the CPU may possibly enter into low power mode. This way we can
4550 	 * notice an extended quiescent state to other CPUs that started a grace
4551 	 * period. Otherwise we would delay any grace period as long as we run
4552 	 * in the idle task.
4553 	 *
4554 	 * So complain bitterly if someone does call rcu_read_lock(),
4555 	 * rcu_read_lock_bh() and so on from extended quiescent states.
4556 	 */
4557 	if (!rcu_is_watching())
4558 		pr_warn("RCU used illegally from extended quiescent state!\n");
4559 
4560 	lockdep_print_held_locks(curr);
4561 	pr_warn("\nstack backtrace:\n");
4562 	dump_stack();
4563 }
4564 EXPORT_SYMBOL_GPL(lockdep_rcu_suspicious);
4565