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