blob: ce6d09e65ad1e9f2ab524e012b12c398519d7e82 [file] [log] [blame]
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001/*
2 * kernel/lockdep.c
3 *
4 * Runtime locking correctness validator
5 *
6 * Started by Ingo Molnar:
7 *
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -07008 * Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
9 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070010 *
11 * this code maps all the lock dependencies as they occur in a live kernel
12 * and will warn about the following classes of locking bugs:
13 *
14 * - lock inversion scenarios
15 * - circular lock dependencies
16 * - hardirq/softirq safe/unsafe locking bugs
17 *
18 * Bugs are reported even if the current locking scenario does not cause
19 * any deadlock at this point.
20 *
21 * I.e. if anytime in the past two locks were taken in a different order,
22 * even if it happened for another task, even if those were different
23 * locks (but of the same class as this lock), this code will detect it.
24 *
25 * Thanks to Arjan van de Ven for coming up with the initial idea of
26 * mapping lock dependencies runtime.
27 */
Steven Rostedta5e25882008-12-02 15:34:05 -050028#define DISABLE_BRANCH_PROFILING
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070029#include <linux/mutex.h>
30#include <linux/sched.h>
31#include <linux/delay.h>
32#include <linux/module.h>
33#include <linux/proc_fs.h>
34#include <linux/seq_file.h>
35#include <linux/spinlock.h>
36#include <linux/kallsyms.h>
37#include <linux/interrupt.h>
38#include <linux/stacktrace.h>
39#include <linux/debug_locks.h>
40#include <linux/irqflags.h>
Dave Jones99de0552006-09-29 02:00:10 -070041#include <linux/utsname.h>
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -070042#include <linux/hash.h>
Steven Rostedt81d68a92008-05-12 21:20:42 +020043#include <linux/ftrace.h>
Peter Zijlstrab4b136f2009-01-29 14:50:36 +010044#include <linux/stringify.h>
Ming Leid588e462009-07-16 15:44:29 +020045#include <linux/bitops.h>
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070046#include <asm/sections.h>
47
48#include "lockdep_internals.h"
49
Steven Rostedta8d154b2009-04-10 09:36:00 -040050#define CREATE_TRACE_POINTS
Steven Rostedtad8d75f2009-04-14 19:39:12 -040051#include <trace/events/lockdep.h>
Steven Rostedta8d154b2009-04-10 09:36:00 -040052
Peter Zijlstraf20786f2007-07-19 01:48:56 -070053#ifdef CONFIG_PROVE_LOCKING
54int prove_locking = 1;
55module_param(prove_locking, int, 0644);
56#else
57#define prove_locking 0
58#endif
59
60#ifdef CONFIG_LOCK_STAT
61int lock_stat = 1;
62module_param(lock_stat, int, 0644);
63#else
64#define lock_stat 0
65#endif
66
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070067/*
Ingo Molnar74c383f2006-12-13 00:34:43 -080068 * lockdep_lock: protects the lockdep graph, the hashes and the
69 * class/list/hash allocators.
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070070 *
71 * This is one of the rare exceptions where it's justified
72 * to use a raw spinlock - we really dont want the spinlock
Ingo Molnar74c383f2006-12-13 00:34:43 -080073 * code to recurse back into the lockdep code...
Ingo Molnarfbb9ce952006-07-03 00:24:50 -070074 */
Ingo Molnar74c383f2006-12-13 00:34:43 -080075static raw_spinlock_t lockdep_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED;
76
77static int graph_lock(void)
78{
79 __raw_spin_lock(&lockdep_lock);
80 /*
81 * Make sure that if another CPU detected a bug while
82 * walking the graph we dont change it (while the other
83 * CPU is busy printing out stuff with the graph lock
84 * dropped already)
85 */
86 if (!debug_locks) {
87 __raw_spin_unlock(&lockdep_lock);
88 return 0;
89 }
Steven Rostedtbb065af2008-05-12 21:21:00 +020090 /* prevent any recursions within lockdep from causing deadlocks */
91 current->lockdep_recursion++;
Ingo Molnar74c383f2006-12-13 00:34:43 -080092 return 1;
93}
94
95static inline int graph_unlock(void)
96{
Jarek Poplawski381a2292007-02-10 01:44:58 -080097 if (debug_locks && !__raw_spin_is_locked(&lockdep_lock))
98 return DEBUG_LOCKS_WARN_ON(1);
99
Steven Rostedtbb065af2008-05-12 21:21:00 +0200100 current->lockdep_recursion--;
Ingo Molnar74c383f2006-12-13 00:34:43 -0800101 __raw_spin_unlock(&lockdep_lock);
102 return 0;
103}
104
105/*
106 * Turn lock debugging off and return with 0 if it was off already,
107 * and also release the graph lock:
108 */
109static inline int debug_locks_off_graph_unlock(void)
110{
111 int ret = debug_locks_off();
112
113 __raw_spin_unlock(&lockdep_lock);
114
115 return ret;
116}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700117
118static int lockdep_initialized;
119
120unsigned long nr_list_entries;
Ming Leid588e462009-07-16 15:44:29 +0200121struct lock_list list_entries[MAX_LOCKDEP_ENTRIES];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700122
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700123/*
124 * All data structures here are protected by the global debug_lock.
125 *
126 * Mutex key structs only get allocated, once during bootup, and never
127 * get freed - this significantly simplifies the debugging code.
128 */
129unsigned long nr_lock_classes;
130static struct lock_class lock_classes[MAX_LOCKDEP_KEYS];
131
Dave Jonesf82b2172008-08-11 09:30:23 +0200132static inline struct lock_class *hlock_class(struct held_lock *hlock)
133{
134 if (!hlock->class_idx) {
135 DEBUG_LOCKS_WARN_ON(1);
136 return NULL;
137 }
138 return lock_classes + hlock->class_idx - 1;
139}
140
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700141#ifdef CONFIG_LOCK_STAT
142static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], lock_stats);
143
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200144static int lock_point(unsigned long points[], unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700145{
146 int i;
147
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200148 for (i = 0; i < LOCKSTAT_POINTS; i++) {
149 if (points[i] == 0) {
150 points[i] = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700151 break;
152 }
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200153 if (points[i] == ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700154 break;
155 }
156
157 return i;
158}
159
160static void lock_time_inc(struct lock_time *lt, s64 time)
161{
162 if (time > lt->max)
163 lt->max = time;
164
165 if (time < lt->min || !lt->min)
166 lt->min = time;
167
168 lt->total += time;
169 lt->nr++;
170}
171
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700172static inline void lock_time_add(struct lock_time *src, struct lock_time *dst)
173{
174 dst->min += src->min;
175 dst->max += src->max;
176 dst->total += src->total;
177 dst->nr += src->nr;
178}
179
180struct lock_class_stats lock_stats(struct lock_class *class)
181{
182 struct lock_class_stats stats;
183 int cpu, i;
184
185 memset(&stats, 0, sizeof(struct lock_class_stats));
186 for_each_possible_cpu(cpu) {
187 struct lock_class_stats *pcs =
188 &per_cpu(lock_stats, cpu)[class - lock_classes];
189
190 for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++)
191 stats.contention_point[i] += pcs->contention_point[i];
192
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200193 for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++)
194 stats.contending_point[i] += pcs->contending_point[i];
195
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700196 lock_time_add(&pcs->read_waittime, &stats.read_waittime);
197 lock_time_add(&pcs->write_waittime, &stats.write_waittime);
198
199 lock_time_add(&pcs->read_holdtime, &stats.read_holdtime);
200 lock_time_add(&pcs->write_holdtime, &stats.write_holdtime);
Peter Zijlstra96645672007-07-19 01:49:00 -0700201
202 for (i = 0; i < ARRAY_SIZE(stats.bounces); i++)
203 stats.bounces[i] += pcs->bounces[i];
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700204 }
205
206 return stats;
207}
208
209void clear_lock_stats(struct lock_class *class)
210{
211 int cpu;
212
213 for_each_possible_cpu(cpu) {
214 struct lock_class_stats *cpu_stats =
215 &per_cpu(lock_stats, cpu)[class - lock_classes];
216
217 memset(cpu_stats, 0, sizeof(struct lock_class_stats));
218 }
219 memset(class->contention_point, 0, sizeof(class->contention_point));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +0200220 memset(class->contending_point, 0, sizeof(class->contending_point));
Peter Zijlstrac46261d2007-07-19 01:48:57 -0700221}
222
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700223static struct lock_class_stats *get_lock_stats(struct lock_class *class)
224{
225 return &get_cpu_var(lock_stats)[class - lock_classes];
226}
227
228static void put_lock_stats(struct lock_class_stats *stats)
229{
230 put_cpu_var(lock_stats);
231}
232
233static void lock_release_holdtime(struct held_lock *hlock)
234{
235 struct lock_class_stats *stats;
236 s64 holdtime;
237
238 if (!lock_stat)
239 return;
240
241 holdtime = sched_clock() - hlock->holdtime_stamp;
242
Dave Jonesf82b2172008-08-11 09:30:23 +0200243 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstraf20786f2007-07-19 01:48:56 -0700244 if (hlock->read)
245 lock_time_inc(&stats->read_holdtime, holdtime);
246 else
247 lock_time_inc(&stats->write_holdtime, holdtime);
248 put_lock_stats(stats);
249}
250#else
251static inline void lock_release_holdtime(struct held_lock *hlock)
252{
253}
254#endif
255
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700256/*
257 * We keep a global list of all lock classes. The list only grows,
258 * never shrinks. The list is only accessed with the lockdep
259 * spinlock lock held.
260 */
261LIST_HEAD(all_lock_classes);
262
263/*
264 * The lockdep classes are in a hash-table as well, for fast lookup:
265 */
266#define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1)
267#define CLASSHASH_SIZE (1UL << CLASSHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700268#define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700269#define classhashentry(key) (classhash_table + __classhashfn((key)))
270
271static struct list_head classhash_table[CLASSHASH_SIZE];
272
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700273/*
274 * We put the lock dependency chains into a hash-table as well, to cache
275 * their existence:
276 */
277#define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1)
278#define CHAINHASH_SIZE (1UL << CHAINHASH_BITS)
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700279#define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700280#define chainhashentry(chain) (chainhash_table + __chainhashfn((chain)))
281
282static struct list_head chainhash_table[CHAINHASH_SIZE];
283
284/*
285 * The hash key of the lock dependency chains is a hash itself too:
286 * it's a hash of all locks taken up to that lock, including that lock.
287 * It's a 64-bit hash, because it's important for the keys to be
288 * unique.
289 */
290#define iterate_chain_key(key1, key2) \
Ingo Molnar03cbc352006-09-29 02:01:46 -0700291 (((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \
292 ((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700293 (key2))
294
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200295void lockdep_off(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700296{
297 current->lockdep_recursion++;
298}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700299EXPORT_SYMBOL(lockdep_off);
300
Steven Rostedt1d09daa2008-05-12 21:20:55 +0200301void lockdep_on(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700302{
303 current->lockdep_recursion--;
304}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700305EXPORT_SYMBOL(lockdep_on);
306
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700307/*
308 * Debugging switches:
309 */
310
311#define VERBOSE 0
Ingo Molnar33e94e92006-12-13 00:34:41 -0800312#define VERY_VERBOSE 0
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700313
314#if VERBOSE
315# define HARDIRQ_VERBOSE 1
316# define SOFTIRQ_VERBOSE 1
Nick Piggincf40bd12009-01-21 08:12:39 +0100317# define RECLAIM_VERBOSE 1
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700318#else
319# define HARDIRQ_VERBOSE 0
320# define SOFTIRQ_VERBOSE 0
Nick Piggincf40bd12009-01-21 08:12:39 +0100321# define RECLAIM_VERBOSE 0
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700322#endif
323
Nick Piggincf40bd12009-01-21 08:12:39 +0100324#if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700325/*
326 * Quick filtering for interesting events:
327 */
328static int class_filter(struct lock_class *class)
329{
Andi Kleenf9829cc2006-07-10 04:44:01 -0700330#if 0
331 /* Example */
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700332 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700333 !strcmp(class->name, "lockname"))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700334 return 1;
335 if (class->name_version == 1 &&
Andi Kleenf9829cc2006-07-10 04:44:01 -0700336 !strcmp(class->name, "&struct->lockfield"))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700337 return 1;
Andi Kleenf9829cc2006-07-10 04:44:01 -0700338#endif
Ingo Molnara6640892006-12-13 00:34:39 -0800339 /* Filter everything else. 1 would be to allow everything else */
340 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700341}
342#endif
343
344static int verbose(struct lock_class *class)
345{
346#if VERBOSE
347 return class_filter(class);
348#endif
349 return 0;
350}
351
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700352/*
353 * Stack-trace: tightly packed array of stack backtrace
Ingo Molnar74c383f2006-12-13 00:34:43 -0800354 * addresses. Protected by the graph_lock.
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700355 */
356unsigned long nr_stack_trace_entries;
357static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES];
358
359static int save_trace(struct stack_trace *trace)
360{
361 trace->nr_entries = 0;
362 trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries;
363 trace->entries = stack_trace + nr_stack_trace_entries;
364
Andi Kleen5a1b3992006-09-26 10:52:34 +0200365 trace->skip = 3;
Andi Kleen5a1b3992006-09-26 10:52:34 +0200366
Christoph Hellwigab1b6f02007-05-08 00:23:29 -0700367 save_stack_trace(trace);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700368
369 trace->max_entries = trace->nr_entries;
370
371 nr_stack_trace_entries += trace->nr_entries;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700372
373 if (nr_stack_trace_entries == MAX_STACK_TRACE_ENTRIES) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800374 if (!debug_locks_off_graph_unlock())
375 return 0;
376
377 printk("BUG: MAX_STACK_TRACE_ENTRIES too low!\n");
378 printk("turning off the locking correctness validator.\n");
379 dump_stack();
380
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700381 return 0;
382 }
383
384 return 1;
385}
386
387unsigned int nr_hardirq_chains;
388unsigned int nr_softirq_chains;
389unsigned int nr_process_chains;
390unsigned int max_lockdep_depth;
391unsigned int max_recursion_depth;
392
David Miller419ca3f2008-07-29 21:45:03 -0700393static unsigned int lockdep_dependency_gen_id;
394
395static bool lockdep_dependency_visit(struct lock_class *source,
396 unsigned int depth)
397{
398 if (!depth)
399 lockdep_dependency_gen_id++;
400 if (source->dep_gen_id == lockdep_dependency_gen_id)
401 return true;
402 source->dep_gen_id = lockdep_dependency_gen_id;
403 return false;
404}
405
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700406#ifdef CONFIG_DEBUG_LOCKDEP
407/*
408 * We cannot printk in early bootup code. Not even early_printk()
409 * might work. So we mark any initialization errors and printk
410 * about it later on, in lockdep_info().
411 */
412static int lockdep_init_error;
Johannes Bergc71063c2007-07-19 01:49:02 -0700413static unsigned long lockdep_init_trace_data[20];
414static struct stack_trace lockdep_init_trace = {
415 .max_entries = ARRAY_SIZE(lockdep_init_trace_data),
416 .entries = lockdep_init_trace_data,
417};
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700418
419/*
420 * Various lockdep statistics:
421 */
422atomic_t chain_lookup_hits;
423atomic_t chain_lookup_misses;
424atomic_t hardirqs_on_events;
425atomic_t hardirqs_off_events;
426atomic_t redundant_hardirqs_on;
427atomic_t redundant_hardirqs_off;
428atomic_t softirqs_on_events;
429atomic_t softirqs_off_events;
430atomic_t redundant_softirqs_on;
431atomic_t redundant_softirqs_off;
432atomic_t nr_unused_locks;
433atomic_t nr_cyclic_checks;
434atomic_t nr_cyclic_check_recursions;
435atomic_t nr_find_usage_forwards_checks;
436atomic_t nr_find_usage_forwards_recursions;
437atomic_t nr_find_usage_backwards_checks;
438atomic_t nr_find_usage_backwards_recursions;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700439#endif
440
441/*
442 * Locking printouts:
443 */
444
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100445#define __USAGE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +0100446 [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W", \
447 [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W", \
448 [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\
449 [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R",
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100450
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700451static const char *usage_str[] =
452{
Peter Zijlstrafabe9c42009-01-22 14:51:01 +0100453#define LOCKDEP_STATE(__STATE) __USAGE(__STATE)
454#include "lockdep_states.h"
455#undef LOCKDEP_STATE
456 [LOCK_USED] = "INITIAL USE",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700457};
458
459const char * __get_key_name(struct lockdep_subclass_key *key, char *str)
460{
Alexey Dobriyanffb45122007-05-08 00:28:41 -0700461 return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700462}
463
Peter Zijlstra3ff176c2009-01-22 17:40:42 +0100464static inline unsigned long lock_flag(enum lock_usage_bit bit)
465{
466 return 1UL << bit;
467}
468
469static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit)
470{
471 char c = '.';
472
473 if (class->usage_mask & lock_flag(bit + 2))
474 c = '+';
475 if (class->usage_mask & lock_flag(bit)) {
476 c = '-';
477 if (class->usage_mask & lock_flag(bit + 2))
478 c = '?';
479 }
480
481 return c;
482}
483
Peter Zijlstraf510b232009-01-22 17:53:47 +0100484void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS])
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700485{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100486 int i = 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700487
Peter Zijlstraf510b232009-01-22 17:53:47 +0100488#define LOCKDEP_STATE(__STATE) \
489 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE); \
490 usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ);
491#include "lockdep_states.h"
492#undef LOCKDEP_STATE
493
494 usage[i] = '\0';
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700495}
496
497static void print_lock_name(struct lock_class *class)
498{
Peter Zijlstraf510b232009-01-22 17:53:47 +0100499 char str[KSYM_NAME_LEN], usage[LOCK_USAGE_CHARS];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700500 const char *name;
501
Peter Zijlstraf510b232009-01-22 17:53:47 +0100502 get_usage_chars(class, usage);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700503
504 name = class->name;
505 if (!name) {
506 name = __get_key_name(class->key, str);
507 printk(" (%s", name);
508 } else {
509 printk(" (%s", name);
510 if (class->name_version > 1)
511 printk("#%d", class->name_version);
512 if (class->subclass)
513 printk("/%d", class->subclass);
514 }
Peter Zijlstraf510b232009-01-22 17:53:47 +0100515 printk("){%s}", usage);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700516}
517
518static void print_lockdep_cache(struct lockdep_map *lock)
519{
520 const char *name;
Tejun Heo9281ace2007-07-17 04:03:51 -0700521 char str[KSYM_NAME_LEN];
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700522
523 name = lock->name;
524 if (!name)
525 name = __get_key_name(lock->key->subkeys, str);
526
527 printk("%s", name);
528}
529
530static void print_lock(struct held_lock *hlock)
531{
Dave Jonesf82b2172008-08-11 09:30:23 +0200532 print_lock_name(hlock_class(hlock));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700533 printk(", at: ");
534 print_ip_sym(hlock->acquire_ip);
535}
536
537static void lockdep_print_held_locks(struct task_struct *curr)
538{
539 int i, depth = curr->lockdep_depth;
540
541 if (!depth) {
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700542 printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700543 return;
544 }
545 printk("%d lock%s held by %s/%d:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -0700546 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700547
548 for (i = 0; i < depth; i++) {
549 printk(" #%d: ", i);
550 print_lock(curr->held_locks + i);
551 }
552}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700553
554static void print_lock_class_header(struct lock_class *class, int depth)
555{
556 int bit;
557
Andi Kleenf9829cc2006-07-10 04:44:01 -0700558 printk("%*s->", depth, "");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700559 print_lock_name(class);
560 printk(" ops: %lu", class->ops);
561 printk(" {\n");
562
563 for (bit = 0; bit < LOCK_USAGE_STATES; bit++) {
564 if (class->usage_mask & (1 << bit)) {
565 int len = depth;
566
Andi Kleenf9829cc2006-07-10 04:44:01 -0700567 len += printk("%*s %s", depth, "", usage_str[bit]);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700568 len += printk(" at:\n");
569 print_stack_trace(class->usage_traces + bit, len);
570 }
571 }
Andi Kleenf9829cc2006-07-10 04:44:01 -0700572 printk("%*s }\n", depth, "");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700573
Andi Kleenf9829cc2006-07-10 04:44:01 -0700574 printk("%*s ... key at: ",depth,"");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700575 print_ip_sym((unsigned long)class->key);
576}
577
578/*
579 * printk all lock dependencies starting at <entry>:
580 */
Ingo Molnar7807faf2008-11-25 08:44:24 +0100581static void __used
582print_lock_dependencies(struct lock_class *class, int depth)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700583{
584 struct lock_list *entry;
585
David Miller419ca3f2008-07-29 21:45:03 -0700586 if (lockdep_dependency_visit(class, depth))
587 return;
588
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700589 if (DEBUG_LOCKS_WARN_ON(depth >= 20))
590 return;
591
592 print_lock_class_header(class, depth);
593
594 list_for_each_entry(entry, &class->locks_after, entry) {
Jarek Poplawskib23984d2006-12-06 20:36:23 -0800595 if (DEBUG_LOCKS_WARN_ON(!entry->class))
596 return;
597
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700598 print_lock_dependencies(entry->class, depth + 1);
599
Andi Kleenf9829cc2006-07-10 04:44:01 -0700600 printk("%*s ... acquired at:\n",depth,"");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700601 print_stack_trace(&entry->trace, 2);
602 printk("\n");
603 }
604}
605
Dave Jones99de0552006-09-29 02:00:10 -0700606static void print_kernel_version(void)
607{
Serge E. Hallyn96b644b2006-10-02 02:18:13 -0700608 printk("%s %.*s\n", init_utsname()->release,
609 (int)strcspn(init_utsname()->version, " "),
610 init_utsname()->version);
Dave Jones99de0552006-09-29 02:00:10 -0700611}
612
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700613static int very_verbose(struct lock_class *class)
614{
615#if VERY_VERBOSE
616 return class_filter(class);
617#endif
618 return 0;
619}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700620
621/*
622 * Is this the address of a static object:
623 */
624static int static_obj(void *obj)
625{
626 unsigned long start = (unsigned long) &_stext,
627 end = (unsigned long) &_end,
628 addr = (unsigned long) obj;
629#ifdef CONFIG_SMP
630 int i;
631#endif
632
633 /*
634 * static variable?
635 */
636 if ((addr >= start) && (addr < end))
637 return 1;
638
639#ifdef CONFIG_SMP
640 /*
641 * percpu var?
642 */
643 for_each_possible_cpu(i) {
644 start = (unsigned long) &__per_cpu_start + per_cpu_offset(i);
Ingo Molnar1ff56832006-11-17 19:57:22 +0100645 end = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM
646 + per_cpu_offset(i);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700647
648 if ((addr >= start) && (addr < end))
649 return 1;
650 }
651#endif
652
653 /*
654 * module var?
655 */
656 return is_module_address(addr);
657}
658
659/*
660 * To make lock name printouts unique, we calculate a unique
661 * class->name_version generation counter:
662 */
663static int count_matching_names(struct lock_class *new_class)
664{
665 struct lock_class *class;
666 int count = 0;
667
668 if (!new_class->name)
669 return 0;
670
671 list_for_each_entry(class, &all_lock_classes, lock_entry) {
672 if (new_class->key - new_class->subclass == class->key)
673 return class->name_version;
674 if (class->name && !strcmp(class->name, new_class->name))
675 count = max(count, class->name_version);
676 }
677
678 return count + 1;
679}
680
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700681/*
682 * Register a lock's class in the hash-table, if the class is not present
683 * yet. Otherwise we look it up. We cache the result in the lock object
684 * itself, so actual lookup of the hash should be once per lock object.
685 */
686static inline struct lock_class *
Ingo Molnard6d897c2006-07-10 04:44:04 -0700687look_up_lock_class(struct lockdep_map *lock, unsigned int subclass)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700688{
689 struct lockdep_subclass_key *key;
690 struct list_head *hash_head;
691 struct lock_class *class;
692
693#ifdef CONFIG_DEBUG_LOCKDEP
694 /*
695 * If the architecture calls into lockdep before initializing
696 * the hashes then we'll warn about it later. (we cannot printk
697 * right now)
698 */
699 if (unlikely(!lockdep_initialized)) {
700 lockdep_init();
701 lockdep_init_error = 1;
Johannes Bergc71063c2007-07-19 01:49:02 -0700702 save_stack_trace(&lockdep_init_trace);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700703 }
704#endif
705
706 /*
707 * Static locks do not have their class-keys yet - for them the key
708 * is the lock object itself:
709 */
710 if (unlikely(!lock->key))
711 lock->key = (void *)lock;
712
713 /*
714 * NOTE: the class-key must be unique. For dynamic locks, a static
715 * lock_class_key variable is passed in through the mutex_init()
716 * (or spin_lock_init()) call - which acts as the key. For static
717 * locks we use the lock object itself as the key.
718 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700719 BUILD_BUG_ON(sizeof(struct lock_class_key) >
720 sizeof(struct lockdep_map));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700721
722 key = lock->key->subkeys + subclass;
723
724 hash_head = classhashentry(key);
725
726 /*
727 * We can walk the hash lockfree, because the hash only
728 * grows, and we are careful when adding entries to the end:
729 */
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700730 list_for_each_entry(class, hash_head, hash_entry) {
731 if (class->key == key) {
732 WARN_ON_ONCE(class->name != lock->name);
Ingo Molnard6d897c2006-07-10 04:44:04 -0700733 return class;
Peter Zijlstra4b32d0a2007-07-19 01:48:59 -0700734 }
735 }
Ingo Molnard6d897c2006-07-10 04:44:04 -0700736
737 return NULL;
738}
739
740/*
741 * Register a lock's class in the hash-table, if the class is not present
742 * yet. Otherwise we look it up. We cache the result in the lock object
743 * itself, so actual lookup of the hash should be once per lock object.
744 */
745static inline struct lock_class *
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400746register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700747{
748 struct lockdep_subclass_key *key;
749 struct list_head *hash_head;
750 struct lock_class *class;
Ingo Molnar70e45062006-12-06 20:40:50 -0800751 unsigned long flags;
Ingo Molnard6d897c2006-07-10 04:44:04 -0700752
753 class = look_up_lock_class(lock, subclass);
754 if (likely(class))
755 return class;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700756
757 /*
758 * Debug-check: all keys must be persistent!
759 */
760 if (!static_obj(lock->key)) {
761 debug_locks_off();
762 printk("INFO: trying to register non-static key.\n");
763 printk("the code is fine but needs lockdep annotation.\n");
764 printk("turning off the locking correctness validator.\n");
765 dump_stack();
766
767 return NULL;
768 }
769
Ingo Molnard6d897c2006-07-10 04:44:04 -0700770 key = lock->key->subkeys + subclass;
771 hash_head = classhashentry(key);
772
Ingo Molnar70e45062006-12-06 20:40:50 -0800773 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800774 if (!graph_lock()) {
775 raw_local_irq_restore(flags);
776 return NULL;
777 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700778 /*
779 * We have to do the hash-walk again, to avoid races
780 * with another CPU:
781 */
782 list_for_each_entry(class, hash_head, hash_entry)
783 if (class->key == key)
784 goto out_unlock_set;
785 /*
786 * Allocate a new key from the static array, and add it to
787 * the hash:
788 */
789 if (nr_lock_classes >= MAX_LOCKDEP_KEYS) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800790 if (!debug_locks_off_graph_unlock()) {
791 raw_local_irq_restore(flags);
792 return NULL;
793 }
Ingo Molnar70e45062006-12-06 20:40:50 -0800794 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800795
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700796 printk("BUG: MAX_LOCKDEP_KEYS too low!\n");
797 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100798 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700799 return NULL;
800 }
801 class = lock_classes + nr_lock_classes++;
802 debug_atomic_inc(&nr_unused_locks);
803 class->key = key;
804 class->name = lock->name;
805 class->subclass = subclass;
806 INIT_LIST_HEAD(&class->lock_entry);
807 INIT_LIST_HEAD(&class->locks_before);
808 INIT_LIST_HEAD(&class->locks_after);
809 class->name_version = count_matching_names(class);
810 /*
811 * We use RCU's safe list-add method to make
812 * parallel walking of the hash-list safe:
813 */
814 list_add_tail_rcu(&class->hash_entry, hash_head);
Dale Farnsworth14811972008-02-25 23:03:02 +0100815 /*
816 * Add it to the global list of classes:
817 */
818 list_add_tail_rcu(&class->lock_entry, &all_lock_classes);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700819
820 if (verbose(class)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -0800821 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800822 raw_local_irq_restore(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800823
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700824 printk("\nnew class %p: %s", class->key, class->name);
825 if (class->name_version > 1)
826 printk("#%d", class->name_version);
827 printk("\n");
828 dump_stack();
Ingo Molnar74c383f2006-12-13 00:34:43 -0800829
Ingo Molnar70e45062006-12-06 20:40:50 -0800830 raw_local_irq_save(flags);
Ingo Molnar74c383f2006-12-13 00:34:43 -0800831 if (!graph_lock()) {
832 raw_local_irq_restore(flags);
833 return NULL;
834 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700835 }
836out_unlock_set:
Ingo Molnar74c383f2006-12-13 00:34:43 -0800837 graph_unlock();
Ingo Molnar70e45062006-12-06 20:40:50 -0800838 raw_local_irq_restore(flags);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700839
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -0400840 if (!subclass || force)
Ingo Molnard6d897c2006-07-10 04:44:04 -0700841 lock->class_cache = class;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700842
Jarek Poplawski381a2292007-02-10 01:44:58 -0800843 if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass))
844 return NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700845
846 return class;
847}
848
Peter Zijlstraca58abc2007-07-19 01:48:53 -0700849#ifdef CONFIG_PROVE_LOCKING
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700850/*
Peter Zijlstra8e182572007-07-19 01:48:54 -0700851 * Allocate a lockdep entry. (assumes the graph_lock held, returns
852 * with NULL on failure)
853 */
854static struct lock_list *alloc_list_entry(void)
855{
856 if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) {
857 if (!debug_locks_off_graph_unlock())
858 return NULL;
859
860 printk("BUG: MAX_LOCKDEP_ENTRIES too low!\n");
861 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +0100862 dump_stack();
Peter Zijlstra8e182572007-07-19 01:48:54 -0700863 return NULL;
864 }
865 return list_entries + nr_list_entries++;
866}
867
868/*
869 * Add a new dependency to the head of the list:
870 */
871static int add_lock_to_list(struct lock_class *class, struct lock_class *this,
872 struct list_head *head, unsigned long ip, int distance)
873{
874 struct lock_list *entry;
875 /*
876 * Lock not present yet - get a new dependency struct and
877 * add it to the list:
878 */
879 entry = alloc_list_entry();
880 if (!entry)
881 return 0;
882
Peter Zijlstra8e182572007-07-19 01:48:54 -0700883 if (!save_trace(&entry->trace))
884 return 0;
885
Zhu Yi74870172008-08-27 14:33:00 +0800886 entry->class = this;
887 entry->distance = distance;
Peter Zijlstra8e182572007-07-19 01:48:54 -0700888 /*
889 * Since we never remove from the dependency list, the list can
890 * be walked lockless by other CPUs, it's only allocation
891 * that must be protected by the spinlock. But this also means
892 * we must make new entries visible only once writes to the
893 * entry become visible - hence the RCU op:
894 */
895 list_add_tail_rcu(&entry->entry, head);
896
897 return 1;
898}
899
Ming Leid588e462009-07-16 15:44:29 +0200900unsigned long bfs_accessed[BITS_TO_LONGS(MAX_LOCKDEP_ENTRIES)];
Ming Leic94aa5c2009-07-16 15:44:29 +0200901static struct circular_queue lock_cq;
Ming Leid588e462009-07-16 15:44:29 +0200902
Ming Lei9e2d5512009-07-16 15:44:29 +0200903static int __bfs(struct lock_list *source_entry,
904 void *data,
905 int (*match)(struct lock_list *entry, void *data),
906 struct lock_list **target_entry,
907 int forward)
Ming Leic94aa5c2009-07-16 15:44:29 +0200908{
909 struct lock_list *entry;
Ming Leid588e462009-07-16 15:44:29 +0200910 struct list_head *head;
Ming Leic94aa5c2009-07-16 15:44:29 +0200911 struct circular_queue *cq = &lock_cq;
912 int ret = 1;
913
Ming Lei9e2d5512009-07-16 15:44:29 +0200914 if (match(source_entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +0200915 *target_entry = source_entry;
916 ret = 0;
917 goto exit;
918 }
919
Ming Leid588e462009-07-16 15:44:29 +0200920 if (forward)
921 head = &source_entry->class->locks_after;
922 else
923 head = &source_entry->class->locks_before;
924
925 if (list_empty(head))
926 goto exit;
927
928 __cq_init(cq);
Ming Leic94aa5c2009-07-16 15:44:29 +0200929 __cq_enqueue(cq, (unsigned long)source_entry);
930
931 while (!__cq_empty(cq)) {
932 struct lock_list *lock;
Ming Leic94aa5c2009-07-16 15:44:29 +0200933
934 __cq_dequeue(cq, (unsigned long *)&lock);
935
936 if (!lock->class) {
937 ret = -2;
938 goto exit;
939 }
940
941 if (forward)
942 head = &lock->class->locks_after;
943 else
944 head = &lock->class->locks_before;
945
946 list_for_each_entry(entry, head, entry) {
947 if (!lock_accessed(entry)) {
948 mark_lock_accessed(entry, lock);
Ming Lei9e2d5512009-07-16 15:44:29 +0200949 if (match(entry, data)) {
Ming Leic94aa5c2009-07-16 15:44:29 +0200950 *target_entry = entry;
951 ret = 0;
952 goto exit;
953 }
954
955 if (__cq_enqueue(cq, (unsigned long)entry)) {
956 ret = -1;
957 goto exit;
958 }
959 }
960 }
961 }
962exit:
963 return ret;
964}
965
Ming Lei9e2d5512009-07-16 15:44:29 +0200966static inline int __bfs_forward(struct lock_list *src_entry,
967 void *data,
968 int (*match)(struct lock_list *entry, void *data),
969 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +0200970{
Ming Lei9e2d5512009-07-16 15:44:29 +0200971 return __bfs(src_entry, data, match, target_entry, 1);
Ming Leic94aa5c2009-07-16 15:44:29 +0200972
973}
974
Ming Lei9e2d5512009-07-16 15:44:29 +0200975static inline int __bfs_backward(struct lock_list *src_entry,
976 void *data,
977 int (*match)(struct lock_list *entry, void *data),
978 struct lock_list **target_entry)
Ming Leic94aa5c2009-07-16 15:44:29 +0200979{
Ming Lei9e2d5512009-07-16 15:44:29 +0200980 return __bfs(src_entry, data, match, target_entry, 0);
Ming Leic94aa5c2009-07-16 15:44:29 +0200981
982}
983
Peter Zijlstra8e182572007-07-19 01:48:54 -0700984/*
985 * Recursive, forwards-direction lock-dependency checking, used for
986 * both noncyclic checking and for hardirq-unsafe/softirq-unsafe
987 * checking.
988 *
989 * (to keep the stackframe of the recursive functions small we
990 * use these global variables, and we also mark various helper
991 * functions as noinline.)
992 */
993static struct held_lock *check_source, *check_target;
994
995/*
996 * Print a dependency chain entry (this is only done when a deadlock
997 * has been detected):
998 */
999static noinline int
1000print_circular_bug_entry(struct lock_list *target, unsigned int depth)
1001{
1002 if (debug_locks_silent)
1003 return 0;
1004 printk("\n-> #%u", depth);
1005 print_lock_name(target->class);
1006 printk(":\n");
1007 print_stack_trace(&target->trace, 6);
1008
1009 return 0;
1010}
1011
1012/*
1013 * When a circular dependency is detected, print the
1014 * header first:
1015 */
1016static noinline int
1017print_circular_bug_header(struct lock_list *entry, unsigned int depth)
1018{
1019 struct task_struct *curr = current;
1020
Ming Leic94aa5c2009-07-16 15:44:29 +02001021 if (debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001022 return 0;
1023
1024 printk("\n=======================================================\n");
1025 printk( "[ INFO: possible circular locking dependency detected ]\n");
1026 print_kernel_version();
1027 printk( "-------------------------------------------------------\n");
1028 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001029 curr->comm, task_pid_nr(curr));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001030 print_lock(check_source);
1031 printk("\nbut task is already holding lock:\n");
1032 print_lock(check_target);
1033 printk("\nwhich lock already depends on the new lock.\n\n");
1034 printk("\nthe existing dependency chain (in reverse order) is:\n");
1035
1036 print_circular_bug_entry(entry, depth);
1037
1038 return 0;
1039}
1040
Ming Lei9e2d5512009-07-16 15:44:29 +02001041static inline int class_equal(struct lock_list *entry, void *data)
1042{
1043 return entry->class == data;
1044}
1045
Ming Leic94aa5c2009-07-16 15:44:29 +02001046static noinline int print_circular_bug(void)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001047{
1048 struct task_struct *curr = current;
1049 struct lock_list this;
Ming Leic94aa5c2009-07-16 15:44:29 +02001050 struct lock_list *target;
1051 struct lock_list *parent;
1052 int result;
1053 unsigned long depth;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001054
Ming Leic94aa5c2009-07-16 15:44:29 +02001055 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001056 return 0;
1057
Dave Jonesf82b2172008-08-11 09:30:23 +02001058 this.class = hlock_class(check_source);
Ming Leid588e462009-07-16 15:44:29 +02001059 this.parent = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001060 if (!save_trace(&this.trace))
1061 return 0;
1062
Ming Lei9e2d5512009-07-16 15:44:29 +02001063 result = __bfs_forward(&this,
1064 hlock_class(check_target),
1065 class_equal,
1066 &target);
Ming Leic94aa5c2009-07-16 15:44:29 +02001067 if (result) {
1068 printk("\n%s:search shortest path failed:%d\n", __func__,
1069 result);
1070 return 0;
1071 }
1072
1073 depth = get_lock_depth(target);
1074
1075 print_circular_bug_header(target, depth);
1076
1077 parent = get_lock_parent(target);
1078
1079 while (parent) {
1080 print_circular_bug_entry(parent, --depth);
1081 parent = get_lock_parent(parent);
1082 }
Peter Zijlstra8e182572007-07-19 01:48:54 -07001083
1084 printk("\nother info that might help us debug this:\n\n");
1085 lockdep_print_held_locks(curr);
1086
1087 printk("\nstack backtrace:\n");
1088 dump_stack();
1089
1090 return 0;
1091}
1092
1093#define RECURSION_LIMIT 40
1094
1095static int noinline print_infinite_recursion_bug(void)
1096{
1097 if (!debug_locks_off_graph_unlock())
1098 return 0;
1099
1100 WARN_ON(1);
1101
1102 return 0;
1103}
1104
David Miller419ca3f2008-07-29 21:45:03 -07001105unsigned long __lockdep_count_forward_deps(struct lock_class *class,
1106 unsigned int depth)
1107{
1108 struct lock_list *entry;
1109 unsigned long ret = 1;
1110
1111 if (lockdep_dependency_visit(class, depth))
1112 return 0;
1113
1114 /*
1115 * Recurse this class's dependency list:
1116 */
1117 list_for_each_entry(entry, &class->locks_after, entry)
1118 ret += __lockdep_count_forward_deps(entry->class, depth + 1);
1119
1120 return ret;
1121}
1122
1123unsigned long lockdep_count_forward_deps(struct lock_class *class)
1124{
1125 unsigned long ret, flags;
1126
1127 local_irq_save(flags);
1128 __raw_spin_lock(&lockdep_lock);
1129 ret = __lockdep_count_forward_deps(class, 0);
1130 __raw_spin_unlock(&lockdep_lock);
1131 local_irq_restore(flags);
1132
1133 return ret;
1134}
1135
1136unsigned long __lockdep_count_backward_deps(struct lock_class *class,
1137 unsigned int depth)
1138{
1139 struct lock_list *entry;
1140 unsigned long ret = 1;
1141
1142 if (lockdep_dependency_visit(class, depth))
1143 return 0;
1144 /*
1145 * Recurse this class's dependency list:
1146 */
1147 list_for_each_entry(entry, &class->locks_before, entry)
1148 ret += __lockdep_count_backward_deps(entry->class, depth + 1);
1149
1150 return ret;
1151}
1152
1153unsigned long lockdep_count_backward_deps(struct lock_class *class)
1154{
1155 unsigned long ret, flags;
1156
1157 local_irq_save(flags);
1158 __raw_spin_lock(&lockdep_lock);
1159 ret = __lockdep_count_backward_deps(class, 0);
1160 __raw_spin_unlock(&lockdep_lock);
1161 local_irq_restore(flags);
1162
1163 return ret;
1164}
1165
Peter Zijlstra8e182572007-07-19 01:48:54 -07001166/*
1167 * Prove that the dependency graph starting at <entry> can not
1168 * lead to <target>. Print an error and return 0 if it does.
1169 */
1170static noinline int
1171check_noncircular(struct lock_class *source, unsigned int depth)
1172{
1173 struct lock_list *entry;
1174
David Miller419ca3f2008-07-29 21:45:03 -07001175 if (lockdep_dependency_visit(source, depth))
1176 return 1;
1177
Peter Zijlstra8e182572007-07-19 01:48:54 -07001178 debug_atomic_inc(&nr_cyclic_check_recursions);
1179 if (depth > max_recursion_depth)
1180 max_recursion_depth = depth;
1181 if (depth >= RECURSION_LIMIT)
1182 return print_infinite_recursion_bug();
1183 /*
1184 * Check this lock's dependency list:
1185 */
1186 list_for_each_entry(entry, &source->locks_after, entry) {
Dave Jonesf82b2172008-08-11 09:30:23 +02001187 if (entry->class == hlock_class(check_target))
Ming Leic94aa5c2009-07-16 15:44:29 +02001188 return 2;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001189 debug_atomic_inc(&nr_cyclic_checks);
Ming Leic94aa5c2009-07-16 15:44:29 +02001190 if (check_noncircular(entry->class, depth+1) == 2)
1191 return 2;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001192 }
1193 return 1;
1194}
1195
Ming Leic94aa5c2009-07-16 15:44:29 +02001196
Steven Rostedt81d68a92008-05-12 21:20:42 +02001197#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001198/*
1199 * Forwards and backwards subgraph searching, for the purposes of
1200 * proving that two subgraphs can be connected by a new dependency
1201 * without creating any illegal irq-safe -> irq-unsafe lock dependency.
1202 */
1203static enum lock_usage_bit find_usage_bit;
1204static struct lock_class *forwards_match, *backwards_match;
1205
1206/*
1207 * Find a node in the forwards-direction dependency sub-graph starting
1208 * at <source> that matches <find_usage_bit>.
1209 *
1210 * Return 2 if such a node exists in the subgraph, and put that node
1211 * into <forwards_match>.
1212 *
1213 * Return 1 otherwise and keep <forwards_match> unchanged.
1214 * Return 0 on error.
1215 */
1216static noinline int
1217find_usage_forwards(struct lock_class *source, unsigned int depth)
1218{
1219 struct lock_list *entry;
1220 int ret;
1221
David Miller419ca3f2008-07-29 21:45:03 -07001222 if (lockdep_dependency_visit(source, depth))
1223 return 1;
1224
Peter Zijlstra8e182572007-07-19 01:48:54 -07001225 if (depth > max_recursion_depth)
1226 max_recursion_depth = depth;
1227 if (depth >= RECURSION_LIMIT)
1228 return print_infinite_recursion_bug();
1229
1230 debug_atomic_inc(&nr_find_usage_forwards_checks);
1231 if (source->usage_mask & (1 << find_usage_bit)) {
1232 forwards_match = source;
1233 return 2;
1234 }
1235
1236 /*
1237 * Check this lock's dependency list:
1238 */
1239 list_for_each_entry(entry, &source->locks_after, entry) {
1240 debug_atomic_inc(&nr_find_usage_forwards_recursions);
1241 ret = find_usage_forwards(entry->class, depth+1);
1242 if (ret == 2 || ret == 0)
1243 return ret;
1244 }
1245 return 1;
1246}
1247
1248/*
1249 * Find a node in the backwards-direction dependency sub-graph starting
1250 * at <source> that matches <find_usage_bit>.
1251 *
1252 * Return 2 if such a node exists in the subgraph, and put that node
1253 * into <backwards_match>.
1254 *
1255 * Return 1 otherwise and keep <backwards_match> unchanged.
1256 * Return 0 on error.
1257 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02001258static noinline int
Peter Zijlstra8e182572007-07-19 01:48:54 -07001259find_usage_backwards(struct lock_class *source, unsigned int depth)
1260{
1261 struct lock_list *entry;
1262 int ret;
1263
David Miller419ca3f2008-07-29 21:45:03 -07001264 if (lockdep_dependency_visit(source, depth))
1265 return 1;
1266
Peter Zijlstra8e182572007-07-19 01:48:54 -07001267 if (!__raw_spin_is_locked(&lockdep_lock))
1268 return DEBUG_LOCKS_WARN_ON(1);
1269
1270 if (depth > max_recursion_depth)
1271 max_recursion_depth = depth;
1272 if (depth >= RECURSION_LIMIT)
1273 return print_infinite_recursion_bug();
1274
1275 debug_atomic_inc(&nr_find_usage_backwards_checks);
1276 if (source->usage_mask & (1 << find_usage_bit)) {
1277 backwards_match = source;
1278 return 2;
1279 }
1280
Dave Jonesf82b2172008-08-11 09:30:23 +02001281 if (!source && debug_locks_off_graph_unlock()) {
1282 WARN_ON(1);
1283 return 0;
1284 }
1285
Peter Zijlstra8e182572007-07-19 01:48:54 -07001286 /*
1287 * Check this lock's dependency list:
1288 */
1289 list_for_each_entry(entry, &source->locks_before, entry) {
1290 debug_atomic_inc(&nr_find_usage_backwards_recursions);
1291 ret = find_usage_backwards(entry->class, depth+1);
1292 if (ret == 2 || ret == 0)
1293 return ret;
1294 }
1295 return 1;
1296}
1297
1298static int
1299print_bad_irq_dependency(struct task_struct *curr,
1300 struct held_lock *prev,
1301 struct held_lock *next,
1302 enum lock_usage_bit bit1,
1303 enum lock_usage_bit bit2,
1304 const char *irqclass)
1305{
1306 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1307 return 0;
1308
1309 printk("\n======================================================\n");
1310 printk( "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n",
1311 irqclass, irqclass);
1312 print_kernel_version();
1313 printk( "------------------------------------------------------\n");
1314 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 -07001315 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07001316 curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT,
1317 curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT,
1318 curr->hardirqs_enabled,
1319 curr->softirqs_enabled);
1320 print_lock(next);
1321
1322 printk("\nand this task is already holding:\n");
1323 print_lock(prev);
1324 printk("which would create a new lock dependency:\n");
Dave Jonesf82b2172008-08-11 09:30:23 +02001325 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001326 printk(" ->");
Dave Jonesf82b2172008-08-11 09:30:23 +02001327 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001328 printk("\n");
1329
1330 printk("\nbut this new dependency connects a %s-irq-safe lock:\n",
1331 irqclass);
1332 print_lock_name(backwards_match);
1333 printk("\n... which became %s-irq-safe at:\n", irqclass);
1334
1335 print_stack_trace(backwards_match->usage_traces + bit1, 1);
1336
1337 printk("\nto a %s-irq-unsafe lock:\n", irqclass);
1338 print_lock_name(forwards_match);
1339 printk("\n... which became %s-irq-unsafe at:\n", irqclass);
1340 printk("...");
1341
1342 print_stack_trace(forwards_match->usage_traces + bit2, 1);
1343
1344 printk("\nother info that might help us debug this:\n\n");
1345 lockdep_print_held_locks(curr);
1346
1347 printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass);
1348 print_lock_dependencies(backwards_match, 0);
1349
1350 printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass);
1351 print_lock_dependencies(forwards_match, 0);
1352
1353 printk("\nstack backtrace:\n");
1354 dump_stack();
1355
1356 return 0;
1357}
1358
1359static int
1360check_usage(struct task_struct *curr, struct held_lock *prev,
1361 struct held_lock *next, enum lock_usage_bit bit_backwards,
1362 enum lock_usage_bit bit_forwards, const char *irqclass)
1363{
1364 int ret;
1365
1366 find_usage_bit = bit_backwards;
1367 /* fills in <backwards_match> */
Dave Jonesf82b2172008-08-11 09:30:23 +02001368 ret = find_usage_backwards(hlock_class(prev), 0);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001369 if (!ret || ret == 1)
1370 return ret;
1371
1372 find_usage_bit = bit_forwards;
Dave Jonesf82b2172008-08-11 09:30:23 +02001373 ret = find_usage_forwards(hlock_class(next), 0);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001374 if (!ret || ret == 1)
1375 return ret;
1376 /* ret == 2 */
1377 return print_bad_irq_dependency(curr, prev, next,
1378 bit_backwards, bit_forwards, irqclass);
1379}
1380
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001381static const char *state_names[] = {
1382#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001383 __stringify(__STATE),
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001384#include "lockdep_states.h"
1385#undef LOCKDEP_STATE
1386};
1387
1388static const char *state_rnames[] = {
1389#define LOCKDEP_STATE(__STATE) \
Peter Zijlstrab4b136f2009-01-29 14:50:36 +01001390 __stringify(__STATE)"-READ",
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001391#include "lockdep_states.h"
1392#undef LOCKDEP_STATE
1393};
1394
1395static inline const char *state_name(enum lock_usage_bit bit)
1396{
1397 return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2];
1398}
1399
1400static int exclusive_bit(int new_bit)
1401{
1402 /*
1403 * USED_IN
1404 * USED_IN_READ
1405 * ENABLED
1406 * ENABLED_READ
1407 *
1408 * bit 0 - write/read
1409 * bit 1 - used_in/enabled
1410 * bit 2+ state
1411 */
1412
1413 int state = new_bit & ~3;
1414 int dir = new_bit & 2;
1415
1416 /*
1417 * keep state, bit flip the direction and strip read.
1418 */
1419 return state | (dir ^ 2);
1420}
1421
1422static int check_irq_usage(struct task_struct *curr, struct held_lock *prev,
1423 struct held_lock *next, enum lock_usage_bit bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001424{
1425 /*
1426 * Prove that the new dependency does not connect a hardirq-safe
1427 * lock with a hardirq-unsafe lock - to achieve this we search
1428 * the backwards-subgraph starting at <prev>, and the
1429 * forwards-subgraph starting at <next>:
1430 */
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001431 if (!check_usage(curr, prev, next, bit,
1432 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001433 return 0;
1434
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001435 bit++; /* _READ */
1436
Peter Zijlstra8e182572007-07-19 01:48:54 -07001437 /*
1438 * Prove that the new dependency does not connect a hardirq-safe-read
1439 * lock with a hardirq-unsafe lock - to achieve this we search
1440 * the backwards-subgraph starting at <prev>, and the
1441 * forwards-subgraph starting at <next>:
1442 */
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001443 if (!check_usage(curr, prev, next, bit,
1444 exclusive_bit(bit), state_name(bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001445 return 0;
1446
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001447 return 1;
1448}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001449
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001450static int
1451check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1452 struct held_lock *next)
1453{
1454#define LOCKDEP_STATE(__STATE) \
1455 if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \
Nick Piggincf40bd12009-01-21 08:12:39 +01001456 return 0;
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01001457#include "lockdep_states.h"
1458#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01001459
Peter Zijlstra8e182572007-07-19 01:48:54 -07001460 return 1;
1461}
1462
1463static void inc_chains(void)
1464{
1465 if (current->hardirq_context)
1466 nr_hardirq_chains++;
1467 else {
1468 if (current->softirq_context)
1469 nr_softirq_chains++;
1470 else
1471 nr_process_chains++;
1472 }
1473}
1474
1475#else
1476
1477static inline int
1478check_prev_add_irq(struct task_struct *curr, struct held_lock *prev,
1479 struct held_lock *next)
1480{
1481 return 1;
1482}
1483
1484static inline void inc_chains(void)
1485{
1486 nr_process_chains++;
1487}
1488
1489#endif
1490
1491static int
1492print_deadlock_bug(struct task_struct *curr, struct held_lock *prev,
1493 struct held_lock *next)
1494{
1495 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1496 return 0;
1497
1498 printk("\n=============================================\n");
1499 printk( "[ INFO: possible recursive locking detected ]\n");
1500 print_kernel_version();
1501 printk( "---------------------------------------------\n");
1502 printk("%s/%d is trying to acquire lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001503 curr->comm, task_pid_nr(curr));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001504 print_lock(next);
1505 printk("\nbut task is already holding lock:\n");
1506 print_lock(prev);
1507
1508 printk("\nother info that might help us debug this:\n");
1509 lockdep_print_held_locks(curr);
1510
1511 printk("\nstack backtrace:\n");
1512 dump_stack();
1513
1514 return 0;
1515}
1516
1517/*
1518 * Check whether we are holding such a class already.
1519 *
1520 * (Note that this has to be done separately, because the graph cannot
1521 * detect such classes of deadlocks.)
1522 *
1523 * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read
1524 */
1525static int
1526check_deadlock(struct task_struct *curr, struct held_lock *next,
1527 struct lockdep_map *next_instance, int read)
1528{
1529 struct held_lock *prev;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001530 struct held_lock *nest = NULL;
Peter Zijlstra8e182572007-07-19 01:48:54 -07001531 int i;
1532
1533 for (i = 0; i < curr->lockdep_depth; i++) {
1534 prev = curr->held_locks + i;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001535
1536 if (prev->instance == next->nest_lock)
1537 nest = prev;
1538
Dave Jonesf82b2172008-08-11 09:30:23 +02001539 if (hlock_class(prev) != hlock_class(next))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001540 continue;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001541
Peter Zijlstra8e182572007-07-19 01:48:54 -07001542 /*
1543 * Allow read-after-read recursion of the same
1544 * lock class (i.e. read_lock(lock)+read_lock(lock)):
1545 */
1546 if ((read == 2) && prev->read)
1547 return 2;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02001548
1549 /*
1550 * We're holding the nest_lock, which serializes this lock's
1551 * nesting behaviour.
1552 */
1553 if (nest)
1554 return 2;
1555
Peter Zijlstra8e182572007-07-19 01:48:54 -07001556 return print_deadlock_bug(curr, prev, next);
1557 }
1558 return 1;
1559}
1560
1561/*
1562 * There was a chain-cache miss, and we are about to add a new dependency
1563 * to a previous lock. We recursively validate the following rules:
1564 *
1565 * - would the adding of the <prev> -> <next> dependency create a
1566 * circular dependency in the graph? [== circular deadlock]
1567 *
1568 * - does the new prev->next dependency connect any hardirq-safe lock
1569 * (in the full backwards-subgraph starting at <prev>) with any
1570 * hardirq-unsafe lock (in the full forwards-subgraph starting at
1571 * <next>)? [== illegal lock inversion with hardirq contexts]
1572 *
1573 * - does the new prev->next dependency connect any softirq-safe lock
1574 * (in the full backwards-subgraph starting at <prev>) with any
1575 * softirq-unsafe lock (in the full forwards-subgraph starting at
1576 * <next>)? [== illegal lock inversion with softirq contexts]
1577 *
1578 * any of these scenarios could lead to a deadlock.
1579 *
1580 * Then if all the validations pass, we add the forwards and backwards
1581 * dependency.
1582 */
1583static int
1584check_prev_add(struct task_struct *curr, struct held_lock *prev,
1585 struct held_lock *next, int distance)
1586{
1587 struct lock_list *entry;
1588 int ret;
1589
1590 /*
1591 * Prove that the new <prev> -> <next> dependency would not
1592 * create a circular dependency in the graph. (We do this by
1593 * forward-recursing into the graph starting at <next>, and
1594 * checking whether we can reach <prev>.)
1595 *
1596 * We are using global variables to control the recursion, to
1597 * keep the stackframe size of the recursive functions low:
1598 */
1599 check_source = next;
1600 check_target = prev;
Ming Leid588e462009-07-16 15:44:29 +02001601
Ming Leic94aa5c2009-07-16 15:44:29 +02001602 if (check_noncircular(hlock_class(next), 0) == 2)
1603 return print_circular_bug();
1604
Peter Zijlstra8e182572007-07-19 01:48:54 -07001605 if (!check_prev_add_irq(curr, prev, next))
1606 return 0;
1607
1608 /*
1609 * For recursive read-locks we do all the dependency checks,
1610 * but we dont store read-triggered dependencies (only
1611 * write-triggered dependencies). This ensures that only the
1612 * write-side dependencies matter, and that if for example a
1613 * write-lock never takes any other locks, then the reads are
1614 * equivalent to a NOP.
1615 */
1616 if (next->read == 2 || prev->read == 2)
1617 return 1;
1618 /*
1619 * Is the <prev> -> <next> dependency already present?
1620 *
1621 * (this may occur even though this is a new chain: consider
1622 * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3
1623 * chains - the second one will be new, but L1 already has
1624 * L2 added to its dependency list, due to the first chain.)
1625 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001626 list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) {
1627 if (entry->class == hlock_class(next)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001628 if (distance == 1)
1629 entry->distance = 1;
1630 return 2;
1631 }
1632 }
1633
1634 /*
1635 * Ok, all validations passed, add the new lock
1636 * to the previous lock's dependency list:
1637 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001638 ret = add_lock_to_list(hlock_class(prev), hlock_class(next),
1639 &hlock_class(prev)->locks_after,
1640 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001641
1642 if (!ret)
1643 return 0;
1644
Dave Jonesf82b2172008-08-11 09:30:23 +02001645 ret = add_lock_to_list(hlock_class(next), hlock_class(prev),
1646 &hlock_class(next)->locks_before,
1647 next->acquire_ip, distance);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001648 if (!ret)
1649 return 0;
1650
1651 /*
1652 * Debugging printouts:
1653 */
Dave Jonesf82b2172008-08-11 09:30:23 +02001654 if (verbose(hlock_class(prev)) || verbose(hlock_class(next))) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001655 graph_unlock();
1656 printk("\n new dependency: ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001657 print_lock_name(hlock_class(prev));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001658 printk(" => ");
Dave Jonesf82b2172008-08-11 09:30:23 +02001659 print_lock_name(hlock_class(next));
Peter Zijlstra8e182572007-07-19 01:48:54 -07001660 printk("\n");
1661 dump_stack();
1662 return graph_lock();
1663 }
1664 return 1;
1665}
1666
1667/*
1668 * Add the dependency to all directly-previous locks that are 'relevant'.
1669 * The ones that are relevant are (in increasing distance from curr):
1670 * all consecutive trylock entries and the final non-trylock entry - or
1671 * the end of this context's lock-chain - whichever comes first.
1672 */
1673static int
1674check_prevs_add(struct task_struct *curr, struct held_lock *next)
1675{
1676 int depth = curr->lockdep_depth;
1677 struct held_lock *hlock;
1678
1679 /*
1680 * Debugging checks.
1681 *
1682 * Depth must not be zero for a non-head lock:
1683 */
1684 if (!depth)
1685 goto out_bug;
1686 /*
1687 * At least two relevant locks must exist for this
1688 * to be a head:
1689 */
1690 if (curr->held_locks[depth].irq_context !=
1691 curr->held_locks[depth-1].irq_context)
1692 goto out_bug;
1693
1694 for (;;) {
1695 int distance = curr->lockdep_depth - depth + 1;
1696 hlock = curr->held_locks + depth-1;
1697 /*
1698 * Only non-recursive-read entries get new dependencies
1699 * added:
1700 */
1701 if (hlock->read != 2) {
1702 if (!check_prev_add(curr, hlock, next, distance))
1703 return 0;
1704 /*
1705 * Stop after the first non-trylock entry,
1706 * as non-trylock entries have added their
1707 * own direct dependencies already, so this
1708 * lock is connected to them indirectly:
1709 */
1710 if (!hlock->trylock)
1711 break;
1712 }
1713 depth--;
1714 /*
1715 * End of lock-stack?
1716 */
1717 if (!depth)
1718 break;
1719 /*
1720 * Stop the search if we cross into another context:
1721 */
1722 if (curr->held_locks[depth].irq_context !=
1723 curr->held_locks[depth-1].irq_context)
1724 break;
1725 }
1726 return 1;
1727out_bug:
1728 if (!debug_locks_off_graph_unlock())
1729 return 0;
1730
1731 WARN_ON(1);
1732
1733 return 0;
1734}
1735
1736unsigned long nr_lock_chains;
Huang, Ying443cd502008-06-20 16:39:21 +08001737struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS];
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001738int nr_chain_hlocks;
Huang, Ying443cd502008-06-20 16:39:21 +08001739static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS];
1740
1741struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i)
1742{
1743 return lock_classes + chain_hlocks[chain->base + i];
1744}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001745
1746/*
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001747 * Look up a dependency chain. If the key is not present yet then
Jarek Poplawski9e860d02007-05-08 00:30:12 -07001748 * add it and return 1 - in this case the new dependency chain is
1749 * validated. If the key is already hashed, return 0.
1750 * (On return with 1 graph_lock is held.)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001751 */
Huang, Ying443cd502008-06-20 16:39:21 +08001752static inline int lookup_chain_cache(struct task_struct *curr,
1753 struct held_lock *hlock,
1754 u64 chain_key)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001755{
Dave Jonesf82b2172008-08-11 09:30:23 +02001756 struct lock_class *class = hlock_class(hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001757 struct list_head *hash_head = chainhashentry(chain_key);
1758 struct lock_chain *chain;
Huang, Ying443cd502008-06-20 16:39:21 +08001759 struct held_lock *hlock_curr, *hlock_next;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001760 int i, j, n, cn;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001761
Jarek Poplawski381a2292007-02-10 01:44:58 -08001762 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
1763 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001764 /*
1765 * We can walk it lock-free, because entries only get added
1766 * to the hash:
1767 */
1768 list_for_each_entry(chain, hash_head, entry) {
1769 if (chain->chain_key == chain_key) {
1770cache_hit:
1771 debug_atomic_inc(&chain_lookup_hits);
Ingo Molnar81fc6852006-12-13 00:34:40 -08001772 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001773 printk("\nhash chain already cached, key: "
1774 "%016Lx tail class: [%p] %s\n",
1775 (unsigned long long)chain_key,
1776 class->key, class->name);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001777 return 0;
1778 }
1779 }
Ingo Molnar81fc6852006-12-13 00:34:40 -08001780 if (very_verbose(class))
Andrew Morton755cd902006-12-29 16:49:14 -08001781 printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n",
1782 (unsigned long long)chain_key, class->key, class->name);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001783 /*
1784 * Allocate a new chain entry from the static array, and add
1785 * it to the hash:
1786 */
Ingo Molnar74c383f2006-12-13 00:34:43 -08001787 if (!graph_lock())
1788 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001789 /*
1790 * We have to walk the chain again locked - to avoid duplicates:
1791 */
1792 list_for_each_entry(chain, hash_head, entry) {
1793 if (chain->chain_key == chain_key) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001794 graph_unlock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001795 goto cache_hit;
1796 }
1797 }
1798 if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08001799 if (!debug_locks_off_graph_unlock())
1800 return 0;
1801
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001802 printk("BUG: MAX_LOCKDEP_CHAINS too low!\n");
1803 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01001804 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001805 return 0;
1806 }
1807 chain = lock_chains + nr_lock_chains++;
1808 chain->chain_key = chain_key;
Huang, Ying443cd502008-06-20 16:39:21 +08001809 chain->irq_context = hlock->irq_context;
1810 /* Find the first held_lock of current chain */
1811 hlock_next = hlock;
1812 for (i = curr->lockdep_depth - 1; i >= 0; i--) {
1813 hlock_curr = curr->held_locks + i;
1814 if (hlock_curr->irq_context != hlock_next->irq_context)
1815 break;
1816 hlock_next = hlock;
1817 }
1818 i++;
1819 chain->depth = curr->lockdep_depth + 1 - i;
Huang, Yingcd1a28e2008-06-23 11:20:54 +08001820 cn = nr_chain_hlocks;
1821 while (cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS) {
1822 n = cmpxchg(&nr_chain_hlocks, cn, cn + chain->depth);
1823 if (n == cn)
1824 break;
1825 cn = n;
1826 }
1827 if (likely(cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) {
1828 chain->base = cn;
Huang, Ying443cd502008-06-20 16:39:21 +08001829 for (j = 0; j < chain->depth - 1; j++, i++) {
Dave Jonesf82b2172008-08-11 09:30:23 +02001830 int lock_id = curr->held_locks[i].class_idx - 1;
Huang, Ying443cd502008-06-20 16:39:21 +08001831 chain_hlocks[chain->base + j] = lock_id;
1832 }
1833 chain_hlocks[chain->base + j] = class - lock_classes;
1834 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001835 list_add_tail_rcu(&chain->entry, hash_head);
1836 debug_atomic_inc(&chain_lookup_misses);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001837 inc_chains();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001838
1839 return 1;
1840}
Peter Zijlstra8e182572007-07-19 01:48:54 -07001841
1842static int validate_chain(struct task_struct *curr, struct lockdep_map *lock,
Johannes Berg4e6045f2007-10-18 23:39:55 -07001843 struct held_lock *hlock, int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001844{
1845 /*
1846 * Trylock needs to maintain the stack of held locks, but it
1847 * does not add new dependencies, because trylock can be done
1848 * in any order.
1849 *
1850 * We look up the chain_key and do the O(N^2) check and update of
1851 * the dependencies only if this is a new dependency chain.
1852 * (If lookup_chain_cache() returns with 1 it acquires
1853 * graph_lock for us)
1854 */
1855 if (!hlock->trylock && (hlock->check == 2) &&
Huang, Ying443cd502008-06-20 16:39:21 +08001856 lookup_chain_cache(curr, hlock, chain_key)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07001857 /*
1858 * Check whether last held lock:
1859 *
1860 * - is irq-safe, if this lock is irq-unsafe
1861 * - is softirq-safe, if this lock is hardirq-unsafe
1862 *
1863 * And check whether the new lock's dependency graph
1864 * could lead back to the previous lock.
1865 *
1866 * any of these scenarios could lead to a deadlock. If
1867 * All validations
1868 */
1869 int ret = check_deadlock(curr, hlock, lock, hlock->read);
1870
1871 if (!ret)
1872 return 0;
1873 /*
1874 * Mark recursive read, as we jump over it when
1875 * building dependencies (just like we jump over
1876 * trylock entries):
1877 */
1878 if (ret == 2)
1879 hlock->read = 2;
1880 /*
1881 * Add dependency only if this lock is not the head
1882 * of the chain, and if it's not a secondary read-lock:
1883 */
1884 if (!chain_head && ret != 2)
1885 if (!check_prevs_add(curr, hlock))
1886 return 0;
1887 graph_unlock();
1888 } else
1889 /* after lookup_chain_cache(): */
1890 if (unlikely(!debug_locks))
1891 return 0;
1892
1893 return 1;
1894}
1895#else
1896static inline int validate_chain(struct task_struct *curr,
1897 struct lockdep_map *lock, struct held_lock *hlock,
Gregory Haskins3aa416b2007-10-11 22:11:11 +02001898 int chain_head, u64 chain_key)
Peter Zijlstra8e182572007-07-19 01:48:54 -07001899{
1900 return 1;
1901}
Peter Zijlstraca58abc2007-07-19 01:48:53 -07001902#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001903
1904/*
1905 * We are building curr_chain_key incrementally, so double-check
1906 * it from scratch, to make sure that it's done correctly:
1907 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02001908static void check_chain_key(struct task_struct *curr)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001909{
1910#ifdef CONFIG_DEBUG_LOCKDEP
1911 struct held_lock *hlock, *prev_hlock = NULL;
1912 unsigned int i, id;
1913 u64 chain_key = 0;
1914
1915 for (i = 0; i < curr->lockdep_depth; i++) {
1916 hlock = curr->held_locks + i;
1917 if (chain_key != hlock->prev_chain_key) {
1918 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07001919 WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001920 curr->lockdep_depth, i,
1921 (unsigned long long)chain_key,
1922 (unsigned long long)hlock->prev_chain_key);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001923 return;
1924 }
Dave Jonesf82b2172008-08-11 09:30:23 +02001925 id = hlock->class_idx - 1;
Jarek Poplawski381a2292007-02-10 01:44:58 -08001926 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
1927 return;
1928
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001929 if (prev_hlock && (prev_hlock->irq_context !=
1930 hlock->irq_context))
1931 chain_key = 0;
1932 chain_key = iterate_chain_key(chain_key, id);
1933 prev_hlock = hlock;
1934 }
1935 if (chain_key != curr->curr_chain_key) {
1936 debug_locks_off();
Arjan van de Ven2df8b1d2008-07-30 12:43:11 -07001937 WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n",
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001938 curr->lockdep_depth, i,
1939 (unsigned long long)chain_key,
1940 (unsigned long long)curr->curr_chain_key);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001941 }
1942#endif
1943}
1944
Peter Zijlstra8e182572007-07-19 01:48:54 -07001945static int
1946print_usage_bug(struct task_struct *curr, struct held_lock *this,
1947 enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit)
1948{
1949 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
1950 return 0;
1951
1952 printk("\n=================================\n");
1953 printk( "[ INFO: inconsistent lock state ]\n");
1954 print_kernel_version();
1955 printk( "---------------------------------\n");
1956
1957 printk("inconsistent {%s} -> {%s} usage.\n",
1958 usage_str[prev_bit], usage_str[new_bit]);
1959
1960 printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07001961 curr->comm, task_pid_nr(curr),
Peter Zijlstra8e182572007-07-19 01:48:54 -07001962 trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT,
1963 trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT,
1964 trace_hardirqs_enabled(curr),
1965 trace_softirqs_enabled(curr));
1966 print_lock(this);
1967
1968 printk("{%s} state was registered at:\n", usage_str[prev_bit]);
Dave Jonesf82b2172008-08-11 09:30:23 +02001969 print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1);
Peter Zijlstra8e182572007-07-19 01:48:54 -07001970
1971 print_irqtrace_events(curr);
1972 printk("\nother info that might help us debug this:\n");
1973 lockdep_print_held_locks(curr);
1974
1975 printk("\nstack backtrace:\n");
1976 dump_stack();
1977
1978 return 0;
1979}
1980
1981/*
1982 * Print out an error if an invalid bit is set:
1983 */
1984static inline int
1985valid_state(struct task_struct *curr, struct held_lock *this,
1986 enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit)
1987{
Dave Jonesf82b2172008-08-11 09:30:23 +02001988 if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit)))
Peter Zijlstra8e182572007-07-19 01:48:54 -07001989 return print_usage_bug(curr, this, bad_bit, new_bit);
1990 return 1;
1991}
1992
1993static int mark_lock(struct task_struct *curr, struct held_lock *this,
1994 enum lock_usage_bit new_bit);
1995
Steven Rostedt81d68a92008-05-12 21:20:42 +02001996#if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07001997
1998/*
1999 * print irq inversion bug:
2000 */
2001static int
2002print_irq_inversion_bug(struct task_struct *curr, struct lock_class *other,
2003 struct held_lock *this, int forwards,
2004 const char *irqclass)
2005{
Ingo Molnar74c383f2006-12-13 00:34:43 -08002006 if (!debug_locks_off_graph_unlock() || debug_locks_silent)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002007 return 0;
2008
2009 printk("\n=========================================================\n");
2010 printk( "[ INFO: possible irq lock inversion dependency detected ]\n");
Dave Jones99de0552006-09-29 02:00:10 -07002011 print_kernel_version();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002012 printk( "---------------------------------------------------------\n");
2013 printk("%s/%d just changed the state of lock:\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002014 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002015 print_lock(this);
2016 if (forwards)
Peter Zijlstra26575e22009-03-04 14:53:24 +01002017 printk("but this lock took another, %s-unsafe lock in the past:\n", irqclass);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002018 else
Peter Zijlstra26575e22009-03-04 14:53:24 +01002019 printk("but this lock was taken by another, %s-safe lock in the past:\n", irqclass);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002020 print_lock_name(other);
2021 printk("\n\nand interrupts could create inverse lock ordering between them.\n\n");
2022
2023 printk("\nother info that might help us debug this:\n");
2024 lockdep_print_held_locks(curr);
2025
2026 printk("\nthe first lock's dependencies:\n");
Dave Jonesf82b2172008-08-11 09:30:23 +02002027 print_lock_dependencies(hlock_class(this), 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002028
2029 printk("\nthe second lock's dependencies:\n");
2030 print_lock_dependencies(other, 0);
2031
2032 printk("\nstack backtrace:\n");
2033 dump_stack();
2034
2035 return 0;
2036}
2037
2038/*
2039 * Prove that in the forwards-direction subgraph starting at <this>
2040 * there is no lock matching <mask>:
2041 */
2042static int
2043check_usage_forwards(struct task_struct *curr, struct held_lock *this,
2044 enum lock_usage_bit bit, const char *irqclass)
2045{
2046 int ret;
2047
2048 find_usage_bit = bit;
2049 /* fills in <forwards_match> */
Dave Jonesf82b2172008-08-11 09:30:23 +02002050 ret = find_usage_forwards(hlock_class(this), 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002051 if (!ret || ret == 1)
2052 return ret;
2053
2054 return print_irq_inversion_bug(curr, forwards_match, this, 1, irqclass);
2055}
2056
2057/*
2058 * Prove that in the backwards-direction subgraph starting at <this>
2059 * there is no lock matching <mask>:
2060 */
2061static int
2062check_usage_backwards(struct task_struct *curr, struct held_lock *this,
2063 enum lock_usage_bit bit, const char *irqclass)
2064{
2065 int ret;
2066
2067 find_usage_bit = bit;
2068 /* fills in <backwards_match> */
Dave Jonesf82b2172008-08-11 09:30:23 +02002069 ret = find_usage_backwards(hlock_class(this), 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002070 if (!ret || ret == 1)
2071 return ret;
2072
2073 return print_irq_inversion_bug(curr, backwards_match, this, 0, irqclass);
2074}
2075
Ingo Molnar3117df02006-12-13 00:34:43 -08002076void print_irqtrace_events(struct task_struct *curr)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002077{
2078 printk("irq event stamp: %u\n", curr->irq_events);
2079 printk("hardirqs last enabled at (%u): ", curr->hardirq_enable_event);
2080 print_ip_sym(curr->hardirq_enable_ip);
2081 printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event);
2082 print_ip_sym(curr->hardirq_disable_ip);
2083 printk("softirqs last enabled at (%u): ", curr->softirq_enable_event);
2084 print_ip_sym(curr->softirq_enable_ip);
2085 printk("softirqs last disabled at (%u): ", curr->softirq_disable_event);
2086 print_ip_sym(curr->softirq_disable_ip);
2087}
2088
Peter Zijlstracd953022009-01-22 16:38:21 +01002089static int HARDIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002090{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002091#if HARDIRQ_VERBOSE
2092 return class_filter(class);
2093#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002094 return 0;
2095}
2096
Peter Zijlstracd953022009-01-22 16:38:21 +01002097static int SOFTIRQ_verbose(struct lock_class *class)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002098{
Peter Zijlstra8e182572007-07-19 01:48:54 -07002099#if SOFTIRQ_VERBOSE
2100 return class_filter(class);
2101#endif
2102 return 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002103}
2104
Peter Zijlstracd953022009-01-22 16:38:21 +01002105static int RECLAIM_FS_verbose(struct lock_class *class)
Nick Piggincf40bd12009-01-21 08:12:39 +01002106{
2107#if RECLAIM_VERBOSE
2108 return class_filter(class);
2109#endif
2110 return 0;
2111}
2112
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002113#define STRICT_READ_CHECKS 1
2114
Peter Zijlstracd953022009-01-22 16:38:21 +01002115static int (*state_verbose_f[])(struct lock_class *class) = {
2116#define LOCKDEP_STATE(__STATE) \
2117 __STATE##_verbose,
2118#include "lockdep_states.h"
2119#undef LOCKDEP_STATE
2120};
2121
2122static inline int state_verbose(enum lock_usage_bit bit,
2123 struct lock_class *class)
2124{
2125 return state_verbose_f[bit >> 2](class);
2126}
2127
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002128typedef int (*check_usage_f)(struct task_struct *, struct held_lock *,
2129 enum lock_usage_bit bit, const char *name);
2130
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002131static int
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002132mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2133 enum lock_usage_bit new_bit)
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002134{
Peter Zijlstraf9892092009-01-22 16:09:59 +01002135 int excl_bit = exclusive_bit(new_bit);
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002136 int read = new_bit & 1;
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002137 int dir = new_bit & 2;
2138
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002139 /*
2140 * mark USED_IN has to look forwards -- to ensure no dependency
2141 * has ENABLED state, which would allow recursion deadlocks.
2142 *
2143 * mark ENABLED has to look backwards -- to ensure no dependee
2144 * has USED_IN state, which, again, would allow recursion deadlocks.
2145 */
Peter Zijlstra42c50d52009-01-22 16:58:16 +01002146 check_usage_f usage = dir ?
2147 check_usage_backwards : check_usage_forwards;
Peter Zijlstraf9892092009-01-22 16:09:59 +01002148
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002149 /*
2150 * Validate that this particular lock does not have conflicting
2151 * usage states.
2152 */
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002153 if (!valid_state(curr, this, new_bit, excl_bit))
2154 return 0;
Peter Zijlstra9d3651a2009-01-22 17:18:32 +01002155
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002156 /*
2157 * Validate that the lock dependencies don't have conflicting usage
2158 * states.
2159 */
2160 if ((!read || !dir || STRICT_READ_CHECKS) &&
Peter Zijlstra1c21f142009-03-04 13:51:13 +01002161 !usage(curr, this, excl_bit, state_name(new_bit & ~1)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002162 return 0;
Peter Zijlstra780e8202009-01-22 16:51:29 +01002163
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002164 /*
2165 * Check for read in write conflicts
2166 */
2167 if (!read) {
2168 if (!valid_state(curr, this, new_bit, excl_bit + 1))
2169 return 0;
2170
2171 if (STRICT_READ_CHECKS &&
Peter Zijlstra4f367d8a2009-01-22 18:10:42 +01002172 !usage(curr, this, excl_bit + 1,
2173 state_name(new_bit + 1)))
Peter Zijlstra38aa2712009-01-27 14:53:50 +01002174 return 0;
2175 }
Peter Zijlstra780e8202009-01-22 16:51:29 +01002176
Peter Zijlstracd953022009-01-22 16:38:21 +01002177 if (state_verbose(new_bit, hlock_class(this)))
Peter Zijlstra6a6904d2009-01-22 16:07:44 +01002178 return 2;
2179
2180 return 1;
2181}
2182
Nick Piggincf40bd12009-01-21 08:12:39 +01002183enum mark_type {
Peter Zijlstra36bfb9b2009-01-22 14:12:41 +01002184#define LOCKDEP_STATE(__STATE) __STATE,
2185#include "lockdep_states.h"
2186#undef LOCKDEP_STATE
Nick Piggincf40bd12009-01-21 08:12:39 +01002187};
2188
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002189/*
2190 * Mark all held locks with a usage bit:
2191 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002192static int
Nick Piggincf40bd12009-01-21 08:12:39 +01002193mark_held_locks(struct task_struct *curr, enum mark_type mark)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002194{
2195 enum lock_usage_bit usage_bit;
2196 struct held_lock *hlock;
2197 int i;
2198
2199 for (i = 0; i < curr->lockdep_depth; i++) {
2200 hlock = curr->held_locks + i;
2201
Peter Zijlstracf2ad4d2009-01-27 13:58:08 +01002202 usage_bit = 2 + (mark << 2); /* ENABLED */
2203 if (hlock->read)
2204 usage_bit += 1; /* READ */
2205
2206 BUG_ON(usage_bit >= LOCK_USAGE_STATES);
Nick Piggincf40bd12009-01-21 08:12:39 +01002207
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002208 if (!mark_lock(curr, hlock, usage_bit))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002209 return 0;
2210 }
2211
2212 return 1;
2213}
2214
2215/*
2216 * Debugging helper: via this flag we know that we are in
2217 * 'early bootup code', and will warn about any invalid irqs-on event:
2218 */
2219static int early_boot_irqs_enabled;
2220
2221void early_boot_irqs_off(void)
2222{
2223 early_boot_irqs_enabled = 0;
2224}
2225
2226void early_boot_irqs_on(void)
2227{
2228 early_boot_irqs_enabled = 1;
2229}
2230
2231/*
2232 * Hardirqs will be enabled:
2233 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002234void trace_hardirqs_on_caller(unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002235{
2236 struct task_struct *curr = current;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002237
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002238 time_hardirqs_on(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002239
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002240 if (unlikely(!debug_locks || current->lockdep_recursion))
2241 return;
2242
2243 if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled)))
2244 return;
2245
2246 if (unlikely(curr->hardirqs_enabled)) {
2247 debug_atomic_inc(&redundant_hardirqs_on);
2248 return;
2249 }
2250 /* we'll do an OFF -> ON transition: */
2251 curr->hardirqs_enabled = 1;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002252
2253 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2254 return;
2255 if (DEBUG_LOCKS_WARN_ON(current->hardirq_context))
2256 return;
2257 /*
2258 * We are going to turn hardirqs on, so set the
2259 * usage bit for all held locks:
2260 */
Nick Piggincf40bd12009-01-21 08:12:39 +01002261 if (!mark_held_locks(curr, HARDIRQ))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002262 return;
2263 /*
2264 * If we have softirqs enabled, then set the usage
2265 * bit for all held locks. (disabled hardirqs prevented
2266 * this bit from being set before)
2267 */
2268 if (curr->softirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002269 if (!mark_held_locks(curr, SOFTIRQ))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002270 return;
2271
2272 curr->hardirq_enable_ip = ip;
2273 curr->hardirq_enable_event = ++curr->irq_events;
2274 debug_atomic_inc(&hardirqs_on_events);
2275}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002276EXPORT_SYMBOL(trace_hardirqs_on_caller);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002277
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002278void trace_hardirqs_on(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002279{
2280 trace_hardirqs_on_caller(CALLER_ADDR0);
2281}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002282EXPORT_SYMBOL(trace_hardirqs_on);
2283
2284/*
2285 * Hardirqs were disabled:
2286 */
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002287void trace_hardirqs_off_caller(unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002288{
2289 struct task_struct *curr = current;
2290
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002291 time_hardirqs_off(CALLER_ADDR0, ip);
Steven Rostedt81d68a92008-05-12 21:20:42 +02002292
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002293 if (unlikely(!debug_locks || current->lockdep_recursion))
2294 return;
2295
2296 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2297 return;
2298
2299 if (curr->hardirqs_enabled) {
2300 /*
2301 * We have done an ON -> OFF transition:
2302 */
2303 curr->hardirqs_enabled = 0;
Heiko Carstens6afe40b2008-10-28 11:14:58 +01002304 curr->hardirq_disable_ip = ip;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002305 curr->hardirq_disable_event = ++curr->irq_events;
2306 debug_atomic_inc(&hardirqs_off_events);
2307 } else
2308 debug_atomic_inc(&redundant_hardirqs_off);
2309}
Steven Rostedt81d68a92008-05-12 21:20:42 +02002310EXPORT_SYMBOL(trace_hardirqs_off_caller);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002311
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002312void trace_hardirqs_off(void)
Steven Rostedt81d68a92008-05-12 21:20:42 +02002313{
2314 trace_hardirqs_off_caller(CALLER_ADDR0);
2315}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002316EXPORT_SYMBOL(trace_hardirqs_off);
2317
2318/*
2319 * Softirqs will be enabled:
2320 */
2321void trace_softirqs_on(unsigned long ip)
2322{
2323 struct task_struct *curr = current;
2324
2325 if (unlikely(!debug_locks))
2326 return;
2327
2328 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2329 return;
2330
2331 if (curr->softirqs_enabled) {
2332 debug_atomic_inc(&redundant_softirqs_on);
2333 return;
2334 }
2335
2336 /*
2337 * We'll do an OFF -> ON transition:
2338 */
2339 curr->softirqs_enabled = 1;
2340 curr->softirq_enable_ip = ip;
2341 curr->softirq_enable_event = ++curr->irq_events;
2342 debug_atomic_inc(&softirqs_on_events);
2343 /*
2344 * We are going to turn softirqs on, so set the
2345 * usage bit for all held locks, if hardirqs are
2346 * enabled too:
2347 */
2348 if (curr->hardirqs_enabled)
Nick Piggincf40bd12009-01-21 08:12:39 +01002349 mark_held_locks(curr, SOFTIRQ);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002350}
2351
2352/*
2353 * Softirqs were disabled:
2354 */
2355void trace_softirqs_off(unsigned long ip)
2356{
2357 struct task_struct *curr = current;
2358
2359 if (unlikely(!debug_locks))
2360 return;
2361
2362 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2363 return;
2364
2365 if (curr->softirqs_enabled) {
2366 /*
2367 * We have done an ON -> OFF transition:
2368 */
2369 curr->softirqs_enabled = 0;
2370 curr->softirq_disable_ip = ip;
2371 curr->softirq_disable_event = ++curr->irq_events;
2372 debug_atomic_inc(&softirqs_off_events);
2373 DEBUG_LOCKS_WARN_ON(!softirq_count());
2374 } else
2375 debug_atomic_inc(&redundant_softirqs_off);
2376}
2377
Peter Zijlstra2f850182009-03-20 11:13:20 +01002378static void __lockdep_trace_alloc(gfp_t gfp_mask, unsigned long flags)
Nick Piggincf40bd12009-01-21 08:12:39 +01002379{
2380 struct task_struct *curr = current;
2381
2382 if (unlikely(!debug_locks))
2383 return;
2384
2385 /* no reclaim without waiting on it */
2386 if (!(gfp_mask & __GFP_WAIT))
2387 return;
2388
2389 /* this guy won't enter reclaim */
2390 if ((curr->flags & PF_MEMALLOC) && !(gfp_mask & __GFP_NOMEMALLOC))
2391 return;
2392
2393 /* We're only interested __GFP_FS allocations for now */
2394 if (!(gfp_mask & __GFP_FS))
2395 return;
2396
Peter Zijlstra2f850182009-03-20 11:13:20 +01002397 if (DEBUG_LOCKS_WARN_ON(irqs_disabled_flags(flags)))
Nick Piggincf40bd12009-01-21 08:12:39 +01002398 return;
2399
2400 mark_held_locks(curr, RECLAIM_FS);
2401}
2402
Peter Zijlstra2f850182009-03-20 11:13:20 +01002403static void check_flags(unsigned long flags);
2404
2405void lockdep_trace_alloc(gfp_t gfp_mask)
2406{
2407 unsigned long flags;
2408
2409 if (unlikely(current->lockdep_recursion))
2410 return;
2411
2412 raw_local_irq_save(flags);
2413 check_flags(flags);
2414 current->lockdep_recursion = 1;
2415 __lockdep_trace_alloc(gfp_mask, flags);
2416 current->lockdep_recursion = 0;
2417 raw_local_irq_restore(flags);
2418}
2419
Peter Zijlstra8e182572007-07-19 01:48:54 -07002420static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock)
2421{
2422 /*
2423 * If non-trylock use in a hardirq or softirq context, then
2424 * mark the lock as used in these contexts:
2425 */
2426 if (!hlock->trylock) {
2427 if (hlock->read) {
2428 if (curr->hardirq_context)
2429 if (!mark_lock(curr, hlock,
2430 LOCK_USED_IN_HARDIRQ_READ))
2431 return 0;
2432 if (curr->softirq_context)
2433 if (!mark_lock(curr, hlock,
2434 LOCK_USED_IN_SOFTIRQ_READ))
2435 return 0;
2436 } else {
2437 if (curr->hardirq_context)
2438 if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ))
2439 return 0;
2440 if (curr->softirq_context)
2441 if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ))
2442 return 0;
2443 }
2444 }
2445 if (!hlock->hardirqs_off) {
2446 if (hlock->read) {
2447 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002448 LOCK_ENABLED_HARDIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002449 return 0;
2450 if (curr->softirqs_enabled)
2451 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002452 LOCK_ENABLED_SOFTIRQ_READ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002453 return 0;
2454 } else {
2455 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002456 LOCK_ENABLED_HARDIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002457 return 0;
2458 if (curr->softirqs_enabled)
2459 if (!mark_lock(curr, hlock,
Peter Zijlstra4fc95e82009-01-22 13:10:52 +01002460 LOCK_ENABLED_SOFTIRQ))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002461 return 0;
2462 }
2463 }
2464
Nick Piggincf40bd12009-01-21 08:12:39 +01002465 /*
2466 * We reuse the irq context infrastructure more broadly as a general
2467 * context checking code. This tests GFP_FS recursion (a lock taken
2468 * during reclaim for a GFP_FS allocation is held over a GFP_FS
2469 * allocation).
2470 */
2471 if (!hlock->trylock && (curr->lockdep_reclaim_gfp & __GFP_FS)) {
2472 if (hlock->read) {
2473 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS_READ))
2474 return 0;
2475 } else {
2476 if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS))
2477 return 0;
2478 }
2479 }
2480
Peter Zijlstra8e182572007-07-19 01:48:54 -07002481 return 1;
2482}
2483
2484static int separate_irq_context(struct task_struct *curr,
2485 struct held_lock *hlock)
2486{
2487 unsigned int depth = curr->lockdep_depth;
2488
2489 /*
2490 * Keep track of points where we cross into an interrupt context:
2491 */
2492 hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) +
2493 curr->softirq_context;
2494 if (depth) {
2495 struct held_lock *prev_hlock;
2496
2497 prev_hlock = curr->held_locks + depth-1;
2498 /*
2499 * If we cross into another context, reset the
2500 * hash key (this also prevents the checking and the
2501 * adding of the dependency to 'prev'):
2502 */
2503 if (prev_hlock->irq_context != hlock->irq_context)
2504 return 1;
2505 }
2506 return 0;
2507}
2508
2509#else
2510
2511static inline
2512int mark_lock_irq(struct task_struct *curr, struct held_lock *this,
2513 enum lock_usage_bit new_bit)
2514{
2515 WARN_ON(1);
2516 return 1;
2517}
2518
2519static inline int mark_irqflags(struct task_struct *curr,
2520 struct held_lock *hlock)
2521{
2522 return 1;
2523}
2524
2525static inline int separate_irq_context(struct task_struct *curr,
2526 struct held_lock *hlock)
2527{
2528 return 0;
2529}
2530
Peter Zijlstra868a23a2009-02-15 00:25:21 +01002531void lockdep_trace_alloc(gfp_t gfp_mask)
2532{
2533}
2534
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002535#endif
2536
2537/*
Peter Zijlstra8e182572007-07-19 01:48:54 -07002538 * Mark a lock with a usage bit, and validate the state transition:
2539 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02002540static int mark_lock(struct task_struct *curr, struct held_lock *this,
Steven Rostedt0764d232008-05-12 21:20:44 +02002541 enum lock_usage_bit new_bit)
Peter Zijlstra8e182572007-07-19 01:48:54 -07002542{
2543 unsigned int new_mask = 1 << new_bit, ret = 1;
2544
2545 /*
2546 * If already set then do not dirty the cacheline,
2547 * nor do any checks:
2548 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002549 if (likely(hlock_class(this)->usage_mask & new_mask))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002550 return 1;
2551
2552 if (!graph_lock())
2553 return 0;
2554 /*
2555 * Make sure we didnt race:
2556 */
Dave Jonesf82b2172008-08-11 09:30:23 +02002557 if (unlikely(hlock_class(this)->usage_mask & new_mask)) {
Peter Zijlstra8e182572007-07-19 01:48:54 -07002558 graph_unlock();
2559 return 1;
2560 }
2561
Dave Jonesf82b2172008-08-11 09:30:23 +02002562 hlock_class(this)->usage_mask |= new_mask;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002563
Dave Jonesf82b2172008-08-11 09:30:23 +02002564 if (!save_trace(hlock_class(this)->usage_traces + new_bit))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002565 return 0;
2566
2567 switch (new_bit) {
Peter Zijlstra53464172009-01-22 14:15:53 +01002568#define LOCKDEP_STATE(__STATE) \
2569 case LOCK_USED_IN_##__STATE: \
2570 case LOCK_USED_IN_##__STATE##_READ: \
2571 case LOCK_ENABLED_##__STATE: \
2572 case LOCK_ENABLED_##__STATE##_READ:
2573#include "lockdep_states.h"
2574#undef LOCKDEP_STATE
Peter Zijlstra8e182572007-07-19 01:48:54 -07002575 ret = mark_lock_irq(curr, this, new_bit);
2576 if (!ret)
2577 return 0;
2578 break;
2579 case LOCK_USED:
Peter Zijlstra8e182572007-07-19 01:48:54 -07002580 debug_atomic_dec(&nr_unused_locks);
2581 break;
2582 default:
2583 if (!debug_locks_off_graph_unlock())
2584 return 0;
2585 WARN_ON(1);
2586 return 0;
2587 }
2588
2589 graph_unlock();
2590
2591 /*
2592 * We must printk outside of the graph_lock:
2593 */
2594 if (ret == 2) {
2595 printk("\nmarked lock as {%s}:\n", usage_str[new_bit]);
2596 print_lock(this);
2597 print_irqtrace_events(curr);
2598 dump_stack();
2599 }
2600
2601 return ret;
2602}
2603
2604/*
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002605 * Initialize a lock instance's lock-class mapping info:
2606 */
2607void lockdep_init_map(struct lockdep_map *lock, const char *name,
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002608 struct lock_class_key *key, int subclass)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002609{
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002610 lock->class_cache = NULL;
2611#ifdef CONFIG_LOCK_STAT
2612 lock->cpu = raw_smp_processor_id();
2613#endif
2614
2615 if (DEBUG_LOCKS_WARN_ON(!name)) {
2616 lock->name = "NULL";
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002617 return;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002618 }
2619
2620 lock->name = name;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002621
2622 if (DEBUG_LOCKS_WARN_ON(!key))
2623 return;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002624 /*
2625 * Sanity check, the lock-class key must be persistent:
2626 */
2627 if (!static_obj(key)) {
2628 printk("BUG: key %p not in .data!\n", key);
2629 DEBUG_LOCKS_WARN_ON(1);
2630 return;
2631 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002632 lock->key = key;
Peter Zijlstrac8a25002009-04-17 09:40:49 +02002633
2634 if (unlikely(!debug_locks))
2635 return;
2636
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002637 if (subclass)
2638 register_lock_class(lock, subclass, 1);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002639}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002640EXPORT_SYMBOL_GPL(lockdep_init_map);
2641
2642/*
2643 * This gets called for every mutex_lock*()/spin_lock*() operation.
2644 * We maintain the dependency maps and validate the locking attempt:
2645 */
2646static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass,
2647 int trylock, int read, int check, int hardirqs_off,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002648 struct lockdep_map *nest_lock, unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002649{
2650 struct task_struct *curr = current;
Ingo Molnard6d897c2006-07-10 04:44:04 -07002651 struct lock_class *class = NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002652 struct held_lock *hlock;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002653 unsigned int depth, id;
2654 int chain_head = 0;
2655 u64 chain_key;
2656
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002657 if (!prove_locking)
2658 check = 1;
2659
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002660 if (unlikely(!debug_locks))
2661 return 0;
2662
2663 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2664 return 0;
2665
2666 if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) {
2667 debug_locks_off();
2668 printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n");
2669 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002670 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002671 return 0;
2672 }
2673
Ingo Molnard6d897c2006-07-10 04:44:04 -07002674 if (!subclass)
2675 class = lock->class_cache;
2676 /*
2677 * Not cached yet or subclass?
2678 */
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002679 if (unlikely(!class)) {
Peter Zijlstra4dfbb9d2006-10-11 01:45:14 -04002680 class = register_lock_class(lock, subclass, 0);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002681 if (!class)
2682 return 0;
2683 }
2684 debug_atomic_inc((atomic_t *)&class->ops);
2685 if (very_verbose(class)) {
2686 printk("\nacquire class [%p] %s", class->key, class->name);
2687 if (class->name_version > 1)
2688 printk("#%d", class->name_version);
2689 printk("\n");
2690 dump_stack();
2691 }
2692
2693 /*
2694 * Add the lock to the list of currently held locks.
2695 * (we dont increase the depth just yet, up until the
2696 * dependency checks are done)
2697 */
2698 depth = curr->lockdep_depth;
2699 if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH))
2700 return 0;
2701
2702 hlock = curr->held_locks + depth;
Dave Jonesf82b2172008-08-11 09:30:23 +02002703 if (DEBUG_LOCKS_WARN_ON(!class))
2704 return 0;
2705 hlock->class_idx = class - lock_classes + 1;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002706 hlock->acquire_ip = ip;
2707 hlock->instance = lock;
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002708 hlock->nest_lock = nest_lock;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002709 hlock->trylock = trylock;
2710 hlock->read = read;
2711 hlock->check = check;
Dmitry Baryshkov6951b122008-08-18 04:26:37 +04002712 hlock->hardirqs_off = !!hardirqs_off;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002713#ifdef CONFIG_LOCK_STAT
2714 hlock->waittime_stamp = 0;
2715 hlock->holdtime_stamp = sched_clock();
2716#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002717
Peter Zijlstra8e182572007-07-19 01:48:54 -07002718 if (check == 2 && !mark_irqflags(curr, hlock))
2719 return 0;
2720
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002721 /* mark it as used: */
Jarek Poplawski4ff773bb2007-05-08 00:31:00 -07002722 if (!mark_lock(curr, hlock, LOCK_USED))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002723 return 0;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002724
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002725 /*
Gautham R Shenoy17aacfb2007-10-28 20:47:01 +01002726 * Calculate the chain hash: it's the combined hash of all the
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002727 * lock keys along the dependency chain. We save the hash value
2728 * at every step so that we can get the current hash easily
2729 * after unlock. The chain hash is then used to cache dependency
2730 * results.
2731 *
2732 * The 'key ID' is what is the most compact key value to drive
2733 * the hash, not class->key.
2734 */
2735 id = class - lock_classes;
2736 if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS))
2737 return 0;
2738
2739 chain_key = curr->curr_chain_key;
2740 if (!depth) {
2741 if (DEBUG_LOCKS_WARN_ON(chain_key != 0))
2742 return 0;
2743 chain_head = 1;
2744 }
2745
2746 hlock->prev_chain_key = chain_key;
Peter Zijlstra8e182572007-07-19 01:48:54 -07002747 if (separate_irq_context(curr, hlock)) {
2748 chain_key = 0;
2749 chain_head = 1;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002750 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002751 chain_key = iterate_chain_key(chain_key, id);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002752
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002753 if (!validate_chain(curr, lock, hlock, chain_head, chain_key))
Peter Zijlstra8e182572007-07-19 01:48:54 -07002754 return 0;
Jarek Poplawski381a2292007-02-10 01:44:58 -08002755
Gregory Haskins3aa416b2007-10-11 22:11:11 +02002756 curr->curr_chain_key = chain_key;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002757 curr->lockdep_depth++;
2758 check_chain_key(curr);
Jarek Poplawski60e114d2007-02-20 13:58:00 -08002759#ifdef CONFIG_DEBUG_LOCKDEP
2760 if (unlikely(!debug_locks))
2761 return 0;
2762#endif
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002763 if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) {
2764 debug_locks_off();
2765 printk("BUG: MAX_LOCK_DEPTH too low!\n");
2766 printk("turning off the locking correctness validator.\n");
Peter Zijlstraeedeeab2009-03-18 12:38:47 +01002767 dump_stack();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002768 return 0;
2769 }
Jarek Poplawski381a2292007-02-10 01:44:58 -08002770
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002771 if (unlikely(curr->lockdep_depth > max_lockdep_depth))
2772 max_lockdep_depth = curr->lockdep_depth;
2773
2774 return 1;
2775}
2776
2777static int
2778print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock,
2779 unsigned long ip)
2780{
2781 if (!debug_locks_off())
2782 return 0;
2783 if (debug_locks_silent)
2784 return 0;
2785
2786 printk("\n=====================================\n");
2787 printk( "[ BUG: bad unlock balance detected! ]\n");
2788 printk( "-------------------------------------\n");
2789 printk("%s/%d is trying to release lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07002790 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002791 print_lockdep_cache(lock);
2792 printk(") at:\n");
2793 print_ip_sym(ip);
2794 printk("but there are no more locks to release!\n");
2795 printk("\nother info that might help us debug this:\n");
2796 lockdep_print_held_locks(curr);
2797
2798 printk("\nstack backtrace:\n");
2799 dump_stack();
2800
2801 return 0;
2802}
2803
2804/*
2805 * Common debugging checks for both nested and non-nested unlock:
2806 */
2807static int check_unlock(struct task_struct *curr, struct lockdep_map *lock,
2808 unsigned long ip)
2809{
2810 if (unlikely(!debug_locks))
2811 return 0;
2812 if (DEBUG_LOCKS_WARN_ON(!irqs_disabled()))
2813 return 0;
2814
2815 if (curr->lockdep_depth <= 0)
2816 return print_unlock_inbalance_bug(curr, lock, ip);
2817
2818 return 1;
2819}
2820
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002821static int
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002822__lock_set_class(struct lockdep_map *lock, const char *name,
2823 struct lock_class_key *key, unsigned int subclass,
2824 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002825{
2826 struct task_struct *curr = current;
2827 struct held_lock *hlock, *prev_hlock;
2828 struct lock_class *class;
2829 unsigned int depth;
2830 int i;
2831
2832 depth = curr->lockdep_depth;
2833 if (DEBUG_LOCKS_WARN_ON(!depth))
2834 return 0;
2835
2836 prev_hlock = NULL;
2837 for (i = depth-1; i >= 0; i--) {
2838 hlock = curr->held_locks + i;
2839 /*
2840 * We must not cross into another context:
2841 */
2842 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2843 break;
2844 if (hlock->instance == lock)
2845 goto found_it;
2846 prev_hlock = hlock;
2847 }
2848 return print_unlock_inbalance_bug(curr, lock, ip);
2849
2850found_it:
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01002851 lockdep_init_map(lock, name, key, 0);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002852 class = register_lock_class(lock, subclass, 0);
Dave Jonesf82b2172008-08-11 09:30:23 +02002853 hlock->class_idx = class - lock_classes + 1;
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002854
2855 curr->lockdep_depth = i;
2856 curr->curr_chain_key = hlock->prev_chain_key;
2857
2858 for (; i < depth; i++) {
2859 hlock = curr->held_locks + i;
2860 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02002861 hlock_class(hlock)->subclass, hlock->trylock,
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002862 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002863 hlock->nest_lock, hlock->acquire_ip))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02002864 return 0;
2865 }
2866
2867 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth))
2868 return 0;
2869 return 1;
2870}
2871
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002872/*
2873 * Remove the lock to the list of currently held locks in a
2874 * potentially non-nested (out of order) manner. This is a
2875 * relatively rare operation, as all the unlock APIs default
2876 * to nested mode (which uses lock_release()):
2877 */
2878static int
2879lock_release_non_nested(struct task_struct *curr,
2880 struct lockdep_map *lock, unsigned long ip)
2881{
2882 struct held_lock *hlock, *prev_hlock;
2883 unsigned int depth;
2884 int i;
2885
2886 /*
2887 * Check whether the lock exists in the current stack
2888 * of held locks:
2889 */
2890 depth = curr->lockdep_depth;
2891 if (DEBUG_LOCKS_WARN_ON(!depth))
2892 return 0;
2893
2894 prev_hlock = NULL;
2895 for (i = depth-1; i >= 0; i--) {
2896 hlock = curr->held_locks + i;
2897 /*
2898 * We must not cross into another context:
2899 */
2900 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
2901 break;
2902 if (hlock->instance == lock)
2903 goto found_it;
2904 prev_hlock = hlock;
2905 }
2906 return print_unlock_inbalance_bug(curr, lock, ip);
2907
2908found_it:
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002909 lock_release_holdtime(hlock);
2910
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002911 /*
2912 * We have the right lock to unlock, 'hlock' points to it.
2913 * Now we remove it from the stack, and add back the other
2914 * entries (if any), recalculating the hash along the way:
2915 */
2916 curr->lockdep_depth = i;
2917 curr->curr_chain_key = hlock->prev_chain_key;
2918
2919 for (i++; i < depth; i++) {
2920 hlock = curr->held_locks + i;
2921 if (!__lock_acquire(hlock->instance,
Dave Jonesf82b2172008-08-11 09:30:23 +02002922 hlock_class(hlock)->subclass, hlock->trylock,
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002923 hlock->read, hlock->check, hlock->hardirqs_off,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02002924 hlock->nest_lock, hlock->acquire_ip))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002925 return 0;
2926 }
2927
2928 if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1))
2929 return 0;
2930 return 1;
2931}
2932
2933/*
2934 * Remove the lock to the list of currently held locks - this gets
2935 * called on mutex_unlock()/spin_unlock*() (or on a failed
2936 * mutex_lock_interruptible()). This is done for unlocks that nest
2937 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2938 */
2939static int lock_release_nested(struct task_struct *curr,
2940 struct lockdep_map *lock, unsigned long ip)
2941{
2942 struct held_lock *hlock;
2943 unsigned int depth;
2944
2945 /*
2946 * Pop off the top of the lock stack:
2947 */
2948 depth = curr->lockdep_depth - 1;
2949 hlock = curr->held_locks + depth;
2950
2951 /*
2952 * Is the unlock non-nested:
2953 */
2954 if (hlock->instance != lock)
2955 return lock_release_non_nested(curr, lock, ip);
2956 curr->lockdep_depth--;
2957
2958 if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0)))
2959 return 0;
2960
2961 curr->curr_chain_key = hlock->prev_chain_key;
2962
Peter Zijlstraf20786f2007-07-19 01:48:56 -07002963 lock_release_holdtime(hlock);
2964
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002965#ifdef CONFIG_DEBUG_LOCKDEP
2966 hlock->prev_chain_key = 0;
Dave Jonesf82b2172008-08-11 09:30:23 +02002967 hlock->class_idx = 0;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07002968 hlock->acquire_ip = 0;
2969 hlock->irq_context = 0;
2970#endif
2971 return 1;
2972}
2973
2974/*
2975 * Remove the lock to the list of currently held locks - this gets
2976 * called on mutex_unlock()/spin_unlock*() (or on a failed
2977 * mutex_lock_interruptible()). This is done for unlocks that nest
2978 * perfectly. (i.e. the current top of the lock-stack is unlocked)
2979 */
2980static void
2981__lock_release(struct lockdep_map *lock, int nested, unsigned long ip)
2982{
2983 struct task_struct *curr = current;
2984
2985 if (!check_unlock(curr, lock, ip))
2986 return;
2987
2988 if (nested) {
2989 if (!lock_release_nested(curr, lock, ip))
2990 return;
2991 } else {
2992 if (!lock_release_non_nested(curr, lock, ip))
2993 return;
2994 }
2995
2996 check_chain_key(curr);
2997}
2998
2999/*
3000 * Check whether we follow the irq-flags state precisely:
3001 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003002static void check_flags(unsigned long flags)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003003{
Ingo Molnar992860e2008-07-14 10:28:38 +02003004#if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \
3005 defined(CONFIG_TRACE_IRQFLAGS)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003006 if (!debug_locks)
3007 return;
3008
Ingo Molnar5f9fa8a2007-12-07 19:02:47 +01003009 if (irqs_disabled_flags(flags)) {
3010 if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) {
3011 printk("possible reason: unannotated irqs-off.\n");
3012 }
3013 } else {
3014 if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) {
3015 printk("possible reason: unannotated irqs-on.\n");
3016 }
3017 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003018
3019 /*
3020 * We dont accurately track softirq state in e.g.
3021 * hardirq contexts (such as on 4KSTACKS), so only
3022 * check if not in hardirq contexts:
3023 */
3024 if (!hardirq_count()) {
3025 if (softirq_count())
3026 DEBUG_LOCKS_WARN_ON(current->softirqs_enabled);
3027 else
3028 DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled);
3029 }
3030
3031 if (!debug_locks)
3032 print_irqtrace_events(current);
3033#endif
3034}
3035
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003036void lock_set_class(struct lockdep_map *lock, const char *name,
3037 struct lock_class_key *key, unsigned int subclass,
3038 unsigned long ip)
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003039{
3040 unsigned long flags;
3041
3042 if (unlikely(current->lockdep_recursion))
3043 return;
3044
3045 raw_local_irq_save(flags);
3046 current->lockdep_recursion = 1;
3047 check_flags(flags);
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003048 if (__lock_set_class(lock, name, key, subclass, ip))
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003049 check_chain_key(current);
3050 current->lockdep_recursion = 0;
3051 raw_local_irq_restore(flags);
3052}
Peter Zijlstra00ef9f72008-12-04 09:00:17 +01003053EXPORT_SYMBOL_GPL(lock_set_class);
Peter Zijlstra64aa3482008-08-11 09:30:21 +02003054
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003055/*
3056 * We are not always called with irqs disabled - do that here,
3057 * and also avoid lockdep recursion:
3058 */
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003059void lock_acquire(struct lockdep_map *lock, unsigned int subclass,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02003060 int trylock, int read, int check,
3061 struct lockdep_map *nest_lock, unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003062{
3063 unsigned long flags;
3064
Peter Zijlstraefed7922009-03-04 12:32:55 +01003065 trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip);
3066
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003067 if (unlikely(current->lockdep_recursion))
3068 return;
3069
3070 raw_local_irq_save(flags);
3071 check_flags(flags);
3072
3073 current->lockdep_recursion = 1;
3074 __lock_acquire(lock, subclass, trylock, read, check,
Peter Zijlstra7531e2f2008-08-11 09:30:24 +02003075 irqs_disabled_flags(flags), nest_lock, ip);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003076 current->lockdep_recursion = 0;
3077 raw_local_irq_restore(flags);
3078}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003079EXPORT_SYMBOL_GPL(lock_acquire);
3080
Steven Rostedt1d09daa2008-05-12 21:20:55 +02003081void lock_release(struct lockdep_map *lock, int nested,
Steven Rostedt0764d232008-05-12 21:20:44 +02003082 unsigned long ip)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003083{
3084 unsigned long flags;
3085
Peter Zijlstraefed7922009-03-04 12:32:55 +01003086 trace_lock_release(lock, nested, ip);
3087
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003088 if (unlikely(current->lockdep_recursion))
3089 return;
3090
3091 raw_local_irq_save(flags);
3092 check_flags(flags);
3093 current->lockdep_recursion = 1;
3094 __lock_release(lock, nested, ip);
3095 current->lockdep_recursion = 0;
3096 raw_local_irq_restore(flags);
3097}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003098EXPORT_SYMBOL_GPL(lock_release);
3099
Nick Piggincf40bd12009-01-21 08:12:39 +01003100void lockdep_set_current_reclaim_state(gfp_t gfp_mask)
3101{
3102 current->lockdep_reclaim_gfp = gfp_mask;
3103}
3104
3105void lockdep_clear_current_reclaim_state(void)
3106{
3107 current->lockdep_reclaim_gfp = 0;
3108}
3109
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003110#ifdef CONFIG_LOCK_STAT
3111static int
3112print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock,
3113 unsigned long ip)
3114{
3115 if (!debug_locks_off())
3116 return 0;
3117 if (debug_locks_silent)
3118 return 0;
3119
3120 printk("\n=================================\n");
3121 printk( "[ BUG: bad contention detected! ]\n");
3122 printk( "---------------------------------\n");
3123 printk("%s/%d is trying to contend lock (",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003124 curr->comm, task_pid_nr(curr));
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003125 print_lockdep_cache(lock);
3126 printk(") at:\n");
3127 print_ip_sym(ip);
3128 printk("but there are no locks held!\n");
3129 printk("\nother info that might help us debug this:\n");
3130 lockdep_print_held_locks(curr);
3131
3132 printk("\nstack backtrace:\n");
3133 dump_stack();
3134
3135 return 0;
3136}
3137
3138static void
3139__lock_contended(struct lockdep_map *lock, unsigned long ip)
3140{
3141 struct task_struct *curr = current;
3142 struct held_lock *hlock, *prev_hlock;
3143 struct lock_class_stats *stats;
3144 unsigned int depth;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003145 int i, contention_point, contending_point;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003146
3147 depth = curr->lockdep_depth;
3148 if (DEBUG_LOCKS_WARN_ON(!depth))
3149 return;
3150
3151 prev_hlock = NULL;
3152 for (i = depth-1; i >= 0; i--) {
3153 hlock = curr->held_locks + i;
3154 /*
3155 * We must not cross into another context:
3156 */
3157 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3158 break;
3159 if (hlock->instance == lock)
3160 goto found_it;
3161 prev_hlock = hlock;
3162 }
3163 print_lock_contention_bug(curr, lock, ip);
3164 return;
3165
3166found_it:
3167 hlock->waittime_stamp = sched_clock();
3168
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003169 contention_point = lock_point(hlock_class(hlock)->contention_point, ip);
3170 contending_point = lock_point(hlock_class(hlock)->contending_point,
3171 lock->ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003172
Dave Jonesf82b2172008-08-11 09:30:23 +02003173 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003174 if (contention_point < LOCKSTAT_POINTS)
3175 stats->contention_point[contention_point]++;
3176 if (contending_point < LOCKSTAT_POINTS)
3177 stats->contending_point[contending_point]++;
Peter Zijlstra96645672007-07-19 01:49:00 -07003178 if (lock->cpu != smp_processor_id())
3179 stats->bounces[bounce_contended + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003180 put_lock_stats(stats);
3181}
3182
3183static void
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003184__lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003185{
3186 struct task_struct *curr = current;
3187 struct held_lock *hlock, *prev_hlock;
3188 struct lock_class_stats *stats;
3189 unsigned int depth;
3190 u64 now;
Peter Zijlstra96645672007-07-19 01:49:00 -07003191 s64 waittime = 0;
3192 int i, cpu;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003193
3194 depth = curr->lockdep_depth;
3195 if (DEBUG_LOCKS_WARN_ON(!depth))
3196 return;
3197
3198 prev_hlock = NULL;
3199 for (i = depth-1; i >= 0; i--) {
3200 hlock = curr->held_locks + i;
3201 /*
3202 * We must not cross into another context:
3203 */
3204 if (prev_hlock && prev_hlock->irq_context != hlock->irq_context)
3205 break;
3206 if (hlock->instance == lock)
3207 goto found_it;
3208 prev_hlock = hlock;
3209 }
3210 print_lock_contention_bug(curr, lock, _RET_IP_);
3211 return;
3212
3213found_it:
Peter Zijlstra96645672007-07-19 01:49:00 -07003214 cpu = smp_processor_id();
3215 if (hlock->waittime_stamp) {
3216 now = sched_clock();
3217 waittime = now - hlock->waittime_stamp;
3218 hlock->holdtime_stamp = now;
3219 }
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003220
Frederic Weisbecker20625012009-04-06 01:49:33 +02003221 trace_lock_acquired(lock, ip, waittime);
3222
Dave Jonesf82b2172008-08-11 09:30:23 +02003223 stats = get_lock_stats(hlock_class(hlock));
Peter Zijlstra96645672007-07-19 01:49:00 -07003224 if (waittime) {
3225 if (hlock->read)
3226 lock_time_inc(&stats->read_waittime, waittime);
3227 else
3228 lock_time_inc(&stats->write_waittime, waittime);
3229 }
3230 if (lock->cpu != cpu)
3231 stats->bounces[bounce_acquired + !!hlock->read]++;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003232 put_lock_stats(stats);
Peter Zijlstra96645672007-07-19 01:49:00 -07003233
3234 lock->cpu = cpu;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003235 lock->ip = ip;
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003236}
3237
3238void lock_contended(struct lockdep_map *lock, unsigned long ip)
3239{
3240 unsigned long flags;
3241
Peter Zijlstraefed7922009-03-04 12:32:55 +01003242 trace_lock_contended(lock, ip);
3243
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003244 if (unlikely(!lock_stat))
3245 return;
3246
3247 if (unlikely(current->lockdep_recursion))
3248 return;
3249
3250 raw_local_irq_save(flags);
3251 check_flags(flags);
3252 current->lockdep_recursion = 1;
3253 __lock_contended(lock, ip);
3254 current->lockdep_recursion = 0;
3255 raw_local_irq_restore(flags);
3256}
3257EXPORT_SYMBOL_GPL(lock_contended);
3258
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003259void lock_acquired(struct lockdep_map *lock, unsigned long ip)
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003260{
3261 unsigned long flags;
3262
3263 if (unlikely(!lock_stat))
3264 return;
3265
3266 if (unlikely(current->lockdep_recursion))
3267 return;
3268
3269 raw_local_irq_save(flags);
3270 check_flags(flags);
3271 current->lockdep_recursion = 1;
Peter Zijlstrac7e78cf2008-10-16 23:17:09 +02003272 __lock_acquired(lock, ip);
Peter Zijlstraf20786f2007-07-19 01:48:56 -07003273 current->lockdep_recursion = 0;
3274 raw_local_irq_restore(flags);
3275}
3276EXPORT_SYMBOL_GPL(lock_acquired);
3277#endif
3278
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003279/*
3280 * Used by the testsuite, sanitize the validator state
3281 * after a simulated failure:
3282 */
3283
3284void lockdep_reset(void)
3285{
3286 unsigned long flags;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003287 int i;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003288
3289 raw_local_irq_save(flags);
3290 current->curr_chain_key = 0;
3291 current->lockdep_depth = 0;
3292 current->lockdep_recursion = 0;
3293 memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock));
3294 nr_hardirq_chains = 0;
3295 nr_softirq_chains = 0;
3296 nr_process_chains = 0;
3297 debug_locks = 1;
Ingo Molnar23d95a02006-12-13 00:34:40 -08003298 for (i = 0; i < CHAINHASH_SIZE; i++)
3299 INIT_LIST_HEAD(chainhash_table + i);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003300 raw_local_irq_restore(flags);
3301}
3302
3303static void zap_class(struct lock_class *class)
3304{
3305 int i;
3306
3307 /*
3308 * Remove all dependencies this lock is
3309 * involved in:
3310 */
3311 for (i = 0; i < nr_list_entries; i++) {
3312 if (list_entries[i].class == class)
3313 list_del_rcu(&list_entries[i].entry);
3314 }
3315 /*
3316 * Unhash the class and remove it from the all_lock_classes list:
3317 */
3318 list_del_rcu(&class->hash_entry);
3319 list_del_rcu(&class->lock_entry);
3320
Rabin Vincent8bfe0292008-08-11 09:30:26 +02003321 class->key = NULL;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003322}
3323
Arjan van de Venfabe8742008-01-24 07:00:45 +01003324static inline int within(const void *addr, void *start, unsigned long size)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003325{
3326 return addr >= start && addr < start + size;
3327}
3328
3329void lockdep_free_key_range(void *start, unsigned long size)
3330{
3331 struct lock_class *class, *next;
3332 struct list_head *head;
3333 unsigned long flags;
3334 int i;
Nick Piggin5a26db52008-01-16 09:51:58 +01003335 int locked;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003336
3337 raw_local_irq_save(flags);
Nick Piggin5a26db52008-01-16 09:51:58 +01003338 locked = graph_lock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003339
3340 /*
3341 * Unhash all classes that were created by this module:
3342 */
3343 for (i = 0; i < CLASSHASH_SIZE; i++) {
3344 head = classhash_table + i;
3345 if (list_empty(head))
3346 continue;
Arjan van de Venfabe8742008-01-24 07:00:45 +01003347 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003348 if (within(class->key, start, size))
3349 zap_class(class);
Arjan van de Venfabe8742008-01-24 07:00:45 +01003350 else if (within(class->name, start, size))
3351 zap_class(class);
3352 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003353 }
3354
Nick Piggin5a26db52008-01-16 09:51:58 +01003355 if (locked)
3356 graph_unlock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003357 raw_local_irq_restore(flags);
3358}
3359
3360void lockdep_reset_lock(struct lockdep_map *lock)
3361{
Ingo Molnard6d897c2006-07-10 04:44:04 -07003362 struct lock_class *class, *next;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003363 struct list_head *head;
3364 unsigned long flags;
3365 int i, j;
Nick Piggin5a26db52008-01-16 09:51:58 +01003366 int locked;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003367
3368 raw_local_irq_save(flags);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003369
3370 /*
Ingo Molnard6d897c2006-07-10 04:44:04 -07003371 * Remove all classes this lock might have:
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003372 */
Ingo Molnard6d897c2006-07-10 04:44:04 -07003373 for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) {
3374 /*
3375 * If the class exists we look it up and zap it:
3376 */
3377 class = look_up_lock_class(lock, j);
3378 if (class)
3379 zap_class(class);
3380 }
3381 /*
3382 * Debug check: in the end all mapped classes should
3383 * be gone.
3384 */
Nick Piggin5a26db52008-01-16 09:51:58 +01003385 locked = graph_lock();
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003386 for (i = 0; i < CLASSHASH_SIZE; i++) {
3387 head = classhash_table + i;
3388 if (list_empty(head))
3389 continue;
3390 list_for_each_entry_safe(class, next, head, hash_entry) {
Ingo Molnard6d897c2006-07-10 04:44:04 -07003391 if (unlikely(class == lock->class_cache)) {
Ingo Molnar74c383f2006-12-13 00:34:43 -08003392 if (debug_locks_off_graph_unlock())
3393 WARN_ON(1);
Ingo Molnard6d897c2006-07-10 04:44:04 -07003394 goto out_restore;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003395 }
3396 }
3397 }
Nick Piggin5a26db52008-01-16 09:51:58 +01003398 if (locked)
3399 graph_unlock();
Ingo Molnard6d897c2006-07-10 04:44:04 -07003400
3401out_restore:
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003402 raw_local_irq_restore(flags);
3403}
3404
Sam Ravnborg14999932007-02-28 20:12:31 -08003405void lockdep_init(void)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003406{
3407 int i;
3408
3409 /*
3410 * Some architectures have their own start_kernel()
3411 * code which calls lockdep_init(), while we also
3412 * call lockdep_init() from the start_kernel() itself,
3413 * and we want to initialize the hashes only once:
3414 */
3415 if (lockdep_initialized)
3416 return;
3417
3418 for (i = 0; i < CLASSHASH_SIZE; i++)
3419 INIT_LIST_HEAD(classhash_table + i);
3420
3421 for (i = 0; i < CHAINHASH_SIZE; i++)
3422 INIT_LIST_HEAD(chainhash_table + i);
3423
3424 lockdep_initialized = 1;
3425}
3426
3427void __init lockdep_info(void)
3428{
3429 printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n");
3430
Li Zefanb0788ca2008-11-21 15:57:32 +08003431 printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003432 printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH);
3433 printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS);
Li Zefanb0788ca2008-11-21 15:57:32 +08003434 printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003435 printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES);
3436 printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS);
3437 printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE);
3438
3439 printk(" memory used by lock dependency info: %lu kB\n",
3440 (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS +
3441 sizeof(struct list_head) * CLASSHASH_SIZE +
3442 sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES +
3443 sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS +
3444 sizeof(struct list_head) * CHAINHASH_SIZE) / 1024);
3445
3446 printk(" per task-struct memory footprint: %lu bytes\n",
3447 sizeof(struct held_lock) * MAX_LOCK_DEPTH);
3448
3449#ifdef CONFIG_DEBUG_LOCKDEP
Johannes Bergc71063c2007-07-19 01:49:02 -07003450 if (lockdep_init_error) {
3451 printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n");
3452 printk("Call stack leading to lockdep invocation was:\n");
3453 print_stack_trace(&lockdep_init_trace, 0);
3454 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003455#endif
3456}
3457
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003458static void
3459print_freed_lock_bug(struct task_struct *curr, const void *mem_from,
Arjan van de Ven55794a42006-07-10 04:44:03 -07003460 const void *mem_to, struct held_lock *hlock)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003461{
3462 if (!debug_locks_off())
3463 return;
3464 if (debug_locks_silent)
3465 return;
3466
3467 printk("\n=========================\n");
3468 printk( "[ BUG: held lock freed! ]\n");
3469 printk( "-------------------------\n");
3470 printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003471 curr->comm, task_pid_nr(curr), mem_from, mem_to-1);
Arjan van de Ven55794a42006-07-10 04:44:03 -07003472 print_lock(hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003473 lockdep_print_held_locks(curr);
3474
3475 printk("\nstack backtrace:\n");
3476 dump_stack();
3477}
3478
Oleg Nesterov54561782007-12-05 15:46:09 +01003479static inline int not_in_range(const void* mem_from, unsigned long mem_len,
3480 const void* lock_from, unsigned long lock_len)
3481{
3482 return lock_from + lock_len <= mem_from ||
3483 mem_from + mem_len <= lock_from;
3484}
3485
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003486/*
3487 * Called when kernel memory is freed (or unmapped), or if a lock
3488 * is destroyed or reinitialized - this code checks whether there is
3489 * any held lock in the memory range of <from> to <to>:
3490 */
3491void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len)
3492{
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003493 struct task_struct *curr = current;
3494 struct held_lock *hlock;
3495 unsigned long flags;
3496 int i;
3497
3498 if (unlikely(!debug_locks))
3499 return;
3500
3501 local_irq_save(flags);
3502 for (i = 0; i < curr->lockdep_depth; i++) {
3503 hlock = curr->held_locks + i;
3504
Oleg Nesterov54561782007-12-05 15:46:09 +01003505 if (not_in_range(mem_from, mem_len, hlock->instance,
3506 sizeof(*hlock->instance)))
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003507 continue;
3508
Oleg Nesterov54561782007-12-05 15:46:09 +01003509 print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003510 break;
3511 }
3512 local_irq_restore(flags);
3513}
Peter Zijlstraed075362006-12-06 20:35:24 -08003514EXPORT_SYMBOL_GPL(debug_check_no_locks_freed);
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003515
3516static void print_held_locks_bug(struct task_struct *curr)
3517{
3518 if (!debug_locks_off())
3519 return;
3520 if (debug_locks_silent)
3521 return;
3522
3523 printk("\n=====================================\n");
3524 printk( "[ BUG: lock held at task exit time! ]\n");
3525 printk( "-------------------------------------\n");
3526 printk("%s/%d is exiting with locks still held!\n",
Pavel Emelyanovba25f9d2007-10-18 23:40:40 -07003527 curr->comm, task_pid_nr(curr));
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003528 lockdep_print_held_locks(curr);
3529
3530 printk("\nstack backtrace:\n");
3531 dump_stack();
3532}
3533
3534void debug_check_no_locks_held(struct task_struct *task)
3535{
3536 if (unlikely(task->lockdep_depth > 0))
3537 print_held_locks_bug(task);
3538}
3539
3540void debug_show_all_locks(void)
3541{
3542 struct task_struct *g, *p;
3543 int count = 10;
3544 int unlock = 1;
3545
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003546 if (unlikely(!debug_locks)) {
3547 printk("INFO: lockdep is turned off.\n");
3548 return;
3549 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003550 printk("\nShowing all locks held in the system:\n");
3551
3552 /*
3553 * Here we try to get the tasklist_lock as hard as possible,
3554 * if not successful after 2 seconds we ignore it (but keep
3555 * trying). This is to enable a debug printout even if a
3556 * tasklist_lock-holding task deadlocks or crashes.
3557 */
3558retry:
3559 if (!read_trylock(&tasklist_lock)) {
3560 if (count == 10)
3561 printk("hm, tasklist_lock locked, retrying... ");
3562 if (count) {
3563 count--;
3564 printk(" #%d", 10-count);
3565 mdelay(200);
3566 goto retry;
3567 }
3568 printk(" ignoring it.\n");
3569 unlock = 0;
qinghuang feng46fec7a2008-10-28 17:24:28 +08003570 } else {
3571 if (count != 10)
3572 printk(KERN_CONT " locked it.\n");
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003573 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003574
3575 do_each_thread(g, p) {
Ingo Molnar85684872007-12-05 15:46:09 +01003576 /*
3577 * It's not reliable to print a task's held locks
3578 * if it's not sleeping (or if it's not the current
3579 * task):
3580 */
3581 if (p->state == TASK_RUNNING && p != current)
3582 continue;
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003583 if (p->lockdep_depth)
3584 lockdep_print_held_locks(p);
3585 if (!unlock)
3586 if (read_trylock(&tasklist_lock))
3587 unlock = 1;
3588 } while_each_thread(g, p);
3589
3590 printk("\n");
3591 printk("=============================================\n\n");
3592
3593 if (unlock)
3594 read_unlock(&tasklist_lock);
3595}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003596EXPORT_SYMBOL_GPL(debug_show_all_locks);
3597
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003598/*
3599 * Careful: only use this function if you are sure that
3600 * the task cannot run in parallel!
3601 */
3602void __debug_show_held_locks(struct task_struct *task)
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003603{
Jarek Poplawski9c35dd72007-03-22 00:11:28 -08003604 if (unlikely(!debug_locks)) {
3605 printk("INFO: lockdep is turned off.\n");
3606 return;
3607 }
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003608 lockdep_print_held_locks(task);
3609}
Ingo Molnar82a1fcb2008-01-25 21:08:02 +01003610EXPORT_SYMBOL_GPL(__debug_show_held_locks);
3611
3612void debug_show_held_locks(struct task_struct *task)
3613{
3614 __debug_show_held_locks(task);
3615}
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07003616EXPORT_SYMBOL_GPL(debug_show_held_locks);
Peter Zijlstrab351d162007-10-11 22:11:12 +02003617
3618void lockdep_sys_exit(void)
3619{
3620 struct task_struct *curr = current;
3621
3622 if (unlikely(curr->lockdep_depth)) {
3623 if (!debug_locks_off())
3624 return;
3625 printk("\n================================================\n");
3626 printk( "[ BUG: lock held when returning to user space! ]\n");
3627 printk( "------------------------------------------------\n");
3628 printk("%s/%d is leaving the kernel with locks still held!\n",
3629 curr->comm, curr->pid);
3630 lockdep_print_held_locks(curr);
3631 }
3632}