| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1 | /* | 
 | 2 |  * kernel/lockdep.c | 
 | 3 |  * | 
 | 4 |  * Runtime locking correctness validator | 
 | 5 |  * | 
 | 6 |  * Started by Ingo Molnar: | 
 | 7 |  * | 
| Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 8 |  *  Copyright (C) 2006,2007 Red Hat, Inc., Ingo Molnar <mingo@redhat.com> | 
 | 9 |  *  Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com> | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 10 |  * | 
 | 11 |  * this code maps all the lock dependencies as they occur in a live kernel | 
 | 12 |  * and will warn about the following classes of locking bugs: | 
 | 13 |  * | 
 | 14 |  * - lock inversion scenarios | 
 | 15 |  * - circular lock dependencies | 
 | 16 |  * - hardirq/softirq safe/unsafe locking bugs | 
 | 17 |  * | 
 | 18 |  * Bugs are reported even if the current locking scenario does not cause | 
 | 19 |  * any deadlock at this point. | 
 | 20 |  * | 
 | 21 |  * I.e. if anytime in the past two locks were taken in a different order, | 
 | 22 |  * even if it happened for another task, even if those were different | 
 | 23 |  * locks (but of the same class as this lock), this code will detect it. | 
 | 24 |  * | 
 | 25 |  * Thanks to Arjan van de Ven for coming up with the initial idea of | 
 | 26 |  * mapping lock dependencies runtime. | 
 | 27 |  */ | 
| Steven Rostedt | a5e2588 | 2008-12-02 15:34:05 -0500 | [diff] [blame] | 28 | #define DISABLE_BRANCH_PROFILING | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 29 | #include <linux/mutex.h> | 
 | 30 | #include <linux/sched.h> | 
 | 31 | #include <linux/delay.h> | 
 | 32 | #include <linux/module.h> | 
 | 33 | #include <linux/proc_fs.h> | 
 | 34 | #include <linux/seq_file.h> | 
 | 35 | #include <linux/spinlock.h> | 
 | 36 | #include <linux/kallsyms.h> | 
 | 37 | #include <linux/interrupt.h> | 
 | 38 | #include <linux/stacktrace.h> | 
 | 39 | #include <linux/debug_locks.h> | 
 | 40 | #include <linux/irqflags.h> | 
| Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 41 | #include <linux/utsname.h> | 
| Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 42 | #include <linux/hash.h> | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 43 | #include <linux/ftrace.h> | 
| Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 44 | #include <linux/stringify.h> | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 45 |  | 
 | 46 | #include <asm/sections.h> | 
 | 47 |  | 
 | 48 | #include "lockdep_internals.h" | 
 | 49 |  | 
| Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 50 | #define CREATE_TRACE_POINTS | 
| Steven Rostedt | ad8d75f | 2009-04-14 19:39:12 -0400 | [diff] [blame] | 51 | #include <trace/events/lockdep.h> | 
| Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 52 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 53 | #ifdef CONFIG_PROVE_LOCKING | 
 | 54 | int prove_locking = 1; | 
 | 55 | module_param(prove_locking, int, 0644); | 
 | 56 | #else | 
 | 57 | #define prove_locking 0 | 
 | 58 | #endif | 
 | 59 |  | 
 | 60 | #ifdef CONFIG_LOCK_STAT | 
 | 61 | int lock_stat = 1; | 
 | 62 | module_param(lock_stat, int, 0644); | 
 | 63 | #else | 
 | 64 | #define lock_stat 0 | 
 | 65 | #endif | 
 | 66 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 67 | /* | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 68 |  * lockdep_lock: protects the lockdep graph, the hashes and the | 
 | 69 |  *               class/list/hash allocators. | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 70 |  * | 
 | 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 Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 73 |  * code to recurse back into the lockdep code... | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 74 |  */ | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 75 | static raw_spinlock_t lockdep_lock = (raw_spinlock_t)__RAW_SPIN_LOCK_UNLOCKED; | 
 | 76 |  | 
 | 77 | static 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 Rostedt | bb065af | 2008-05-12 21:21:00 +0200 | [diff] [blame] | 90 | 	/* prevent any recursions within lockdep from causing deadlocks */ | 
 | 91 | 	current->lockdep_recursion++; | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 92 | 	return 1; | 
 | 93 | } | 
 | 94 |  | 
 | 95 | static inline int graph_unlock(void) | 
 | 96 | { | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 97 | 	if (debug_locks && !__raw_spin_is_locked(&lockdep_lock)) | 
 | 98 | 		return DEBUG_LOCKS_WARN_ON(1); | 
 | 99 |  | 
| Steven Rostedt | bb065af | 2008-05-12 21:21:00 +0200 | [diff] [blame] | 100 | 	current->lockdep_recursion--; | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 101 | 	__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 |  */ | 
 | 109 | static 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 Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 117 |  | 
 | 118 | static int lockdep_initialized; | 
 | 119 |  | 
 | 120 | unsigned long nr_list_entries; | 
 | 121 | static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES]; | 
 | 122 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 123 | /* | 
 | 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 |  */ | 
 | 129 | unsigned long nr_lock_classes; | 
 | 130 | static struct lock_class lock_classes[MAX_LOCKDEP_KEYS]; | 
 | 131 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 132 | static 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 Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 141 | #ifdef CONFIG_LOCK_STAT | 
 | 142 | static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], lock_stats); | 
 | 143 |  | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 144 | static int lock_point(unsigned long points[], unsigned long ip) | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 145 | { | 
 | 146 | 	int i; | 
 | 147 |  | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 148 | 	for (i = 0; i < LOCKSTAT_POINTS; i++) { | 
 | 149 | 		if (points[i] == 0) { | 
 | 150 | 			points[i] = ip; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 151 | 			break; | 
 | 152 | 		} | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 153 | 		if (points[i] == ip) | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 154 | 			break; | 
 | 155 | 	} | 
 | 156 |  | 
 | 157 | 	return i; | 
 | 158 | } | 
 | 159 |  | 
 | 160 | static 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 Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 172 | static 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 |  | 
 | 180 | struct 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 Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 193 | 		for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++) | 
 | 194 | 			stats.contending_point[i] += pcs->contending_point[i]; | 
 | 195 |  | 
| Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 196 | 		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 Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 201 |  | 
 | 202 | 		for (i = 0; i < ARRAY_SIZE(stats.bounces); i++) | 
 | 203 | 			stats.bounces[i] += pcs->bounces[i]; | 
| Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 204 | 	} | 
 | 205 |  | 
 | 206 | 	return stats; | 
 | 207 | } | 
 | 208 |  | 
 | 209 | void 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 Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 220 | 	memset(class->contending_point, 0, sizeof(class->contending_point)); | 
| Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 221 | } | 
 | 222 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 223 | static struct lock_class_stats *get_lock_stats(struct lock_class *class) | 
 | 224 | { | 
 | 225 | 	return &get_cpu_var(lock_stats)[class - lock_classes]; | 
 | 226 | } | 
 | 227 |  | 
 | 228 | static void put_lock_stats(struct lock_class_stats *stats) | 
 | 229 | { | 
 | 230 | 	put_cpu_var(lock_stats); | 
 | 231 | } | 
 | 232 |  | 
 | 233 | static 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 Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 243 | 	stats = get_lock_stats(hlock_class(hlock)); | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 244 | 	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 | 
 | 251 | static inline void lock_release_holdtime(struct held_lock *hlock) | 
 | 252 | { | 
 | 253 | } | 
 | 254 | #endif | 
 | 255 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 256 | /* | 
 | 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 |  */ | 
 | 261 | LIST_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 Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 268 | #define __classhashfn(key)	hash_long((unsigned long)key, CLASSHASH_BITS) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 269 | #define classhashentry(key)	(classhash_table + __classhashfn((key))) | 
 | 270 |  | 
 | 271 | static struct list_head classhash_table[CLASSHASH_SIZE]; | 
 | 272 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 273 | /* | 
 | 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 Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 279 | #define __chainhashfn(chain)	hash_long(chain, CHAINHASH_BITS) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 280 | #define chainhashentry(chain)	(chainhash_table + __chainhashfn((chain))) | 
 | 281 |  | 
 | 282 | static 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 Molnar | 03cbc35 | 2006-09-29 02:01:46 -0700 | [diff] [blame] | 291 | 	(((key1) << MAX_LOCKDEP_KEYS_BITS) ^ \ | 
 | 292 | 	((key1) >> (64-MAX_LOCKDEP_KEYS_BITS)) ^ \ | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 293 | 	(key2)) | 
 | 294 |  | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 295 | void lockdep_off(void) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 296 | { | 
 | 297 | 	current->lockdep_recursion++; | 
 | 298 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 299 | EXPORT_SYMBOL(lockdep_off); | 
 | 300 |  | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 301 | void lockdep_on(void) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 302 | { | 
 | 303 | 	current->lockdep_recursion--; | 
 | 304 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 305 | EXPORT_SYMBOL(lockdep_on); | 
 | 306 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 307 | /* | 
 | 308 |  * Debugging switches: | 
 | 309 |  */ | 
 | 310 |  | 
 | 311 | #define VERBOSE			0 | 
| Ingo Molnar | 33e94e9 | 2006-12-13 00:34:41 -0800 | [diff] [blame] | 312 | #define VERY_VERBOSE		0 | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 313 |  | 
 | 314 | #if VERBOSE | 
 | 315 | # define HARDIRQ_VERBOSE	1 | 
 | 316 | # define SOFTIRQ_VERBOSE	1 | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 317 | # define RECLAIM_VERBOSE	1 | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 318 | #else | 
 | 319 | # define HARDIRQ_VERBOSE	0 | 
 | 320 | # define SOFTIRQ_VERBOSE	0 | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 321 | # define RECLAIM_VERBOSE	0 | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 322 | #endif | 
 | 323 |  | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 324 | #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE || RECLAIM_VERBOSE | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 325 | /* | 
 | 326 |  * Quick filtering for interesting events: | 
 | 327 |  */ | 
 | 328 | static int class_filter(struct lock_class *class) | 
 | 329 | { | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 330 | #if 0 | 
 | 331 | 	/* Example */ | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 332 | 	if (class->name_version == 1 && | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 333 | 			!strcmp(class->name, "lockname")) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 334 | 		return 1; | 
 | 335 | 	if (class->name_version == 1 && | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 336 | 			!strcmp(class->name, "&struct->lockfield")) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 337 | 		return 1; | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 338 | #endif | 
| Ingo Molnar | a664089 | 2006-12-13 00:34:39 -0800 | [diff] [blame] | 339 | 	/* Filter everything else. 1 would be to allow everything else */ | 
 | 340 | 	return 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 341 | } | 
 | 342 | #endif | 
 | 343 |  | 
 | 344 | static int verbose(struct lock_class *class) | 
 | 345 | { | 
 | 346 | #if VERBOSE | 
 | 347 | 	return class_filter(class); | 
 | 348 | #endif | 
 | 349 | 	return 0; | 
 | 350 | } | 
 | 351 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 352 | /* | 
 | 353 |  * Stack-trace: tightly packed array of stack backtrace | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 354 |  * addresses. Protected by the graph_lock. | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 355 |  */ | 
 | 356 | unsigned long nr_stack_trace_entries; | 
 | 357 | static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES]; | 
 | 358 |  | 
 | 359 | static 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 Kleen | 5a1b399 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 365 | 	trace->skip = 3; | 
| Andi Kleen | 5a1b399 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 366 |  | 
| Christoph Hellwig | ab1b6f0 | 2007-05-08 00:23:29 -0700 | [diff] [blame] | 367 | 	save_stack_trace(trace); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 368 |  | 
 | 369 | 	trace->max_entries = trace->nr_entries; | 
 | 370 |  | 
 | 371 | 	nr_stack_trace_entries += trace->nr_entries; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 372 |  | 
 | 373 | 	if (nr_stack_trace_entries == MAX_STACK_TRACE_ENTRIES) { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 374 | 		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 Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 381 | 		return 0; | 
 | 382 | 	} | 
 | 383 |  | 
 | 384 | 	return 1; | 
 | 385 | } | 
 | 386 |  | 
 | 387 | unsigned int nr_hardirq_chains; | 
 | 388 | unsigned int nr_softirq_chains; | 
 | 389 | unsigned int nr_process_chains; | 
 | 390 | unsigned int max_lockdep_depth; | 
 | 391 | unsigned int max_recursion_depth; | 
 | 392 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 393 | static unsigned int lockdep_dependency_gen_id; | 
 | 394 |  | 
 | 395 | static 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 Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 406 | #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 |  */ | 
 | 412 | static int lockdep_init_error; | 
| Johannes Berg | c71063c | 2007-07-19 01:49:02 -0700 | [diff] [blame] | 413 | static unsigned long lockdep_init_trace_data[20]; | 
 | 414 | static struct stack_trace lockdep_init_trace = { | 
 | 415 | 	.max_entries = ARRAY_SIZE(lockdep_init_trace_data), | 
 | 416 | 	.entries = lockdep_init_trace_data, | 
 | 417 | }; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 418 |  | 
 | 419 | /* | 
 | 420 |  * Various lockdep statistics: | 
 | 421 |  */ | 
 | 422 | atomic_t chain_lookup_hits; | 
 | 423 | atomic_t chain_lookup_misses; | 
 | 424 | atomic_t hardirqs_on_events; | 
 | 425 | atomic_t hardirqs_off_events; | 
 | 426 | atomic_t redundant_hardirqs_on; | 
 | 427 | atomic_t redundant_hardirqs_off; | 
 | 428 | atomic_t softirqs_on_events; | 
 | 429 | atomic_t softirqs_off_events; | 
 | 430 | atomic_t redundant_softirqs_on; | 
 | 431 | atomic_t redundant_softirqs_off; | 
 | 432 | atomic_t nr_unused_locks; | 
 | 433 | atomic_t nr_cyclic_checks; | 
 | 434 | atomic_t nr_cyclic_check_recursions; | 
 | 435 | atomic_t nr_find_usage_forwards_checks; | 
 | 436 | atomic_t nr_find_usage_forwards_recursions; | 
 | 437 | atomic_t nr_find_usage_backwards_checks; | 
 | 438 | atomic_t nr_find_usage_backwards_recursions; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 439 | #endif | 
 | 440 |  | 
 | 441 | /* | 
 | 442 |  * Locking printouts: | 
 | 443 |  */ | 
 | 444 |  | 
