blob: 78325f8f1139eb038189e8978944b4d874e667c8 [file] [log] [blame]
Ingo Molnarfbb9ce92006-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 Molnarfbb9ce92006-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 Molnarfbb9ce92006-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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/gfp.h>
Peter Zijlstraaf012962009-07-16 15:44:29 +020047
Ingo Molnarfbb9ce92006-07-03 00:24:50 -070048#include <asm/sections.h>
49
50#include "lockdep_internals.h"
51
Steven Rostedta8d154b2009-04-10 09:36:00 -040052#define CREATE_TRACE_POINTS
Frederic Weisbecker67178762009-11-13 10:06:34 +010053#include <trace/events/lock.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040054
Peter Zijlstraf20786f2007-07-19 01:48:56 -070055#ifdef CONFIG_PROVE_LOCKING
56int prove_locking = 1;
57module_param(prove_locking, int, 0644);
58#else
59#define prove_locking 0
60#endif
61
62#ifdef CONFIG_LOCK_STAT
63int lock_stat = 1;
64module_param(lock_stat, int, 0644);
65#else
66#define lock_stat 0
67#endif
68
Ingo Molnarfbb9ce92006-07-03 00:24:50 -070069/*
Ingo Molnar74c383f2006-12-13 00:34:43 -080070 * lockdep_lock: protects the lockdep graph, the hashes and the
71 * class/list/hash allocators.
Ingo Molnarfbb9ce92006-07-03 00:24:50 -070072 *
73 * This is one of the rare exceptions where it's justified
74 * to use a raw spinlock - we really dont want the spinlock
Ingo Molnar74c383f2006-12-13 00:34:43 -080075 * code to recurse back into the lockdep code...
Ingo Molnarfbb9ce92006-07-03 00:24:50 -070076 */
Thomas Gleixneredc35bd2009-12-03 12:38:57 +010077static arch_spinlock_t lockdep_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED;
Ingo Molnar74c383f2006-12-13 00:34:43 -080078
79static int graph_lock(void)
80{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010081 arch_spin_lock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -080082 /*
83 * Make sure that if another CPU detected a bug while
84 * walking the graph we dont change it (while the other
85 * CPU is busy printing out stuff with the graph lock
86 * dropped already)
87 */
88 if (!debug_locks) {
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010089 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -080090 return 0;
91 }
Steven Rostedtbb065af2008-05-12 21:21:00 +020092 /* prevent any recursions within lockdep from causing deadlocks */
93 current->lockdep_recursion++;
Ingo Molnar74c383f2006-12-13 00:34:43 -080094 return 1;
95}
96
97static inline int graph_unlock(void)
98{
Thomas Gleixner0199c4e2009-12-02 20:01:25 +010099 if (debug_locks && !arch_spin_is_locked(&lockdep_lock))
Jarek Poplawski381a2292007-02-10 01:44:58 -0800100 return DEBUG_LOCKS_WARN_ON(1);
101
Steven Rostedtbb065af2008-05-12 21:21:00 +0200102 current->lockdep_recursion--;
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100103 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800104 return 0;
105}
106
107/*
108 * Turn lock debugging off and return with 0 if it was off already,
109 * and also release the graph lock:
110 */
111static inline int debug_locks_off_graph_unlock(void)
112{
113 int ret = debug_locks_off();
114
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100115 arch_spin_unlock(&lockdep_lock);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800116
117 return ret;
118}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700119
120static int lockdep_initialized;
121
122unsigned long nr_list_entries;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200123static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700124
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700125/*
126 * All data structures here are protected by the global debug_lock.
127 *
128 * Mutex key structs only get allocated, once during bootup, and never
129 * get freed - this significantly simplifies the debugging code.
130 */
131unsigned long nr_lock_classes;
132static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
133
Dave Jonesf82b2172008-08-11 09:30:23 +0200134static inline struct lock_class *hlock_class(struct held_lock *hlock)
135{
136 if (!hlock->class_idx) {
137 DEBUG_LOCKS_WARN_ON(1);
138 return NULL;
139 }
140 return lock_classes + hlock->class_idx - 1;
141}
142
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700143#ifdef CONFIG_LOCK_STAT
Tejun Heo1871e522009-10-29 22:34:13 +0900144static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS],
145 cpu_lock_stats);
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700146
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200147static inline u64 lockstat_clock(void)
148{
149 return cpu_clock(smp_processor_id());
150}
151
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200152static int lock_point(unsigned long points[], unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700153{
154 int i;
155
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200156 for (i = 0; i < LOCKSTAT_POINTS; i++) {
157 if (points[i] == 0) {
158 points[i] = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700159 break;
160 }
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200161 if (points[i] == ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700162 break;
163 }
164
165 return i;
166}
167
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200168static void lock_time_inc(struct lock_time *lt, u64 time)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700169{
170 if (time > lt->max)
171 lt->max = time;
172
Frank Rowand109d71c2009-11-19 13:42:06 -0800173 if (time < lt->min || !lt->nr)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700174 lt->min = time;
175
176 lt->total += time;
177 lt->nr++;
178}
179
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700180static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
181{
Frank Rowand109d71c2009-11-19 13:42:06 -0800182 if (!src->nr)
183 return;
184
185 if (src->max > dst->max)
186 dst->max = src->max;
187
188 if (src->min < dst->min || !dst->nr)
189 dst->min = src->min;
190
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700191 dst->total += src->total;
192 dst->nr += src->nr;
193}
194
195struct lock_class_stats lock_stats(struct lock_class *class)
196{
197 struct lock_class_stats stats;
198 int cpu, i;
199
200 memset(&stats, 0, sizeof(struct lock_class_stats));
201 for_each_possible_cpu(cpu) {
202 struct lock_class_stats *pcs =
Tejun Heo1871e522009-10-29 22:34:13 +0900203 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700204
205 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
206 stats.contention_point[i] += pcs->contention_point[i];
207
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200208 for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
209 stats.contending_point[i] += pcs->contending_point[i];
210
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700211 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
212 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
213
214 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
215 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
Peter Zijlstra96645672007-07-19 01:49:00 -0700216
217 for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
218 stats.bounces[i] += pcs->bounces[i];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700219 }
220
221 return stats;
222}
223
224void clear_lock_stats(struct lock_class *class)
225{
226 int cpu;
227
228 for_each_possible_cpu(cpu) {
229 struct lock_class_stats *cpu_stats =
Tejun Heo1871e522009-10-29 22:34:13 +0900230 &per_cpu(cpu_lock_stats, cpu)[class - lock_classes];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700231
232 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
233 }
234 memset(class->contention_point, 0, sizeof(class->contention_point));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200235 memset(class->contending_point, 0, sizeof(class->contending_point));
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700236}
237
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700238static struct lock_class_stats *get_lock_stats(struct lock_class *class)
239{
Tejun Heo1871e522009-10-29 22:34:13 +0900240 return &get_cpu_var(cpu_lock_stats)[class - lock_classes];
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700241}
242
243static void put_lock_stats(struct lock_class_stats *stats)
244{
Tejun Heo1871e522009-10-29 22:34:13 +0900245 put_cpu_var(cpu_lock_stats);
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700246}
247
248static void lock_release_holdtime(struct held_lock *hlock)
249{
250 struct lock_class_stats *stats;
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200251 u64 holdtime;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700252
253 if (!lock_stat)
254 return;
255
Peter Zijlstra3365e7792009-10-09 10:12:41 +0200256 holdtime = lockstat_clock() - hlock->holdtime_stamp;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700257
Dave Jonesf82b2172008-08-11 09:30:23 +0200258 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700259 if (hlock->read)
260 lock_time_inc(&stats->read_holdtime, holdtime);
261 else
262 lock_time_inc(&stats->write_holdtime, holdtime);
263 put_lock_stats(stats);
264}
265#else
266static inline void lock_release_holdtime(struct held_lock *hlock)
267{
268}
269#endif
270
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700271/*
272 * We keep a global list of all lock classes. The list only grows,
273 * never shrinks. The list is only accessed with the lockdep
274 * spinlock lock held.
275 */
276LIST_HEAD(all_lock_classes);
277
278/*
279 * The lockdep classes are in a hash-table as well, for fast lookup:
280 */
281#define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
282#define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700283#define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700284#define classhashentry(key) (classhash_table + __classhashfn((key)))
285
286static struct list_head classhash_table[CLASSHASH_SIZE];
287
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700288/*
289 * We put the lock dependency chains into a hash-table as well, to cache
290 * their existence:
291 */
292#define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
293#define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700294#define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700295#define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
296
297static struct list_head chainhash_table[CHAINHASH_SIZE];
298
299/*
300 * The hash key of the lock dependency chains is a hash itself too:
301 * it's a hash of all locks taken up to that lock, including that lock.
302 * It's a 64-bit hash, because it's important for the keys to be
303 * unique.
304 */
305#define iterate_chain_key(key1, key2) \
Ingo Molnar03cbc352006-09-29 02:01:46 -0700306 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
307 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700308 (key2))
309
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200310void lockdep_off(void)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700311{
312 current->lockdep_recursion++;
313}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700314EXPORT_SYMBOL(lockdep_off);
315
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200316void lockdep_on(void)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700317{
318 current->lockdep_recursion--;
319}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700320EXPORT_SYMBOL(lockdep_on);
321
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700322/*
323 * Debugging switches:
324 */
325
326#define VERBOSE 0
Ingo Molnar33e94e92006-12-13 00:34:41 -0800327#define VERY_VERBOSE 0
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700328
329#if VERBOSE
330# define HARDIRQ_VERBOSE 1
331# define SOFTIRQ_VERBOSE 1
Nick Piggincf40bd12009-01-21 08:12:39 +0100332# define RECLAIM_VERBOSE 1
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700333#else
334# define HARDIRQ_VERBOSE 0
335# define SOFTIRQ_VERBOSE 0
Nick Piggincf40bd12009-01-21 08:12:39 +0100336# define RECLAIM_VERBOSE 0
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700337#endif
338
Nick Piggincf40bd12009-01-21 08:12:39 +0100339#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700340/*
341 * Quick filtering for interesting events:
342 */
343static int class_filter(struct lock_class *class)
344{
Andi Kleenf9829cc2006-07-10 04:44:01 -0700345#if 0
346 /* Example */
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700347 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700348 !strcmp(class->name, "lockname"))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700349 return 1;
350 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700351 !strcmp(class->name, "&struct->lockfield"))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700352 return 1;
Andi Kleenf9829cc2006-07-10 04:44:01 -0700353#endif
Ingo Molnara6640892006-12-13 00:34:39 -0800354 /* Filter everything else. 1 would be to allow everything else */
355 return 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700356}
357#endif
358
359static int verbose(struct lock_class *class)
360{
361#if VERBOSE
362 return class_filter(class);
363#endif
364 return 0;
365}
366
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700367/*
368 * Stack-trace: tightly packed array of stack backtrace
Ingo Molnar74c383f2006-12-13 00:34:43 -0800369 * addresses. Protected by the graph_lock.
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700370 */
371unsigned long nr_stack_trace_entries;
372static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
373
374static int save_trace(struct stack_trace *trace)
375{
376 trace->nr_entries = 0;
377 trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
378 trace->entries = stack_trace + nr_stack_trace_entries;
379
Andi Kleen5a1b3992006-09-26 10:52:34 +0200380 trace->skip = 3;
Andi Kleen5a1b3992006-09-26 10:52:34 +0200381
Christoph Hellwigab1b6f02007-05-08 00:23:29 -0700382 save_stack_trace(trace);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700383
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200384 /*
385 * Some daft arches put -1 at the end to indicate its a full trace.
386 *
387 * <rant> this is buggy anyway, since it takes a whole extra entry so a
388 * complete trace that maxes out the entries provided will be reported
389 * as incomplete, friggin useless </rant>
390 */
Luck, Tonyea5b41f2009-12-09 14:29:36 -0800391 if (trace->nr_entries != 0 &&
392 trace->entries[trace->nr_entries-1] == ULONG_MAX)
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200393 trace->nr_entries--;
394
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700395 trace->max_entries = trace->nr_entries;
396
397 nr_stack_trace_entries += trace->nr_entries;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700398
Peter Zijlstra4f84f432009-07-20 15:27:04 +0200399 if (nr_stack_trace_entries >= MAX_STACK_TRACE_ENTRIES-1) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800400 if (!debug_locks_off_graph_unlock())
401 return 0;
402
403 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
404 printk("turning off the locking correctness validator.\n");
405 dump_stack();
406
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700407 return 0;
408 }
409
410 return 1;
411}
412
413unsigned int nr_hardirq_chains;
414unsigned int nr_softirq_chains;
415unsigned int nr_process_chains;
416unsigned int max_lockdep_depth;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700417
418#ifdef CONFIG_DEBUG_LOCKDEP
419/*
420 * We cannot printk in early bootup code. Not even early_printk()
421 * might work. So we mark any initialization errors and printk
422 * about it later on, in lockdep_info().
423 */
424static int lockdep_init_error;
Johannes Bergc71063c2007-07-19 01:49:02 -0700425static unsigned long lockdep_init_trace_data[20];
426static struct stack_trace lockdep_init_trace = {
427 .max_entries = ARRAY_SIZE(lockdep_init_trace_data),
428 .entries = lockdep_init_trace_data,
429};
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700430
431/*
432 * Various lockdep statistics:
433 */
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +0200434DEFINE_PER_CPU(struct lockdep_stats, lockdep_stats);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700435#endif
436
437/*
438 * Locking printouts:
439 */
440
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100441#define __USAGE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +0100442 [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W", \
443 [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W", \
444 [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
445 [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100446
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700447static const char *usage_str[] =
448{
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100449#define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
450#include "lockdep_states.h"
451#undef LOCKDEP_STATE
452 [LOCK_USED] = "INITIAL USE",
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700453};
454
455const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
456{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700457 return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700458}
459
Peter Zijlstra3ff176c2009-01-22 17:40:42 +0100460static inline unsigned long lock_flag(enum lock_usage_bit bit)
461{
462 return 1UL << bit;
463}
464
465static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit)
466{
467 char c = '.';
468
469 if (class->usage_mask & lock_flag(bit + 2))
470 c = '+';
471 if (class->usage_mask & lock_flag(bit)) {
472 c = '-';
473 if (class->usage_mask & lock_flag(bit + 2))
474 c = '?';
475 }
476
477 return c;
478}
479
Peter Zijlstraf510b232009-01-22 17:53:47 +0100480void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS])
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700481{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100482 int i = 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700483
Peter Zijlstraf510b232009-01-22 17:53:47 +0100484#define LOCKDEP_STATE(__STATE) \
485 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE); \
486 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
487#include "lockdep_states.h"
488#undef LOCKDEP_STATE
489
490 usage[i] = '\0';
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700491}
492
493static void print_lock_name(struct lock_class *class)
494{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100495 char str[KSYM_NAME_LEN], usage[LOCK_USAGE_CHARS];
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700496 const char *name;
497
Peter Zijlstraf510b232009-01-22 17:53:47 +0100498 get_usage_chars(class, usage);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700499
500 name = class->name;
501 if (!name) {
502 name = __get_key_name(class->key, str);
503 printk(" (%s", name);
504 } else {
505 printk(" (%s", name);
506 if (class->name_version > 1)
507 printk("#%d", class->name_version);
508 if (class->subclass)
509 printk("/%d", class->subclass);
510 }
Peter Zijlstraf510b232009-01-22 17:53:47 +0100511 printk("){%s}", usage);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700512}
513
514static void print_lockdep_cache(struct lockdep_map *lock)
515{
516 const char *name;
Tejun Heo9281ace2007-07-17 04:03:51 -0700517 char str[KSYM_NAME_LEN];
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700518
519 name = lock->name;
520 if (!name)
521 name = __get_key_name(lock->key->subkeys, str);
522
523 printk("%s", name);
524}
525
526static void print_lock(struct held_lock *hlock)
527{
Dave Jonesf82b2172008-08-11 09:30:23 +0200528 print_lock_name(hlock_class(hlock));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700529 printk(", at: ");
530 print_ip_sym(hlock->acquire_ip);
531}
532
533static void lockdep_print_held_locks(struct task_struct *curr)
534{
535 int i, depth = curr->lockdep_depth;
536
537 if (!depth) {
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700538 printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700539 return;
540 }
541 printk("%d lock%s held by %s/%d:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700542 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700543
544 for (i = 0; i < depth; i++) {
545 printk(" #%d: ", i);
546 print_lock(curr->held_locks + i);
547 }
548}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700549
Dave Jones99de0552006-09-29 02:00:10 -0700550static void print_kernel_version(void)
551{
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700552 printk("%s %.*s\n", init_utsname()->release,
553 (int)strcspn(init_utsname()->version, " "),
554 init_utsname()->version);
Dave Jones99de0552006-09-29 02:00:10 -0700555}
556
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700557static int very_verbose(struct lock_class *class)
558{
559#if VERY_VERBOSE
560 return class_filter(class);
561#endif
562 return 0;
563}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700564
565/*
566 * Is this the address of a static object:
567 */
568static int static_obj(void *obj)
569{
570 unsigned long start = (unsigned long) &_stext,
571 end = (unsigned long) &_end,
572 addr = (unsigned long) obj;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700573
574 /*
575 * static variable?
576 */
577 if ((addr >= start) && (addr < end))
578 return 1;
579
Mike Frysinger2a9ad182009-09-22 16:44:16 -0700580 if (arch_is_kernel_data(addr))
581 return 1;
582
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700583 /*
Tejun Heo10fad5e2010-03-10 18:57:54 +0900584 * in-kernel percpu var?
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700585 */
Tejun Heo10fad5e2010-03-10 18:57:54 +0900586 if (is_kernel_percpu_address(addr))
587 return 1;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700588
589 /*
Tejun Heo10fad5e2010-03-10 18:57:54 +0900590 * module static or percpu var?
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700591 */
Tejun Heo10fad5e2010-03-10 18:57:54 +0900592 return is_module_address(addr) || is_module_percpu_address(addr);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700593}
594
595/*
596 * To make lock name printouts unique, we calculate a unique
597 * class->name_version generation counter:
598 */
599static int count_matching_names(struct lock_class *new_class)
600{
601 struct lock_class *class;
602 int count = 0;
603
604 if (!new_class->name)
605 return 0;
606
607 list_for_each_entry(class, &all_lock_classes, lock_entry) {
608 if (new_class->key - new_class->subclass == class->key)
609 return class->name_version;
610 if (class->name && !strcmp(class->name, new_class->name))
611 count = max(count, class->name_version);
612 }
613
614 return count + 1;
615}
616
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700617/*
618 * Register a lock's class in the hash-table, if the class is not present
619 * yet. Otherwise we look it up. We cache the result in the lock object
620 * itself, so actual lookup of the hash should be once per lock object.
621 */
622static inline struct lock_class *
Ingo Molnard6d897c2006-07-10 04:44:04 -0700623look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700624{
625 struct lockdep_subclass_key *key;
626 struct list_head *hash_head;
627 struct lock_class *class;
628
629#ifdef CONFIG_DEBUG_LOCKDEP
630 /*
631 * If the architecture calls into lockdep before initializing
632 * the hashes then we'll warn about it later. (we cannot printk
633 * right now)
634 */
635 if (unlikely(!lockdep_initialized)) {
636 lockdep_init();
637 lockdep_init_error = 1;
Johannes Bergc71063c2007-07-19 01:49:02 -0700638 save_stack_trace(&lockdep_init_trace);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700639 }
640#endif
641
642 /*
643 * Static locks do not have their class-keys yet - for them the key
644 * is the lock object itself:
645 */
646 if (unlikely(!lock->key))
647 lock->key = (void *)lock;
648
649 /*
650 * NOTE: the class-key must be unique. For dynamic locks, a static
651 * lock_class_key variable is passed in through the mutex_init()
652 * (or spin_lock_init()) call - which acts as the key. For static
653 * locks we use the lock object itself as the key.
654 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700655 BUILD_BUG_ON(sizeof(struct lock_class_key) >
656 sizeof(struct lockdep_map));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700657
658 key = lock->key->subkeys + subclass;
659
660 hash_head = classhashentry(key);
661
662 /*
663 * We can walk the hash lockfree, because the hash only
664 * grows, and we are careful when adding entries to the end:
665 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700666 list_for_each_entry(class, hash_head, hash_entry) {
667 if (class->key == key) {
668 WARN_ON_ONCE(class->name != lock->name);
Ingo Molnard6d897c2006-07-10 04:44:04 -0700669 return class;
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700670 }
671 }
Ingo Molnard6d897c2006-07-10 04:44:04 -0700672
673 return NULL;
674}
675
676/*
677 * Register a lock's class in the hash-table, if the class is not present
678 * yet. Otherwise we look it up. We cache the result in the lock object
679 * itself, so actual lookup of the hash should be once per lock object.
680 */
681static inline struct lock_class *
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400682register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700683{
684 struct lockdep_subclass_key *key;
685 struct list_head *hash_head;
686 struct lock_class *class;
Ingo Molnar70e45062006-12-06 20:40:50 -0800687 unsigned long flags;
Ingo Molnard6d897c2006-07-10 04:44:04 -0700688
689 class = look_up_lock_class(lock, subclass);
690 if (likely(class))
691 return class;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700692
693 /*
694 * Debug-check: all keys must be persistent!
695 */
696 if (!static_obj(lock->key)) {
697 debug_locks_off();
698 printk("INFO: trying to register non-static key.\n");
699 printk("the code is fine but needs lockdep annotation.\n");
700 printk("turning off the locking correctness validator.\n");
701 dump_stack();
702
703 return NULL;
704 }
705
Ingo Molnard6d897c2006-07-10 04:44:04 -0700706 key = lock->key->subkeys + subclass;
707 hash_head = classhashentry(key);
708
Ingo Molnar70e45062006-12-06 20:40:50 -0800709 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800710 if (!graph_lock()) {
711 raw_local_irq_restore(flags);
712 return NULL;
713 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700714 /*
715 * We have to do the hash-walk again, to avoid races
716 * with another CPU:
717 */
718 list_for_each_entry(class, hash_head, hash_entry)
719 if (class->key == key)
720 goto out_unlock_set;
721 /*
722 * Allocate a new key from the static array, and add it to
723 * the hash:
724 */
725 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800726 if (!debug_locks_off_graph_unlock()) {
727 raw_local_irq_restore(flags);
728 return NULL;
729 }
Ingo Molnar70e45062006-12-06 20:40:50 -0800730 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800731
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700732 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
733 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100734 dump_stack();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700735 return NULL;
736 }
737 class = lock_classes + nr_lock_classes++;
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +0200738 debug_atomic_inc(nr_unused_locks);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700739 class->key = key;
740 class->name = lock->name;
741 class->subclass = subclass;
742 INIT_LIST_HEAD(&class->lock_entry);
743 INIT_LIST_HEAD(&class->locks_before);
744 INIT_LIST_HEAD(&class->locks_after);
745 class->name_version = count_matching_names(class);
746 /*
747 * We use RCU's safe list-add method to make
748 * parallel walking of the hash-list safe:
749 */
750 list_add_tail_rcu(&class->hash_entry, hash_head);
Dale Farnsworth14811972008-02-25 23:03:02 +0100751 /*
752 * Add it to the global list of classes:
753 */
754 list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700755
756 if (verbose(class)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800757 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800758 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800759
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700760 printk("\nnew class %p: %s", class->key, class->name);
761 if (class->name_version > 1)
762 printk("#%d", class->name_version);
763 printk("\n");
764 dump_stack();
Ingo Molnar74c383f2006-12-13 00:34:43 -0800765
Ingo Molnar70e45062006-12-06 20:40:50 -0800766 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800767 if (!graph_lock()) {
768 raw_local_irq_restore(flags);
769 return NULL;
770 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700771 }
772out_unlock_set:
Ingo Molnar74c383f2006-12-13 00:34:43 -0800773 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800774 raw_local_irq_restore(flags);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700775
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400776 if (!subclass || force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700777 lock->class_cache = class;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700778
Jarek Poplawski381a2292007-02-10 01:44:58 -0800779 if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
780 return NULL;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700781
782 return class;
783}
784
Peter Zijlstraca58abc2007-07-19 01:48:53 -0700785#ifdef CONFIG_PROVE_LOCKING
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700786/*
Peter Zijlstra8e182572007-07-19 01:48:54 -0700787 * Allocate a lockdep entry. (assumes the graph_lock held, returns
788 * with NULL on failure)
789 */
790static struct lock_list *alloc_list_entry(void)
791{
792 if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
793 if (!debug_locks_off_graph_unlock())
794 return NULL;
795
796 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
797 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100798 dump_stack();
Peter Zijlstra8e182572007-07-19 01:48:54 -0700799 return NULL;
800 }
801 return list_entries + nr_list_entries++;
802}
803
804/*
805 * Add a new dependency to the head of the list:
806 */
807static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
808 struct list_head *head, unsigned long ip, int distance)
809{
810 struct lock_list *entry;
811 /*
812 * Lock not present yet - get a new dependency struct and
813 * add it to the list:
814 */
815 entry = alloc_list_entry();
816 if (!entry)
817 return 0;
818
Peter Zijlstra8e182572007-07-19 01:48:54 -0700819 if (!save_trace(&entry->trace))
820 return 0;
821
Zhu Yi74870172008-08-27 14:33:00 +0800822 entry->class = this;
823 entry->distance = distance;
Peter Zijlstra8e182572007-07-19 01:48:54 -0700824 /*
825 * Since we never remove from the dependency list, the list can
826 * be walked lockless by other CPUs, it's only allocation
827 * that must be protected by the spinlock. But this also means
828 * we must make new entries visible only once writes to the
829 * entry become visible - hence the RCU op:
830 */
831 list_add_tail_rcu(&entry->entry, head);
832
833 return 1;
834}
835
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200836/*
837 * For good efficiency of modular, we use power of 2
838 */
Peter Zijlstraaf012962009-07-16 15:44:29 +0200839#define MAX_CIRCULAR_QUEUE_SIZE 4096UL
840#define CQ_MASK (MAX_CIRCULAR_QUEUE_SIZE-1)
841
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200842/*
843 * The circular_queue and helpers is used to implement the
Peter Zijlstraaf012962009-07-16 15:44:29 +0200844 * breadth-first search(BFS)algorithem, by which we can build
845 * the shortest path from the next lock to be acquired to the
846 * previous held lock if there is a circular between them.
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200847 */
Peter Zijlstraaf012962009-07-16 15:44:29 +0200848struct circular_queue {
849 unsigned long element[MAX_CIRCULAR_QUEUE_SIZE];
850 unsigned int front, rear;
851};
852
853static struct circular_queue lock_cq;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200854
Ming Lei12f3dfd2009-07-16 15:44:29 +0200855unsigned int max_bfs_queue_depth;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200856
Ming Leie351b662009-07-22 22:48:09 +0800857static unsigned int lockdep_dependency_gen_id;
858
Peter Zijlstraaf012962009-07-16 15:44:29 +0200859static inline void __cq_init(struct circular_queue *cq)
860{
861 cq->front = cq->rear = 0;
Ming Leie351b662009-07-22 22:48:09 +0800862 lockdep_dependency_gen_id++;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200863}
864
865static inline int __cq_empty(struct circular_queue *cq)
866{
867 return (cq->front == cq->rear);
868}
869
870static inline int __cq_full(struct circular_queue *cq)
871{
872 return ((cq->rear + 1) & CQ_MASK) == cq->front;
873}
874
875static inline int __cq_enqueue(struct circular_queue *cq, unsigned long elem)
876{
877 if (__cq_full(cq))
878 return -1;
879
880 cq->element[cq->rear] = elem;
881 cq->rear = (cq->rear + 1) & CQ_MASK;
882 return 0;
883}
884
885static inline int __cq_dequeue(struct circular_queue *cq, unsigned long *elem)
886{
887 if (__cq_empty(cq))
888 return -1;
889
890 *elem = cq->element[cq->front];
891 cq->front = (cq->front + 1) & CQ_MASK;
892 return 0;
893}
894
895static inline unsigned int __cq_get_elem_count(struct circular_queue *cq)
896{
897 return (cq->rear - cq->front) & CQ_MASK;
898}
899
900static inline void mark_lock_accessed(struct lock_list *lock,
901 struct lock_list *parent)
902{
903 unsigned long nr;
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200904
Peter Zijlstraaf012962009-07-16 15:44:29 +0200905 nr = lock - list_entries;
906 WARN_ON(nr >= nr_list_entries);
907 lock->parent = parent;
Ming Leie351b662009-07-22 22:48:09 +0800908 lock->class->dep_gen_id = lockdep_dependency_gen_id;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200909}
910
911static inline unsigned long lock_accessed(struct lock_list *lock)
912{
913 unsigned long nr;
Peter Zijlstra98c33ed2009-07-21 13:19:07 +0200914
Peter Zijlstraaf012962009-07-16 15:44:29 +0200915 nr = lock - list_entries;
916 WARN_ON(nr >= nr_list_entries);
Ming Leie351b662009-07-22 22:48:09 +0800917 return lock->class->dep_gen_id == lockdep_dependency_gen_id;
Peter Zijlstraaf012962009-07-16 15:44:29 +0200918}
919
920static inline struct lock_list *get_lock_parent(struct lock_list *child)
921{
922 return child->parent;
923}
924
925static inline int get_lock_depth(struct lock_list *child)
926{
927 int depth = 0;
928 struct lock_list *parent;
929
930 while ((parent = get_lock_parent(child))) {
931 child = parent;
932 depth++;
933 }
934 return depth;
935}
936
Ming Lei9e2d5512009-07-16 15:44:29 +0200937static int __bfs(struct lock_list *source_entry,
Peter Zijlstraaf012962009-07-16 15:44:29 +0200938 void *data,
939 int (*match)(struct lock_list *entry, void *data),
940 struct lock_list **target_entry,
941 int forward)
Ming Leic94aa5c2009-07-16 15:44:29 +0200942{
943 struct lock_list *entry;
Ming Leid588e462009-07-16 15:44:29 +0200944 struct list_head *head;
Ming Leic94aa5c2009-07-16 15:44:29 +0200945 struct circular_queue *cq = &lock_cq;
946 int ret = 1;
947
Ming Lei9e2d5512009-07-16 15:44:29 +0200948 if (match(source_entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +0200949 *target_entry = source_entry;
950 ret = 0;
951 goto exit;
952 }
953
Ming Leid588e462009-07-16 15:44:29 +0200954 if (forward)
955 head = &source_entry->class->locks_after;
956 else
957 head = &source_entry->class->locks_before;
958
959 if (list_empty(head))
960 goto exit;
961
962 __cq_init(cq);
Ming Leic94aa5c2009-07-16 15:44:29 +0200963 __cq_enqueue(cq, (unsigned long)source_entry);
964
965 while (!__cq_empty(cq)) {
966 struct lock_list *lock;
Ming Leic94aa5c2009-07-16 15:44:29 +0200967
968 __cq_dequeue(cq, (unsigned long *)&lock);
969
970 if (!lock->class) {
971 ret = -2;
972 goto exit;
973 }
974
975 if (forward)
976 head = &lock->class->locks_after;
977 else
978 head = &lock->class->locks_before;
979
980 list_for_each_entry(entry, head, entry) {
981 if (!lock_accessed(entry)) {
Ming Lei12f3dfd2009-07-16 15:44:29 +0200982 unsigned int cq_depth;
Ming Leic94aa5c2009-07-16 15:44:29 +0200983 mark_lock_accessed(entry, lock);
Ming Lei9e2d5512009-07-16 15:44:29 +0200984 if (match(entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +0200985 *target_entry = entry;
986 ret = 0;
987 goto exit;
988 }
989
990 if (__cq_enqueue(cq, (unsigned long)entry)) {
991 ret = -1;
992 goto exit;
993 }
Ming Lei12f3dfd2009-07-16 15:44:29 +0200994 cq_depth = __cq_get_elem_count(cq);
995 if (max_bfs_queue_depth < cq_depth)
996 max_bfs_queue_depth = cq_depth;
Ming Leic94aa5c2009-07-16 15:44:29 +0200997 }
998 }
999 }
1000exit:
1001 return ret;
1002}
1003
Ming Leid7aaba12009-07-16 15:44:29 +02001004static inline int __bfs_forwards(struct lock_list *src_entry,
Ming Lei9e2d5512009-07-16 15:44:29 +02001005 void *data,
1006 int (*match)(struct lock_list *entry, void *data),
1007 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +02001008{
Ming Lei9e2d5512009-07-16 15:44:29 +02001009 return __bfs(src_entry, data, match, target_entry, 1);
Ming Leic94aa5c2009-07-16 15:44:29 +02001010
1011}
1012
Ming Leid7aaba12009-07-16 15:44:29 +02001013static inline int __bfs_backwards(struct lock_list *src_entry,
Ming Lei9e2d5512009-07-16 15:44:29 +02001014 void *data,
1015 int (*match)(struct lock_list *entry, void *data),
1016 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +02001017{
Ming Lei9e2d5512009-07-16 15:44:29 +02001018 return __bfs(src_entry, data, match, target_entry, 0);
Ming Leic94aa5c2009-07-16 15:44:29 +02001019
1020}
1021
Peter Zijlstra8e182572007-07-19 01:48:54 -07001022/*
1023 * Recursive, forwards-direction lock-dependency checking, used for
1024 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
1025 * checking.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001026 */
Peter Zijlstra8e182572007-07-19 01:48:54 -07001027
1028/*
1029 * Print a dependency chain entry (this is only done when a deadlock
1030 * has been detected):
1031 */
1032static noinline int
Ming Lei24208ca2009-07-16 15:44:29 +02001033print_circular_bug_entry(struct lock_list *target, int depth)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001034{
1035 if (debug_locks_silent)
1036 return 0;
1037 printk("\n-> #%u", depth);
1038 print_lock_name(target->class);
1039 printk(":\n");
1040 print_stack_trace(&target->trace, 6);
1041
1042 return 0;
1043}
1044
1045/*
1046 * When a circular dependency is detected, print the
1047 * header first:
1048 */
1049static noinline int
Ming Leidb0002a2009-07-16 15:44:29 +02001050print_circular_bug_header(struct lock_list *entry, unsigned int depth,
1051 struct held_lock *check_src,
1052 struct held_lock *check_tgt)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001053{
1054 struct task_struct *curr = current;
1055
Ming Leic94aa5c2009-07-16 15:44:29 +02001056 if (debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001057 return 0;
1058
1059 printk("\n=======================================================\n");
1060 printk( "[ INFO: possible circular locking dependency detected ]\n");
1061 print_kernel_version();
1062 printk( "-------------------------------------------------------\n");
1063 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001064 curr->comm, task_pid_nr(curr));
Ming Leidb0002a2009-07-16 15:44:29 +02001065 print_lock(check_src);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001066 printk("\nbut task is already holding lock:\n");
Ming Leidb0002a2009-07-16 15:44:29 +02001067 print_lock(check_tgt);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001068 printk("\nwhich lock already depends on the new lock.\n\n");
1069 printk("\nthe existing dependency chain (in reverse order) is:\n");
1070
1071 print_circular_bug_entry(entry, depth);
1072
1073 return 0;
1074}
1075
Ming Lei9e2d5512009-07-16 15:44:29 +02001076static inline int class_equal(struct lock_list *entry, void *data)
1077{
1078 return entry->class == data;
1079}
1080
Ming Leidb0002a2009-07-16 15:44:29 +02001081static noinline int print_circular_bug(struct lock_list *this,
1082 struct lock_list *target,
1083 struct held_lock *check_src,
1084 struct held_lock *check_tgt)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001085{
1086 struct task_struct *curr = current;
Ming Leic94aa5c2009-07-16 15:44:29 +02001087 struct lock_list *parent;
Ming Lei24208ca2009-07-16 15:44:29 +02001088 int depth;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001089
Ming Leic94aa5c2009-07-16 15:44:29 +02001090 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001091 return 0;
1092
Ming Leidb0002a2009-07-16 15:44:29 +02001093 if (!save_trace(&this->trace))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001094 return 0;
1095
Ming Leic94aa5c2009-07-16 15:44:29 +02001096 depth = get_lock_depth(target);
1097
Ming Leidb0002a2009-07-16 15:44:29 +02001098 print_circular_bug_header(target, depth, check_src, check_tgt);
Ming Leic94aa5c2009-07-16 15:44:29 +02001099
1100 parent = get_lock_parent(target);
1101
1102 while (parent) {
1103 print_circular_bug_entry(parent, --depth);
1104 parent = get_lock_parent(parent);
1105 }
Peter Zijlstra8e182572007-07-19 01:48:54 -07001106
1107 printk("\nother info that might help us debug this:\n\n");
1108 lockdep_print_held_locks(curr);
1109
1110 printk("\nstack backtrace:\n");
1111 dump_stack();
1112
1113 return 0;
1114}
1115
Ming Leidb0002a2009-07-16 15:44:29 +02001116static noinline int print_bfs_bug(int ret)
1117{
1118 if (!debug_locks_off_graph_unlock())
1119 return 0;
1120
1121 WARN(1, "lockdep bfs error:%d\n", ret);
1122
1123 return 0;
1124}
1125
Ming Leief681022009-07-16 15:44:29 +02001126static int noop_count(struct lock_list *entry, void *data)
David Miller419ca3f2008-07-29 21:45:03 -07001127{
Ming Leief681022009-07-16 15:44:29 +02001128 (*(unsigned long *)data)++;
1129 return 0;
David Miller419ca3f2008-07-29 21:45:03 -07001130}
1131
Ming Leief681022009-07-16 15:44:29 +02001132unsigned long __lockdep_count_forward_deps(struct lock_list *this)
1133{
1134 unsigned long count = 0;
1135 struct lock_list *uninitialized_var(target_entry);
1136
1137 __bfs_forwards(this, (void *)&count, noop_count, &target_entry);
1138
1139 return count;
1140}
David Miller419ca3f2008-07-29 21:45:03 -07001141unsigned long lockdep_count_forward_deps(struct lock_class *class)
1142{
1143 unsigned long ret, flags;
Ming Leief681022009-07-16 15:44:29 +02001144 struct lock_list this;
1145
1146 this.parent = NULL;
1147 this.class = class;
David Miller419ca3f2008-07-29 21:45:03 -07001148
1149 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001150 arch_spin_lock(&lockdep_lock);
Ming Leief681022009-07-16 15:44:29 +02001151 ret = __lockdep_count_forward_deps(&this);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001152 arch_spin_unlock(&lockdep_lock);
David Miller419ca3f2008-07-29 21:45:03 -07001153 local_irq_restore(flags);
1154
1155 return ret;
1156}
1157
Ming Leief681022009-07-16 15:44:29 +02001158unsigned long __lockdep_count_backward_deps(struct lock_list *this)
David Miller419ca3f2008-07-29 21:45:03 -07001159{
Ming Leief681022009-07-16 15:44:29 +02001160 unsigned long count = 0;
1161 struct lock_list *uninitialized_var(target_entry);
David Miller419ca3f2008-07-29 21:45:03 -07001162
Ming Leief681022009-07-16 15:44:29 +02001163 __bfs_backwards(this, (void *)&count, noop_count, &target_entry);
David Miller419ca3f2008-07-29 21:45:03 -07001164
Ming Leief681022009-07-16 15:44:29 +02001165 return count;
David Miller419ca3f2008-07-29 21:45:03 -07001166}
1167
1168unsigned long lockdep_count_backward_deps(struct lock_class *class)
1169{
1170 unsigned long ret, flags;
Ming Leief681022009-07-16 15:44:29 +02001171 struct lock_list this;
1172
1173 this.parent = NULL;
1174 this.class = class;
David Miller419ca3f2008-07-29 21:45:03 -07001175
1176 local_irq_save(flags);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001177 arch_spin_lock(&lockdep_lock);
Ming Leief681022009-07-16 15:44:29 +02001178 ret = __lockdep_count_backward_deps(&this);
Thomas Gleixner0199c4e2009-12-02 20:01:25 +01001179 arch_spin_unlock(&lockdep_lock);
David Miller419ca3f2008-07-29 21:45:03 -07001180 local_irq_restore(flags);
1181
1182 return ret;
1183}
1184
Peter Zijlstra8e182572007-07-19 01:48:54 -07001185/*
1186 * Prove that the dependency graph starting at <entry> can not
1187 * lead to <target>. Print an error and return 0 if it does.
1188 */
1189static noinline int
Ming Leidb0002a2009-07-16 15:44:29 +02001190check_noncircular(struct lock_list *root, struct lock_class *target,
1191 struct lock_list **target_entry)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001192{
Ming Leidb0002a2009-07-16 15:44:29 +02001193 int result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001194
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02001195 debug_atomic_inc(nr_cyclic_checks);
David Miller419ca3f2008-07-29 21:45:03 -07001196
Ming Leid7aaba12009-07-16 15:44:29 +02001197 result = __bfs_forwards(root, target, class_equal, target_entry);
Ming Leidb0002a2009-07-16 15:44:29 +02001198
1199 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001200}
1201
Steven Rostedt81d68a92008-05-12 21:20:42 +02001202#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001203/*
1204 * Forwards and backwards subgraph searching, for the purposes of
1205 * proving that two subgraphs can be connected by a new dependency
1206 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1207 */
Peter Zijlstra8e182572007-07-19 01:48:54 -07001208
Ming Leid7aaba12009-07-16 15:44:29 +02001209static inline int usage_match(struct lock_list *entry, void *bit)
1210{
1211 return entry->class->usage_mask & (1 << (enum lock_usage_bit)bit);
1212}
1213
1214
1215
Peter Zijlstra8e182572007-07-19 01:48:54 -07001216/*
1217 * Find a node in the forwards-direction dependency sub-graph starting
Ming Leid7aaba12009-07-16 15:44:29 +02001218 * at @root->class that matches @bit.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001219 *
Ming Leid7aaba12009-07-16 15:44:29 +02001220 * Return 0 if such a node exists in the subgraph, and put that node
1221 * into *@target_entry.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001222 *
Ming Leid7aaba12009-07-16 15:44:29 +02001223 * Return 1 otherwise and keep *@target_entry unchanged.
1224 * Return <0 on error.
Peter Zijlstra8e182572007-07-19 01:48:54 -07001225 */
Ming Leid7aaba12009-07-16 15:44:29 +02001226static int
1227find_usage_forwards(struct lock_list *root, enum lock_usage_bit bit,
1228 struct lock_list **target_entry)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001229{
Ming Leid7aaba12009-07-16 15:44:29 +02001230 int result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001231
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02001232 debug_atomic_inc(nr_find_usage_forwards_checks);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001233
Ming Leid7aaba12009-07-16 15:44:29 +02001234 result = __bfs_forwards(root, (void *)bit, usage_match, target_entry);
1235
1236 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001237}
1238
1239/*
1240 * Find a node in the backwards-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_backwards(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
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02001255 debug_atomic_inc(nr_find_usage_backwards_checks);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001256
Ming Leid7aaba12009-07-16 15:44:29 +02001257 result = __bfs_backwards(root, (void *)bit, usage_match, target_entry);
Dave Jonesf82b2172008-08-11 09:30:23 +02001258
Ming Leid7aaba12009-07-16 15:44:29 +02001259 return result;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001260}
1261
Peter Zijlstraaf012962009-07-16 15:44:29 +02001262static void print_lock_class_header(struct lock_class *class, int depth)
1263{
1264 int bit;
1265
1266 printk("%*s->", depth, "");
1267 print_lock_name(class);
1268 printk(" ops: %lu", class->ops);
1269 printk(" {\n");
1270
1271 for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
1272 if (class->usage_mask & (1 << bit)) {
1273 int len = depth;
1274
1275 len += printk("%*s %s", depth, "", usage_str[bit]);
1276 len += printk(" at:\n");
1277 print_stack_trace(class->usage_traces + bit, len);
1278 }
1279 }
1280 printk("%*s }\n", depth, "");
1281
1282 printk("%*s ... key at: ",depth,"");
1283 print_ip_sym((unsigned long)class->key);
1284}
1285
1286/*
1287 * printk the shortest lock dependencies from @start to @end in reverse order:
1288 */
1289static void __used
1290print_shortest_lock_dependencies(struct lock_list *leaf,
1291 struct lock_list *root)
1292{
1293 struct lock_list *entry = leaf;
1294 int depth;
1295
1296 /*compute depth from generated tree by BFS*/
1297 depth = get_lock_depth(leaf);
1298
1299 do {
1300 print_lock_class_header(entry->class, depth);
1301 printk("%*s ... acquired at:\n", depth, "");
1302 print_stack_trace(&entry->trace, 2);
1303 printk("\n");
1304
1305 if (depth == 0 && (entry != root)) {
1306 printk("lockdep:%s bad BFS generated tree\n", __func__);
1307 break;
1308 }
1309
1310 entry = get_lock_parent(entry);
1311 depth--;
1312 } while (entry && (depth >= 0));
1313
1314 return;
1315}
Ming Leid7aaba12009-07-16 15:44:29 +02001316
Peter Zijlstra8e182572007-07-19 01:48:54 -07001317static int
1318print_bad_irq_dependency(struct task_struct *curr,
Ming Lei24208ca2009-07-16 15:44:29 +02001319 struct lock_list *prev_root,
1320 struct lock_list *next_root,
1321 struct lock_list *backwards_entry,
1322 struct lock_list *forwards_entry,
Peter Zijlstra8e182572007-07-19 01:48:54 -07001323 struct held_lock *prev,
1324 struct held_lock *next,
1325 enum lock_usage_bit bit1,
1326 enum lock_usage_bit bit2,
1327 const char *irqclass)
1328{
1329 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1330 return 0;
1331
1332 printk("\n======================================================\n");
1333 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1334 irqclass, irqclass);
1335 print_kernel_version();
1336 printk( "------------------------------------------------------\n");
1337 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 -07001338 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07001339 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1340 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1341 curr->hardirqs_enabled,
1342 curr->softirqs_enabled);
1343 print_lock(next);
1344
1345 printk("\nand this task is already holding:\n");
1346 print_lock(prev);
1347 printk("which would create a new lock dependency:\n");
Dave Jonesf82b2172008-08-11 09:30:23 +02001348 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001349 printk(" ->");
Dave Jonesf82b2172008-08-11 09:30:23 +02001350 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001351 printk("\n");
1352
1353 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1354 irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02001355 print_lock_name(backwards_entry->class);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001356 printk("\n... which became %s-irq-safe at:\n", irqclass);
1357
Ming Lei24208ca2009-07-16 15:44:29 +02001358 print_stack_trace(backwards_entry->class->usage_traces + bit1, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001359
1360 printk("\nto a %s-irq-unsafe lock:\n", irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02001361 print_lock_name(forwards_entry->class);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001362 printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1363 printk("...");
1364
Ming Lei24208ca2009-07-16 15:44:29 +02001365 print_stack_trace(forwards_entry->class->usage_traces + bit2, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001366
1367 printk("\nother info that might help us debug this:\n\n");
1368 lockdep_print_held_locks(curr);
1369
Ming Lei24208ca2009-07-16 15:44:29 +02001370 printk("\nthe dependencies between %s-irq-safe lock", irqclass);
1371 printk(" and the holding lock:\n");
1372 if (!save_trace(&prev_root->trace))
1373 return 0;
1374 print_shortest_lock_dependencies(backwards_entry, prev_root);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001375
Ming Lei24208ca2009-07-16 15:44:29 +02001376 printk("\nthe dependencies between the lock to be acquired");
1377 printk(" and %s-irq-unsafe lock:\n", irqclass);
1378 if (!save_trace(&next_root->trace))
1379 return 0;
1380 print_shortest_lock_dependencies(forwards_entry, next_root);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001381
1382 printk("\nstack backtrace:\n");
1383 dump_stack();
1384
1385 return 0;
1386}
1387
1388static int
1389check_usage(struct task_struct *curr, struct held_lock *prev,
1390 struct held_lock *next, enum lock_usage_bit bit_backwards,
1391 enum lock_usage_bit bit_forwards, const char *irqclass)
1392{
1393 int ret;
Ming Lei24208ca2009-07-16 15:44:29 +02001394 struct lock_list this, that;
Ming Leid7aaba12009-07-16 15:44:29 +02001395 struct lock_list *uninitialized_var(target_entry);
Ming Lei24208ca2009-07-16 15:44:29 +02001396 struct lock_list *uninitialized_var(target_entry1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001397
Ming Leid7aaba12009-07-16 15:44:29 +02001398 this.parent = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001399
Ming Leid7aaba12009-07-16 15:44:29 +02001400 this.class = hlock_class(prev);
1401 ret = find_usage_backwards(&this, bit_backwards, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02001402 if (ret < 0)
1403 return print_bfs_bug(ret);
1404 if (ret == 1)
1405 return ret;
Ming Leid7aaba12009-07-16 15:44:29 +02001406
Ming Lei24208ca2009-07-16 15:44:29 +02001407 that.parent = NULL;
1408 that.class = hlock_class(next);
1409 ret = find_usage_forwards(&that, bit_forwards, &target_entry1);
Peter Zijlstraaf012962009-07-16 15:44:29 +02001410 if (ret < 0)
1411 return print_bfs_bug(ret);
1412 if (ret == 1)
1413 return ret;
Ming Leid7aaba12009-07-16 15:44:29 +02001414
Ming Lei24208ca2009-07-16 15:44:29 +02001415 return print_bad_irq_dependency(curr, &this, &that,
1416 target_entry, target_entry1,
1417 prev, next,
Peter Zijlstra8e182572007-07-19 01:48:54 -07001418 bit_backwards, bit_forwards, irqclass);
1419}
1420
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001421static const char *state_names[] = {
1422#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001423 __stringify(__STATE),
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001424#include "lockdep_states.h"
1425#undef LOCKDEP_STATE
1426};
1427
1428static const char *state_rnames[] = {
1429#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001430 __stringify(__STATE)"-READ",
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001431#include "lockdep_states.h"
1432#undef LOCKDEP_STATE
1433};
1434
1435static inline const char *state_name(enum lock_usage_bit bit)
1436{
1437 return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2];
1438}
1439
1440static int exclusive_bit(int new_bit)
1441{
1442 /*
1443 * USED_IN
1444 * USED_IN_READ
1445 * ENABLED
1446 * ENABLED_READ
1447 *
1448 * bit 0 - write/read
1449 * bit 1 - used_in/enabled
1450 * bit 2+ state
1451 */
1452
1453 int state = new_bit & ~3;
1454 int dir = new_bit & 2;
1455
1456 /*
1457 * keep state, bit flip the direction and strip read.
1458 */
1459 return state | (dir ^ 2);
1460}
1461
1462static int check_irq_usage(struct task_struct *curr, struct held_lock *prev,
1463 struct held_lock *next, enum lock_usage_bit bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001464{
1465 /*
1466 * Prove that the new dependency does not connect a hardirq-safe
1467 * lock with a hardirq-unsafe lock - to achieve this we search
1468 * the backwards-subgraph starting at <prev>, and the
1469 * forwards-subgraph starting at <next>:
1470 */
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001471 if (!check_usage(curr, prev, next, bit,
1472 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001473 return 0;
1474
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001475 bit++; /* _READ */
1476
Peter Zijlstra8e182572007-07-19 01:48:54 -07001477 /*
1478 * Prove that the new dependency does not connect a hardirq-safe-read
1479 * lock with a hardirq-unsafe lock - to achieve this we search
1480 * the backwards-subgraph starting at <prev>, and the
1481 * forwards-subgraph starting at <next>:
1482 */
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001483 if (!check_usage(curr, prev, next, bit,
1484 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001485 return 0;
1486
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001487 return 1;
1488}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001489
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001490static int
1491check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1492 struct held_lock *next)
1493{
1494#define LOCKDEP_STATE(__STATE) \
1495 if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \
Nick Piggincf40bd12009-01-21 08:12:39 +01001496 return 0;
Peter Zijlstra4f367d82009-01-22 18:10:42 +01001497#include "lockdep_states.h"
1498#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01001499
Peter Zijlstra8e182572007-07-19 01:48:54 -07001500 return 1;
1501}
1502
1503static void inc_chains(void)
1504{
1505 if (current->hardirq_context)
1506 nr_hardirq_chains++;
1507 else {
1508 if (current->softirq_context)
1509 nr_softirq_chains++;
1510 else
1511 nr_process_chains++;
1512 }
1513}
1514
1515#else
1516
1517static inline int
1518check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1519 struct held_lock *next)
1520{
1521 return 1;
1522}
1523
1524static inline void inc_chains(void)
1525{
1526 nr_process_chains++;
1527}
1528
1529#endif
1530
1531static int
1532print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1533 struct held_lock *next)
1534{
1535 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1536 return 0;
1537
1538 printk("\n=============================================\n");
1539 printk( "[ INFO: possible recursive locking detected ]\n");
1540 print_kernel_version();
1541 printk( "---------------------------------------------\n");
1542 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001543 curr->comm, task_pid_nr(curr));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001544 print_lock(next);
1545 printk("\nbut task is already holding lock:\n");
1546 print_lock(prev);
1547
1548 printk("\nother info that might help us debug this:\n");
1549 lockdep_print_held_locks(curr);
1550
1551 printk("\nstack backtrace:\n");
1552 dump_stack();
1553
1554 return 0;
1555}
1556
1557/*
1558 * Check whether we are holding such a class already.
1559 *
1560 * (Note that this has to be done separately, because the graph cannot
1561 * detect such classes of deadlocks.)
1562 *
1563 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1564 */
1565static int
1566check_deadlock(struct task_struct *curr, struct held_lock *next,
1567 struct lockdep_map *next_instance, int read)
1568{
1569 struct held_lock *prev;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001570 struct held_lock *nest = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001571 int i;
1572
1573 for (i = 0; i < curr->lockdep_depth; i++) {
1574 prev = curr->held_locks + i;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001575
1576 if (prev->instance == next->nest_lock)
1577 nest = prev;
1578
Dave Jonesf82b2172008-08-11 09:30:23 +02001579 if (hlock_class(prev) != hlock_class(next))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001580 continue;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001581
Peter Zijlstra8e182572007-07-19 01:48:54 -07001582 /*
1583 * Allow read-after-read recursion of the same
1584 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1585 */
1586 if ((read == 2) && prev->read)
1587 return 2;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001588
1589 /*
1590 * We're holding the nest_lock, which serializes this lock's
1591 * nesting behaviour.
1592 */
1593 if (nest)
1594 return 2;
1595
Peter Zijlstra8e182572007-07-19 01:48:54 -07001596 return print_deadlock_bug(curr, prev, next);
1597 }
1598 return 1;
1599}
1600
1601/*
1602 * There was a chain-cache miss, and we are about to add a new dependency
1603 * to a previous lock. We recursively validate the following rules:
1604 *
1605 * - would the adding of the <prev> -> <next> dependency create a
1606 * circular dependency in the graph? [== circular deadlock]
1607 *
1608 * - does the new prev->next dependency connect any hardirq-safe lock
1609 * (in the full backwards-subgraph starting at <prev>) with any
1610 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1611 * <next>)? [== illegal lock inversion with hardirq contexts]
1612 *
1613 * - does the new prev->next dependency connect any softirq-safe lock
1614 * (in the full backwards-subgraph starting at <prev>) with any
1615 * softirq-unsafe lock (in the full forwards-subgraph starting at
1616 * <next>)? [== illegal lock inversion with softirq contexts]
1617 *
1618 * any of these scenarios could lead to a deadlock.
1619 *
1620 * Then if all the validations pass, we add the forwards and backwards
1621 * dependency.
1622 */
1623static int
1624check_prev_add(struct task_struct *curr, struct held_lock *prev,
1625 struct held_lock *next, int distance)
1626{
1627 struct lock_list *entry;
1628 int ret;
Ming Leidb0002a2009-07-16 15:44:29 +02001629 struct lock_list this;
1630 struct lock_list *uninitialized_var(target_entry);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001631
1632 /*
1633 * Prove that the new <prev> -> <next> dependency would not
1634 * create a circular dependency in the graph. (We do this by
1635 * forward-recursing into the graph starting at <next>, and
1636 * checking whether we can reach <prev>.)
1637 *
1638 * We are using global variables to control the recursion, to
1639 * keep the stackframe size of the recursive functions low:
1640 */
Ming Leidb0002a2009-07-16 15:44:29 +02001641 this.class = hlock_class(next);
1642 this.parent = NULL;
1643 ret = check_noncircular(&this, hlock_class(prev), &target_entry);
1644 if (unlikely(!ret))
1645 return print_circular_bug(&this, target_entry, next, prev);
1646 else if (unlikely(ret < 0))
1647 return print_bfs_bug(ret);
Ming Leic94aa5c2009-07-16 15:44:29 +02001648
Peter Zijlstra8e182572007-07-19 01:48:54 -07001649 if (!check_prev_add_irq(curr, prev, next))
1650 return 0;
1651
1652 /*
1653 * For recursive read-locks we do all the dependency checks,
1654 * but we dont store read-triggered dependencies (only
1655 * write-triggered dependencies). This ensures that only the
1656 * write-side dependencies matter, and that if for example a
1657 * write-lock never takes any other locks, then the reads are
1658 * equivalent to a NOP.
1659 */
1660 if (next->read == 2 || prev->read == 2)
1661 return 1;
1662 /*
1663 * Is the <prev> -> <next> dependency already present?
1664 *
1665 * (this may occur even though this is a new chain: consider
1666 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1667 * chains - the second one will be new, but L1 already has
1668 * L2 added to its dependency list, due to the first chain.)
1669 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001670 list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1671 if (entry->class == hlock_class(next)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001672 if (distance == 1)
1673 entry->distance = 1;
1674 return 2;
1675 }
1676 }
1677
1678 /*
1679 * Ok, all validations passed, add the new lock
1680 * to the previous lock's dependency list:
1681 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001682 ret = add_lock_to_list(hlock_class(prev), hlock_class(next),
1683 &hlock_class(prev)->locks_after,
1684 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001685
1686 if (!ret)
1687 return 0;
1688
Dave Jonesf82b2172008-08-11 09:30:23 +02001689 ret = add_lock_to_list(hlock_class(next), hlock_class(prev),
1690 &hlock_class(next)->locks_before,
1691 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001692 if (!ret)
1693 return 0;
1694
1695 /*
1696 * Debugging printouts:
1697 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001698 if (verbose(hlock_class(prev)) || verbose(hlock_class(next))) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001699 graph_unlock();
1700 printk("\n new dependency: ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001701 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001702 printk(" => ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001703 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001704 printk("\n");
1705 dump_stack();
1706 return graph_lock();
1707 }
1708 return 1;
1709}
1710
1711/*
1712 * Add the dependency to all directly-previous locks that are 'relevant'.
1713 * The ones that are relevant are (in increasing distance from curr):
1714 * all consecutive trylock entries and the final non-trylock entry - or
1715 * the end of this context's lock-chain - whichever comes first.
1716 */
1717static int
1718check_prevs_add(struct task_struct *curr, struct held_lock *next)
1719{
1720 int depth = curr->lockdep_depth;
1721 struct held_lock *hlock;
1722
1723 /*
1724 * Debugging checks.
1725 *
1726 * Depth must not be zero for a non-head lock:
1727 */
1728 if (!depth)
1729 goto out_bug;
1730 /*
1731 * At least two relevant locks must exist for this
1732 * to be a head:
1733 */
1734 if (curr->held_locks[depth].irq_context !=
1735 curr->held_locks[depth-1].irq_context)
1736 goto out_bug;
1737
1738 for (;;) {
1739 int distance = curr->lockdep_depth - depth + 1;
1740 hlock = curr->held_locks + depth-1;
1741 /*
1742 * Only non-recursive-read entries get new dependencies
1743 * added:
1744 */
1745 if (hlock->read != 2) {
1746 if (!check_prev_add(curr, hlock, next, distance))
1747 return 0;
1748 /*
1749 * Stop after the first non-trylock entry,
1750 * as non-trylock entries have added their
1751 * own direct dependencies already, so this
1752 * lock is connected to them indirectly:
1753 */
1754 if (!hlock->trylock)
1755 break;
1756 }
1757 depth--;
1758 /*
1759 * End of lock-stack?
1760 */
1761 if (!depth)
1762 break;
1763 /*
1764 * Stop the search if we cross into another context:
1765 */
1766 if (curr->held_locks[depth].irq_context !=
1767 curr->held_locks[depth-1].irq_context)
1768 break;
1769 }
1770 return 1;
1771out_bug:
1772 if (!debug_locks_off_graph_unlock())
1773 return 0;
1774
1775 WARN_ON(1);
1776
1777 return 0;
1778}
1779
1780unsigned long nr_lock_chains;
Huang, Ying443cd502008-06-20 16:39:21 +08001781struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001782int nr_chain_hlocks;
Huang, Ying443cd502008-06-20 16:39:21 +08001783static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
1784
1785struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
1786{
1787 return lock_classes + chain_hlocks[chain->base + i];
1788}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001789
1790/*
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001791 * Look up a dependency chain. If the key is not present yet then
Jarek Poplawski9e860d02007-05-08 00:30:12 -07001792 * add it and return 1 - in this case the new dependency chain is
1793 * validated. If the key is already hashed, return 0.
1794 * (On return with 1 graph_lock is held.)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001795 */
Huang, Ying443cd502008-06-20 16:39:21 +08001796static inline int lookup_chain_cache(struct task_struct *curr,
1797 struct held_lock *hlock,
1798 u64 chain_key)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001799{
Dave Jonesf82b2172008-08-11 09:30:23 +02001800 struct lock_class *class = hlock_class(hlock);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001801 struct list_head *hash_head = chainhashentry(chain_key);
1802 struct lock_chain *chain;
Huang, Ying443cd502008-06-20 16:39:21 +08001803 struct held_lock *hlock_curr, *hlock_next;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001804 int i, j, n, cn;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001805
Jarek Poplawski381a2292007-02-10 01:44:58 -08001806 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1807 return 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001808 /*
1809 * We can walk it lock-free, because entries only get added
1810 * to the hash:
1811 */
1812 list_for_each_entry(chain, hash_head, entry) {
1813 if (chain->chain_key == chain_key) {
1814cache_hit:
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02001815 debug_atomic_inc(chain_lookup_hits);
Ingo Molnar81fc6852006-12-13 00:34:40 -08001816 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001817 printk("\nhash chain already cached, key: "
1818 "%016Lx tail class: [%p] %s\n",
1819 (unsigned long long)chain_key,
1820 class->key, class->name);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001821 return 0;
1822 }
1823 }
Ingo Molnar81fc6852006-12-13 00:34:40 -08001824 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001825 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1826 (unsigned long long)chain_key, class->key, class->name);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001827 /*
1828 * Allocate a new chain entry from the static array, and add
1829 * it to the hash:
1830 */
Ingo Molnar74c383f2006-12-13 00:34:43 -08001831 if (!graph_lock())
1832 return 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001833 /*
1834 * We have to walk the chain again locked - to avoid duplicates:
1835 */
1836 list_for_each_entry(chain, hash_head, entry) {
1837 if (chain->chain_key == chain_key) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001838 graph_unlock();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001839 goto cache_hit;
1840 }
1841 }
1842 if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001843 if (!debug_locks_off_graph_unlock())
1844 return 0;
1845
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001846 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1847 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01001848 dump_stack();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001849 return 0;
1850 }
1851 chain = lock_chains + nr_lock_chains++;
1852 chain->chain_key = chain_key;
Huang, Ying443cd502008-06-20 16:39:21 +08001853 chain->irq_context = hlock->irq_context;
1854 /* Find the first held_lock of current chain */
1855 hlock_next = hlock;
1856 for (i = curr->lockdep_depth - 1; i >= 0; i--) {
1857 hlock_curr = curr->held_locks + i;
1858 if (hlock_curr->irq_context != hlock_next->irq_context)
1859 break;
1860 hlock_next = hlock;
1861 }
1862 i++;
1863 chain->depth = curr->lockdep_depth + 1 - i;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001864 cn = nr_chain_hlocks;
1865 while (cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS) {
1866 n = cmpxchg(&nr_chain_hlocks, cn, cn + chain->depth);
1867 if (n == cn)
1868 break;
1869 cn = n;
1870 }
1871 if (likely(cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
1872 chain->base = cn;
Huang, Ying443cd502008-06-20 16:39:21 +08001873 for (j = 0; j < chain->depth - 1; j++, i++) {
Dave Jonesf82b2172008-08-11 09:30:23 +02001874 int lock_id = curr->held_locks[i].class_idx - 1;
Huang, Ying443cd502008-06-20 16:39:21 +08001875 chain_hlocks[chain->base + j] = lock_id;
1876 }
1877 chain_hlocks[chain->base + j] = class - lock_classes;
1878 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001879 list_add_tail_rcu(&chain->entry, hash_head);
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02001880 debug_atomic_inc(chain_lookup_misses);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001881 inc_chains();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001882
1883 return 1;
1884}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001885
1886static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
Johannes Berg4e6045f2007-10-18 23:39:55 -07001887 struct held_lock *hlock, int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001888{
1889 /*
1890 * Trylock needs to maintain the stack of held locks, but it
1891 * does not add new dependencies, because trylock can be done
1892 * in any order.
1893 *
1894 * We look up the chain_key and do the O(N^2) check and update of
1895 * the dependencies only if this is a new dependency chain.
1896 * (If lookup_chain_cache() returns with 1 it acquires
1897 * graph_lock for us)
1898 */
1899 if (!hlock->trylock && (hlock->check == 2) &&
Huang, Ying443cd502008-06-20 16:39:21 +08001900 lookup_chain_cache(curr, hlock, chain_key)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001901 /*
1902 * Check whether last held lock:
1903 *
1904 * - is irq-safe, if this lock is irq-unsafe
1905 * - is softirq-safe, if this lock is hardirq-unsafe
1906 *
1907 * And check whether the new lock's dependency graph
1908 * could lead back to the previous lock.
1909 *
1910 * any of these scenarios could lead to a deadlock. If
1911 * All validations
1912 */
1913 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1914
1915 if (!ret)
1916 return 0;
1917 /*
1918 * Mark recursive read, as we jump over it when
1919 * building dependencies (just like we jump over
1920 * trylock entries):
1921 */
1922 if (ret == 2)
1923 hlock->read = 2;
1924 /*
1925 * Add dependency only if this lock is not the head
1926 * of the chain, and if it's not a secondary read-lock:
1927 */
1928 if (!chain_head && ret != 2)
1929 if (!check_prevs_add(curr, hlock))
1930 return 0;
1931 graph_unlock();
1932 } else
1933 /* after lookup_chain_cache(): */
1934 if (unlikely(!debug_locks))
1935 return 0;
1936
1937 return 1;
1938}
1939#else
1940static inline int validate_chain(struct task_struct *curr,
1941 struct lockdep_map *lock, struct held_lock *hlock,
Gregory Haskins3aa416b2007-10-11 22:11:11 +02001942 int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001943{
1944 return 1;
1945}
Peter Zijlstraca58abc2007-07-19 01:48:53 -07001946#endif
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001947
1948/*
1949 * We are building curr_chain_key incrementally, so double-check
1950 * it from scratch, to make sure that it's done correctly:
1951 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02001952static void check_chain_key(struct task_struct *curr)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001953{
1954#ifdef CONFIG_DEBUG_LOCKDEP
1955 struct held_lock *hlock, *prev_hlock = NULL;
1956 unsigned int i, id;
1957 u64 chain_key = 0;
1958
1959 for (i = 0; i < curr->lockdep_depth; i++) {
1960 hlock = curr->held_locks + i;
1961 if (chain_key != hlock->prev_chain_key) {
1962 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07001963 WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001964 curr->lockdep_depth, i,
1965 (unsigned long long)chain_key,
1966 (unsigned long long)hlock->prev_chain_key);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001967 return;
1968 }
Dave Jonesf82b2172008-08-11 09:30:23 +02001969 id = hlock->class_idx - 1;
Jarek Poplawski381a2292007-02-10 01:44:58 -08001970 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1971 return;
1972
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001973 if (prev_hlock && (prev_hlock->irq_context !=
1974 hlock->irq_context))
1975 chain_key = 0;
1976 chain_key = iterate_chain_key(chain_key, id);
1977 prev_hlock = hlock;
1978 }
1979 if (chain_key != curr->curr_chain_key) {
1980 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07001981 WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001982 curr->lockdep_depth, i,
1983 (unsigned long long)chain_key,
1984 (unsigned long long)curr->curr_chain_key);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07001985 }
1986#endif
1987}
1988
Peter Zijlstra8e182572007-07-19 01:48:54 -07001989static int
1990print_usage_bug(struct task_struct *curr, struct held_lock *this,
1991 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
1992{
1993 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1994 return 0;
1995
1996 printk("\n=================================\n");
1997 printk( "[ INFO: inconsistent lock state ]\n");
1998 print_kernel_version();
1999 printk( "---------------------------------\n");
2000
2001 printk("inconsistent {%s} -> {%s} usage.\n",
2002 usage_str[prev_bit], usage_str[new_bit]);
2003
2004 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002005 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07002006 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
2007 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
2008 trace_hardirqs_enabled(curr),
2009 trace_softirqs_enabled(curr));
2010 print_lock(this);
2011
2012 printk("{%s} state was registered at:\n", usage_str[prev_bit]);
Dave Jonesf82b2172008-08-11 09:30:23 +02002013 print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07002014
2015 print_irqtrace_events(curr);
2016 printk("\nother info that might help us debug this:\n");
2017 lockdep_print_held_locks(curr);
2018
2019 printk("\nstack backtrace:\n");
2020 dump_stack();
2021
2022 return 0;
2023}
2024
2025/*
2026 * Print out an error if an invalid bit is set:
2027 */
2028static inline int
2029valid_state(struct task_struct *curr, struct held_lock *this,
2030 enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
2031{
Dave Jonesf82b2172008-08-11 09:30:23 +02002032 if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002033 return print_usage_bug(curr, this, bad_bit, new_bit);
2034 return 1;
2035}
2036
2037static int mark_lock(struct task_struct *curr, struct held_lock *this,
2038 enum lock_usage_bit new_bit);
2039
Steven Rostedt81d68a92008-05-12 21:20:42 +02002040#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002041
2042/*
2043 * print irq inversion bug:
2044 */
2045static int
Ming Lei24208ca2009-07-16 15:44:29 +02002046print_irq_inversion_bug(struct task_struct *curr,
2047 struct lock_list *root, struct lock_list *other,
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002048 struct held_lock *this, int forwards,
2049 const char *irqclass)
2050{
Ingo Molnar74c383f2006-12-13 00:34:43 -08002051 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002052 return 0;
2053
2054 printk("\n=========================================================\n");
2055 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
Dave Jones99de0552006-09-29 02:00:10 -07002056 print_kernel_version();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002057 printk( "---------------------------------------------------------\n");
2058 printk("%s/%d just changed the state of lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002059 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002060 print_lock(this);
2061 if (forwards)
Peter Zijlstra26575e22009-03-04 14:53:24 +01002062 printk("but this lock took another, %s-unsafe lock in the past:\n", irqclass);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002063 else
Peter Zijlstra26575e22009-03-04 14:53:24 +01002064 printk("but this lock was taken by another, %s-safe lock in the past:\n", irqclass);
Ming Lei24208ca2009-07-16 15:44:29 +02002065 print_lock_name(other->class);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002066 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2067
2068 printk("\nother info that might help us debug this:\n");
2069 lockdep_print_held_locks(curr);
2070
Ming Lei24208ca2009-07-16 15:44:29 +02002071 printk("\nthe shortest dependencies between 2nd lock and 1st lock:\n");
2072 if (!save_trace(&root->trace))
2073 return 0;
2074 print_shortest_lock_dependencies(other, root);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002075
2076 printk("\nstack backtrace:\n");
2077 dump_stack();
2078
2079 return 0;
2080}
2081
2082/*
2083 * Prove that in the forwards-direction subgraph starting at <this>
2084 * there is no lock matching <mask>:
2085 */
2086static int
2087check_usage_forwards(struct task_struct *curr, struct held_lock *this,
2088 enum lock_usage_bit bit, const char *irqclass)
2089{
2090 int ret;
Ming Leid7aaba12009-07-16 15:44:29 +02002091 struct lock_list root;
2092 struct lock_list *uninitialized_var(target_entry);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002093
Ming Leid7aaba12009-07-16 15:44:29 +02002094 root.parent = NULL;
2095 root.class = hlock_class(this);
2096 ret = find_usage_forwards(&root, bit, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02002097 if (ret < 0)
2098 return print_bfs_bug(ret);
2099 if (ret == 1)
2100 return ret;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002101
Ming Lei24208ca2009-07-16 15:44:29 +02002102 return print_irq_inversion_bug(curr, &root, target_entry,
Ming Leid7aaba12009-07-16 15:44:29 +02002103 this, 1, irqclass);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002104}
2105
2106/*
2107 * Prove that in the backwards-direction subgraph starting at <this>
2108 * there is no lock matching <mask>:
2109 */
2110static int
2111check_usage_backwards(struct task_struct *curr, struct held_lock *this,
2112 enum lock_usage_bit bit, const char *irqclass)
2113{
2114 int ret;
Ming Leid7aaba12009-07-16 15:44:29 +02002115 struct lock_list root;
2116 struct lock_list *uninitialized_var(target_entry);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002117
Ming Leid7aaba12009-07-16 15:44:29 +02002118 root.parent = NULL;
2119 root.class = hlock_class(this);
2120 ret = find_usage_backwards(&root, bit, &target_entry);
Peter Zijlstraaf012962009-07-16 15:44:29 +02002121 if (ret < 0)
2122 return print_bfs_bug(ret);
2123 if (ret == 1)
2124 return ret;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002125
Ming Lei24208ca2009-07-16 15:44:29 +02002126 return print_irq_inversion_bug(curr, &root, target_entry,
Oleg Nesterov48d50672010-01-26 19:16:41 +01002127 this, 0, irqclass);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002128}
2129
Ingo Molnar3117df02006-12-13 00:34:43 -08002130void print_irqtrace_events(struct task_struct *curr)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002131{
2132 printk("irq event stamp: %u\n", curr->irq_events);
2133 printk("hardirqs last enabled at (%u): ", curr->hardirq_enable_event);
2134 print_ip_sym(curr->hardirq_enable_ip);
2135 printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
2136 print_ip_sym(curr->hardirq_disable_ip);
2137 printk("softirqs last enabled at (%u): ", curr->softirq_enable_event);
2138 print_ip_sym(curr->softirq_enable_ip);
2139 printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
2140 print_ip_sym(curr->softirq_disable_ip);
2141}
2142
Peter Zijlstracd953022009-01-22 16:38:21 +01002143static int HARDIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002144{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002145#if HARDIRQ_VERBOSE
2146 return class_filter(class);
2147#endif
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002148 return 0;
2149}
2150
Peter Zijlstracd953022009-01-22 16:38:21 +01002151static int SOFTIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002152{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002153#if SOFTIRQ_VERBOSE
2154 return class_filter(class);
2155#endif
2156 return 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002157}
2158
Peter Zijlstracd953022009-01-22 16:38:21 +01002159static int RECLAIM_FS_verbose(struct lock_class *class)
Nick Piggincf40bd12009-01-21 08:12:39 +01002160{
2161#if RECLAIM_VERBOSE
2162 return class_filter(class);
2163#endif
2164 return 0;
2165}
2166
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002167#define STRICT_READ_CHECKS 1
2168
Peter Zijlstracd953022009-01-22 16:38:21 +01002169static int (*state_verbose_f[])(struct lock_class *class) = {
2170#define LOCKDEP_STATE(__STATE) \
2171 __STATE##_verbose,
2172#include "lockdep_states.h"
2173#undef LOCKDEP_STATE
2174};
2175
2176static inline int state_verbose(enum lock_usage_bit bit,
2177 struct lock_class *class)
2178{
2179 return state_verbose_f[bit >> 2](class);
2180}
2181
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002182typedef int (*check_usage_f)(struct task_struct *, struct held_lock *,
2183 enum lock_usage_bit bit, const char *name);
2184
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002185static int
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002186mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2187 enum lock_usage_bit new_bit)
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002188{
Peter Zijlstraf9892092009-01-22 16:09:59 +01002189 int excl_bit = exclusive_bit(new_bit);
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002190 int read = new_bit & 1;
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002191 int dir = new_bit & 2;
2192
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002193 /*
2194 * mark USED_IN has to look forwards -- to ensure no dependency
2195 * has ENABLED state, which would allow recursion deadlocks.
2196 *
2197 * mark ENABLED has to look backwards -- to ensure no dependee
2198 * has USED_IN state, which, again, would allow recursion deadlocks.
2199 */
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002200 check_usage_f usage = dir ?
2201 check_usage_backwards : check_usage_forwards;
Peter Zijlstraf9892092009-01-22 16:09:59 +01002202
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002203 /*
2204 * Validate that this particular lock does not have conflicting
2205 * usage states.
2206 */
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002207 if (!valid_state(curr, this, new_bit, excl_bit))
2208 return 0;
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002209
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002210 /*
2211 * Validate that the lock dependencies don't have conflicting usage
2212 * states.
2213 */
2214 if ((!read || !dir || STRICT_READ_CHECKS) &&
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002215 !usage(curr, this, excl_bit, state_name(new_bit & ~1)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002216 return 0;
Peter Zijlstra780e8202009-01-22 16:51:29 +01002217
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002218 /*
2219 * Check for read in write conflicts
2220 */
2221 if (!read) {
2222 if (!valid_state(curr, this, new_bit, excl_bit + 1))
2223 return 0;
2224
2225 if (STRICT_READ_CHECKS &&
Peter Zijlstra4f367d82009-01-22 18:10:42 +01002226 !usage(curr, this, excl_bit + 1,
2227 state_name(new_bit + 1)))
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002228 return 0;
2229 }
Peter Zijlstra780e8202009-01-22 16:51:29 +01002230
Peter Zijlstracd953022009-01-22 16:38:21 +01002231 if (state_verbose(new_bit, hlock_class(this)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002232 return 2;
2233
2234 return 1;
2235}
2236
Nick Piggincf40bd12009-01-21 08:12:39 +01002237enum mark_type {
Peter Zijlstra36bfb9b2009-01-22 14:12:41 +01002238#define LOCKDEP_STATE(__STATE) __STATE,
2239#include "lockdep_states.h"
2240#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01002241};
2242
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002243/*
2244 * Mark all held locks with a usage bit:
2245 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002246static int
Nick Piggincf40bd12009-01-21 08:12:39 +01002247mark_held_locks(struct task_struct *curr, enum mark_type mark)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002248{
2249 enum lock_usage_bit usage_bit;
2250 struct held_lock *hlock;
2251 int i;
2252
2253 for (i = 0; i < curr->lockdep_depth; i++) {
2254 hlock = curr->held_locks + i;
2255
Peter Zijlstracf2ad4d2009-01-27 13:58:08 +01002256 usage_bit = 2 + (mark << 2); /* ENABLED */
2257 if (hlock->read)
2258 usage_bit += 1; /* READ */
2259
2260 BUG_ON(usage_bit >= LOCK_USAGE_STATES);
Nick Piggincf40bd12009-01-21 08:12:39 +01002261
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002262 if (!mark_lock(curr, hlock, usage_bit))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002263 return 0;
2264 }
2265
2266 return 1;
2267}
2268
2269/*
2270 * Debugging helper: via this flag we know that we are in
2271 * 'early bootup code', and will warn about any invalid irqs-on event:
2272 */
2273static int early_boot_irqs_enabled;
2274
2275void early_boot_irqs_off(void)
2276{
2277 early_boot_irqs_enabled = 0;
2278}
2279
2280void early_boot_irqs_on(void)
2281{
2282 early_boot_irqs_enabled = 1;
2283}
2284
2285/*
2286 * Hardirqs will be enabled:
2287 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002288void trace_hardirqs_on_caller(unsigned long ip)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002289{
2290 struct task_struct *curr = current;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002291
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002292 time_hardirqs_on(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002293
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002294 if (unlikely(!debug_locks || current->lockdep_recursion))
2295 return;
2296
2297 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2298 return;
2299
2300 if (unlikely(curr->hardirqs_enabled)) {
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002301 debug_atomic_inc(redundant_hardirqs_on);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002302 return;
2303 }
2304 /* we'll do an OFF -> ON transition: */
2305 curr->hardirqs_enabled = 1;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002306
2307 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2308 return;
2309 if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2310 return;
2311 /*
2312 * We are going to turn hardirqs on, so set the
2313 * usage bit for all held locks:
2314 */
Nick Piggincf40bd12009-01-21 08:12:39 +01002315 if (!mark_held_locks(curr, HARDIRQ))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002316 return;
2317 /*
2318 * If we have softirqs enabled, then set the usage
2319 * bit for all held locks. (disabled hardirqs prevented
2320 * this bit from being set before)
2321 */
2322 if (curr->softirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002323 if (!mark_held_locks(curr, SOFTIRQ))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002324 return;
2325
2326 curr->hardirq_enable_ip = ip;
2327 curr->hardirq_enable_event = ++curr->irq_events;
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002328 debug_atomic_inc(hardirqs_on_events);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002329}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002330EXPORT_SYMBOL(trace_hardirqs_on_caller);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002331
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002332void trace_hardirqs_on(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002333{
2334 trace_hardirqs_on_caller(CALLER_ADDR0);
2335}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002336EXPORT_SYMBOL(trace_hardirqs_on);
2337
2338/*
2339 * Hardirqs were disabled:
2340 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002341void trace_hardirqs_off_caller(unsigned long ip)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002342{
2343 struct task_struct *curr = current;
2344
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002345 time_hardirqs_off(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002346
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002347 if (unlikely(!debug_locks || current->lockdep_recursion))
2348 return;
2349
2350 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2351 return;
2352
2353 if (curr->hardirqs_enabled) {
2354 /*
2355 * We have done an ON -> OFF transition:
2356 */
2357 curr->hardirqs_enabled = 0;
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002358 curr->hardirq_disable_ip = ip;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002359 curr->hardirq_disable_event = ++curr->irq_events;
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002360 debug_atomic_inc(hardirqs_off_events);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002361 } else
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002362 debug_atomic_inc(redundant_hardirqs_off);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002363}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002364EXPORT_SYMBOL(trace_hardirqs_off_caller);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002365
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002366void trace_hardirqs_off(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002367{
2368 trace_hardirqs_off_caller(CALLER_ADDR0);
2369}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002370EXPORT_SYMBOL(trace_hardirqs_off);
2371
2372/*
2373 * Softirqs will be enabled:
2374 */
2375void trace_softirqs_on(unsigned long ip)
2376{
2377 struct task_struct *curr = current;
2378
2379 if (unlikely(!debug_locks))
2380 return;
2381
2382 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2383 return;
2384
2385 if (curr->softirqs_enabled) {
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002386 debug_atomic_inc(redundant_softirqs_on);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002387 return;
2388 }
2389
2390 /*
2391 * We'll do an OFF -> ON transition:
2392 */
2393 curr->softirqs_enabled = 1;
2394 curr->softirq_enable_ip = ip;
2395 curr->softirq_enable_event = ++curr->irq_events;
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002396 debug_atomic_inc(softirqs_on_events);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002397 /*
2398 * We are going to turn softirqs on, so set the
2399 * usage bit for all held locks, if hardirqs are
2400 * enabled too:
2401 */
2402 if (curr->hardirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002403 mark_held_locks(curr, SOFTIRQ);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002404}
2405
2406/*
2407 * Softirqs were disabled:
2408 */
2409void trace_softirqs_off(unsigned long ip)
2410{
2411 struct task_struct *curr = current;
2412
2413 if (unlikely(!debug_locks))
2414 return;
2415
2416 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2417 return;
2418
2419 if (curr->softirqs_enabled) {
2420 /*
2421 * We have done an ON -> OFF transition:
2422 */
2423 curr->softirqs_enabled = 0;
2424 curr->softirq_disable_ip = ip;
2425 curr->softirq_disable_event = ++curr->irq_events;
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002426 debug_atomic_inc(softirqs_off_events);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002427 DEBUG_LOCKS_WARN_ON(!softirq_count());
2428 } else
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002429 debug_atomic_inc(redundant_softirqs_off);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002430}
2431
Peter Zijlstra2f850182009-03-20 11:13:20 +01002432static void __lockdep_trace_alloc(gfp_t gfp_mask, unsigned long flags)
Nick Piggincf40bd12009-01-21 08:12:39 +01002433{
2434 struct task_struct *curr = current;
2435
2436 if (unlikely(!debug_locks))
2437 return;
2438
2439 /* no reclaim without waiting on it */
2440 if (!(gfp_mask & __GFP_WAIT))
2441 return;
2442
2443 /* this guy won't enter reclaim */
2444 if ((curr->flags & PF_MEMALLOC) && !(gfp_mask & __GFP_NOMEMALLOC))
2445 return;
2446
2447 /* We're only interested __GFP_FS allocations for now */
2448 if (!(gfp_mask & __GFP_FS))
2449 return;
2450
Peter Zijlstra2f850182009-03-20 11:13:20 +01002451 if (DEBUG_LOCKS_WARN_ON(irqs_disabled_flags(flags)))
Nick Piggincf40bd12009-01-21 08:12:39 +01002452 return;
2453
2454 mark_held_locks(curr, RECLAIM_FS);
2455}
2456
Peter Zijlstra2f850182009-03-20 11:13:20 +01002457static void check_flags(unsigned long flags);
2458
2459void lockdep_trace_alloc(gfp_t gfp_mask)
2460{
2461 unsigned long flags;
2462
2463 if (unlikely(current->lockdep_recursion))
2464 return;
2465
2466 raw_local_irq_save(flags);
2467 check_flags(flags);
2468 current->lockdep_recursion = 1;
2469 __lockdep_trace_alloc(gfp_mask, flags);
2470 current->lockdep_recursion = 0;
2471 raw_local_irq_restore(flags);
2472}
2473
Peter Zijlstra8e182572007-07-19 01:48:54 -07002474static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2475{
2476 /*
2477 * If non-trylock use in a hardirq or softirq context, then
2478 * mark the lock as used in these contexts:
2479 */
2480 if (!hlock->trylock) {
2481 if (hlock->read) {
2482 if (curr->hardirq_context)
2483 if (!mark_lock(curr, hlock,
2484 LOCK_USED_IN_HARDIRQ_READ))
2485 return 0;
2486 if (curr->softirq_context)
2487 if (!mark_lock(curr, hlock,
2488 LOCK_USED_IN_SOFTIRQ_READ))
2489 return 0;
2490 } else {
2491 if (curr->hardirq_context)
2492 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2493 return 0;
2494 if (curr->softirq_context)
2495 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2496 return 0;
2497 }
2498 }
2499 if (!hlock->hardirqs_off) {
2500 if (hlock->read) {
2501 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002502 LOCK_ENABLED_HARDIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002503 return 0;
2504 if (curr->softirqs_enabled)
2505 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002506 LOCK_ENABLED_SOFTIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002507 return 0;
2508 } else {
2509 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002510 LOCK_ENABLED_HARDIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002511 return 0;
2512 if (curr->softirqs_enabled)
2513 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002514 LOCK_ENABLED_SOFTIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002515 return 0;
2516 }
2517 }
2518
Nick Piggincf40bd12009-01-21 08:12:39 +01002519 /*
2520 * We reuse the irq context infrastructure more broadly as a general
2521 * context checking code. This tests GFP_FS recursion (a lock taken
2522 * during reclaim for a GFP_FS allocation is held over a GFP_FS
2523 * allocation).
2524 */
2525 if (!hlock->trylock && (curr->lockdep_reclaim_gfp & __GFP_FS)) {
2526 if (hlock->read) {
2527 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS_READ))
2528 return 0;
2529 } else {
2530 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS))
2531 return 0;
2532 }
2533 }
2534
Peter Zijlstra8e182572007-07-19 01:48:54 -07002535 return 1;
2536}
2537
2538static int separate_irq_context(struct task_struct *curr,
2539 struct held_lock *hlock)
2540{
2541 unsigned int depth = curr->lockdep_depth;
2542
2543 /*
2544 * Keep track of points where we cross into an interrupt context:
2545 */
2546 hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2547 curr->softirq_context;
2548 if (depth) {
2549 struct held_lock *prev_hlock;
2550
2551 prev_hlock = curr->held_locks + depth-1;
2552 /*
2553 * If we cross into another context, reset the
2554 * hash key (this also prevents the checking and the
2555 * adding of the dependency to 'prev'):
2556 */
2557 if (prev_hlock->irq_context != hlock->irq_context)
2558 return 1;
2559 }
2560 return 0;
2561}
2562
2563#else
2564
2565static inline
2566int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2567 enum lock_usage_bit new_bit)
2568{
2569 WARN_ON(1);
2570 return 1;
2571}
2572
2573static inline int mark_irqflags(struct task_struct *curr,
2574 struct held_lock *hlock)
2575{
2576 return 1;
2577}
2578
2579static inline int separate_irq_context(struct task_struct *curr,
2580 struct held_lock *hlock)
2581{
2582 return 0;
2583}
2584
Peter Zijlstra868a23a2009-02-15 00:25:21 +01002585void lockdep_trace_alloc(gfp_t gfp_mask)
2586{
2587}
2588
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002589#endif
2590
2591/*
Peter Zijlstra8e182572007-07-19 01:48:54 -07002592 * Mark a lock with a usage bit, and validate the state transition:
2593 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002594static int mark_lock(struct task_struct *curr, struct held_lock *this,
Steven Rostedt0764d232008-05-12 21:20:44 +02002595 enum lock_usage_bit new_bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07002596{
2597 unsigned int new_mask = 1 << new_bit, ret = 1;
2598
2599 /*
2600 * If already set then do not dirty the cacheline,
2601 * nor do any checks:
2602 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002603 if (likely(hlock_class(this)->usage_mask & new_mask))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002604 return 1;
2605
2606 if (!graph_lock())
2607 return 0;
2608 /*
2609 * Make sure we didnt race:
2610 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002611 if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07002612 graph_unlock();
2613 return 1;
2614 }
2615
Dave Jonesf82b2172008-08-11 09:30:23 +02002616 hlock_class(this)->usage_mask |= new_mask;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002617
Dave Jonesf82b2172008-08-11 09:30:23 +02002618 if (!save_trace(hlock_class(this)->usage_traces + new_bit))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002619 return 0;
2620
2621 switch (new_bit) {
Peter Zijlstra53464172009-01-22 14:15:53 +01002622#define LOCKDEP_STATE(__STATE) \
2623 case LOCK_USED_IN_##__STATE: \
2624 case LOCK_USED_IN_##__STATE##_READ: \
2625 case LOCK_ENABLED_##__STATE: \
2626 case LOCK_ENABLED_##__STATE##_READ:
2627#include "lockdep_states.h"
2628#undef LOCKDEP_STATE
Peter Zijlstra8e182572007-07-19 01:48:54 -07002629 ret = mark_lock_irq(curr, this, new_bit);
2630 if (!ret)
2631 return 0;
2632 break;
2633 case LOCK_USED:
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002634 debug_atomic_dec(nr_unused_locks);
Peter Zijlstra8e182572007-07-19 01:48:54 -07002635 break;
2636 default:
2637 if (!debug_locks_off_graph_unlock())
2638 return 0;
2639 WARN_ON(1);
2640 return 0;
2641 }
2642
2643 graph_unlock();
2644
2645 /*
2646 * We must printk outside of the graph_lock:
2647 */
2648 if (ret == 2) {
2649 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2650 print_lock(this);
2651 print_irqtrace_events(curr);
2652 dump_stack();
2653 }
2654
2655 return ret;
2656}
2657
2658/*
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002659 * Initialize a lock instance's lock-class mapping info:
2660 */
2661void lockdep_init_map(struct lockdep_map *lock, const char *name,
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002662 struct lock_class_key *key, int subclass)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002663{
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002664 lock->class_cache = NULL;
2665#ifdef CONFIG_LOCK_STAT
2666 lock->cpu = raw_smp_processor_id();
2667#endif
2668
2669 if (DEBUG_LOCKS_WARN_ON(!name)) {
2670 lock->name = "NULL";
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002671 return;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002672 }
2673
2674 lock->name = name;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002675
2676 if (DEBUG_LOCKS_WARN_ON(!key))
2677 return;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002678 /*
2679 * Sanity check, the lock-class key must be persistent:
2680 */
2681 if (!static_obj(key)) {
2682 printk("BUG: key %p not in .data!\n", key);
2683 DEBUG_LOCKS_WARN_ON(1);
2684 return;
2685 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002686 lock->key = key;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002687
2688 if (unlikely(!debug_locks))
2689 return;
2690
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002691 if (subclass)
2692 register_lock_class(lock, subclass, 1);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002693}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002694EXPORT_SYMBOL_GPL(lockdep_init_map);
2695
2696/*
2697 * This gets called for every mutex_lock*()/spin_lock*() operation.
2698 * We maintain the dependency maps and validate the locking attempt:
2699 */
2700static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2701 int trylock, int read, int check, int hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002702 struct lockdep_map *nest_lock, unsigned long ip,
2703 int references)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002704{
2705 struct task_struct *curr = current;
Ingo Molnard6d897c2006-07-10 04:44:04 -07002706 struct lock_class *class = NULL;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002707 struct held_lock *hlock;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002708 unsigned int depth, id;
2709 int chain_head = 0;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002710 int class_idx;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002711 u64 chain_key;
2712
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002713 if (!prove_locking)
2714 check = 1;
2715
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002716 if (unlikely(!debug_locks))
2717 return 0;
2718
2719 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2720 return 0;
2721
2722 if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2723 debug_locks_off();
2724 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2725 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002726 dump_stack();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002727 return 0;
2728 }
2729
Ingo Molnard6d897c2006-07-10 04:44:04 -07002730 if (!subclass)
2731 class = lock->class_cache;
2732 /*
2733 * Not cached yet or subclass?
2734 */
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002735 if (unlikely(!class)) {
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002736 class = register_lock_class(lock, subclass, 0);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002737 if (!class)
2738 return 0;
2739 }
Frederic Weisbeckerbd6d29c2010-04-06 00:10:17 +02002740 atomic_inc((atomic_t *)&class->ops);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002741 if (very_verbose(class)) {
2742 printk("\nacquire class [%p] %s", class->key, class->name);
2743 if (class->name_version > 1)
2744 printk("#%d", class->name_version);
2745 printk("\n");
2746 dump_stack();
2747 }
2748
2749 /*
2750 * Add the lock to the list of currently held locks.
2751 * (we dont increase the depth just yet, up until the
2752 * dependency checks are done)
2753 */
2754 depth = curr->lockdep_depth;
2755 if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2756 return 0;
2757
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002758 class_idx = class - lock_classes + 1;
2759
2760 if (depth) {
2761 hlock = curr->held_locks + depth - 1;
2762 if (hlock->class_idx == class_idx && nest_lock) {
2763 if (hlock->references)
2764 hlock->references++;
2765 else
2766 hlock->references = 2;
2767
2768 return 1;
2769 }
2770 }
2771
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002772 hlock = curr->held_locks + depth;
Dave Jonesf82b2172008-08-11 09:30:23 +02002773 if (DEBUG_LOCKS_WARN_ON(!class))
2774 return 0;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002775 hlock->class_idx = class_idx;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002776 hlock->acquire_ip = ip;
2777 hlock->instance = lock;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002778 hlock->nest_lock = nest_lock;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002779 hlock->trylock = trylock;
2780 hlock->read = read;
2781 hlock->check = check;
Dmitry Baryshkov6951b122008-08-18 04:26:37 +04002782 hlock->hardirqs_off = !!hardirqs_off;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002783 hlock->references = references;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002784#ifdef CONFIG_LOCK_STAT
2785 hlock->waittime_stamp = 0;
Peter Zijlstra3365e7792009-10-09 10:12:41 +02002786 hlock->holdtime_stamp = lockstat_clock();
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002787#endif
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002788
Peter Zijlstra8e182572007-07-19 01:48:54 -07002789 if (check == 2 && !mark_irqflags(curr, hlock))
2790 return 0;
2791
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002792 /* mark it as used: */
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002793 if (!mark_lock(curr, hlock, LOCK_USED))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002794 return 0;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002795
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002796 /*
Gautham R Shenoy17aacfb2007-10-28 20:47:01 +01002797 * Calculate the chain hash: it's the combined hash of all the
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002798 * lock keys along the dependency chain. We save the hash value
2799 * at every step so that we can get the current hash easily
2800 * after unlock. The chain hash is then used to cache dependency
2801 * results.
2802 *
2803 * The 'key ID' is what is the most compact key value to drive
2804 * the hash, not class->key.
2805 */
2806 id = class - lock_classes;
2807 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2808 return 0;
2809
2810 chain_key = curr->curr_chain_key;
2811 if (!depth) {
2812 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2813 return 0;
2814 chain_head = 1;
2815 }
2816
2817 hlock->prev_chain_key = chain_key;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002818 if (separate_irq_context(curr, hlock)) {
2819 chain_key = 0;
2820 chain_head = 1;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002821 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002822 chain_key = iterate_chain_key(chain_key, id);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002823
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002824 if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002825 return 0;
Jarek Poplawski381a2292007-02-10 01:44:58 -08002826
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002827 curr->curr_chain_key = chain_key;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002828 curr->lockdep_depth++;
2829 check_chain_key(curr);
Jarek Poplawski60e114d2007-02-20 13:58:00 -08002830#ifdef CONFIG_DEBUG_LOCKDEP
2831 if (unlikely(!debug_locks))
2832 return 0;
2833#endif
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002834 if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2835 debug_locks_off();
2836 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2837 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002838 dump_stack();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002839 return 0;
2840 }
Jarek Poplawski381a2292007-02-10 01:44:58 -08002841
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002842 if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2843 max_lockdep_depth = curr->lockdep_depth;
2844
2845 return 1;
2846}
2847
2848static int
2849print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2850 unsigned long ip)
2851{
2852 if (!debug_locks_off())
2853 return 0;
2854 if (debug_locks_silent)
2855 return 0;
2856
2857 printk("\n=====================================\n");
2858 printk( "[ BUG: bad unlock balance detected! ]\n");
2859 printk( "-------------------------------------\n");
2860 printk("%s/%d is trying to release lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002861 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002862 print_lockdep_cache(lock);
2863 printk(") at:\n");
2864 print_ip_sym(ip);
2865 printk("but there are no more locks to release!\n");
2866 printk("\nother info that might help us debug this:\n");
2867 lockdep_print_held_locks(curr);
2868
2869 printk("\nstack backtrace:\n");
2870 dump_stack();
2871
2872 return 0;
2873}
2874
2875/*
2876 * Common debugging checks for both nested and non-nested unlock:
2877 */
2878static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2879 unsigned long ip)
2880{
2881 if (unlikely(!debug_locks))
2882 return 0;
2883 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2884 return 0;
2885
2886 if (curr->lockdep_depth <= 0)
2887 return print_unlock_inbalance_bug(curr, lock, ip);
2888
2889 return 1;
2890}
2891
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002892static int match_held_lock(struct held_lock *hlock, struct lockdep_map *lock)
2893{
2894 if (hlock->instance == lock)
2895 return 1;
2896
2897 if (hlock->references) {
2898 struct lock_class *class = lock->class_cache;
2899
2900 if (!class)
2901 class = look_up_lock_class(lock, 0);
2902
2903 if (DEBUG_LOCKS_WARN_ON(!class))
2904 return 0;
2905
2906 if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock))
2907 return 0;
2908
2909 if (hlock->class_idx == class - lock_classes + 1)
2910 return 1;
2911 }
2912
2913 return 0;
2914}
2915
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002916static int
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002917__lock_set_class(struct lockdep_map *lock, const char *name,
2918 struct lock_class_key *key, unsigned int subclass,
2919 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002920{
2921 struct task_struct *curr = current;
2922 struct held_lock *hlock, *prev_hlock;
2923 struct lock_class *class;
2924 unsigned int depth;
2925 int i;
2926
2927 depth = curr->lockdep_depth;
2928 if (DEBUG_LOCKS_WARN_ON(!depth))
2929 return 0;
2930
2931 prev_hlock = NULL;
2932 for (i = depth-1; i >= 0; i--) {
2933 hlock = curr->held_locks + i;
2934 /*
2935 * We must not cross into another context:
2936 */
2937 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2938 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002939 if (match_held_lock(hlock, lock))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002940 goto found_it;
2941 prev_hlock = hlock;
2942 }
2943 return print_unlock_inbalance_bug(curr, lock, ip);
2944
2945found_it:
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002946 lockdep_init_map(lock, name, key, 0);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002947 class = register_lock_class(lock, subclass, 0);
Dave Jonesf82b2172008-08-11 09:30:23 +02002948 hlock->class_idx = class - lock_classes + 1;
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002949
2950 curr->lockdep_depth = i;
2951 curr->curr_chain_key = hlock->prev_chain_key;
2952
2953 for (; i < depth; i++) {
2954 hlock = curr->held_locks + i;
2955 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02002956 hlock_class(hlock)->subclass, hlock->trylock,
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002957 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002958 hlock->nest_lock, hlock->acquire_ip,
2959 hlock->references))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002960 return 0;
2961 }
2962
2963 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
2964 return 0;
2965 return 1;
2966}
2967
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002968/*
2969 * Remove the lock to the list of currently held locks in a
2970 * potentially non-nested (out of order) manner. This is a
2971 * relatively rare operation, as all the unlock APIs default
2972 * to nested mode (which uses lock_release()):
2973 */
2974static int
2975lock_release_non_nested(struct task_struct *curr,
2976 struct lockdep_map *lock, unsigned long ip)
2977{
2978 struct held_lock *hlock, *prev_hlock;
2979 unsigned int depth;
2980 int i;
2981
2982 /*
2983 * Check whether the lock exists in the current stack
2984 * of held locks:
2985 */
2986 depth = curr->lockdep_depth;
2987 if (DEBUG_LOCKS_WARN_ON(!depth))
2988 return 0;
2989
2990 prev_hlock = NULL;
2991 for (i = depth-1; i >= 0; i--) {
2992 hlock = curr->held_locks + i;
2993 /*
2994 * We must not cross into another context:
2995 */
2996 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2997 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02002998 if (match_held_lock(hlock, lock))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07002999 goto found_it;
3000 prev_hlock = hlock;
3001 }
3002 return print_unlock_inbalance_bug(curr, lock, ip);
3003
3004found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003005 if (hlock->instance == lock)
3006 lock_release_holdtime(hlock);
3007
3008 if (hlock->references) {
3009 hlock->references--;
3010 if (hlock->references) {
3011 /*
3012 * We had, and after removing one, still have
3013 * references, the current lock stack is still
3014 * valid. We're done!
3015 */
3016 return 1;
3017 }
3018 }
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003019
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003020 /*
3021 * We have the right lock to unlock, 'hlock' points to it.
3022 * Now we remove it from the stack, and add back the other
3023 * entries (if any), recalculating the hash along the way:
3024 */
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003025
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003026 curr->lockdep_depth = i;
3027 curr->curr_chain_key = hlock->prev_chain_key;
3028
3029 for (i++; i < depth; i++) {
3030 hlock = curr->held_locks + i;
3031 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02003032 hlock_class(hlock)->subclass, hlock->trylock,
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003033 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003034 hlock->nest_lock, hlock->acquire_ip,
3035 hlock->references))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003036 return 0;
3037 }
3038
3039 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
3040 return 0;
3041 return 1;
3042}
3043
3044/*
3045 * Remove the lock to the list of currently held locks - this gets
3046 * called on mutex_unlock()/spin_unlock*() (or on a failed
3047 * mutex_lock_interruptible()). This is done for unlocks that nest
3048 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3049 */
3050static int lock_release_nested(struct task_struct *curr,
3051 struct lockdep_map *lock, unsigned long ip)
3052{
3053 struct held_lock *hlock;
3054 unsigned int depth;
3055
3056 /*
3057 * Pop off the top of the lock stack:
3058 */
3059 depth = curr->lockdep_depth - 1;
3060 hlock = curr->held_locks + depth;
3061
3062 /*
3063 * Is the unlock non-nested:
3064 */
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003065 if (hlock->instance != lock || hlock->references)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003066 return lock_release_non_nested(curr, lock, ip);
3067 curr->lockdep_depth--;
3068
3069 if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
3070 return 0;
3071
3072 curr->curr_chain_key = hlock->prev_chain_key;
3073
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003074 lock_release_holdtime(hlock);
3075
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003076#ifdef CONFIG_DEBUG_LOCKDEP
3077 hlock->prev_chain_key = 0;
Dave Jonesf82b2172008-08-11 09:30:23 +02003078 hlock->class_idx = 0;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003079 hlock->acquire_ip = 0;
3080 hlock->irq_context = 0;
3081#endif
3082 return 1;
3083}
3084
3085/*
3086 * Remove the lock to the list of currently held locks - this gets
3087 * called on mutex_unlock()/spin_unlock*() (or on a failed
3088 * mutex_lock_interruptible()). This is done for unlocks that nest
3089 * perfectly. (i.e. the current top of the lock-stack is unlocked)
3090 */
3091static void
3092__lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
3093{
3094 struct task_struct *curr = current;
3095
3096 if (!check_unlock(curr, lock, ip))
3097 return;
3098
3099 if (nested) {
3100 if (!lock_release_nested(curr, lock, ip))
3101 return;
3102 } else {
3103 if (!lock_release_non_nested(curr, lock, ip))
3104 return;
3105 }
3106
3107 check_chain_key(curr);
3108}
3109
Peter Zijlstraf607c662009-07-20 19:16:29 +02003110static int __lock_is_held(struct lockdep_map *lock)
3111{
3112 struct task_struct *curr = current;
3113 int i;
3114
3115 for (i = 0; i < curr->lockdep_depth; i++) {
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003116 struct held_lock *hlock = curr->held_locks + i;
3117
3118 if (match_held_lock(hlock, lock))
Peter Zijlstraf607c662009-07-20 19:16:29 +02003119 return 1;
3120 }
3121
3122 return 0;
3123}
3124
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003125/*
3126 * Check whether we follow the irq-flags state precisely:
3127 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003128static void check_flags(unsigned long flags)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003129{
Ingo Molnar992860e2008-07-14 10:28:38 +02003130#if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3131 defined(CONFIG_TRACE_IRQFLAGS)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003132 if (!debug_locks)
3133 return;
3134
Ingo Molnar5f9fa8a2007-12-07 19:02:47 +01003135 if (irqs_disabled_flags(flags)) {
3136 if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3137 printk("possible reason: unannotated irqs-off.\n");
3138 }
3139 } else {
3140 if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3141 printk("possible reason: unannotated irqs-on.\n");
3142 }
3143 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003144
3145 /*
3146 * We dont accurately track softirq state in e.g.
3147 * hardirq contexts (such as on 4KSTACKS), so only
3148 * check if not in hardirq contexts:
3149 */
3150 if (!hardirq_count()) {
3151 if (softirq_count())
3152 DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3153 else
3154 DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3155 }
3156
3157 if (!debug_locks)
3158 print_irqtrace_events(current);
3159#endif
3160}
3161
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003162void lock_set_class(struct lockdep_map *lock, const char *name,
3163 struct lock_class_key *key, unsigned int subclass,
3164 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003165{
3166 unsigned long flags;
3167
3168 if (unlikely(current->lockdep_recursion))
3169 return;
3170
3171 raw_local_irq_save(flags);
3172 current->lockdep_recursion = 1;
3173 check_flags(flags);
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003174 if (__lock_set_class(lock, name, key, subclass, ip))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003175 check_chain_key(current);
3176 current->lockdep_recursion = 0;
3177 raw_local_irq_restore(flags);
3178}
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003179EXPORT_SYMBOL_GPL(lock_set_class);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003180
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003181/*
3182 * We are not always called with irqs disabled - do that here,
3183 * and also avoid lockdep recursion:
3184 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003185void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02003186 int trylock, int read, int check,
3187 struct lockdep_map *nest_lock, unsigned long ip)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003188{
3189 unsigned long flags;
3190
3191 if (unlikely(current->lockdep_recursion))
3192 return;
3193
3194 raw_local_irq_save(flags);
3195 check_flags(flags);
3196
3197 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003198 trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003199 __lock_acquire(lock, subclass, trylock, read, check,
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003200 irqs_disabled_flags(flags), nest_lock, ip, 0);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003201 current->lockdep_recursion = 0;
3202 raw_local_irq_restore(flags);
3203}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003204EXPORT_SYMBOL_GPL(lock_acquire);
3205
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003206void lock_release(struct lockdep_map *lock, int nested,
Steven Rostedt0764d232008-05-12 21:20:44 +02003207 unsigned long ip)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003208{
3209 unsigned long flags;
3210
3211 if (unlikely(current->lockdep_recursion))
3212 return;
3213
3214 raw_local_irq_save(flags);
3215 check_flags(flags);
3216 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003217 trace_lock_release(lock, nested, ip);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003218 __lock_release(lock, nested, ip);
3219 current->lockdep_recursion = 0;
3220 raw_local_irq_restore(flags);
3221}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003222EXPORT_SYMBOL_GPL(lock_release);
3223
Peter Zijlstraf607c662009-07-20 19:16:29 +02003224int lock_is_held(struct lockdep_map *lock)
3225{
3226 unsigned long flags;
3227 int ret = 0;
3228
3229 if (unlikely(current->lockdep_recursion))
3230 return ret;
3231
3232 raw_local_irq_save(flags);
3233 check_flags(flags);
3234
3235 current->lockdep_recursion = 1;
3236 ret = __lock_is_held(lock);
3237 current->lockdep_recursion = 0;
3238 raw_local_irq_restore(flags);
3239
3240 return ret;
3241}
3242EXPORT_SYMBOL_GPL(lock_is_held);
3243
Nick Piggincf40bd12009-01-21 08:12:39 +01003244void lockdep_set_current_reclaim_state(gfp_t gfp_mask)
3245{
3246 current->lockdep_reclaim_gfp = gfp_mask;
3247}
3248
3249void lockdep_clear_current_reclaim_state(void)
3250{
3251 current->lockdep_reclaim_gfp = 0;
3252}
3253
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003254#ifdef CONFIG_LOCK_STAT
3255static int
3256print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
3257 unsigned long ip)
3258{
3259 if (!debug_locks_off())
3260 return 0;
3261 if (debug_locks_silent)
3262 return 0;
3263
3264 printk("\n=================================\n");
3265 printk( "[ BUG: bad contention detected! ]\n");
3266 printk( "---------------------------------\n");
3267 printk("%s/%d is trying to contend lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003268 curr->comm, task_pid_nr(curr));
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003269 print_lockdep_cache(lock);
3270 printk(") at:\n");
3271 print_ip_sym(ip);
3272 printk("but there are no locks held!\n");
3273 printk("\nother info that might help us debug this:\n");
3274 lockdep_print_held_locks(curr);
3275
3276 printk("\nstack backtrace:\n");
3277 dump_stack();
3278
3279 return 0;
3280}
3281
3282static void
3283__lock_contended(struct lockdep_map *lock, unsigned long ip)
3284{
3285 struct task_struct *curr = current;
3286 struct held_lock *hlock, *prev_hlock;
3287 struct lock_class_stats *stats;
3288 unsigned int depth;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003289 int i, contention_point, contending_point;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003290
3291 depth = curr->lockdep_depth;
3292 if (DEBUG_LOCKS_WARN_ON(!depth))
3293 return;
3294
3295 prev_hlock = NULL;
3296 for (i = depth-1; i >= 0; i--) {
3297 hlock = curr->held_locks + i;
3298 /*
3299 * We must not cross into another context:
3300 */
3301 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3302 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003303 if (match_held_lock(hlock, lock))
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003304 goto found_it;
3305 prev_hlock = hlock;
3306 }
3307 print_lock_contention_bug(curr, lock, ip);
3308 return;
3309
3310found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003311 if (hlock->instance != lock)
3312 return;
3313
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003314 hlock->waittime_stamp = lockstat_clock();
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003315
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003316 contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
3317 contending_point = lock_point(hlock_class(hlock)->contending_point,
3318 lock->ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003319
Dave Jonesf82b2172008-08-11 09:30:23 +02003320 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003321 if (contention_point < LOCKSTAT_POINTS)
3322 stats->contention_point[contention_point]++;
3323 if (contending_point < LOCKSTAT_POINTS)
3324 stats->contending_point[contending_point]++;
Peter Zijlstra96645672007-07-19 01:49:00 -07003325 if (lock->cpu != smp_processor_id())
3326 stats->bounces[bounce_contended + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003327 put_lock_stats(stats);
3328}
3329
3330static void
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003331__lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003332{
3333 struct task_struct *curr = current;
3334 struct held_lock *hlock, *prev_hlock;
3335 struct lock_class_stats *stats;
3336 unsigned int depth;
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003337 u64 now, waittime = 0;
Peter Zijlstra96645672007-07-19 01:49:00 -07003338 int i, cpu;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003339
3340 depth = curr->lockdep_depth;
3341 if (DEBUG_LOCKS_WARN_ON(!depth))
3342 return;
3343
3344 prev_hlock = NULL;
3345 for (i = depth-1; i >= 0; i--) {
3346 hlock = curr->held_locks + i;
3347 /*
3348 * We must not cross into another context:
3349 */
3350 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3351 break;
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003352 if (match_held_lock(hlock, lock))
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003353 goto found_it;
3354 prev_hlock = hlock;
3355 }
3356 print_lock_contention_bug(curr, lock, _RET_IP_);
3357 return;
3358
3359found_it:
Peter Zijlstrabb97a912009-07-20 19:15:35 +02003360 if (hlock->instance != lock)
3361 return;
3362
Peter Zijlstra96645672007-07-19 01:49:00 -07003363 cpu = smp_processor_id();
3364 if (hlock->waittime_stamp) {
Peter Zijlstra3365e7792009-10-09 10:12:41 +02003365 now = lockstat_clock();
Peter Zijlstra96645672007-07-19 01:49:00 -07003366 waittime = now - hlock->waittime_stamp;
3367 hlock->holdtime_stamp = now;
3368 }
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003369
Frederic Weisbecker20625012009-04-06 01:49:33 +02003370 trace_lock_acquired(lock, ip, waittime);
3371
Dave Jonesf82b2172008-08-11 09:30:23 +02003372 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstra96645672007-07-19 01:49:00 -07003373 if (waittime) {
3374 if (hlock->read)
3375 lock_time_inc(&stats->read_waittime, waittime);
3376 else
3377 lock_time_inc(&stats->write_waittime, waittime);
3378 }
3379 if (lock->cpu != cpu)
3380 stats->bounces[bounce_acquired + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003381 put_lock_stats(stats);
Peter Zijlstra96645672007-07-19 01:49:00 -07003382
3383 lock->cpu = cpu;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003384 lock->ip = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003385}
3386
3387void lock_contended(struct lockdep_map *lock, unsigned long ip)
3388{
3389 unsigned long flags;
3390
3391 if (unlikely(!lock_stat))
3392 return;
3393
3394 if (unlikely(current->lockdep_recursion))
3395 return;
3396
3397 raw_local_irq_save(flags);
3398 check_flags(flags);
3399 current->lockdep_recursion = 1;
Frederic Weisbeckerdb2c4c72010-02-02 23:34:40 +01003400 trace_lock_contended(lock, ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003401 __lock_contended(lock, ip);
3402 current->lockdep_recursion = 0;
3403 raw_local_irq_restore(flags);
3404}
3405EXPORT_SYMBOL_GPL(lock_contended);
3406
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003407void lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003408{
3409 unsigned long flags;
3410
3411 if (unlikely(!lock_stat))
3412 return;
3413
3414 if (unlikely(current->lockdep_recursion))
3415 return;
3416
3417 raw_local_irq_save(flags);
3418 check_flags(flags);
3419 current->lockdep_recursion = 1;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003420 __lock_acquired(lock, ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003421 current->lockdep_recursion = 0;
3422 raw_local_irq_restore(flags);
3423}
3424EXPORT_SYMBOL_GPL(lock_acquired);
3425#endif
3426
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003427/*
3428 * Used by the testsuite, sanitize the validator state
3429 * after a simulated failure:
3430 */
3431
3432void lockdep_reset(void)
3433{
3434 unsigned long flags;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003435 int i;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003436
3437 raw_local_irq_save(flags);
3438 current->curr_chain_key = 0;
3439 current->lockdep_depth = 0;
3440 current->lockdep_recursion = 0;
3441 memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
3442 nr_hardirq_chains = 0;
3443 nr_softirq_chains = 0;
3444 nr_process_chains = 0;
3445 debug_locks = 1;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003446 for (i = 0; i < CHAINHASH_SIZE; i++)
3447 INIT_LIST_HEAD(chainhash_table + i);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003448 raw_local_irq_restore(flags);
3449}
3450
3451static void zap_class(struct lock_class *class)
3452{
3453 int i;
3454
3455 /*
3456 * Remove all dependencies this lock is
3457 * involved in:
3458 */
3459 for (i = 0; i < nr_list_entries; i++) {
3460 if (list_entries[i].class == class)
3461 list_del_rcu(&list_entries[i].entry);
3462 }
3463 /*
3464 * Unhash the class and remove it from the all_lock_classes list:
3465 */
3466 list_del_rcu(&class->hash_entry);
3467 list_del_rcu(&class->lock_entry);
3468
Rabin Vincent8bfe0292008-08-11 09:30:26 +02003469 class->key = NULL;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003470}
3471
Arjan van de Venfabe8742008-01-24 07:00:45 +01003472static inline int within(const void *addr, void *start, unsigned long size)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003473{
3474 return addr >= start && addr < start + size;
3475}
3476
3477void lockdep_free_key_range(void *start, unsigned long size)
3478{
3479 struct lock_class *class, *next;
3480 struct list_head *head;
3481 unsigned long flags;
3482 int i;
Nick Piggin5a26db52008-01-16 09:51:58 +01003483 int locked;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003484
3485 raw_local_irq_save(flags);
Nick Piggin5a26db52008-01-16 09:51:58 +01003486 locked = graph_lock();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003487
3488 /*
3489 * Unhash all classes that were created by this module:
3490 */
3491 for (i = 0; i < CLASSHASH_SIZE; i++) {
3492 head = classhash_table + i;
3493 if (list_empty(head))
3494 continue;
Arjan van de Venfabe8742008-01-24 07:00:45 +01003495 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003496 if (within(class->key, start, size))
3497 zap_class(class);
Arjan van de Venfabe8742008-01-24 07:00:45 +01003498 else if (within(class->name, start, size))
3499 zap_class(class);
3500 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003501 }
3502
Nick Piggin5a26db52008-01-16 09:51:58 +01003503 if (locked)
3504 graph_unlock();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003505 raw_local_irq_restore(flags);
3506}
3507
3508void lockdep_reset_lock(struct lockdep_map *lock)
3509{
Ingo Molnard6d897c2006-07-10 04:44:04 -07003510 struct lock_class *class, *next;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003511 struct list_head *head;
3512 unsigned long flags;
3513 int i, j;
Nick Piggin5a26db52008-01-16 09:51:58 +01003514 int locked;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003515
3516 raw_local_irq_save(flags);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003517
3518 /*
Ingo Molnard6d897c2006-07-10 04:44:04 -07003519 * Remove all classes this lock might have:
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003520 */
Ingo Molnard6d897c2006-07-10 04:44:04 -07003521 for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
3522 /*
3523 * If the class exists we look it up and zap it:
3524 */
3525 class = look_up_lock_class(lock, j);
3526 if (class)
3527 zap_class(class);
3528 }
3529 /*
3530 * Debug check: in the end all mapped classes should
3531 * be gone.
3532 */
Nick Piggin5a26db52008-01-16 09:51:58 +01003533 locked = graph_lock();
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003534 for (i = 0; i < CLASSHASH_SIZE; i++) {
3535 head = classhash_table + i;
3536 if (list_empty(head))
3537 continue;
3538 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnard6d897c2006-07-10 04:44:04 -07003539 if (unlikely(class == lock->class_cache)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08003540 if (debug_locks_off_graph_unlock())
3541 WARN_ON(1);
Ingo Molnard6d897c2006-07-10 04:44:04 -07003542 goto out_restore;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003543 }
3544 }
3545 }
Nick Piggin5a26db52008-01-16 09:51:58 +01003546 if (locked)
3547 graph_unlock();
Ingo Molnard6d897c2006-07-10 04:44:04 -07003548
3549out_restore:
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003550 raw_local_irq_restore(flags);
3551}
3552
Sam Ravnborg14999932007-02-28 20:12:31 -08003553void lockdep_init(void)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003554{
3555 int i;
3556
3557 /*
3558 * Some architectures have their own start_kernel()
3559 * code which calls lockdep_init(), while we also
3560 * call lockdep_init() from the start_kernel() itself,
3561 * and we want to initialize the hashes only once:
3562 */
3563 if (lockdep_initialized)
3564 return;
3565
3566 for (i = 0; i < CLASSHASH_SIZE; i++)
3567 INIT_LIST_HEAD(classhash_table + i);
3568
3569 for (i = 0; i < CHAINHASH_SIZE; i++)
3570 INIT_LIST_HEAD(chainhash_table + i);
3571
3572 lockdep_initialized = 1;
3573}
3574
3575void __init lockdep_info(void)
3576{
3577 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3578
Li Zefanb0788ca2008-11-21 15:57:32 +08003579 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003580 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH);
3581 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS);
Li Zefanb0788ca2008-11-21 15:57:32 +08003582 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003583 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES);
3584 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS);
3585 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE);
3586
3587 printk(" memory used by lock dependency info: %lu kB\n",
3588 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3589 sizeof(struct list_head) * CLASSHASH_SIZE +
3590 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3591 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
Ming Lei90629202009-08-02 21:43:36 +08003592 sizeof(struct list_head) * CHAINHASH_SIZE
Ming Lei4dd861d2009-07-16 15:44:29 +02003593#ifdef CONFIG_PROVE_LOCKING
Ming Leie351b662009-07-22 22:48:09 +08003594 + sizeof(struct circular_queue)
Ming Lei4dd861d2009-07-16 15:44:29 +02003595#endif
Ming Lei90629202009-08-02 21:43:36 +08003596 ) / 1024
Ming Lei4dd861d2009-07-16 15:44:29 +02003597 );
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003598
3599 printk(" per task-struct memory footprint: %lu bytes\n",
3600 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3601
3602#ifdef CONFIG_DEBUG_LOCKDEP
Johannes Bergc71063c2007-07-19 01:49:02 -07003603 if (lockdep_init_error) {
3604 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3605 printk("Call stack leading to lockdep invocation was:\n");
3606 print_stack_trace(&lockdep_init_trace, 0);
3607 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003608#endif
3609}
3610
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003611static void
3612print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
Arjan van de Ven55794a42006-07-10 04:44:03 -07003613 const void *mem_to, struct held_lock *hlock)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003614{
3615 if (!debug_locks_off())
3616 return;
3617 if (debug_locks_silent)
3618 return;
3619
3620 printk("\n=========================\n");
3621 printk( "[ BUG: held lock freed! ]\n");
3622 printk( "-------------------------\n");
3623 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003624 curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
Arjan van de Ven55794a42006-07-10 04:44:03 -07003625 print_lock(hlock);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003626 lockdep_print_held_locks(curr);
3627
3628 printk("\nstack backtrace:\n");
3629 dump_stack();
3630}
3631
Oleg Nesterov54561782007-12-05 15:46:09 +01003632static inline int not_in_range(const void* mem_from, unsigned long mem_len,
3633 const void* lock_from, unsigned long lock_len)
3634{
3635 return lock_from + lock_len <= mem_from ||
3636 mem_from + mem_len <= lock_from;
3637}
3638
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003639/*
3640 * Called when kernel memory is freed (or unmapped), or if a lock
3641 * is destroyed or reinitialized - this code checks whether there is
3642 * any held lock in the memory range of <from> to <to>:
3643 */
3644void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3645{
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003646 struct task_struct *curr = current;
3647 struct held_lock *hlock;
3648 unsigned long flags;
3649 int i;
3650
3651 if (unlikely(!debug_locks))
3652 return;
3653
3654 local_irq_save(flags);
3655 for (i = 0; i < curr->lockdep_depth; i++) {
3656 hlock = curr->held_locks + i;
3657
Oleg Nesterov54561782007-12-05 15:46:09 +01003658 if (not_in_range(mem_from, mem_len, hlock->instance,
3659 sizeof(*hlock->instance)))
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003660 continue;
3661
Oleg Nesterov54561782007-12-05 15:46:09 +01003662 print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003663 break;
3664 }
3665 local_irq_restore(flags);
3666}
Peter Zijlstraed075362006-12-06 20:35:24 -08003667EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003668
3669static void print_held_locks_bug(struct task_struct *curr)
3670{
3671 if (!debug_locks_off())
3672 return;
3673 if (debug_locks_silent)
3674 return;
3675
3676 printk("\n=====================================\n");
3677 printk( "[ BUG: lock held at task exit time! ]\n");
3678 printk( "-------------------------------------\n");
3679 printk("%s/%d is exiting with locks still held!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003680 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003681 lockdep_print_held_locks(curr);
3682
3683 printk("\nstack backtrace:\n");
3684 dump_stack();
3685}
3686
3687void debug_check_no_locks_held(struct task_struct *task)
3688{
3689 if (unlikely(task->lockdep_depth > 0))
3690 print_held_locks_bug(task);
3691}
3692
3693void debug_show_all_locks(void)
3694{
3695 struct task_struct *g, *p;
3696 int count = 10;
3697 int unlock = 1;
3698
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003699 if (unlikely(!debug_locks)) {
3700 printk("INFO: lockdep is turned off.\n");
3701 return;
3702 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003703 printk("\nShowing all locks held in the system:\n");
3704
3705 /*
3706 * Here we try to get the tasklist_lock as hard as possible,
3707 * if not successful after 2 seconds we ignore it (but keep
3708 * trying). This is to enable a debug printout even if a
3709 * tasklist_lock-holding task deadlocks or crashes.
3710 */
3711retry:
3712 if (!read_trylock(&tasklist_lock)) {
3713 if (count == 10)
3714 printk("hm, tasklist_lock locked, retrying... ");
3715 if (count) {
3716 count--;
3717 printk(" #%d", 10-count);
3718 mdelay(200);
3719 goto retry;
3720 }
3721 printk(" ignoring it.\n");
3722 unlock = 0;
qinghuang feng46fec7a2008-10-28 17:24:28 +08003723 } else {
3724 if (count != 10)
3725 printk(KERN_CONT " locked it.\n");
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003726 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003727
3728 do_each_thread(g, p) {
Ingo Molnar85684872007-12-05 15:46:09 +01003729 /*
3730 * It's not reliable to print a task's held locks
3731 * if it's not sleeping (or if it's not the current
3732 * task):
3733 */
3734 if (p->state == TASK_RUNNING && p != current)
3735 continue;
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003736 if (p->lockdep_depth)
3737 lockdep_print_held_locks(p);
3738 if (!unlock)
3739 if (read_trylock(&tasklist_lock))
3740 unlock = 1;
3741 } while_each_thread(g, p);
3742
3743 printk("\n");
3744 printk("=============================================\n\n");
3745
3746 if (unlock)
3747 read_unlock(&tasklist_lock);
3748}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003749EXPORT_SYMBOL_GPL(debug_show_all_locks);
3750
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003751/*
3752 * Careful: only use this function if you are sure that
3753 * the task cannot run in parallel!
3754 */
3755void __debug_show_held_locks(struct task_struct *task)
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003756{
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003757 if (unlikely(!debug_locks)) {
3758 printk("INFO: lockdep is turned off.\n");
3759 return;
3760 }
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003761 lockdep_print_held_locks(task);
3762}
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003763EXPORT_SYMBOL_GPL(__debug_show_held_locks);
3764
3765void debug_show_held_locks(struct task_struct *task)
3766{
3767 __debug_show_held_locks(task);
3768}
Ingo Molnarfbb9ce92006-07-03 00:24:50 -07003769EXPORT_SYMBOL_GPL(debug_show_held_locks);
Peter Zijlstrab351d162007-10-11 22:11:12 +02003770
3771void lockdep_sys_exit(void)
3772{
3773 struct task_struct *curr = current;
3774
3775 if (unlikely(curr->lockdep_depth)) {
3776 if (!debug_locks_off())
3777 return;
3778 printk("\n================================================\n");
3779 printk( "[ BUG: lock held when returning to user space! ]\n");
3780 printk( "------------------------------------------------\n");
3781 printk("%s/%d is leaving the kernel with locks still held!\n",
3782 curr->comm, curr->pid);
3783 lockdep_print_held_locks(curr);
3784 }
3785}
Paul E. McKenney0632eb32010-02-22 17:04:47 -08003786
3787void lockdep_rcu_dereference(const char *file, const int line)
3788{
3789 struct task_struct *curr = current;
3790
3791 if (!debug_locks_off())
3792 return;
Paul E. McKenney056ba4a2010-02-25 14:06:46 -08003793 printk("\n===================================================\n");
3794 printk( "[ INFO: suspicious rcu_dereference_check() usage. ]\n");
3795 printk( "---------------------------------------------------\n");
Paul E. McKenney0632eb32010-02-22 17:04:47 -08003796 printk("%s:%d invoked rcu_dereference_check() without protection!\n",
3797 file, line);
3798 printk("\nother info that might help us debug this:\n\n");
Paul E. McKenneycc5b83a2010-03-03 07:46:59 -08003799 printk("\nrcu_scheduler_active = %d, debug_locks = %d\n", rcu_scheduler_active, debug_locks);
Paul E. McKenney0632eb32010-02-22 17:04:47 -08003800 lockdep_print_held_locks(curr);
3801 printk("\nstack backtrace:\n");
3802 dump_stack();
3803}
3804EXPORT_SYMBOL_GPL(lockdep_rcu_dereference);