blob: 65b5f5b7c298193f187baa6e10dc32df6fc501b8 [file] [log] [blame]
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001/*
2 * kernel/lockdep.c
3 *
4 * Runtime locking correctness validator
5 *
6 * Started by Ingo Molnar:
7 *
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -07008 * Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070010 *
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 */
Steven Rostedta5e25882008-12-02 15:34:05 -050028#define DISABLE_BRANCH_PROFILING
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070029#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>
Dave Jones99de0552006-09-29 02:00:10 -070041#include <linux/utsname.h>
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -070042#include <linux/hash.h>
Steven Rostedt81d68a92008-05-12 21:20:42 +020043#include <linux/ftrace.h>
Peter Zijlstrab4b136f2009-01-29 14:50:36 +010044#include <linux/stringify.h>
Ming Leid588e462009-07-16 15:44:29 +020045#include <linux/bitops.h>
Peter Zijlstraaf012962009-07-16 15:44:29 +020046
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070047#include <asm/sections.h>
48
49#include "lockdep_internals.h"
50
Steven Rostedta8d154b2009-04-10 09:36:00 -040051#define CREATE_TRACE_POINTS
Frederic Weisbecker67178762009-11-13 10:06:34 +010052#include <trace/events/lock.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040053
Peter Zijlstraf20786f2007-07-19 01:48:56 -070054#ifdef CONFIG_PROVE_LOCKING
55int prove_locking = 1;
56module_param(prove_locking, int, 0644);
57#else
58#define prove_locking 0
59#endif
60
61#ifdef CONFIG_LOCK_STAT
62int lock_stat = 1;
63module_param(lock_stat, int, 0644);
64#else
65#define lock_stat 0
66#endif
67
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070068/*
Ingo Molnar74c383f2006-12-13 00:34:43 -080069 * lockdep_lock: protects the lockdep graph, the hashes and the
70 * class/list/hash allocators.
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070071 *
72 * This is one of the rare exceptions where it's justified
73 * to use a raw spinlock - we really dont want the spinlock
Ingo Molnar74c383f2006-12-13 00:34:43 -080074 * code to recurse back into the lockdep code...
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070075 */
Thomas Gleixneredc35bd2009-12-03 12:38:57 +010076static arch_spinlock_t lockdep_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Ingo Molnar74c383f2006-12-13 00:34:43 -080077
78static int graph_lock(void)
79{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010080 arch_spin_lock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -080081 /*
82 * Make sure that if another CPU detected a bug while
83 * walking the graph we dont change it (while the other
84 * CPU is busy printing out stuff with the graph lock
85 * dropped already)
86 */
87 if (!debug_locks) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010088 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -080089 return 0;
90 }
Steven Rostedtbb065af2008-05-12 21:21:00 +020091 /* prevent any recursions within lockdep from causing deadlocks */
92 current->lockdep_recursion++;
Ingo Molnar74c383f2006-12-13 00:34:43 -080093 return 1;
94}
95
96static inline int graph_unlock(void)
97{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010098 if (debug_locks && !arch_spin_is_locked(&lockdep_lock))
Jarek Poplawski381a2292007-02-10 01:44:58 -080099 return DEBUG_LOCKS_WARN_ON(1);
100
Steven Rostedtbb065af2008-05-12 21:21:00 +0200101 current->lockdep_recursion--;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100102 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800103 return 0;
104}
105
106/*
107 * Turn lock debugging off and return with 0 if it was off already,
108 * and also release the graph lock:
109 */
110static inline int debug_locks_off_graph_unlock(void)
111{
112 int ret = debug_locks_off();
113
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100114 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800115
116 return ret;
117}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700118
119static int lockdep_initialized;
120
121unsigned long nr_list_entries;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200122static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700123
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700124/*
125 * All data structures here are protected by the global debug_lock.
126 *
127 * Mutex key structs only get allocated, once during bootup, and never
128 * get freed - this significantly simplifies the debugging code.
129 */
130unsigned long nr_lock_classes;
131static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
132
Dave Jonesf82b2172008-08-11 09:30:23 +0200133static inline struct lock_class *hlock_class(struct held_lock *hlock)
134{
135 if (!hlock->class_idx) {
136 DEBUG_LOCKS_WARN_ON(1);
137 return NULL;
138 }
139 return lock_classes + hlock->class_idx - 1;
140}
141
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700142#ifdef CONFIG_LOCK_STAT
Tejun Heo1871e522009-10-29 22:34:13 +0900143static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS],
144 cpu_lock_stats);
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700145
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200146static inline u64 lockstat_clock(void)
147{
148 return cpu_clock(smp_processor_id());
149}
150
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200151static int lock_point(unsigned long points[], unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700152{
153 int i;
154
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200155 for (i = 0; i < LOCKSTAT_POINTS; i++) {
156 if (points[i] == 0) {
157 points[i] = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700158 break;
159 }
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200160 if (points[i] == ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700161 break;
162 }
163
164 return i;
165}
166
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200167static void lock_time_inc(struct lock_time *lt, u64 time)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700168{
169 if (time > lt->max)
170 lt->max = time;
171
Frank Rowand109d71c2009-11-19 13:42:06 -0800172 if (time < lt->min || !lt->nr)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700173 lt->min = time;
174
175 lt->total += time;
176 lt->nr++;
177}
178
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700179static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
180{
Frank Rowand109d71c2009-11-19 13:42:06 -0800181 if (!src->nr)
182 return;
183
184 if (src->max > dst->max)
185 dst->max = src->max;
186
187 if (src->min < dst->min || !dst->nr)
188 dst->min = src->min;
189
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700190 dst->total += src->total;
191 dst->nr += src->nr;
192}
193
194struct lock_class_stats lock_stats(struct lock_class *class)
195{
196 struct lock_class_stats stats;
197 int cpu, i;
198
199 memset(&stats, 0, sizeof(struct lock_class_stats));
200 for_each_possible_cpu(cpu) {
201 struct lock_class_stats *pcs =
Tejun Heo1871e522009-10-29 22:34:13 +0900202 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700203
204 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
205 stats.contention_point[i] += pcs->contention_point[i];
206
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200207 for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
208 stats.contending_point[i] += pcs->contending_point[i];
209
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700210 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
211 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
212
213 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
214 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
Peter Zijlstra96645672007-07-19 01:49:00 -0700215
216 for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
217 stats.bounces[i] += pcs->bounces[i];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700218 }
219
220 return stats;
221}
222
223void clear_lock_stats(struct lock_class *class)
224{
225 int cpu;
226
227 for_each_possible_cpu(cpu) {
228 struct lock_class_stats *cpu_stats =
Tejun Heo1871e522009-10-29 22:34:13 +0900229 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700230
231 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
232 }
233 memset(class->contention_point, 0, sizeof(class->contention_point));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200234 memset(class->contending_point, 0, sizeof(class->contending_point));
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700235}
236
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700237static struct lock_class_stats *get_lock_stats(struct lock_class *class)
238{
Tejun Heo1871e522009-10-29 22:34:13 +0900239 return &get_cpu_var(cpu_lock_stats)[class - lock_classes];
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700240}
241
242static void put_lock_stats(struct lock_class_stats *stats)
243{
Tejun Heo1871e522009-10-29 22:34:13 +0900244 put_cpu_var(cpu_lock_stats);
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700245}
246
247static void lock_release_holdtime(struct held_lock *hlock)
248{
249 struct lock_class_stats *stats;
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200250 u64 holdtime;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700251
252 if (!lock_stat)
253 return;
254
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200255 holdtime = lockstat_clock() - hlock->holdtime_stamp;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700256
Dave Jonesf82b2172008-08-11 09:30:23 +0200257 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700258 if (hlock->read)
259 lock_time_inc(&stats->read_holdtime, holdtime);
260 else
261 lock_time_inc(&stats->write_holdtime, holdtime);
262 put_lock_stats(stats);
263}
264#else
265static inline void lock_release_holdtime(struct held_lock *hlock)
266{
267}
268#endif
269
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700270/*
271 * We keep a global list of all lock classes. The list only grows,
272 * never shrinks. The list is only accessed with the lockdep
273 * spinlock lock held.
274 */
275LIST_HEAD(all_lock_classes);
276
277/*
278 * The lockdep classes are in a hash-table as well, for fast lookup:
279 */
280#define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
281#define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700282#define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700283#define classhashentry(key) (classhash_table + __classhashfn((key)))
284
285static struct list_head classhash_table[CLASSHASH_SIZE];
286
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700287/*
288 * We put the lock dependency chains into a hash-table as well, to cache
289 * their existence:
290 */
291#define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
292#define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700293#define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700294#define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
295
296static struct list_head chainhash_table[CHAINHASH_SIZE];
297
298/*
299 * The hash key of the lock dependency chains is a hash itself too:
300 * it's a hash of all locks taken up to that lock, including that lock.
301 * It's a 64-bit hash, because it's important for the keys to be
302 * unique.
303 */
304#define iterate_chain_key(key1, key2) \
Ingo Molnar03cbc352006-09-29 02:01:46 -0700305 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
306 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700307 (key2))
308
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200309void lockdep_off(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700310{
311 current->lockdep_recursion++;
312}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700313EXPORT_SYMBOL(lockdep_off);
314
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200315void lockdep_on(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700316{
317 current->lockdep_recursion--;
318}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700319EXPORT_SYMBOL(lockdep_on);
320
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700321/*
322 * Debugging switches:
323 */
324
325#define VERBOSE 0
Ingo Molnar33e94e92006-12-13 00:34:41 -0800326#define VERY_VERBOSE 0
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700327
328#if VERBOSE
329# define HARDIRQ_VERBOSE 1
330# define SOFTIRQ_VERBOSE 1
Nick Piggincf40bd12009-01-21 08:12:39 +0100331# define RECLAIM_VERBOSE 1
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700332#else
333# define HARDIRQ_VERBOSE 0
334# define SOFTIRQ_VERBOSE 0
Nick Piggincf40bd12009-01-21 08:12:39 +0100335# define RECLAIM_VERBOSE 0
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700336#endif
337
Nick Piggincf40bd12009-01-21 08:12:39 +0100338#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700339/*
340 * Quick filtering for interesting events:
341 */
342static int class_filter(struct lock_class *class)
343{
Andi Kleenf9829cc2006-07-10 04:44:01 -0700344#if 0
345 /* Example */
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700346 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700347 !strcmp(class->name, "lockname"))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700348 return 1;
349 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700350 !strcmp(class->name, "&struct->lockfield"))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700351 return 1;
Andi Kleenf9829cc2006-07-10 04:44:01 -0700352#endif
Ingo Molnara6640892006-12-13 00:34:39 -0800353 /* Filter everything else. 1 would be to allow everything else */
354 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700355}
356#endif
357
358static int verbose(struct lock_class *class)
359{
360#if VERBOSE
361 return class_filter(class);
362#endif
363 return 0;
364}
365
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700366/*
367 * Stack-trace: tightly packed array of stack backtrace
Ingo Molnar74c383f2006-12-13 00:34:43 -0800368 * addresses. Protected by the graph_lock.
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700369 */
370unsigned long nr_stack_trace_entries;
371static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
372
373static int save_trace(struct stack_trace *trace)
374{
375 trace->nr_entries = 0;
376 trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
377 trace->entries = stack_trace + nr_stack_trace_entries;
378
Andi Kleen5a1b3992006-09-26 10:52:34 +0200379 trace->skip = 3;
Andi Kleen5a1b3992006-09-26 10:52:34 +0200380
Christoph Hellwigab1b6f02007-05-08 00:23:29 -0700381 save_stack_trace(trace);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700382
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200383 /*
384 * Some daft arches put -1 at the end to indicate its a full trace.
385 *
386 * <rant> this is buggy anyway, since it takes a whole extra entry so a
387 * complete trace that maxes out the entries provided will be reported
388 * as incomplete, friggin useless </rant>
389 */
Luck, Tonyea5b41f2009-12-09 14:29:36 -0800390 if (trace->nr_entries != 0 &&
391 trace->entries[trace->nr_entries-1] == ULONG_MAX)
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200392 trace->nr_entries--;
393
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700394 trace->max_entries = trace->nr_entries;
395
396 nr_stack_trace_entries += trace->nr_entries;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700397
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200398 if (nr_stack_trace_entries >= MAX_STACK_TRACE_ENTRIES-1) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800399 if (!debug_locks_off_graph_unlock())
400 return 0;
401
402 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
403 printk("turning off the locking correctness validator.\n");
404 dump_stack();
405
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700406 return 0;
407 }
408
409 return 1;
410}
411
412unsigned int nr_hardirq_chains;
413unsigned int nr_softirq_chains;
414unsigned int nr_process_chains;
415unsigned int max_lockdep_depth;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700416
417#ifdef CONFIG_DEBUG_LOCKDEP
418/*
419 * We cannot printk in early bootup code. Not even early_printk()
420 * might work. So we mark any initialization errors and printk
421 * about it later on, in lockdep_info().
422 */
423static int lockdep_init_error;
Johannes Bergc71063c2007-07-19 01:49:02 -0700424static unsigned long lockdep_init_trace_data[20];
425static struct stack_trace lockdep_init_trace = {
426 .max_entries = ARRAY_SIZE(lockdep_init_trace_data),
427 .entries = lockdep_init_trace_data,
428};
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700429
430/*
431 * Various lockdep statistics:
432 */
433atomic_t chain_lookup_hits;
434atomic_t chain_lookup_misses;
435atomic_t hardirqs_on_events;
436atomic_t hardirqs_off_events;
437atomic_t redundant_hardirqs_on;
438atomic_t redundant_hardirqs_off;
439atomic_t softirqs_on_events;
440atomic_t softirqs_off_events;
441atomic_t redundant_softirqs_on;
442atomic_t redundant_softirqs_off;
443atomic_t nr_unused_locks;
444atomic_t nr_cyclic_checks;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700445atomic_t nr_find_usage_forwards_checks;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700446atomic_t nr_find_usage_backwards_checks;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700447#endif
448
449/*
450 * Locking printouts:
451 */
452
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100453#define __USAGE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +0100454 [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W", \
455 [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W", \
456 [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
457 [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100458
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700459static const char *usage_str[] =
460{
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100461#define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
462#include "lockdep_states.h"
463#undef LOCKDEP_STATE
464 [LOCK_USED] = "INITIAL USE",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700465};
466
467const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
468{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700469 return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700470}
471
Peter Zijlstra3ff176c2009-01-22 17:40:42 +0100472static inline unsigned long lock_flag(enum lock_usage_bit bit)
473{
474 return 1UL << bit;
475}
476
477static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit)
478{
479 char c = '.';
480
481 if (class->usage_mask & lock_flag(bit + 2))
482 c = '+';
483 if (class->usage_mask & lock_flag(bit)) {
484 c = '-';
485 if (class->usage_mask & lock_flag(bit + 2))
486 c = '?';
487 }
488
489 return c;
490}
491
Peter Zijlstraf510b232009-01-22 17:53:47 +0100492void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS])
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700493{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100494 int i = 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700495
Peter Zijlstraf510b232009-01-22 17:53:47 +0100496#define LOCKDEP_STATE(__STATE) \
497 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE); \
498 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
499#include "lockdep_states.h"
500#undef LOCKDEP_STATE
501
502 usage[i] = '\0';
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700503}
504
505static void print_lock_name(struct lock_class *class)
506{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100507 char str[KSYM_NAME_LEN], usage[LOCK_USAGE_CHARS];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700508 const char *name;
509
Peter Zijlstraf510b232009-01-22 17:53:47 +0100510 get_usage_chars(class, usage);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700511
512 name = class->name;
513 if (!name) {
514 name = __get_key_name(class->key, str);
515 printk(" (%s", name);
516 } else {
517 printk(" (%s", name);
518 if (class->name_version > 1)
519 printk("#%d", class->name_version);
520 if (class->subclass)
521 printk("/%d", class->subclass);
522 }
Peter Zijlstraf510b232009-01-22 17:53:47 +0100523 printk("){%s}", usage);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700524}
525
526static void print_lockdep_cache(struct lockdep_map *lock)
527{
528 const char *name;
Tejun Heo9281ace2007-07-17 04:03:51 -0700529 char str[KSYM_NAME_LEN];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700530
531 name = lock->name;
532 if (!name)
533 name = __get_key_name(lock->key->subkeys, str);
534
535 printk("%s", name);
536}
537
538static void print_lock(struct held_lock *hlock)
539{
Dave Jonesf82b2172008-08-11 09:30:23 +0200540 print_lock_name(hlock_class(hlock));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700541 printk(", at: ");
542 print_ip_sym(hlock->acquire_ip);
543}
544
545static void lockdep_print_held_locks(struct task_struct *curr)
546{
547 int i, depth = curr->lockdep_depth;
548
549 if (!depth) {
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700550 printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700551 return;
552 }
553 printk("%d lock%s held by %s/%d:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700554 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700555
556 for (i = 0; i < depth; i++) {
557 printk(" #%d: ", i);
558 print_lock(curr->held_locks + i);
559 }
560}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700561
Dave Jones99de0552006-09-29 02:00:10 -0700562static void print_kernel_version(void)
563{
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700564 printk("%s %.*s\n", init_utsname()->release,
565 (int)strcspn(init_utsname()->version, " "),
566 init_utsname()->version);
Dave Jones99de0552006-09-29 02:00:10 -0700567}
568
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700569static int very_verbose(struct lock_class *class)
570{
571#if VERY_VERBOSE
572 return class_filter(class);
573#endif
574 return 0;
575}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700576
577/*
578 * Is this the address of a static object:
579 */
580static int static_obj(void *obj)
581{
582 unsigned long start = (unsigned long) &_stext,
583 end = (unsigned long) &_end,
584 addr = (unsigned long) obj;
585#ifdef CONFIG_SMP
586 int i;
587#endif
588
589 /*
590 * static variable?
591 */
592 if ((addr >= start) && (addr < end))
593 return 1;
594
Mike Frysinger2a9ad182009-09-22 16:44:16 -0700595 if (arch_is_kernel_data(addr))
596 return 1;
597
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700598#ifdef CONFIG_SMP
599 /*
600 * percpu var?
601 */
602 for_each_possible_cpu(i) {
603 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i);
Ingo Molnar1ff56832006-11-17 19:57:22 +0100604 end = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
605 + per_cpu_offset(i);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700606
607 if ((addr >= start) && (addr < end))
608 return 1;
609 }
610#endif
611
612 /*
613 * module var?
614 */
615 return is_module_address(addr);
616}
617
618/*
619 * To make lock name printouts unique, we calculate a unique
620 * class->name_version generation counter:
621 */
622static int count_matching_names(struct lock_class *new_class)
623{
624 struct lock_class *class;
625 int count = 0;
626
627 if (!new_class->name)
628 return 0;
629
630 list_for_each_entry(class, &all_lock_classes, lock_entry) {
631 if (new_class->key - new_class->subclass == class->key)
632 return class->name_version;
633 if (class->name && !strcmp(class->name, new_class->name))
634 count = max(count, class->name_version);
635 }
636
637 return count + 1;
638}
639
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700640/*
641 * Register a lock's class in the hash-table, if the class is not present
642 * yet. Otherwise we look it up. We cache the result in the lock object
643 * itself, so actual lookup of the hash should be once per lock object.
644 */
645static inline struct lock_class *
Ingo Molnard6d897c2006-07-10 04:44:04 -0700646look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700647{
648 struct lockdep_subclass_key *key;
649 struct list_head *hash_head;
650 struct lock_class *class;
651
652#ifdef CONFIG_DEBUG_LOCKDEP
653 /*
654 * If the architecture calls into lockdep before initializing
655 * the hashes then we'll warn about it later. (we cannot printk
656 * right now)
657 */
658 if (unlikely(!lockdep_initialized)) {
659 lockdep_init();
660 lockdep_init_error = 1;
Johannes Bergc71063c2007-07-19 01:49:02 -0700661 save_stack_trace(&lockdep_init_trace);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700662 }
663#endif
664
665 /*
666 * Static locks do not have their class-keys yet - for them the key
667 * is the lock object itself:
668 */
669 if (unlikely(!lock->key))
670 lock->key = (void *)lock;
671
672 /*
673 * NOTE: the class-key must be unique. For dynamic locks, a static
674 * lock_class_key variable is passed in through the mutex_init()
675 * (or spin_lock_init()) call - which acts as the key. For static
676 * locks we use the lock object itself as the key.
677 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700678 BUILD_BUG_ON(sizeof(struct lock_class_key) >
679 sizeof(struct lockdep_map));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700680
681 key = lock->key->subkeys + subclass;
682
683 hash_head = classhashentry(key);
684
685 /*
686 * We can walk the hash lockfree, because the hash only
687 * grows, and we are careful when adding entries to the end:
688 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700689 list_for_each_entry(class, hash_head, hash_entry) {
690 if (class->key == key) {
691 WARN_ON_ONCE(class->name != lock->name);
Ingo Molnard6d897c2006-07-10 04:44:04 -0700692 return class;
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700693 }
694 }
Ingo Molnard6d897c2006-07-10 04:44:04 -0700695
696 return NULL;
697}
698
699/*
700 * Register a lock's class in the hash-table, if the class is not present
701 * yet. Otherwise we look it up. We cache the result in the lock object
702 * itself, so actual lookup of the hash should be once per lock object.
703 */
704static inline struct lock_class *
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400705register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700706{
707 struct lockdep_subclass_key *key;
708 struct list_head *hash_head;
709 struct lock_class *class;
Ingo Molnar70e45062006-12-06 20:40:50 -0800710 unsigned long flags;
Ingo Molnard6d897c2006-07-10 04:44:04 -0700711
712 class = look_up_lock_class(lock, subclass);
713 if (likely(class))
714 return class;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700715
716 /*
717 * Debug-check: all keys must be persistent!
718 */
719 if (!static_obj(lock->key)) {
720 debug_locks_off();
721 printk("INFO: trying to register non-static key.\n");
722 printk("the code is fine but needs lockdep annotation.\n");
723 printk("turning off the locking correctness validator.\n");
724 dump_stack();
725
726 return NULL;
727 }
728
Ingo Molnard6d897c2006-07-10 04:44:04 -0700729 key = lock->key->subkeys + subclass;
730 hash_head = classhashentry(key);
731
Ingo Molnar70e45062006-12-06 20:40:50 -0800732 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800733 if (!graph_lock()) {
734 raw_local_irq_restore(flags);
735 return NULL;
736 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700737 /*
738 * We have to do the hash-walk again, to avoid races
739 * with another CPU:
740 */
741 list_for_each_entry(class, hash_head, hash_entry)
742 if (class->key == key)
743 goto out_unlock_set;
744 /*
745 * Allocate a new key from the static array, and add it to
746 * the hash:
747 */
748 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800749 if (!debug_locks_off_graph_unlock()) {
750 raw_local_irq_restore(flags);
751 return NULL;
752 }
Ingo Molnar70e45062006-12-06 20:40:50 -0800753 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800754
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700755 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
756 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100757 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700758 return NULL;
759 }
760 class = lock_classes + nr_lock_classes++;
761 debug_atomic_inc(&nr_unused_locks);
762 class->key = key;
763 class->name = lock->name;
764 class->subclass = subclass;
765 INIT_LIST_HEAD(&class->lock_entry);
766 INIT_LIST_HEAD(&class->locks_before);
767 INIT_LIST_HEAD(&class->locks_after);
768 class->name_version = count_matching_names(class);
769 /*
770 * We use RCU's safe list-add method to make
771 * parallel walking of the hash-list safe:
772 */
773 list_add_tail_rcu(&class->hash_entry, hash_head);
Dale Farnsworth14811972008-02-25 23:03:02 +0100774 /*
775 * Add it to the global list of classes:
776 */
777 list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700778
779 if (verbose(class)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800780 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800781 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800782
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700783 printk("\nnew class %p: %s", class->key, class->name);
784 if (class->name_version > 1)
785 printk("#%d", class->name_version);
786 printk("\n");
787 dump_stack();
Ingo Molnar74c383f2006-12-13 00:34:43 -0800788
Ingo Molnar70e45062006-12-06 20:40:50 -0800789 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800790 if (!graph_lock()) {
791 raw_local_irq_restore(flags);
792 return NULL;
793 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700794 }
795out_unlock_set:
Ingo Molnar74c383f2006-12-13 00:34:43 -0800796 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800797 raw_local_irq_restore(flags);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700798
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400799 if (!subclass || force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700800 lock->class_cache = class;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700801
Jarek Poplawski381a2292007-02-10 01:44:58 -0800802 if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
803 return NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700804
805 return class;
806}
807
Peter Zijlstraca58abc2007-07-19 01:48:53 -0700808#ifdef CONFIG_PROVE_LOCKING
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700809/*
Peter Zijlstra8e182572007-07-19 01:48:54 -0700810 * Allocate a lockdep entry. (assumes the graph_lock held, returns
811 * with NULL on failure)
812 */
813static struct lock_list *alloc_list_entry(void)
814{
815 if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
816 if (!debug_locks_off_graph_unlock())
817 return NULL;
818
819 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
820 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100821 dump_stack();
Peter Zijlstra8e182572007-07-19 01:48:54 -0700822 return NULL;
823 }
824 return list_entries + nr_list_entries++;
825}
826
827/*
828 * Add a new dependency to the head of the list:
829 */
830static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
831 struct list_head *head, unsigned long ip, int distance)
832{
833 struct lock_list *entry;
834 /*
835 * Lock not present yet - get a new dependency struct and
836 * add it to the list:
837 */
838 entry = alloc_list_entry();
839 if (!entry)
840 return 0;
841
Peter Zijlstra8e182572007-07-19 01:48:54 -0700842 if (!save_trace(&entry->trace))
843 return 0;
844
Zhu Yi74870172008-08-27 14:33:00 +0800845 entry->class = this;
846 entry->distance = distance;
Peter Zijlstra8e182572007-07-19 01:48:54 -0700847 /*
848 * Since we never remove from the dependency list, the list can
849 * be walked lockless by other CPUs, it's only allocation
850 * that must be protected by the spinlock. But this also means
851 * we must make new entries visible only once writes to the
852 * entry become visible - hence the RCU op:
853 */
854 list_add_tail_rcu(&entry->entry, head);
855
856 return 1;
857}
858
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200859/*
860 * For good efficiency of modular, we use power of 2
861 */
Peter Zijlstraaf012962009-07-16 15:44:29 +0200862#define MAX_CIRCULAR_QUEUE_SIZE 4096UL
863#define CQ_MASK (MAX_CIRCULAR_QUEUE_SIZE-1)
864
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200865/*
866 * The circular_queue and helpers is used to implement the
Peter Zijlstraaf012962009-07-16 15:44:29 +0200867 * breadth-first search(BFS)algorithem, by which we can build
868 * the shortest path from the next lock to be acquired to the
869 * previous held lock if there is a circular between them.
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200870 */
Peter Zijlstraaf012962009-07-16 15:44:29 +0200871struct circular_queue {
872 unsigned long element[MAX_CIRCULAR_QUEUE_SIZE];
873 unsigned int front, rear;
874};
875
876static struct circular_queue lock_cq;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200877
Ming Lei12f3dfd2009-07-16 15:44:29 +0200878unsigned int max_bfs_queue_depth;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200879
Ming Leie351b662009-07-22 22:48:09 +0800880static unsigned int lockdep_dependency_gen_id;
881
Peter Zijlstraaf012962009-07-16 15:44:29 +0200882static inline void __cq_init(struct circular_queue *cq)
883{
884 cq->front = cq->rear = 0;
Ming Leie351b662009-07-22 22:48:09 +0800885 lockdep_dependency_gen_id++;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200886}
887
888static inline int __cq_empty(struct circular_queue *cq)
889{
890 return (cq->front == cq->rear);
891}
892
893static inline int __cq_full(struct circular_queue *cq)
894{
895 return ((cq->rear + 1) & CQ_MASK) == cq->front;
896}
897
898static inline int __cq_enqueue(struct circular_queue *cq, unsigned long elem)
899{
900 if (__cq_full(cq))
901 return -1;
902
903 cq->element[cq->rear] = elem;
904 cq->rear = (cq->rear + 1) & CQ_MASK;
905 return 0;
906}
907
908static inline int __cq_dequeue(struct circular_queue *cq, unsigned long *elem)
909{
910 if (__cq_empty(cq))
911 return -1;
912
913 *elem = cq->element[cq->front];
914 cq->front = (cq->front + 1) & CQ_MASK;
915 return 0;
916}
917
918static inline unsigned int __cq_get_elem_count(struct circular_queue *cq)
919{
920 return (cq->rear - cq->front) & CQ_MASK;
921}
922
923static inline void mark_lock_accessed(struct lock_list *lock,
924 struct lock_list *parent)
925{
926 unsigned long nr;
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200927
Peter Zijlstraaf012962009-07-16 15:44:29 +0200928 nr = lock - list_entries;
929 WARN_ON(nr >= nr_list_entries);
930 lock->parent = parent;
Ming Leie351b662009-07-22 22:48:09 +0800931 lock->class->dep_gen_id = lockdep_dependency_gen_id;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200932}
933
934static inline unsigned long lock_accessed(struct lock_list *lock)
935{
936 unsigned long nr;
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200937
Peter Zijlstraaf012962009-07-16 15:44:29 +0200938 nr = lock - list_entries;
939 WARN_ON(nr >= nr_list_entries);
Ming Leie351b662009-07-22 22:48:09 +0800940 return lock->class->dep_gen_id == lockdep_dependency_gen_id;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200941}
942
943static inline struct lock_list *get_lock_parent(struct lock_list *child)
944{
945 return child->parent;
946}
947
948static inline int get_lock_depth(struct lock_list *child)
949{
950 int depth = 0;
951 struct lock_list *parent;
952
953 while ((parent = get_lock_parent(child))) {
954 child = parent;
955 depth++;
956 }
957 return depth;
958}
959
Ming Lei9e2d5512009-07-16 15:44:29 +0200960static int __bfs(struct lock_list *source_entry,
Peter Zijlstraaf012962009-07-16 15:44:29 +0200961 void *data,
962 int (*match)(struct lock_list *entry, void *data),
963 struct lock_list **target_entry,
964 int forward)
Ming Leic94aa5c2009-07-16 15:44:29 +0200965{
966 struct lock_list *entry;
Ming Leid588e462009-07-16 15:44:29 +0200967 struct list_head *head;
Ming Leic94aa5c2009-07-16 15:44:29 +0200968 struct circular_queue *cq = &lock_cq;
969 int ret = 1;
970
Ming Lei9e2d5512009-07-16 15:44:29 +0200971 if (match(source_entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +0200972 *target_entry = source_entry;
973 ret = 0;
974 goto exit;
975 }
976
Ming Leid588e462009-07-16 15:44:29 +0200977 if (forward)
978 head = &source_entry->class->locks_after;
979 else
980 head = &source_entry->class->locks_before;
981
982 if (list_empty(head))
983 goto exit;
984
985 __cq_init(cq);
Ming Leic94aa5c2009-07-16 15:44:29 +0200986 __cq_enqueue(cq, (unsigned long)source_entry);
987
988 while (!__cq_empty(cq)) {
989 struct lock_list *lock;
Ming Leic94aa5c2009-07-16 15:44:29 +0200990
991 __cq_dequeue(cq, (unsigned long *)&lock);
992
993 if (!lock->class) {
994 ret = -2;
995 goto exit;
996 }
997
998 if (forward)
999 head = &lock->class->locks_after;
1000 else
1001 head = &lock->class->locks_before;
1002
1003 list_for_each_entry(entry, head, entry) {
1004 if (!lock_accessed(entry)) {
Ming Lei12f3dfd2009-07-16 15:44:29 +02001005 unsigned int cq_depth;
Ming Leic94aa5c2009-07-16 15:44:29 +02001006 mark_lock_accessed(entry, lock);
Ming Lei9e2d5512009-07-16 15:44:29 +02001007 if (match(entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +02001008 *target_entry = entry;
1009 ret = 0;
1010 goto exit;
1011 }
1012
1013 if (__cq_enqueue(cq, (unsigned long)entry)) {
1014 ret = -1;
1015 goto exit;
1016 }
Ming Lei12f3dfd2009-07-16 15:44:29 +02001017 cq_depth = __cq_get_elem_count(cq);
1018 if (max_bfs_queue_depth < cq_depth)
1019 max_bfs_queue_depth = cq_depth;
Ming Leic94aa5c2009-07-16 15:44:29 +02001020 }
1021 }
1022 }
1023exit:
1024 return ret;
1025}
1026
Ming Leid7aaba12009-07-16 15:44:29 +02001027static inline int __bfs_forwards(struct lock_list *src_entry,
Ming Lei9e2d5512009-07-16 15:44:29 +02001028 void *data,
1029 int (*match)(struct lock_list *entry, void *data),
1030 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +02001031{
Ming Lei9e2d5512009-07-16 15:44:29 +02001032 return __bfs(src_entry, data, match, target_entry, 1);
Ming Leic94aa5c2009-07-16 15:44:29 +02001033
1034}
1035
Ming Leid7aaba12009-07-16 15:44:29 +02001036static inline int __bfs_backwards(struct lock_list *src_entry,
Ming Lei9e2d5512009-07-16 15:44:29 +02001037 void *data,
1038 int (*match)(struct lock_list *entry, void *data),
1039 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +02001040{
Ming Lei9e2d5512009-07-16 15:44:29 +02001041 return __bfs(src_entry, data, match, target_entry, 0);
Ming Leic94aa5c2009-07-16 15:44:29 +02001042
1043}
1044
Peter Zijlstra8e182572007-07-19 01:48:54 -07001045/*
1046 * Recursive, forwards-direction lock-dependency checking, used for
1047 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
1048 * checking.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001049 */
Peter Zijlstra8e182572007-07-19 01:48:54 -07001050
1051/*
1052 * Print a dependency chain entry (this is only done when a deadlock
1053 * has been detected):
1054 */
1055static noinline int
Ming Lei24208ca2009-07-16 15:44:29 +02001056print_circular_bug_entry(struct lock_list *target, int depth)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001057{
1058 if (debug_locks_silent)
1059 return 0;
1060 printk("\n-> #%u", depth);
1061 print_lock_name(target->class);
1062 printk(":\n");
1063 print_stack_trace(&target->trace, 6);
1064
1065 return 0;
1066}
1067
1068/*
1069 * When a circular dependency is detected, print the
1070 * header first:
1071 */
1072static noinline int
Ming Leidb0002a2009-07-16 15:44:29 +02001073print_circular_bug_header(struct lock_list *entry, unsigned int depth,
1074 struct held_lock *check_src,
1075 struct held_lock *check_tgt)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001076{
1077 struct task_struct *curr = current;
1078
Ming Leic94aa5c2009-07-16 15:44:29 +02001079 if (debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001080 return 0;
1081
1082 printk("\n=======================================================\n");
1083 printk( "[ INFO: possible circular locking dependency detected ]\n");
1084 print_kernel_version();
1085 printk( "-------------------------------------------------------\n");
1086 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001087 curr->comm, task_pid_nr(curr));
Ming Leidb0002a2009-07-16 15:44:29 +02001088 print_lock(check_src);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001089 printk("\nbut task is already holding lock:\n");
Ming Leidb0002a2009-07-16 15:44:29 +02001090 print_lock(check_tgt);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001091 printk("\nwhich lock already depends on the new lock.\n\n");
1092 printk("\nthe existing dependency chain (in reverse order) is:\n");
1093
1094 print_circular_bug_entry(entry, depth);
1095
1096 return 0;
1097}
1098
Ming Lei9e2d5512009-07-16 15:44:29 +02001099static inline int class_equal(struct lock_list *entry, void *data)
1100{
1101 return entry->class == data;
1102}
1103
Ming Leidb0002a2009-07-16 15:44:29 +02001104static noinline int print_circular_bug(struct lock_list *this,
1105 struct lock_list *target,
1106 struct held_lock *check_src,
1107 struct held_lock *check_tgt)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001108{
1109 struct task_struct *curr = current;
Ming Leic94aa5c2009-07-16 15:44:29 +02001110 struct lock_list *parent;
Ming Lei24208ca2009-07-16 15:44:29 +02001111 int depth;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001112
Ming Leic94aa5c2009-07-16 15:44:29 +02001113 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001114 return 0;
1115
Ming Leidb0002a2009-07-16 15:44:29 +02001116 if (!save_trace(&this->trace))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001117 return 0;
1118
Ming Leic94aa5c2009-07-16 15:44:29 +02001119 depth = get_lock_depth(target);
1120
Ming Leidb0002a2009-07-16 15:44:29 +02001121 print_circular_bug_header(target, depth, check_src, check_tgt);
Ming Leic94aa5c2009-07-16 15:44:29 +02001122
1123 parent = get_lock_parent(target);
1124
1125 while (parent) {
1126 print_circular_bug_entry(parent, --depth);
1127 parent = get_lock_parent(parent);
1128 }
Peter Zijlstra8e182572007-07-19 01:48:54 -07001129
1130 printk("\nother info that might help us debug this:\n\n");
1131 lockdep_print_held_locks(curr);
1132
1133 printk("\nstack backtrace:\n");
1134 dump_stack();
1135
1136 return 0;
1137}
1138
Ming Leidb0002a2009-07-16 15:44:29 +02001139static noinline int print_bfs_bug(int ret)
1140{
1141 if (!debug_locks_off_graph_unlock())
1142 return 0;
1143
1144 WARN(1, "lockdep bfs error:%d\n", ret);
1145
1146 return 0;
1147}
1148
Ming Leief681022009-07-16 15:44:29 +02001149static int noop_count(struct lock_list *entry, void *data)
David Miller419ca3f2008-07-29 21:45:03 -07001150{
Ming Leief681022009-07-16 15:44:29 +02001151 (*(unsigned long *)data)++;
1152 return 0;
David Miller419ca3f2008-07-29 21:45:03 -07001153}
1154
Ming Leief681022009-07-16 15:44:29 +02001155unsigned long __lockdep_count_forward_deps(struct lock_list *this)
1156{
1157 unsigned long count = 0;
1158 struct lock_list *uninitialized_var(target_entry);
1159
1160 __bfs_forwards(this, (void *)&count, noop_count, &target_entry);
1161
1162 return count;
1163}
David Miller419ca3f2008-07-29 21:45:03 -07001164unsigned long lockdep_count_forward_deps(struct lock_class *class)
1165{
1166 unsigned long ret, flags;
Ming Leief681022009-07-16 15:44:29 +02001167 struct lock_list this;
1168
1169 this.parent = NULL;
1170 this.class = class;
David Miller419ca3f2008-07-29 21:45:03 -07001171
1172 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001173 arch_spin_lock(&lockdep_lock);
Ming Leief681022009-07-16 15:44:29 +02001174 ret = __lockdep_count_forward_deps(&this);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001175 arch_spin_unlock(&lockdep_lock);
David Miller419ca3f2008-07-29 21:45:03 -07001176 local_irq_restore(flags);
1177
1178 return ret;
1179}
1180
Ming Leief681022009-07-16 15:44:29 +02001181unsigned long __lockdep_count_backward_deps(struct lock_list *this)
David Miller419ca3f2008-07-29 21:45:03 -07001182{
Ming Leief681022009-07-16 15:44:29 +02001183 unsigned long count = 0;
1184 struct lock_list *uninitialized_var(target_entry);
David Miller419ca3f2008-07-29 21:45:03 -07001185
Ming Leief681022009-07-16 15:44:29 +02001186 __bfs_backwards(this, (void *)&count, noop_count, &target_entry);
David Miller419ca3f2008-07-29 21:45:03 -07001187
Ming Leief681022009-07-16 15:44:29 +02001188 return count;
David Miller419ca3f2008-07-29 21:45:03 -07001189}
1190
1191unsigned long lockdep_count_backward_deps(struct lock_class *class)
1192{
1193 unsigned long ret, flags;
Ming Leief681022009-07-16 15:44:29 +02001194 struct lock_list this;
1195
1196 this.parent = NULL;
1197 this.class = class;
David Miller419ca3f2008-07-29 21:45:03 -07001198
1199 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001200 arch_spin_lock(&lockdep_lock);
Ming Leief681022009-07-16 15:44:29 +02001201 ret = __lockdep_count_backward_deps(&this);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001202 arch_spin_unlock(&lockdep_lock);
David Miller419ca3f2008-07-29 21:45:03 -07001203 local_irq_restore(flags);
1204
1205 return ret;
1206}
1207
Peter Zijlstra8e182572007-07-19 01:48:54 -07001208/*
1209 * Prove that the dependency graph starting at <entry> can not
1210 * lead to <target>. Print an error and return 0 if it does.
1211 */
1212static noinline int
Ming Leidb0002a2009-07-16 15:44:29 +02001213check_noncircular(struct lock_list *root, struct lock_class *target,
1214 struct lock_list **target_entry)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001215{
Ming Leidb0002a2009-07-16 15:44:29 +02001216 int result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001217
Ming Leidb0002a2009-07-16 15:44:29 +02001218 debug_atomic_inc(&nr_cyclic_checks);
David Miller419ca3f2008-07-29 21:45:03 -07001219
Ming Leid7aaba12009-07-16 15:44:29 +02001220 result = __bfs_forwards(root, target, class_equal, target_entry);
Ming Leidb0002a2009-07-16 15:44:29 +02001221
1222 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001223}
1224
Steven Rostedt81d68a92008-05-12 21:20:42 +02001225#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001226/*
1227 * Forwards and backwards subgraph searching, for the purposes of
1228 * proving that two subgraphs can be connected by a new dependency
1229 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1230 */
Peter Zijlstra8e182572007-07-19 01:48:54 -07001231
Ming Leid7aaba12009-07-16 15:44:29 +02001232static inline int usage_match(struct lock_list *entry, void *bit)
1233{
1234 return entry->class->usage_mask & (1 << (enum lock_usage_bit)bit);
1235}
1236
1237
1238
Peter Zijlstra8e182572007-07-19 01:48:54 -07001239/*
1240 * Find a node in the forwards-direction dependency sub-graph starting
Ming Leid7aaba12009-07-16 15:44:29 +02001241 * at @root->class that matches @bit.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001242 *
Ming Leid7aaba12009-07-16 15:44:29 +02001243 * Return 0 if such a node exists in the subgraph, and put that node
1244 * into *@target_entry.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001245 *
Ming Leid7aaba12009-07-16 15:44:29 +02001246 * Return 1 otherwise and keep *@target_entry unchanged.
1247 * Return <0 on error.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001248 */
Ming Leid7aaba12009-07-16 15:44:29 +02001249static int
1250find_usage_forwards(struct lock_list *root, enum lock_usage_bit bit,
1251 struct lock_list **target_entry)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001252{
Ming Leid7aaba12009-07-16 15:44:29 +02001253 int result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001254
1255 debug_atomic_inc(&nr_find_usage_forwards_checks);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001256
Ming Leid7aaba12009-07-16 15:44:29 +02001257 result = __bfs_forwards(root, (void *)bit, usage_match, target_entry);
1258
1259 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001260}
1261
1262/*
1263 * Find a node in the backwards-direction dependency sub-graph starting
Ming Leid7aaba12009-07-16 15:44:29 +02001264 * at @root->class that matches @bit.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001265 *
Ming Leid7aaba12009-07-16 15:44:29 +02001266 * Return 0 if such a node exists in the subgraph, and put that node
1267 * into *@target_entry.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001268 *
Ming Leid7aaba12009-07-16 15:44:29 +02001269 * Return 1 otherwise and keep *@target_entry unchanged.
1270 * Return <0 on error.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001271 */
Ming Leid7aaba12009-07-16 15:44:29 +02001272static int
1273find_usage_backwards(struct lock_list *root, enum lock_usage_bit bit,
1274 struct lock_list **target_entry)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001275{
Ming Leid7aaba12009-07-16 15:44:29 +02001276 int result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001277
1278 debug_atomic_inc(&nr_find_usage_backwards_checks);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001279
Ming Leid7aaba12009-07-16 15:44:29 +02001280 result = __bfs_backwards(root, (void *)bit, usage_match, target_entry);
Dave Jonesf82b2172008-08-11 09:30:23 +02001281
Ming Leid7aaba12009-07-16 15:44:29 +02001282 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001283}
1284
Peter Zijlstraaf012962009-07-16 15:44:29 +02001285static void print_lock_class_header(struct lock_class *class, int depth)
1286{
1287 int bit;
1288
1289 printk("%*s->", depth, "");
1290 print_lock_name(class);
1291 printk(" ops: %lu", class->ops);
1292 printk(" {\n");
1293
1294 for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
1295 if (class->usage_mask & (1 << bit)) {
1296 int len = depth;
1297
1298 len += printk("%*s %s", depth, "", usage_str[bit]);
1299 len += printk(" at:\n");
1300 print_stack_trace(class->usage_traces + bit, len);
1301 }
1302 }
1303 printk("%*s }\n", depth, "");
1304
1305 printk("%*s ... key at: ",depth,"");
1306 print_ip_sym((unsigned long)class->key);
1307}
1308
1309/*
1310 * printk the shortest lock dependencies from @start to @end in reverse order:
1311 */
1312static void __used
1313print_shortest_lock_dependencies(struct lock_list *leaf,
1314 struct lock_list *root)
1315{
1316 struct lock_list *entry = leaf;
1317 int depth;
1318
1319 /*compute depth from generated tree by BFS*/
1320 depth = get_lock_depth(leaf);
1321
1322 do {
1323 print_lock_class_header(entry->class, depth);
1324 printk("%*s ... acquired at:\n", depth, "");
1325 print_stack_trace(&entry->trace, 2);
1326 printk("\n");
1327
1328 if (depth == 0 && (entry != root)) {
1329 printk("lockdep:%s bad BFS generated tree\n", __func__);
1330 break;
1331 }
1332
1333 entry = get_lock_parent(entry);
1334 depth--;
1335 } while (entry && (depth >= 0));
1336
1337 return;
1338}
Ming Leid7aaba12009-07-16 15:44:29 +02001339
Peter Zijlstra8e182572007-07-19 01:48:54 -07001340static int
1341print_bad_irq_dependency(struct task_struct *curr,
Ming Lei24208ca2009-07-16 15:44:29 +02001342 struct lock_list *prev_root,
1343 struct lock_list *next_root,
1344 struct lock_list *backwards_entry,
1345 struct lock_list *forwards_entry,
Peter Zijlstra8e182572007-07-19 01:48:54 -07001346 struct held_lock *prev,
1347 struct held_lock *next,
1348 enum lock_usage_bit bit1,
1349 enum lock_usage_bit bit2,
1350 const char *irqclass)
1351{
1352 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1353 return 0;
1354
1355 printk("\n======================================================\n");
1356 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1357 irqclass, irqclass);
1358 print_kernel_version();
1359 printk( "------------------------------------------------------\n");
1360 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001361 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07001362 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1363 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1364 curr->hardirqs_enabled,
1365 curr->softirqs_enabled);
1366 print_lock(next);
1367
1368 printk("\nand this task is already holding:\n");
1369 print_lock(prev);
1370 printk("which would create a new lock dependency:\n");
Dave Jonesf82b2172008-08-11 09:30:23 +02001371 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001372 printk(" ->");
Dave Jonesf82b2172008-08-11 09:30:23 +02001373 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001374 printk("\n");
1375
1376 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1377 irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02001378 print_lock_name(backwards_entry->class);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001379 printk("\n... which became %s-irq-safe at:\n", irqclass);
1380
Ming Lei24208ca2009-07-16 15:44:29 +02001381 print_stack_trace(backwards_entry->class->usage_traces + bit1, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001382
1383 printk("\nto a %s-irq-unsafe lock:\n", irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02001384 print_lock_name(forwards_entry->class);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001385 printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1386 printk("...");
1387
Ming Lei24208ca2009-07-16 15:44:29 +02001388 print_stack_trace(forwards_entry->class->usage_traces + bit2, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001389
1390 printk("\nother info that might help us debug this:\n\n");
1391 lockdep_print_held_locks(curr);
1392
Ming Lei24208ca2009-07-16 15:44:29 +02001393 printk("\nthe dependencies between %s-irq-safe lock", irqclass);
1394 printk(" and the holding lock:\n");
1395 if (!save_trace(&prev_root->trace))
1396 return 0;
1397 print_shortest_lock_dependencies(backwards_entry, prev_root);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001398
Ming Lei24208ca2009-07-16 15:44:29 +02001399 printk("\nthe dependencies between the lock to be acquired");
1400 printk(" and %s-irq-unsafe lock:\n", irqclass);
1401 if (!save_trace(&next_root->trace))
1402 return 0;
1403 print_shortest_lock_dependencies(forwards_entry, next_root);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001404
1405 printk("\nstack backtrace:\n");
1406 dump_stack();
1407
1408 return 0;
1409}
1410
1411static int
1412check_usage(struct task_struct *curr, struct held_lock *prev,
1413 struct held_lock *next, enum lock_usage_bit bit_backwards,
1414 enum lock_usage_bit bit_forwards, const char *irqclass)
1415{
1416 int ret;
Ming Lei24208ca2009-07-16 15:44:29 +02001417 struct lock_list this, that;
Ming Leid7aaba12009-07-16 15:44:29 +02001418 struct lock_list *uninitialized_var(target_entry);
Ming Lei24208ca2009-07-16 15:44:29 +02001419 struct lock_list *uninitialized_var(target_entry1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001420
Ming Leid7aaba12009-07-16 15:44:29 +02001421 this.parent = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001422
Ming Leid7aaba12009-07-16 15:44:29 +02001423 this.class = hlock_class(prev);
1424 ret = find_usage_backwards(&this, bit_backwards, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02001425 if (ret < 0)
1426 return print_bfs_bug(ret);
1427 if (ret == 1)
1428 return ret;
Ming Leid7aaba12009-07-16 15:44:29 +02001429
Ming Lei24208ca2009-07-16 15:44:29 +02001430 that.parent = NULL;
1431 that.class = hlock_class(next);
1432 ret = find_usage_forwards(&that, bit_forwards, &target_entry1);
Peter Zijlstraaf012962009-07-16 15:44:29 +02001433 if (ret < 0)
1434 return print_bfs_bug(ret);
1435 if (ret == 1)
1436 return ret;
Ming Leid7aaba12009-07-16 15:44:29 +02001437
Ming Lei24208ca2009-07-16 15:44:29 +02001438 return print_bad_irq_dependency(curr, &this, &that,
1439 target_entry, target_entry1,
1440 prev, next,
Peter Zijlstra8e182572007-07-19 01:48:54 -07001441 bit_backwards, bit_forwards, irqclass);
1442}
1443
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001444static const char *state_names[] = {
1445#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001446 __stringify(__STATE),
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001447#include "lockdep_states.h"
1448#undef LOCKDEP_STATE
1449};
1450
1451static const char *state_rnames[] = {
1452#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001453 __stringify(__STATE)"-READ",
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001454#include "lockdep_states.h"
1455#undef LOCKDEP_STATE
1456};
1457
1458static inline const char *state_name(enum lock_usage_bit bit)
1459{
1460 return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2];
1461}
1462
1463static int exclusive_bit(int new_bit)
1464{
1465 /*
1466 * USED_IN
1467 * USED_IN_READ
1468 * ENABLED
1469 * ENABLED_READ
1470 *
1471 * bit 0 - write/read
1472 * bit 1 - used_in/enabled
1473 * bit 2+ state
1474 */
1475
1476 int state = new_bit & ~3;
1477 int dir = new_bit & 2;
1478
1479 /*
1480 * keep state, bit flip the direction and strip read.
1481 */
1482 return state | (dir ^ 2);
1483}
1484
1485static int check_irq_usage(struct task_struct *curr, struct held_lock *prev,
1486 struct held_lock *next, enum lock_usage_bit bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001487{
1488 /*
1489 * Prove that the new dependency does not connect a hardirq-safe
1490 * lock with a hardirq-unsafe lock - to achieve this we search
1491 * the backwards-subgraph starting at <prev>, and the
1492 * forwards-subgraph starting at <next>:
1493 */
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001494 if (!check_usage(curr, prev, next, bit,
1495 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001496 return 0;
1497
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001498 bit++; /* _READ */
1499
Peter Zijlstra8e182572007-07-19 01:48:54 -07001500 /*
1501 * Prove that the new dependency does not connect a hardirq-safe-read
1502 * lock with a hardirq-unsafe lock - to achieve this we search
1503 * the backwards-subgraph starting at <prev>, and the
1504 * forwards-subgraph starting at <next>:
1505 */
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001506 if (!check_usage(curr, prev, next, bit,
1507 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001508 return 0;
1509
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001510 return 1;
1511}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001512
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001513static int
1514check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1515 struct held_lock *next)
1516{
1517#define LOCKDEP_STATE(__STATE) \
1518 if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \
Nick Piggincf40bd12009-01-21 08:12:39 +01001519 return 0;
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001520#include "lockdep_states.h"
1521#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01001522
Peter Zijlstra8e182572007-07-19 01:48:54 -07001523 return 1;
1524}
1525
1526static void inc_chains(void)
1527{
1528 if (current->hardirq_context)
1529 nr_hardirq_chains++;
1530 else {
1531 if (current->softirq_context)
1532 nr_softirq_chains++;
1533 else
1534 nr_process_chains++;
1535 }
1536}
1537
1538#else
1539
1540static inline int
1541check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1542 struct held_lock *next)
1543{
1544 return 1;
1545}
1546
1547static inline void inc_chains(void)
1548{
1549 nr_process_chains++;
1550}
1551
1552#endif
1553
1554static int
1555print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1556 struct held_lock *next)
1557{
1558 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1559 return 0;
1560
1561 printk("\n=============================================\n");
1562 printk( "[ INFO: possible recursive locking detected ]\n");
1563 print_kernel_version();
1564 printk( "---------------------------------------------\n");
1565 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001566 curr->comm, task_pid_nr(curr));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001567 print_lock(next);
1568 printk("\nbut task is already holding lock:\n");
1569 print_lock(prev);
1570
1571 printk("\nother info that might help us debug this:\n");
1572 lockdep_print_held_locks(curr);
1573
1574 printk("\nstack backtrace:\n");
1575 dump_stack();
1576
1577 return 0;
1578}
1579
1580/*
1581 * Check whether we are holding such a class already.
1582 *
1583 * (Note that this has to be done separately, because the graph cannot
1584 * detect such classes of deadlocks.)
1585 *
1586 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1587 */
1588static int
1589check_deadlock(struct task_struct *curr, struct held_lock *next,
1590 struct lockdep_map *next_instance, int read)
1591{
1592 struct held_lock *prev;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001593 struct held_lock *nest = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001594 int i;
1595
1596 for (i = 0; i < curr->lockdep_depth; i++) {
1597 prev = curr->held_locks + i;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001598
1599 if (prev->instance == next->nest_lock)
1600 nest = prev;
1601
Dave Jonesf82b2172008-08-11 09:30:23 +02001602 if (hlock_class(prev) != hlock_class(next))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001603 continue;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001604
Peter Zijlstra8e182572007-07-19 01:48:54 -07001605 /*
1606 * Allow read-after-read recursion of the same
1607 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1608 */
1609 if ((read == 2) && prev->read)
1610 return 2;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001611
1612 /*
1613 * We're holding the nest_lock, which serializes this lock's
1614 * nesting behaviour.
1615 */
1616 if (nest)
1617 return 2;
1618
Peter Zijlstra8e182572007-07-19 01:48:54 -07001619 return print_deadlock_bug(curr, prev, next);
1620 }
1621 return 1;
1622}
1623
1624/*
1625 * There was a chain-cache miss, and we are about to add a new dependency
1626 * to a previous lock. We recursively validate the following rules:
1627 *
1628 * - would the adding of the <prev> -> <next> dependency create a
1629 * circular dependency in the graph? [== circular deadlock]
1630 *
1631 * - does the new prev->next dependency connect any hardirq-safe lock
1632 * (in the full backwards-subgraph starting at <prev>) with any
1633 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1634 * <next>)? [== illegal lock inversion with hardirq contexts]
1635 *
1636 * - does the new prev->next dependency connect any softirq-safe lock
1637 * (in the full backwards-subgraph starting at <prev>) with any
1638 * softirq-unsafe lock (in the full forwards-subgraph starting at
1639 * <next>)? [== illegal lock inversion with softirq contexts]
1640 *
1641 * any of these scenarios could lead to a deadlock.
1642 *
1643 * Then if all the validations pass, we add the forwards and backwards
1644 * dependency.
1645 */
1646static int
1647check_prev_add(struct task_struct *curr, struct held_lock *prev,
1648 struct held_lock *next, int distance)
1649{
1650 struct lock_list *entry;
1651 int ret;
Ming Leidb0002a2009-07-16 15:44:29 +02001652 struct lock_list this;
1653 struct lock_list *uninitialized_var(target_entry);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001654
1655 /*
1656 * Prove that the new <prev> -> <next> dependency would not
1657 * create a circular dependency in the graph. (We do this by
1658 * forward-recursing into the graph starting at <next>, and
1659 * checking whether we can reach <prev>.)
1660 *
1661 * We are using global variables to control the recursion, to
1662 * keep the stackframe size of the recursive functions low:
1663 */
Ming Leidb0002a2009-07-16 15:44:29 +02001664 this.class = hlock_class(next);
1665 this.parent = NULL;
1666 ret = check_noncircular(&this, hlock_class(prev), &target_entry);
1667 if (unlikely(!ret))
1668 return print_circular_bug(&this, target_entry, next, prev);
1669 else if (unlikely(ret < 0))
1670 return print_bfs_bug(ret);
Ming Leic94aa5c2009-07-16 15:44:29 +02001671
Peter Zijlstra8e182572007-07-19 01:48:54 -07001672 if (!check_prev_add_irq(curr, prev, next))
1673 return 0;
1674
1675 /*
1676 * For recursive read-locks we do all the dependency checks,
1677 * but we dont store read-triggered dependencies (only
1678 * write-triggered dependencies). This ensures that only the
1679 * write-side dependencies matter, and that if for example a
1680 * write-lock never takes any other locks, then the reads are
1681 * equivalent to a NOP.
1682 */
1683 if (next->read == 2 || prev->read == 2)
1684 return 1;
1685 /*
1686 * Is the <prev> -> <next> dependency already present?
1687 *
1688 * (this may occur even though this is a new chain: consider
1689 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1690 * chains - the second one will be new, but L1 already has
1691 * L2 added to its dependency list, due to the first chain.)
1692 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001693 list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1694 if (entry->class == hlock_class(next)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001695 if (distance == 1)
1696 entry->distance = 1;
1697 return 2;
1698 }
1699 }
1700
1701 /*
1702 * Ok, all validations passed, add the new lock
1703 * to the previous lock's dependency list:
1704 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001705 ret = add_lock_to_list(hlock_class(prev), hlock_class(next),
1706 &hlock_class(prev)->locks_after,
1707 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001708
1709 if (!ret)
1710 return 0;
1711
Dave Jonesf82b2172008-08-11 09:30:23 +02001712 ret = add_lock_to_list(hlock_class(next), hlock_class(prev),
1713 &hlock_class(next)->locks_before,
1714 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001715 if (!ret)
1716 return 0;
1717
1718 /*
1719 * Debugging printouts:
1720 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001721 if (verbose(hlock_class(prev)) || verbose(hlock_class(next))) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001722 graph_unlock();
1723 printk("\n new dependency: ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001724 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001725 printk(" => ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001726 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001727 printk("\n");
1728 dump_stack();
1729 return graph_lock();
1730 }
1731 return 1;
1732}
1733
1734/*
1735 * Add the dependency to all directly-previous locks that are 'relevant'.
1736 * The ones that are relevant are (in increasing distance from curr):
1737 * all consecutive trylock entries and the final non-trylock entry - or
1738 * the end of this context's lock-chain - whichever comes first.
1739 */
1740static int
1741check_prevs_add(struct task_struct *curr, struct held_lock *next)
1742{
1743 int depth = curr->lockdep_depth;
1744 struct held_lock *hlock;
1745
1746 /*
1747 * Debugging checks.
1748 *
1749 * Depth must not be zero for a non-head lock:
1750 */
1751 if (!depth)
1752 goto out_bug;
1753 /*
1754 * At least two relevant locks must exist for this
1755 * to be a head:
1756 */
1757 if (curr->held_locks[depth].irq_context !=
1758 curr->held_locks[depth-1].irq_context)
1759 goto out_bug;
1760
1761 for (;;) {
1762 int distance = curr->lockdep_depth - depth + 1;
1763 hlock = curr->held_locks + depth-1;
1764 /*
1765 * Only non-recursive-read entries get new dependencies
1766 * added:
1767 */
1768 if (hlock->read != 2) {
1769 if (!check_prev_add(curr, hlock, next, distance))
1770 return 0;
1771 /*
1772 * Stop after the first non-trylock entry,
1773 * as non-trylock entries have added their
1774 * own direct dependencies already, so this
1775 * lock is connected to them indirectly:
1776 */
1777 if (!hlock->trylock)
1778 break;
1779 }
1780 depth--;
1781 /*
1782 * End of lock-stack?
1783 */
1784 if (!depth)
1785 break;
1786 /*
1787 * Stop the search if we cross into another context:
1788 */
1789 if (curr->held_locks[depth].irq_context !=
1790 curr->held_locks[depth-1].irq_context)
1791 break;
1792 }
1793 return 1;
1794out_bug:
1795 if (!debug_locks_off_graph_unlock())
1796 return 0;
1797
1798 WARN_ON(1);
1799
1800 return 0;
1801}
1802
1803unsigned long nr_lock_chains;
Huang, Ying443cd502008-06-20 16:39:21 +08001804struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001805int nr_chain_hlocks;
Huang, Ying443cd502008-06-20 16:39:21 +08001806static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
1807
1808struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
1809{
1810 return lock_classes + chain_hlocks[chain->base + i];
1811}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001812
1813/*
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001814 * Look up a dependency chain. If the key is not present yet then
Jarek Poplawski9e860d02007-05-08 00:30:12 -07001815 * add it and return 1 - in this case the new dependency chain is
1816 * validated. If the key is already hashed, return 0.
1817 * (On return with 1 graph_lock is held.)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001818 */
Huang, Ying443cd502008-06-20 16:39:21 +08001819static inline int lookup_chain_cache(struct task_struct *curr,
1820 struct held_lock *hlock,
1821 u64 chain_key)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001822{
Dave Jonesf82b2172008-08-11 09:30:23 +02001823 struct lock_class *class = hlock_class(hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001824 struct list_head *hash_head = chainhashentry(chain_key);
1825 struct lock_chain *chain;
Huang, Ying443cd502008-06-20 16:39:21 +08001826 struct held_lock *hlock_curr, *hlock_next;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001827 int i, j, n, cn;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001828
Jarek Poplawski381a2292007-02-10 01:44:58 -08001829 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1830 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001831 /*
1832 * We can walk it lock-free, because entries only get added
1833 * to the hash:
1834 */
1835 list_for_each_entry(chain, hash_head, entry) {
1836 if (chain->chain_key == chain_key) {
1837cache_hit:
1838 debug_atomic_inc(&chain_lookup_hits);
Ingo Molnar81fc6852006-12-13 00:34:40 -08001839 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001840 printk("\nhash chain already cached, key: "
1841 "%016Lx tail class: [%p] %s\n",
1842 (unsigned long long)chain_key,
1843 class->key, class->name);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001844 return 0;
1845 }
1846 }
Ingo Molnar81fc6852006-12-13 00:34:40 -08001847 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001848 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1849 (unsigned long long)chain_key, class->key, class->name);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001850 /*
1851 * Allocate a new chain entry from the static array, and add
1852 * it to the hash:
1853 */
Ingo Molnar74c383f2006-12-13 00:34:43 -08001854 if (!graph_lock())
1855 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001856 /*
1857 * We have to walk the chain again locked - to avoid duplicates:
1858 */
1859 list_for_each_entry(chain, hash_head, entry) {
1860 if (chain->chain_key == chain_key) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001861 graph_unlock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001862 goto cache_hit;
1863 }
1864 }
1865 if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001866 if (!debug_locks_off_graph_unlock())
1867 return 0;
1868
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001869 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1870 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01001871 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001872 return 0;
1873 }
1874 chain = lock_chains + nr_lock_chains++;
1875 chain->chain_key = chain_key;
Huang, Ying443cd502008-06-20 16:39:21 +08001876 chain->irq_context = hlock->irq_context;
1877 /* Find the first held_lock of current chain */
1878 hlock_next = hlock;
1879 for (i = curr->lockdep_depth - 1; i >= 0; i--) {
1880 hlock_curr = curr->held_locks + i;
1881 if (hlock_curr->irq_context != hlock_next->irq_context)
1882 break;
1883 hlock_next = hlock;
1884 }
1885 i++;
1886 chain->depth = curr->lockdep_depth + 1 - i;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001887 cn = nr_chain_hlocks;
1888 while (cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS) {
1889 n = cmpxchg(&nr_chain_hlocks, cn, cn + chain->depth);
1890 if (n == cn)
1891 break;
1892 cn = n;
1893 }
1894 if (likely(cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
1895 chain->base = cn;
Huang, Ying443cd502008-06-20 16:39:21 +08001896 for (j = 0; j < chain->depth - 1; j++, i++) {
Dave Jonesf82b2172008-08-11 09:30:23 +02001897 int lock_id = curr->held_locks[i].class_idx - 1;
Huang, Ying443cd502008-06-20 16:39:21 +08001898 chain_hlocks[chain->base + j] = lock_id;
1899 }
1900 chain_hlocks[chain->base + j] = class - lock_classes;
1901 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001902 list_add_tail_rcu(&chain->entry, hash_head);
1903 debug_atomic_inc(&chain_lookup_misses);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001904 inc_chains();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001905
1906 return 1;
1907}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001908
1909static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
Johannes Berg4e6045f2007-10-18 23:39:55 -07001910 struct held_lock *hlock, int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001911{
1912 /*
1913 * Trylock needs to maintain the stack of held locks, but it
1914 * does not add new dependencies, because trylock can be done
1915 * in any order.
1916 *
1917 * We look up the chain_key and do the O(N^2) check and update of
1918 * the dependencies only if this is a new dependency chain.
1919 * (If lookup_chain_cache() returns with 1 it acquires
1920 * graph_lock for us)
1921 */
1922 if (!hlock->trylock && (hlock->check == 2) &&
Huang, Ying443cd502008-06-20 16:39:21 +08001923 lookup_chain_cache(curr, hlock, chain_key)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001924 /*
1925 * Check whether last held lock:
1926 *
1927 * - is irq-safe, if this lock is irq-unsafe
1928 * - is softirq-safe, if this lock is hardirq-unsafe
1929 *
1930 * And check whether the new lock's dependency graph
1931 * could lead back to the previous lock.
1932 *
1933 * any of these scenarios could lead to a deadlock. If
1934 * All validations
1935 */
1936 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1937
1938 if (!ret)
1939 return 0;
1940 /*
1941 * Mark recursive read, as we jump over it when
1942 * building dependencies (just like we jump over
1943 * trylock entries):
1944 */
1945 if (ret == 2)
1946 hlock->read = 2;
1947 /*
1948 * Add dependency only if this lock is not the head
1949 * of the chain, and if it's not a secondary read-lock:
1950 */
1951 if (!chain_head && ret != 2)
1952 if (!check_prevs_add(curr, hlock))
1953 return 0;
1954 graph_unlock();
1955 } else
1956 /* after lookup_chain_cache(): */
1957 if (unlikely(!debug_locks))
1958 return 0;
1959
1960 return 1;
1961}
1962#else
1963static inline int validate_chain(struct task_struct *curr,
1964 struct lockdep_map *lock, struct held_lock *hlock,
Gregory Haskins3aa416b2007-10-11 22:11:11 +02001965 int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001966{
1967 return 1;
1968}
Peter Zijlstraca58abc2007-07-19 01:48:53 -07001969#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001970
1971/*
1972 * We are building curr_chain_key incrementally, so double-check
1973 * it from scratch, to make sure that it's done correctly:
1974 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02001975static void check_chain_key(struct task_struct *curr)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001976{
1977#ifdef CONFIG_DEBUG_LOCKDEP
1978 struct held_lock *hlock, *prev_hlock = NULL;
1979 unsigned int i, id;
1980 u64 chain_key = 0;
1981
1982 for (i = 0; i < curr->lockdep_depth; i++) {
1983 hlock = curr->held_locks + i;
1984 if (chain_key != hlock->prev_chain_key) {
1985 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07001986 WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001987 curr->lockdep_depth, i,
1988 (unsigned long long)chain_key,
1989 (unsigned long long)hlock->prev_chain_key);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001990 return;
1991 }
Dave Jonesf82b2172008-08-11 09:30:23 +02001992 id = hlock->class_idx - 1;
Jarek Poplawski381a2292007-02-10 01:44:58 -08001993 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1994 return;
1995
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001996 if (prev_hlock && (prev_hlock->irq_context !=
1997 hlock->irq_context))
1998 chain_key = 0;
1999 chain_key = iterate_chain_key(chain_key, id);
2000 prev_hlock = hlock;
2001 }
2002 if (chain_key != curr->curr_chain_key) {
2003 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07002004 WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002005 curr->lockdep_depth, i,
2006 (unsigned long long)chain_key,
2007 (unsigned long long)curr->curr_chain_key);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002008 }
2009#endif
2010}
2011
Peter Zijlstra8e182572007-07-19 01:48:54 -07002012static int
2013print_usage_bug(struct task_struct *curr, struct held_lock *this,
2014 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
2015{
2016 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
2017 return 0;
2018
2019 printk("\n=================================\n");
2020 printk( "[ INFO: inconsistent lock state ]\n");
2021 print_kernel_version();
2022 printk( "---------------------------------\n");
2023
2024 printk("inconsistent {%s} -> {%s} usage.\n",
2025 usage_str[prev_bit], usage_str[new_bit]);
2026
2027 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002028 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07002029 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
2030 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
2031 trace_hardirqs_enabled(curr),
2032 trace_softirqs_enabled(curr));
2033 print_lock(this);
2034
2035 printk("{%s} state was registered at:\n", usage_str[prev_bit]);
Dave Jonesf82b2172008-08-11 09:30:23 +02002036 print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07002037
2038 print_irqtrace_events(curr);
2039 printk("\nother info that might help us debug this:\n");
2040 lockdep_print_held_locks(curr);
2041
2042 printk("\nstack backtrace:\n");
2043 dump_stack();
2044
2045 return 0;
2046}
2047
2048/*
2049 * Print out an error if an invalid bit is set:
2050 */
2051static inline int
2052valid_state(struct task_struct *curr, struct held_lock *this,
2053 enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
2054{
Dave Jonesf82b2172008-08-11 09:30:23 +02002055 if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002056 return print_usage_bug(curr, this, bad_bit, new_bit);
2057 return 1;
2058}
2059
2060static int mark_lock(struct task_struct *curr, struct held_lock *this,
2061 enum lock_usage_bit new_bit);
2062
Steven Rostedt81d68a92008-05-12 21:20:42 +02002063#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002064
2065/*
2066 * print irq inversion bug:
2067 */
2068static int
Ming Lei24208ca2009-07-16 15:44:29 +02002069print_irq_inversion_bug(struct task_struct *curr,
2070 struct lock_list *root, struct lock_list *other,
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002071 struct held_lock *this, int forwards,
2072 const char *irqclass)
2073{
Ingo Molnar74c383f2006-12-13 00:34:43 -08002074 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002075 return 0;
2076
2077 printk("\n=========================================================\n");
2078 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
Dave Jones99de0552006-09-29 02:00:10 -07002079 print_kernel_version();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002080 printk( "---------------------------------------------------------\n");
2081 printk("%s/%d just changed the state of lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002082 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002083 print_lock(this);
2084 if (forwards)
Peter Zijlstra26575e22009-03-04 14:53:24 +01002085 printk("but this lock took another, %s-unsafe lock in the past:\n", irqclass);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002086 else
Peter Zijlstra26575e22009-03-04 14:53:24 +01002087 printk("but this lock was taken by another, %s-safe lock in the past:\n", irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02002088 print_lock_name(other->class);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002089 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2090
2091 printk("\nother info that might help us debug this:\n");
2092 lockdep_print_held_locks(curr);
2093
Ming Lei24208ca2009-07-16 15:44:29 +02002094 printk("\nthe shortest dependencies between 2nd lock and 1st lock:\n");
2095 if (!save_trace(&root->trace))
2096 return 0;
2097 print_shortest_lock_dependencies(other, root);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002098
2099 printk("\nstack backtrace:\n");
2100 dump_stack();
2101
2102 return 0;
2103}
2104
2105/*
2106 * Prove that in the forwards-direction subgraph starting at <this>
2107 * there is no lock matching <mask>:
2108 */
2109static int
2110check_usage_forwards(struct task_struct *curr, struct held_lock *this,
2111 enum lock_usage_bit bit, const char *irqclass)
2112{
2113 int ret;
Ming Leid7aaba12009-07-16 15:44:29 +02002114 struct lock_list root;
2115 struct lock_list *uninitialized_var(target_entry);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002116
Ming Leid7aaba12009-07-16 15:44:29 +02002117 root.parent = NULL;
2118 root.class = hlock_class(this);
2119 ret = find_usage_forwards(&root, bit, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02002120 if (ret < 0)
2121 return print_bfs_bug(ret);
2122 if (ret == 1)
2123 return ret;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002124
Ming Lei24208ca2009-07-16 15:44:29 +02002125 return print_irq_inversion_bug(curr, &root, target_entry,
Ming Leid7aaba12009-07-16 15:44:29 +02002126 this, 1, irqclass);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002127}
2128
2129/*
2130 * Prove that in the backwards-direction subgraph starting at <this>
2131 * there is no lock matching <mask>:
2132 */
2133static int
2134check_usage_backwards(struct task_struct *curr, struct held_lock *this,
2135 enum lock_usage_bit bit, const char *irqclass)
2136{
2137 int ret;
Ming Leid7aaba12009-07-16 15:44:29 +02002138 struct lock_list root;
2139 struct lock_list *uninitialized_var(target_entry);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002140
Ming Leid7aaba12009-07-16 15:44:29 +02002141 root.parent = NULL;
2142 root.class = hlock_class(this);
2143 ret = find_usage_backwards(&root, bit, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02002144 if (ret < 0)
2145 return print_bfs_bug(ret);
2146 if (ret == 1)
2147 return ret;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002148
Ming Lei24208ca2009-07-16 15:44:29 +02002149 return print_irq_inversion_bug(curr, &root, target_entry,
Oleg Nesterov48d50672010-01-26 19:16:41 +01002150 this, 0, irqclass);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002151}
2152
Ingo Molnar3117df02006-12-13 00:34:43 -08002153void print_irqtrace_events(struct task_struct *curr)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002154{
2155 printk("irq event stamp: %u\n", curr->irq_events);
2156 printk("hardirqs last enabled at (%u): ", curr->hardirq_enable_event);
2157 print_ip_sym(curr->hardirq_enable_ip);
2158 printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
2159 print_ip_sym(curr->hardirq_disable_ip);
2160 printk("softirqs last enabled at (%u): ", curr->softirq_enable_event);
2161 print_ip_sym(curr->softirq_enable_ip);
2162 printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
2163 print_ip_sym(curr->softirq_disable_ip);
2164}
2165
Peter Zijlstracd953022009-01-22 16:38:21 +01002166static int HARDIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002167{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002168#if HARDIRQ_VERBOSE
2169 return class_filter(class);
2170#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002171 return 0;
2172}
2173
Peter Zijlstracd953022009-01-22 16:38:21 +01002174static int SOFTIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002175{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002176#if SOFTIRQ_VERBOSE
2177 return class_filter(class);
2178#endif
2179 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002180}
2181
Peter Zijlstracd953022009-01-22 16:38:21 +01002182static int RECLAIM_FS_verbose(struct lock_class *class)
Nick Piggincf40bd12009-01-21 08:12:39 +01002183{
2184#if RECLAIM_VERBOSE
2185 return class_filter(class);
2186#endif
2187 return 0;
2188}
2189
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002190#define STRICT_READ_CHECKS 1
2191
Peter Zijlstracd953022009-01-22 16:38:21 +01002192static int (*state_verbose_f[])(struct lock_class *class) = {
2193#define LOCKDEP_STATE(__STATE) \
2194 __STATE##_verbose,
2195#include "lockdep_states.h"
2196#undef LOCKDEP_STATE
2197};
2198
2199static inline int state_verbose(enum lock_usage_bit bit,
2200 struct lock_class *class)
2201{
2202 return state_verbose_f[bit >> 2](class);
2203}
2204
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002205typedef int (*check_usage_f)(struct task_struct *, struct held_lock *,
2206 enum lock_usage_bit bit, const char *name);
2207
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002208static int
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002209mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2210 enum lock_usage_bit new_bit)
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002211{
Peter Zijlstraf9892092009-01-22 16:09:59 +01002212 int excl_bit = exclusive_bit(new_bit);
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002213 int read = new_bit & 1;
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002214 int dir = new_bit & 2;
2215
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002216 /*
2217 * mark USED_IN has to look forwards -- to ensure no dependency
2218 * has ENABLED state, which would allow recursion deadlocks.
2219 *
2220 * mark ENABLED has to look backwards -- to ensure no dependee
2221 * has USED_IN state, which, again, would allow recursion deadlocks.
2222 */
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002223 check_usage_f usage = dir ?
2224 check_usage_backwards : check_usage_forwards;
Peter Zijlstraf9892092009-01-22 16:09:59 +01002225
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002226 /*
2227 * Validate that this particular lock does not have conflicting
2228 * usage states.
2229 */
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002230 if (!valid_state(curr, this, new_bit, excl_bit))
2231 return 0;
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002232
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002233 /*
2234 * Validate that the lock dependencies don't have conflicting usage
2235 * states.
2236 */
2237 if ((!read || !dir || STRICT_READ_CHECKS) &&
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002238 !usage(curr, this, excl_bit, state_name(new_bit & ~1)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002239 return 0;
Peter Zijlstra780e8202009-01-22 16:51:29 +01002240
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002241 /*
2242 * Check for read in write conflicts
2243 */
2244 if (!read) {
2245 if (!valid_state(curr, this, new_bit, excl_bit + 1))
2246 return 0;
2247
2248 if (STRICT_READ_CHECKS &&
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01002249 !usage(curr, this, excl_bit + 1,
2250 state_name(new_bit + 1)))
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002251 return 0;
2252 }
Peter Zijlstra780e8202009-01-22 16:51:29 +01002253
Peter Zijlstracd953022009-01-22 16:38:21 +01002254 if (state_verbose(new_bit, hlock_class(this)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002255 return 2;
2256
2257 return 1;
2258}
2259
Nick Piggincf40bd12009-01-21 08:12:39 +01002260enum mark_type {
Peter Zijlstra36bfb9b2009-01-22 14:12:41 +01002261#define LOCKDEP_STATE(__STATE) __STATE,
2262#include "lockdep_states.h"
2263#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01002264};
2265
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002266/*
2267 * Mark all held locks with a usage bit:
2268 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002269static int
Nick Piggincf40bd12009-01-21 08:12:39 +01002270mark_held_locks(struct task_struct *curr, enum mark_type mark)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002271{
2272 enum lock_usage_bit usage_bit;
2273 struct held_lock *hlock;
2274 int i;
2275
2276 for (i = 0; i < curr->lockdep_depth; i++) {
2277 hlock = curr->held_locks + i;
2278
Peter Zijlstracf2ad4d2009-01-27 13:58:08 +01002279 usage_bit = 2 + (mark << 2); /* ENABLED */
2280 if (hlock->read)
2281 usage_bit += 1; /* READ */
2282
2283 BUG_ON(usage_bit >= LOCK_USAGE_STATES);
Nick Piggincf40bd12009-01-21 08:12:39 +01002284
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002285 if (!mark_lock(curr, hlock, usage_bit))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002286 return 0;
2287 }
2288
2289 return 1;
2290}
2291
2292/*
2293 * Debugging helper: via this flag we know that we are in
2294 * 'early bootup code', and will warn about any invalid irqs-on event:
2295 */
2296static int early_boot_irqs_enabled;
2297
2298void early_boot_irqs_off(void)
2299{
2300 early_boot_irqs_enabled = 0;
2301}
2302
2303void early_boot_irqs_on(void)
2304{
2305 early_boot_irqs_enabled = 1;
2306}
2307
2308/*
2309 * Hardirqs will be enabled:
2310 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002311void trace_hardirqs_on_caller(unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002312{
2313 struct task_struct *curr = current;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002314
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002315 time_hardirqs_on(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002316
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002317 if (unlikely(!debug_locks || current->lockdep_recursion))
2318 return;
2319
2320 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2321 return;
2322
2323 if (unlikely(curr->hardirqs_enabled)) {
2324 debug_atomic_inc(&redundant_hardirqs_on);
2325 return;
2326 }
2327 /* we'll do an OFF -> ON transition: */
2328 curr->hardirqs_enabled = 1;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002329
2330 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2331 return;
2332 if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2333 return;
2334 /*
2335 * We are going to turn hardirqs on, so set the
2336 * usage bit for all held locks:
2337 */
Nick Piggincf40bd12009-01-21 08:12:39 +01002338 if (!mark_held_locks(curr, HARDIRQ))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002339 return;
2340 /*
2341 * If we have softirqs enabled, then set the usage
2342 * bit for all held locks. (disabled hardirqs prevented
2343 * this bit from being set before)
2344 */
2345 if (curr->softirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002346 if (!mark_held_locks(curr, SOFTIRQ))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002347 return;
2348
2349 curr->hardirq_enable_ip = ip;
2350 curr->hardirq_enable_event = ++curr->irq_events;
2351 debug_atomic_inc(&hardirqs_on_events);
2352}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002353EXPORT_SYMBOL(trace_hardirqs_on_caller);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002354
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002355void trace_hardirqs_on(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002356{
2357 trace_hardirqs_on_caller(CALLER_ADDR0);
2358}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002359EXPORT_SYMBOL(trace_hardirqs_on);
2360
2361/*
2362 * Hardirqs were disabled:
2363 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002364void trace_hardirqs_off_caller(unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002365{
2366 struct task_struct *curr = current;
2367
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002368 time_hardirqs_off(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002369
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002370 if (unlikely(!debug_locks || current->lockdep_recursion))
2371 return;
2372
2373 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2374 return;
2375
2376 if (curr->hardirqs_enabled) {
2377 /*
2378 * We have done an ON -> OFF transition:
2379 */
2380 curr->hardirqs_enabled = 0;
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002381 curr->hardirq_disable_ip = ip;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002382 curr->hardirq_disable_event = ++curr->irq_events;
2383 debug_atomic_inc(&hardirqs_off_events);
2384 } else
2385 debug_atomic_inc(&redundant_hardirqs_off);
2386}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002387EXPORT_SYMBOL(trace_hardirqs_off_caller);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002388
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002389void trace_hardirqs_off(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002390{
2391 trace_hardirqs_off_caller(CALLER_ADDR0);
2392}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002393EXPORT_SYMBOL(trace_hardirqs_off);
2394
2395/*
2396 * Softirqs will be enabled:
2397 */
2398void trace_softirqs_on(unsigned long ip)
2399{
2400 struct task_struct *curr = current;
2401
2402 if (unlikely(!debug_locks))
2403 return;
2404
2405 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2406 return;
2407
2408 if (curr->softirqs_enabled) {
2409 debug_atomic_inc(&redundant_softirqs_on);
2410 return;
2411 }
2412
2413 /*
2414 * We'll do an OFF -> ON transition:
2415 */
2416 curr->softirqs_enabled = 1;
2417 curr->softirq_enable_ip = ip;
2418 curr->softirq_enable_event = ++curr->irq_events;
2419 debug_atomic_inc(&softirqs_on_events);
2420 /*
2421 * We are going to turn softirqs on, so set the
2422 * usage bit for all held locks, if hardirqs are
2423 * enabled too:
2424 */
2425 if (curr->hardirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002426 mark_held_locks(curr, SOFTIRQ);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002427}
2428
2429/*
2430 * Softirqs were disabled:
2431 */
2432void trace_softirqs_off(unsigned long ip)
2433{
2434 struct task_struct *curr = current;
2435
2436 if (unlikely(!debug_locks))
2437 return;
2438
2439 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2440 return;
2441
2442 if (curr->softirqs_enabled) {
2443 /*
2444 * We have done an ON -> OFF transition:
2445 */
2446 curr->softirqs_enabled = 0;
2447 curr->softirq_disable_ip = ip;
2448 curr->softirq_disable_event = ++curr->irq_events;
2449 debug_atomic_inc(&softirqs_off_events);
2450 DEBUG_LOCKS_WARN_ON(!softirq_count());
2451 } else
2452 debug_atomic_inc(&redundant_softirqs_off);
2453}
2454
Peter Zijlstra2f850182009-03-20 11:13:20 +01002455static void __lockdep_trace_alloc(gfp_t gfp_mask, unsigned long flags)
Nick Piggincf40bd12009-01-21 08:12:39 +01002456{
2457 struct task_struct *curr = current;
2458
2459 if (unlikely(!debug_locks))
2460 return;
2461
2462 /* no reclaim without waiting on it */
2463 if (!(gfp_mask & __GFP_WAIT))
2464 return;
2465
2466 /* this guy won't enter reclaim */
2467 if ((curr->flags & PF_MEMALLOC) && !(gfp_mask & __GFP_NOMEMALLOC))
2468 return;
2469
2470 /* We're only interested __GFP_FS allocations for now */
2471 if (!(gfp_mask & __GFP_FS))
2472 return;
2473
Peter Zijlstra2f850182009-03-20 11:13:20 +01002474 if (DEBUG_LOCKS_WARN_ON(irqs_disabled_flags(flags)))
Nick Piggincf40bd12009-01-21 08:12:39 +01002475 return;
2476
2477 mark_held_locks(curr, RECLAIM_FS);
2478}
2479
Peter Zijlstra2f850182009-03-20 11:13:20 +01002480static void check_flags(unsigned long flags);
2481
2482void lockdep_trace_alloc(gfp_t gfp_mask)
2483{
2484 unsigned long flags;
2485
2486 if (unlikely(current->lockdep_recursion))
2487 return;
2488
2489 raw_local_irq_save(flags);
2490 check_flags(flags);
2491 current->lockdep_recursion = 1;
2492 __lockdep_trace_alloc(gfp_mask, flags);
2493 current->lockdep_recursion = 0;
2494 raw_local_irq_restore(flags);
2495}
2496
Peter Zijlstra8e182572007-07-19 01:48:54 -07002497static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2498{
2499 /*
2500 * If non-trylock use in a hardirq or softirq context, then
2501 * mark the lock as used in these contexts:
2502 */
2503 if (!hlock->trylock) {
2504 if (hlock->read) {
2505 if (curr->hardirq_context)
2506 if (!mark_lock(curr, hlock,
2507 LOCK_USED_IN_HARDIRQ_READ))
2508 return 0;
2509 if (curr->softirq_context)
2510 if (!mark_lock(curr, hlock,
2511 LOCK_USED_IN_SOFTIRQ_READ))
2512 return 0;
2513 } else {
2514 if (curr->hardirq_context)
2515 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2516 return 0;
2517 if (curr->softirq_context)
2518 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2519 return 0;
2520 }
2521 }
2522 if (!hlock->hardirqs_off) {
2523 if (hlock->read) {
2524 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002525 LOCK_ENABLED_HARDIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002526 return 0;
2527 if (curr->softirqs_enabled)
2528 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002529 LOCK_ENABLED_SOFTIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002530 return 0;
2531 } else {
2532 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002533 LOCK_ENABLED_HARDIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002534 return 0;
2535 if (curr->softirqs_enabled)
2536 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002537 LOCK_ENABLED_SOFTIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002538 return 0;
2539 }
2540 }
2541
Nick Piggincf40bd12009-01-21 08:12:39 +01002542 /*
2543 * We reuse the irq context infrastructure more broadly as a general
2544 * context checking code. This tests GFP_FS recursion (a lock taken
2545 * during reclaim for a GFP_FS allocation is held over a GFP_FS
2546 * allocation).
2547 */
2548 if (!hlock->trylock && (curr->lockdep_reclaim_gfp & __GFP_FS)) {
2549 if (hlock->read) {
2550 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS_READ))
2551 return 0;
2552 } else {
2553 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS))
2554 return 0;
2555 }
2556 }
2557
Peter Zijlstra8e182572007-07-19 01:48:54 -07002558 return 1;
2559}
2560
2561static int separate_irq_context(struct task_struct *curr,
2562 struct held_lock *hlock)
2563{
2564 unsigned int depth = curr->lockdep_depth;
2565
2566 /*
2567 * Keep track of points where we cross into an interrupt context:
2568 */
2569 hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2570 curr->softirq_context;
2571 if (depth) {
2572 struct held_lock *prev_hlock;
2573
2574 prev_hlock = curr->held_locks + depth-1;
2575 /*
2576 * If we cross into another context, reset the
2577 * hash key (this also prevents the checking and the
2578 * adding of the dependency to 'prev'):
2579 */
2580 if (prev_hlock->irq_context != hlock->irq_context)
2581 return 1;
2582 }
2583 return 0;
2584}
2585
2586#else
2587
2588static inline
2589int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2590 enum lock_usage_bit new_bit)
2591{
2592 WARN_ON(1);
2593 return 1;
2594}
2595
2596static inline int mark_irqflags(struct task_struct *curr,
2597 struct held_lock *hlock)
2598{
2599 return 1;
2600}
2601
2602static inline int separate_irq_context(struct task_struct *curr,
2603 struct held_lock *hlock)
2604{
2605 return 0;
2606}
2607
Peter Zijlstra868a23a2009-02-15 00:25:21 +01002608void lockdep_trace_alloc(gfp_t gfp_mask)
2609{
2610}
2611
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002612#endif
2613
2614/*
Peter Zijlstra8e182572007-07-19 01:48:54 -07002615 * Mark a lock with a usage bit, and validate the state transition:
2616 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002617static int mark_lock(struct task_struct *curr, struct held_lock *this,
Steven Rostedt0764d232008-05-12 21:20:44 +02002618 enum lock_usage_bit new_bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07002619{
2620 unsigned int new_mask = 1 << new_bit, ret = 1;
2621
2622 /*
2623 * If already set then do not dirty the cacheline,
2624 * nor do any checks:
2625 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002626 if (likely(hlock_class(this)->usage_mask & new_mask))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002627 return 1;
2628
2629 if (!graph_lock())
2630 return 0;
2631 /*
2632 * Make sure we didnt race:
2633 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002634 if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07002635 graph_unlock();
2636 return 1;
2637 }
2638
Dave Jonesf82b2172008-08-11 09:30:23 +02002639 hlock_class(this)->usage_mask |= new_mask;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002640
Dave Jonesf82b2172008-08-11 09:30:23 +02002641 if (!save_trace(hlock_class(this)->usage_traces + new_bit))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002642 return 0;
2643
2644 switch (new_bit) {
Peter Zijlstra53464172009-01-22 14:15:53 +01002645#define LOCKDEP_STATE(__STATE) \
2646 case LOCK_USED_IN_##__STATE: \
2647 case LOCK_USED_IN_##__STATE##_READ: \
2648 case LOCK_ENABLED_##__STATE: \
2649 case LOCK_ENABLED_##__STATE##_READ:
2650#include "lockdep_states.h"
2651#undef LOCKDEP_STATE
Peter Zijlstra8e182572007-07-19 01:48:54 -07002652 ret = mark_lock_irq(curr, this, new_bit);
2653 if (!ret)
2654 return 0;
2655 break;
2656 case LOCK_USED:
Peter Zijlstra8e182572007-07-19 01:48:54 -07002657 debug_atomic_dec(&nr_unused_locks);
2658 break;
2659 default:
2660 if (!debug_locks_off_graph_unlock())
2661 return 0;
2662 WARN_ON(1);
2663 return 0;
2664 }
2665
2666 graph_unlock();
2667
2668 /*
2669 * We must printk outside of the graph_lock:
2670 */
2671 if (ret == 2) {
2672 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2673 print_lock(this);
2674 print_irqtrace_events(curr);
2675 dump_stack();
2676 }
2677
2678 return ret;
2679}
2680
2681/*
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002682 * Initialize a lock instance's lock-class mapping info:
2683 */
2684void lockdep_init_map(struct lockdep_map *lock, const char *name,
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002685 struct lock_class_key *key, int subclass)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002686{
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002687 lock->class_cache = NULL;
2688#ifdef CONFIG_LOCK_STAT
2689 lock->cpu = raw_smp_processor_id();
2690#endif
2691
2692 if (DEBUG_LOCKS_WARN_ON(!name)) {
2693 lock->name = "NULL";
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002694 return;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002695 }
2696
2697 lock->name = name;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002698
2699 if (DEBUG_LOCKS_WARN_ON(!key))
2700 return;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002701 /*
2702 * Sanity check, the lock-class key must be persistent:
2703 */
2704 if (!static_obj(key)) {
2705 printk("BUG: key %p not in .data!\n", key);
2706 DEBUG_LOCKS_WARN_ON(1);
2707 return;
2708 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002709 lock->key = key;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002710
2711 if (unlikely(!debug_locks))
2712 return;
2713
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002714 if (subclass)
2715 register_lock_class(lock, subclass, 1);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002716}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002717EXPORT_SYMBOL_GPL(lockdep_init_map);
2718
2719/*
2720 * This gets called for every mutex_lock*()/spin_lock*() operation.
2721 * We maintain the dependency maps and validate the locking attempt:
2722 */
2723static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2724 int trylock, int read, int check, int hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002725 struct lockdep_map *nest_lock, unsigned long ip,
2726 int references)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002727{
2728 struct task_struct *curr = current;
Ingo Molnard6d897c2006-07-10 04:44:04 -07002729 struct lock_class *class = NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002730 struct held_lock *hlock;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002731 unsigned int depth, id;
2732 int chain_head = 0;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002733 int class_idx;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002734 u64 chain_key;
2735
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002736 if (!prove_locking)
2737 check = 1;
2738
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002739 if (unlikely(!debug_locks))
2740 return 0;
2741
2742 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2743 return 0;
2744
2745 if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2746 debug_locks_off();
2747 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2748 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002749 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002750 return 0;
2751 }
2752
Ingo Molnard6d897c2006-07-10 04:44:04 -07002753 if (!subclass)
2754 class = lock->class_cache;
2755 /*
2756 * Not cached yet or subclass?
2757 */
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002758 if (unlikely(!class)) {
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002759 class = register_lock_class(lock, subclass, 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002760 if (!class)
2761 return 0;
2762 }
2763 debug_atomic_inc((atomic_t *)&class->ops);
2764 if (very_verbose(class)) {
2765 printk("\nacquire class [%p] %s", class->key, class->name);
2766 if (class->name_version > 1)
2767 printk("#%d", class->name_version);
2768 printk("\n");
2769 dump_stack();
2770 }
2771
2772 /*
2773 * Add the lock to the list of currently held locks.
2774 * (we dont increase the depth just yet, up until the
2775 * dependency checks are done)
2776 */
2777 depth = curr->lockdep_depth;
2778 if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2779 return 0;
2780
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002781 class_idx = class - lock_classes + 1;
2782
2783 if (depth) {
2784 hlock = curr->held_locks + depth - 1;
2785 if (hlock->class_idx == class_idx && nest_lock) {
2786 if (hlock->references)
2787 hlock->references++;
2788 else
2789 hlock->references = 2;
2790
2791 return 1;
2792 }
2793 }
2794
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002795 hlock = curr->held_locks + depth;
Dave Jonesf82b2172008-08-11 09:30:23 +02002796 if (DEBUG_LOCKS_WARN_ON(!class))
2797 return 0;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002798 hlock->class_idx = class_idx;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002799 hlock->acquire_ip = ip;
2800 hlock->instance = lock;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002801 hlock->nest_lock = nest_lock;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002802 hlock->trylock = trylock;
2803 hlock->read = read;
2804 hlock->check = check;
Dmitry Baryshkov6951b122008-08-18 04:26:37 +04002805 hlock->hardirqs_off = !!hardirqs_off;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002806 hlock->references = references;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002807#ifdef CONFIG_LOCK_STAT
2808 hlock->waittime_stamp = 0;
Peter Zijlstra3365e7792009-10-09 10:12:41 +02002809 hlock->holdtime_stamp = lockstat_clock();
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002810#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002811
Peter Zijlstra8e182572007-07-19 01:48:54 -07002812 if (check == 2 && !mark_irqflags(curr, hlock))
2813 return 0;
2814
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002815 /* mark it as used: */
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002816 if (!mark_lock(curr, hlock, LOCK_USED))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002817 return 0;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002818
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002819 /*
Gautham R Shenoy17aacfb2007-10-28 20:47:01 +01002820 * Calculate the chain hash: it's the combined hash of all the
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002821 * lock keys along the dependency chain. We save the hash value
2822 * at every step so that we can get the current hash easily
2823 * after unlock. The chain hash is then used to cache dependency
2824 * results.
2825 *
2826 * The 'key ID' is what is the most compact key value to drive
2827 * the hash, not class->key.
2828 */
2829 id = class - lock_classes;
2830 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2831 return 0;
2832
2833 chain_key = curr->curr_chain_key;
2834 if (!depth) {
2835 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2836 return 0;
2837 chain_head = 1;
2838 }
2839
2840 hlock->prev_chain_key = chain_key;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002841 if (separate_irq_context(curr, hlock)) {
2842 chain_key = 0;
2843 chain_head = 1;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002844 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002845 chain_key = iterate_chain_key(chain_key, id);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002846
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002847 if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002848 return 0;
Jarek Poplawski381a2292007-02-10 01:44:58 -08002849
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002850 curr->curr_chain_key = chain_key;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002851 curr->lockdep_depth++;
2852 check_chain_key(curr);
Jarek Poplawski60e114d2007-02-20 13:58:00 -08002853#ifdef CONFIG_DEBUG_LOCKDEP
2854 if (unlikely(!debug_locks))
2855 return 0;
2856#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002857 if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2858 debug_locks_off();
2859 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2860 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002861 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002862 return 0;
2863 }
Jarek Poplawski381a2292007-02-10 01:44:58 -08002864
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002865 if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2866 max_lockdep_depth = curr->lockdep_depth;
2867
2868 return 1;
2869}
2870
2871static int
2872print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2873 unsigned long ip)
2874{
2875 if (!debug_locks_off())
2876 return 0;
2877 if (debug_locks_silent)
2878 return 0;
2879
2880 printk("\n=====================================\n");
2881 printk( "[ BUG: bad unlock balance detected! ]\n");
2882 printk( "-------------------------------------\n");
2883 printk("%s/%d is trying to release lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002884 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002885 print_lockdep_cache(lock);
2886 printk(") at:\n");
2887 print_ip_sym(ip);
2888 printk("but there are no more locks to release!\n");
2889 printk("\nother info that might help us debug this:\n");
2890 lockdep_print_held_locks(curr);
2891
2892 printk("\nstack backtrace:\n");
2893 dump_stack();
2894
2895 return 0;
2896}
2897
2898/*
2899 * Common debugging checks for both nested and non-nested unlock:
2900 */
2901static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2902 unsigned long ip)
2903{
2904 if (unlikely(!debug_locks))
2905 return 0;
2906 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2907 return 0;
2908
2909 if (curr->lockdep_depth <= 0)
2910 return print_unlock_inbalance_bug(curr, lock, ip);
2911
2912 return 1;
2913}
2914
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002915static int match_held_lock(struct held_lock *hlock, struct lockdep_map *lock)
2916{
2917 if (hlock->instance == lock)
2918 return 1;
2919
2920 if (hlock->references) {
2921 struct lock_class *class = lock->class_cache;
2922
2923 if (!class)
2924 class = look_up_lock_class(lock, 0);
2925
2926 if (DEBUG_LOCKS_WARN_ON(!class))
2927 return 0;
2928
2929 if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock))
2930 return 0;
2931
2932 if (hlock->class_idx == class - lock_classes + 1)
2933 return 1;
2934 }
2935
2936 return 0;
2937}
2938
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002939static int
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002940__lock_set_class(struct lockdep_map *lock, const char *name,
2941 struct lock_class_key *key, unsigned int subclass,
2942 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002943{
2944 struct task_struct *curr = current;
2945 struct held_lock *hlock, *prev_hlock;
2946 struct lock_class *class;
2947 unsigned int depth;
2948 int i;
2949
2950 depth = curr->lockdep_depth;
2951 if (DEBUG_LOCKS_WARN_ON(!depth))
2952 return 0;
2953
2954 prev_hlock = NULL;
2955 for (i = depth-1; i >= 0; i--) {
2956 hlock = curr->held_locks + i;
2957 /*
2958 * We must not cross into another context:
2959 */
2960 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2961 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002962 if (match_held_lock(hlock, lock))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002963 goto found_it;
2964 prev_hlock = hlock;
2965 }
2966 return print_unlock_inbalance_bug(curr, lock, ip);
2967
2968found_it:
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002969 lockdep_init_map(lock, name, key, 0);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002970 class = register_lock_class(lock, subclass, 0);
Dave Jonesf82b2172008-08-11 09:30:23 +02002971 hlock->class_idx = class - lock_classes + 1;
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002972
2973 curr->lockdep_depth = i;
2974 curr->curr_chain_key = hlock->prev_chain_key;
2975
2976 for (; i < depth; i++) {
2977 hlock = curr->held_locks + i;
2978 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02002979 hlock_class(hlock)->subclass, hlock->trylock,
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002980 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002981 hlock->nest_lock, hlock->acquire_ip,
2982 hlock->references))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002983 return 0;
2984 }
2985
2986 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
2987 return 0;
2988 return 1;
2989}
2990
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002991/*
2992 * Remove the lock to the list of currently held locks in a
2993 * potentially non-nested (out of order) manner. This is a
2994 * relatively rare operation, as all the unlock APIs default
2995 * to nested mode (which uses lock_release()):
2996 */
2997static int
2998lock_release_non_nested(struct task_struct *curr,
2999 struct lockdep_map *lock, unsigned long ip)
3000{
3001 struct held_lock *hlock, *prev_hlock;
3002 unsigned int depth;
3003 int i;
3004
3005 /*
3006 * Check whether the lock exists in the current stack
3007 * of held locks:
3008 */
3009 depth = curr->lockdep_depth;
3010 if (DEBUG_LOCKS_WARN_ON(!depth))
3011 return 0;
3012
3013 prev_hlock = NULL;
3014 for (i = depth-1; i >= 0; i--) {
3015 hlock = curr->held_locks + i;
3016 /*
3017 * We must not cross into another context:
3018 */
3019 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3020 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003021 if (match_held_lock(hlock, lock))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003022 goto found_it;
3023 prev_hlock = hlock;
3024 }
3025 return print_unlock_inbalance_bug(curr, lock, ip);
3026
3027found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003028 if (hlock->instance == lock)
3029 lock_release_holdtime(hlock);
3030
3031 if (hlock->references) {
3032 hlock->references--;
3033 if (hlock->references) {
3034 /*
3035 * We had, and after removing one, still have
3036 * references, the current lock stack is still
3037 * valid. We're done!
3038 */
3039 return 1;
3040 }
3041 }
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003042
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003043 /*
3044 * We have the right lock to unlock, 'hlock' points to it.
3045 * Now we remove it from the stack, and add back the other
3046 * entries (if any), recalculating the hash along the way:
3047 */
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003048
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003049 curr->lockdep_depth = i;
3050 curr->curr_chain_key = hlock->prev_chain_key;
3051
3052 for (i++; i < depth; i++) {
3053 hlock = curr->held_locks + i;
3054 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02003055 hlock_class(hlock)->subclass, hlock->trylock,
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003056 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003057 hlock->nest_lock, hlock->acquire_ip,
3058 hlock->references))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003059 return 0;
3060 }
3061
3062 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
3063 return 0;
3064 return 1;
3065}
3066
3067/*
3068 * Remove the lock to the list of currently held locks - this gets
3069 * called on mutex_unlock()/spin_unlock*() (or on a failed
3070 * mutex_lock_interruptible()). This is done for unlocks that nest
3071 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3072 */
3073static int lock_release_nested(struct task_struct *curr,
3074 struct lockdep_map *lock, unsigned long ip)
3075{
3076 struct held_lock *hlock;
3077 unsigned int depth;
3078
3079 /*
3080 * Pop off the top of the lock stack:
3081 */
3082 depth = curr->lockdep_depth - 1;
3083 hlock = curr->held_locks + depth;
3084
3085 /*
3086 * Is the unlock non-nested:
3087 */
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003088 if (hlock->instance != lock || hlock->references)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003089 return lock_release_non_nested(curr, lock, ip);
3090 curr->lockdep_depth--;
3091
3092 if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
3093 return 0;
3094
3095 curr->curr_chain_key = hlock->prev_chain_key;
3096
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003097 lock_release_holdtime(hlock);
3098
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003099#ifdef CONFIG_DEBUG_LOCKDEP
3100 hlock->prev_chain_key = 0;
Dave Jonesf82b2172008-08-11 09:30:23 +02003101 hlock->class_idx = 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003102 hlock->acquire_ip = 0;
3103 hlock->irq_context = 0;
3104#endif
3105 return 1;
3106}
3107
3108/*
3109 * Remove the lock to the list of currently held locks - this gets
3110 * called on mutex_unlock()/spin_unlock*() (or on a failed
3111 * mutex_lock_interruptible()). This is done for unlocks that nest
3112 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3113 */
3114static void
3115__lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
3116{
3117 struct task_struct *curr = current;
3118
3119 if (!check_unlock(curr, lock, ip))
3120 return;
3121
3122 if (nested) {
3123 if (!lock_release_nested(curr, lock, ip))
3124 return;
3125 } else {
3126 if (!lock_release_non_nested(curr, lock, ip))
3127 return;
3128 }
3129
3130 check_chain_key(curr);
3131}
3132
Peter Zijlstraf607c662009-07-20 19:16:29 +02003133static int __lock_is_held(struct lockdep_map *lock)
3134{
3135 struct task_struct *curr = current;
3136 int i;
3137
3138 for (i = 0; i < curr->lockdep_depth; i++) {
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003139 struct held_lock *hlock = curr->held_locks + i;
3140
3141 if (match_held_lock(hlock, lock))
Peter Zijlstraf607c662009-07-20 19:16:29 +02003142 return 1;
3143 }
3144
3145 return 0;
3146}
3147
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003148/*
3149 * Check whether we follow the irq-flags state precisely:
3150 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003151static void check_flags(unsigned long flags)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003152{
Ingo Molnar992860e2008-07-14 10:28:38 +02003153#if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3154 defined(CONFIG_TRACE_IRQFLAGS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003155 if (!debug_locks)
3156 return;
3157
Ingo Molnar5f9fa8a2007-12-07 19:02:47 +01003158 if (irqs_disabled_flags(flags)) {
3159 if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3160 printk("possible reason: unannotated irqs-off.\n");
3161 }
3162 } else {
3163 if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3164 printk("possible reason: unannotated irqs-on.\n");
3165 }
3166 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003167
3168 /*
3169 * We dont accurately track softirq state in e.g.
3170 * hardirq contexts (such as on 4KSTACKS), so only
3171 * check if not in hardirq contexts:
3172 */
3173 if (!hardirq_count()) {
3174 if (softirq_count())
3175 DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3176 else
3177 DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3178 }
3179
3180 if (!debug_locks)
3181 print_irqtrace_events(current);
3182#endif
3183}
3184
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003185void lock_set_class(struct lockdep_map *lock, const char *name,
3186 struct lock_class_key *key, unsigned int subclass,
3187 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003188{
3189 unsigned long flags;
3190
3191 if (unlikely(current->lockdep_recursion))
3192 return;
3193
3194 raw_local_irq_save(flags);
3195 current->lockdep_recursion = 1;
3196 check_flags(flags);
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003197 if (__lock_set_class(lock, name, key, subclass, ip))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003198 check_chain_key(current);
3199 current->lockdep_recursion = 0;
3200 raw_local_irq_restore(flags);
3201}
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003202EXPORT_SYMBOL_GPL(lock_set_class);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003203
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003204/*
3205 * We are not always called with irqs disabled - do that here,
3206 * and also avoid lockdep recursion:
3207 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003208void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02003209 int trylock, int read, int check,
3210 struct lockdep_map *nest_lock, unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003211{
3212 unsigned long flags;
3213
3214 if (unlikely(current->lockdep_recursion))
3215 return;
3216
3217 raw_local_irq_save(flags);
3218 check_flags(flags);
3219
3220 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003221 trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003222 __lock_acquire(lock, subclass, trylock, read, check,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003223 irqs_disabled_flags(flags), nest_lock, ip, 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003224 current->lockdep_recursion = 0;
3225 raw_local_irq_restore(flags);
3226}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003227EXPORT_SYMBOL_GPL(lock_acquire);
3228
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003229void lock_release(struct lockdep_map *lock, int nested,
Steven Rostedt0764d232008-05-12 21:20:44 +02003230 unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003231{
3232 unsigned long flags;
3233
3234 if (unlikely(current->lockdep_recursion))
3235 return;
3236
3237 raw_local_irq_save(flags);
3238 check_flags(flags);
3239 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003240 trace_lock_release(lock, nested, ip);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003241 __lock_release(lock, nested, ip);
3242 current->lockdep_recursion = 0;
3243 raw_local_irq_restore(flags);
3244}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003245EXPORT_SYMBOL_GPL(lock_release);
3246
Peter Zijlstraf607c662009-07-20 19:16:29 +02003247int lock_is_held(struct lockdep_map *lock)
3248{
3249 unsigned long flags;
3250 int ret = 0;
3251
3252 if (unlikely(current->lockdep_recursion))
3253 return ret;
3254
3255 raw_local_irq_save(flags);
3256 check_flags(flags);
3257
3258 current->lockdep_recursion = 1;
3259 ret = __lock_is_held(lock);
3260 current->lockdep_recursion = 0;
3261 raw_local_irq_restore(flags);
3262
3263 return ret;
3264}
3265EXPORT_SYMBOL_GPL(lock_is_held);
3266
Nick Piggincf40bd12009-01-21 08:12:39 +01003267void lockdep_set_current_reclaim_state(gfp_t gfp_mask)
3268{
3269 current->lockdep_reclaim_gfp = gfp_mask;
3270}
3271
3272void lockdep_clear_current_reclaim_state(void)
3273{
3274 current->lockdep_reclaim_gfp = 0;
3275}
3276
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003277#ifdef CONFIG_LOCK_STAT
3278static int
3279print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
3280 unsigned long ip)
3281{
3282 if (!debug_locks_off())
3283 return 0;
3284 if (debug_locks_silent)
3285 return 0;
3286
3287 printk("\n=================================\n");
3288 printk( "[ BUG: bad contention detected! ]\n");
3289 printk( "---------------------------------\n");
3290 printk("%s/%d is trying to contend lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003291 curr->comm, task_pid_nr(curr));
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003292 print_lockdep_cache(lock);
3293 printk(") at:\n");
3294 print_ip_sym(ip);
3295 printk("but there are no locks held!\n");
3296 printk("\nother info that might help us debug this:\n");
3297 lockdep_print_held_locks(curr);
3298
3299 printk("\nstack backtrace:\n");
3300 dump_stack();
3301
3302 return 0;
3303}
3304
3305static void
3306__lock_contended(struct lockdep_map *lock, unsigned long ip)
3307{
3308 struct task_struct *curr = current;
3309 struct held_lock *hlock, *prev_hlock;
3310 struct lock_class_stats *stats;
3311 unsigned int depth;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003312 int i, contention_point, contending_point;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003313
3314 depth = curr->lockdep_depth;
3315 if (DEBUG_LOCKS_WARN_ON(!depth))
3316 return;
3317
3318 prev_hlock = NULL;
3319 for (i = depth-1; i >= 0; i--) {
3320 hlock = curr->held_locks + i;
3321 /*
3322 * We must not cross into another context:
3323 */
3324 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3325 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003326 if (match_held_lock(hlock, lock))
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003327 goto found_it;
3328 prev_hlock = hlock;
3329 }
3330 print_lock_contention_bug(curr, lock, ip);
3331 return;
3332
3333found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003334 if (hlock->instance != lock)
3335 return;
3336
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003337 hlock->waittime_stamp = lockstat_clock();
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003338
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003339 contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
3340 contending_point = lock_point(hlock_class(hlock)->contending_point,
3341 lock->ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003342
Dave Jonesf82b2172008-08-11 09:30:23 +02003343 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003344 if (contention_point < LOCKSTAT_POINTS)
3345 stats->contention_point[contention_point]++;
3346 if (contending_point < LOCKSTAT_POINTS)
3347 stats->contending_point[contending_point]++;
Peter Zijlstra96645672007-07-19 01:49:00 -07003348 if (lock->cpu != smp_processor_id())
3349 stats->bounces[bounce_contended + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003350 put_lock_stats(stats);
3351}
3352
3353static void
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003354__lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003355{
3356 struct task_struct *curr = current;
3357 struct held_lock *hlock, *prev_hlock;
3358 struct lock_class_stats *stats;
3359 unsigned int depth;
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003360 u64 now, waittime = 0;
Peter Zijlstra96645672007-07-19 01:49:00 -07003361 int i, cpu;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003362
3363 depth = curr->lockdep_depth;
3364 if (DEBUG_LOCKS_WARN_ON(!depth))
3365 return;
3366
3367 prev_hlock = NULL;
3368 for (i = depth-1; i >= 0; i--) {
3369 hlock = curr->held_locks + i;
3370 /*
3371 * We must not cross into another context:
3372 */
3373 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3374 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003375 if (match_held_lock(hlock, lock))
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003376 goto found_it;
3377 prev_hlock = hlock;
3378 }
3379 print_lock_contention_bug(curr, lock, _RET_IP_);
3380 return;
3381
3382found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003383 if (hlock->instance != lock)
3384 return;
3385
Peter Zijlstra96645672007-07-19 01:49:00 -07003386 cpu = smp_processor_id();
3387 if (hlock->waittime_stamp) {
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003388 now = lockstat_clock();
Peter Zijlstra96645672007-07-19 01:49:00 -07003389 waittime = now - hlock->waittime_stamp;
3390 hlock->holdtime_stamp = now;
3391 }
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003392
Frederic Weisbecker20625012009-04-06 01:49:33 +02003393 trace_lock_acquired(lock, ip, waittime);
3394
Dave Jonesf82b2172008-08-11 09:30:23 +02003395 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstra96645672007-07-19 01:49:00 -07003396 if (waittime) {
3397 if (hlock->read)
3398 lock_time_inc(&stats->read_waittime, waittime);
3399 else
3400 lock_time_inc(&stats->write_waittime, waittime);
3401 }
3402 if (lock->cpu != cpu)
3403 stats->bounces[bounce_acquired + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003404 put_lock_stats(stats);
Peter Zijlstra96645672007-07-19 01:49:00 -07003405
3406 lock->cpu = cpu;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003407 lock->ip = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003408}
3409
3410void lock_contended(struct lockdep_map *lock, unsigned long ip)
3411{
3412 unsigned long flags;
3413
3414 if (unlikely(!lock_stat))
3415 return;
3416
3417 if (unlikely(current->lockdep_recursion))
3418 return;
3419
3420 raw_local_irq_save(flags);
3421 check_flags(flags);
3422 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003423 trace_lock_contended(lock, ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003424 __lock_contended(lock, ip);
3425 current->lockdep_recursion = 0;
3426 raw_local_irq_restore(flags);
3427}
3428EXPORT_SYMBOL_GPL(lock_contended);
3429
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003430void lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003431{
3432 unsigned long flags;
3433
3434 if (unlikely(!lock_stat))
3435 return;
3436
3437 if (unlikely(current->lockdep_recursion))
3438 return;
3439
3440 raw_local_irq_save(flags);
3441 check_flags(flags);
3442 current->lockdep_recursion = 1;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003443 __lock_acquired(lock, ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003444 current->lockdep_recursion = 0;
3445 raw_local_irq_restore(flags);
3446}
3447EXPORT_SYMBOL_GPL(lock_acquired);
3448#endif
3449
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003450/*
3451 * Used by the testsuite, sanitize the validator state
3452 * after a simulated failure:
3453 */
3454
3455void lockdep_reset(void)
3456{
3457 unsigned long flags;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003458 int i;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003459
3460 raw_local_irq_save(flags);
3461 current->curr_chain_key = 0;
3462 current->lockdep_depth = 0;
3463 current->lockdep_recursion = 0;
3464 memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
3465 nr_hardirq_chains = 0;
3466 nr_softirq_chains = 0;
3467 nr_process_chains = 0;
3468 debug_locks = 1;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003469 for (i = 0; i < CHAINHASH_SIZE; i++)
3470 INIT_LIST_HEAD(chainhash_table + i);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003471 raw_local_irq_restore(flags);
3472}
3473
3474static void zap_class(struct lock_class *class)
3475{
3476 int i;
3477
3478 /*
3479 * Remove all dependencies this lock is
3480 * involved in:
3481 */
3482 for (i = 0; i < nr_list_entries; i++) {
3483 if (list_entries[i].class == class)
3484 list_del_rcu(&list_entries[i].entry);
3485 }
3486 /*
3487 * Unhash the class and remove it from the all_lock_classes list:
3488 */
3489 list_del_rcu(&class->hash_entry);
3490 list_del_rcu(&class->lock_entry);
3491
Rabin Vincent8bfe0292008-08-11 09:30:26 +02003492 class->key = NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003493}
3494
Arjan van de Venfabe8742008-01-24 07:00:45 +01003495static inline int within(const void *addr, void *start, unsigned long size)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003496{
3497 return addr >= start && addr < start + size;
3498}
3499
3500void lockdep_free_key_range(void *start, unsigned long size)
3501{
3502 struct lock_class *class, *next;
3503 struct list_head *head;
3504 unsigned long flags;
3505 int i;
Nick Piggin5a26db52008-01-16 09:51:58 +01003506 int locked;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003507
3508 raw_local_irq_save(flags);
Nick Piggin5a26db52008-01-16 09:51:58 +01003509 locked = graph_lock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003510
3511 /*
3512 * Unhash all classes that were created by this module:
3513 */
3514 for (i = 0; i < CLASSHASH_SIZE; i++) {
3515 head = classhash_table + i;
3516 if (list_empty(head))
3517 continue;
Arjan van de Venfabe8742008-01-24 07:00:45 +01003518 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003519 if (within(class->key, start, size))
3520 zap_class(class);
Arjan van de Venfabe8742008-01-24 07:00:45 +01003521 else if (within(class->name, start, size))
3522 zap_class(class);
3523 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003524 }
3525
Nick Piggin5a26db52008-01-16 09:51:58 +01003526 if (locked)
3527 graph_unlock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003528 raw_local_irq_restore(flags);
3529}
3530
3531void lockdep_reset_lock(struct lockdep_map *lock)
3532{
Ingo Molnard6d897c2006-07-10 04:44:04 -07003533 struct lock_class *class, *next;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003534 struct list_head *head;
3535 unsigned long flags;
3536 int i, j;
Nick Piggin5a26db52008-01-16 09:51:58 +01003537 int locked;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003538
3539 raw_local_irq_save(flags);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003540
3541 /*
Ingo Molnard6d897c2006-07-10 04:44:04 -07003542 * Remove all classes this lock might have:
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003543 */
Ingo Molnard6d897c2006-07-10 04:44:04 -07003544 for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
3545 /*
3546 * If the class exists we look it up and zap it:
3547 */
3548 class = look_up_lock_class(lock, j);
3549 if (class)
3550 zap_class(class);
3551 }
3552 /*
3553 * Debug check: in the end all mapped classes should
3554 * be gone.
3555 */
Nick Piggin5a26db52008-01-16 09:51:58 +01003556 locked = graph_lock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003557 for (i = 0; i < CLASSHASH_SIZE; i++) {
3558 head = classhash_table + i;
3559 if (list_empty(head))
3560 continue;
3561 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnard6d897c2006-07-10 04:44:04 -07003562 if (unlikely(class == lock->class_cache)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08003563 if (debug_locks_off_graph_unlock())
3564 WARN_ON(1);
Ingo Molnard6d897c2006-07-10 04:44:04 -07003565 goto out_restore;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003566 }
3567 }
3568 }
Nick Piggin5a26db52008-01-16 09:51:58 +01003569 if (locked)
3570 graph_unlock();
Ingo Molnard6d897c2006-07-10 04:44:04 -07003571
3572out_restore:
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003573 raw_local_irq_restore(flags);
3574}
3575
Sam Ravnborg14999932007-02-28 20:12:31 -08003576void lockdep_init(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003577{
3578 int i;
3579
3580 /*
3581 * Some architectures have their own start_kernel()
3582 * code which calls lockdep_init(), while we also
3583 * call lockdep_init() from the start_kernel() itself,
3584 * and we want to initialize the hashes only once:
3585 */
3586 if (lockdep_initialized)
3587 return;
3588
3589 for (i = 0; i < CLASSHASH_SIZE; i++)
3590 INIT_LIST_HEAD(classhash_table + i);
3591
3592 for (i = 0; i < CHAINHASH_SIZE; i++)
3593 INIT_LIST_HEAD(chainhash_table + i);
3594
3595 lockdep_initialized = 1;
3596}
3597
3598void __init lockdep_info(void)
3599{
3600 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3601
Li Zefanb0788ca2008-11-21 15:57:32 +08003602 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003603 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH);
3604 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS);
Li Zefanb0788ca2008-11-21 15:57:32 +08003605 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003606 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES);
3607 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS);
3608 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE);
3609
3610 printk(" memory used by lock dependency info: %lu kB\n",
3611 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3612 sizeof(struct list_head) * CLASSHASH_SIZE +
3613 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3614 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
Ming Lei90629202009-08-02 21:43:36 +08003615 sizeof(struct list_head) * CHAINHASH_SIZE
Ming Lei4dd861d2009-07-16 15:44:29 +02003616#ifdef CONFIG_PROVE_LOCKING
Ming Leie351b662009-07-22 22:48:09 +08003617 + sizeof(struct circular_queue)
Ming Lei4dd861d2009-07-16 15:44:29 +02003618#endif
Ming Lei90629202009-08-02 21:43:36 +08003619 ) / 1024
Ming Lei4dd861d2009-07-16 15:44:29 +02003620 );
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003621
3622 printk(" per task-struct memory footprint: %lu bytes\n",
3623 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3624
3625#ifdef CONFIG_DEBUG_LOCKDEP
Johannes Bergc71063c2007-07-19 01:49:02 -07003626 if (lockdep_init_error) {
3627 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3628 printk("Call stack leading to lockdep invocation was:\n");
3629 print_stack_trace(&lockdep_init_trace, 0);
3630 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003631#endif
3632}
3633
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003634static void
3635print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
Arjan van de Ven55794a42006-07-10 04:44:03 -07003636 const void *mem_to, struct held_lock *hlock)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003637{
3638 if (!debug_locks_off())
3639 return;
3640 if (debug_locks_silent)
3641 return;
3642
3643 printk("\n=========================\n");
3644 printk( "[ BUG: held lock freed! ]\n");
3645 printk( "-------------------------\n");
3646 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003647 curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
Arjan van de Ven55794a42006-07-10 04:44:03 -07003648 print_lock(hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003649 lockdep_print_held_locks(curr);
3650
3651 printk("\nstack backtrace:\n");
3652 dump_stack();
3653}
3654
Oleg Nesterov54561782007-12-05 15:46:09 +01003655static inline int not_in_range(const void* mem_from, unsigned long mem_len,
3656 const void* lock_from, unsigned long lock_len)
3657{
3658 return lock_from + lock_len <= mem_from ||
3659 mem_from + mem_len <= lock_from;
3660}
3661
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003662/*
3663 * Called when kernel memory is freed (or unmapped), or if a lock
3664 * is destroyed or reinitialized - this code checks whether there is
3665 * any held lock in the memory range of <from> to <to>:
3666 */
3667void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3668{
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003669 struct task_struct *curr = current;
3670 struct held_lock *hlock;
3671 unsigned long flags;
3672 int i;
3673
3674 if (unlikely(!debug_locks))
3675 return;
3676
3677 local_irq_save(flags);
3678 for (i = 0; i < curr->lockdep_depth; i++) {
3679 hlock = curr->held_locks + i;
3680
Oleg Nesterov54561782007-12-05 15:46:09 +01003681 if (not_in_range(mem_from, mem_len, hlock->instance,
3682 sizeof(*hlock->instance)))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003683 continue;
3684
Oleg Nesterov54561782007-12-05 15:46:09 +01003685 print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003686 break;
3687 }
3688 local_irq_restore(flags);
3689}
Peter Zijlstraed075362006-12-06 20:35:24 -08003690EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003691
3692static void print_held_locks_bug(struct task_struct *curr)
3693{
3694 if (!debug_locks_off())
3695 return;
3696 if (debug_locks_silent)
3697 return;
3698
3699 printk("\n=====================================\n");
3700 printk( "[ BUG: lock held at task exit time! ]\n");
3701 printk( "-------------------------------------\n");
3702 printk("%s/%d is exiting with locks still held!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003703 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003704 lockdep_print_held_locks(curr);
3705
3706 printk("\nstack backtrace:\n");
3707 dump_stack();
3708}
3709
3710void debug_check_no_locks_held(struct task_struct *task)
3711{
3712 if (unlikely(task->lockdep_depth > 0))
3713 print_held_locks_bug(task);
3714}
3715
3716void debug_show_all_locks(void)
3717{
3718 struct task_struct *g, *p;
3719 int count = 10;
3720 int unlock = 1;
3721
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003722 if (unlikely(!debug_locks)) {
3723 printk("INFO: lockdep is turned off.\n");
3724 return;
3725 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003726 printk("\nShowing all locks held in the system:\n");
3727
3728 /*
3729 * Here we try to get the tasklist_lock as hard as possible,
3730 * if not successful after 2 seconds we ignore it (but keep
3731 * trying). This is to enable a debug printout even if a
3732 * tasklist_lock-holding task deadlocks or crashes.
3733 */
3734retry:
3735 if (!read_trylock(&tasklist_lock)) {
3736 if (count == 10)
3737 printk("hm, tasklist_lock locked, retrying... ");
3738 if (count) {
3739 count--;
3740 printk(" #%d", 10-count);
3741 mdelay(200);
3742 goto retry;
3743 }
3744 printk(" ignoring it.\n");
3745 unlock = 0;
qinghuang feng46fec7a2008-10-28 17:24:28 +08003746 } else {
3747 if (count != 10)
3748 printk(KERN_CONT " locked it.\n");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003749 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003750
3751 do_each_thread(g, p) {
Ingo Molnar85684872007-12-05 15:46:09 +01003752 /*
3753 * It's not reliable to print a task's held locks
3754 * if it's not sleeping (or if it's not the current
3755 * task):
3756 */
3757 if (p->state == TASK_RUNNING && p != current)
3758 continue;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003759 if (p->lockdep_depth)
3760 lockdep_print_held_locks(p);
3761 if (!unlock)
3762 if (read_trylock(&tasklist_lock))
3763 unlock = 1;
3764 } while_each_thread(g, p);
3765
3766 printk("\n");
3767 printk("=============================================\n\n");
3768
3769 if (unlock)
3770 read_unlock(&tasklist_lock);
3771}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003772EXPORT_SYMBOL_GPL(debug_show_all_locks);
3773
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003774/*
3775 * Careful: only use this function if you are sure that
3776 * the task cannot run in parallel!
3777 */
3778void __debug_show_held_locks(struct task_struct *task)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003779{
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003780 if (unlikely(!debug_locks)) {
3781 printk("INFO: lockdep is turned off.\n");
3782 return;
3783 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003784 lockdep_print_held_locks(task);
3785}
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003786EXPORT_SYMBOL_GPL(__debug_show_held_locks);
3787
3788void debug_show_held_locks(struct task_struct *task)
3789{
3790 __debug_show_held_locks(task);
3791}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003792EXPORT_SYMBOL_GPL(debug_show_held_locks);
Peter Zijlstrab351d162007-10-11 22:11:12 +02003793
3794void lockdep_sys_exit(void)
3795{
3796 struct task_struct *curr = current;
3797
3798 if (unlikely(curr->lockdep_depth)) {
3799 if (!debug_locks_off())
3800 return;
3801 printk("\n================================================\n");
3802 printk( "[ BUG: lock held when returning to user space! ]\n");
3803 printk( "------------------------------------------------\n");
3804 printk("%s/%d is leaving the kernel with locks still held!\n",
3805 curr->comm, curr->pid);
3806 lockdep_print_held_locks(curr);
3807 }
3808}
Paul E. McKenney0632eb32010-02-22 17:04:47 -08003809
3810void lockdep_rcu_dereference(const char *file, const int line)
3811{
3812 struct task_struct *curr = current;
3813
3814 if (!debug_locks_off())
3815 return;
Paul E. McKenney056ba4a2010-02-25 14:06:46 -08003816 printk("\n===================================================\n");
3817 printk( "[ INFO: suspicious rcu_dereference_check() usage. ]\n");
3818 printk( "---------------------------------------------------\n");
Paul E. McKenney0632eb32010-02-22 17:04:47 -08003819 printk("%s:%d invoked rcu_dereference_check() without protection!\n",
3820 file, line);
3821 printk("\nother info that might help us debug this:\n\n");
3822 lockdep_print_held_locks(curr);
3823 printk("\nstack backtrace:\n");
3824 dump_stack();
3825}
3826EXPORT_SYMBOL_GPL(lockdep_rcu_dereference);