| Peter Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 445 | #define __USAGE(__STATE)						\ | 
| Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 446 | 	[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 Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 450 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 451 | static const char *usage_str[] = | 
 | 452 | { | 
| Peter Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 453 | #define LOCKDEP_STATE(__STATE) __USAGE(__STATE) | 
 | 454 | #include "lockdep_states.h" | 
 | 455 | #undef LOCKDEP_STATE | 
 | 456 | 	[LOCK_USED] = "INITIAL USE", | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 457 | }; | 
 | 458 |  | 
 | 459 | const char * __get_key_name(struct lockdep_subclass_key *key, char *str) | 
 | 460 | { | 
| Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 461 | 	return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 462 | } | 
 | 463 |  | 
| Peter Zijlstra | 3ff176c | 2009-01-22 17:40:42 +0100 | [diff] [blame] | 464 | static inline unsigned long lock_flag(enum lock_usage_bit bit) | 
 | 465 | { | 
 | 466 | 	return 1UL << bit; | 
 | 467 | } | 
 | 468 |  | 
 | 469 | static 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 Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 484 | void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS]) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 485 | { | 
| Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 486 | 	int i = 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 487 |  | 
| Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 488 | #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 Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 495 | } | 
 | 496 |  | 
 | 497 | static void print_lock_name(struct lock_class *class) | 
 | 498 | { | 
| Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 499 | 	char str[KSYM_NAME_LEN], usage[LOCK_USAGE_CHARS]; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 500 | 	const char *name; | 
 | 501 |  | 
| Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 502 | 	get_usage_chars(class, usage); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 503 |  | 
 | 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 Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 515 | 	printk("){%s}", usage); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 516 | } | 
 | 517 |  | 
 | 518 | static void print_lockdep_cache(struct lockdep_map *lock) | 
 | 519 | { | 
 | 520 | 	const char *name; | 
| Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 521 | 	char str[KSYM_NAME_LEN]; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 522 |  | 
 | 523 | 	name = lock->name; | 
 | 524 | 	if (!name) | 
 | 525 | 		name = __get_key_name(lock->key->subkeys, str); | 
 | 526 |  | 
 | 527 | 	printk("%s", name); | 
 | 528 | } | 
 | 529 |  | 
 | 530 | static void print_lock(struct held_lock *hlock) | 
 | 531 | { | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 532 | 	print_lock_name(hlock_class(hlock)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 533 | 	printk(", at: "); | 
 | 534 | 	print_ip_sym(hlock->acquire_ip); | 
 | 535 | } | 
 | 536 |  | 
 | 537 | static void lockdep_print_held_locks(struct task_struct *curr) | 
 | 538 | { | 
 | 539 | 	int i, depth = curr->lockdep_depth; | 
 | 540 |  | 
 | 541 | 	if (!depth) { | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 542 | 		printk("no locks held by %s/%d.\n", curr->comm, task_pid_nr(curr)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 543 | 		return; | 
 | 544 | 	} | 
 | 545 | 	printk("%d lock%s held by %s/%d:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 546 | 		depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 547 |  | 
 | 548 | 	for (i = 0; i < depth; i++) { | 
 | 549 | 		printk(" #%d: ", i); | 
 | 550 | 		print_lock(curr->held_locks + i); | 
 | 551 | 	} | 
 | 552 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 553 |  | 
 | 554 | static void print_lock_class_header(struct lock_class *class, int depth) | 
 | 555 | { | 
 | 556 | 	int bit; | 
 | 557 |  | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 558 | 	printk("%*s->", depth, ""); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 559 | 	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 Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 567 | 			len += printk("%*s   %s", depth, "", usage_str[bit]); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 568 | 			len += printk(" at:\n"); | 
 | 569 | 			print_stack_trace(class->usage_traces + bit, len); | 
 | 570 | 		} | 
 | 571 | 	} | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 572 | 	printk("%*s }\n", depth, ""); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 573 |  | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 574 | 	printk("%*s ... key      at: ",depth,""); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 575 | 	print_ip_sym((unsigned long)class->key); | 
 | 576 | } | 
 | 577 |  | 
 | 578 | /* | 
 | 579 |  * printk all lock dependencies starting at <entry>: | 
 | 580 |  */ | 
| Ingo Molnar | 7807faf | 2008-11-25 08:44:24 +0100 | [diff] [blame] | 581 | static void __used | 
 | 582 | print_lock_dependencies(struct lock_class *class, int depth) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 583 | { | 
 | 584 | 	struct lock_list *entry; | 
 | 585 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 586 | 	if (lockdep_dependency_visit(class, depth)) | 
 | 587 | 		return; | 
 | 588 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 589 | 	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 Poplawski | b23984d | 2006-12-06 20:36:23 -0800 | [diff] [blame] | 595 | 		if (DEBUG_LOCKS_WARN_ON(!entry->class)) | 
 | 596 | 			return; | 
 | 597 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 598 | 		print_lock_dependencies(entry->class, depth + 1); | 
 | 599 |  | 
| Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 600 | 		printk("%*s ... acquired at:\n",depth,""); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 601 | 		print_stack_trace(&entry->trace, 2); | 
 | 602 | 		printk("\n"); | 
 | 603 | 	} | 
 | 604 | } | 
 | 605 |  | 
| Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 606 | static void print_kernel_version(void) | 
 | 607 | { | 
| Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 608 | 	printk("%s %.*s\n", init_utsname()->release, | 
 | 609 | 		(int)strcspn(init_utsname()->version, " "), | 
 | 610 | 		init_utsname()->version); | 
| Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 611 | } | 
 | 612 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 613 | static int very_verbose(struct lock_class *class) | 
 | 614 | { | 
 | 615 | #if VERY_VERBOSE | 
 | 616 | 	return class_filter(class); | 
 | 617 | #endif | 
 | 618 | 	return 0; | 
 | 619 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 620 |  | 
 | 621 | /* | 
 | 622 |  * Is this the address of a static object: | 
 | 623 |  */ | 
 | 624 | static 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 Molnar | 1ff5683 | 2006-11-17 19:57:22 +0100 | [diff] [blame] | 645 | 		end   = (unsigned long) &__per_cpu_start + PERCPU_ENOUGH_ROOM | 
 | 646 | 					+ per_cpu_offset(i); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 647 |  | 
 | 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 |  */ | 
 | 663 | static 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 Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 681 | /* | 
 | 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 |  */ | 
 | 686 | static inline struct lock_class * | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 687 | look_up_lock_class(struct lockdep_map *lock, unsigned int subclass) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 688 | { | 
 | 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 Berg | c71063c | 2007-07-19 01:49:02 -0700 | [diff] [blame] | 702 | 		save_stack_trace(&lockdep_init_trace); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 703 | 	} | 
 | 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 Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 719 | 	BUILD_BUG_ON(sizeof(struct lock_class_key) > | 
 | 720 | 			sizeof(struct lockdep_map)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 721 |  | 
 | 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 Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 730 | 	list_for_each_entry(class, hash_head, hash_entry) { | 
 | 731 | 		if (class->key == key) { | 
 | 732 | 			WARN_ON_ONCE(class->name != lock->name); | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 733 | 			return class; | 
| Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 734 | 		} | 
 | 735 | 	} | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 736 |  | 
 | 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 |  */ | 
 | 745 | static inline struct lock_class * | 
| Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 746 | register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force) | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 747 | { | 
 | 748 | 	struct lockdep_subclass_key *key; | 
 | 749 | 	struct list_head *hash_head; | 
 | 750 | 	struct lock_class *class; | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 751 | 	unsigned long flags; | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 752 |  | 
 | 753 | 	class = look_up_lock_class(lock, subclass); | 
 | 754 | 	if (likely(class)) | 
 | 755 | 		return class; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 756 |  | 
 | 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 Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 770 | 	key = lock->key->subkeys + subclass; | 
 | 771 | 	hash_head = classhashentry(key); | 
 | 772 |  | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 773 | 	raw_local_irq_save(flags); | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 774 | 	if (!graph_lock()) { | 
 | 775 | 		raw_local_irq_restore(flags); | 
 | 776 | 		return NULL; | 
 | 777 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 778 | 	/* | 
 | 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 Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 790 | 		if (!debug_locks_off_graph_unlock()) { | 
 | 791 | 			raw_local_irq_restore(flags); | 
 | 792 | 			return NULL; | 
 | 793 | 		} | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 794 | 		raw_local_irq_restore(flags); | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 795 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 796 | 		printk("BUG: MAX_LOCKDEP_KEYS too low!\n"); | 
 | 797 | 		printk("turning off the locking correctness validator.\n"); | 
| Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 798 | 		dump_stack(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 799 | 		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 Farnsworth | 1481197 | 2008-02-25 23:03:02 +0100 | [diff] [blame] | 815 | 	/* | 
 | 816 | 	 * Add it to the global list of classes: | 
 | 817 | 	 */ | 
 | 818 | 	list_add_tail_rcu(&class->lock_entry, &all_lock_classes); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 819 |  | 
 | 820 | 	if (verbose(class)) { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 821 | 		graph_unlock(); | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 822 | 		raw_local_irq_restore(flags); | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 823 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 824 | 		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 Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 829 |  | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 830 | 		raw_local_irq_save(flags); | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 831 | 		if (!graph_lock()) { | 
 | 832 | 			raw_local_irq_restore(flags); | 
 | 833 | 			return NULL; | 
 | 834 | 		} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 835 | 	} | 
 | 836 | out_unlock_set: | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 837 | 	graph_unlock(); | 
| Ingo Molnar | 70e4506 | 2006-12-06 20:40:50 -0800 | [diff] [blame] | 838 | 	raw_local_irq_restore(flags); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 839 |  | 
| Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 840 | 	if (!subclass || force) | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 841 | 		lock->class_cache = class; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 842 |  | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 843 | 	if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass)) | 
 | 844 | 		return NULL; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 845 |  | 
 | 846 | 	return class; | 
 | 847 | } | 
 | 848 |  | 
| Peter Zijlstra | ca58abc | 2007-07-19 01:48:53 -0700 | [diff] [blame] | 849 | #ifdef CONFIG_PROVE_LOCKING | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 850 | /* | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 851 |  * Allocate a lockdep entry. (assumes the graph_lock held, returns | 
 | 852 |  * with NULL on failure) | 
 | 853 |  */ | 
 | 854 | static 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 Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 862 | 		dump_stack(); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 863 | 		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 |  */ | 
 | 871 | static 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 Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 883 | 	if (!save_trace(&entry->trace)) | 
 | 884 | 		return 0; | 
 | 885 |  | 
| Zhu Yi | 7487017 | 2008-08-27 14:33:00 +0800 | [diff] [blame] | 886 | 	entry->class = this; | 
 | 887 | 	entry->distance = distance; | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 888 | 	/* | 
 | 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 |  | 
 | 900 | /* | 
 | 901 |  * Recursive, forwards-direction lock-dependency checking, used for | 
 | 902 |  * both noncyclic checking and for hardirq-unsafe/softirq-unsafe | 
 | 903 |  * checking. | 
 | 904 |  * | 
 | 905 |  * (to keep the stackframe of the recursive functions small we | 
 | 906 |  *  use these global variables, and we also mark various helper | 
 | 907 |  *  functions as noinline.) | 
 | 908 |  */ | 
 | 909 | static struct held_lock *check_source, *check_target; | 
 | 910 |  | 
 | 911 | /* | 
 | 912 |  * Print a dependency chain entry (this is only done when a deadlock | 
 | 913 |  * has been detected): | 
 | 914 |  */ | 
 | 915 | static noinline int | 
 | 916 | print_circular_bug_entry(struct lock_list *target, unsigned int depth) | 
 | 917 | { | 
 | 918 | 	if (debug_locks_silent) | 
 | 919 | 		return 0; | 
 | 920 | 	printk("\n-> #%u", depth); | 
 | 921 | 	print_lock_name(target->class); | 
 | 922 | 	printk(":\n"); | 
 | 923 | 	print_stack_trace(&target->trace, 6); | 
 | 924 |  | 
 | 925 | 	return 0; | 
 | 926 | } | 
 | 927 |  | 
 | 928 | /* | 
 | 929 |  * When a circular dependency is detected, print the | 
 | 930 |  * header first: | 
 | 931 |  */ | 
 | 932 | static noinline int | 
 | 933 | print_circular_bug_header(struct lock_list *entry, unsigned int depth) | 
 | 934 | { | 
 | 935 | 	struct task_struct *curr = current; | 
 | 936 |  | 
 | 937 | 	if (!debug_locks_off_graph_unlock() || debug_locks_silent) | 
 | 938 | 		return 0; | 
 | 939 |  | 
 | 940 | 	printk("\n=======================================================\n"); | 
 | 941 | 	printk(  "[ INFO: possible circular locking dependency detected ]\n"); | 
 | 942 | 	print_kernel_version(); | 
 | 943 | 	printk(  "-------------------------------------------------------\n"); | 
 | 944 | 	printk("%s/%d is trying to acquire lock:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 945 | 		curr->comm, task_pid_nr(curr)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 946 | 	print_lock(check_source); | 
 | 947 | 	printk("\nbut task is already holding lock:\n"); | 
 | 948 | 	print_lock(check_target); | 
 | 949 | 	printk("\nwhich lock already depends on the new lock.\n\n"); | 
 | 950 | 	printk("\nthe existing dependency chain (in reverse order) is:\n"); | 
 | 951 |  | 
 | 952 | 	print_circular_bug_entry(entry, depth); | 
 | 953 |  | 
 | 954 | 	return 0; | 
 | 955 | } | 
 | 956 |  | 
 | 957 | static noinline int print_circular_bug_tail(void) | 
 | 958 | { | 
 | 959 | 	struct task_struct *curr = current; | 
 | 960 | 	struct lock_list this; | 
 | 961 |  | 
 | 962 | 	if (debug_locks_silent) | 
 | 963 | 		return 0; | 
 | 964 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 965 | 	this.class = hlock_class(check_source); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 966 | 	if (!save_trace(&this.trace)) | 
 | 967 | 		return 0; | 
 | 968 |  | 
 | 969 | 	print_circular_bug_entry(&this, 0); | 
 | 970 |  | 
 | 971 | 	printk("\nother info that might help us debug this:\n\n"); | 
 | 972 | 	lockdep_print_held_locks(curr); | 
 | 973 |  | 
 | 974 | 	printk("\nstack backtrace:\n"); | 
 | 975 | 	dump_stack(); | 
 | 976 |  | 
 | 977 | 	return 0; | 
 | 978 | } | 
 | 979 |  | 
 | 980 | #define RECURSION_LIMIT 40 | 
 | 981 |  | 
 | 982 | static int noinline print_infinite_recursion_bug(void) | 
 | 983 | { | 
 | 984 | 	if (!debug_locks_off_graph_unlock()) | 
 | 985 | 		return 0; | 
 | 986 |  | 
 | 987 | 	WARN_ON(1); | 
 | 988 |  | 
 | 989 | 	return 0; | 
 | 990 | } | 
 | 991 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 992 | unsigned long __lockdep_count_forward_deps(struct lock_class *class, | 
 | 993 | 					   unsigned int depth) | 
 | 994 | { | 
 | 995 | 	struct lock_list *entry; | 
 | 996 | 	unsigned long ret = 1; | 
 | 997 |  | 
 | 998 | 	if (lockdep_dependency_visit(class, depth)) | 
 | 999 | 		return 0; | 
 | 1000 |  | 
 | 1001 | 	/* | 
 | 1002 | 	 * Recurse this class's dependency list: | 
 | 1003 | 	 */ | 
 | 1004 | 	list_for_each_entry(entry, &class->locks_after, entry) | 
 | 1005 | 		ret += __lockdep_count_forward_deps(entry->class, depth + 1); | 
 | 1006 |  | 
 | 1007 | 	return ret; | 
 | 1008 | } | 
 | 1009 |  | 
 | 1010 | unsigned long lockdep_count_forward_deps(struct lock_class *class) | 
 | 1011 | { | 
 | 1012 | 	unsigned long ret, flags; | 
 | 1013 |  | 
 | 1014 | 	local_irq_save(flags); | 
 | 1015 | 	__raw_spin_lock(&lockdep_lock); | 
 | 1016 | 	ret = __lockdep_count_forward_deps(class, 0); | 
 | 1017 | 	__raw_spin_unlock(&lockdep_lock); | 
 | 1018 | 	local_irq_restore(flags); | 
 | 1019 |  | 
 | 1020 | 	return ret; | 
 | 1021 | } | 
 | 1022 |  | 
 | 1023 | unsigned long __lockdep_count_backward_deps(struct lock_class *class, | 
 | 1024 | 					    unsigned int depth) | 
 | 1025 | { | 
 | 1026 | 	struct lock_list *entry; | 
 | 1027 | 	unsigned long ret = 1; | 
 | 1028 |  | 
 | 1029 | 	if (lockdep_dependency_visit(class, depth)) | 
 | 1030 | 		return 0; | 
 | 1031 | 	/* | 
 | 1032 | 	 * Recurse this class's dependency list: | 
 | 1033 | 	 */ | 
 | 1034 | 	list_for_each_entry(entry, &class->locks_before, entry) | 
 | 1035 | 		ret += __lockdep_count_backward_deps(entry->class, depth + 1); | 
 | 1036 |  | 
 | 1037 | 	return ret; | 
 | 1038 | } | 
 | 1039 |  | 
 | 1040 | unsigned long lockdep_count_backward_deps(struct lock_class *class) | 
 | 1041 | { | 
 | 1042 | 	unsigned long ret, flags; | 
 | 1043 |  | 
 | 1044 | 	local_irq_save(flags); | 
 | 1045 | 	__raw_spin_lock(&lockdep_lock); | 
 | 1046 | 	ret = __lockdep_count_backward_deps(class, 0); | 
 | 1047 | 	__raw_spin_unlock(&lockdep_lock); | 
 | 1048 | 	local_irq_restore(flags); | 
 | 1049 |  | 
 | 1050 | 	return ret; | 
 | 1051 | } | 
 | 1052 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1053 | /* | 
 | 1054 |  * Prove that the dependency graph starting at <entry> can not | 
 | 1055 |  * lead to <target>. Print an error and return 0 if it does. | 
 | 1056 |  */ | 
 | 1057 | static noinline int | 
 | 1058 | check_noncircular(struct lock_class *source, unsigned int depth) | 
 | 1059 | { | 
 | 1060 | 	struct lock_list *entry; | 
 | 1061 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1062 | 	if (lockdep_dependency_visit(source, depth)) | 
 | 1063 | 		return 1; | 
 | 1064 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1065 | 	debug_atomic_inc(&nr_cyclic_check_recursions); | 
 | 1066 | 	if (depth > max_recursion_depth) | 
 | 1067 | 		max_recursion_depth = depth; | 
 | 1068 | 	if (depth >= RECURSION_LIMIT) | 
 | 1069 | 		return print_infinite_recursion_bug(); | 
 | 1070 | 	/* | 
 | 1071 | 	 * Check this lock's dependency list: | 
 | 1072 | 	 */ | 
 | 1073 | 	list_for_each_entry(entry, &source->locks_after, entry) { | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1074 | 		if (entry->class == hlock_class(check_target)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1075 | 			return print_circular_bug_header(entry, depth+1); | 
 | 1076 | 		debug_atomic_inc(&nr_cyclic_checks); | 
 | 1077 | 		if (!check_noncircular(entry->class, depth+1)) | 
 | 1078 | 			return print_circular_bug_entry(entry, depth+1); | 
 | 1079 | 	} | 
 | 1080 | 	return 1; | 
 | 1081 | } | 
 | 1082 |  | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1083 | #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1084 | /* | 
 | 1085 |  * Forwards and backwards subgraph searching, for the purposes of | 
 | 1086 |  * proving that two subgraphs can be connected by a new dependency | 
 | 1087 |  * without creating any illegal irq-safe -> irq-unsafe lock dependency. | 
 | 1088 |  */ | 
 | 1089 | static enum lock_usage_bit find_usage_bit; | 
 | 1090 | static struct lock_class *forwards_match, *backwards_match; | 
 | 1091 |  | 
 | 1092 | /* | 
 | 1093 |  * Find a node in the forwards-direction dependency sub-graph starting | 
 | 1094 |  * at <source> that matches <find_usage_bit>. | 
 | 1095 |  * | 
 | 1096 |  * Return 2 if such a node exists in the subgraph, and put that node | 
 | 1097 |  * into <forwards_match>. | 
 | 1098 |  * | 
 | 1099 |  * Return 1 otherwise and keep <forwards_match> unchanged. | 
 | 1100 |  * Return 0 on error. | 
 | 1101 |  */ | 
 | 1102 | static noinline int | 
 | 1103 | find_usage_forwards(struct lock_class *source, unsigned int depth) | 
 | 1104 | { | 
 | 1105 | 	struct lock_list *entry; | 
 | 1106 | 	int ret; | 
 | 1107 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1108 | 	if (lockdep_dependency_visit(source, depth)) | 
 | 1109 | 		return 1; | 
 | 1110 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1111 | 	if (depth > max_recursion_depth) | 
 | 1112 | 		max_recursion_depth = depth; | 
 | 1113 | 	if (depth >= RECURSION_LIMIT) | 
 | 1114 | 		return print_infinite_recursion_bug(); | 
 | 1115 |  | 
 | 1116 | 	debug_atomic_inc(&nr_find_usage_forwards_checks); | 
 | 1117 | 	if (source->usage_mask & (1 << find_usage_bit)) { | 
 | 1118 | 		forwards_match = source; | 
 | 1119 | 		return 2; | 
 | 1120 | 	} | 
 | 1121 |  | 
 | 1122 | 	/* | 
 | 1123 | 	 * Check this lock's dependency list: | 
 | 1124 | 	 */ | 
 | 1125 | 	list_for_each_entry(entry, &source->locks_after, entry) { | 
 | 1126 | 		debug_atomic_inc(&nr_find_usage_forwards_recursions); | 
 | 1127 | 		ret = find_usage_forwards(entry->class, depth+1); | 
 | 1128 | 		if (ret == 2 || ret == 0) | 
 | 1129 | 			return ret; | 
 | 1130 | 	} | 
 | 1131 | 	return 1; | 
 | 1132 | } | 
 | 1133 |  | 
 | 1134 | /* | 
 | 1135 |  * Find a node in the backwards-direction dependency sub-graph starting | 
 | 1136 |  * at <source> that matches <find_usage_bit>. | 
 | 1137 |  * | 
 | 1138 |  * Return 2 if such a node exists in the subgraph, and put that node | 
 | 1139 |  * into <backwards_match>. | 
 | 1140 |  * | 
 | 1141 |  * Return 1 otherwise and keep <backwards_match> unchanged. | 
 | 1142 |  * Return 0 on error. | 
 | 1143 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 1144 | static noinline int | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1145 | find_usage_backwards(struct lock_class *source, unsigned int depth) | 
 | 1146 | { | 
 | 1147 | 	struct lock_list *entry; | 
 | 1148 | 	int ret; | 
 | 1149 |  | 
| David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1150 | 	if (lockdep_dependency_visit(source, depth)) | 
 | 1151 | 		return 1; | 
 | 1152 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1153 | 	if (!__raw_spin_is_locked(&lockdep_lock)) | 
 | 1154 | 		return DEBUG_LOCKS_WARN_ON(1); | 
 | 1155 |  | 
 | 1156 | 	if (depth > max_recursion_depth) | 
 | 1157 | 		max_recursion_depth = depth; | 
 | 1158 | 	if (depth >= RECURSION_LIMIT) | 
 | 1159 | 		return print_infinite_recursion_bug(); | 
 | 1160 |  | 
 | 1161 | 	debug_atomic_inc(&nr_find_usage_backwards_checks); | 
 | 1162 | 	if (source->usage_mask & (1 << find_usage_bit)) { | 
 | 1163 | 		backwards_match = source; | 
 | 1164 | 		return 2; | 
 | 1165 | 	} | 
 | 1166 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1167 | 	if (!source && debug_locks_off_graph_unlock()) { | 
 | 1168 | 		WARN_ON(1); | 
 | 1169 | 		return 0; | 
 | 1170 | 	} | 
 | 1171 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1172 | 	/* | 
 | 1173 | 	 * Check this lock's dependency list: | 
 | 1174 | 	 */ | 
 | 1175 | 	list_for_each_entry(entry, &source->locks_before, entry) { | 
 | 1176 | 		debug_atomic_inc(&nr_find_usage_backwards_recursions); | 
 | 1177 | 		ret = find_usage_backwards(entry->class, depth+1); | 
 | 1178 | 		if (ret == 2 || ret == 0) | 
 | 1179 | 			return ret; | 
 | 1180 | 	} | 
 | 1181 | 	return 1; | 
 | 1182 | } | 
 | 1183 |  | 
 | 1184 | static int | 
 | 1185 | print_bad_irq_dependency(struct task_struct *curr, | 
 | 1186 | 			 struct held_lock *prev, | 
 | 1187 | 			 struct held_lock *next, | 
 | 1188 | 			 enum lock_usage_bit bit1, | 
 | 1189 | 			 enum lock_usage_bit bit2, | 
 | 1190 | 			 const char *irqclass) | 
 | 1191 | { | 
 | 1192 | 	if (!debug_locks_off_graph_unlock() || debug_locks_silent) | 
 | 1193 | 		return 0; | 
 | 1194 |  | 
 | 1195 | 	printk("\n======================================================\n"); | 
 | 1196 | 	printk(  "[ INFO: %s-safe -> %s-unsafe lock order detected ]\n", | 
 | 1197 | 		irqclass, irqclass); | 
 | 1198 | 	print_kernel_version(); | 
 | 1199 | 	printk(  "------------------------------------------------------\n"); | 
 | 1200 | 	printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] is trying to acquire:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1201 | 		curr->comm, task_pid_nr(curr), | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1202 | 		curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT, | 
 | 1203 | 		curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT, | 
 | 1204 | 		curr->hardirqs_enabled, | 
 | 1205 | 		curr->softirqs_enabled); | 
 | 1206 | 	print_lock(next); | 
 | 1207 |  | 
 | 1208 | 	printk("\nand this task is already holding:\n"); | 
 | 1209 | 	print_lock(prev); | 
 | 1210 | 	printk("which would create a new lock dependency:\n"); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1211 | 	print_lock_name(hlock_class(prev)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1212 | 	printk(" ->"); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1213 | 	print_lock_name(hlock_class(next)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1214 | 	printk("\n"); | 
 | 1215 |  | 
 | 1216 | 	printk("\nbut this new dependency connects a %s-irq-safe lock:\n", | 
 | 1217 | 		irqclass); | 
 | 1218 | 	print_lock_name(backwards_match); | 
 | 1219 | 	printk("\n... which became %s-irq-safe at:\n", irqclass); | 
 | 1220 |  | 
 | 1221 | 	print_stack_trace(backwards_match->usage_traces + bit1, 1); | 
 | 1222 |  | 
 | 1223 | 	printk("\nto a %s-irq-unsafe lock:\n", irqclass); | 
 | 1224 | 	print_lock_name(forwards_match); | 
 | 1225 | 	printk("\n... which became %s-irq-unsafe at:\n", irqclass); | 
 | 1226 | 	printk("..."); | 
 | 1227 |  | 
 | 1228 | 	print_stack_trace(forwards_match->usage_traces + bit2, 1); | 
 | 1229 |  | 
 | 1230 | 	printk("\nother info that might help us debug this:\n\n"); | 
 | 1231 | 	lockdep_print_held_locks(curr); | 
 | 1232 |  | 
 | 1233 | 	printk("\nthe %s-irq-safe lock's dependencies:\n", irqclass); | 
 | 1234 | 	print_lock_dependencies(backwards_match, 0); | 
 | 1235 |  | 
 | 1236 | 	printk("\nthe %s-irq-unsafe lock's dependencies:\n", irqclass); | 
 | 1237 | 	print_lock_dependencies(forwards_match, 0); | 
 | 1238 |  | 
 | 1239 | 	printk("\nstack backtrace:\n"); | 
 | 1240 | 	dump_stack(); | 
 | 1241 |  | 
 | 1242 | 	return 0; | 
 | 1243 | } | 
 | 1244 |  | 
 | 1245 | static int | 
 | 1246 | check_usage(struct task_struct *curr, struct held_lock *prev, | 
 | 1247 | 	    struct held_lock *next, enum lock_usage_bit bit_backwards, | 
 | 1248 | 	    enum lock_usage_bit bit_forwards, const char *irqclass) | 
 | 1249 | { | 
 | 1250 | 	int ret; | 
 | 1251 |  | 
 | 1252 | 	find_usage_bit = bit_backwards; | 
 | 1253 | 	/* fills in <backwards_match> */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1254 | 	ret = find_usage_backwards(hlock_class(prev), 0); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1255 | 	if (!ret || ret == 1) | 
 | 1256 | 		return ret; | 
 | 1257 |  | 
 | 1258 | 	find_usage_bit = bit_forwards; | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1259 | 	ret = find_usage_forwards(hlock_class(next), 0); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1260 | 	if (!ret || ret == 1) | 
 | 1261 | 		return ret; | 
 | 1262 | 	/* ret == 2 */ | 
 | 1263 | 	return print_bad_irq_dependency(curr, prev, next, | 
 | 1264 | 			bit_backwards, bit_forwards, irqclass); | 
 | 1265 | } | 
 | 1266 |  | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1267 | static const char *state_names[] = { | 
 | 1268 | #define LOCKDEP_STATE(__STATE) \ | 
| Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 1269 | 	__stringify(__STATE), | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1270 | #include "lockdep_states.h" | 
 | 1271 | #undef LOCKDEP_STATE | 
 | 1272 | }; | 
 | 1273 |  | 
 | 1274 | static const char *state_rnames[] = { | 
 | 1275 | #define LOCKDEP_STATE(__STATE) \ | 
| Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 1276 | 	__stringify(__STATE)"-READ", | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1277 | #include "lockdep_states.h" | 
 | 1278 | #undef LOCKDEP_STATE | 
 | 1279 | }; | 
 | 1280 |  | 
 | 1281 | static inline const char *state_name(enum lock_usage_bit bit) | 
 | 1282 | { | 
 | 1283 | 	return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2]; | 
 | 1284 | } | 
 | 1285 |  | 
 | 1286 | static int exclusive_bit(int new_bit) | 
 | 1287 | { | 
 | 1288 | 	/* | 
 | 1289 | 	 * USED_IN | 
 | 1290 | 	 * USED_IN_READ | 
 | 1291 | 	 * ENABLED | 
 | 1292 | 	 * ENABLED_READ | 
 | 1293 | 	 * | 
 | 1294 | 	 * bit 0 - write/read | 
 | 1295 | 	 * bit 1 - used_in/enabled | 
 | 1296 | 	 * bit 2+  state | 
 | 1297 | 	 */ | 
 | 1298 |  | 
 | 1299 | 	int state = new_bit & ~3; | 
 | 1300 | 	int dir = new_bit & 2; | 
 | 1301 |  | 
 | 1302 | 	/* | 
 | 1303 | 	 * keep state, bit flip the direction and strip read. | 
 | 1304 | 	 */ | 
 | 1305 | 	return state | (dir ^ 2); | 
 | 1306 | } | 
 | 1307 |  | 
 | 1308 | static int check_irq_usage(struct task_struct *curr, struct held_lock *prev, | 
 | 1309 | 			   struct held_lock *next, enum lock_usage_bit bit) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1310 | { | 
 | 1311 | 	/* | 
 | 1312 | 	 * Prove that the new dependency does not connect a hardirq-safe | 
 | 1313 | 	 * lock with a hardirq-unsafe lock - to achieve this we search | 
 | 1314 | 	 * the backwards-subgraph starting at <prev>, and the | 
 | 1315 | 	 * forwards-subgraph starting at <next>: | 
 | 1316 | 	 */ | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1317 | 	if (!check_usage(curr, prev, next, bit, | 
 | 1318 | 			   exclusive_bit(bit), state_name(bit))) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1319 | 		return 0; | 
 | 1320 |  | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1321 | 	bit++; /* _READ */ | 
 | 1322 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1323 | 	/* | 
 | 1324 | 	 * Prove that the new dependency does not connect a hardirq-safe-read | 
 | 1325 | 	 * lock with a hardirq-unsafe lock - to achieve this we search | 
 | 1326 | 	 * the backwards-subgraph starting at <prev>, and the | 
 | 1327 | 	 * forwards-subgraph starting at <next>: | 
 | 1328 | 	 */ | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1329 | 	if (!check_usage(curr, prev, next, bit, | 
 | 1330 | 			   exclusive_bit(bit), state_name(bit))) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1331 | 		return 0; | 
 | 1332 |  | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1333 | 	return 1; | 
 | 1334 | } | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1335 |  | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1336 | static int | 
 | 1337 | check_prev_add_irq(struct task_struct *curr, struct held_lock *prev, | 
 | 1338 | 		struct held_lock *next) | 
 | 1339 | { | 
 | 1340 | #define LOCKDEP_STATE(__STATE)						\ | 
 | 1341 | 	if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE))	\ | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 1342 | 		return 0; | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1343 | #include "lockdep_states.h" | 
 | 1344 | #undef LOCKDEP_STATE | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 1345 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1346 | 	return 1; | 
 | 1347 | } | 
 | 1348 |  | 
 | 1349 | static void inc_chains(void) | 
 | 1350 | { | 
 | 1351 | 	if (current->hardirq_context) | 
 | 1352 | 		nr_hardirq_chains++; | 
 | 1353 | 	else { | 
 | 1354 | 		if (current->softirq_context) | 
 | 1355 | 			nr_softirq_chains++; | 
 | 1356 | 		else | 
 | 1357 | 			nr_process_chains++; | 
 | 1358 | 	} | 
 | 1359 | } | 
 | 1360 |  | 
 | 1361 | #else | 
 | 1362 |  | 
 | 1363 | static inline int | 
 | 1364 | check_prev_add_irq(struct task_struct *curr, struct held_lock *prev, | 
 | 1365 | 		struct held_lock *next) | 
 | 1366 | { | 
 | 1367 | 	return 1; | 
 | 1368 | } | 
 | 1369 |  | 
 | 1370 | static inline void inc_chains(void) | 
 | 1371 | { | 
 | 1372 | 	nr_process_chains++; | 
 | 1373 | } | 
 | 1374 |  | 
 | 1375 | #endif | 
 | 1376 |  | 
 | 1377 | static int | 
 | 1378 | print_deadlock_bug(struct task_struct *curr, struct held_lock *prev, | 
 | 1379 | 		   struct held_lock *next) | 
 | 1380 | { | 
 | 1381 | 	if (!debug_locks_off_graph_unlock() || debug_locks_silent) | 
 | 1382 | 		return 0; | 
 | 1383 |  | 
 | 1384 | 	printk("\n=============================================\n"); | 
 | 1385 | 	printk(  "[ INFO: possible recursive locking detected ]\n"); | 
 | 1386 | 	print_kernel_version(); | 
 | 1387 | 	printk(  "---------------------------------------------\n"); | 
 | 1388 | 	printk("%s/%d is trying to acquire lock:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1389 | 		curr->comm, task_pid_nr(curr)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1390 | 	print_lock(next); | 
 | 1391 | 	printk("\nbut task is already holding lock:\n"); | 
 | 1392 | 	print_lock(prev); | 
 | 1393 |  | 
 | 1394 | 	printk("\nother info that might help us debug this:\n"); | 
 | 1395 | 	lockdep_print_held_locks(curr); | 
 | 1396 |  | 
 | 1397 | 	printk("\nstack backtrace:\n"); | 
 | 1398 | 	dump_stack(); | 
 | 1399 |  | 
 | 1400 | 	return 0; | 
 | 1401 | } | 
 | 1402 |  | 
 | 1403 | /* | 
 | 1404 |  * Check whether we are holding such a class already. | 
 | 1405 |  * | 
 | 1406 |  * (Note that this has to be done separately, because the graph cannot | 
 | 1407 |  * detect such classes of deadlocks.) | 
 | 1408 |  * | 
 | 1409 |  * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read | 
 | 1410 |  */ | 
 | 1411 | static int | 
 | 1412 | check_deadlock(struct task_struct *curr, struct held_lock *next, | 
 | 1413 | 	       struct lockdep_map *next_instance, int read) | 
 | 1414 | { | 
 | 1415 | 	struct held_lock *prev; | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1416 | 	struct held_lock *nest = NULL; | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1417 | 	int i; | 
 | 1418 |  | 
 | 1419 | 	for (i = 0; i < curr->lockdep_depth; i++) { | 
 | 1420 | 		prev = curr->held_locks + i; | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1421 |  | 
 | 1422 | 		if (prev->instance == next->nest_lock) | 
 | 1423 | 			nest = prev; | 
 | 1424 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1425 | 		if (hlock_class(prev) != hlock_class(next)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1426 | 			continue; | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1427 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1428 | 		/* | 
 | 1429 | 		 * Allow read-after-read recursion of the same | 
 | 1430 | 		 * lock class (i.e. read_lock(lock)+read_lock(lock)): | 
 | 1431 | 		 */ | 
 | 1432 | 		if ((read == 2) && prev->read) | 
 | 1433 | 			return 2; | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1434 |  | 
 | 1435 | 		/* | 
 | 1436 | 		 * We're holding the nest_lock, which serializes this lock's | 
 | 1437 | 		 * nesting behaviour. | 
 | 1438 | 		 */ | 
 | 1439 | 		if (nest) | 
 | 1440 | 			return 2; | 
 | 1441 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1442 | 		return print_deadlock_bug(curr, prev, next); | 
 | 1443 | 	} | 
 | 1444 | 	return 1; | 
 | 1445 | } | 
 | 1446 |  | 
 | 1447 | /* | 
 | 1448 |  * There was a chain-cache miss, and we are about to add a new dependency | 
 | 1449 |  * to a previous lock. We recursively validate the following rules: | 
 | 1450 |  * | 
 | 1451 |  *  - would the adding of the <prev> -> <next> dependency create a | 
 | 1452 |  *    circular dependency in the graph? [== circular deadlock] | 
 | 1453 |  * | 
 | 1454 |  *  - does the new prev->next dependency connect any hardirq-safe lock | 
 | 1455 |  *    (in the full backwards-subgraph starting at <prev>) with any | 
 | 1456 |  *    hardirq-unsafe lock (in the full forwards-subgraph starting at | 
 | 1457 |  *    <next>)? [== illegal lock inversion with hardirq contexts] | 
 | 1458 |  * | 
 | 1459 |  *  - does the new prev->next dependency connect any softirq-safe lock | 
 | 1460 |  *    (in the full backwards-subgraph starting at <prev>) with any | 
 | 1461 |  *    softirq-unsafe lock (in the full forwards-subgraph starting at | 
 | 1462 |  *    <next>)? [== illegal lock inversion with softirq contexts] | 
 | 1463 |  * | 
 | 1464 |  * any of these scenarios could lead to a deadlock. | 
 | 1465 |  * | 
 | 1466 |  * Then if all the validations pass, we add the forwards and backwards | 
 | 1467 |  * dependency. | 
 | 1468 |  */ | 
 | 1469 | static int | 
 | 1470 | check_prev_add(struct task_struct *curr, struct held_lock *prev, | 
 | 1471 | 	       struct held_lock *next, int distance) | 
 | 1472 | { | 
 | 1473 | 	struct lock_list *entry; | 
 | 1474 | 	int ret; | 
 | 1475 |  | 
 | 1476 | 	/* | 
 | 1477 | 	 * Prove that the new <prev> -> <next> dependency would not | 
 | 1478 | 	 * create a circular dependency in the graph. (We do this by | 
 | 1479 | 	 * forward-recursing into the graph starting at <next>, and | 
 | 1480 | 	 * checking whether we can reach <prev>.) | 
 | 1481 | 	 * | 
 | 1482 | 	 * We are using global variables to control the recursion, to | 
 | 1483 | 	 * keep the stackframe size of the recursive functions low: | 
 | 1484 | 	 */ | 
 | 1485 | 	check_source = next; | 
 | 1486 | 	check_target = prev; | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1487 | 	if (!(check_noncircular(hlock_class(next), 0))) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1488 | 		return print_circular_bug_tail(); | 
 | 1489 |  | 
 | 1490 | 	if (!check_prev_add_irq(curr, prev, next)) | 
 | 1491 | 		return 0; | 
 | 1492 |  | 
 | 1493 | 	/* | 
 | 1494 | 	 * For recursive read-locks we do all the dependency checks, | 
 | 1495 | 	 * but we dont store read-triggered dependencies (only | 
 | 1496 | 	 * write-triggered dependencies). This ensures that only the | 
 | 1497 | 	 * write-side dependencies matter, and that if for example a | 
 | 1498 | 	 * write-lock never takes any other locks, then the reads are | 
 | 1499 | 	 * equivalent to a NOP. | 
 | 1500 | 	 */ | 
 | 1501 | 	if (next->read == 2 || prev->read == 2) | 
 | 1502 | 		return 1; | 
 | 1503 | 	/* | 
 | 1504 | 	 * Is the <prev> -> <next> dependency already present? | 
 | 1505 | 	 * | 
 | 1506 | 	 * (this may occur even though this is a new chain: consider | 
 | 1507 | 	 *  e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3 | 
 | 1508 | 	 *  chains - the second one will be new, but L1 already has | 
 | 1509 | 	 *  L2 added to its dependency list, due to the first chain.) | 
 | 1510 | 	 */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1511 | 	list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) { | 
 | 1512 | 		if (entry->class == hlock_class(next)) { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1513 | 			if (distance == 1) | 
 | 1514 | 				entry->distance = 1; | 
 | 1515 | 			return 2; | 
 | 1516 | 		} | 
 | 1517 | 	} | 
 | 1518 |  | 
 | 1519 | 	/* | 
 | 1520 | 	 * Ok, all validations passed, add the new lock | 
 | 1521 | 	 * to the previous lock's dependency list: | 
 | 1522 | 	 */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1523 | 	ret = add_lock_to_list(hlock_class(prev), hlock_class(next), | 
 | 1524 | 			       &hlock_class(prev)->locks_after, | 
 | 1525 | 			       next->acquire_ip, distance); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1526 |  | 
 | 1527 | 	if (!ret) | 
 | 1528 | 		return 0; | 
 | 1529 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1530 | 	ret = add_lock_to_list(hlock_class(next), hlock_class(prev), | 
 | 1531 | 			       &hlock_class(next)->locks_before, | 
 | 1532 | 			       next->acquire_ip, distance); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1533 | 	if (!ret) | 
 | 1534 | 		return 0; | 
 | 1535 |  | 
 | 1536 | 	/* | 
 | 1537 | 	 * Debugging printouts: | 
 | 1538 | 	 */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1539 | 	if (verbose(hlock_class(prev)) || verbose(hlock_class(next))) { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1540 | 		graph_unlock(); | 
 | 1541 | 		printk("\n new dependency: "); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1542 | 		print_lock_name(hlock_class(prev)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1543 | 		printk(" => "); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1544 | 		print_lock_name(hlock_class(next)); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1545 | 		printk("\n"); | 
 | 1546 | 		dump_stack(); | 
 | 1547 | 		return graph_lock(); | 
 | 1548 | 	} | 
 | 1549 | 	return 1; | 
 | 1550 | } | 
 | 1551 |  | 
 | 1552 | /* | 
 | 1553 |  * Add the dependency to all directly-previous locks that are 'relevant'. | 
 | 1554 |  * The ones that are relevant are (in increasing distance from curr): | 
 | 1555 |  * all consecutive trylock entries and the final non-trylock entry - or | 
 | 1556 |  * the end of this context's lock-chain - whichever comes first. | 
 | 1557 |  */ | 
 | 1558 | static int | 
 | 1559 | check_prevs_add(struct task_struct *curr, struct held_lock *next) | 
 | 1560 | { | 
 | 1561 | 	int depth = curr->lockdep_depth; | 
 | 1562 | 	struct held_lock *hlock; | 
 | 1563 |  | 
 | 1564 | 	/* | 
 | 1565 | 	 * Debugging checks. | 
 | 1566 | 	 * | 
 | 1567 | 	 * Depth must not be zero for a non-head lock: | 
 | 1568 | 	 */ | 
 | 1569 | 	if (!depth) | 
 | 1570 | 		goto out_bug; | 
 | 1571 | 	/* | 
 | 1572 | 	 * At least two relevant locks must exist for this | 
 | 1573 | 	 * to be a head: | 
 | 1574 | 	 */ | 
 | 1575 | 	if (curr->held_locks[depth].irq_context != | 
 | 1576 | 			curr->held_locks[depth-1].irq_context) | 
 | 1577 | 		goto out_bug; | 
 | 1578 |  | 
 | 1579 | 	for (;;) { | 
 | 1580 | 		int distance = curr->lockdep_depth - depth + 1; | 
 | 1581 | 		hlock = curr->held_locks + depth-1; | 
 | 1582 | 		/* | 
 | 1583 | 		 * Only non-recursive-read entries get new dependencies | 
 | 1584 | 		 * added: | 
 | 1585 | 		 */ | 
 | 1586 | 		if (hlock->read != 2) { | 
 | 1587 | 			if (!check_prev_add(curr, hlock, next, distance)) | 
 | 1588 | 				return 0; | 
 | 1589 | 			/* | 
 | 1590 | 			 * Stop after the first non-trylock entry, | 
 | 1591 | 			 * as non-trylock entries have added their | 
 | 1592 | 			 * own direct dependencies already, so this | 
 | 1593 | 			 * lock is connected to them indirectly: | 
 | 1594 | 			 */ | 
 | 1595 | 			if (!hlock->trylock) | 
 | 1596 | 				break; | 
 | 1597 | 		} | 
 | 1598 | 		depth--; | 
 | 1599 | 		/* | 
 | 1600 | 		 * End of lock-stack? | 
 | 1601 | 		 */ | 
 | 1602 | 		if (!depth) | 
 | 1603 | 			break; | 
 | 1604 | 		/* | 
 | 1605 | 		 * Stop the search if we cross into another context: | 
 | 1606 | 		 */ | 
 | 1607 | 		if (curr->held_locks[depth].irq_context != | 
 | 1608 | 				curr->held_locks[depth-1].irq_context) | 
 | 1609 | 			break; | 
 | 1610 | 	} | 
 | 1611 | 	return 1; | 
 | 1612 | out_bug: | 
 | 1613 | 	if (!debug_locks_off_graph_unlock()) | 
 | 1614 | 		return 0; | 
 | 1615 |  | 
 | 1616 | 	WARN_ON(1); | 
 | 1617 |  | 
 | 1618 | 	return 0; | 
 | 1619 | } | 
 | 1620 |  | 
 | 1621 | unsigned long nr_lock_chains; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1622 | struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS]; | 
| Huang, Ying | cd1a28e | 2008-06-23 11:20:54 +0800 | [diff] [blame] | 1623 | int nr_chain_hlocks; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1624 | static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS]; | 
 | 1625 |  | 
 | 1626 | struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i) | 
 | 1627 | { | 
 | 1628 | 	return lock_classes + chain_hlocks[chain->base + i]; | 
 | 1629 | } | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1630 |  | 
 | 1631 | /* | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1632 |  * Look up a dependency chain. If the key is not present yet then | 
| Jarek Poplawski | 9e860d0 | 2007-05-08 00:30:12 -0700 | [diff] [blame] | 1633 |  * add it and return 1 - in this case the new dependency chain is | 
 | 1634 |  * validated. If the key is already hashed, return 0. | 
 | 1635 |  * (On return with 1 graph_lock is held.) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1636 |  */ | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1637 | static inline int lookup_chain_cache(struct task_struct *curr, | 
 | 1638 | 				     struct held_lock *hlock, | 
 | 1639 | 				     u64 chain_key) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1640 | { | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1641 | 	struct lock_class *class = hlock_class(hlock); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1642 | 	struct list_head *hash_head = chainhashentry(chain_key); | 
 | 1643 | 	struct lock_chain *chain; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1644 | 	struct held_lock *hlock_curr, *hlock_next; | 
| Huang, Ying | cd1a28e | 2008-06-23 11:20:54 +0800 | [diff] [blame] | 1645 | 	int i, j, n, cn; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1646 |  | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 1647 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 1648 | 		return 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1649 | 	/* | 
 | 1650 | 	 * We can walk it lock-free, because entries only get added | 
 | 1651 | 	 * to the hash: | 
 | 1652 | 	 */ | 
 | 1653 | 	list_for_each_entry(chain, hash_head, entry) { | 
 | 1654 | 		if (chain->chain_key == chain_key) { | 
 | 1655 | cache_hit: | 
 | 1656 | 			debug_atomic_inc(&chain_lookup_hits); | 
| Ingo Molnar | 81fc685 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 1657 | 			if (very_verbose(class)) | 
| Andrew Morton | 755cd90 | 2006-12-29 16:49:14 -0800 | [diff] [blame] | 1658 | 				printk("\nhash chain already cached, key: " | 
 | 1659 | 					"%016Lx tail class: [%p] %s\n", | 
 | 1660 | 					(unsigned long long)chain_key, | 
 | 1661 | 					class->key, class->name); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1662 | 			return 0; | 
 | 1663 | 		} | 
 | 1664 | 	} | 
| Ingo Molnar | 81fc685 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 1665 | 	if (very_verbose(class)) | 
| Andrew Morton | 755cd90 | 2006-12-29 16:49:14 -0800 | [diff] [blame] | 1666 | 		printk("\nnew hash chain, key: %016Lx tail class: [%p] %s\n", | 
 | 1667 | 			(unsigned long long)chain_key, class->key, class->name); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1668 | 	/* | 
 | 1669 | 	 * Allocate a new chain entry from the static array, and add | 
 | 1670 | 	 * it to the hash: | 
 | 1671 | 	 */ | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 1672 | 	if (!graph_lock()) | 
 | 1673 | 		return 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1674 | 	/* | 
 | 1675 | 	 * We have to walk the chain again locked - to avoid duplicates: | 
 | 1676 | 	 */ | 
 | 1677 | 	list_for_each_entry(chain, hash_head, entry) { | 
 | 1678 | 		if (chain->chain_key == chain_key) { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 1679 | 			graph_unlock(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1680 | 			goto cache_hit; | 
 | 1681 | 		} | 
 | 1682 | 	} | 
 | 1683 | 	if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 1684 | 		if (!debug_locks_off_graph_unlock()) | 
 | 1685 | 			return 0; | 
 | 1686 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1687 | 		printk("BUG: MAX_LOCKDEP_CHAINS too low!\n"); | 
 | 1688 | 		printk("turning off the locking correctness validator.\n"); | 
| Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 1689 | 		dump_stack(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1690 | 		return 0; | 
 | 1691 | 	} | 
 | 1692 | 	chain = lock_chains + nr_lock_chains++; | 
 | 1693 | 	chain->chain_key = chain_key; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1694 | 	chain->irq_context = hlock->irq_context; | 
 | 1695 | 	/* Find the first held_lock of current chain */ | 
 | 1696 | 	hlock_next = hlock; | 
 | 1697 | 	for (i = curr->lockdep_depth - 1; i >= 0; i--) { | 
 | 1698 | 		hlock_curr = curr->held_locks + i; | 
 | 1699 | 		if (hlock_curr->irq_context != hlock_next->irq_context) | 
 | 1700 | 			break; | 
 | 1701 | 		hlock_next = hlock; | 
 | 1702 | 	} | 
 | 1703 | 	i++; | 
 | 1704 | 	chain->depth = curr->lockdep_depth + 1 - i; | 
| Huang, Ying | cd1a28e | 2008-06-23 11:20:54 +0800 | [diff] [blame] | 1705 | 	cn = nr_chain_hlocks; | 
 | 1706 | 	while (cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS) { | 
 | 1707 | 		n = cmpxchg(&nr_chain_hlocks, cn, cn + chain->depth); | 
 | 1708 | 		if (n == cn) | 
 | 1709 | 			break; | 
 | 1710 | 		cn = n; | 
 | 1711 | 	} | 
 | 1712 | 	if (likely(cn + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) { | 
 | 1713 | 		chain->base = cn; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1714 | 		for (j = 0; j < chain->depth - 1; j++, i++) { | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1715 | 			int lock_id = curr->held_locks[i].class_idx - 1; | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1716 | 			chain_hlocks[chain->base + j] = lock_id; | 
 | 1717 | 		} | 
 | 1718 | 		chain_hlocks[chain->base + j] = class - lock_classes; | 
 | 1719 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1720 | 	list_add_tail_rcu(&chain->entry, hash_head); | 
 | 1721 | 	debug_atomic_inc(&chain_lookup_misses); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1722 | 	inc_chains(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1723 |  | 
 | 1724 | 	return 1; | 
 | 1725 | } | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1726 |  | 
 | 1727 | static int validate_chain(struct task_struct *curr, struct lockdep_map *lock, | 
| Johannes Berg | 4e6045f | 2007-10-18 23:39:55 -0700 | [diff] [blame] | 1728 | 		struct held_lock *hlock, int chain_head, u64 chain_key) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1729 | { | 
 | 1730 | 	/* | 
 | 1731 | 	 * Trylock needs to maintain the stack of held locks, but it | 
 | 1732 | 	 * does not add new dependencies, because trylock can be done | 
 | 1733 | 	 * in any order. | 
 | 1734 | 	 * | 
 | 1735 | 	 * We look up the chain_key and do the O(N^2) check and update of | 
 | 1736 | 	 * the dependencies only if this is a new dependency chain. | 
 | 1737 | 	 * (If lookup_chain_cache() returns with 1 it acquires | 
 | 1738 | 	 * graph_lock for us) | 
 | 1739 | 	 */ | 
 | 1740 | 	if (!hlock->trylock && (hlock->check == 2) && | 
| Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 1741 | 	    lookup_chain_cache(curr, hlock, chain_key)) { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1742 | 		/* | 
 | 1743 | 		 * Check whether last held lock: | 
 | 1744 | 		 * | 
 | 1745 | 		 * - is irq-safe, if this lock is irq-unsafe | 
 | 1746 | 		 * - is softirq-safe, if this lock is hardirq-unsafe | 
 | 1747 | 		 * | 
 | 1748 | 		 * And check whether the new lock's dependency graph | 
 | 1749 | 		 * could lead back to the previous lock. | 
 | 1750 | 		 * | 
 | 1751 | 		 * any of these scenarios could lead to a deadlock. If | 
 | 1752 | 		 * All validations | 
 | 1753 | 		 */ | 
 | 1754 | 		int ret = check_deadlock(curr, hlock, lock, hlock->read); | 
 | 1755 |  | 
 | 1756 | 		if (!ret) | 
 | 1757 | 			return 0; | 
 | 1758 | 		/* | 
 | 1759 | 		 * Mark recursive read, as we jump over it when | 
 | 1760 | 		 * building dependencies (just like we jump over | 
 | 1761 | 		 * trylock entries): | 
 | 1762 | 		 */ | 
 | 1763 | 		if (ret == 2) | 
 | 1764 | 			hlock->read = 2; | 
 | 1765 | 		/* | 
 | 1766 | 		 * Add dependency only if this lock is not the head | 
 | 1767 | 		 * of the chain, and if it's not a secondary read-lock: | 
 | 1768 | 		 */ | 
 | 1769 | 		if (!chain_head && ret != 2) | 
 | 1770 | 			if (!check_prevs_add(curr, hlock)) | 
 | 1771 | 				return 0; | 
 | 1772 | 		graph_unlock(); | 
 | 1773 | 	} else | 
 | 1774 | 		/* after lookup_chain_cache(): */ | 
 | 1775 | 		if (unlikely(!debug_locks)) | 
 | 1776 | 			return 0; | 
 | 1777 |  | 
 | 1778 | 	return 1; | 
 | 1779 | } | 
 | 1780 | #else | 
 | 1781 | static inline int validate_chain(struct task_struct *curr, | 
 | 1782 | 	       	struct lockdep_map *lock, struct held_lock *hlock, | 
| Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 1783 | 		int chain_head, u64 chain_key) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1784 | { | 
 | 1785 | 	return 1; | 
 | 1786 | } | 
| Peter Zijlstra | ca58abc | 2007-07-19 01:48:53 -0700 | [diff] [blame] | 1787 | #endif | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1788 |  | 
 | 1789 | /* | 
 | 1790 |  * We are building curr_chain_key incrementally, so double-check | 
 | 1791 |  * it from scratch, to make sure that it's done correctly: | 
 | 1792 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 1793 | static void check_chain_key(struct task_struct *curr) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1794 | { | 
 | 1795 | #ifdef CONFIG_DEBUG_LOCKDEP | 
 | 1796 | 	struct held_lock *hlock, *prev_hlock = NULL; | 
 | 1797 | 	unsigned int i, id; | 
 | 1798 | 	u64 chain_key = 0; | 
 | 1799 |  | 
 | 1800 | 	for (i = 0; i < curr->lockdep_depth; i++) { | 
 | 1801 | 		hlock = curr->held_locks + i; | 
 | 1802 | 		if (chain_key != hlock->prev_chain_key) { | 
 | 1803 | 			debug_locks_off(); | 
| Arjan van de Ven | 2df8b1d | 2008-07-30 12:43:11 -0700 | [diff] [blame] | 1804 | 			WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n", | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1805 | 				curr->lockdep_depth, i, | 
 | 1806 | 				(unsigned long long)chain_key, | 
 | 1807 | 				(unsigned long long)hlock->prev_chain_key); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1808 | 			return; | 
 | 1809 | 		} | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1810 | 		id = hlock->class_idx - 1; | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 1811 | 		if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS)) | 
 | 1812 | 			return; | 
 | 1813 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1814 | 		if (prev_hlock && (prev_hlock->irq_context != | 
 | 1815 | 							hlock->irq_context)) | 
 | 1816 | 			chain_key = 0; | 
 | 1817 | 		chain_key = iterate_chain_key(chain_key, id); | 
 | 1818 | 		prev_hlock = hlock; | 
 | 1819 | 	} | 
 | 1820 | 	if (chain_key != curr->curr_chain_key) { | 
 | 1821 | 		debug_locks_off(); | 
| Arjan van de Ven | 2df8b1d | 2008-07-30 12:43:11 -0700 | [diff] [blame] | 1822 | 		WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n", | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1823 | 			curr->lockdep_depth, i, | 
 | 1824 | 			(unsigned long long)chain_key, | 
 | 1825 | 			(unsigned long long)curr->curr_chain_key); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1826 | 	} | 
 | 1827 | #endif | 
 | 1828 | } | 
 | 1829 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1830 | static int | 
 | 1831 | print_usage_bug(struct task_struct *curr, struct held_lock *this, | 
 | 1832 | 		enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit) | 
 | 1833 | { | 
 | 1834 | 	if (!debug_locks_off_graph_unlock() || debug_locks_silent) | 
 | 1835 | 		return 0; | 
 | 1836 |  | 
 | 1837 | 	printk("\n=================================\n"); | 
 | 1838 | 	printk(  "[ INFO: inconsistent lock state ]\n"); | 
 | 1839 | 	print_kernel_version(); | 
 | 1840 | 	printk(  "---------------------------------\n"); | 
 | 1841 |  | 
 | 1842 | 	printk("inconsistent {%s} -> {%s} usage.\n", | 
 | 1843 | 		usage_str[prev_bit], usage_str[new_bit]); | 
 | 1844 |  | 
 | 1845 | 	printk("%s/%d [HC%u[%lu]:SC%u[%lu]:HE%u:SE%u] takes:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1846 | 		curr->comm, task_pid_nr(curr), | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1847 | 		trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT, | 
 | 1848 | 		trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT, | 
 | 1849 | 		trace_hardirqs_enabled(curr), | 
 | 1850 | 		trace_softirqs_enabled(curr)); | 
 | 1851 | 	print_lock(this); | 
 | 1852 |  | 
 | 1853 | 	printk("{%s} state was registered at:\n", usage_str[prev_bit]); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1854 | 	print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1); | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1855 |  | 
 | 1856 | 	print_irqtrace_events(curr); | 
 | 1857 | 	printk("\nother info that might help us debug this:\n"); | 
 | 1858 | 	lockdep_print_held_locks(curr); | 
 | 1859 |  | 
 | 1860 | 	printk("\nstack backtrace:\n"); | 
 | 1861 | 	dump_stack(); | 
 | 1862 |  | 
 | 1863 | 	return 0; | 
 | 1864 | } | 
 | 1865 |  | 
 | 1866 | /* | 
 | 1867 |  * Print out an error if an invalid bit is set: | 
 | 1868 |  */ | 
 | 1869 | static inline int | 
 | 1870 | valid_state(struct task_struct *curr, struct held_lock *this, | 
 | 1871 | 	    enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit) | 
 | 1872 | { | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1873 | 	if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit))) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1874 | 		return print_usage_bug(curr, this, bad_bit, new_bit); | 
 | 1875 | 	return 1; | 
 | 1876 | } | 
 | 1877 |  | 
 | 1878 | static int mark_lock(struct task_struct *curr, struct held_lock *this, | 
 | 1879 | 		     enum lock_usage_bit new_bit); | 
 | 1880 |  | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1881 | #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1882 |  | 
 | 1883 | /* | 
 | 1884 |  * print irq inversion bug: | 
 | 1885 |  */ | 
 | 1886 | static int | 
 | 1887 | print_irq_inversion_bug(struct task_struct *curr, struct lock_class *other, | 
 | 1888 | 			struct held_lock *this, int forwards, | 
 | 1889 | 			const char *irqclass) | 
 | 1890 | { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 1891 | 	if (!debug_locks_off_graph_unlock() || debug_locks_silent) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1892 | 		return 0; | 
 | 1893 |  | 
 | 1894 | 	printk("\n=========================================================\n"); | 
 | 1895 | 	printk(  "[ INFO: possible irq lock inversion dependency detected ]\n"); | 
| Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 1896 | 	print_kernel_version(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1897 | 	printk(  "---------------------------------------------------------\n"); | 
 | 1898 | 	printk("%s/%d just changed the state of lock:\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1899 | 		curr->comm, task_pid_nr(curr)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1900 | 	print_lock(this); | 
 | 1901 | 	if (forwards) | 
| Peter Zijlstra | 26575e2 | 2009-03-04 14:53:24 +0100 | [diff] [blame] | 1902 | 		printk("but this lock took another, %s-unsafe lock in the past:\n", irqclass); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1903 | 	else | 
| Peter Zijlstra | 26575e2 | 2009-03-04 14:53:24 +0100 | [diff] [blame] | 1904 | 		printk("but this lock was taken by another, %s-safe lock in the past:\n", irqclass); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1905 | 	print_lock_name(other); | 
 | 1906 | 	printk("\n\nand interrupts could create inverse lock ordering between them.\n\n"); | 
 | 1907 |  | 
 | 1908 | 	printk("\nother info that might help us debug this:\n"); | 
 | 1909 | 	lockdep_print_held_locks(curr); | 
 | 1910 |  | 
 | 1911 | 	printk("\nthe first lock's dependencies:\n"); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1912 | 	print_lock_dependencies(hlock_class(this), 0); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1913 |  | 
 | 1914 | 	printk("\nthe second lock's dependencies:\n"); | 
 | 1915 | 	print_lock_dependencies(other, 0); | 
 | 1916 |  | 
 | 1917 | 	printk("\nstack backtrace:\n"); | 
 | 1918 | 	dump_stack(); | 
 | 1919 |  | 
 | 1920 | 	return 0; | 
 | 1921 | } | 
 | 1922 |  | 
 | 1923 | /* | 
 | 1924 |  * Prove that in the forwards-direction subgraph starting at <this> | 
 | 1925 |  * there is no lock matching <mask>: | 
 | 1926 |  */ | 
 | 1927 | static int | 
 | 1928 | check_usage_forwards(struct task_struct *curr, struct held_lock *this, | 
 | 1929 | 		     enum lock_usage_bit bit, const char *irqclass) | 
 | 1930 | { | 
 | 1931 | 	int ret; | 
 | 1932 |  | 
 | 1933 | 	find_usage_bit = bit; | 
 | 1934 | 	/* fills in <forwards_match> */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1935 | 	ret = find_usage_forwards(hlock_class(this), 0); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1936 | 	if (!ret || ret == 1) | 
 | 1937 | 		return ret; | 
 | 1938 |  | 
 | 1939 | 	return print_irq_inversion_bug(curr, forwards_match, this, 1, irqclass); | 
 | 1940 | } | 
 | 1941 |  | 
 | 1942 | /* | 
 | 1943 |  * Prove that in the backwards-direction subgraph starting at <this> | 
 | 1944 |  * there is no lock matching <mask>: | 
 | 1945 |  */ | 
 | 1946 | static int | 
 | 1947 | check_usage_backwards(struct task_struct *curr, struct held_lock *this, | 
 | 1948 | 		      enum lock_usage_bit bit, const char *irqclass) | 
 | 1949 | { | 
 | 1950 | 	int ret; | 
 | 1951 |  | 
 | 1952 | 	find_usage_bit = bit; | 
 | 1953 | 	/* fills in <backwards_match> */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1954 | 	ret = find_usage_backwards(hlock_class(this), 0); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1955 | 	if (!ret || ret == 1) | 
 | 1956 | 		return ret; | 
 | 1957 |  | 
 | 1958 | 	return print_irq_inversion_bug(curr, backwards_match, this, 0, irqclass); | 
 | 1959 | } | 
 | 1960 |  | 
| Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 1961 | void print_irqtrace_events(struct task_struct *curr) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1962 | { | 
 | 1963 | 	printk("irq event stamp: %u\n", curr->irq_events); | 
 | 1964 | 	printk("hardirqs last  enabled at (%u): ", curr->hardirq_enable_event); | 
 | 1965 | 	print_ip_sym(curr->hardirq_enable_ip); | 
 | 1966 | 	printk("hardirqs last disabled at (%u): ", curr->hardirq_disable_event); | 
 | 1967 | 	print_ip_sym(curr->hardirq_disable_ip); | 
 | 1968 | 	printk("softirqs last  enabled at (%u): ", curr->softirq_enable_event); | 
 | 1969 | 	print_ip_sym(curr->softirq_enable_ip); | 
 | 1970 | 	printk("softirqs last disabled at (%u): ", curr->softirq_disable_event); | 
 | 1971 | 	print_ip_sym(curr->softirq_disable_ip); | 
 | 1972 | } | 
 | 1973 |  | 
| Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 1974 | static int HARDIRQ_verbose(struct lock_class *class) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1975 | { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1976 | #if HARDIRQ_VERBOSE | 
 | 1977 | 	return class_filter(class); | 
 | 1978 | #endif | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1979 | 	return 0; | 
 | 1980 | } | 
 | 1981 |  | 
| Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 1982 | static int SOFTIRQ_verbose(struct lock_class *class) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1983 | { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1984 | #if SOFTIRQ_VERBOSE | 
 | 1985 | 	return class_filter(class); | 
 | 1986 | #endif | 
 | 1987 | 	return 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1988 | } | 
 | 1989 |  | 
| Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 1990 | static int RECLAIM_FS_verbose(struct lock_class *class) | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 1991 | { | 
 | 1992 | #if RECLAIM_VERBOSE | 
 | 1993 | 	return class_filter(class); | 
 | 1994 | #endif | 
 | 1995 | 	return 0; | 
 | 1996 | } | 
 | 1997 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 1998 | #define STRICT_READ_CHECKS	1 | 
 | 1999 |  | 
| Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2000 | static int (*state_verbose_f[])(struct lock_class *class) = { | 
 | 2001 | #define LOCKDEP_STATE(__STATE) \ | 
 | 2002 | 	__STATE##_verbose, | 
 | 2003 | #include "lockdep_states.h" | 
 | 2004 | #undef LOCKDEP_STATE | 
 | 2005 | }; | 
 | 2006 |  | 
 | 2007 | static inline int state_verbose(enum lock_usage_bit bit, | 
 | 2008 | 				struct lock_class *class) | 
 | 2009 | { | 
 | 2010 | 	return state_verbose_f[bit >> 2](class); | 
 | 2011 | } | 
 | 2012 |  | 
| Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2013 | typedef int (*check_usage_f)(struct task_struct *, struct held_lock *, | 
 | 2014 | 			     enum lock_usage_bit bit, const char *name); | 
 | 2015 |  | 
| Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2016 | static int | 
| Peter Zijlstra | 1c21f14 | 2009-03-04 13:51:13 +0100 | [diff] [blame] | 2017 | mark_lock_irq(struct task_struct *curr, struct held_lock *this, | 
 | 2018 | 		enum lock_usage_bit new_bit) | 
| Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2019 | { | 
| Peter Zijlstra | f989209 | 2009-01-22 16:09:59 +0100 | [diff] [blame] | 2020 | 	int excl_bit = exclusive_bit(new_bit); | 
| Peter Zijlstra | 9d3651a | 2009-01-22 17:18:32 +0100 | [diff] [blame] | 2021 | 	int read = new_bit & 1; | 
| Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2022 | 	int dir = new_bit & 2; | 
 | 2023 |  | 
| Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2024 | 	/* | 
 | 2025 | 	 * mark USED_IN has to look forwards -- to ensure no dependency | 
 | 2026 | 	 * has ENABLED state, which would allow recursion deadlocks. | 
 | 2027 | 	 * | 
 | 2028 | 	 * mark ENABLED has to look backwards -- to ensure no dependee | 
 | 2029 | 	 * has USED_IN state, which, again, would allow  recursion deadlocks. | 
 | 2030 | 	 */ | 
| Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2031 | 	check_usage_f usage = dir ? | 
 | 2032 | 		check_usage_backwards : check_usage_forwards; | 
| Peter Zijlstra | f989209 | 2009-01-22 16:09:59 +0100 | [diff] [blame] | 2033 |  | 
| Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2034 | 	/* | 
 | 2035 | 	 * Validate that this particular lock does not have conflicting | 
 | 2036 | 	 * usage states. | 
 | 2037 | 	 */ | 
| Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2038 | 	if (!valid_state(curr, this, new_bit, excl_bit)) | 
 | 2039 | 		return 0; | 
| Peter Zijlstra | 9d3651a | 2009-01-22 17:18:32 +0100 | [diff] [blame] | 2040 |  | 
| Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2041 | 	/* | 
 | 2042 | 	 * Validate that the lock dependencies don't have conflicting usage | 
 | 2043 | 	 * states. | 
 | 2044 | 	 */ | 
 | 2045 | 	if ((!read || !dir || STRICT_READ_CHECKS) && | 
| Peter Zijlstra | 1c21f14 | 2009-03-04 13:51:13 +0100 | [diff] [blame] | 2046 | 			!usage(curr, this, excl_bit, state_name(new_bit & ~1))) | 
| Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2047 | 		return 0; | 
| Peter Zijlstra | 780e820 | 2009-01-22 16:51:29 +0100 | [diff] [blame] | 2048 |  | 
| Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2049 | 	/* | 
 | 2050 | 	 * Check for read in write conflicts | 
 | 2051 | 	 */ | 
 | 2052 | 	if (!read) { | 
 | 2053 | 		if (!valid_state(curr, this, new_bit, excl_bit + 1)) | 
 | 2054 | 			return 0; | 
 | 2055 |  | 
 | 2056 | 		if (STRICT_READ_CHECKS && | 
| Peter Zijlstra | 4f367d8 | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 2057 | 			!usage(curr, this, excl_bit + 1, | 
 | 2058 | 				state_name(new_bit + 1))) | 
| Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2059 | 			return 0; | 
 | 2060 | 	} | 
| Peter Zijlstra | 780e820 | 2009-01-22 16:51:29 +0100 | [diff] [blame] | 2061 |  | 
| Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2062 | 	if (state_verbose(new_bit, hlock_class(this))) | 
| Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2063 | 		return 2; | 
 | 2064 |  | 
 | 2065 | 	return 1; | 
 | 2066 | } | 
 | 2067 |  | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2068 | enum mark_type { | 
| Peter Zijlstra | 36bfb9b | 2009-01-22 14:12:41 +0100 | [diff] [blame] | 2069 | #define LOCKDEP_STATE(__STATE)	__STATE, | 
 | 2070 | #include "lockdep_states.h" | 
 | 2071 | #undef LOCKDEP_STATE | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2072 | }; | 
 | 2073 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2074 | /* | 
 | 2075 |  * Mark all held locks with a usage bit: | 
 | 2076 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2077 | static int | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2078 | mark_held_locks(struct task_struct *curr, enum mark_type mark) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2079 | { | 
 | 2080 | 	enum lock_usage_bit usage_bit; | 
 | 2081 | 	struct held_lock *hlock; | 
 | 2082 | 	int i; | 
 | 2083 |  | 
 | 2084 | 	for (i = 0; i < curr->lockdep_depth; i++) { | 
 | 2085 | 		hlock = curr->held_locks + i; | 
 | 2086 |  | 
| Peter Zijlstra | cf2ad4d | 2009-01-27 13:58:08 +0100 | [diff] [blame] | 2087 | 		usage_bit = 2 + (mark << 2); /* ENABLED */ | 
 | 2088 | 		if (hlock->read) | 
 | 2089 | 			usage_bit += 1; /* READ */ | 
 | 2090 |  | 
 | 2091 | 		BUG_ON(usage_bit >= LOCK_USAGE_STATES); | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2092 |  | 
| Jarek Poplawski | 4ff773bb | 2007-05-08 00:31:00 -0700 | [diff] [blame] | 2093 | 		if (!mark_lock(curr, hlock, usage_bit)) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2094 | 			return 0; | 
 | 2095 | 	} | 
 | 2096 |  | 
 | 2097 | 	return 1; | 
 | 2098 | } | 
 | 2099 |  | 
 | 2100 | /* | 
 | 2101 |  * Debugging helper: via this flag we know that we are in | 
 | 2102 |  * 'early bootup code', and will warn about any invalid irqs-on event: | 
 | 2103 |  */ | 
 | 2104 | static int early_boot_irqs_enabled; | 
 | 2105 |  | 
 | 2106 | void early_boot_irqs_off(void) | 
 | 2107 | { | 
 | 2108 | 	early_boot_irqs_enabled = 0; | 
 | 2109 | } | 
 | 2110 |  | 
 | 2111 | void early_boot_irqs_on(void) | 
 | 2112 | { | 
 | 2113 | 	early_boot_irqs_enabled = 1; | 
 | 2114 | } | 
 | 2115 |  | 
 | 2116 | /* | 
 | 2117 |  * Hardirqs will be enabled: | 
 | 2118 |  */ | 
| Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2119 | void trace_hardirqs_on_caller(unsigned long ip) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2120 | { | 
 | 2121 | 	struct task_struct *curr = current; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2122 |  | 
| Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2123 | 	time_hardirqs_on(CALLER_ADDR0, ip); | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2124 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2125 | 	if (unlikely(!debug_locks || current->lockdep_recursion)) | 
 | 2126 | 		return; | 
 | 2127 |  | 
 | 2128 | 	if (DEBUG_LOCKS_WARN_ON(unlikely(!early_boot_irqs_enabled))) | 
 | 2129 | 		return; | 
 | 2130 |  | 
 | 2131 | 	if (unlikely(curr->hardirqs_enabled)) { | 
 | 2132 | 		debug_atomic_inc(&redundant_hardirqs_on); | 
 | 2133 | 		return; | 
 | 2134 | 	} | 
 | 2135 | 	/* we'll do an OFF -> ON transition: */ | 
 | 2136 | 	curr->hardirqs_enabled = 1; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2137 |  | 
 | 2138 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2139 | 		return; | 
 | 2140 | 	if (DEBUG_LOCKS_WARN_ON(current->hardirq_context)) | 
 | 2141 | 		return; | 
 | 2142 | 	/* | 
 | 2143 | 	 * We are going to turn hardirqs on, so set the | 
 | 2144 | 	 * usage bit for all held locks: | 
 | 2145 | 	 */ | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2146 | 	if (!mark_held_locks(curr, HARDIRQ)) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2147 | 		return; | 
 | 2148 | 	/* | 
 | 2149 | 	 * If we have softirqs enabled, then set the usage | 
 | 2150 | 	 * bit for all held locks. (disabled hardirqs prevented | 
 | 2151 | 	 * this bit from being set before) | 
 | 2152 | 	 */ | 
 | 2153 | 	if (curr->softirqs_enabled) | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2154 | 		if (!mark_held_locks(curr, SOFTIRQ)) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2155 | 			return; | 
 | 2156 |  | 
 | 2157 | 	curr->hardirq_enable_ip = ip; | 
 | 2158 | 	curr->hardirq_enable_event = ++curr->irq_events; | 
 | 2159 | 	debug_atomic_inc(&hardirqs_on_events); | 
 | 2160 | } | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2161 | EXPORT_SYMBOL(trace_hardirqs_on_caller); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2162 |  | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2163 | void trace_hardirqs_on(void) | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2164 | { | 
 | 2165 | 	trace_hardirqs_on_caller(CALLER_ADDR0); | 
 | 2166 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2167 | EXPORT_SYMBOL(trace_hardirqs_on); | 
 | 2168 |  | 
 | 2169 | /* | 
 | 2170 |  * Hardirqs were disabled: | 
 | 2171 |  */ | 
| Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2172 | void trace_hardirqs_off_caller(unsigned long ip) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2173 | { | 
 | 2174 | 	struct task_struct *curr = current; | 
 | 2175 |  | 
| Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2176 | 	time_hardirqs_off(CALLER_ADDR0, ip); | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2177 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2178 | 	if (unlikely(!debug_locks || current->lockdep_recursion)) | 
 | 2179 | 		return; | 
 | 2180 |  | 
 | 2181 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2182 | 		return; | 
 | 2183 |  | 
 | 2184 | 	if (curr->hardirqs_enabled) { | 
 | 2185 | 		/* | 
 | 2186 | 		 * We have done an ON -> OFF transition: | 
 | 2187 | 		 */ | 
 | 2188 | 		curr->hardirqs_enabled = 0; | 
| Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2189 | 		curr->hardirq_disable_ip = ip; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2190 | 		curr->hardirq_disable_event = ++curr->irq_events; | 
 | 2191 | 		debug_atomic_inc(&hardirqs_off_events); | 
 | 2192 | 	} else | 
 | 2193 | 		debug_atomic_inc(&redundant_hardirqs_off); | 
 | 2194 | } | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2195 | EXPORT_SYMBOL(trace_hardirqs_off_caller); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2196 |  | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2197 | void trace_hardirqs_off(void) | 
| Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2198 | { | 
 | 2199 | 	trace_hardirqs_off_caller(CALLER_ADDR0); | 
 | 2200 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2201 | EXPORT_SYMBOL(trace_hardirqs_off); | 
 | 2202 |  | 
 | 2203 | /* | 
 | 2204 |  * Softirqs will be enabled: | 
 | 2205 |  */ | 
 | 2206 | void trace_softirqs_on(unsigned long ip) | 
 | 2207 | { | 
 | 2208 | 	struct task_struct *curr = current; | 
 | 2209 |  | 
 | 2210 | 	if (unlikely(!debug_locks)) | 
 | 2211 | 		return; | 
 | 2212 |  | 
 | 2213 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2214 | 		return; | 
 | 2215 |  | 
 | 2216 | 	if (curr->softirqs_enabled) { | 
 | 2217 | 		debug_atomic_inc(&redundant_softirqs_on); | 
 | 2218 | 		return; | 
 | 2219 | 	} | 
 | 2220 |  | 
 | 2221 | 	/* | 
 | 2222 | 	 * We'll do an OFF -> ON transition: | 
 | 2223 | 	 */ | 
 | 2224 | 	curr->softirqs_enabled = 1; | 
 | 2225 | 	curr->softirq_enable_ip = ip; | 
 | 2226 | 	curr->softirq_enable_event = ++curr->irq_events; | 
 | 2227 | 	debug_atomic_inc(&softirqs_on_events); | 
 | 2228 | 	/* | 
 | 2229 | 	 * We are going to turn softirqs on, so set the | 
 | 2230 | 	 * usage bit for all held locks, if hardirqs are | 
 | 2231 | 	 * enabled too: | 
 | 2232 | 	 */ | 
 | 2233 | 	if (curr->hardirqs_enabled) | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2234 | 		mark_held_locks(curr, SOFTIRQ); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2235 | } | 
 | 2236 |  | 
 | 2237 | /* | 
 | 2238 |  * Softirqs were disabled: | 
 | 2239 |  */ | 
 | 2240 | void trace_softirqs_off(unsigned long ip) | 
 | 2241 | { | 
 | 2242 | 	struct task_struct *curr = current; | 
 | 2243 |  | 
 | 2244 | 	if (unlikely(!debug_locks)) | 
 | 2245 | 		return; | 
 | 2246 |  | 
 | 2247 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2248 | 		return; | 
 | 2249 |  | 
 | 2250 | 	if (curr->softirqs_enabled) { | 
 | 2251 | 		/* | 
 | 2252 | 		 * We have done an ON -> OFF transition: | 
 | 2253 | 		 */ | 
 | 2254 | 		curr->softirqs_enabled = 0; | 
 | 2255 | 		curr->softirq_disable_ip = ip; | 
 | 2256 | 		curr->softirq_disable_event = ++curr->irq_events; | 
 | 2257 | 		debug_atomic_inc(&softirqs_off_events); | 
 | 2258 | 		DEBUG_LOCKS_WARN_ON(!softirq_count()); | 
 | 2259 | 	} else | 
 | 2260 | 		debug_atomic_inc(&redundant_softirqs_off); | 
 | 2261 | } | 
 | 2262 |  | 
| Peter Zijlstra | 2f85018 | 2009-03-20 11:13:20 +0100 | [diff] [blame] | 2263 | static void __lockdep_trace_alloc(gfp_t gfp_mask, unsigned long flags) | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2264 | { | 
 | 2265 | 	struct task_struct *curr = current; | 
 | 2266 |  | 
 | 2267 | 	if (unlikely(!debug_locks)) | 
 | 2268 | 		return; | 
 | 2269 |  | 
 | 2270 | 	/* no reclaim without waiting on it */ | 
 | 2271 | 	if (!(gfp_mask & __GFP_WAIT)) | 
 | 2272 | 		return; | 
 | 2273 |  | 
 | 2274 | 	/* this guy won't enter reclaim */ | 
 | 2275 | 	if ((curr->flags & PF_MEMALLOC) && !(gfp_mask & __GFP_NOMEMALLOC)) | 
 | 2276 | 		return; | 
 | 2277 |  | 
 | 2278 | 	/* We're only interested __GFP_FS allocations for now */ | 
 | 2279 | 	if (!(gfp_mask & __GFP_FS)) | 
 | 2280 | 		return; | 
 | 2281 |  | 
| Peter Zijlstra | 2f85018 | 2009-03-20 11:13:20 +0100 | [diff] [blame] | 2282 | 	if (DEBUG_LOCKS_WARN_ON(irqs_disabled_flags(flags))) | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2283 | 		return; | 
 | 2284 |  | 
 | 2285 | 	mark_held_locks(curr, RECLAIM_FS); | 
 | 2286 | } | 
 | 2287 |  | 
| Peter Zijlstra | 2f85018 | 2009-03-20 11:13:20 +0100 | [diff] [blame] | 2288 | static void check_flags(unsigned long flags); | 
 | 2289 |  | 
 | 2290 | void lockdep_trace_alloc(gfp_t gfp_mask) | 
 | 2291 | { | 
 | 2292 | 	unsigned long flags; | 
 | 2293 |  | 
 | 2294 | 	if (unlikely(current->lockdep_recursion)) | 
 | 2295 | 		return; | 
 | 2296 |  | 
 | 2297 | 	raw_local_irq_save(flags); | 
 | 2298 | 	check_flags(flags); | 
 | 2299 | 	current->lockdep_recursion = 1; | 
 | 2300 | 	__lockdep_trace_alloc(gfp_mask, flags); | 
 | 2301 | 	current->lockdep_recursion = 0; | 
 | 2302 | 	raw_local_irq_restore(flags); | 
 | 2303 | } | 
 | 2304 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2305 | static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock) | 
 | 2306 | { | 
 | 2307 | 	/* | 
 | 2308 | 	 * If non-trylock use in a hardirq or softirq context, then | 
 | 2309 | 	 * mark the lock as used in these contexts: | 
 | 2310 | 	 */ | 
 | 2311 | 	if (!hlock->trylock) { | 
 | 2312 | 		if (hlock->read) { | 
 | 2313 | 			if (curr->hardirq_context) | 
 | 2314 | 				if (!mark_lock(curr, hlock, | 
 | 2315 | 						LOCK_USED_IN_HARDIRQ_READ)) | 
 | 2316 | 					return 0; | 
 | 2317 | 			if (curr->softirq_context) | 
 | 2318 | 				if (!mark_lock(curr, hlock, | 
 | 2319 | 						LOCK_USED_IN_SOFTIRQ_READ)) | 
 | 2320 | 					return 0; | 
 | 2321 | 		} else { | 
 | 2322 | 			if (curr->hardirq_context) | 
 | 2323 | 				if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ)) | 
 | 2324 | 					return 0; | 
 | 2325 | 			if (curr->softirq_context) | 
 | 2326 | 				if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ)) | 
 | 2327 | 					return 0; | 
 | 2328 | 		} | 
 | 2329 | 	} | 
 | 2330 | 	if (!hlock->hardirqs_off) { | 
 | 2331 | 		if (hlock->read) { | 
 | 2332 | 			if (!mark_lock(curr, hlock, | 
| Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 2333 | 					LOCK_ENABLED_HARDIRQ_READ)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2334 | 				return 0; | 
 | 2335 | 			if (curr->softirqs_enabled) | 
 | 2336 | 				if (!mark_lock(curr, hlock, | 
| Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 2337 | 						LOCK_ENABLED_SOFTIRQ_READ)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2338 | 					return 0; | 
 | 2339 | 		} else { | 
 | 2340 | 			if (!mark_lock(curr, hlock, | 
| Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 2341 | 					LOCK_ENABLED_HARDIRQ)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2342 | 				return 0; | 
 | 2343 | 			if (curr->softirqs_enabled) | 
 | 2344 | 				if (!mark_lock(curr, hlock, | 
| Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 2345 | 						LOCK_ENABLED_SOFTIRQ)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2346 | 					return 0; | 
 | 2347 | 		} | 
 | 2348 | 	} | 
 | 2349 |  | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2350 | 	/* | 
 | 2351 | 	 * We reuse the irq context infrastructure more broadly as a general | 
 | 2352 | 	 * context checking code. This tests GFP_FS recursion (a lock taken | 
 | 2353 | 	 * during reclaim for a GFP_FS allocation is held over a GFP_FS | 
 | 2354 | 	 * allocation). | 
 | 2355 | 	 */ | 
 | 2356 | 	if (!hlock->trylock && (curr->lockdep_reclaim_gfp & __GFP_FS)) { | 
 | 2357 | 		if (hlock->read) { | 
 | 2358 | 			if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS_READ)) | 
 | 2359 | 					return 0; | 
 | 2360 | 		} else { | 
 | 2361 | 			if (!mark_lock(curr, hlock, LOCK_USED_IN_RECLAIM_FS)) | 
 | 2362 | 					return 0; | 
 | 2363 | 		} | 
 | 2364 | 	} | 
 | 2365 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2366 | 	return 1; | 
 | 2367 | } | 
 | 2368 |  | 
 | 2369 | static int separate_irq_context(struct task_struct *curr, | 
 | 2370 | 		struct held_lock *hlock) | 
 | 2371 | { | 
 | 2372 | 	unsigned int depth = curr->lockdep_depth; | 
 | 2373 |  | 
 | 2374 | 	/* | 
 | 2375 | 	 * Keep track of points where we cross into an interrupt context: | 
 | 2376 | 	 */ | 
 | 2377 | 	hlock->irq_context = 2*(curr->hardirq_context ? 1 : 0) + | 
 | 2378 | 				curr->softirq_context; | 
 | 2379 | 	if (depth) { | 
 | 2380 | 		struct held_lock *prev_hlock; | 
 | 2381 |  | 
 | 2382 | 		prev_hlock = curr->held_locks + depth-1; | 
 | 2383 | 		/* | 
 | 2384 | 		 * If we cross into another context, reset the | 
 | 2385 | 		 * hash key (this also prevents the checking and the | 
 | 2386 | 		 * adding of the dependency to 'prev'): | 
 | 2387 | 		 */ | 
 | 2388 | 		if (prev_hlock->irq_context != hlock->irq_context) | 
 | 2389 | 			return 1; | 
 | 2390 | 	} | 
 | 2391 | 	return 0; | 
 | 2392 | } | 
 | 2393 |  | 
 | 2394 | #else | 
 | 2395 |  | 
 | 2396 | static inline | 
 | 2397 | int mark_lock_irq(struct task_struct *curr, struct held_lock *this, | 
 | 2398 | 		enum lock_usage_bit new_bit) | 
 | 2399 | { | 
 | 2400 | 	WARN_ON(1); | 
 | 2401 | 	return 1; | 
 | 2402 | } | 
 | 2403 |  | 
 | 2404 | static inline int mark_irqflags(struct task_struct *curr, | 
 | 2405 | 		struct held_lock *hlock) | 
 | 2406 | { | 
 | 2407 | 	return 1; | 
 | 2408 | } | 
 | 2409 |  | 
 | 2410 | static inline int separate_irq_context(struct task_struct *curr, | 
 | 2411 | 		struct held_lock *hlock) | 
 | 2412 | { | 
 | 2413 | 	return 0; | 
 | 2414 | } | 
 | 2415 |  | 
| Peter Zijlstra | 868a23a | 2009-02-15 00:25:21 +0100 | [diff] [blame] | 2416 | void lockdep_trace_alloc(gfp_t gfp_mask) | 
 | 2417 | { | 
 | 2418 | } | 
 | 2419 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2420 | #endif | 
 | 2421 |  | 
 | 2422 | /* | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2423 |  * Mark a lock with a usage bit, and validate the state transition: | 
 | 2424 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2425 | static int mark_lock(struct task_struct *curr, struct held_lock *this, | 
| Steven Rostedt | 0764d23 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 2426 | 			     enum lock_usage_bit new_bit) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2427 | { | 
 | 2428 | 	unsigned int new_mask = 1 << new_bit, ret = 1; | 
 | 2429 |  | 
 | 2430 | 	/* | 
 | 2431 | 	 * If already set then do not dirty the cacheline, | 
 | 2432 | 	 * nor do any checks: | 
 | 2433 | 	 */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2434 | 	if (likely(hlock_class(this)->usage_mask & new_mask)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2435 | 		return 1; | 
 | 2436 |  | 
 | 2437 | 	if (!graph_lock()) | 
 | 2438 | 		return 0; | 
 | 2439 | 	/* | 
 | 2440 | 	 * Make sure we didnt race: | 
 | 2441 | 	 */ | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2442 | 	if (unlikely(hlock_class(this)->usage_mask & new_mask)) { | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2443 | 		graph_unlock(); | 
 | 2444 | 		return 1; | 
 | 2445 | 	} | 
 | 2446 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2447 | 	hlock_class(this)->usage_mask |= new_mask; | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2448 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2449 | 	if (!save_trace(hlock_class(this)->usage_traces + new_bit)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2450 | 		return 0; | 
 | 2451 |  | 
 | 2452 | 	switch (new_bit) { | 
| Peter Zijlstra | 5346417 | 2009-01-22 14:15:53 +0100 | [diff] [blame] | 2453 | #define LOCKDEP_STATE(__STATE)			\ | 
 | 2454 | 	case LOCK_USED_IN_##__STATE:		\ | 
 | 2455 | 	case LOCK_USED_IN_##__STATE##_READ:	\ | 
 | 2456 | 	case LOCK_ENABLED_##__STATE:		\ | 
 | 2457 | 	case LOCK_ENABLED_##__STATE##_READ: | 
 | 2458 | #include "lockdep_states.h" | 
 | 2459 | #undef LOCKDEP_STATE | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2460 | 		ret = mark_lock_irq(curr, this, new_bit); | 
 | 2461 | 		if (!ret) | 
 | 2462 | 			return 0; | 
 | 2463 | 		break; | 
 | 2464 | 	case LOCK_USED: | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2465 | 		debug_atomic_dec(&nr_unused_locks); | 
 | 2466 | 		break; | 
 | 2467 | 	default: | 
 | 2468 | 		if (!debug_locks_off_graph_unlock()) | 
 | 2469 | 			return 0; | 
 | 2470 | 		WARN_ON(1); | 
 | 2471 | 		return 0; | 
 | 2472 | 	} | 
 | 2473 |  | 
 | 2474 | 	graph_unlock(); | 
 | 2475 |  | 
 | 2476 | 	/* | 
 | 2477 | 	 * We must printk outside of the graph_lock: | 
 | 2478 | 	 */ | 
 | 2479 | 	if (ret == 2) { | 
 | 2480 | 		printk("\nmarked lock as {%s}:\n", usage_str[new_bit]); | 
 | 2481 | 		print_lock(this); | 
 | 2482 | 		print_irqtrace_events(curr); | 
 | 2483 | 		dump_stack(); | 
 | 2484 | 	} | 
 | 2485 |  | 
 | 2486 | 	return ret; | 
 | 2487 | } | 
 | 2488 |  | 
 | 2489 | /* | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2490 |  * Initialize a lock instance's lock-class mapping info: | 
 | 2491 |  */ | 
 | 2492 | void lockdep_init_map(struct lockdep_map *lock, const char *name, | 
| Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 2493 | 		      struct lock_class_key *key, int subclass) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2494 | { | 
| Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 2495 | 	lock->class_cache = NULL; | 
 | 2496 | #ifdef CONFIG_LOCK_STAT | 
 | 2497 | 	lock->cpu = raw_smp_processor_id(); | 
 | 2498 | #endif | 
 | 2499 |  | 
 | 2500 | 	if (DEBUG_LOCKS_WARN_ON(!name)) { | 
 | 2501 | 		lock->name = "NULL"; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2502 | 		return; | 
| Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 2503 | 	} | 
 | 2504 |  | 
 | 2505 | 	lock->name = name; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2506 |  | 
 | 2507 | 	if (DEBUG_LOCKS_WARN_ON(!key)) | 
 | 2508 | 		return; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2509 | 	/* | 
 | 2510 | 	 * Sanity check, the lock-class key must be persistent: | 
 | 2511 | 	 */ | 
 | 2512 | 	if (!static_obj(key)) { | 
 | 2513 | 		printk("BUG: key %p not in .data!\n", key); | 
 | 2514 | 		DEBUG_LOCKS_WARN_ON(1); | 
 | 2515 | 		return; | 
 | 2516 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2517 | 	lock->key = key; | 
| Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 2518 |  | 
 | 2519 | 	if (unlikely(!debug_locks)) | 
 | 2520 | 		return; | 
 | 2521 |  | 
| Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 2522 | 	if (subclass) | 
 | 2523 | 		register_lock_class(lock, subclass, 1); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2524 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2525 | EXPORT_SYMBOL_GPL(lockdep_init_map); | 
 | 2526 |  | 
 | 2527 | /* | 
 | 2528 |  * This gets called for every mutex_lock*()/spin_lock*() operation. | 
 | 2529 |  * We maintain the dependency maps and validate the locking attempt: | 
 | 2530 |  */ | 
 | 2531 | static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass, | 
 | 2532 | 			  int trylock, int read, int check, int hardirqs_off, | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2533 | 			  struct lockdep_map *nest_lock, unsigned long ip) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2534 | { | 
 | 2535 | 	struct task_struct *curr = current; | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 2536 | 	struct lock_class *class = NULL; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2537 | 	struct held_lock *hlock; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2538 | 	unsigned int depth, id; | 
 | 2539 | 	int chain_head = 0; | 
 | 2540 | 	u64 chain_key; | 
 | 2541 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 2542 | 	if (!prove_locking) | 
 | 2543 | 		check = 1; | 
 | 2544 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2545 | 	if (unlikely(!debug_locks)) | 
 | 2546 | 		return 0; | 
 | 2547 |  | 
 | 2548 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2549 | 		return 0; | 
 | 2550 |  | 
 | 2551 | 	if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) { | 
 | 2552 | 		debug_locks_off(); | 
 | 2553 | 		printk("BUG: MAX_LOCKDEP_SUBCLASSES too low!\n"); | 
 | 2554 | 		printk("turning off the locking correctness validator.\n"); | 
| Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 2555 | 		dump_stack(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2556 | 		return 0; | 
 | 2557 | 	} | 
 | 2558 |  | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 2559 | 	if (!subclass) | 
 | 2560 | 		class = lock->class_cache; | 
 | 2561 | 	/* | 
 | 2562 | 	 * Not cached yet or subclass? | 
 | 2563 | 	 */ | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2564 | 	if (unlikely(!class)) { | 
| Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 2565 | 		class = register_lock_class(lock, subclass, 0); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2566 | 		if (!class) | 
 | 2567 | 			return 0; | 
 | 2568 | 	} | 
 | 2569 | 	debug_atomic_inc((atomic_t *)&class->ops); | 
 | 2570 | 	if (very_verbose(class)) { | 
 | 2571 | 		printk("\nacquire class [%p] %s", class->key, class->name); | 
 | 2572 | 		if (class->name_version > 1) | 
 | 2573 | 			printk("#%d", class->name_version); | 
 | 2574 | 		printk("\n"); | 
 | 2575 | 		dump_stack(); | 
 | 2576 | 	} | 
 | 2577 |  | 
 | 2578 | 	/* | 
 | 2579 | 	 * Add the lock to the list of currently held locks. | 
 | 2580 | 	 * (we dont increase the depth just yet, up until the | 
 | 2581 | 	 * dependency checks are done) | 
 | 2582 | 	 */ | 
 | 2583 | 	depth = curr->lockdep_depth; | 
 | 2584 | 	if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH)) | 
 | 2585 | 		return 0; | 
 | 2586 |  | 
 | 2587 | 	hlock = curr->held_locks + depth; | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2588 | 	if (DEBUG_LOCKS_WARN_ON(!class)) | 
 | 2589 | 		return 0; | 
 | 2590 | 	hlock->class_idx = class - lock_classes + 1; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2591 | 	hlock->acquire_ip = ip; | 
 | 2592 | 	hlock->instance = lock; | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2593 | 	hlock->nest_lock = nest_lock; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2594 | 	hlock->trylock = trylock; | 
 | 2595 | 	hlock->read = read; | 
 | 2596 | 	hlock->check = check; | 
| Dmitry Baryshkov | 6951b12 | 2008-08-18 04:26:37 +0400 | [diff] [blame] | 2597 | 	hlock->hardirqs_off = !!hardirqs_off; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 2598 | #ifdef CONFIG_LOCK_STAT | 
 | 2599 | 	hlock->waittime_stamp = 0; | 
 | 2600 | 	hlock->holdtime_stamp = sched_clock(); | 
 | 2601 | #endif | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2602 |  | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2603 | 	if (check == 2 && !mark_irqflags(curr, hlock)) | 
 | 2604 | 		return 0; | 
 | 2605 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2606 | 	/* mark it as used: */ | 
| Jarek Poplawski | 4ff773bb | 2007-05-08 00:31:00 -0700 | [diff] [blame] | 2607 | 	if (!mark_lock(curr, hlock, LOCK_USED)) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2608 | 		return 0; | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2609 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2610 | 	/* | 
| Gautham R Shenoy | 17aacfb | 2007-10-28 20:47:01 +0100 | [diff] [blame] | 2611 | 	 * Calculate the chain hash: it's the combined hash of all the | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2612 | 	 * lock keys along the dependency chain. We save the hash value | 
 | 2613 | 	 * at every step so that we can get the current hash easily | 
 | 2614 | 	 * after unlock. The chain hash is then used to cache dependency | 
 | 2615 | 	 * results. | 
 | 2616 | 	 * | 
 | 2617 | 	 * The 'key ID' is what is the most compact key value to drive | 
 | 2618 | 	 * the hash, not class->key. | 
 | 2619 | 	 */ | 
 | 2620 | 	id = class - lock_classes; | 
 | 2621 | 	if (DEBUG_LOCKS_WARN_ON(id >= MAX_LOCKDEP_KEYS)) | 
 | 2622 | 		return 0; | 
 | 2623 |  | 
 | 2624 | 	chain_key = curr->curr_chain_key; | 
 | 2625 | 	if (!depth) { | 
 | 2626 | 		if (DEBUG_LOCKS_WARN_ON(chain_key != 0)) | 
 | 2627 | 			return 0; | 
 | 2628 | 		chain_head = 1; | 
 | 2629 | 	} | 
 | 2630 |  | 
 | 2631 | 	hlock->prev_chain_key = chain_key; | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2632 | 	if (separate_irq_context(curr, hlock)) { | 
 | 2633 | 		chain_key = 0; | 
 | 2634 | 		chain_head = 1; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2635 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2636 | 	chain_key = iterate_chain_key(chain_key, id); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2637 |  | 
| Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 2638 | 	if (!validate_chain(curr, lock, hlock, chain_head, chain_key)) | 
| Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2639 | 		return 0; | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 2640 |  | 
| Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 2641 | 	curr->curr_chain_key = chain_key; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2642 | 	curr->lockdep_depth++; | 
 | 2643 | 	check_chain_key(curr); | 
| Jarek Poplawski | 60e114d | 2007-02-20 13:58:00 -0800 | [diff] [blame] | 2644 | #ifdef CONFIG_DEBUG_LOCKDEP | 
 | 2645 | 	if (unlikely(!debug_locks)) | 
 | 2646 | 		return 0; | 
 | 2647 | #endif | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2648 | 	if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) { | 
 | 2649 | 		debug_locks_off(); | 
 | 2650 | 		printk("BUG: MAX_LOCK_DEPTH too low!\n"); | 
 | 2651 | 		printk("turning off the locking correctness validator.\n"); | 
| Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 2652 | 		dump_stack(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2653 | 		return 0; | 
 | 2654 | 	} | 
| Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 2655 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2656 | 	if (unlikely(curr->lockdep_depth > max_lockdep_depth)) | 
 | 2657 | 		max_lockdep_depth = curr->lockdep_depth; | 
 | 2658 |  | 
 | 2659 | 	return 1; | 
 | 2660 | } | 
 | 2661 |  | 
 | 2662 | static int | 
 | 2663 | print_unlock_inbalance_bug(struct task_struct *curr, struct lockdep_map *lock, | 
 | 2664 | 			   unsigned long ip) | 
 | 2665 | { | 
 | 2666 | 	if (!debug_locks_off()) | 
 | 2667 | 		return 0; | 
 | 2668 | 	if (debug_locks_silent) | 
 | 2669 | 		return 0; | 
 | 2670 |  | 
 | 2671 | 	printk("\n=====================================\n"); | 
 | 2672 | 	printk(  "[ BUG: bad unlock balance detected! ]\n"); | 
 | 2673 | 	printk(  "-------------------------------------\n"); | 
 | 2674 | 	printk("%s/%d is trying to release lock (", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 2675 | 		curr->comm, task_pid_nr(curr)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2676 | 	print_lockdep_cache(lock); | 
 | 2677 | 	printk(") at:\n"); | 
 | 2678 | 	print_ip_sym(ip); | 
 | 2679 | 	printk("but there are no more locks to release!\n"); | 
 | 2680 | 	printk("\nother info that might help us debug this:\n"); | 
 | 2681 | 	lockdep_print_held_locks(curr); | 
 | 2682 |  | 
 | 2683 | 	printk("\nstack backtrace:\n"); | 
 | 2684 | 	dump_stack(); | 
 | 2685 |  | 
 | 2686 | 	return 0; | 
 | 2687 | } | 
 | 2688 |  | 
 | 2689 | /* | 
 | 2690 |  * Common debugging checks for both nested and non-nested unlock: | 
 | 2691 |  */ | 
 | 2692 | static int check_unlock(struct task_struct *curr, struct lockdep_map *lock, | 
 | 2693 | 			unsigned long ip) | 
 | 2694 | { | 
 | 2695 | 	if (unlikely(!debug_locks)) | 
 | 2696 | 		return 0; | 
 | 2697 | 	if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) | 
 | 2698 | 		return 0; | 
 | 2699 |  | 
 | 2700 | 	if (curr->lockdep_depth <= 0) | 
 | 2701 | 		return print_unlock_inbalance_bug(curr, lock, ip); | 
 | 2702 |  | 
 | 2703 | 	return 1; | 
 | 2704 | } | 
 | 2705 |  | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2706 | static int | 
| Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 2707 | __lock_set_class(struct lockdep_map *lock, const char *name, | 
 | 2708 | 		 struct lock_class_key *key, unsigned int subclass, | 
 | 2709 | 		 unsigned long ip) | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2710 | { | 
 | 2711 | 	struct task_struct *curr = current; | 
 | 2712 | 	struct held_lock *hlock, *prev_hlock; | 
 | 2713 | 	struct lock_class *class; | 
 | 2714 | 	unsigned int depth; | 
 | 2715 | 	int i; | 
 | 2716 |  | 
 | 2717 | 	depth = curr->lockdep_depth; | 
 | 2718 | 	if (DEBUG_LOCKS_WARN_ON(!depth)) | 
 | 2719 | 		return 0; | 
 | 2720 |  | 
 | 2721 | 	prev_hlock = NULL; | 
 | 2722 | 	for (i = depth-1; i >= 0; i--) { | 
 | 2723 | 		hlock = curr->held_locks + i; | 
 | 2724 | 		/* | 
 | 2725 | 		 * We must not cross into another context: | 
 | 2726 | 		 */ | 
 | 2727 | 		if (prev_hlock && prev_hlock->irq_context != hlock->irq_context) | 
 | 2728 | 			break; | 
 | 2729 | 		if (hlock->instance == lock) | 
 | 2730 | 			goto found_it; | 
 | 2731 | 		prev_hlock = hlock; | 
 | 2732 | 	} | 
 | 2733 | 	return print_unlock_inbalance_bug(curr, lock, ip); | 
 | 2734 |  | 
 | 2735 | found_it: | 
| Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 2736 | 	lockdep_init_map(lock, name, key, 0); | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2737 | 	class = register_lock_class(lock, subclass, 0); | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2738 | 	hlock->class_idx = class - lock_classes + 1; | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2739 |  | 
 | 2740 | 	curr->lockdep_depth = i; | 
 | 2741 | 	curr->curr_chain_key = hlock->prev_chain_key; | 
 | 2742 |  | 
 | 2743 | 	for (; i < depth; i++) { | 
 | 2744 | 		hlock = curr->held_locks + i; | 
 | 2745 | 		if (!__lock_acquire(hlock->instance, | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2746 | 			hlock_class(hlock)->subclass, hlock->trylock, | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2747 | 				hlock->read, hlock->check, hlock->hardirqs_off, | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2748 | 				hlock->nest_lock, hlock->acquire_ip)) | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2749 | 			return 0; | 
 | 2750 | 	} | 
 | 2751 |  | 
 | 2752 | 	if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth)) | 
 | 2753 | 		return 0; | 
 | 2754 | 	return 1; | 
 | 2755 | } | 
 | 2756 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2757 | /* | 
 | 2758 |  * Remove the lock to the list of currently held locks in a | 
 | 2759 |  * potentially non-nested (out of order) manner. This is a | 
 | 2760 |  * relatively rare operation, as all the unlock APIs default | 
 | 2761 |  * to nested mode (which uses lock_release()): | 
 | 2762 |  */ | 
 | 2763 | static int | 
 | 2764 | lock_release_non_nested(struct task_struct *curr, | 
 | 2765 | 			struct lockdep_map *lock, unsigned long ip) | 
 | 2766 | { | 
 | 2767 | 	struct held_lock *hlock, *prev_hlock; | 
 | 2768 | 	unsigned int depth; | 
 | 2769 | 	int i; | 
 | 2770 |  | 
 | 2771 | 	/* | 
 | 2772 | 	 * Check whether the lock exists in the current stack | 
 | 2773 | 	 * of held locks: | 
 | 2774 | 	 */ | 
 | 2775 | 	depth = curr->lockdep_depth; | 
 | 2776 | 	if (DEBUG_LOCKS_WARN_ON(!depth)) | 
 | 2777 | 		return 0; | 
 | 2778 |  | 
 | 2779 | 	prev_hlock = NULL; | 
 | 2780 | 	for (i = depth-1; i >= 0; i--) { | 
 | 2781 | 		hlock = curr->held_locks + i; | 
 | 2782 | 		/* | 
 | 2783 | 		 * We must not cross into another context: | 
 | 2784 | 		 */ | 
 | 2785 | 		if (prev_hlock && prev_hlock->irq_context != hlock->irq_context) | 
 | 2786 | 			break; | 
 | 2787 | 		if (hlock->instance == lock) | 
 | 2788 | 			goto found_it; | 
 | 2789 | 		prev_hlock = hlock; | 
 | 2790 | 	} | 
 | 2791 | 	return print_unlock_inbalance_bug(curr, lock, ip); | 
 | 2792 |  | 
 | 2793 | found_it: | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 2794 | 	lock_release_holdtime(hlock); | 
 | 2795 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2796 | 	/* | 
 | 2797 | 	 * We have the right lock to unlock, 'hlock' points to it. | 
 | 2798 | 	 * Now we remove it from the stack, and add back the other | 
 | 2799 | 	 * entries (if any), recalculating the hash along the way: | 
 | 2800 | 	 */ | 
 | 2801 | 	curr->lockdep_depth = i; | 
 | 2802 | 	curr->curr_chain_key = hlock->prev_chain_key; | 
 | 2803 |  | 
 | 2804 | 	for (i++; i < depth; i++) { | 
 | 2805 | 		hlock = curr->held_locks + i; | 
 | 2806 | 		if (!__lock_acquire(hlock->instance, | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2807 | 			hlock_class(hlock)->subclass, hlock->trylock, | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2808 | 				hlock->read, hlock->check, hlock->hardirqs_off, | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2809 | 				hlock->nest_lock, hlock->acquire_ip)) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2810 | 			return 0; | 
 | 2811 | 	} | 
 | 2812 |  | 
 | 2813 | 	if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1)) | 
 | 2814 | 		return 0; | 
 | 2815 | 	return 1; | 
 | 2816 | } | 
 | 2817 |  | 
 | 2818 | /* | 
 | 2819 |  * Remove the lock to the list of currently held locks - this gets | 
 | 2820 |  * called on mutex_unlock()/spin_unlock*() (or on a failed | 
 | 2821 |  * mutex_lock_interruptible()). This is done for unlocks that nest | 
 | 2822 |  * perfectly. (i.e. the current top of the lock-stack is unlocked) | 
 | 2823 |  */ | 
 | 2824 | static int lock_release_nested(struct task_struct *curr, | 
 | 2825 | 			       struct lockdep_map *lock, unsigned long ip) | 
 | 2826 | { | 
 | 2827 | 	struct held_lock *hlock; | 
 | 2828 | 	unsigned int depth; | 
 | 2829 |  | 
 | 2830 | 	/* | 
 | 2831 | 	 * Pop off the top of the lock stack: | 
 | 2832 | 	 */ | 
 | 2833 | 	depth = curr->lockdep_depth - 1; | 
 | 2834 | 	hlock = curr->held_locks + depth; | 
 | 2835 |  | 
 | 2836 | 	/* | 
 | 2837 | 	 * Is the unlock non-nested: | 
 | 2838 | 	 */ | 
 | 2839 | 	if (hlock->instance != lock) | 
 | 2840 | 		return lock_release_non_nested(curr, lock, ip); | 
 | 2841 | 	curr->lockdep_depth--; | 
 | 2842 |  | 
 | 2843 | 	if (DEBUG_LOCKS_WARN_ON(!depth && (hlock->prev_chain_key != 0))) | 
 | 2844 | 		return 0; | 
 | 2845 |  | 
 | 2846 | 	curr->curr_chain_key = hlock->prev_chain_key; | 
 | 2847 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 2848 | 	lock_release_holdtime(hlock); | 
 | 2849 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2850 | #ifdef CONFIG_DEBUG_LOCKDEP | 
 | 2851 | 	hlock->prev_chain_key = 0; | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2852 | 	hlock->class_idx = 0; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2853 | 	hlock->acquire_ip = 0; | 
 | 2854 | 	hlock->irq_context = 0; | 
 | 2855 | #endif | 
 | 2856 | 	return 1; | 
 | 2857 | } | 
 | 2858 |  | 
 | 2859 | /* | 
 | 2860 |  * Remove the lock to the list of currently held locks - this gets | 
 | 2861 |  * called on mutex_unlock()/spin_unlock*() (or on a failed | 
 | 2862 |  * mutex_lock_interruptible()). This is done for unlocks that nest | 
 | 2863 |  * perfectly. (i.e. the current top of the lock-stack is unlocked) | 
 | 2864 |  */ | 
 | 2865 | static void | 
 | 2866 | __lock_release(struct lockdep_map *lock, int nested, unsigned long ip) | 
 | 2867 | { | 
 | 2868 | 	struct task_struct *curr = current; | 
 | 2869 |  | 
 | 2870 | 	if (!check_unlock(curr, lock, ip)) | 
 | 2871 | 		return; | 
 | 2872 |  | 
 | 2873 | 	if (nested) { | 
 | 2874 | 		if (!lock_release_nested(curr, lock, ip)) | 
 | 2875 | 			return; | 
 | 2876 | 	} else { | 
 | 2877 | 		if (!lock_release_non_nested(curr, lock, ip)) | 
 | 2878 | 			return; | 
 | 2879 | 	} | 
 | 2880 |  | 
 | 2881 | 	check_chain_key(curr); | 
 | 2882 | } | 
 | 2883 |  | 
 | 2884 | /* | 
 | 2885 |  * Check whether we follow the irq-flags state precisely: | 
 | 2886 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2887 | static void check_flags(unsigned long flags) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2888 | { | 
| Ingo Molnar | 992860e | 2008-07-14 10:28:38 +0200 | [diff] [blame] | 2889 | #if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \ | 
 | 2890 |     defined(CONFIG_TRACE_IRQFLAGS) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2891 | 	if (!debug_locks) | 
 | 2892 | 		return; | 
 | 2893 |  | 
| Ingo Molnar | 5f9fa8a | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 2894 | 	if (irqs_disabled_flags(flags)) { | 
 | 2895 | 		if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) { | 
 | 2896 | 			printk("possible reason: unannotated irqs-off.\n"); | 
 | 2897 | 		} | 
 | 2898 | 	} else { | 
 | 2899 | 		if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) { | 
 | 2900 | 			printk("possible reason: unannotated irqs-on.\n"); | 
 | 2901 | 		} | 
 | 2902 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2903 |  | 
 | 2904 | 	/* | 
 | 2905 | 	 * We dont accurately track softirq state in e.g. | 
 | 2906 | 	 * hardirq contexts (such as on 4KSTACKS), so only | 
 | 2907 | 	 * check if not in hardirq contexts: | 
 | 2908 | 	 */ | 
 | 2909 | 	if (!hardirq_count()) { | 
 | 2910 | 		if (softirq_count()) | 
 | 2911 | 			DEBUG_LOCKS_WARN_ON(current->softirqs_enabled); | 
 | 2912 | 		else | 
 | 2913 | 			DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled); | 
 | 2914 | 	} | 
 | 2915 |  | 
 | 2916 | 	if (!debug_locks) | 
 | 2917 | 		print_irqtrace_events(current); | 
 | 2918 | #endif | 
 | 2919 | } | 
 | 2920 |  | 
| Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 2921 | void lock_set_class(struct lockdep_map *lock, const char *name, | 
 | 2922 | 		    struct lock_class_key *key, unsigned int subclass, | 
 | 2923 | 		    unsigned long ip) | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2924 | { | 
 | 2925 | 	unsigned long flags; | 
 | 2926 |  | 
 | 2927 | 	if (unlikely(current->lockdep_recursion)) | 
 | 2928 | 		return; | 
 | 2929 |  | 
 | 2930 | 	raw_local_irq_save(flags); | 
 | 2931 | 	current->lockdep_recursion = 1; | 
 | 2932 | 	check_flags(flags); | 
| Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 2933 | 	if (__lock_set_class(lock, name, key, subclass, ip)) | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2934 | 		check_chain_key(current); | 
 | 2935 | 	current->lockdep_recursion = 0; | 
 | 2936 | 	raw_local_irq_restore(flags); | 
 | 2937 | } | 
| Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 2938 | EXPORT_SYMBOL_GPL(lock_set_class); | 
| Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 2939 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2940 | /* | 
 | 2941 |  * We are not always called with irqs disabled - do that here, | 
 | 2942 |  * and also avoid lockdep recursion: | 
 | 2943 |  */ | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2944 | void lock_acquire(struct lockdep_map *lock, unsigned int subclass, | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2945 | 			  int trylock, int read, int check, | 
 | 2946 | 			  struct lockdep_map *nest_lock, unsigned long ip) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2947 | { | 
 | 2948 | 	unsigned long flags; | 
 | 2949 |  | 
| Peter Zijlstra | efed792 | 2009-03-04 12:32:55 +0100 | [diff] [blame] | 2950 | 	trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip); | 
 | 2951 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2952 | 	if (unlikely(current->lockdep_recursion)) | 
 | 2953 | 		return; | 
 | 2954 |  | 
 | 2955 | 	raw_local_irq_save(flags); | 
 | 2956 | 	check_flags(flags); | 
 | 2957 |  | 
 | 2958 | 	current->lockdep_recursion = 1; | 
 | 2959 | 	__lock_acquire(lock, subclass, trylock, read, check, | 
| Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 2960 | 		       irqs_disabled_flags(flags), nest_lock, ip); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2961 | 	current->lockdep_recursion = 0; | 
 | 2962 | 	raw_local_irq_restore(flags); | 
 | 2963 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2964 | EXPORT_SYMBOL_GPL(lock_acquire); | 
 | 2965 |  | 
| Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2966 | void lock_release(struct lockdep_map *lock, int nested, | 
| Steven Rostedt | 0764d23 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 2967 | 			  unsigned long ip) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2968 | { | 
 | 2969 | 	unsigned long flags; | 
 | 2970 |  | 
| Peter Zijlstra | efed792 | 2009-03-04 12:32:55 +0100 | [diff] [blame] | 2971 | 	trace_lock_release(lock, nested, ip); | 
 | 2972 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2973 | 	if (unlikely(current->lockdep_recursion)) | 
 | 2974 | 		return; | 
 | 2975 |  | 
 | 2976 | 	raw_local_irq_save(flags); | 
 | 2977 | 	check_flags(flags); | 
 | 2978 | 	current->lockdep_recursion = 1; | 
 | 2979 | 	__lock_release(lock, nested, ip); | 
 | 2980 | 	current->lockdep_recursion = 0; | 
 | 2981 | 	raw_local_irq_restore(flags); | 
 | 2982 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2983 | EXPORT_SYMBOL_GPL(lock_release); | 
 | 2984 |  | 
| Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2985 | void lockdep_set_current_reclaim_state(gfp_t gfp_mask) | 
 | 2986 | { | 
 | 2987 | 	current->lockdep_reclaim_gfp = gfp_mask; | 
 | 2988 | } | 
 | 2989 |  | 
 | 2990 | void lockdep_clear_current_reclaim_state(void) | 
 | 2991 | { | 
 | 2992 | 	current->lockdep_reclaim_gfp = 0; | 
 | 2993 | } | 
 | 2994 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 2995 | #ifdef CONFIG_LOCK_STAT | 
 | 2996 | static int | 
 | 2997 | print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock, | 
 | 2998 | 			   unsigned long ip) | 
 | 2999 | { | 
 | 3000 | 	if (!debug_locks_off()) | 
 | 3001 | 		return 0; | 
 | 3002 | 	if (debug_locks_silent) | 
 | 3003 | 		return 0; | 
 | 3004 |  | 
 | 3005 | 	printk("\n=================================\n"); | 
 | 3006 | 	printk(  "[ BUG: bad contention detected! ]\n"); | 
 | 3007 | 	printk(  "---------------------------------\n"); | 
 | 3008 | 	printk("%s/%d is trying to contend lock (", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 3009 | 		curr->comm, task_pid_nr(curr)); | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3010 | 	print_lockdep_cache(lock); | 
 | 3011 | 	printk(") at:\n"); | 
 | 3012 | 	print_ip_sym(ip); | 
 | 3013 | 	printk("but there are no locks held!\n"); | 
 | 3014 | 	printk("\nother info that might help us debug this:\n"); | 
 | 3015 | 	lockdep_print_held_locks(curr); | 
 | 3016 |  | 
 | 3017 | 	printk("\nstack backtrace:\n"); | 
 | 3018 | 	dump_stack(); | 
 | 3019 |  | 
 | 3020 | 	return 0; | 
 | 3021 | } | 
 | 3022 |  | 
 | 3023 | static void | 
 | 3024 | __lock_contended(struct lockdep_map *lock, unsigned long ip) | 
 | 3025 | { | 
 | 3026 | 	struct task_struct *curr = current; | 
 | 3027 | 	struct held_lock *hlock, *prev_hlock; | 
 | 3028 | 	struct lock_class_stats *stats; | 
 | 3029 | 	unsigned int depth; | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3030 | 	int i, contention_point, contending_point; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3031 |  | 
 | 3032 | 	depth = curr->lockdep_depth; | 
 | 3033 | 	if (DEBUG_LOCKS_WARN_ON(!depth)) | 
 | 3034 | 		return; | 
 | 3035 |  | 
 | 3036 | 	prev_hlock = NULL; | 
 | 3037 | 	for (i = depth-1; i >= 0; i--) { | 
 | 3038 | 		hlock = curr->held_locks + i; | 
 | 3039 | 		/* | 
 | 3040 | 		 * We must not cross into another context: | 
 | 3041 | 		 */ | 
 | 3042 | 		if (prev_hlock && prev_hlock->irq_context != hlock->irq_context) | 
 | 3043 | 			break; | 
 | 3044 | 		if (hlock->instance == lock) | 
 | 3045 | 			goto found_it; | 
 | 3046 | 		prev_hlock = hlock; | 
 | 3047 | 	} | 
 | 3048 | 	print_lock_contention_bug(curr, lock, ip); | 
 | 3049 | 	return; | 
 | 3050 |  | 
 | 3051 | found_it: | 
 | 3052 | 	hlock->waittime_stamp = sched_clock(); | 
 | 3053 |  | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3054 | 	contention_point = lock_point(hlock_class(hlock)->contention_point, ip); | 
 | 3055 | 	contending_point = lock_point(hlock_class(hlock)->contending_point, | 
 | 3056 | 				      lock->ip); | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3057 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3058 | 	stats = get_lock_stats(hlock_class(hlock)); | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3059 | 	if (contention_point < LOCKSTAT_POINTS) | 
 | 3060 | 		stats->contention_point[contention_point]++; | 
 | 3061 | 	if (contending_point < LOCKSTAT_POINTS) | 
 | 3062 | 		stats->contending_point[contending_point]++; | 
| Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 3063 | 	if (lock->cpu != smp_processor_id()) | 
 | 3064 | 		stats->bounces[bounce_contended + !!hlock->read]++; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3065 | 	put_lock_stats(stats); | 
 | 3066 | } | 
 | 3067 |  | 
 | 3068 | static void | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3069 | __lock_acquired(struct lockdep_map *lock, unsigned long ip) | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3070 | { | 
 | 3071 | 	struct task_struct *curr = current; | 
 | 3072 | 	struct held_lock *hlock, *prev_hlock; | 
 | 3073 | 	struct lock_class_stats *stats; | 
 | 3074 | 	unsigned int depth; | 
 | 3075 | 	u64 now; | 
| Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 3076 | 	s64 waittime = 0; | 
 | 3077 | 	int i, cpu; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3078 |  | 
 | 3079 | 	depth = curr->lockdep_depth; | 
 | 3080 | 	if (DEBUG_LOCKS_WARN_ON(!depth)) | 
 | 3081 | 		return; | 
 | 3082 |  | 
 | 3083 | 	prev_hlock = NULL; | 
 | 3084 | 	for (i = depth-1; i >= 0; i--) { | 
 | 3085 | 		hlock = curr->held_locks + i; | 
 | 3086 | 		/* | 
 | 3087 | 		 * We must not cross into another context: | 
 | 3088 | 		 */ | 
 | 3089 | 		if (prev_hlock && prev_hlock->irq_context != hlock->irq_context) | 
 | 3090 | 			break; | 
 | 3091 | 		if (hlock->instance == lock) | 
 | 3092 | 			goto found_it; | 
 | 3093 | 		prev_hlock = hlock; | 
 | 3094 | 	} | 
 | 3095 | 	print_lock_contention_bug(curr, lock, _RET_IP_); | 
 | 3096 | 	return; | 
 | 3097 |  | 
 | 3098 | found_it: | 
| Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 3099 | 	cpu = smp_processor_id(); | 
 | 3100 | 	if (hlock->waittime_stamp) { | 
 | 3101 | 		now = sched_clock(); | 
 | 3102 | 		waittime = now - hlock->waittime_stamp; | 
 | 3103 | 		hlock->holdtime_stamp = now; | 
 | 3104 | 	} | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3105 |  | 
| Frederic Weisbecker | 2062501 | 2009-04-06 01:49:33 +0200 | [diff] [blame] | 3106 | 	trace_lock_acquired(lock, ip, waittime); | 
 | 3107 |  | 
| Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3108 | 	stats = get_lock_stats(hlock_class(hlock)); | 
| Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 3109 | 	if (waittime) { | 
 | 3110 | 		if (hlock->read) | 
 | 3111 | 			lock_time_inc(&stats->read_waittime, waittime); | 
 | 3112 | 		else | 
 | 3113 | 			lock_time_inc(&stats->write_waittime, waittime); | 
 | 3114 | 	} | 
 | 3115 | 	if (lock->cpu != cpu) | 
 | 3116 | 		stats->bounces[bounce_acquired + !!hlock->read]++; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3117 | 	put_lock_stats(stats); | 
| Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 3118 |  | 
 | 3119 | 	lock->cpu = cpu; | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3120 | 	lock->ip = ip; | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3121 | } | 
 | 3122 |  | 
 | 3123 | void lock_contended(struct lockdep_map *lock, unsigned long ip) | 
 | 3124 | { | 
 | 3125 | 	unsigned long flags; | 
 | 3126 |  | 
| Peter Zijlstra | efed792 | 2009-03-04 12:32:55 +0100 | [diff] [blame] | 3127 | 	trace_lock_contended(lock, ip); | 
 | 3128 |  | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3129 | 	if (unlikely(!lock_stat)) | 
 | 3130 | 		return; | 
 | 3131 |  | 
 | 3132 | 	if (unlikely(current->lockdep_recursion)) | 
 | 3133 | 		return; | 
 | 3134 |  | 
 | 3135 | 	raw_local_irq_save(flags); | 
 | 3136 | 	check_flags(flags); | 
 | 3137 | 	current->lockdep_recursion = 1; | 
 | 3138 | 	__lock_contended(lock, ip); | 
 | 3139 | 	current->lockdep_recursion = 0; | 
 | 3140 | 	raw_local_irq_restore(flags); | 
 | 3141 | } | 
 | 3142 | EXPORT_SYMBOL_GPL(lock_contended); | 
 | 3143 |  | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3144 | void lock_acquired(struct lockdep_map *lock, unsigned long ip) | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3145 | { | 
 | 3146 | 	unsigned long flags; | 
 | 3147 |  | 
 | 3148 | 	if (unlikely(!lock_stat)) | 
 | 3149 | 		return; | 
 | 3150 |  | 
 | 3151 | 	if (unlikely(current->lockdep_recursion)) | 
 | 3152 | 		return; | 
 | 3153 |  | 
 | 3154 | 	raw_local_irq_save(flags); | 
 | 3155 | 	check_flags(flags); | 
 | 3156 | 	current->lockdep_recursion = 1; | 
| Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 3157 | 	__lock_acquired(lock, ip); | 
| Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3158 | 	current->lockdep_recursion = 0; | 
 | 3159 | 	raw_local_irq_restore(flags); | 
 | 3160 | } | 
 | 3161 | EXPORT_SYMBOL_GPL(lock_acquired); | 
 | 3162 | #endif | 
 | 3163 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3164 | /* | 
 | 3165 |  * Used by the testsuite, sanitize the validator state | 
 | 3166 |  * after a simulated failure: | 
 | 3167 |  */ | 
 | 3168 |  | 
 | 3169 | void lockdep_reset(void) | 
 | 3170 | { | 
 | 3171 | 	unsigned long flags; | 
| Ingo Molnar | 23d95a0 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 3172 | 	int i; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3173 |  | 
 | 3174 | 	raw_local_irq_save(flags); | 
 | 3175 | 	current->curr_chain_key = 0; | 
 | 3176 | 	current->lockdep_depth = 0; | 
 | 3177 | 	current->lockdep_recursion = 0; | 
 | 3178 | 	memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock)); | 
 | 3179 | 	nr_hardirq_chains = 0; | 
 | 3180 | 	nr_softirq_chains = 0; | 
 | 3181 | 	nr_process_chains = 0; | 
 | 3182 | 	debug_locks = 1; | 
