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