| Ingo Molnar | 23d95a0 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 3183 | 	for (i = 0; i < CHAINHASH_SIZE; i++) | 
 | 3184 | 		INIT_LIST_HEAD(chainhash_table + i); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3185 | 	raw_local_irq_restore(flags); | 
 | 3186 | } | 
 | 3187 |  | 
 | 3188 | static void zap_class(struct lock_class *class) | 
 | 3189 | { | 
 | 3190 | 	int i; | 
 | 3191 |  | 
 | 3192 | 	/* | 
 | 3193 | 	 * Remove all dependencies this lock is | 
 | 3194 | 	 * involved in: | 
 | 3195 | 	 */ | 
 | 3196 | 	for (i = 0; i < nr_list_entries; i++) { | 
 | 3197 | 		if (list_entries[i].class == class) | 
 | 3198 | 			list_del_rcu(&list_entries[i].entry); | 
 | 3199 | 	} | 
 | 3200 | 	/* | 
 | 3201 | 	 * Unhash the class and remove it from the all_lock_classes list: | 
 | 3202 | 	 */ | 
 | 3203 | 	list_del_rcu(&class->hash_entry); | 
 | 3204 | 	list_del_rcu(&class->lock_entry); | 
 | 3205 |  | 
| Rabin Vincent | 8bfe029 | 2008-08-11 09:30:26 +0200 | [diff] [blame] | 3206 | 	class->key = NULL; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3207 | } | 
 | 3208 |  | 
| Arjan van de Ven | fabe874 | 2008-01-24 07:00:45 +0100 | [diff] [blame] | 3209 | static inline int within(const void *addr, void *start, unsigned long size) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3210 | { | 
 | 3211 | 	return addr >= start && addr < start + size; | 
 | 3212 | } | 
 | 3213 |  | 
 | 3214 | void lockdep_free_key_range(void *start, unsigned long size) | 
 | 3215 | { | 
 | 3216 | 	struct lock_class *class, *next; | 
 | 3217 | 	struct list_head *head; | 
 | 3218 | 	unsigned long flags; | 
 | 3219 | 	int i; | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3220 | 	int locked; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3221 |  | 
 | 3222 | 	raw_local_irq_save(flags); | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3223 | 	locked = graph_lock(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3224 |  | 
 | 3225 | 	/* | 
 | 3226 | 	 * Unhash all classes that were created by this module: | 
 | 3227 | 	 */ | 
 | 3228 | 	for (i = 0; i < CLASSHASH_SIZE; i++) { | 
 | 3229 | 		head = classhash_table + i; | 
 | 3230 | 		if (list_empty(head)) | 
 | 3231 | 			continue; | 
| Arjan van de Ven | fabe874 | 2008-01-24 07:00:45 +0100 | [diff] [blame] | 3232 | 		list_for_each_entry_safe(class, next, head, hash_entry) { | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3233 | 			if (within(class->key, start, size)) | 
 | 3234 | 				zap_class(class); | 
| Arjan van de Ven | fabe874 | 2008-01-24 07:00:45 +0100 | [diff] [blame] | 3235 | 			else if (within(class->name, start, size)) | 
 | 3236 | 				zap_class(class); | 
 | 3237 | 		} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3238 | 	} | 
 | 3239 |  | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3240 | 	if (locked) | 
 | 3241 | 		graph_unlock(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3242 | 	raw_local_irq_restore(flags); | 
 | 3243 | } | 
 | 3244 |  | 
 | 3245 | void lockdep_reset_lock(struct lockdep_map *lock) | 
 | 3246 | { | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3247 | 	struct lock_class *class, *next; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3248 | 	struct list_head *head; | 
 | 3249 | 	unsigned long flags; | 
 | 3250 | 	int i, j; | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3251 | 	int locked; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3252 |  | 
 | 3253 | 	raw_local_irq_save(flags); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3254 |  | 
 | 3255 | 	/* | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3256 | 	 * Remove all classes this lock might have: | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3257 | 	 */ | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3258 | 	for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) { | 
 | 3259 | 		/* | 
 | 3260 | 		 * If the class exists we look it up and zap it: | 
 | 3261 | 		 */ | 
 | 3262 | 		class = look_up_lock_class(lock, j); | 
 | 3263 | 		if (class) | 
 | 3264 | 			zap_class(class); | 
 | 3265 | 	} | 
 | 3266 | 	/* | 
 | 3267 | 	 * Debug check: in the end all mapped classes should | 
 | 3268 | 	 * be gone. | 
 | 3269 | 	 */ | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3270 | 	locked = graph_lock(); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3271 | 	for (i = 0; i < CLASSHASH_SIZE; i++) { | 
 | 3272 | 		head = classhash_table + i; | 
 | 3273 | 		if (list_empty(head)) | 
 | 3274 | 			continue; | 
 | 3275 | 		list_for_each_entry_safe(class, next, head, hash_entry) { | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3276 | 			if (unlikely(class == lock->class_cache)) { | 
| Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 3277 | 				if (debug_locks_off_graph_unlock()) | 
 | 3278 | 					WARN_ON(1); | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3279 | 				goto out_restore; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3280 | 			} | 
 | 3281 | 		} | 
 | 3282 | 	} | 
| Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 3283 | 	if (locked) | 
 | 3284 | 		graph_unlock(); | 
| Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3285 |  | 
 | 3286 | out_restore: | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3287 | 	raw_local_irq_restore(flags); | 
 | 3288 | } | 
 | 3289 |  | 
| Sam Ravnborg | 1499993 | 2007-02-28 20:12:31 -0800 | [diff] [blame] | 3290 | void lockdep_init(void) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3291 | { | 
 | 3292 | 	int i; | 
 | 3293 |  | 
 | 3294 | 	/* | 
 | 3295 | 	 * Some architectures have their own start_kernel() | 
 | 3296 | 	 * code which calls lockdep_init(), while we also | 
 | 3297 | 	 * call lockdep_init() from the start_kernel() itself, | 
 | 3298 | 	 * and we want to initialize the hashes only once: | 
 | 3299 | 	 */ | 
 | 3300 | 	if (lockdep_initialized) | 
 | 3301 | 		return; | 
 | 3302 |  | 
 | 3303 | 	for (i = 0; i < CLASSHASH_SIZE; i++) | 
 | 3304 | 		INIT_LIST_HEAD(classhash_table + i); | 
 | 3305 |  | 
 | 3306 | 	for (i = 0; i < CHAINHASH_SIZE; i++) | 
 | 3307 | 		INIT_LIST_HEAD(chainhash_table + i); | 
 | 3308 |  | 
 | 3309 | 	lockdep_initialized = 1; | 
 | 3310 | } | 
 | 3311 |  | 
 | 3312 | void __init lockdep_info(void) | 
 | 3313 | { | 
 | 3314 | 	printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n"); | 
 | 3315 |  | 
| Li Zefan | b0788ca | 2008-11-21 15:57:32 +0800 | [diff] [blame] | 3316 | 	printk("... MAX_LOCKDEP_SUBCLASSES:  %lu\n", MAX_LOCKDEP_SUBCLASSES); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3317 | 	printk("... MAX_LOCK_DEPTH:          %lu\n", MAX_LOCK_DEPTH); | 
 | 3318 | 	printk("... MAX_LOCKDEP_KEYS:        %lu\n", MAX_LOCKDEP_KEYS); | 
| Li Zefan | b0788ca | 2008-11-21 15:57:32 +0800 | [diff] [blame] | 3319 | 	printk("... CLASSHASH_SIZE:          %lu\n", CLASSHASH_SIZE); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3320 | 	printk("... MAX_LOCKDEP_ENTRIES:     %lu\n", MAX_LOCKDEP_ENTRIES); | 
 | 3321 | 	printk("... MAX_LOCKDEP_CHAINS:      %lu\n", MAX_LOCKDEP_CHAINS); | 
 | 3322 | 	printk("... CHAINHASH_SIZE:          %lu\n", CHAINHASH_SIZE); | 
 | 3323 |  | 
 | 3324 | 	printk(" memory used by lock dependency info: %lu kB\n", | 
 | 3325 | 		(sizeof(struct lock_class) * MAX_LOCKDEP_KEYS + | 
 | 3326 | 		sizeof(struct list_head) * CLASSHASH_SIZE + | 
 | 3327 | 		sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES + | 
 | 3328 | 		sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS + | 
 | 3329 | 		sizeof(struct list_head) * CHAINHASH_SIZE) / 1024); | 
 | 3330 |  | 
 | 3331 | 	printk(" per task-struct memory footprint: %lu bytes\n", | 
 | 3332 | 		sizeof(struct held_lock) * MAX_LOCK_DEPTH); | 
 | 3333 |  | 
 | 3334 | #ifdef CONFIG_DEBUG_LOCKDEP | 
| Johannes Berg | c71063c | 2007-07-19 01:49:02 -0700 | [diff] [blame] | 3335 | 	if (lockdep_init_error) { | 
 | 3336 | 		printk("WARNING: lockdep init error! Arch code didn't call lockdep_init() early enough?\n"); | 
 | 3337 | 		printk("Call stack leading to lockdep invocation was:\n"); | 
 | 3338 | 		print_stack_trace(&lockdep_init_trace, 0); | 
 | 3339 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3340 | #endif | 
 | 3341 | } | 
 | 3342 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3343 | static void | 
 | 3344 | print_freed_lock_bug(struct task_struct *curr, const void *mem_from, | 
| Arjan van de Ven | 55794a4 | 2006-07-10 04:44:03 -0700 | [diff] [blame] | 3345 | 		     const void *mem_to, struct held_lock *hlock) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3346 | { | 
 | 3347 | 	if (!debug_locks_off()) | 
 | 3348 | 		return; | 
 | 3349 | 	if (debug_locks_silent) | 
 | 3350 | 		return; | 
 | 3351 |  | 
 | 3352 | 	printk("\n=========================\n"); | 
 | 3353 | 	printk(  "[ BUG: held lock freed! ]\n"); | 
 | 3354 | 	printk(  "-------------------------\n"); | 
 | 3355 | 	printk("%s/%d is freeing memory %p-%p, with a lock still held there!\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 3356 | 		curr->comm, task_pid_nr(curr), mem_from, mem_to-1); | 
| Arjan van de Ven | 55794a4 | 2006-07-10 04:44:03 -0700 | [diff] [blame] | 3357 | 	print_lock(hlock); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3358 | 	lockdep_print_held_locks(curr); | 
 | 3359 |  | 
 | 3360 | 	printk("\nstack backtrace:\n"); | 
 | 3361 | 	dump_stack(); | 
 | 3362 | } | 
 | 3363 |  | 
| Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3364 | static inline int not_in_range(const void* mem_from, unsigned long mem_len, | 
 | 3365 | 				const void* lock_from, unsigned long lock_len) | 
 | 3366 | { | 
 | 3367 | 	return lock_from + lock_len <= mem_from || | 
 | 3368 | 		mem_from + mem_len <= lock_from; | 
 | 3369 | } | 
 | 3370 |  | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3371 | /* | 
 | 3372 |  * Called when kernel memory is freed (or unmapped), or if a lock | 
 | 3373 |  * is destroyed or reinitialized - this code checks whether there is | 
 | 3374 |  * any held lock in the memory range of <from> to <to>: | 
 | 3375 |  */ | 
 | 3376 | void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len) | 
 | 3377 | { | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3378 | 	struct task_struct *curr = current; | 
 | 3379 | 	struct held_lock *hlock; | 
 | 3380 | 	unsigned long flags; | 
 | 3381 | 	int i; | 
 | 3382 |  | 
 | 3383 | 	if (unlikely(!debug_locks)) | 
 | 3384 | 		return; | 
 | 3385 |  | 
 | 3386 | 	local_irq_save(flags); | 
 | 3387 | 	for (i = 0; i < curr->lockdep_depth; i++) { | 
 | 3388 | 		hlock = curr->held_locks + i; | 
 | 3389 |  | 
| Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3390 | 		if (not_in_range(mem_from, mem_len, hlock->instance, | 
 | 3391 | 					sizeof(*hlock->instance))) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3392 | 			continue; | 
 | 3393 |  | 
| Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3394 | 		print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3395 | 		break; | 
 | 3396 | 	} | 
 | 3397 | 	local_irq_restore(flags); | 
 | 3398 | } | 
| Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 3399 | EXPORT_SYMBOL_GPL(debug_check_no_locks_freed); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3400 |  | 
 | 3401 | static void print_held_locks_bug(struct task_struct *curr) | 
 | 3402 | { | 
 | 3403 | 	if (!debug_locks_off()) | 
 | 3404 | 		return; | 
 | 3405 | 	if (debug_locks_silent) | 
 | 3406 | 		return; | 
 | 3407 |  | 
 | 3408 | 	printk("\n=====================================\n"); | 
 | 3409 | 	printk(  "[ BUG: lock held at task exit time! ]\n"); | 
 | 3410 | 	printk(  "-------------------------------------\n"); | 
 | 3411 | 	printk("%s/%d is exiting with locks still held!\n", | 
| Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 3412 | 		curr->comm, task_pid_nr(curr)); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3413 | 	lockdep_print_held_locks(curr); | 
 | 3414 |  | 
 | 3415 | 	printk("\nstack backtrace:\n"); | 
 | 3416 | 	dump_stack(); | 
 | 3417 | } | 
 | 3418 |  | 
 | 3419 | void debug_check_no_locks_held(struct task_struct *task) | 
 | 3420 | { | 
 | 3421 | 	if (unlikely(task->lockdep_depth > 0)) | 
 | 3422 | 		print_held_locks_bug(task); | 
 | 3423 | } | 
 | 3424 |  | 
 | 3425 | void debug_show_all_locks(void) | 
 | 3426 | { | 
 | 3427 | 	struct task_struct *g, *p; | 
 | 3428 | 	int count = 10; | 
 | 3429 | 	int unlock = 1; | 
 | 3430 |  | 
| Jarek Poplawski | 9c35dd7 | 2007-03-22 00:11:28 -0800 | [diff] [blame] | 3431 | 	if (unlikely(!debug_locks)) { | 
 | 3432 | 		printk("INFO: lockdep is turned off.\n"); | 
 | 3433 | 		return; | 
 | 3434 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3435 | 	printk("\nShowing all locks held in the system:\n"); | 
 | 3436 |  | 
 | 3437 | 	/* | 
 | 3438 | 	 * Here we try to get the tasklist_lock as hard as possible, | 
 | 3439 | 	 * if not successful after 2 seconds we ignore it (but keep | 
 | 3440 | 	 * trying). This is to enable a debug printout even if a | 
 | 3441 | 	 * tasklist_lock-holding task deadlocks or crashes. | 
 | 3442 | 	 */ | 
 | 3443 | retry: | 
 | 3444 | 	if (!read_trylock(&tasklist_lock)) { | 
 | 3445 | 		if (count == 10) | 
 | 3446 | 			printk("hm, tasklist_lock locked, retrying... "); | 
 | 3447 | 		if (count) { | 
 | 3448 | 			count--; | 
 | 3449 | 			printk(" #%d", 10-count); | 
 | 3450 | 			mdelay(200); | 
 | 3451 | 			goto retry; | 
 | 3452 | 		} | 
 | 3453 | 		printk(" ignoring it.\n"); | 
 | 3454 | 		unlock = 0; | 
| qinghuang feng | 46fec7a | 2008-10-28 17:24:28 +0800 | [diff] [blame] | 3455 | 	} else { | 
 | 3456 | 		if (count != 10) | 
 | 3457 | 			printk(KERN_CONT " locked it.\n"); | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3458 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3459 |  | 
 | 3460 | 	do_each_thread(g, p) { | 
| Ingo Molnar | 8568487 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 3461 | 		/* | 
 | 3462 | 		 * It's not reliable to print a task's held locks | 
 | 3463 | 		 * if it's not sleeping (or if it's not the current | 
 | 3464 | 		 * task): | 
 | 3465 | 		 */ | 
 | 3466 | 		if (p->state == TASK_RUNNING && p != current) | 
 | 3467 | 			continue; | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3468 | 		if (p->lockdep_depth) | 
 | 3469 | 			lockdep_print_held_locks(p); | 
 | 3470 | 		if (!unlock) | 
 | 3471 | 			if (read_trylock(&tasklist_lock)) | 
 | 3472 | 				unlock = 1; | 
 | 3473 | 	} while_each_thread(g, p); | 
 | 3474 |  | 
 | 3475 | 	printk("\n"); | 
 | 3476 | 	printk("=============================================\n\n"); | 
 | 3477 |  | 
 | 3478 | 	if (unlock) | 
 | 3479 | 		read_unlock(&tasklist_lock); | 
 | 3480 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3481 | EXPORT_SYMBOL_GPL(debug_show_all_locks); | 
 | 3482 |  | 
| Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 3483 | /* | 
 | 3484 |  * Careful: only use this function if you are sure that | 
 | 3485 |  * the task cannot run in parallel! | 
 | 3486 |  */ | 
 | 3487 | void __debug_show_held_locks(struct task_struct *task) | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3488 | { | 
| Jarek Poplawski | 9c35dd7 | 2007-03-22 00:11:28 -0800 | [diff] [blame] | 3489 | 	if (unlikely(!debug_locks)) { | 
 | 3490 | 		printk("INFO: lockdep is turned off.\n"); | 
 | 3491 | 		return; | 
 | 3492 | 	} | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3493 | 	lockdep_print_held_locks(task); | 
 | 3494 | } | 
| Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 3495 | EXPORT_SYMBOL_GPL(__debug_show_held_locks); | 
 | 3496 |  | 
 | 3497 | void debug_show_held_locks(struct task_struct *task) | 
 | 3498 | { | 
 | 3499 | 		__debug_show_held_locks(task); | 
 | 3500 | } | 
| Ingo Molnar | fbb9ce9 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3501 | EXPORT_SYMBOL_GPL(debug_show_held_locks); | 
| Peter Zijlstra | b351d16 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 3502 |  | 
 | 3503 | void lockdep_sys_exit(void) | 
 | 3504 | { | 
 | 3505 | 	struct task_struct *curr = current; | 
 | 3506 |  | 
 | 3507 | 	if (unlikely(curr->lockdep_depth)) { | 
 | 3508 | 		if (!debug_locks_off()) | 
 | 3509 | 			return; | 
 | 3510 | 		printk("\n================================================\n"); | 
 | 3511 | 		printk(  "[ BUG: lock held when returning to user space! ]\n"); | 
 | 3512 | 		printk(  "------------------------------------------------\n"); | 
 | 3513 | 		printk("%s/%d is leaving the kernel with locks still held!\n", | 
 | 3514 | 				curr->comm, curr->pid); | 
 | 3515 | 		lockdep_print_held_locks(curr); | 
 | 3516 | 	} | 
 | 3517 | } |