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> |
Peter Zijlstra | 90eec10 | 2015-11-16 11:08:45 +0100 | [diff] [blame] | 9 | * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra |
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> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 31 | #include <linux/sched/clock.h> |
Ingo Molnar | 2993002 | 2017-02-08 18:51:36 +0100 | [diff] [blame] | 32 | #include <linux/sched/task.h> |
Nikolay Borisov | 6d7225f | 2017-05-03 14:53:05 -0700 | [diff] [blame] | 33 | #include <linux/sched/mm.h> |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 34 | #include <linux/delay.h> |
| 35 | #include <linux/module.h> |
| 36 | #include <linux/proc_fs.h> |
| 37 | #include <linux/seq_file.h> |
| 38 | #include <linux/spinlock.h> |
| 39 | #include <linux/kallsyms.h> |
| 40 | #include <linux/interrupt.h> |
| 41 | #include <linux/stacktrace.h> |
| 42 | #include <linux/debug_locks.h> |
| 43 | #include <linux/irqflags.h> |
Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 44 | #include <linux/utsname.h> |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 45 | #include <linux/hash.h> |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 46 | #include <linux/ftrace.h> |
Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 47 | #include <linux/stringify.h> |
Ming Lei | d588e46 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 48 | #include <linux/bitops.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 49 | #include <linux/gfp.h> |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 50 | #include <linux/random.h> |
Peter Zijlstra | dfaaf3f | 2016-05-30 18:31:33 +0200 | [diff] [blame] | 51 | #include <linux/jhash.h> |
Tejun Heo | 88f1c87 | 2018-01-22 14:00:55 -0800 | [diff] [blame] | 52 | #include <linux/nmi.h> |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 53 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 54 | #include <asm/sections.h> |
| 55 | |
| 56 | #include "lockdep_internals.h" |
| 57 | |
Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 58 | #define CREATE_TRACE_POINTS |
Frederic Weisbecker | 6717876 | 2009-11-13 10:06:34 +0100 | [diff] [blame] | 59 | #include <trace/events/lock.h> |
Steven Rostedt | a8d154b | 2009-04-10 09:36:00 -0400 | [diff] [blame] | 60 | |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 61 | #ifdef CONFIG_PROVE_LOCKING |
| 62 | int prove_locking = 1; |
| 63 | module_param(prove_locking, int, 0644); |
| 64 | #else |
| 65 | #define prove_locking 0 |
| 66 | #endif |
| 67 | |
| 68 | #ifdef CONFIG_LOCK_STAT |
| 69 | int lock_stat = 1; |
| 70 | module_param(lock_stat, int, 0644); |
| 71 | #else |
| 72 | #define lock_stat 0 |
| 73 | #endif |
| 74 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 75 | /* |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 76 | * lockdep_lock: protects the lockdep graph, the hashes and the |
| 77 | * class/list/hash allocators. |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 78 | * |
| 79 | * This is one of the rare exceptions where it's justified |
| 80 | * to use a raw spinlock - we really dont want the spinlock |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 81 | * code to recurse back into the lockdep code... |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 82 | */ |
Thomas Gleixner | edc35bd | 2009-12-03 12:38:57 +0100 | [diff] [blame] | 83 | static arch_spinlock_t lockdep_lock = (arch_spinlock_t)__ARCH_SPIN_LOCK_UNLOCKED; |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 84 | |
| 85 | static int graph_lock(void) |
| 86 | { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 87 | arch_spin_lock(&lockdep_lock); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 88 | /* |
| 89 | * Make sure that if another CPU detected a bug while |
| 90 | * walking the graph we dont change it (while the other |
| 91 | * CPU is busy printing out stuff with the graph lock |
| 92 | * dropped already) |
| 93 | */ |
| 94 | if (!debug_locks) { |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 95 | arch_spin_unlock(&lockdep_lock); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 96 | return 0; |
| 97 | } |
Steven Rostedt | bb065af | 2008-05-12 21:21:00 +0200 | [diff] [blame] | 98 | /* prevent any recursions within lockdep from causing deadlocks */ |
| 99 | current->lockdep_recursion++; |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 100 | return 1; |
| 101 | } |
| 102 | |
| 103 | static inline int graph_unlock(void) |
| 104 | { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 105 | if (debug_locks && !arch_spin_is_locked(&lockdep_lock)) { |
| 106 | /* |
| 107 | * The lockdep graph lock isn't locked while we expect it to |
| 108 | * be, we're confused now, bye! |
| 109 | */ |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 110 | return DEBUG_LOCKS_WARN_ON(1); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 111 | } |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 112 | |
Steven Rostedt | bb065af | 2008-05-12 21:21:00 +0200 | [diff] [blame] | 113 | current->lockdep_recursion--; |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 114 | arch_spin_unlock(&lockdep_lock); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 115 | return 0; |
| 116 | } |
| 117 | |
| 118 | /* |
| 119 | * Turn lock debugging off and return with 0 if it was off already, |
| 120 | * and also release the graph lock: |
| 121 | */ |
| 122 | static inline int debug_locks_off_graph_unlock(void) |
| 123 | { |
| 124 | int ret = debug_locks_off(); |
| 125 | |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 126 | arch_spin_unlock(&lockdep_lock); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 127 | |
| 128 | return ret; |
| 129 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 130 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 131 | unsigned long nr_list_entries; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 132 | static struct lock_list list_entries[MAX_LOCKDEP_ENTRIES]; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 133 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 134 | /* |
| 135 | * All data structures here are protected by the global debug_lock. |
| 136 | * |
| 137 | * Mutex key structs only get allocated, once during bootup, and never |
| 138 | * get freed - this significantly simplifies the debugging code. |
| 139 | */ |
| 140 | unsigned long nr_lock_classes; |
| 141 | static struct lock_class lock_classes[MAX_LOCKDEP_KEYS]; |
| 142 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 143 | static inline struct lock_class *hlock_class(struct held_lock *hlock) |
| 144 | { |
| 145 | if (!hlock->class_idx) { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 146 | /* |
| 147 | * Someone passed in garbage, we give up. |
| 148 | */ |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 149 | DEBUG_LOCKS_WARN_ON(1); |
| 150 | return NULL; |
| 151 | } |
| 152 | return lock_classes + hlock->class_idx - 1; |
| 153 | } |
| 154 | |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 155 | #ifdef CONFIG_LOCK_STAT |
Peter Zijlstra | 2552821 | 2016-03-15 14:52:49 -0700 | [diff] [blame] | 156 | static DEFINE_PER_CPU(struct lock_class_stats[MAX_LOCKDEP_KEYS], cpu_lock_stats); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 157 | |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 158 | static inline u64 lockstat_clock(void) |
| 159 | { |
Peter Zijlstra | c676329 | 2010-05-25 10:48:51 +0200 | [diff] [blame] | 160 | return local_clock(); |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 161 | } |
| 162 | |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 163 | static int lock_point(unsigned long points[], unsigned long ip) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 164 | { |
| 165 | int i; |
| 166 | |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 167 | for (i = 0; i < LOCKSTAT_POINTS; i++) { |
| 168 | if (points[i] == 0) { |
| 169 | points[i] = ip; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 170 | break; |
| 171 | } |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 172 | if (points[i] == ip) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 173 | break; |
| 174 | } |
| 175 | |
| 176 | return i; |
| 177 | } |
| 178 | |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 179 | static void lock_time_inc(struct lock_time *lt, u64 time) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 180 | { |
| 181 | if (time > lt->max) |
| 182 | lt->max = time; |
| 183 | |
Frank Rowand | 109d71c | 2009-11-19 13:42:06 -0800 | [diff] [blame] | 184 | if (time < lt->min || !lt->nr) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 185 | lt->min = time; |
| 186 | |
| 187 | lt->total += time; |
| 188 | lt->nr++; |
| 189 | } |
| 190 | |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 191 | static inline void lock_time_add(struct lock_time *src, struct lock_time *dst) |
| 192 | { |
Frank Rowand | 109d71c | 2009-11-19 13:42:06 -0800 | [diff] [blame] | 193 | if (!src->nr) |
| 194 | return; |
| 195 | |
| 196 | if (src->max > dst->max) |
| 197 | dst->max = src->max; |
| 198 | |
| 199 | if (src->min < dst->min || !dst->nr) |
| 200 | dst->min = src->min; |
| 201 | |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 202 | dst->total += src->total; |
| 203 | dst->nr += src->nr; |
| 204 | } |
| 205 | |
| 206 | struct lock_class_stats lock_stats(struct lock_class *class) |
| 207 | { |
| 208 | struct lock_class_stats stats; |
| 209 | int cpu, i; |
| 210 | |
| 211 | memset(&stats, 0, sizeof(struct lock_class_stats)); |
| 212 | for_each_possible_cpu(cpu) { |
| 213 | struct lock_class_stats *pcs = |
Tejun Heo | 1871e52 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 214 | &per_cpu(cpu_lock_stats, cpu)[class - lock_classes]; |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 215 | |
| 216 | for (i = 0; i < ARRAY_SIZE(stats.contention_point); i++) |
| 217 | stats.contention_point[i] += pcs->contention_point[i]; |
| 218 | |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 219 | for (i = 0; i < ARRAY_SIZE(stats.contending_point); i++) |
| 220 | stats.contending_point[i] += pcs->contending_point[i]; |
| 221 | |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 222 | lock_time_add(&pcs->read_waittime, &stats.read_waittime); |
| 223 | lock_time_add(&pcs->write_waittime, &stats.write_waittime); |
| 224 | |
| 225 | lock_time_add(&pcs->read_holdtime, &stats.read_holdtime); |
| 226 | lock_time_add(&pcs->write_holdtime, &stats.write_holdtime); |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 227 | |
| 228 | for (i = 0; i < ARRAY_SIZE(stats.bounces); i++) |
| 229 | stats.bounces[i] += pcs->bounces[i]; |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | return stats; |
| 233 | } |
| 234 | |
| 235 | void clear_lock_stats(struct lock_class *class) |
| 236 | { |
| 237 | int cpu; |
| 238 | |
| 239 | for_each_possible_cpu(cpu) { |
| 240 | struct lock_class_stats *cpu_stats = |
Tejun Heo | 1871e52 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 241 | &per_cpu(cpu_lock_stats, cpu)[class - lock_classes]; |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 242 | |
| 243 | memset(cpu_stats, 0, sizeof(struct lock_class_stats)); |
| 244 | } |
| 245 | memset(class->contention_point, 0, sizeof(class->contention_point)); |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 246 | memset(class->contending_point, 0, sizeof(class->contending_point)); |
Peter Zijlstra | c46261d | 2007-07-19 01:48:57 -0700 | [diff] [blame] | 247 | } |
| 248 | |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 249 | static struct lock_class_stats *get_lock_stats(struct lock_class *class) |
| 250 | { |
Tejun Heo | 1871e52 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 251 | return &get_cpu_var(cpu_lock_stats)[class - lock_classes]; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | static void put_lock_stats(struct lock_class_stats *stats) |
| 255 | { |
Tejun Heo | 1871e52 | 2009-10-29 22:34:13 +0900 | [diff] [blame] | 256 | put_cpu_var(cpu_lock_stats); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | static void lock_release_holdtime(struct held_lock *hlock) |
| 260 | { |
| 261 | struct lock_class_stats *stats; |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 262 | u64 holdtime; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 263 | |
| 264 | if (!lock_stat) |
| 265 | return; |
| 266 | |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 267 | holdtime = lockstat_clock() - hlock->holdtime_stamp; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 268 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 269 | stats = get_lock_stats(hlock_class(hlock)); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 270 | if (hlock->read) |
| 271 | lock_time_inc(&stats->read_holdtime, holdtime); |
| 272 | else |
| 273 | lock_time_inc(&stats->write_holdtime, holdtime); |
| 274 | put_lock_stats(stats); |
| 275 | } |
| 276 | #else |
| 277 | static inline void lock_release_holdtime(struct held_lock *hlock) |
| 278 | { |
| 279 | } |
| 280 | #endif |
| 281 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 282 | /* |
| 283 | * We keep a global list of all lock classes. The list only grows, |
| 284 | * never shrinks. The list is only accessed with the lockdep |
| 285 | * spinlock lock held. |
| 286 | */ |
| 287 | LIST_HEAD(all_lock_classes); |
| 288 | |
| 289 | /* |
| 290 | * The lockdep classes are in a hash-table as well, for fast lookup: |
| 291 | */ |
| 292 | #define CLASSHASH_BITS (MAX_LOCKDEP_KEYS_BITS - 1) |
| 293 | #define CLASSHASH_SIZE (1UL << CLASSHASH_BITS) |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 294 | #define __classhashfn(key) hash_long((unsigned long)key, CLASSHASH_BITS) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 295 | #define classhashentry(key) (classhash_table + __classhashfn((key))) |
| 296 | |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 297 | static struct hlist_head classhash_table[CLASSHASH_SIZE]; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 298 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 299 | /* |
| 300 | * We put the lock dependency chains into a hash-table as well, to cache |
| 301 | * their existence: |
| 302 | */ |
| 303 | #define CHAINHASH_BITS (MAX_LOCKDEP_CHAINS_BITS-1) |
| 304 | #define CHAINHASH_SIZE (1UL << CHAINHASH_BITS) |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 305 | #define __chainhashfn(chain) hash_long(chain, CHAINHASH_BITS) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 306 | #define chainhashentry(chain) (chainhash_table + __chainhashfn((chain))) |
| 307 | |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 308 | static struct hlist_head chainhash_table[CHAINHASH_SIZE]; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 309 | |
| 310 | /* |
| 311 | * The hash key of the lock dependency chains is a hash itself too: |
| 312 | * it's a hash of all locks taken up to that lock, including that lock. |
| 313 | * It's a 64-bit hash, because it's important for the keys to be |
| 314 | * unique. |
| 315 | */ |
Peter Zijlstra | dfaaf3f | 2016-05-30 18:31:33 +0200 | [diff] [blame] | 316 | static inline u64 iterate_chain_key(u64 key, u32 idx) |
| 317 | { |
| 318 | u32 k0 = key, k1 = key >> 32; |
| 319 | |
| 320 | __jhash_mix(idx, k0, k1); /* Macro that modifies arguments! */ |
| 321 | |
| 322 | return k0 | (u64)k1 << 32; |
| 323 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 324 | |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 325 | void lockdep_off(void) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 326 | { |
| 327 | current->lockdep_recursion++; |
| 328 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 329 | EXPORT_SYMBOL(lockdep_off); |
| 330 | |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 331 | void lockdep_on(void) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 332 | { |
| 333 | current->lockdep_recursion--; |
| 334 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 335 | EXPORT_SYMBOL(lockdep_on); |
| 336 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 337 | /* |
| 338 | * Debugging switches: |
| 339 | */ |
| 340 | |
| 341 | #define VERBOSE 0 |
Ingo Molnar | 33e94e9 | 2006-12-13 00:34:41 -0800 | [diff] [blame] | 342 | #define VERY_VERBOSE 0 |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 343 | |
| 344 | #if VERBOSE |
| 345 | # define HARDIRQ_VERBOSE 1 |
| 346 | # define SOFTIRQ_VERBOSE 1 |
| 347 | #else |
| 348 | # define HARDIRQ_VERBOSE 0 |
| 349 | # define SOFTIRQ_VERBOSE 0 |
| 350 | #endif |
| 351 | |
Peter Zijlstra | d92a8cf | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 352 | #if VERBOSE || HARDIRQ_VERBOSE || SOFTIRQ_VERBOSE |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 353 | /* |
| 354 | * Quick filtering for interesting events: |
| 355 | */ |
| 356 | static int class_filter(struct lock_class *class) |
| 357 | { |
Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 358 | #if 0 |
| 359 | /* Example */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 360 | if (class->name_version == 1 && |
Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 361 | !strcmp(class->name, "lockname")) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 362 | return 1; |
| 363 | if (class->name_version == 1 && |
Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 364 | !strcmp(class->name, "&struct->lockfield")) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 365 | return 1; |
Andi Kleen | f9829cc | 2006-07-10 04:44:01 -0700 | [diff] [blame] | 366 | #endif |
Ingo Molnar | a664089 | 2006-12-13 00:34:39 -0800 | [diff] [blame] | 367 | /* Filter everything else. 1 would be to allow everything else */ |
| 368 | return 0; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 369 | } |
| 370 | #endif |
| 371 | |
| 372 | static int verbose(struct lock_class *class) |
| 373 | { |
| 374 | #if VERBOSE |
| 375 | return class_filter(class); |
| 376 | #endif |
| 377 | return 0; |
| 378 | } |
| 379 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 380 | /* |
| 381 | * Stack-trace: tightly packed array of stack backtrace |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 382 | * addresses. Protected by the graph_lock. |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 383 | */ |
| 384 | unsigned long nr_stack_trace_entries; |
| 385 | static unsigned long stack_trace[MAX_STACK_TRACE_ENTRIES]; |
| 386 | |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 387 | static void print_lockdep_off(const char *bug_msg) |
| 388 | { |
| 389 | printk(KERN_DEBUG "%s\n", bug_msg); |
| 390 | printk(KERN_DEBUG "turning off the locking correctness validator.\n"); |
Andreas Gruenbacher | acf5937 | 2014-07-15 21:10:52 +0200 | [diff] [blame] | 391 | #ifdef CONFIG_LOCK_STAT |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 392 | printk(KERN_DEBUG "Please attach the output of /proc/lock_stat to the bug report\n"); |
Andreas Gruenbacher | acf5937 | 2014-07-15 21:10:52 +0200 | [diff] [blame] | 393 | #endif |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 394 | } |
| 395 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 396 | static int save_trace(struct stack_trace *trace) |
| 397 | { |
| 398 | trace->nr_entries = 0; |
| 399 | trace->max_entries = MAX_STACK_TRACE_ENTRIES - nr_stack_trace_entries; |
| 400 | trace->entries = stack_trace + nr_stack_trace_entries; |
| 401 | |
Andi Kleen | 5a1b399 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 402 | trace->skip = 3; |
Andi Kleen | 5a1b399 | 2006-09-26 10:52:34 +0200 | [diff] [blame] | 403 | |
Christoph Hellwig | ab1b6f0 | 2007-05-08 00:23:29 -0700 | [diff] [blame] | 404 | save_stack_trace(trace); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 405 | |
Peter Zijlstra | 4f84f43 | 2009-07-20 15:27:04 +0200 | [diff] [blame] | 406 | /* |
| 407 | * Some daft arches put -1 at the end to indicate its a full trace. |
| 408 | * |
| 409 | * <rant> this is buggy anyway, since it takes a whole extra entry so a |
| 410 | * complete trace that maxes out the entries provided will be reported |
| 411 | * as incomplete, friggin useless </rant> |
| 412 | */ |
Luck, Tony | ea5b41f | 2009-12-09 14:29:36 -0800 | [diff] [blame] | 413 | if (trace->nr_entries != 0 && |
| 414 | trace->entries[trace->nr_entries-1] == ULONG_MAX) |
Peter Zijlstra | 4f84f43 | 2009-07-20 15:27:04 +0200 | [diff] [blame] | 415 | trace->nr_entries--; |
| 416 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 417 | trace->max_entries = trace->nr_entries; |
| 418 | |
| 419 | nr_stack_trace_entries += trace->nr_entries; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 420 | |
Peter Zijlstra | 4f84f43 | 2009-07-20 15:27:04 +0200 | [diff] [blame] | 421 | if (nr_stack_trace_entries >= MAX_STACK_TRACE_ENTRIES-1) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 422 | if (!debug_locks_off_graph_unlock()) |
| 423 | return 0; |
| 424 | |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 425 | print_lockdep_off("BUG: MAX_STACK_TRACE_ENTRIES too low!"); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 426 | dump_stack(); |
| 427 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 428 | return 0; |
| 429 | } |
| 430 | |
| 431 | return 1; |
| 432 | } |
| 433 | |
| 434 | unsigned int nr_hardirq_chains; |
| 435 | unsigned int nr_softirq_chains; |
| 436 | unsigned int nr_process_chains; |
| 437 | unsigned int max_lockdep_depth; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 438 | |
| 439 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 440 | /* |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 441 | * Various lockdep statistics: |
| 442 | */ |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 443 | DEFINE_PER_CPU(struct lockdep_stats, lockdep_stats); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 444 | #endif |
| 445 | |
| 446 | /* |
| 447 | * Locking printouts: |
| 448 | */ |
| 449 | |
Peter Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 450 | #define __USAGE(__STATE) \ |
Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 451 | [LOCK_USED_IN_##__STATE] = "IN-"__stringify(__STATE)"-W", \ |
| 452 | [LOCK_ENABLED_##__STATE] = __stringify(__STATE)"-ON-W", \ |
| 453 | [LOCK_USED_IN_##__STATE##_READ] = "IN-"__stringify(__STATE)"-R",\ |
| 454 | [LOCK_ENABLED_##__STATE##_READ] = __stringify(__STATE)"-ON-R", |
Peter Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 455 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 456 | static const char *usage_str[] = |
| 457 | { |
Peter Zijlstra | fabe9c4 | 2009-01-22 14:51:01 +0100 | [diff] [blame] | 458 | #define LOCKDEP_STATE(__STATE) __USAGE(__STATE) |
| 459 | #include "lockdep_states.h" |
| 460 | #undef LOCKDEP_STATE |
| 461 | [LOCK_USED] = "INITIAL USE", |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 462 | }; |
| 463 | |
| 464 | const char * __get_key_name(struct lockdep_subclass_key *key, char *str) |
| 465 | { |
Alexey Dobriyan | ffb4512 | 2007-05-08 00:28:41 -0700 | [diff] [blame] | 466 | return kallsyms_lookup((unsigned long)key, NULL, NULL, NULL, str); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 467 | } |
| 468 | |
Peter Zijlstra | 3ff176c | 2009-01-22 17:40:42 +0100 | [diff] [blame] | 469 | static inline unsigned long lock_flag(enum lock_usage_bit bit) |
| 470 | { |
| 471 | return 1UL << bit; |
| 472 | } |
| 473 | |
| 474 | static char get_usage_char(struct lock_class *class, enum lock_usage_bit bit) |
| 475 | { |
| 476 | char c = '.'; |
| 477 | |
| 478 | if (class->usage_mask & lock_flag(bit + 2)) |
| 479 | c = '+'; |
| 480 | if (class->usage_mask & lock_flag(bit)) { |
| 481 | c = '-'; |
| 482 | if (class->usage_mask & lock_flag(bit + 2)) |
| 483 | c = '?'; |
| 484 | } |
| 485 | |
| 486 | return c; |
| 487 | } |
| 488 | |
Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 489 | void get_usage_chars(struct lock_class *class, char usage[LOCK_USAGE_CHARS]) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 490 | { |
Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 491 | int i = 0; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 492 | |
Peter Zijlstra | f510b23 | 2009-01-22 17:53:47 +0100 | [diff] [blame] | 493 | #define LOCKDEP_STATE(__STATE) \ |
| 494 | usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE); \ |
| 495 | usage[i++] = get_usage_char(class, LOCK_USED_IN_##__STATE##_READ); |
| 496 | #include "lockdep_states.h" |
| 497 | #undef LOCKDEP_STATE |
| 498 | |
| 499 | usage[i] = '\0'; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 500 | } |
| 501 | |
Steven Rostedt | e5e78d0 | 2011-11-02 20:24:16 -0400 | [diff] [blame] | 502 | static void __print_lock_name(struct lock_class *class) |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 503 | { |
| 504 | char str[KSYM_NAME_LEN]; |
| 505 | const char *name; |
| 506 | |
| 507 | name = class->name; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 508 | if (!name) { |
| 509 | name = __get_key_name(class->key, str); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 510 | printk(KERN_CONT "%s", name); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 511 | } else { |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 512 | printk(KERN_CONT "%s", name); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 513 | if (class->name_version > 1) |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 514 | printk(KERN_CONT "#%d", class->name_version); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 515 | if (class->subclass) |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 516 | printk(KERN_CONT "/%d", class->subclass); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 517 | } |
Steven Rostedt | e5e78d0 | 2011-11-02 20:24:16 -0400 | [diff] [blame] | 518 | } |
| 519 | |
| 520 | static void print_lock_name(struct lock_class *class) |
| 521 | { |
| 522 | char usage[LOCK_USAGE_CHARS]; |
| 523 | |
| 524 | get_usage_chars(class, usage); |
| 525 | |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 526 | printk(KERN_CONT " ("); |
Steven Rostedt | e5e78d0 | 2011-11-02 20:24:16 -0400 | [diff] [blame] | 527 | __print_lock_name(class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 528 | printk(KERN_CONT "){%s}", usage); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | static void print_lockdep_cache(struct lockdep_map *lock) |
| 532 | { |
| 533 | const char *name; |
Tejun Heo | 9281ace | 2007-07-17 04:03:51 -0700 | [diff] [blame] | 534 | char str[KSYM_NAME_LEN]; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 535 | |
| 536 | name = lock->name; |
| 537 | if (!name) |
| 538 | name = __get_key_name(lock->key->subkeys, str); |
| 539 | |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 540 | printk(KERN_CONT "%s", name); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | static void print_lock(struct held_lock *hlock) |
| 544 | { |
Peter Zijlstra | d7bc319 | 2015-04-15 17:11:57 +0200 | [diff] [blame] | 545 | /* |
| 546 | * We can be called locklessly through debug_show_all_locks() so be |
| 547 | * extra careful, the hlock might have been released and cleared. |
| 548 | */ |
| 549 | unsigned int class_idx = hlock->class_idx; |
| 550 | |
| 551 | /* Don't re-read hlock->class_idx, can't use READ_ONCE() on bitfields: */ |
| 552 | barrier(); |
| 553 | |
| 554 | if (!class_idx || (class_idx - 1) >= MAX_LOCKDEP_KEYS) { |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 555 | printk(KERN_CONT "<RELEASED>\n"); |
Peter Zijlstra | d7bc319 | 2015-04-15 17:11:57 +0200 | [diff] [blame] | 556 | return; |
| 557 | } |
| 558 | |
Tetsuo Handa | b3c3975 | 2018-03-27 19:41:41 +0900 | [diff] [blame] | 559 | printk(KERN_CONT "%p", hlock->instance); |
Peter Zijlstra | d7bc319 | 2015-04-15 17:11:57 +0200 | [diff] [blame] | 560 | print_lock_name(lock_classes + class_idx - 1); |
Tetsuo Handa | b3c3975 | 2018-03-27 19:41:41 +0900 | [diff] [blame] | 561 | printk(KERN_CONT ", at: %pS\n", (void *)hlock->acquire_ip); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 562 | } |
| 563 | |
Tetsuo Handa | 8cc05c71 | 2018-04-06 19:41:19 +0900 | [diff] [blame^] | 564 | static void lockdep_print_held_locks(struct task_struct *p) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 565 | { |
Tetsuo Handa | 8cc05c71 | 2018-04-06 19:41:19 +0900 | [diff] [blame^] | 566 | int i, depth = READ_ONCE(p->lockdep_depth); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 567 | |
Tetsuo Handa | 8cc05c71 | 2018-04-06 19:41:19 +0900 | [diff] [blame^] | 568 | if (!depth) |
| 569 | printk("no locks held by %s/%d.\n", p->comm, task_pid_nr(p)); |
| 570 | else |
| 571 | printk("%d lock%s held by %s/%d:\n", depth, |
| 572 | depth > 1 ? "s" : "", p->comm, task_pid_nr(p)); |
| 573 | /* |
| 574 | * It's not reliable to print a task's held locks if it's not sleeping |
| 575 | * and it's not the current task. |
| 576 | */ |
| 577 | if (p->state == TASK_RUNNING && p != current) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 578 | return; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 579 | for (i = 0; i < depth; i++) { |
| 580 | printk(" #%d: ", i); |
Tetsuo Handa | 8cc05c71 | 2018-04-06 19:41:19 +0900 | [diff] [blame^] | 581 | print_lock(p->held_locks + i); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 582 | } |
| 583 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 584 | |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 585 | static void print_kernel_ident(void) |
Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 586 | { |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 587 | printk("%s %.*s %s\n", init_utsname()->release, |
Serge E. Hallyn | 96b644b | 2006-10-02 02:18:13 -0700 | [diff] [blame] | 588 | (int)strcspn(init_utsname()->version, " "), |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 589 | init_utsname()->version, |
| 590 | print_tainted()); |
Dave Jones | 99de055 | 2006-09-29 02:00:10 -0700 | [diff] [blame] | 591 | } |
| 592 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 593 | static int very_verbose(struct lock_class *class) |
| 594 | { |
| 595 | #if VERY_VERBOSE |
| 596 | return class_filter(class); |
| 597 | #endif |
| 598 | return 0; |
| 599 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 600 | |
| 601 | /* |
| 602 | * Is this the address of a static object: |
| 603 | */ |
Sasha Levin | 8dce7a9 | 2013-06-13 18:41:16 -0400 | [diff] [blame] | 604 | #ifdef __KERNEL__ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 605 | static int static_obj(void *obj) |
| 606 | { |
| 607 | unsigned long start = (unsigned long) &_stext, |
| 608 | end = (unsigned long) &_end, |
| 609 | addr = (unsigned long) obj; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 610 | |
| 611 | /* |
| 612 | * static variable? |
| 613 | */ |
| 614 | if ((addr >= start) && (addr < end)) |
| 615 | return 1; |
| 616 | |
Mike Frysinger | 2a9ad18 | 2009-09-22 16:44:16 -0700 | [diff] [blame] | 617 | if (arch_is_kernel_data(addr)) |
| 618 | return 1; |
| 619 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 620 | /* |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 621 | * in-kernel percpu var? |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 622 | */ |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 623 | if (is_kernel_percpu_address(addr)) |
| 624 | return 1; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 625 | |
| 626 | /* |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 627 | * module static or percpu var? |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 628 | */ |
Tejun Heo | 10fad5e | 2010-03-10 18:57:54 +0900 | [diff] [blame] | 629 | return is_module_address(addr) || is_module_percpu_address(addr); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 630 | } |
Sasha Levin | 8dce7a9 | 2013-06-13 18:41:16 -0400 | [diff] [blame] | 631 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 632 | |
| 633 | /* |
| 634 | * To make lock name printouts unique, we calculate a unique |
| 635 | * class->name_version generation counter: |
| 636 | */ |
| 637 | static int count_matching_names(struct lock_class *new_class) |
| 638 | { |
| 639 | struct lock_class *class; |
| 640 | int count = 0; |
| 641 | |
| 642 | if (!new_class->name) |
| 643 | return 0; |
| 644 | |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 645 | list_for_each_entry_rcu(class, &all_lock_classes, lock_entry) { |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 646 | if (new_class->key - new_class->subclass == class->key) |
| 647 | return class->name_version; |
| 648 | if (class->name && !strcmp(class->name, new_class->name)) |
| 649 | count = max(count, class->name_version); |
| 650 | } |
| 651 | |
| 652 | return count + 1; |
| 653 | } |
| 654 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 655 | static inline struct lock_class * |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 656 | look_up_lock_class(const struct lockdep_map *lock, unsigned int subclass) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 657 | { |
| 658 | struct lockdep_subclass_key *key; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 659 | struct hlist_head *hash_head; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 660 | struct lock_class *class; |
| 661 | |
Hitoshi Mitake | 4ba053c | 2010-10-13 17:30:26 +0900 | [diff] [blame] | 662 | if (unlikely(subclass >= MAX_LOCKDEP_SUBCLASSES)) { |
| 663 | debug_locks_off(); |
| 664 | printk(KERN_ERR |
| 665 | "BUG: looking up invalid subclass: %u\n", subclass); |
| 666 | printk(KERN_ERR |
| 667 | "turning off the locking correctness validator.\n"); |
| 668 | dump_stack(); |
| 669 | return NULL; |
| 670 | } |
| 671 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 672 | /* |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 673 | * If it is not initialised then it has never been locked, |
| 674 | * so it won't be present in the hash table. |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 675 | */ |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 676 | if (unlikely(!lock->key)) |
| 677 | return NULL; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 678 | |
| 679 | /* |
| 680 | * NOTE: the class-key must be unique. For dynamic locks, a static |
| 681 | * lock_class_key variable is passed in through the mutex_init() |
| 682 | * (or spin_lock_init()) call - which acts as the key. For static |
| 683 | * locks we use the lock object itself as the key. |
| 684 | */ |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 685 | BUILD_BUG_ON(sizeof(struct lock_class_key) > |
| 686 | sizeof(struct lockdep_map)); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 687 | |
| 688 | key = lock->key->subkeys + subclass; |
| 689 | |
| 690 | hash_head = classhashentry(key); |
| 691 | |
| 692 | /* |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 693 | * We do an RCU walk of the hash, see lockdep_free_key_range(). |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 694 | */ |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 695 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 696 | return NULL; |
| 697 | |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 698 | hlist_for_each_entry_rcu(class, hash_head, hash_entry) { |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 699 | if (class->key == key) { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 700 | /* |
| 701 | * Huh! same key, different name? Did someone trample |
| 702 | * on some memory? We're most confused. |
| 703 | */ |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 704 | WARN_ON_ONCE(class->name != lock->name); |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 705 | return class; |
Peter Zijlstra | 4b32d0a | 2007-07-19 01:48:59 -0700 | [diff] [blame] | 706 | } |
| 707 | } |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 708 | |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 709 | return NULL; |
| 710 | } |
| 711 | |
| 712 | /* |
| 713 | * Static locks do not have their class-keys yet - for them the key is |
| 714 | * the lock object itself. If the lock is in the per cpu area, the |
| 715 | * canonical address of the lock (per cpu offset removed) is used. |
| 716 | */ |
| 717 | static bool assign_lock_key(struct lockdep_map *lock) |
| 718 | { |
| 719 | unsigned long can_addr, addr = (unsigned long)lock; |
| 720 | |
| 721 | if (__is_kernel_percpu_address(addr, &can_addr)) |
| 722 | lock->key = (void *)can_addr; |
| 723 | else if (__is_module_percpu_address(addr, &can_addr)) |
| 724 | lock->key = (void *)can_addr; |
| 725 | else if (static_obj(lock)) |
| 726 | lock->key = (void *)lock; |
| 727 | else { |
| 728 | /* Debug-check: all keys must be persistent! */ |
| 729 | debug_locks_off(); |
| 730 | pr_err("INFO: trying to register non-static key.\n"); |
| 731 | pr_err("the code is fine but needs lockdep annotation.\n"); |
| 732 | pr_err("turning off the locking correctness validator.\n"); |
| 733 | dump_stack(); |
| 734 | return false; |
| 735 | } |
| 736 | |
| 737 | return true; |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | /* |
| 741 | * Register a lock's class in the hash-table, if the class is not present |
| 742 | * yet. Otherwise we look it up. We cache the result in the lock object |
| 743 | * itself, so actual lookup of the hash should be once per lock object. |
| 744 | */ |
Denys Vlasenko | c003ed9 | 2016-04-08 20:58:46 +0200 | [diff] [blame] | 745 | static struct lock_class * |
Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 746 | register_lock_class(struct lockdep_map *lock, unsigned int subclass, int force) |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 747 | { |
| 748 | struct lockdep_subclass_key *key; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 749 | struct hlist_head *hash_head; |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 750 | struct lock_class *class; |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 751 | |
| 752 | DEBUG_LOCKS_WARN_ON(!irqs_disabled()); |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 753 | |
| 754 | class = look_up_lock_class(lock, subclass); |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 755 | if (likely(class)) |
Yong Zhang | 87cdee7 | 2011-11-09 16:07:14 +0800 | [diff] [blame] | 756 | goto out_set_class_cache; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 757 | |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 758 | if (!lock->key) { |
| 759 | if (!assign_lock_key(lock)) |
| 760 | return NULL; |
| 761 | } else if (!static_obj(lock->key)) { |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 762 | return NULL; |
| 763 | } |
| 764 | |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 765 | key = lock->key->subkeys + subclass; |
| 766 | hash_head = classhashentry(key); |
| 767 | |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 768 | if (!graph_lock()) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 769 | return NULL; |
| 770 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 771 | /* |
| 772 | * We have to do the hash-walk again, to avoid races |
| 773 | * with another CPU: |
| 774 | */ |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 775 | hlist_for_each_entry_rcu(class, hash_head, hash_entry) { |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 776 | if (class->key == key) |
| 777 | goto out_unlock_set; |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 778 | } |
| 779 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 780 | /* |
| 781 | * Allocate a new key from the static array, and add it to |
| 782 | * the hash: |
| 783 | */ |
| 784 | if (nr_lock_classes >= MAX_LOCKDEP_KEYS) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 785 | if (!debug_locks_off_graph_unlock()) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 786 | return NULL; |
| 787 | } |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 788 | |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 789 | print_lockdep_off("BUG: MAX_LOCKDEP_KEYS too low!"); |
Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 790 | dump_stack(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 791 | return NULL; |
| 792 | } |
| 793 | class = lock_classes + nr_lock_classes++; |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 794 | debug_atomic_inc(nr_unused_locks); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 795 | class->key = key; |
| 796 | class->name = lock->name; |
| 797 | class->subclass = subclass; |
| 798 | INIT_LIST_HEAD(&class->lock_entry); |
| 799 | INIT_LIST_HEAD(&class->locks_before); |
| 800 | INIT_LIST_HEAD(&class->locks_after); |
| 801 | class->name_version = count_matching_names(class); |
| 802 | /* |
| 803 | * We use RCU's safe list-add method to make |
| 804 | * parallel walking of the hash-list safe: |
| 805 | */ |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 806 | hlist_add_head_rcu(&class->hash_entry, hash_head); |
Dale Farnsworth | 1481197 | 2008-02-25 23:03:02 +0100 | [diff] [blame] | 807 | /* |
| 808 | * Add it to the global list of classes: |
| 809 | */ |
| 810 | list_add_tail_rcu(&class->lock_entry, &all_lock_classes); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 811 | |
| 812 | if (verbose(class)) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 813 | graph_unlock(); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 814 | |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 815 | printk("\nnew class %px: %s", class->key, class->name); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 816 | if (class->name_version > 1) |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 817 | printk(KERN_CONT "#%d", class->name_version); |
| 818 | printk(KERN_CONT "\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 819 | dump_stack(); |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 820 | |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 821 | if (!graph_lock()) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 822 | return NULL; |
| 823 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 824 | } |
| 825 | out_unlock_set: |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 826 | graph_unlock(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 827 | |
Yong Zhang | 87cdee7 | 2011-11-09 16:07:14 +0800 | [diff] [blame] | 828 | out_set_class_cache: |
Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 829 | if (!subclass || force) |
Hitoshi Mitake | 6201625 | 2010-10-05 18:01:51 +0900 | [diff] [blame] | 830 | lock->class_cache[0] = class; |
| 831 | else if (subclass < NR_LOCKDEP_CACHING_CLASSES) |
| 832 | lock->class_cache[subclass] = class; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 833 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 834 | /* |
| 835 | * Hash collision, did we smoke some? We found a class with a matching |
| 836 | * hash but the subclass -- which is hashed in -- didn't match. |
| 837 | */ |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 838 | if (DEBUG_LOCKS_WARN_ON(class->subclass != subclass)) |
| 839 | return NULL; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 840 | |
| 841 | return class; |
| 842 | } |
| 843 | |
Peter Zijlstra | ca58abc | 2007-07-19 01:48:53 -0700 | [diff] [blame] | 844 | #ifdef CONFIG_PROVE_LOCKING |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 845 | /* |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 846 | * Allocate a lockdep entry. (assumes the graph_lock held, returns |
| 847 | * with NULL on failure) |
| 848 | */ |
| 849 | static struct lock_list *alloc_list_entry(void) |
| 850 | { |
| 851 | if (nr_list_entries >= MAX_LOCKDEP_ENTRIES) { |
| 852 | if (!debug_locks_off_graph_unlock()) |
| 853 | return NULL; |
| 854 | |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 855 | print_lockdep_off("BUG: MAX_LOCKDEP_ENTRIES too low!"); |
Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 856 | dump_stack(); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 857 | return NULL; |
| 858 | } |
| 859 | return list_entries + nr_list_entries++; |
| 860 | } |
| 861 | |
| 862 | /* |
| 863 | * Add a new dependency to the head of the list: |
| 864 | */ |
Tahsin Erdogan | 83f0616 | 2016-11-08 00:02:07 -0800 | [diff] [blame] | 865 | static int add_lock_to_list(struct lock_class *this, struct list_head *head, |
| 866 | unsigned long ip, int distance, |
| 867 | struct stack_trace *trace) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 868 | { |
| 869 | struct lock_list *entry; |
| 870 | /* |
| 871 | * Lock not present yet - get a new dependency struct and |
| 872 | * add it to the list: |
| 873 | */ |
| 874 | entry = alloc_list_entry(); |
| 875 | if (!entry) |
| 876 | return 0; |
| 877 | |
Zhu Yi | 7487017 | 2008-08-27 14:33:00 +0800 | [diff] [blame] | 878 | entry->class = this; |
| 879 | entry->distance = distance; |
Yong Zhang | 4726f2a | 2010-05-04 14:16:48 +0800 | [diff] [blame] | 880 | entry->trace = *trace; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 881 | /* |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 882 | * Both allocation and removal are done under the graph lock; but |
| 883 | * iteration is under RCU-sched; see look_up_lock_class() and |
| 884 | * lockdep_free_key_range(). |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 885 | */ |
| 886 | list_add_tail_rcu(&entry->entry, head); |
| 887 | |
| 888 | return 1; |
| 889 | } |
| 890 | |
Peter Zijlstra | 98c33ed | 2009-07-21 13:19:07 +0200 | [diff] [blame] | 891 | /* |
| 892 | * For good efficiency of modular, we use power of 2 |
| 893 | */ |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 894 | #define MAX_CIRCULAR_QUEUE_SIZE 4096UL |
| 895 | #define CQ_MASK (MAX_CIRCULAR_QUEUE_SIZE-1) |
| 896 | |
Peter Zijlstra | 98c33ed | 2009-07-21 13:19:07 +0200 | [diff] [blame] | 897 | /* |
| 898 | * The circular_queue and helpers is used to implement the |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 899 | * breadth-first search(BFS)algorithem, by which we can build |
| 900 | * the shortest path from the next lock to be acquired to the |
| 901 | * previous held lock if there is a circular between them. |
Peter Zijlstra | 98c33ed | 2009-07-21 13:19:07 +0200 | [diff] [blame] | 902 | */ |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 903 | struct circular_queue { |
| 904 | unsigned long element[MAX_CIRCULAR_QUEUE_SIZE]; |
| 905 | unsigned int front, rear; |
| 906 | }; |
| 907 | |
| 908 | static struct circular_queue lock_cq; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 909 | |
Ming Lei | 12f3dfd | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 910 | unsigned int max_bfs_queue_depth; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 911 | |
Ming Lei | e351b66 | 2009-07-22 22:48:09 +0800 | [diff] [blame] | 912 | static unsigned int lockdep_dependency_gen_id; |
| 913 | |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 914 | static inline void __cq_init(struct circular_queue *cq) |
| 915 | { |
| 916 | cq->front = cq->rear = 0; |
Ming Lei | e351b66 | 2009-07-22 22:48:09 +0800 | [diff] [blame] | 917 | lockdep_dependency_gen_id++; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 918 | } |
| 919 | |
| 920 | static inline int __cq_empty(struct circular_queue *cq) |
| 921 | { |
| 922 | return (cq->front == cq->rear); |
| 923 | } |
| 924 | |
| 925 | static inline int __cq_full(struct circular_queue *cq) |
| 926 | { |
| 927 | return ((cq->rear + 1) & CQ_MASK) == cq->front; |
| 928 | } |
| 929 | |
| 930 | static inline int __cq_enqueue(struct circular_queue *cq, unsigned long elem) |
| 931 | { |
| 932 | if (__cq_full(cq)) |
| 933 | return -1; |
| 934 | |
| 935 | cq->element[cq->rear] = elem; |
| 936 | cq->rear = (cq->rear + 1) & CQ_MASK; |
| 937 | return 0; |
| 938 | } |
| 939 | |
| 940 | static inline int __cq_dequeue(struct circular_queue *cq, unsigned long *elem) |
| 941 | { |
| 942 | if (__cq_empty(cq)) |
| 943 | return -1; |
| 944 | |
| 945 | *elem = cq->element[cq->front]; |
| 946 | cq->front = (cq->front + 1) & CQ_MASK; |
| 947 | return 0; |
| 948 | } |
| 949 | |
| 950 | static inline unsigned int __cq_get_elem_count(struct circular_queue *cq) |
| 951 | { |
| 952 | return (cq->rear - cq->front) & CQ_MASK; |
| 953 | } |
| 954 | |
| 955 | static inline void mark_lock_accessed(struct lock_list *lock, |
| 956 | struct lock_list *parent) |
| 957 | { |
| 958 | unsigned long nr; |
Peter Zijlstra | 98c33ed | 2009-07-21 13:19:07 +0200 | [diff] [blame] | 959 | |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 960 | nr = lock - list_entries; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 961 | WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */ |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 962 | lock->parent = parent; |
Ming Lei | e351b66 | 2009-07-22 22:48:09 +0800 | [diff] [blame] | 963 | lock->class->dep_gen_id = lockdep_dependency_gen_id; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 964 | } |
| 965 | |
| 966 | static inline unsigned long lock_accessed(struct lock_list *lock) |
| 967 | { |
| 968 | unsigned long nr; |
Peter Zijlstra | 98c33ed | 2009-07-21 13:19:07 +0200 | [diff] [blame] | 969 | |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 970 | nr = lock - list_entries; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 971 | WARN_ON(nr >= nr_list_entries); /* Out-of-bounds, input fail */ |
Ming Lei | e351b66 | 2009-07-22 22:48:09 +0800 | [diff] [blame] | 972 | return lock->class->dep_gen_id == lockdep_dependency_gen_id; |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 973 | } |
| 974 | |
| 975 | static inline struct lock_list *get_lock_parent(struct lock_list *child) |
| 976 | { |
| 977 | return child->parent; |
| 978 | } |
| 979 | |
| 980 | static inline int get_lock_depth(struct lock_list *child) |
| 981 | { |
| 982 | int depth = 0; |
| 983 | struct lock_list *parent; |
| 984 | |
| 985 | while ((parent = get_lock_parent(child))) { |
| 986 | child = parent; |
| 987 | depth++; |
| 988 | } |
| 989 | return depth; |
| 990 | } |
| 991 | |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 992 | static int __bfs(struct lock_list *source_entry, |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 993 | void *data, |
| 994 | int (*match)(struct lock_list *entry, void *data), |
| 995 | struct lock_list **target_entry, |
| 996 | int forward) |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 997 | { |
| 998 | struct lock_list *entry; |
Ming Lei | d588e46 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 999 | struct list_head *head; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1000 | struct circular_queue *cq = &lock_cq; |
| 1001 | int ret = 1; |
| 1002 | |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1003 | if (match(source_entry, data)) { |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1004 | *target_entry = source_entry; |
| 1005 | ret = 0; |
| 1006 | goto exit; |
| 1007 | } |
| 1008 | |
Ming Lei | d588e46 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1009 | if (forward) |
| 1010 | head = &source_entry->class->locks_after; |
| 1011 | else |
| 1012 | head = &source_entry->class->locks_before; |
| 1013 | |
| 1014 | if (list_empty(head)) |
| 1015 | goto exit; |
| 1016 | |
| 1017 | __cq_init(cq); |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1018 | __cq_enqueue(cq, (unsigned long)source_entry); |
| 1019 | |
| 1020 | while (!__cq_empty(cq)) { |
| 1021 | struct lock_list *lock; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1022 | |
| 1023 | __cq_dequeue(cq, (unsigned long *)&lock); |
| 1024 | |
| 1025 | if (!lock->class) { |
| 1026 | ret = -2; |
| 1027 | goto exit; |
| 1028 | } |
| 1029 | |
| 1030 | if (forward) |
| 1031 | head = &lock->class->locks_after; |
| 1032 | else |
| 1033 | head = &lock->class->locks_before; |
| 1034 | |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 1035 | DEBUG_LOCKS_WARN_ON(!irqs_disabled()); |
| 1036 | |
| 1037 | list_for_each_entry_rcu(entry, head, entry) { |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1038 | if (!lock_accessed(entry)) { |
Ming Lei | 12f3dfd | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1039 | unsigned int cq_depth; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1040 | mark_lock_accessed(entry, lock); |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1041 | if (match(entry, data)) { |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1042 | *target_entry = entry; |
| 1043 | ret = 0; |
| 1044 | goto exit; |
| 1045 | } |
| 1046 | |
| 1047 | if (__cq_enqueue(cq, (unsigned long)entry)) { |
| 1048 | ret = -1; |
| 1049 | goto exit; |
| 1050 | } |
Ming Lei | 12f3dfd | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1051 | cq_depth = __cq_get_elem_count(cq); |
| 1052 | if (max_bfs_queue_depth < cq_depth) |
| 1053 | max_bfs_queue_depth = cq_depth; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1054 | } |
| 1055 | } |
| 1056 | } |
| 1057 | exit: |
| 1058 | return ret; |
| 1059 | } |
| 1060 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1061 | static inline int __bfs_forwards(struct lock_list *src_entry, |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1062 | void *data, |
| 1063 | int (*match)(struct lock_list *entry, void *data), |
| 1064 | struct lock_list **target_entry) |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1065 | { |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1066 | return __bfs(src_entry, data, match, target_entry, 1); |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1067 | |
| 1068 | } |
| 1069 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1070 | static inline int __bfs_backwards(struct lock_list *src_entry, |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1071 | void *data, |
| 1072 | int (*match)(struct lock_list *entry, void *data), |
| 1073 | struct lock_list **target_entry) |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1074 | { |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1075 | return __bfs(src_entry, data, match, target_entry, 0); |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1076 | |
| 1077 | } |
| 1078 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1079 | /* |
| 1080 | * Recursive, forwards-direction lock-dependency checking, used for |
| 1081 | * both noncyclic checking and for hardirq-unsafe/softirq-unsafe |
| 1082 | * checking. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1083 | */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1084 | |
| 1085 | /* |
| 1086 | * Print a dependency chain entry (this is only done when a deadlock |
| 1087 | * has been detected): |
| 1088 | */ |
| 1089 | static noinline int |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1090 | print_circular_bug_entry(struct lock_list *target, int depth) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1091 | { |
| 1092 | if (debug_locks_silent) |
| 1093 | return 0; |
| 1094 | printk("\n-> #%u", depth); |
| 1095 | print_lock_name(target->class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1096 | printk(KERN_CONT ":\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1097 | print_stack_trace(&target->trace, 6); |
| 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1102 | static void |
| 1103 | print_circular_lock_scenario(struct held_lock *src, |
| 1104 | struct held_lock *tgt, |
| 1105 | struct lock_list *prt) |
| 1106 | { |
| 1107 | struct lock_class *source = hlock_class(src); |
| 1108 | struct lock_class *target = hlock_class(tgt); |
| 1109 | struct lock_class *parent = prt->class; |
| 1110 | |
| 1111 | /* |
| 1112 | * A direct locking problem where unsafe_class lock is taken |
| 1113 | * directly by safe_class lock, then all we need to show |
| 1114 | * is the deadlock scenario, as it is obvious that the |
| 1115 | * unsafe lock is taken under the safe lock. |
| 1116 | * |
| 1117 | * But if there is a chain instead, where the safe lock takes |
| 1118 | * an intermediate lock (middle_class) where this lock is |
| 1119 | * not the same as the safe lock, then the lock chain is |
| 1120 | * used to describe the problem. Otherwise we would need |
| 1121 | * to show a different CPU case for each link in the chain |
| 1122 | * from the safe_class lock to the unsafe_class lock. |
| 1123 | */ |
| 1124 | if (parent != source) { |
| 1125 | printk("Chain exists of:\n "); |
| 1126 | __print_lock_name(source); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1127 | printk(KERN_CONT " --> "); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1128 | __print_lock_name(parent); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1129 | printk(KERN_CONT " --> "); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1130 | __print_lock_name(target); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1131 | printk(KERN_CONT "\n\n"); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1132 | } |
| 1133 | |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 1134 | printk(" Possible unsafe locking scenario:\n\n"); |
| 1135 | printk(" CPU0 CPU1\n"); |
| 1136 | printk(" ---- ----\n"); |
| 1137 | printk(" lock("); |
| 1138 | __print_lock_name(target); |
| 1139 | printk(KERN_CONT ");\n"); |
| 1140 | printk(" lock("); |
| 1141 | __print_lock_name(parent); |
| 1142 | printk(KERN_CONT ");\n"); |
| 1143 | printk(" lock("); |
| 1144 | __print_lock_name(target); |
| 1145 | printk(KERN_CONT ");\n"); |
| 1146 | printk(" lock("); |
| 1147 | __print_lock_name(source); |
| 1148 | printk(KERN_CONT ");\n"); |
| 1149 | printk("\n *** DEADLOCK ***\n\n"); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1150 | } |
| 1151 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1152 | /* |
| 1153 | * When a circular dependency is detected, print the |
| 1154 | * header first: |
| 1155 | */ |
| 1156 | static noinline int |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1157 | print_circular_bug_header(struct lock_list *entry, unsigned int depth, |
| 1158 | struct held_lock *check_src, |
| 1159 | struct held_lock *check_tgt) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1160 | { |
| 1161 | struct task_struct *curr = current; |
| 1162 | |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1163 | if (debug_locks_silent) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1164 | return 0; |
| 1165 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1166 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1167 | pr_warn("======================================================\n"); |
| 1168 | pr_warn("WARNING: possible circular locking dependency detected\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 1169 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1170 | pr_warn("------------------------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1171 | pr_warn("%s/%d is trying to acquire lock:\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1172 | curr->comm, task_pid_nr(curr)); |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1173 | print_lock(check_src); |
Byungchul Park | 383a4bc | 2017-08-07 16:12:55 +0900 | [diff] [blame] | 1174 | |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 1175 | pr_warn("\nbut task is already holding lock:\n"); |
Byungchul Park | 383a4bc | 2017-08-07 16:12:55 +0900 | [diff] [blame] | 1176 | |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1177 | print_lock(check_tgt); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1178 | pr_warn("\nwhich lock already depends on the new lock.\n\n"); |
| 1179 | pr_warn("\nthe existing dependency chain (in reverse order) is:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1180 | |
| 1181 | print_circular_bug_entry(entry, depth); |
| 1182 | |
| 1183 | return 0; |
| 1184 | } |
| 1185 | |
Ming Lei | 9e2d551 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1186 | static inline int class_equal(struct lock_list *entry, void *data) |
| 1187 | { |
| 1188 | return entry->class == data; |
| 1189 | } |
| 1190 | |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1191 | static noinline int print_circular_bug(struct lock_list *this, |
| 1192 | struct lock_list *target, |
| 1193 | struct held_lock *check_src, |
Byungchul Park | 383a4bc | 2017-08-07 16:12:55 +0900 | [diff] [blame] | 1194 | struct held_lock *check_tgt, |
| 1195 | struct stack_trace *trace) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1196 | { |
| 1197 | struct task_struct *curr = current; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1198 | struct lock_list *parent; |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1199 | struct lock_list *first_parent; |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1200 | int depth; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1201 | |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1202 | if (!debug_locks_off_graph_unlock() || debug_locks_silent) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1203 | return 0; |
| 1204 | |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 1205 | if (!save_trace(&this->trace)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1206 | return 0; |
| 1207 | |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1208 | depth = get_lock_depth(target); |
| 1209 | |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1210 | print_circular_bug_header(target, depth, check_src, check_tgt); |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1211 | |
| 1212 | parent = get_lock_parent(target); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1213 | first_parent = parent; |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1214 | |
| 1215 | while (parent) { |
| 1216 | print_circular_bug_entry(parent, --depth); |
| 1217 | parent = get_lock_parent(parent); |
| 1218 | } |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1219 | |
| 1220 | printk("\nother info that might help us debug this:\n\n"); |
Steven Rostedt | f418581 | 2011-04-20 21:41:55 -0400 | [diff] [blame] | 1221 | print_circular_lock_scenario(check_src, check_tgt, |
| 1222 | first_parent); |
| 1223 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1224 | lockdep_print_held_locks(curr); |
| 1225 | |
| 1226 | printk("\nstack backtrace:\n"); |
| 1227 | dump_stack(); |
| 1228 | |
| 1229 | return 0; |
| 1230 | } |
| 1231 | |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1232 | static noinline int print_bfs_bug(int ret) |
| 1233 | { |
| 1234 | if (!debug_locks_off_graph_unlock()) |
| 1235 | return 0; |
| 1236 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 1237 | /* |
| 1238 | * Breadth-first-search failed, graph got corrupted? |
| 1239 | */ |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1240 | WARN(1, "lockdep bfs error:%d\n", ret); |
| 1241 | |
| 1242 | return 0; |
| 1243 | } |
| 1244 | |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1245 | static int noop_count(struct lock_list *entry, void *data) |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1246 | { |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1247 | (*(unsigned long *)data)++; |
| 1248 | return 0; |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1249 | } |
| 1250 | |
Fengguang Wu | 5216d53 | 2013-11-09 00:55:35 +0800 | [diff] [blame] | 1251 | static unsigned long __lockdep_count_forward_deps(struct lock_list *this) |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1252 | { |
| 1253 | unsigned long count = 0; |
| 1254 | struct lock_list *uninitialized_var(target_entry); |
| 1255 | |
| 1256 | __bfs_forwards(this, (void *)&count, noop_count, &target_entry); |
| 1257 | |
| 1258 | return count; |
| 1259 | } |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1260 | unsigned long lockdep_count_forward_deps(struct lock_class *class) |
| 1261 | { |
| 1262 | unsigned long ret, flags; |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1263 | struct lock_list this; |
| 1264 | |
| 1265 | this.parent = NULL; |
| 1266 | this.class = class; |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1267 | |
| 1268 | local_irq_save(flags); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 1269 | arch_spin_lock(&lockdep_lock); |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1270 | ret = __lockdep_count_forward_deps(&this); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 1271 | arch_spin_unlock(&lockdep_lock); |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1272 | local_irq_restore(flags); |
| 1273 | |
| 1274 | return ret; |
| 1275 | } |
| 1276 | |
Fengguang Wu | 5216d53 | 2013-11-09 00:55:35 +0800 | [diff] [blame] | 1277 | static unsigned long __lockdep_count_backward_deps(struct lock_list *this) |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1278 | { |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1279 | unsigned long count = 0; |
| 1280 | struct lock_list *uninitialized_var(target_entry); |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1281 | |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1282 | __bfs_backwards(this, (void *)&count, noop_count, &target_entry); |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1283 | |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1284 | return count; |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1285 | } |
| 1286 | |
| 1287 | unsigned long lockdep_count_backward_deps(struct lock_class *class) |
| 1288 | { |
| 1289 | unsigned long ret, flags; |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1290 | struct lock_list this; |
| 1291 | |
| 1292 | this.parent = NULL; |
| 1293 | this.class = class; |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1294 | |
| 1295 | local_irq_save(flags); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 1296 | arch_spin_lock(&lockdep_lock); |
Ming Lei | ef68102 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1297 | ret = __lockdep_count_backward_deps(&this); |
Thomas Gleixner | 0199c4e | 2009-12-02 20:01:25 +0100 | [diff] [blame] | 1298 | arch_spin_unlock(&lockdep_lock); |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1299 | local_irq_restore(flags); |
| 1300 | |
| 1301 | return ret; |
| 1302 | } |
| 1303 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1304 | /* |
| 1305 | * Prove that the dependency graph starting at <entry> can not |
| 1306 | * lead to <target>. Print an error and return 0 if it does. |
| 1307 | */ |
| 1308 | static noinline int |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1309 | check_noncircular(struct lock_list *root, struct lock_class *target, |
| 1310 | struct lock_list **target_entry) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1311 | { |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1312 | int result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1313 | |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 1314 | debug_atomic_inc(nr_cyclic_checks); |
David Miller | 419ca3f | 2008-07-29 21:45:03 -0700 | [diff] [blame] | 1315 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1316 | result = __bfs_forwards(root, target, class_equal, target_entry); |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1317 | |
| 1318 | return result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1319 | } |
| 1320 | |
Peter Zijlstra | ae81330 | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 1321 | static noinline int |
| 1322 | check_redundant(struct lock_list *root, struct lock_class *target, |
| 1323 | struct lock_list **target_entry) |
| 1324 | { |
| 1325 | int result; |
| 1326 | |
| 1327 | debug_atomic_inc(nr_redundant_checks); |
| 1328 | |
| 1329 | result = __bfs_forwards(root, target, class_equal, target_entry); |
| 1330 | |
| 1331 | return result; |
| 1332 | } |
| 1333 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 1334 | #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1335 | /* |
| 1336 | * Forwards and backwards subgraph searching, for the purposes of |
| 1337 | * proving that two subgraphs can be connected by a new dependency |
| 1338 | * without creating any illegal irq-safe -> irq-unsafe lock dependency. |
| 1339 | */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1340 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1341 | static inline int usage_match(struct lock_list *entry, void *bit) |
| 1342 | { |
| 1343 | return entry->class->usage_mask & (1 << (enum lock_usage_bit)bit); |
| 1344 | } |
| 1345 | |
| 1346 | |
| 1347 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1348 | /* |
| 1349 | * Find a node in the forwards-direction dependency sub-graph starting |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1350 | * at @root->class that matches @bit. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1351 | * |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1352 | * Return 0 if such a node exists in the subgraph, and put that node |
| 1353 | * into *@target_entry. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1354 | * |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1355 | * Return 1 otherwise and keep *@target_entry unchanged. |
| 1356 | * Return <0 on error. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1357 | */ |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1358 | static int |
| 1359 | find_usage_forwards(struct lock_list *root, enum lock_usage_bit bit, |
| 1360 | struct lock_list **target_entry) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1361 | { |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1362 | int result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1363 | |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 1364 | debug_atomic_inc(nr_find_usage_forwards_checks); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1365 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1366 | result = __bfs_forwards(root, (void *)bit, usage_match, target_entry); |
| 1367 | |
| 1368 | return result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1369 | } |
| 1370 | |
| 1371 | /* |
| 1372 | * Find a node in the backwards-direction dependency sub-graph starting |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1373 | * at @root->class that matches @bit. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1374 | * |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1375 | * Return 0 if such a node exists in the subgraph, and put that node |
| 1376 | * into *@target_entry. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1377 | * |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1378 | * Return 1 otherwise and keep *@target_entry unchanged. |
| 1379 | * Return <0 on error. |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1380 | */ |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1381 | static int |
| 1382 | find_usage_backwards(struct lock_list *root, enum lock_usage_bit bit, |
| 1383 | struct lock_list **target_entry) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1384 | { |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1385 | int result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1386 | |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 1387 | debug_atomic_inc(nr_find_usage_backwards_checks); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1388 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1389 | result = __bfs_backwards(root, (void *)bit, usage_match, target_entry); |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1390 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1391 | return result; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1392 | } |
| 1393 | |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1394 | static void print_lock_class_header(struct lock_class *class, int depth) |
| 1395 | { |
| 1396 | int bit; |
| 1397 | |
| 1398 | printk("%*s->", depth, ""); |
| 1399 | print_lock_name(class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1400 | printk(KERN_CONT " ops: %lu", class->ops); |
| 1401 | printk(KERN_CONT " {\n"); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1402 | |
| 1403 | for (bit = 0; bit < LOCK_USAGE_STATES; bit++) { |
| 1404 | if (class->usage_mask & (1 << bit)) { |
| 1405 | int len = depth; |
| 1406 | |
| 1407 | len += printk("%*s %s", depth, "", usage_str[bit]); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1408 | len += printk(KERN_CONT " at:\n"); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1409 | print_stack_trace(class->usage_traces + bit, len); |
| 1410 | } |
| 1411 | } |
| 1412 | printk("%*s }\n", depth, ""); |
| 1413 | |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 1414 | printk("%*s ... key at: [<%px>] %pS\n", |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1415 | depth, "", class->key, class->key); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1416 | } |
| 1417 | |
| 1418 | /* |
| 1419 | * printk the shortest lock dependencies from @start to @end in reverse order: |
| 1420 | */ |
| 1421 | static void __used |
| 1422 | print_shortest_lock_dependencies(struct lock_list *leaf, |
| 1423 | struct lock_list *root) |
| 1424 | { |
| 1425 | struct lock_list *entry = leaf; |
| 1426 | int depth; |
| 1427 | |
| 1428 | /*compute depth from generated tree by BFS*/ |
| 1429 | depth = get_lock_depth(leaf); |
| 1430 | |
| 1431 | do { |
| 1432 | print_lock_class_header(entry->class, depth); |
| 1433 | printk("%*s ... acquired at:\n", depth, ""); |
| 1434 | print_stack_trace(&entry->trace, 2); |
| 1435 | printk("\n"); |
| 1436 | |
| 1437 | if (depth == 0 && (entry != root)) { |
Steven Rostedt | 6be8c39 | 2011-04-20 21:41:58 -0400 | [diff] [blame] | 1438 | printk("lockdep:%s bad path found in chain graph\n", __func__); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1439 | break; |
| 1440 | } |
| 1441 | |
| 1442 | entry = get_lock_parent(entry); |
| 1443 | depth--; |
| 1444 | } while (entry && (depth >= 0)); |
| 1445 | |
| 1446 | return; |
| 1447 | } |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1448 | |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1449 | static void |
| 1450 | print_irq_lock_scenario(struct lock_list *safe_entry, |
| 1451 | struct lock_list *unsafe_entry, |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 1452 | struct lock_class *prev_class, |
| 1453 | struct lock_class *next_class) |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1454 | { |
| 1455 | struct lock_class *safe_class = safe_entry->class; |
| 1456 | struct lock_class *unsafe_class = unsafe_entry->class; |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 1457 | struct lock_class *middle_class = prev_class; |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1458 | |
| 1459 | if (middle_class == safe_class) |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 1460 | middle_class = next_class; |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1461 | |
| 1462 | /* |
| 1463 | * A direct locking problem where unsafe_class lock is taken |
| 1464 | * directly by safe_class lock, then all we need to show |
| 1465 | * is the deadlock scenario, as it is obvious that the |
| 1466 | * unsafe lock is taken under the safe lock. |
| 1467 | * |
| 1468 | * But if there is a chain instead, where the safe lock takes |
| 1469 | * an intermediate lock (middle_class) where this lock is |
| 1470 | * not the same as the safe lock, then the lock chain is |
| 1471 | * used to describe the problem. Otherwise we would need |
| 1472 | * to show a different CPU case for each link in the chain |
| 1473 | * from the safe_class lock to the unsafe_class lock. |
| 1474 | */ |
| 1475 | if (middle_class != unsafe_class) { |
| 1476 | printk("Chain exists of:\n "); |
| 1477 | __print_lock_name(safe_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1478 | printk(KERN_CONT " --> "); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1479 | __print_lock_name(middle_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1480 | printk(KERN_CONT " --> "); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1481 | __print_lock_name(unsafe_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1482 | printk(KERN_CONT "\n\n"); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1483 | } |
| 1484 | |
| 1485 | printk(" Possible interrupt unsafe locking scenario:\n\n"); |
| 1486 | printk(" CPU0 CPU1\n"); |
| 1487 | printk(" ---- ----\n"); |
| 1488 | printk(" lock("); |
| 1489 | __print_lock_name(unsafe_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1490 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1491 | printk(" local_irq_disable();\n"); |
| 1492 | printk(" lock("); |
| 1493 | __print_lock_name(safe_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1494 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1495 | printk(" lock("); |
| 1496 | __print_lock_name(middle_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1497 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1498 | printk(" <Interrupt>\n"); |
| 1499 | printk(" lock("); |
| 1500 | __print_lock_name(safe_class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1501 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1502 | printk("\n *** DEADLOCK ***\n\n"); |
| 1503 | } |
| 1504 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1505 | static int |
| 1506 | print_bad_irq_dependency(struct task_struct *curr, |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1507 | struct lock_list *prev_root, |
| 1508 | struct lock_list *next_root, |
| 1509 | struct lock_list *backwards_entry, |
| 1510 | struct lock_list *forwards_entry, |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1511 | struct held_lock *prev, |
| 1512 | struct held_lock *next, |
| 1513 | enum lock_usage_bit bit1, |
| 1514 | enum lock_usage_bit bit2, |
| 1515 | const char *irqclass) |
| 1516 | { |
| 1517 | if (!debug_locks_off_graph_unlock() || debug_locks_silent) |
| 1518 | return 0; |
| 1519 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1520 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1521 | pr_warn("=====================================================\n"); |
| 1522 | pr_warn("WARNING: %s-safe -> %s-unsafe lock order detected\n", |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1523 | irqclass, irqclass); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 1524 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1525 | pr_warn("-----------------------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1526 | pr_warn("%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] | 1527 | curr->comm, task_pid_nr(curr), |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1528 | curr->hardirq_context, hardirq_count() >> HARDIRQ_SHIFT, |
| 1529 | curr->softirq_context, softirq_count() >> SOFTIRQ_SHIFT, |
| 1530 | curr->hardirqs_enabled, |
| 1531 | curr->softirqs_enabled); |
| 1532 | print_lock(next); |
| 1533 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1534 | pr_warn("\nand this task is already holding:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1535 | print_lock(prev); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1536 | pr_warn("which would create a new lock dependency:\n"); |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1537 | print_lock_name(hlock_class(prev)); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1538 | pr_cont(" ->"); |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1539 | print_lock_name(hlock_class(next)); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1540 | pr_cont("\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1541 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1542 | pr_warn("\nbut this new dependency connects a %s-irq-safe lock:\n", |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1543 | irqclass); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1544 | print_lock_name(backwards_entry->class); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1545 | pr_warn("\n... which became %s-irq-safe at:\n", irqclass); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1546 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1547 | print_stack_trace(backwards_entry->class->usage_traces + bit1, 1); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1548 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1549 | pr_warn("\nto a %s-irq-unsafe lock:\n", irqclass); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1550 | print_lock_name(forwards_entry->class); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1551 | pr_warn("\n... which became %s-irq-unsafe at:\n", irqclass); |
| 1552 | pr_warn("..."); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1553 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1554 | print_stack_trace(forwards_entry->class->usage_traces + bit2, 1); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1555 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1556 | pr_warn("\nother info that might help us debug this:\n\n"); |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 1557 | print_irq_lock_scenario(backwards_entry, forwards_entry, |
| 1558 | hlock_class(prev), hlock_class(next)); |
Steven Rostedt | 3003eba | 2011-04-20 21:41:54 -0400 | [diff] [blame] | 1559 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1560 | lockdep_print_held_locks(curr); |
| 1561 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1562 | pr_warn("\nthe dependencies between %s-irq-safe lock and the holding lock:\n", irqclass); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1563 | if (!save_trace(&prev_root->trace)) |
| 1564 | return 0; |
| 1565 | print_shortest_lock_dependencies(backwards_entry, prev_root); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1566 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1567 | pr_warn("\nthe dependencies between the lock to be acquired"); |
| 1568 | pr_warn(" and %s-irq-unsafe lock:\n", irqclass); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1569 | if (!save_trace(&next_root->trace)) |
| 1570 | return 0; |
| 1571 | print_shortest_lock_dependencies(forwards_entry, next_root); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1572 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1573 | pr_warn("\nstack backtrace:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1574 | dump_stack(); |
| 1575 | |
| 1576 | return 0; |
| 1577 | } |
| 1578 | |
| 1579 | static int |
| 1580 | check_usage(struct task_struct *curr, struct held_lock *prev, |
| 1581 | struct held_lock *next, enum lock_usage_bit bit_backwards, |
| 1582 | enum lock_usage_bit bit_forwards, const char *irqclass) |
| 1583 | { |
| 1584 | int ret; |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1585 | struct lock_list this, that; |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1586 | struct lock_list *uninitialized_var(target_entry); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1587 | struct lock_list *uninitialized_var(target_entry1); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1588 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1589 | this.parent = NULL; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1590 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1591 | this.class = hlock_class(prev); |
| 1592 | ret = find_usage_backwards(&this, bit_backwards, &target_entry); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1593 | if (ret < 0) |
| 1594 | return print_bfs_bug(ret); |
| 1595 | if (ret == 1) |
| 1596 | return ret; |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1597 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1598 | that.parent = NULL; |
| 1599 | that.class = hlock_class(next); |
| 1600 | ret = find_usage_forwards(&that, bit_forwards, &target_entry1); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1601 | if (ret < 0) |
| 1602 | return print_bfs_bug(ret); |
| 1603 | if (ret == 1) |
| 1604 | return ret; |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1605 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1606 | return print_bad_irq_dependency(curr, &this, &that, |
| 1607 | target_entry, target_entry1, |
| 1608 | prev, next, |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1609 | bit_backwards, bit_forwards, irqclass); |
| 1610 | } |
| 1611 | |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1612 | static const char *state_names[] = { |
| 1613 | #define LOCKDEP_STATE(__STATE) \ |
Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 1614 | __stringify(__STATE), |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1615 | #include "lockdep_states.h" |
| 1616 | #undef LOCKDEP_STATE |
| 1617 | }; |
| 1618 | |
| 1619 | static const char *state_rnames[] = { |
| 1620 | #define LOCKDEP_STATE(__STATE) \ |
Peter Zijlstra | b4b136f | 2009-01-29 14:50:36 +0100 | [diff] [blame] | 1621 | __stringify(__STATE)"-READ", |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1622 | #include "lockdep_states.h" |
| 1623 | #undef LOCKDEP_STATE |
| 1624 | }; |
| 1625 | |
| 1626 | static inline const char *state_name(enum lock_usage_bit bit) |
| 1627 | { |
| 1628 | return (bit & 1) ? state_rnames[bit >> 2] : state_names[bit >> 2]; |
| 1629 | } |
| 1630 | |
| 1631 | static int exclusive_bit(int new_bit) |
| 1632 | { |
| 1633 | /* |
| 1634 | * USED_IN |
| 1635 | * USED_IN_READ |
| 1636 | * ENABLED |
| 1637 | * ENABLED_READ |
| 1638 | * |
| 1639 | * bit 0 - write/read |
| 1640 | * bit 1 - used_in/enabled |
| 1641 | * bit 2+ state |
| 1642 | */ |
| 1643 | |
| 1644 | int state = new_bit & ~3; |
| 1645 | int dir = new_bit & 2; |
| 1646 | |
| 1647 | /* |
| 1648 | * keep state, bit flip the direction and strip read. |
| 1649 | */ |
| 1650 | return state | (dir ^ 2); |
| 1651 | } |
| 1652 | |
| 1653 | static int check_irq_usage(struct task_struct *curr, struct held_lock *prev, |
| 1654 | struct held_lock *next, enum lock_usage_bit bit) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1655 | { |
| 1656 | /* |
| 1657 | * Prove that the new dependency does not connect a hardirq-safe |
| 1658 | * lock with a hardirq-unsafe lock - to achieve this we search |
| 1659 | * the backwards-subgraph starting at <prev>, and the |
| 1660 | * forwards-subgraph starting at <next>: |
| 1661 | */ |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1662 | if (!check_usage(curr, prev, next, bit, |
| 1663 | exclusive_bit(bit), state_name(bit))) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1664 | return 0; |
| 1665 | |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1666 | bit++; /* _READ */ |
| 1667 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1668 | /* |
| 1669 | * Prove that the new dependency does not connect a hardirq-safe-read |
| 1670 | * lock with a hardirq-unsafe lock - to achieve this we search |
| 1671 | * the backwards-subgraph starting at <prev>, and the |
| 1672 | * forwards-subgraph starting at <next>: |
| 1673 | */ |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1674 | if (!check_usage(curr, prev, next, bit, |
| 1675 | exclusive_bit(bit), state_name(bit))) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1676 | return 0; |
| 1677 | |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1678 | return 1; |
| 1679 | } |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1680 | |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1681 | static int |
| 1682 | check_prev_add_irq(struct task_struct *curr, struct held_lock *prev, |
| 1683 | struct held_lock *next) |
| 1684 | { |
| 1685 | #define LOCKDEP_STATE(__STATE) \ |
| 1686 | if (!check_irq_usage(curr, prev, next, LOCK_USED_IN_##__STATE)) \ |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 1687 | return 0; |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 1688 | #include "lockdep_states.h" |
| 1689 | #undef LOCKDEP_STATE |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 1690 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1691 | return 1; |
| 1692 | } |
| 1693 | |
| 1694 | static void inc_chains(void) |
| 1695 | { |
| 1696 | if (current->hardirq_context) |
| 1697 | nr_hardirq_chains++; |
| 1698 | else { |
| 1699 | if (current->softirq_context) |
| 1700 | nr_softirq_chains++; |
| 1701 | else |
| 1702 | nr_process_chains++; |
| 1703 | } |
| 1704 | } |
| 1705 | |
| 1706 | #else |
| 1707 | |
| 1708 | static inline int |
| 1709 | check_prev_add_irq(struct task_struct *curr, struct held_lock *prev, |
| 1710 | struct held_lock *next) |
| 1711 | { |
| 1712 | return 1; |
| 1713 | } |
| 1714 | |
| 1715 | static inline void inc_chains(void) |
| 1716 | { |
| 1717 | nr_process_chains++; |
| 1718 | } |
| 1719 | |
| 1720 | #endif |
| 1721 | |
Steven Rostedt | 48702ec | 2011-04-20 21:41:56 -0400 | [diff] [blame] | 1722 | static void |
| 1723 | print_deadlock_scenario(struct held_lock *nxt, |
| 1724 | struct held_lock *prv) |
| 1725 | { |
| 1726 | struct lock_class *next = hlock_class(nxt); |
| 1727 | struct lock_class *prev = hlock_class(prv); |
| 1728 | |
| 1729 | printk(" Possible unsafe locking scenario:\n\n"); |
| 1730 | printk(" CPU0\n"); |
| 1731 | printk(" ----\n"); |
| 1732 | printk(" lock("); |
| 1733 | __print_lock_name(prev); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1734 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 48702ec | 2011-04-20 21:41:56 -0400 | [diff] [blame] | 1735 | printk(" lock("); |
| 1736 | __print_lock_name(next); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 1737 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 48702ec | 2011-04-20 21:41:56 -0400 | [diff] [blame] | 1738 | printk("\n *** DEADLOCK ***\n\n"); |
| 1739 | printk(" May be due to missing lock nesting notation\n\n"); |
| 1740 | } |
| 1741 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1742 | static int |
| 1743 | print_deadlock_bug(struct task_struct *curr, struct held_lock *prev, |
| 1744 | struct held_lock *next) |
| 1745 | { |
| 1746 | if (!debug_locks_off_graph_unlock() || debug_locks_silent) |
| 1747 | return 0; |
| 1748 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1749 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1750 | pr_warn("============================================\n"); |
| 1751 | pr_warn("WARNING: possible recursive locking detected\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 1752 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 1753 | pr_warn("--------------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1754 | pr_warn("%s/%d is trying to acquire lock:\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 1755 | curr->comm, task_pid_nr(curr)); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1756 | print_lock(next); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1757 | pr_warn("\nbut task is already holding lock:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1758 | print_lock(prev); |
| 1759 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1760 | pr_warn("\nother info that might help us debug this:\n"); |
Steven Rostedt | 48702ec | 2011-04-20 21:41:56 -0400 | [diff] [blame] | 1761 | print_deadlock_scenario(next, prev); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1762 | lockdep_print_held_locks(curr); |
| 1763 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 1764 | pr_warn("\nstack backtrace:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1765 | dump_stack(); |
| 1766 | |
| 1767 | return 0; |
| 1768 | } |
| 1769 | |
| 1770 | /* |
| 1771 | * Check whether we are holding such a class already. |
| 1772 | * |
| 1773 | * (Note that this has to be done separately, because the graph cannot |
| 1774 | * detect such classes of deadlocks.) |
| 1775 | * |
| 1776 | * Returns: 0 on deadlock detected, 1 on OK, 2 on recursive read |
| 1777 | */ |
| 1778 | static int |
| 1779 | check_deadlock(struct task_struct *curr, struct held_lock *next, |
| 1780 | struct lockdep_map *next_instance, int read) |
| 1781 | { |
| 1782 | struct held_lock *prev; |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1783 | struct held_lock *nest = NULL; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1784 | int i; |
| 1785 | |
| 1786 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 1787 | prev = curr->held_locks + i; |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1788 | |
| 1789 | if (prev->instance == next->nest_lock) |
| 1790 | nest = prev; |
| 1791 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1792 | if (hlock_class(prev) != hlock_class(next)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1793 | continue; |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1794 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1795 | /* |
| 1796 | * Allow read-after-read recursion of the same |
| 1797 | * lock class (i.e. read_lock(lock)+read_lock(lock)): |
| 1798 | */ |
| 1799 | if ((read == 2) && prev->read) |
| 1800 | return 2; |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 1801 | |
| 1802 | /* |
| 1803 | * We're holding the nest_lock, which serializes this lock's |
| 1804 | * nesting behaviour. |
| 1805 | */ |
| 1806 | if (nest) |
| 1807 | return 2; |
| 1808 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1809 | return print_deadlock_bug(curr, prev, next); |
| 1810 | } |
| 1811 | return 1; |
| 1812 | } |
| 1813 | |
| 1814 | /* |
| 1815 | * There was a chain-cache miss, and we are about to add a new dependency |
| 1816 | * to a previous lock. We recursively validate the following rules: |
| 1817 | * |
| 1818 | * - would the adding of the <prev> -> <next> dependency create a |
| 1819 | * circular dependency in the graph? [== circular deadlock] |
| 1820 | * |
| 1821 | * - does the new prev->next dependency connect any hardirq-safe lock |
| 1822 | * (in the full backwards-subgraph starting at <prev>) with any |
| 1823 | * hardirq-unsafe lock (in the full forwards-subgraph starting at |
| 1824 | * <next>)? [== illegal lock inversion with hardirq contexts] |
| 1825 | * |
| 1826 | * - does the new prev->next dependency connect any softirq-safe lock |
| 1827 | * (in the full backwards-subgraph starting at <prev>) with any |
| 1828 | * softirq-unsafe lock (in the full forwards-subgraph starting at |
| 1829 | * <next>)? [== illegal lock inversion with softirq contexts] |
| 1830 | * |
| 1831 | * any of these scenarios could lead to a deadlock. |
| 1832 | * |
| 1833 | * Then if all the validations pass, we add the forwards and backwards |
| 1834 | * dependency. |
| 1835 | */ |
| 1836 | static int |
| 1837 | check_prev_add(struct task_struct *curr, struct held_lock *prev, |
Byungchul Park | ce07a941 | 2017-08-07 16:12:51 +0900 | [diff] [blame] | 1838 | struct held_lock *next, int distance, struct stack_trace *trace, |
| 1839 | int (*save)(struct stack_trace *trace)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1840 | { |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1841 | struct lock_list *uninitialized_var(target_entry); |
Peter Zijlstra | 8b405d5 | 2017-10-04 11:13:37 +0200 | [diff] [blame] | 1842 | struct lock_list *entry; |
| 1843 | struct lock_list this; |
| 1844 | int ret; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1845 | |
| 1846 | /* |
| 1847 | * Prove that the new <prev> -> <next> dependency would not |
| 1848 | * create a circular dependency in the graph. (We do this by |
| 1849 | * forward-recursing into the graph starting at <next>, and |
| 1850 | * checking whether we can reach <prev>.) |
| 1851 | * |
| 1852 | * We are using global variables to control the recursion, to |
| 1853 | * keep the stackframe size of the recursive functions low: |
| 1854 | */ |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1855 | this.class = hlock_class(next); |
| 1856 | this.parent = NULL; |
| 1857 | ret = check_noncircular(&this, hlock_class(prev), &target_entry); |
Peter Zijlstra | 8b405d5 | 2017-10-04 11:13:37 +0200 | [diff] [blame] | 1858 | if (unlikely(!ret)) { |
| 1859 | if (!trace->entries) { |
| 1860 | /* |
| 1861 | * If @save fails here, the printing might trigger |
| 1862 | * a WARN but because of the !nr_entries it should |
| 1863 | * not do bad things. |
| 1864 | */ |
| 1865 | save(trace); |
| 1866 | } |
Byungchul Park | 383a4bc | 2017-08-07 16:12:55 +0900 | [diff] [blame] | 1867 | return print_circular_bug(&this, target_entry, next, prev, trace); |
Peter Zijlstra | 8b405d5 | 2017-10-04 11:13:37 +0200 | [diff] [blame] | 1868 | } |
Ming Lei | db0002a | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1869 | else if (unlikely(ret < 0)) |
| 1870 | return print_bfs_bug(ret); |
Ming Lei | c94aa5c | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 1871 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1872 | if (!check_prev_add_irq(curr, prev, next)) |
| 1873 | return 0; |
| 1874 | |
| 1875 | /* |
| 1876 | * For recursive read-locks we do all the dependency checks, |
| 1877 | * but we dont store read-triggered dependencies (only |
| 1878 | * write-triggered dependencies). This ensures that only the |
| 1879 | * write-side dependencies matter, and that if for example a |
| 1880 | * write-lock never takes any other locks, then the reads are |
| 1881 | * equivalent to a NOP. |
| 1882 | */ |
| 1883 | if (next->read == 2 || prev->read == 2) |
| 1884 | return 1; |
| 1885 | /* |
| 1886 | * Is the <prev> -> <next> dependency already present? |
| 1887 | * |
| 1888 | * (this may occur even though this is a new chain: consider |
| 1889 | * e.g. the L1 -> L2 -> L3 -> L4 and the L5 -> L1 -> L2 -> L3 |
| 1890 | * chains - the second one will be new, but L1 already has |
| 1891 | * L2 added to its dependency list, due to the first chain.) |
| 1892 | */ |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1893 | list_for_each_entry(entry, &hlock_class(prev)->locks_after, entry) { |
| 1894 | if (entry->class == hlock_class(next)) { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1895 | if (distance == 1) |
| 1896 | entry->distance = 1; |
Byungchul Park | 70911fd | 2017-08-07 16:12:50 +0900 | [diff] [blame] | 1897 | return 1; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1898 | } |
| 1899 | } |
| 1900 | |
Peter Zijlstra | ae81330 | 2017-03-03 10:13:38 +0100 | [diff] [blame] | 1901 | /* |
| 1902 | * Is the <prev> -> <next> link redundant? |
| 1903 | */ |
| 1904 | this.class = hlock_class(prev); |
| 1905 | this.parent = NULL; |
| 1906 | ret = check_redundant(&this, hlock_class(next), &target_entry); |
| 1907 | if (!ret) { |
| 1908 | debug_atomic_inc(nr_redundant); |
| 1909 | return 2; |
| 1910 | } |
| 1911 | if (ret < 0) |
| 1912 | return print_bfs_bug(ret); |
| 1913 | |
| 1914 | |
Peter Zijlstra | 8b405d5 | 2017-10-04 11:13:37 +0200 | [diff] [blame] | 1915 | if (!trace->entries && !save(trace)) |
Byungchul Park | ce07a941 | 2017-08-07 16:12:51 +0900 | [diff] [blame] | 1916 | return 0; |
Yong Zhang | 4726f2a | 2010-05-04 14:16:48 +0800 | [diff] [blame] | 1917 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1918 | /* |
| 1919 | * Ok, all validations passed, add the new lock |
| 1920 | * to the previous lock's dependency list: |
| 1921 | */ |
Tahsin Erdogan | 83f0616 | 2016-11-08 00:02:07 -0800 | [diff] [blame] | 1922 | ret = add_lock_to_list(hlock_class(next), |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1923 | &hlock_class(prev)->locks_after, |
Byungchul Park | ce07a941 | 2017-08-07 16:12:51 +0900 | [diff] [blame] | 1924 | next->acquire_ip, distance, trace); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1925 | |
| 1926 | if (!ret) |
| 1927 | return 0; |
| 1928 | |
Tahsin Erdogan | 83f0616 | 2016-11-08 00:02:07 -0800 | [diff] [blame] | 1929 | ret = add_lock_to_list(hlock_class(prev), |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 1930 | &hlock_class(next)->locks_before, |
Byungchul Park | ce07a941 | 2017-08-07 16:12:51 +0900 | [diff] [blame] | 1931 | next->acquire_ip, distance, trace); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1932 | if (!ret) |
| 1933 | return 0; |
| 1934 | |
Byungchul Park | 70911fd | 2017-08-07 16:12:50 +0900 | [diff] [blame] | 1935 | return 2; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1936 | } |
| 1937 | |
| 1938 | /* |
| 1939 | * Add the dependency to all directly-previous locks that are 'relevant'. |
| 1940 | * The ones that are relevant are (in increasing distance from curr): |
| 1941 | * all consecutive trylock entries and the final non-trylock entry - or |
| 1942 | * the end of this context's lock-chain - whichever comes first. |
| 1943 | */ |
| 1944 | static int |
| 1945 | check_prevs_add(struct task_struct *curr, struct held_lock *next) |
| 1946 | { |
| 1947 | int depth = curr->lockdep_depth; |
| 1948 | struct held_lock *hlock; |
Peter Zijlstra | 8b405d5 | 2017-10-04 11:13:37 +0200 | [diff] [blame] | 1949 | struct stack_trace trace = { |
| 1950 | .nr_entries = 0, |
| 1951 | .max_entries = 0, |
| 1952 | .entries = NULL, |
| 1953 | .skip = 0, |
| 1954 | }; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1955 | |
| 1956 | /* |
| 1957 | * Debugging checks. |
| 1958 | * |
| 1959 | * Depth must not be zero for a non-head lock: |
| 1960 | */ |
| 1961 | if (!depth) |
| 1962 | goto out_bug; |
| 1963 | /* |
| 1964 | * At least two relevant locks must exist for this |
| 1965 | * to be a head: |
| 1966 | */ |
| 1967 | if (curr->held_locks[depth].irq_context != |
| 1968 | curr->held_locks[depth-1].irq_context) |
| 1969 | goto out_bug; |
| 1970 | |
| 1971 | for (;;) { |
| 1972 | int distance = curr->lockdep_depth - depth + 1; |
Oleg Nesterov | 1b5ff81 | 2014-01-20 19:20:10 +0100 | [diff] [blame] | 1973 | hlock = curr->held_locks + depth - 1; |
Byungchul Park | ce07a941 | 2017-08-07 16:12:51 +0900 | [diff] [blame] | 1974 | |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 1975 | /* |
| 1976 | * Only non-recursive-read entries get new dependencies |
| 1977 | * added: |
| 1978 | */ |
| 1979 | if (hlock->read != 2 && hlock->check) { |
| 1980 | int ret = check_prev_add(curr, hlock, next, distance, &trace, save_trace); |
| 1981 | if (!ret) |
| 1982 | return 0; |
| 1983 | |
| 1984 | /* |
| 1985 | * Stop after the first non-trylock entry, |
| 1986 | * as non-trylock entries have added their |
| 1987 | * own direct dependencies already, so this |
| 1988 | * lock is connected to them indirectly: |
| 1989 | */ |
| 1990 | if (!hlock->trylock) |
| 1991 | break; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1992 | } |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 1993 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 1994 | depth--; |
| 1995 | /* |
| 1996 | * End of lock-stack? |
| 1997 | */ |
| 1998 | if (!depth) |
| 1999 | break; |
| 2000 | /* |
| 2001 | * Stop the search if we cross into another context: |
| 2002 | */ |
| 2003 | if (curr->held_locks[depth].irq_context != |
| 2004 | curr->held_locks[depth-1].irq_context) |
| 2005 | break; |
| 2006 | } |
| 2007 | return 1; |
| 2008 | out_bug: |
| 2009 | if (!debug_locks_off_graph_unlock()) |
| 2010 | return 0; |
| 2011 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2012 | /* |
| 2013 | * Clearly we all shouldn't be here, but since we made it we |
| 2014 | * can reliable say we messed up our state. See the above two |
| 2015 | * gotos for reasons why we could possibly end up here. |
| 2016 | */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2017 | WARN_ON(1); |
| 2018 | |
| 2019 | return 0; |
| 2020 | } |
| 2021 | |
| 2022 | unsigned long nr_lock_chains; |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2023 | struct lock_chain lock_chains[MAX_LOCKDEP_CHAINS]; |
Huang, Ying | cd1a28e | 2008-06-23 11:20:54 +0800 | [diff] [blame] | 2024 | int nr_chain_hlocks; |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2025 | static u16 chain_hlocks[MAX_LOCKDEP_CHAIN_HLOCKS]; |
| 2026 | |
| 2027 | struct lock_class *lock_chain_get_class(struct lock_chain *chain, int i) |
| 2028 | { |
| 2029 | return lock_classes + chain_hlocks[chain->base + i]; |
| 2030 | } |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2031 | |
| 2032 | /* |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2033 | * Returns the index of the first held_lock of the current chain |
| 2034 | */ |
| 2035 | static inline int get_first_held_lock(struct task_struct *curr, |
| 2036 | struct held_lock *hlock) |
| 2037 | { |
| 2038 | int i; |
| 2039 | struct held_lock *hlock_curr; |
| 2040 | |
| 2041 | for (i = curr->lockdep_depth - 1; i >= 0; i--) { |
| 2042 | hlock_curr = curr->held_locks + i; |
| 2043 | if (hlock_curr->irq_context != hlock->irq_context) |
| 2044 | break; |
| 2045 | |
| 2046 | } |
| 2047 | |
| 2048 | return ++i; |
| 2049 | } |
| 2050 | |
Borislav Petkov | 5c8a010 | 2016-04-04 10:42:07 +0200 | [diff] [blame] | 2051 | #ifdef CONFIG_DEBUG_LOCKDEP |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2052 | /* |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2053 | * Returns the next chain_key iteration |
| 2054 | */ |
| 2055 | static u64 print_chain_key_iteration(int class_idx, u64 chain_key) |
| 2056 | { |
| 2057 | u64 new_chain_key = iterate_chain_key(chain_key, class_idx); |
| 2058 | |
| 2059 | printk(" class_idx:%d -> chain_key:%016Lx", |
| 2060 | class_idx, |
| 2061 | (unsigned long long)new_chain_key); |
| 2062 | return new_chain_key; |
| 2063 | } |
| 2064 | |
| 2065 | static void |
| 2066 | print_chain_keys_held_locks(struct task_struct *curr, struct held_lock *hlock_next) |
| 2067 | { |
| 2068 | struct held_lock *hlock; |
| 2069 | u64 chain_key = 0; |
| 2070 | int depth = curr->lockdep_depth; |
| 2071 | int i; |
| 2072 | |
| 2073 | printk("depth: %u\n", depth + 1); |
| 2074 | for (i = get_first_held_lock(curr, hlock_next); i < depth; i++) { |
| 2075 | hlock = curr->held_locks + i; |
| 2076 | chain_key = print_chain_key_iteration(hlock->class_idx, chain_key); |
| 2077 | |
| 2078 | print_lock(hlock); |
| 2079 | } |
| 2080 | |
| 2081 | print_chain_key_iteration(hlock_next->class_idx, chain_key); |
| 2082 | print_lock(hlock_next); |
| 2083 | } |
| 2084 | |
| 2085 | static void print_chain_keys_chain(struct lock_chain *chain) |
| 2086 | { |
| 2087 | int i; |
| 2088 | u64 chain_key = 0; |
| 2089 | int class_id; |
| 2090 | |
| 2091 | printk("depth: %u\n", chain->depth); |
| 2092 | for (i = 0; i < chain->depth; i++) { |
| 2093 | class_id = chain_hlocks[chain->base + i]; |
| 2094 | chain_key = print_chain_key_iteration(class_id + 1, chain_key); |
| 2095 | |
| 2096 | print_lock_name(lock_classes + class_id); |
| 2097 | printk("\n"); |
| 2098 | } |
| 2099 | } |
| 2100 | |
| 2101 | static void print_collision(struct task_struct *curr, |
| 2102 | struct held_lock *hlock_next, |
| 2103 | struct lock_chain *chain) |
| 2104 | { |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2105 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2106 | pr_warn("============================\n"); |
| 2107 | pr_warn("WARNING: chain_key collision\n"); |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2108 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2109 | pr_warn("----------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2110 | pr_warn("%s/%d: ", current->comm, task_pid_nr(current)); |
| 2111 | pr_warn("Hash chain already cached but the contents don't match!\n"); |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2112 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2113 | pr_warn("Held locks:"); |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2114 | print_chain_keys_held_locks(curr, hlock_next); |
| 2115 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2116 | pr_warn("Locks in cached chain:"); |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2117 | print_chain_keys_chain(chain); |
| 2118 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2119 | pr_warn("\nstack backtrace:\n"); |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2120 | dump_stack(); |
| 2121 | } |
Borislav Petkov | 5c8a010 | 2016-04-04 10:42:07 +0200 | [diff] [blame] | 2122 | #endif |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2123 | |
| 2124 | /* |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2125 | * Checks whether the chain and the current held locks are consistent |
| 2126 | * in depth and also in content. If they are not it most likely means |
| 2127 | * that there was a collision during the calculation of the chain_key. |
| 2128 | * Returns: 0 not passed, 1 passed |
| 2129 | */ |
| 2130 | static int check_no_collision(struct task_struct *curr, |
| 2131 | struct held_lock *hlock, |
| 2132 | struct lock_chain *chain) |
| 2133 | { |
| 2134 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 2135 | int i, j, id; |
| 2136 | |
| 2137 | i = get_first_held_lock(curr, hlock); |
| 2138 | |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2139 | if (DEBUG_LOCKS_WARN_ON(chain->depth != curr->lockdep_depth - (i - 1))) { |
| 2140 | print_collision(curr, hlock, chain); |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2141 | return 0; |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2142 | } |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2143 | |
| 2144 | for (j = 0; j < chain->depth - 1; j++, i++) { |
| 2145 | id = curr->held_locks[i].class_idx - 1; |
| 2146 | |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2147 | if (DEBUG_LOCKS_WARN_ON(chain_hlocks[chain->base + j] != id)) { |
| 2148 | print_collision(curr, hlock, chain); |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2149 | return 0; |
Alfredo Alvarez Fernandez | 39e2e17 | 2016-03-30 19:03:36 +0200 | [diff] [blame] | 2150 | } |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2151 | } |
| 2152 | #endif |
| 2153 | return 1; |
| 2154 | } |
| 2155 | |
| 2156 | /* |
Byungchul Park | 49347a9 | 2017-08-07 16:12:49 +0900 | [diff] [blame] | 2157 | * This is for building a chain between just two different classes, |
| 2158 | * instead of adding a new hlock upon current, which is done by |
| 2159 | * add_chain_cache(). |
| 2160 | * |
| 2161 | * This can be called in any context with two classes, while |
| 2162 | * add_chain_cache() must be done within the lock owener's context |
| 2163 | * since it uses hlock which might be racy in another context. |
| 2164 | */ |
| 2165 | static inline int add_chain_cache_classes(unsigned int prev, |
| 2166 | unsigned int next, |
| 2167 | unsigned int irq_context, |
| 2168 | u64 chain_key) |
| 2169 | { |
| 2170 | struct hlist_head *hash_head = chainhashentry(chain_key); |
| 2171 | struct lock_chain *chain; |
| 2172 | |
| 2173 | /* |
| 2174 | * Allocate a new chain entry from the static array, and add |
| 2175 | * it to the hash: |
| 2176 | */ |
| 2177 | |
| 2178 | /* |
| 2179 | * We might need to take the graph lock, ensure we've got IRQs |
| 2180 | * disabled to make this an IRQ-safe lock.. for recursion reasons |
| 2181 | * lockdep won't complain about its own locking errors. |
| 2182 | */ |
| 2183 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2184 | return 0; |
| 2185 | |
| 2186 | if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) { |
| 2187 | if (!debug_locks_off_graph_unlock()) |
| 2188 | return 0; |
| 2189 | |
| 2190 | print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!"); |
| 2191 | dump_stack(); |
| 2192 | return 0; |
| 2193 | } |
| 2194 | |
| 2195 | chain = lock_chains + nr_lock_chains++; |
| 2196 | chain->chain_key = chain_key; |
| 2197 | chain->irq_context = irq_context; |
| 2198 | chain->depth = 2; |
| 2199 | if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) { |
| 2200 | chain->base = nr_chain_hlocks; |
| 2201 | nr_chain_hlocks += chain->depth; |
| 2202 | chain_hlocks[chain->base] = prev - 1; |
| 2203 | chain_hlocks[chain->base + 1] = next -1; |
| 2204 | } |
| 2205 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 2206 | /* |
| 2207 | * Important for check_no_collision(). |
| 2208 | */ |
| 2209 | else { |
| 2210 | if (!debug_locks_off_graph_unlock()) |
| 2211 | return 0; |
| 2212 | |
| 2213 | print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!"); |
| 2214 | dump_stack(); |
| 2215 | return 0; |
| 2216 | } |
| 2217 | #endif |
| 2218 | |
| 2219 | hlist_add_head_rcu(&chain->entry, hash_head); |
| 2220 | debug_atomic_inc(chain_lookup_misses); |
| 2221 | inc_chains(); |
| 2222 | |
| 2223 | return 1; |
| 2224 | } |
| 2225 | |
| 2226 | /* |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2227 | * Adds a dependency chain into chain hashtable. And must be called with |
| 2228 | * graph_lock held. |
| 2229 | * |
| 2230 | * Return 0 if fail, and graph_lock is released. |
| 2231 | * Return 1 if succeed, with graph_lock held. |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2232 | */ |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2233 | static inline int add_chain_cache(struct task_struct *curr, |
| 2234 | struct held_lock *hlock, |
| 2235 | u64 chain_key) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2236 | { |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2237 | struct lock_class *class = hlock_class(hlock); |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 2238 | struct hlist_head *hash_head = chainhashentry(chain_key); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2239 | struct lock_chain *chain; |
Steven Rostedt | e0944ee | 2011-04-20 21:42:00 -0400 | [diff] [blame] | 2240 | int i, j; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2241 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2242 | /* |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2243 | * Allocate a new chain entry from the static array, and add |
| 2244 | * it to the hash: |
| 2245 | */ |
| 2246 | |
| 2247 | /* |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2248 | * We might need to take the graph lock, ensure we've got IRQs |
| 2249 | * disabled to make this an IRQ-safe lock.. for recursion reasons |
| 2250 | * lockdep won't complain about its own locking errors. |
| 2251 | */ |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 2252 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2253 | return 0; |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2254 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2255 | if (unlikely(nr_lock_chains >= MAX_LOCKDEP_CHAINS)) { |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 2256 | if (!debug_locks_off_graph_unlock()) |
| 2257 | return 0; |
| 2258 | |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 2259 | print_lockdep_off("BUG: MAX_LOCKDEP_CHAINS too low!"); |
Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 2260 | dump_stack(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2261 | return 0; |
| 2262 | } |
| 2263 | chain = lock_chains + nr_lock_chains++; |
| 2264 | chain->chain_key = chain_key; |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2265 | chain->irq_context = hlock->irq_context; |
Ingo Molnar | 9e4e755 | 2016-02-29 10:03:58 +0100 | [diff] [blame] | 2266 | i = get_first_held_lock(curr, hlock); |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2267 | chain->depth = curr->lockdep_depth + 1 - i; |
Peter Zijlstra | 75dd602 | 2016-03-30 11:36:59 +0200 | [diff] [blame] | 2268 | |
| 2269 | BUILD_BUG_ON((1UL << 24) <= ARRAY_SIZE(chain_hlocks)); |
| 2270 | BUILD_BUG_ON((1UL << 6) <= ARRAY_SIZE(curr->held_locks)); |
| 2271 | BUILD_BUG_ON((1UL << 8*sizeof(chain_hlocks[0])) <= ARRAY_SIZE(lock_classes)); |
| 2272 | |
Steven Rostedt | e0944ee | 2011-04-20 21:42:00 -0400 | [diff] [blame] | 2273 | if (likely(nr_chain_hlocks + chain->depth <= MAX_LOCKDEP_CHAIN_HLOCKS)) { |
| 2274 | chain->base = nr_chain_hlocks; |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2275 | for (j = 0; j < chain->depth - 1; j++, i++) { |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2276 | int lock_id = curr->held_locks[i].class_idx - 1; |
Huang, Ying | 443cd50 | 2008-06-20 16:39:21 +0800 | [diff] [blame] | 2277 | chain_hlocks[chain->base + j] = lock_id; |
| 2278 | } |
| 2279 | chain_hlocks[chain->base + j] = class - lock_classes; |
| 2280 | } |
Peter Zijlstra | 75dd602 | 2016-03-30 11:36:59 +0200 | [diff] [blame] | 2281 | |
| 2282 | if (nr_chain_hlocks < MAX_LOCKDEP_CHAIN_HLOCKS) |
| 2283 | nr_chain_hlocks += chain->depth; |
| 2284 | |
| 2285 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 2286 | /* |
| 2287 | * Important for check_no_collision(). |
| 2288 | */ |
| 2289 | if (unlikely(nr_chain_hlocks > MAX_LOCKDEP_CHAIN_HLOCKS)) { |
Byungchul Park | f9af456 | 2017-01-13 11:42:04 +0900 | [diff] [blame] | 2290 | if (!debug_locks_off_graph_unlock()) |
Peter Zijlstra | 75dd602 | 2016-03-30 11:36:59 +0200 | [diff] [blame] | 2291 | return 0; |
| 2292 | |
| 2293 | print_lockdep_off("BUG: MAX_LOCKDEP_CHAIN_HLOCKS too low!"); |
| 2294 | dump_stack(); |
| 2295 | return 0; |
| 2296 | } |
| 2297 | #endif |
| 2298 | |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 2299 | hlist_add_head_rcu(&chain->entry, hash_head); |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2300 | debug_atomic_inc(chain_lookup_misses); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2301 | inc_chains(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2302 | |
| 2303 | return 1; |
| 2304 | } |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2305 | |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2306 | /* |
| 2307 | * Look up a dependency chain. |
| 2308 | */ |
| 2309 | static inline struct lock_chain *lookup_chain_cache(u64 chain_key) |
| 2310 | { |
| 2311 | struct hlist_head *hash_head = chainhashentry(chain_key); |
| 2312 | struct lock_chain *chain; |
| 2313 | |
| 2314 | /* |
| 2315 | * We can walk it lock-free, because entries only get added |
| 2316 | * to the hash: |
| 2317 | */ |
| 2318 | hlist_for_each_entry_rcu(chain, hash_head, entry) { |
| 2319 | if (chain->chain_key == chain_key) { |
| 2320 | debug_atomic_inc(chain_lookup_hits); |
| 2321 | return chain; |
| 2322 | } |
| 2323 | } |
| 2324 | return NULL; |
| 2325 | } |
| 2326 | |
| 2327 | /* |
| 2328 | * If the key is not present yet in dependency chain cache then |
| 2329 | * add it and return 1 - in this case the new dependency chain is |
| 2330 | * validated. If the key is already hashed, return 0. |
| 2331 | * (On return with 1 graph_lock is held.) |
| 2332 | */ |
| 2333 | static inline int lookup_chain_cache_add(struct task_struct *curr, |
| 2334 | struct held_lock *hlock, |
| 2335 | u64 chain_key) |
| 2336 | { |
| 2337 | struct lock_class *class = hlock_class(hlock); |
| 2338 | struct lock_chain *chain = lookup_chain_cache(chain_key); |
| 2339 | |
| 2340 | if (chain) { |
| 2341 | cache_hit: |
| 2342 | if (!check_no_collision(curr, hlock, chain)) |
| 2343 | return 0; |
| 2344 | |
| 2345 | if (very_verbose(class)) { |
| 2346 | printk("\nhash chain already cached, key: " |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2347 | "%016Lx tail class: [%px] %s\n", |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2348 | (unsigned long long)chain_key, |
| 2349 | class->key, class->name); |
| 2350 | } |
| 2351 | |
| 2352 | return 0; |
| 2353 | } |
| 2354 | |
| 2355 | if (very_verbose(class)) { |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2356 | printk("\nnew hash chain, key: %016Lx tail class: [%px] %s\n", |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2357 | (unsigned long long)chain_key, class->key, class->name); |
| 2358 | } |
| 2359 | |
| 2360 | if (!graph_lock()) |
| 2361 | return 0; |
| 2362 | |
| 2363 | /* |
| 2364 | * We have to walk the chain again locked - to avoid duplicates: |
| 2365 | */ |
| 2366 | chain = lookup_chain_cache(chain_key); |
| 2367 | if (chain) { |
| 2368 | graph_unlock(); |
| 2369 | goto cache_hit; |
| 2370 | } |
| 2371 | |
| 2372 | if (!add_chain_cache(curr, hlock, chain_key)) |
| 2373 | return 0; |
| 2374 | |
| 2375 | return 1; |
| 2376 | } |
| 2377 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2378 | static int validate_chain(struct task_struct *curr, struct lockdep_map *lock, |
Johannes Berg | 4e6045f | 2007-10-18 23:39:55 -0700 | [diff] [blame] | 2379 | struct held_lock *hlock, int chain_head, u64 chain_key) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2380 | { |
| 2381 | /* |
| 2382 | * Trylock needs to maintain the stack of held locks, but it |
| 2383 | * does not add new dependencies, because trylock can be done |
| 2384 | * in any order. |
| 2385 | * |
| 2386 | * We look up the chain_key and do the O(N^2) check and update of |
| 2387 | * the dependencies only if this is a new dependency chain. |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2388 | * (If lookup_chain_cache_add() return with 1 it acquires |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2389 | * graph_lock for us) |
| 2390 | */ |
Oleg Nesterov | fb9edbe | 2014-01-20 19:20:06 +0100 | [diff] [blame] | 2391 | if (!hlock->trylock && hlock->check && |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2392 | lookup_chain_cache_add(curr, hlock, chain_key)) { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2393 | /* |
| 2394 | * Check whether last held lock: |
| 2395 | * |
| 2396 | * - is irq-safe, if this lock is irq-unsafe |
| 2397 | * - is softirq-safe, if this lock is hardirq-unsafe |
| 2398 | * |
| 2399 | * And check whether the new lock's dependency graph |
| 2400 | * could lead back to the previous lock. |
| 2401 | * |
| 2402 | * any of these scenarios could lead to a deadlock. If |
| 2403 | * All validations |
| 2404 | */ |
| 2405 | int ret = check_deadlock(curr, hlock, lock, hlock->read); |
| 2406 | |
| 2407 | if (!ret) |
| 2408 | return 0; |
| 2409 | /* |
| 2410 | * Mark recursive read, as we jump over it when |
| 2411 | * building dependencies (just like we jump over |
| 2412 | * trylock entries): |
| 2413 | */ |
| 2414 | if (ret == 2) |
| 2415 | hlock->read = 2; |
| 2416 | /* |
| 2417 | * Add dependency only if this lock is not the head |
| 2418 | * of the chain, and if it's not a secondary read-lock: |
| 2419 | */ |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2420 | if (!chain_head && ret != 2) { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2421 | if (!check_prevs_add(curr, hlock)) |
| 2422 | return 0; |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2423 | } |
| 2424 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2425 | graph_unlock(); |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2426 | } else { |
| 2427 | /* after lookup_chain_cache_add(): */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2428 | if (unlikely(!debug_locks)) |
| 2429 | return 0; |
Byungchul Park | 545c23f | 2017-08-07 16:12:48 +0900 | [diff] [blame] | 2430 | } |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2431 | |
| 2432 | return 1; |
| 2433 | } |
| 2434 | #else |
| 2435 | static inline int validate_chain(struct task_struct *curr, |
| 2436 | struct lockdep_map *lock, struct held_lock *hlock, |
Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 2437 | int chain_head, u64 chain_key) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2438 | { |
| 2439 | return 1; |
| 2440 | } |
Peter Zijlstra | ca58abc | 2007-07-19 01:48:53 -0700 | [diff] [blame] | 2441 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2442 | |
| 2443 | /* |
| 2444 | * We are building curr_chain_key incrementally, so double-check |
| 2445 | * it from scratch, to make sure that it's done correctly: |
| 2446 | */ |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2447 | static void check_chain_key(struct task_struct *curr) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2448 | { |
| 2449 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 2450 | struct held_lock *hlock, *prev_hlock = NULL; |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 2451 | unsigned int i; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2452 | u64 chain_key = 0; |
| 2453 | |
| 2454 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 2455 | hlock = curr->held_locks + i; |
| 2456 | if (chain_key != hlock->prev_chain_key) { |
| 2457 | debug_locks_off(); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2458 | /* |
| 2459 | * We got mighty confused, our chain keys don't match |
| 2460 | * with what we expect, someone trample on our task state? |
| 2461 | */ |
Arjan van de Ven | 2df8b1d | 2008-07-30 12:43:11 -0700 | [diff] [blame] | 2462 | WARN(1, "hm#1, depth: %u [%u], %016Lx != %016Lx\n", |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2463 | curr->lockdep_depth, i, |
| 2464 | (unsigned long long)chain_key, |
| 2465 | (unsigned long long)hlock->prev_chain_key); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2466 | return; |
| 2467 | } |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2468 | /* |
| 2469 | * Whoops ran out of static storage again? |
| 2470 | */ |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 2471 | if (DEBUG_LOCKS_WARN_ON(hlock->class_idx > MAX_LOCKDEP_KEYS)) |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 2472 | return; |
| 2473 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2474 | if (prev_hlock && (prev_hlock->irq_context != |
| 2475 | hlock->irq_context)) |
| 2476 | chain_key = 0; |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 2477 | chain_key = iterate_chain_key(chain_key, hlock->class_idx); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2478 | prev_hlock = hlock; |
| 2479 | } |
| 2480 | if (chain_key != curr->curr_chain_key) { |
| 2481 | debug_locks_off(); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2482 | /* |
| 2483 | * More smoking hash instead of calculating it, damn see these |
| 2484 | * numbers float.. I bet that a pink elephant stepped on my memory. |
| 2485 | */ |
Arjan van de Ven | 2df8b1d | 2008-07-30 12:43:11 -0700 | [diff] [blame] | 2486 | WARN(1, "hm#2, depth: %u [%u], %016Lx != %016Lx\n", |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2487 | curr->lockdep_depth, i, |
| 2488 | (unsigned long long)chain_key, |
| 2489 | (unsigned long long)curr->curr_chain_key); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2490 | } |
| 2491 | #endif |
| 2492 | } |
| 2493 | |
Steven Rostedt | 282b5c2 | 2011-04-20 21:41:59 -0400 | [diff] [blame] | 2494 | static void |
| 2495 | print_usage_bug_scenario(struct held_lock *lock) |
| 2496 | { |
| 2497 | struct lock_class *class = hlock_class(lock); |
| 2498 | |
| 2499 | printk(" Possible unsafe locking scenario:\n\n"); |
| 2500 | printk(" CPU0\n"); |
| 2501 | printk(" ----\n"); |
| 2502 | printk(" lock("); |
| 2503 | __print_lock_name(class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2504 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 282b5c2 | 2011-04-20 21:41:59 -0400 | [diff] [blame] | 2505 | printk(" <Interrupt>\n"); |
| 2506 | printk(" lock("); |
| 2507 | __print_lock_name(class); |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2508 | printk(KERN_CONT ");\n"); |
Steven Rostedt | 282b5c2 | 2011-04-20 21:41:59 -0400 | [diff] [blame] | 2509 | printk("\n *** DEADLOCK ***\n\n"); |
| 2510 | } |
| 2511 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2512 | static int |
| 2513 | print_usage_bug(struct task_struct *curr, struct held_lock *this, |
| 2514 | enum lock_usage_bit prev_bit, enum lock_usage_bit new_bit) |
| 2515 | { |
| 2516 | if (!debug_locks_off_graph_unlock() || debug_locks_silent) |
| 2517 | return 0; |
| 2518 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2519 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2520 | pr_warn("================================\n"); |
| 2521 | pr_warn("WARNING: inconsistent lock state\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 2522 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2523 | pr_warn("--------------------------------\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2524 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2525 | pr_warn("inconsistent {%s} -> {%s} usage.\n", |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2526 | usage_str[prev_bit], usage_str[new_bit]); |
| 2527 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2528 | pr_warn("%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] | 2529 | curr->comm, task_pid_nr(curr), |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2530 | trace_hardirq_context(curr), hardirq_count() >> HARDIRQ_SHIFT, |
| 2531 | trace_softirq_context(curr), softirq_count() >> SOFTIRQ_SHIFT, |
| 2532 | trace_hardirqs_enabled(curr), |
| 2533 | trace_softirqs_enabled(curr)); |
| 2534 | print_lock(this); |
| 2535 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2536 | pr_warn("{%s} state was registered at:\n", usage_str[prev_bit]); |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2537 | print_stack_trace(hlock_class(this)->usage_traces + prev_bit, 1); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2538 | |
| 2539 | print_irqtrace_events(curr); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2540 | pr_warn("\nother info that might help us debug this:\n"); |
Steven Rostedt | 282b5c2 | 2011-04-20 21:41:59 -0400 | [diff] [blame] | 2541 | print_usage_bug_scenario(this); |
| 2542 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2543 | lockdep_print_held_locks(curr); |
| 2544 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2545 | pr_warn("\nstack backtrace:\n"); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2546 | dump_stack(); |
| 2547 | |
| 2548 | return 0; |
| 2549 | } |
| 2550 | |
| 2551 | /* |
| 2552 | * Print out an error if an invalid bit is set: |
| 2553 | */ |
| 2554 | static inline int |
| 2555 | valid_state(struct task_struct *curr, struct held_lock *this, |
| 2556 | enum lock_usage_bit new_bit, enum lock_usage_bit bad_bit) |
| 2557 | { |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 2558 | if (unlikely(hlock_class(this)->usage_mask & (1 << bad_bit))) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2559 | return print_usage_bug(curr, this, bad_bit, new_bit); |
| 2560 | return 1; |
| 2561 | } |
| 2562 | |
| 2563 | static int mark_lock(struct task_struct *curr, struct held_lock *this, |
| 2564 | enum lock_usage_bit new_bit); |
| 2565 | |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2566 | #if defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2567 | |
| 2568 | /* |
| 2569 | * print irq inversion bug: |
| 2570 | */ |
| 2571 | static int |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2572 | print_irq_inversion_bug(struct task_struct *curr, |
| 2573 | struct lock_list *root, struct lock_list *other, |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2574 | struct held_lock *this, int forwards, |
| 2575 | const char *irqclass) |
| 2576 | { |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 2577 | struct lock_list *entry = other; |
| 2578 | struct lock_list *middle = NULL; |
| 2579 | int depth; |
| 2580 | |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 2581 | if (!debug_locks_off_graph_unlock() || debug_locks_silent) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2582 | return 0; |
| 2583 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2584 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2585 | pr_warn("========================================================\n"); |
| 2586 | pr_warn("WARNING: possible irq lock inversion dependency detected\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 2587 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 2588 | pr_warn("--------------------------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2589 | pr_warn("%s/%d just changed the state of lock:\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 2590 | curr->comm, task_pid_nr(curr)); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2591 | print_lock(this); |
| 2592 | if (forwards) |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2593 | pr_warn("but this lock took another, %s-unsafe lock in the past:\n", irqclass); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2594 | else |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2595 | pr_warn("but this lock was taken by another, %s-safe lock in the past:\n", irqclass); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2596 | print_lock_name(other->class); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2597 | pr_warn("\n\nand interrupts could create inverse lock ordering between them.\n\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2598 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2599 | pr_warn("\nother info that might help us debug this:\n"); |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 2600 | |
| 2601 | /* Find a middle lock (if one exists) */ |
| 2602 | depth = get_lock_depth(other); |
| 2603 | do { |
| 2604 | if (depth == 0 && (entry != root)) { |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2605 | pr_warn("lockdep:%s bad path found in chain graph\n", __func__); |
Steven Rostedt | dad3d74 | 2011-04-20 21:41:57 -0400 | [diff] [blame] | 2606 | break; |
| 2607 | } |
| 2608 | middle = entry; |
| 2609 | entry = get_lock_parent(entry); |
| 2610 | depth--; |
| 2611 | } while (entry && entry != root && (depth >= 0)); |
| 2612 | if (forwards) |
| 2613 | print_irq_lock_scenario(root, other, |
| 2614 | middle ? middle->class : root->class, other->class); |
| 2615 | else |
| 2616 | print_irq_lock_scenario(other, root, |
| 2617 | middle ? middle->class : other->class, root->class); |
| 2618 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2619 | lockdep_print_held_locks(curr); |
| 2620 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2621 | pr_warn("\nthe shortest dependencies between 2nd lock and 1st lock:\n"); |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2622 | if (!save_trace(&root->trace)) |
| 2623 | return 0; |
| 2624 | print_shortest_lock_dependencies(other, root); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2625 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 2626 | pr_warn("\nstack backtrace:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2627 | dump_stack(); |
| 2628 | |
| 2629 | return 0; |
| 2630 | } |
| 2631 | |
| 2632 | /* |
| 2633 | * Prove that in the forwards-direction subgraph starting at <this> |
| 2634 | * there is no lock matching <mask>: |
| 2635 | */ |
| 2636 | static int |
| 2637 | check_usage_forwards(struct task_struct *curr, struct held_lock *this, |
| 2638 | enum lock_usage_bit bit, const char *irqclass) |
| 2639 | { |
| 2640 | int ret; |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2641 | struct lock_list root; |
| 2642 | struct lock_list *uninitialized_var(target_entry); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2643 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2644 | root.parent = NULL; |
| 2645 | root.class = hlock_class(this); |
| 2646 | ret = find_usage_forwards(&root, bit, &target_entry); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2647 | if (ret < 0) |
| 2648 | return print_bfs_bug(ret); |
| 2649 | if (ret == 1) |
| 2650 | return ret; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2651 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2652 | return print_irq_inversion_bug(curr, &root, target_entry, |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2653 | this, 1, irqclass); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2654 | } |
| 2655 | |
| 2656 | /* |
| 2657 | * Prove that in the backwards-direction subgraph starting at <this> |
| 2658 | * there is no lock matching <mask>: |
| 2659 | */ |
| 2660 | static int |
| 2661 | check_usage_backwards(struct task_struct *curr, struct held_lock *this, |
| 2662 | enum lock_usage_bit bit, const char *irqclass) |
| 2663 | { |
| 2664 | int ret; |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2665 | struct lock_list root; |
| 2666 | struct lock_list *uninitialized_var(target_entry); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2667 | |
Ming Lei | d7aaba1 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2668 | root.parent = NULL; |
| 2669 | root.class = hlock_class(this); |
| 2670 | ret = find_usage_backwards(&root, bit, &target_entry); |
Peter Zijlstra | af01296 | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2671 | if (ret < 0) |
| 2672 | return print_bfs_bug(ret); |
| 2673 | if (ret == 1) |
| 2674 | return ret; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2675 | |
Ming Lei | 24208ca | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 2676 | return print_irq_inversion_bug(curr, &root, target_entry, |
Oleg Nesterov | 48d5067 | 2010-01-26 19:16:41 +0100 | [diff] [blame] | 2677 | this, 0, irqclass); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2678 | } |
| 2679 | |
Ingo Molnar | 3117df0 | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 2680 | void print_irqtrace_events(struct task_struct *curr) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2681 | { |
| 2682 | printk("irq event stamp: %u\n", curr->irq_events); |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2683 | printk("hardirqs last enabled at (%u): [<%px>] %pS\n", |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2684 | curr->hardirq_enable_event, (void *)curr->hardirq_enable_ip, |
| 2685 | (void *)curr->hardirq_enable_ip); |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2686 | printk("hardirqs last disabled at (%u): [<%px>] %pS\n", |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2687 | curr->hardirq_disable_event, (void *)curr->hardirq_disable_ip, |
| 2688 | (void *)curr->hardirq_disable_ip); |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2689 | printk("softirqs last enabled at (%u): [<%px>] %pS\n", |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2690 | curr->softirq_enable_event, (void *)curr->softirq_enable_ip, |
| 2691 | (void *)curr->softirq_enable_ip); |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 2692 | printk("softirqs last disabled at (%u): [<%px>] %pS\n", |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 2693 | curr->softirq_disable_event, (void *)curr->softirq_disable_ip, |
| 2694 | (void *)curr->softirq_disable_ip); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2695 | } |
| 2696 | |
Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2697 | static int HARDIRQ_verbose(struct lock_class *class) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2698 | { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2699 | #if HARDIRQ_VERBOSE |
| 2700 | return class_filter(class); |
| 2701 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2702 | return 0; |
| 2703 | } |
| 2704 | |
Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2705 | static int SOFTIRQ_verbose(struct lock_class *class) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2706 | { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 2707 | #if SOFTIRQ_VERBOSE |
| 2708 | return class_filter(class); |
| 2709 | #endif |
| 2710 | return 0; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2711 | } |
| 2712 | |
| 2713 | #define STRICT_READ_CHECKS 1 |
| 2714 | |
Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2715 | static int (*state_verbose_f[])(struct lock_class *class) = { |
| 2716 | #define LOCKDEP_STATE(__STATE) \ |
| 2717 | __STATE##_verbose, |
| 2718 | #include "lockdep_states.h" |
| 2719 | #undef LOCKDEP_STATE |
| 2720 | }; |
| 2721 | |
| 2722 | static inline int state_verbose(enum lock_usage_bit bit, |
| 2723 | struct lock_class *class) |
| 2724 | { |
| 2725 | return state_verbose_f[bit >> 2](class); |
| 2726 | } |
| 2727 | |
Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2728 | typedef int (*check_usage_f)(struct task_struct *, struct held_lock *, |
| 2729 | enum lock_usage_bit bit, const char *name); |
| 2730 | |
Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2731 | static int |
Peter Zijlstra | 1c21f14 | 2009-03-04 13:51:13 +0100 | [diff] [blame] | 2732 | mark_lock_irq(struct task_struct *curr, struct held_lock *this, |
| 2733 | enum lock_usage_bit new_bit) |
Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2734 | { |
Peter Zijlstra | f989209 | 2009-01-22 16:09:59 +0100 | [diff] [blame] | 2735 | int excl_bit = exclusive_bit(new_bit); |
Peter Zijlstra | 9d3651a | 2009-01-22 17:18:32 +0100 | [diff] [blame] | 2736 | int read = new_bit & 1; |
Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2737 | int dir = new_bit & 2; |
| 2738 | |
Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2739 | /* |
| 2740 | * mark USED_IN has to look forwards -- to ensure no dependency |
| 2741 | * has ENABLED state, which would allow recursion deadlocks. |
| 2742 | * |
| 2743 | * mark ENABLED has to look backwards -- to ensure no dependee |
| 2744 | * has USED_IN state, which, again, would allow recursion deadlocks. |
| 2745 | */ |
Peter Zijlstra | 42c50d5 | 2009-01-22 16:58:16 +0100 | [diff] [blame] | 2746 | check_usage_f usage = dir ? |
| 2747 | check_usage_backwards : check_usage_forwards; |
Peter Zijlstra | f989209 | 2009-01-22 16:09:59 +0100 | [diff] [blame] | 2748 | |
Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2749 | /* |
| 2750 | * Validate that this particular lock does not have conflicting |
| 2751 | * usage states. |
| 2752 | */ |
Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2753 | if (!valid_state(curr, this, new_bit, excl_bit)) |
| 2754 | return 0; |
Peter Zijlstra | 9d3651a | 2009-01-22 17:18:32 +0100 | [diff] [blame] | 2755 | |
Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2756 | /* |
| 2757 | * Validate that the lock dependencies don't have conflicting usage |
| 2758 | * states. |
| 2759 | */ |
| 2760 | if ((!read || !dir || STRICT_READ_CHECKS) && |
Peter Zijlstra | 1c21f14 | 2009-03-04 13:51:13 +0100 | [diff] [blame] | 2761 | !usage(curr, this, excl_bit, state_name(new_bit & ~1))) |
Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2762 | return 0; |
Peter Zijlstra | 780e820 | 2009-01-22 16:51:29 +0100 | [diff] [blame] | 2763 | |
Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2764 | /* |
| 2765 | * Check for read in write conflicts |
| 2766 | */ |
| 2767 | if (!read) { |
| 2768 | if (!valid_state(curr, this, new_bit, excl_bit + 1)) |
| 2769 | return 0; |
| 2770 | |
| 2771 | if (STRICT_READ_CHECKS && |
Peter Zijlstra | 4f367d8a | 2009-01-22 18:10:42 +0100 | [diff] [blame] | 2772 | !usage(curr, this, excl_bit + 1, |
| 2773 | state_name(new_bit + 1))) |
Peter Zijlstra | 38aa271 | 2009-01-27 14:53:50 +0100 | [diff] [blame] | 2774 | return 0; |
| 2775 | } |
Peter Zijlstra | 780e820 | 2009-01-22 16:51:29 +0100 | [diff] [blame] | 2776 | |
Peter Zijlstra | cd95302 | 2009-01-22 16:38:21 +0100 | [diff] [blame] | 2777 | if (state_verbose(new_bit, hlock_class(this))) |
Peter Zijlstra | 6a6904d | 2009-01-22 16:07:44 +0100 | [diff] [blame] | 2778 | return 2; |
| 2779 | |
| 2780 | return 1; |
| 2781 | } |
| 2782 | |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2783 | enum mark_type { |
Peter Zijlstra | 36bfb9b | 2009-01-22 14:12:41 +0100 | [diff] [blame] | 2784 | #define LOCKDEP_STATE(__STATE) __STATE, |
| 2785 | #include "lockdep_states.h" |
| 2786 | #undef LOCKDEP_STATE |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2787 | }; |
| 2788 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2789 | /* |
| 2790 | * Mark all held locks with a usage bit: |
| 2791 | */ |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2792 | static int |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2793 | mark_held_locks(struct task_struct *curr, enum mark_type mark) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2794 | { |
| 2795 | enum lock_usage_bit usage_bit; |
| 2796 | struct held_lock *hlock; |
| 2797 | int i; |
| 2798 | |
| 2799 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 2800 | hlock = curr->held_locks + i; |
| 2801 | |
Peter Zijlstra | cf2ad4d | 2009-01-27 13:58:08 +0100 | [diff] [blame] | 2802 | usage_bit = 2 + (mark << 2); /* ENABLED */ |
| 2803 | if (hlock->read) |
| 2804 | usage_bit += 1; /* READ */ |
| 2805 | |
| 2806 | BUG_ON(usage_bit >= LOCK_USAGE_STATES); |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2807 | |
Oleg Nesterov | 34d0ed5 | 2014-01-20 19:20:13 +0100 | [diff] [blame] | 2808 | if (!hlock->check) |
Peter Zijlstra | efbe2ee | 2011-07-07 11:39:45 +0200 | [diff] [blame] | 2809 | continue; |
| 2810 | |
Jarek Poplawski | 4ff773bb | 2007-05-08 00:31:00 -0700 | [diff] [blame] | 2811 | if (!mark_lock(curr, hlock, usage_bit)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2812 | return 0; |
| 2813 | } |
| 2814 | |
| 2815 | return 1; |
| 2816 | } |
| 2817 | |
| 2818 | /* |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2819 | * Hardirqs will be enabled: |
| 2820 | */ |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2821 | static void __trace_hardirqs_on_caller(unsigned long ip) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2822 | { |
| 2823 | struct task_struct *curr = current; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2824 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2825 | /* we'll do an OFF -> ON transition: */ |
| 2826 | curr->hardirqs_enabled = 1; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2827 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2828 | /* |
| 2829 | * We are going to turn hardirqs on, so set the |
| 2830 | * usage bit for all held locks: |
| 2831 | */ |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2832 | if (!mark_held_locks(curr, HARDIRQ)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2833 | return; |
| 2834 | /* |
| 2835 | * If we have softirqs enabled, then set the usage |
| 2836 | * bit for all held locks. (disabled hardirqs prevented |
| 2837 | * this bit from being set before) |
| 2838 | */ |
| 2839 | if (curr->softirqs_enabled) |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2840 | if (!mark_held_locks(curr, SOFTIRQ)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2841 | return; |
| 2842 | |
| 2843 | curr->hardirq_enable_ip = ip; |
| 2844 | curr->hardirq_enable_event = ++curr->irq_events; |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2845 | debug_atomic_inc(hardirqs_on_events); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2846 | } |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2847 | |
Andi Kleen | b35f830 | 2014-02-08 08:52:02 +0100 | [diff] [blame] | 2848 | __visible void trace_hardirqs_on_caller(unsigned long ip) |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2849 | { |
| 2850 | time_hardirqs_on(CALLER_ADDR0, ip); |
| 2851 | |
| 2852 | if (unlikely(!debug_locks || current->lockdep_recursion)) |
| 2853 | return; |
| 2854 | |
Peter Zijlstra | 7d36b26 | 2011-07-26 13:13:44 +0200 | [diff] [blame] | 2855 | if (unlikely(current->hardirqs_enabled)) { |
| 2856 | /* |
| 2857 | * Neither irq nor preemption are disabled here |
| 2858 | * so this is racy by nature but losing one hit |
| 2859 | * in a stat is not a big deal. |
| 2860 | */ |
| 2861 | __debug_atomic_inc(redundant_hardirqs_on); |
| 2862 | return; |
| 2863 | } |
| 2864 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2865 | /* |
| 2866 | * We're enabling irqs and according to our state above irqs weren't |
| 2867 | * already enabled, yet we find the hardware thinks they are in fact |
| 2868 | * enabled.. someone messed up their IRQ state tracing. |
| 2869 | */ |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2870 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2871 | return; |
| 2872 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2873 | /* |
| 2874 | * See the fine text that goes along with this variable definition. |
| 2875 | */ |
Peter Zijlstra | 7d36b26 | 2011-07-26 13:13:44 +0200 | [diff] [blame] | 2876 | if (DEBUG_LOCKS_WARN_ON(unlikely(early_boot_irqs_disabled))) |
| 2877 | return; |
| 2878 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2879 | /* |
| 2880 | * Can't allow enabling interrupts while in an interrupt handler, |
| 2881 | * that's general bad form and such. Recursion, limited stack etc.. |
| 2882 | */ |
Peter Zijlstra | 7d36b26 | 2011-07-26 13:13:44 +0200 | [diff] [blame] | 2883 | if (DEBUG_LOCKS_WARN_ON(current->hardirq_context)) |
| 2884 | return; |
| 2885 | |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2886 | current->lockdep_recursion = 1; |
| 2887 | __trace_hardirqs_on_caller(ip); |
| 2888 | current->lockdep_recursion = 0; |
| 2889 | } |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2890 | EXPORT_SYMBOL(trace_hardirqs_on_caller); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2891 | |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2892 | void trace_hardirqs_on(void) |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2893 | { |
| 2894 | trace_hardirqs_on_caller(CALLER_ADDR0); |
| 2895 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2896 | EXPORT_SYMBOL(trace_hardirqs_on); |
| 2897 | |
| 2898 | /* |
| 2899 | * Hardirqs were disabled: |
| 2900 | */ |
Andi Kleen | b35f830 | 2014-02-08 08:52:02 +0100 | [diff] [blame] | 2901 | __visible void trace_hardirqs_off_caller(unsigned long ip) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2902 | { |
| 2903 | struct task_struct *curr = current; |
| 2904 | |
Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2905 | time_hardirqs_off(CALLER_ADDR0, ip); |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2906 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2907 | if (unlikely(!debug_locks || current->lockdep_recursion)) |
| 2908 | return; |
| 2909 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2910 | /* |
| 2911 | * So we're supposed to get called after you mask local IRQs, but for |
| 2912 | * some reason the hardware doesn't quite think you did a proper job. |
| 2913 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2914 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2915 | return; |
| 2916 | |
| 2917 | if (curr->hardirqs_enabled) { |
| 2918 | /* |
| 2919 | * We have done an ON -> OFF transition: |
| 2920 | */ |
| 2921 | curr->hardirqs_enabled = 0; |
Heiko Carstens | 6afe40b | 2008-10-28 11:14:58 +0100 | [diff] [blame] | 2922 | curr->hardirq_disable_ip = ip; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2923 | curr->hardirq_disable_event = ++curr->irq_events; |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2924 | debug_atomic_inc(hardirqs_off_events); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2925 | } else |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2926 | debug_atomic_inc(redundant_hardirqs_off); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2927 | } |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2928 | EXPORT_SYMBOL(trace_hardirqs_off_caller); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2929 | |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 2930 | void trace_hardirqs_off(void) |
Steven Rostedt | 81d68a9 | 2008-05-12 21:20:42 +0200 | [diff] [blame] | 2931 | { |
| 2932 | trace_hardirqs_off_caller(CALLER_ADDR0); |
| 2933 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2934 | EXPORT_SYMBOL(trace_hardirqs_off); |
| 2935 | |
| 2936 | /* |
| 2937 | * Softirqs will be enabled: |
| 2938 | */ |
| 2939 | void trace_softirqs_on(unsigned long ip) |
| 2940 | { |
| 2941 | struct task_struct *curr = current; |
| 2942 | |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2943 | if (unlikely(!debug_locks || current->lockdep_recursion)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2944 | return; |
| 2945 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2946 | /* |
| 2947 | * We fancy IRQs being disabled here, see softirq.c, avoids |
| 2948 | * funny state and nesting things. |
| 2949 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2950 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2951 | return; |
| 2952 | |
| 2953 | if (curr->softirqs_enabled) { |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2954 | debug_atomic_inc(redundant_softirqs_on); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2955 | return; |
| 2956 | } |
| 2957 | |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2958 | current->lockdep_recursion = 1; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2959 | /* |
| 2960 | * We'll do an OFF -> ON transition: |
| 2961 | */ |
| 2962 | curr->softirqs_enabled = 1; |
| 2963 | curr->softirq_enable_ip = ip; |
| 2964 | curr->softirq_enable_event = ++curr->irq_events; |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2965 | debug_atomic_inc(softirqs_on_events); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2966 | /* |
| 2967 | * We are going to turn softirqs on, so set the |
| 2968 | * usage bit for all held locks, if hardirqs are |
| 2969 | * enabled too: |
| 2970 | */ |
| 2971 | if (curr->hardirqs_enabled) |
Nick Piggin | cf40bd1 | 2009-01-21 08:12:39 +0100 | [diff] [blame] | 2972 | mark_held_locks(curr, SOFTIRQ); |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2973 | current->lockdep_recursion = 0; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2974 | } |
| 2975 | |
| 2976 | /* |
| 2977 | * Softirqs were disabled: |
| 2978 | */ |
| 2979 | void trace_softirqs_off(unsigned long ip) |
| 2980 | { |
| 2981 | struct task_struct *curr = current; |
| 2982 | |
Peter Zijlstra | dd4e5d3 | 2011-06-21 17:17:27 +0200 | [diff] [blame] | 2983 | if (unlikely(!debug_locks || current->lockdep_recursion)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2984 | return; |
| 2985 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 2986 | /* |
| 2987 | * We fancy IRQs being disabled here, see softirq.c |
| 2988 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 2989 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 2990 | return; |
| 2991 | |
| 2992 | if (curr->softirqs_enabled) { |
| 2993 | /* |
| 2994 | * We have done an ON -> OFF transition: |
| 2995 | */ |
| 2996 | curr->softirqs_enabled = 0; |
| 2997 | curr->softirq_disable_ip = ip; |
| 2998 | curr->softirq_disable_event = ++curr->irq_events; |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 2999 | debug_atomic_inc(softirqs_off_events); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3000 | /* |
| 3001 | * Whoops, we wanted softirqs off, so why aren't they? |
| 3002 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3003 | DEBUG_LOCKS_WARN_ON(!softirq_count()); |
| 3004 | } else |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 3005 | debug_atomic_inc(redundant_softirqs_off); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3006 | } |
| 3007 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3008 | static int mark_irqflags(struct task_struct *curr, struct held_lock *hlock) |
| 3009 | { |
| 3010 | /* |
| 3011 | * If non-trylock use in a hardirq or softirq context, then |
| 3012 | * mark the lock as used in these contexts: |
| 3013 | */ |
| 3014 | if (!hlock->trylock) { |
| 3015 | if (hlock->read) { |
| 3016 | if (curr->hardirq_context) |
| 3017 | if (!mark_lock(curr, hlock, |
| 3018 | LOCK_USED_IN_HARDIRQ_READ)) |
| 3019 | return 0; |
| 3020 | if (curr->softirq_context) |
| 3021 | if (!mark_lock(curr, hlock, |
| 3022 | LOCK_USED_IN_SOFTIRQ_READ)) |
| 3023 | return 0; |
| 3024 | } else { |
| 3025 | if (curr->hardirq_context) |
| 3026 | if (!mark_lock(curr, hlock, LOCK_USED_IN_HARDIRQ)) |
| 3027 | return 0; |
| 3028 | if (curr->softirq_context) |
| 3029 | if (!mark_lock(curr, hlock, LOCK_USED_IN_SOFTIRQ)) |
| 3030 | return 0; |
| 3031 | } |
| 3032 | } |
| 3033 | if (!hlock->hardirqs_off) { |
| 3034 | if (hlock->read) { |
| 3035 | if (!mark_lock(curr, hlock, |
Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 3036 | LOCK_ENABLED_HARDIRQ_READ)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3037 | return 0; |
| 3038 | if (curr->softirqs_enabled) |
| 3039 | if (!mark_lock(curr, hlock, |
Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 3040 | LOCK_ENABLED_SOFTIRQ_READ)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3041 | return 0; |
| 3042 | } else { |
| 3043 | if (!mark_lock(curr, hlock, |
Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 3044 | LOCK_ENABLED_HARDIRQ)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3045 | return 0; |
| 3046 | if (curr->softirqs_enabled) |
| 3047 | if (!mark_lock(curr, hlock, |
Peter Zijlstra | 4fc95e8 | 2009-01-22 13:10:52 +0100 | [diff] [blame] | 3048 | LOCK_ENABLED_SOFTIRQ)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3049 | return 0; |
| 3050 | } |
| 3051 | } |
| 3052 | |
| 3053 | return 1; |
| 3054 | } |
| 3055 | |
Boqun Feng | c246975 | 2016-02-16 13:57:40 +0800 | [diff] [blame] | 3056 | static inline unsigned int task_irq_context(struct task_struct *task) |
| 3057 | { |
| 3058 | return 2 * !!task->hardirq_context + !!task->softirq_context; |
| 3059 | } |
| 3060 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3061 | static int separate_irq_context(struct task_struct *curr, |
| 3062 | struct held_lock *hlock) |
| 3063 | { |
| 3064 | unsigned int depth = curr->lockdep_depth; |
| 3065 | |
| 3066 | /* |
| 3067 | * Keep track of points where we cross into an interrupt context: |
| 3068 | */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3069 | if (depth) { |
| 3070 | struct held_lock *prev_hlock; |
| 3071 | |
| 3072 | prev_hlock = curr->held_locks + depth-1; |
| 3073 | /* |
| 3074 | * If we cross into another context, reset the |
| 3075 | * hash key (this also prevents the checking and the |
| 3076 | * adding of the dependency to 'prev'): |
| 3077 | */ |
| 3078 | if (prev_hlock->irq_context != hlock->irq_context) |
| 3079 | return 1; |
| 3080 | } |
| 3081 | return 0; |
| 3082 | } |
| 3083 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3084 | #else /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3085 | |
| 3086 | static inline |
| 3087 | int mark_lock_irq(struct task_struct *curr, struct held_lock *this, |
| 3088 | enum lock_usage_bit new_bit) |
| 3089 | { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3090 | WARN_ON(1); /* Impossible innit? when we don't have TRACE_IRQFLAG */ |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3091 | return 1; |
| 3092 | } |
| 3093 | |
| 3094 | static inline int mark_irqflags(struct task_struct *curr, |
| 3095 | struct held_lock *hlock) |
| 3096 | { |
| 3097 | return 1; |
| 3098 | } |
| 3099 | |
Boqun Feng | c246975 | 2016-02-16 13:57:40 +0800 | [diff] [blame] | 3100 | static inline unsigned int task_irq_context(struct task_struct *task) |
| 3101 | { |
| 3102 | return 0; |
| 3103 | } |
| 3104 | |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3105 | static inline int separate_irq_context(struct task_struct *curr, |
| 3106 | struct held_lock *hlock) |
| 3107 | { |
| 3108 | return 0; |
| 3109 | } |
| 3110 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3111 | #endif /* defined(CONFIG_TRACE_IRQFLAGS) && defined(CONFIG_PROVE_LOCKING) */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3112 | |
| 3113 | /* |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3114 | * Mark a lock with a usage bit, and validate the state transition: |
| 3115 | */ |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 3116 | static int mark_lock(struct task_struct *curr, struct held_lock *this, |
Steven Rostedt | 0764d23 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 3117 | enum lock_usage_bit new_bit) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3118 | { |
| 3119 | unsigned int new_mask = 1 << new_bit, ret = 1; |
| 3120 | |
| 3121 | /* |
| 3122 | * If already set then do not dirty the cacheline, |
| 3123 | * nor do any checks: |
| 3124 | */ |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3125 | if (likely(hlock_class(this)->usage_mask & new_mask)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3126 | return 1; |
| 3127 | |
| 3128 | if (!graph_lock()) |
| 3129 | return 0; |
| 3130 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 3131 | * Make sure we didn't race: |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3132 | */ |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3133 | if (unlikely(hlock_class(this)->usage_mask & new_mask)) { |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3134 | graph_unlock(); |
| 3135 | return 1; |
| 3136 | } |
| 3137 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3138 | hlock_class(this)->usage_mask |= new_mask; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3139 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3140 | if (!save_trace(hlock_class(this)->usage_traces + new_bit)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3141 | return 0; |
| 3142 | |
| 3143 | switch (new_bit) { |
Peter Zijlstra | 5346417 | 2009-01-22 14:15:53 +0100 | [diff] [blame] | 3144 | #define LOCKDEP_STATE(__STATE) \ |
| 3145 | case LOCK_USED_IN_##__STATE: \ |
| 3146 | case LOCK_USED_IN_##__STATE##_READ: \ |
| 3147 | case LOCK_ENABLED_##__STATE: \ |
| 3148 | case LOCK_ENABLED_##__STATE##_READ: |
| 3149 | #include "lockdep_states.h" |
| 3150 | #undef LOCKDEP_STATE |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3151 | ret = mark_lock_irq(curr, this, new_bit); |
| 3152 | if (!ret) |
| 3153 | return 0; |
| 3154 | break; |
| 3155 | case LOCK_USED: |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 3156 | debug_atomic_dec(nr_unused_locks); |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3157 | break; |
| 3158 | default: |
| 3159 | if (!debug_locks_off_graph_unlock()) |
| 3160 | return 0; |
| 3161 | WARN_ON(1); |
| 3162 | return 0; |
| 3163 | } |
| 3164 | |
| 3165 | graph_unlock(); |
| 3166 | |
| 3167 | /* |
| 3168 | * We must printk outside of the graph_lock: |
| 3169 | */ |
| 3170 | if (ret == 2) { |
| 3171 | printk("\nmarked lock as {%s}:\n", usage_str[new_bit]); |
| 3172 | print_lock(this); |
| 3173 | print_irqtrace_events(curr); |
| 3174 | dump_stack(); |
| 3175 | } |
| 3176 | |
| 3177 | return ret; |
| 3178 | } |
| 3179 | |
| 3180 | /* |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3181 | * Initialize a lock instance's lock-class mapping info: |
| 3182 | */ |
Byungchul Park | b09be67 | 2017-08-07 16:12:52 +0900 | [diff] [blame] | 3183 | static void __lockdep_init_map(struct lockdep_map *lock, const char *name, |
Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 3184 | struct lock_class_key *key, int subclass) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3185 | { |
Yong Zhang | d3d03d4 | 2011-11-09 16:04:51 +0800 | [diff] [blame] | 3186 | int i; |
| 3187 | |
Yong Zhang | d3d03d4 | 2011-11-09 16:04:51 +0800 | [diff] [blame] | 3188 | for (i = 0; i < NR_LOCKDEP_CACHING_CLASSES; i++) |
| 3189 | lock->class_cache[i] = NULL; |
Hitoshi Mitake | 6201625 | 2010-10-05 18:01:51 +0900 | [diff] [blame] | 3190 | |
Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 3191 | #ifdef CONFIG_LOCK_STAT |
| 3192 | lock->cpu = raw_smp_processor_id(); |
| 3193 | #endif |
| 3194 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3195 | /* |
| 3196 | * Can't be having no nameless bastards around this place! |
| 3197 | */ |
Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 3198 | if (DEBUG_LOCKS_WARN_ON(!name)) { |
| 3199 | lock->name = "NULL"; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3200 | return; |
Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 3201 | } |
| 3202 | |
| 3203 | lock->name = name; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3204 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3205 | /* |
| 3206 | * No key, no joy, we need to hash something. |
| 3207 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3208 | if (DEBUG_LOCKS_WARN_ON(!key)) |
| 3209 | return; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3210 | /* |
| 3211 | * Sanity check, the lock-class key must be persistent: |
| 3212 | */ |
| 3213 | if (!static_obj(key)) { |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 3214 | printk("BUG: key %px not in .data!\n", key); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3215 | /* |
| 3216 | * What it says above ^^^^^, I suggest you read it. |
| 3217 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3218 | DEBUG_LOCKS_WARN_ON(1); |
| 3219 | return; |
| 3220 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3221 | lock->key = key; |
Peter Zijlstra | c8a2500 | 2009-04-17 09:40:49 +0200 | [diff] [blame] | 3222 | |
| 3223 | if (unlikely(!debug_locks)) |
| 3224 | return; |
| 3225 | |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 3226 | if (subclass) { |
| 3227 | unsigned long flags; |
| 3228 | |
| 3229 | if (DEBUG_LOCKS_WARN_ON(current->lockdep_recursion)) |
| 3230 | return; |
| 3231 | |
| 3232 | raw_local_irq_save(flags); |
| 3233 | current->lockdep_recursion = 1; |
Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 3234 | register_lock_class(lock, subclass, 1); |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 3235 | current->lockdep_recursion = 0; |
| 3236 | raw_local_irq_restore(flags); |
| 3237 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3238 | } |
Byungchul Park | b09be67 | 2017-08-07 16:12:52 +0900 | [diff] [blame] | 3239 | |
| 3240 | void lockdep_init_map(struct lockdep_map *lock, const char *name, |
| 3241 | struct lock_class_key *key, int subclass) |
| 3242 | { |
Byungchul Park | b09be67 | 2017-08-07 16:12:52 +0900 | [diff] [blame] | 3243 | __lockdep_init_map(lock, name, key, subclass); |
| 3244 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3245 | EXPORT_SYMBOL_GPL(lockdep_init_map); |
| 3246 | |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3247 | struct lock_class_key __lockdep_no_validate__; |
Kent Overstreet | ea6749c | 2012-12-27 22:21:58 -0800 | [diff] [blame] | 3248 | EXPORT_SYMBOL_GPL(__lockdep_no_validate__); |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3249 | |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3250 | static int |
| 3251 | print_lock_nested_lock_not_held(struct task_struct *curr, |
| 3252 | struct held_lock *hlock, |
| 3253 | unsigned long ip) |
| 3254 | { |
| 3255 | if (!debug_locks_off()) |
| 3256 | return 0; |
| 3257 | if (debug_locks_silent) |
| 3258 | return 0; |
| 3259 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3260 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 3261 | pr_warn("==================================\n"); |
| 3262 | pr_warn("WARNING: Nested lock was not taken\n"); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3263 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 3264 | pr_warn("----------------------------------\n"); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3265 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3266 | pr_warn("%s/%d is trying to lock:\n", curr->comm, task_pid_nr(curr)); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3267 | print_lock(hlock); |
| 3268 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3269 | pr_warn("\nbut this task is not holding:\n"); |
| 3270 | pr_warn("%s\n", hlock->nest_lock->name); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3271 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3272 | pr_warn("\nstack backtrace:\n"); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3273 | dump_stack(); |
| 3274 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3275 | pr_warn("\nother info that might help us debug this:\n"); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3276 | lockdep_print_held_locks(curr); |
| 3277 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3278 | pr_warn("\nstack backtrace:\n"); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3279 | dump_stack(); |
| 3280 | |
| 3281 | return 0; |
| 3282 | } |
| 3283 | |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 3284 | static int __lock_is_held(const struct lockdep_map *lock, int read); |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3285 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3286 | /* |
| 3287 | * This gets called for every mutex_lock*()/spin_lock*() operation. |
| 3288 | * We maintain the dependency maps and validate the locking attempt: |
| 3289 | */ |
| 3290 | static int __lock_acquire(struct lockdep_map *lock, unsigned int subclass, |
| 3291 | int trylock, int read, int check, int hardirqs_off, |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3292 | struct lockdep_map *nest_lock, unsigned long ip, |
Peter Zijlstra | 21199f2 | 2015-09-16 16:10:40 +0200 | [diff] [blame] | 3293 | int references, int pin_count) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3294 | { |
| 3295 | struct task_struct *curr = current; |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3296 | struct lock_class *class = NULL; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3297 | struct held_lock *hlock; |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 3298 | unsigned int depth; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3299 | int chain_head = 0; |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3300 | int class_idx; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3301 | u64 chain_key; |
| 3302 | |
| 3303 | if (unlikely(!debug_locks)) |
| 3304 | return 0; |
| 3305 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3306 | /* |
| 3307 | * Lockdep should run with IRQs disabled, otherwise we could |
| 3308 | * get an interrupt which would want to take locks, which would |
| 3309 | * end up in lockdep and have you got a head-ache already? |
| 3310 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3311 | if (DEBUG_LOCKS_WARN_ON(!irqs_disabled())) |
| 3312 | return 0; |
| 3313 | |
Oleg Nesterov | fb9edbe | 2014-01-20 19:20:06 +0100 | [diff] [blame] | 3314 | if (!prove_locking || lock->key == &__lockdep_no_validate__) |
| 3315 | check = 0; |
Peter Zijlstra | 1704f47 | 2010-03-19 01:37:42 +0100 | [diff] [blame] | 3316 | |
Hitoshi Mitake | 6201625 | 2010-10-05 18:01:51 +0900 | [diff] [blame] | 3317 | if (subclass < NR_LOCKDEP_CACHING_CLASSES) |
| 3318 | class = lock->class_cache[subclass]; |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3319 | /* |
Hitoshi Mitake | 6201625 | 2010-10-05 18:01:51 +0900 | [diff] [blame] | 3320 | * Not cached? |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 3321 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3322 | if (unlikely(!class)) { |
Peter Zijlstra | 4dfbb9d | 2006-10-11 01:45:14 -0400 | [diff] [blame] | 3323 | class = register_lock_class(lock, subclass, 0); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3324 | if (!class) |
| 3325 | return 0; |
| 3326 | } |
Frederic Weisbecker | bd6d29c | 2010-04-06 00:10:17 +0200 | [diff] [blame] | 3327 | atomic_inc((atomic_t *)&class->ops); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3328 | if (very_verbose(class)) { |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 3329 | printk("\nacquire class [%px] %s", class->key, class->name); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3330 | if (class->name_version > 1) |
Dmitry Vyukov | f943fe0 | 2016-11-28 15:24:43 +0100 | [diff] [blame] | 3331 | printk(KERN_CONT "#%d", class->name_version); |
| 3332 | printk(KERN_CONT "\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3333 | dump_stack(); |
| 3334 | } |
| 3335 | |
| 3336 | /* |
| 3337 | * Add the lock to the list of currently held locks. |
| 3338 | * (we dont increase the depth just yet, up until the |
| 3339 | * dependency checks are done) |
| 3340 | */ |
| 3341 | depth = curr->lockdep_depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3342 | /* |
| 3343 | * Ran out of static storage for our per-task lock stack again have we? |
| 3344 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3345 | if (DEBUG_LOCKS_WARN_ON(depth >= MAX_LOCK_DEPTH)) |
| 3346 | return 0; |
| 3347 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3348 | class_idx = class - lock_classes + 1; |
| 3349 | |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 3350 | if (depth) { |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3351 | hlock = curr->held_locks + depth - 1; |
| 3352 | if (hlock->class_idx == class_idx && nest_lock) { |
Peter Zijlstra | 7fb4a2c | 2017-03-01 16:23:30 +0100 | [diff] [blame] | 3353 | if (hlock->references) { |
| 3354 | /* |
| 3355 | * Check: unsigned int references:12, overflow. |
| 3356 | */ |
| 3357 | if (DEBUG_LOCKS_WARN_ON(hlock->references == (1 << 12)-1)) |
| 3358 | return 0; |
| 3359 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3360 | hlock->references++; |
Peter Zijlstra | 7fb4a2c | 2017-03-01 16:23:30 +0100 | [diff] [blame] | 3361 | } else { |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3362 | hlock->references = 2; |
Peter Zijlstra | 7fb4a2c | 2017-03-01 16:23:30 +0100 | [diff] [blame] | 3363 | } |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3364 | |
| 3365 | return 1; |
| 3366 | } |
| 3367 | } |
| 3368 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3369 | hlock = curr->held_locks + depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3370 | /* |
| 3371 | * Plain impossible, we just registered it and checked it weren't no |
| 3372 | * NULL like.. I bet this mushroom I ate was good! |
| 3373 | */ |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3374 | if (DEBUG_LOCKS_WARN_ON(!class)) |
| 3375 | return 0; |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3376 | hlock->class_idx = class_idx; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3377 | hlock->acquire_ip = ip; |
| 3378 | hlock->instance = lock; |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 3379 | hlock->nest_lock = nest_lock; |
Boqun Feng | c246975 | 2016-02-16 13:57:40 +0800 | [diff] [blame] | 3380 | hlock->irq_context = task_irq_context(curr); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3381 | hlock->trylock = trylock; |
| 3382 | hlock->read = read; |
| 3383 | hlock->check = check; |
Dmitry Baryshkov | 6951b12 | 2008-08-18 04:26:37 +0400 | [diff] [blame] | 3384 | hlock->hardirqs_off = !!hardirqs_off; |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3385 | hlock->references = references; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3386 | #ifdef CONFIG_LOCK_STAT |
| 3387 | hlock->waittime_stamp = 0; |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 3388 | hlock->holdtime_stamp = lockstat_clock(); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3389 | #endif |
Peter Zijlstra | 21199f2 | 2015-09-16 16:10:40 +0200 | [diff] [blame] | 3390 | hlock->pin_count = pin_count; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3391 | |
Oleg Nesterov | fb9edbe | 2014-01-20 19:20:06 +0100 | [diff] [blame] | 3392 | if (check && !mark_irqflags(curr, hlock)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3393 | return 0; |
| 3394 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3395 | /* mark it as used: */ |
Jarek Poplawski | 4ff773bb | 2007-05-08 00:31:00 -0700 | [diff] [blame] | 3396 | if (!mark_lock(curr, hlock, LOCK_USED)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3397 | return 0; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3398 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3399 | /* |
Gautham R Shenoy | 17aacfb9 | 2007-10-28 20:47:01 +0100 | [diff] [blame] | 3400 | * Calculate the chain hash: it's the combined hash of all the |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3401 | * lock keys along the dependency chain. We save the hash value |
| 3402 | * at every step so that we can get the current hash easily |
| 3403 | * after unlock. The chain hash is then used to cache dependency |
| 3404 | * results. |
| 3405 | * |
| 3406 | * The 'key ID' is what is the most compact key value to drive |
| 3407 | * the hash, not class->key. |
| 3408 | */ |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3409 | /* |
| 3410 | * Whoops, we did it again.. ran straight out of our static allocation. |
| 3411 | */ |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 3412 | if (DEBUG_LOCKS_WARN_ON(class_idx > MAX_LOCKDEP_KEYS)) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3413 | return 0; |
| 3414 | |
| 3415 | chain_key = curr->curr_chain_key; |
| 3416 | if (!depth) { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3417 | /* |
| 3418 | * How can we have a chain hash when we ain't got no keys?! |
| 3419 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3420 | if (DEBUG_LOCKS_WARN_ON(chain_key != 0)) |
| 3421 | return 0; |
| 3422 | chain_head = 1; |
| 3423 | } |
| 3424 | |
| 3425 | hlock->prev_chain_key = chain_key; |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3426 | if (separate_irq_context(curr, hlock)) { |
| 3427 | chain_key = 0; |
| 3428 | chain_head = 1; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3429 | } |
Alfredo Alvarez Fernandez | 5f18ab5 | 2016-02-11 00:33:32 +0100 | [diff] [blame] | 3430 | chain_key = iterate_chain_key(chain_key, class_idx); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3431 | |
Peter Zijlstra | f831948 | 2016-11-30 14:32:25 +1100 | [diff] [blame] | 3432 | if (nest_lock && !__lock_is_held(nest_lock, -1)) |
Maarten Lankhorst | d094595 | 2012-09-13 11:39:51 +0200 | [diff] [blame] | 3433 | return print_lock_nested_lock_not_held(curr, hlock, ip); |
| 3434 | |
Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3435 | if (!validate_chain(curr, lock, hlock, chain_head, chain_key)) |
Peter Zijlstra | 8e18257 | 2007-07-19 01:48:54 -0700 | [diff] [blame] | 3436 | return 0; |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 3437 | |
Gregory Haskins | 3aa416b | 2007-10-11 22:11:11 +0200 | [diff] [blame] | 3438 | curr->curr_chain_key = chain_key; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3439 | curr->lockdep_depth++; |
| 3440 | check_chain_key(curr); |
Jarek Poplawski | 60e114d | 2007-02-20 13:58:00 -0800 | [diff] [blame] | 3441 | #ifdef CONFIG_DEBUG_LOCKDEP |
| 3442 | if (unlikely(!debug_locks)) |
| 3443 | return 0; |
| 3444 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3445 | if (unlikely(curr->lockdep_depth >= MAX_LOCK_DEPTH)) { |
| 3446 | debug_locks_off(); |
Dave Jones | 2c52283 | 2013-04-25 13:40:02 -0400 | [diff] [blame] | 3447 | print_lockdep_off("BUG: MAX_LOCK_DEPTH too low!"); |
| 3448 | printk(KERN_DEBUG "depth: %i max: %lu!\n", |
Ben Greear | c054060 | 2013-02-06 10:56:19 -0800 | [diff] [blame] | 3449 | curr->lockdep_depth, MAX_LOCK_DEPTH); |
Ben Greear | c054060 | 2013-02-06 10:56:19 -0800 | [diff] [blame] | 3450 | |
| 3451 | lockdep_print_held_locks(current); |
| 3452 | debug_show_all_locks(); |
Peter Zijlstra | eedeeab | 2009-03-18 12:38:47 +0100 | [diff] [blame] | 3453 | dump_stack(); |
Ben Greear | c054060 | 2013-02-06 10:56:19 -0800 | [diff] [blame] | 3454 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3455 | return 0; |
| 3456 | } |
Jarek Poplawski | 381a229 | 2007-02-10 01:44:58 -0800 | [diff] [blame] | 3457 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3458 | if (unlikely(curr->lockdep_depth > max_lockdep_depth)) |
| 3459 | max_lockdep_depth = curr->lockdep_depth; |
| 3460 | |
| 3461 | return 1; |
| 3462 | } |
| 3463 | |
| 3464 | static int |
Srivatsa S. Bhat | f86f755 | 2013-01-08 18:35:58 +0530 | [diff] [blame] | 3465 | print_unlock_imbalance_bug(struct task_struct *curr, struct lockdep_map *lock, |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3466 | unsigned long ip) |
| 3467 | { |
| 3468 | if (!debug_locks_off()) |
| 3469 | return 0; |
| 3470 | if (debug_locks_silent) |
| 3471 | return 0; |
| 3472 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3473 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 3474 | pr_warn("=====================================\n"); |
| 3475 | pr_warn("WARNING: bad unlock balance detected!\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 3476 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 3477 | pr_warn("-------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3478 | pr_warn("%s/%d is trying to release lock (", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 3479 | curr->comm, task_pid_nr(curr)); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3480 | print_lockdep_cache(lock); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3481 | pr_cont(") at:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3482 | print_ip_sym(ip); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3483 | pr_warn("but there are no more locks to release!\n"); |
| 3484 | pr_warn("\nother info that might help us debug this:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3485 | lockdep_print_held_locks(curr); |
| 3486 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 3487 | pr_warn("\nstack backtrace:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3488 | dump_stack(); |
| 3489 | |
| 3490 | return 0; |
| 3491 | } |
| 3492 | |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 3493 | static int match_held_lock(const struct held_lock *hlock, |
| 3494 | const struct lockdep_map *lock) |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3495 | { |
| 3496 | if (hlock->instance == lock) |
| 3497 | return 1; |
| 3498 | |
| 3499 | if (hlock->references) { |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 3500 | const struct lock_class *class = lock->class_cache[0]; |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3501 | |
| 3502 | if (!class) |
| 3503 | class = look_up_lock_class(lock, 0); |
| 3504 | |
Peter Zijlstra | 80e0401 | 2011-08-05 14:26:17 +0200 | [diff] [blame] | 3505 | /* |
| 3506 | * If look_up_lock_class() failed to find a class, we're trying |
| 3507 | * to test if we hold a lock that has never yet been acquired. |
| 3508 | * Clearly if the lock hasn't been acquired _ever_, we're not |
| 3509 | * holding it either, so report failure. |
| 3510 | */ |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 3511 | if (!class) |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3512 | return 0; |
| 3513 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3514 | /* |
| 3515 | * References, but not a lock we're actually ref-counting? |
| 3516 | * State got messed up, follow the sites that change ->references |
| 3517 | * and try to make sense of it. |
| 3518 | */ |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3519 | if (DEBUG_LOCKS_WARN_ON(!hlock->nest_lock)) |
| 3520 | return 0; |
| 3521 | |
| 3522 | if (hlock->class_idx == class - lock_classes + 1) |
| 3523 | return 1; |
| 3524 | } |
| 3525 | |
| 3526 | return 0; |
| 3527 | } |
| 3528 | |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 3529 | /* @depth must not be zero */ |
| 3530 | static struct held_lock *find_held_lock(struct task_struct *curr, |
| 3531 | struct lockdep_map *lock, |
| 3532 | unsigned int depth, int *idx) |
| 3533 | { |
| 3534 | struct held_lock *ret, *hlock, *prev_hlock; |
| 3535 | int i; |
| 3536 | |
| 3537 | i = depth - 1; |
| 3538 | hlock = curr->held_locks + i; |
| 3539 | ret = hlock; |
| 3540 | if (match_held_lock(hlock, lock)) |
| 3541 | goto out; |
| 3542 | |
| 3543 | ret = NULL; |
| 3544 | for (i--, prev_hlock = hlock--; |
| 3545 | i >= 0; |
| 3546 | i--, prev_hlock = hlock--) { |
| 3547 | /* |
| 3548 | * We must not cross into another context: |
| 3549 | */ |
| 3550 | if (prev_hlock->irq_context != hlock->irq_context) { |
| 3551 | ret = NULL; |
| 3552 | break; |
| 3553 | } |
| 3554 | if (match_held_lock(hlock, lock)) { |
| 3555 | ret = hlock; |
| 3556 | break; |
| 3557 | } |
| 3558 | } |
| 3559 | |
| 3560 | out: |
| 3561 | *idx = i; |
| 3562 | return ret; |
| 3563 | } |
| 3564 | |
J. R. Okajima | e969970 | 2017-02-03 01:38:16 +0900 | [diff] [blame] | 3565 | static int reacquire_held_locks(struct task_struct *curr, unsigned int depth, |
| 3566 | int idx) |
| 3567 | { |
| 3568 | struct held_lock *hlock; |
| 3569 | |
| 3570 | for (hlock = curr->held_locks + idx; idx < depth; idx++, hlock++) { |
| 3571 | if (!__lock_acquire(hlock->instance, |
| 3572 | hlock_class(hlock)->subclass, |
| 3573 | hlock->trylock, |
| 3574 | hlock->read, hlock->check, |
| 3575 | hlock->hardirqs_off, |
| 3576 | hlock->nest_lock, hlock->acquire_ip, |
| 3577 | hlock->references, hlock->pin_count)) |
| 3578 | return 1; |
| 3579 | } |
| 3580 | return 0; |
| 3581 | } |
| 3582 | |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3583 | static int |
Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 3584 | __lock_set_class(struct lockdep_map *lock, const char *name, |
| 3585 | struct lock_class_key *key, unsigned int subclass, |
| 3586 | unsigned long ip) |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3587 | { |
| 3588 | struct task_struct *curr = current; |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 3589 | struct held_lock *hlock; |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3590 | struct lock_class *class; |
| 3591 | unsigned int depth; |
| 3592 | int i; |
| 3593 | |
| 3594 | depth = curr->lockdep_depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3595 | /* |
| 3596 | * This function is about (re)setting the class of a held lock, |
| 3597 | * yet we're not actually holding any locks. Naughty user! |
| 3598 | */ |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3599 | if (DEBUG_LOCKS_WARN_ON(!depth)) |
| 3600 | return 0; |
| 3601 | |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 3602 | hlock = find_held_lock(curr, lock, depth, &i); |
| 3603 | if (!hlock) |
| 3604 | return print_unlock_imbalance_bug(curr, lock, ip); |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3605 | |
Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 3606 | lockdep_init_map(lock, name, key, 0); |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3607 | class = register_lock_class(lock, subclass, 0); |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 3608 | hlock->class_idx = class - lock_classes + 1; |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3609 | |
| 3610 | curr->lockdep_depth = i; |
| 3611 | curr->curr_chain_key = hlock->prev_chain_key; |
| 3612 | |
J. R. Okajima | e969970 | 2017-02-03 01:38:16 +0900 | [diff] [blame] | 3613 | if (reacquire_held_locks(curr, depth, i)) |
| 3614 | return 0; |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3615 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3616 | /* |
| 3617 | * I took it apart and put it back together again, except now I have |
| 3618 | * these 'spare' parts.. where shall I put them. |
| 3619 | */ |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3620 | if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth)) |
| 3621 | return 0; |
| 3622 | return 1; |
| 3623 | } |
| 3624 | |
J. R. Okajima | 6419c4a | 2017-02-03 01:38:17 +0900 | [diff] [blame] | 3625 | static int __lock_downgrade(struct lockdep_map *lock, unsigned long ip) |
| 3626 | { |
| 3627 | struct task_struct *curr = current; |
| 3628 | struct held_lock *hlock; |
| 3629 | unsigned int depth; |
| 3630 | int i; |
| 3631 | |
| 3632 | depth = curr->lockdep_depth; |
| 3633 | /* |
| 3634 | * This function is about (re)setting the class of a held lock, |
| 3635 | * yet we're not actually holding any locks. Naughty user! |
| 3636 | */ |
| 3637 | if (DEBUG_LOCKS_WARN_ON(!depth)) |
| 3638 | return 0; |
| 3639 | |
| 3640 | hlock = find_held_lock(curr, lock, depth, &i); |
| 3641 | if (!hlock) |
| 3642 | return print_unlock_imbalance_bug(curr, lock, ip); |
| 3643 | |
| 3644 | curr->lockdep_depth = i; |
| 3645 | curr->curr_chain_key = hlock->prev_chain_key; |
| 3646 | |
| 3647 | WARN(hlock->read, "downgrading a read lock"); |
| 3648 | hlock->read = 1; |
| 3649 | hlock->acquire_ip = ip; |
| 3650 | |
| 3651 | if (reacquire_held_locks(curr, depth, i)) |
| 3652 | return 0; |
| 3653 | |
| 3654 | /* |
| 3655 | * I took it apart and put it back together again, except now I have |
| 3656 | * these 'spare' parts.. where shall I put them. |
| 3657 | */ |
| 3658 | if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth)) |
| 3659 | return 0; |
| 3660 | return 1; |
| 3661 | } |
| 3662 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3663 | /* |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3664 | * Remove the lock to the list of currently held locks - this gets |
| 3665 | * called on mutex_unlock()/spin_unlock*() (or on a failed |
| 3666 | * mutex_lock_interruptible()). |
| 3667 | * |
| 3668 | * @nested is an hysterical artifact, needs a tree wide cleanup. |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3669 | */ |
| 3670 | static int |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3671 | __lock_release(struct lockdep_map *lock, int nested, unsigned long ip) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3672 | { |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3673 | struct task_struct *curr = current; |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 3674 | struct held_lock *hlock; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3675 | unsigned int depth; |
Ingo Molnar | e966eae | 2017-12-12 12:31:16 +0100 | [diff] [blame] | 3676 | int i; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3677 | |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3678 | if (unlikely(!debug_locks)) |
| 3679 | return 0; |
| 3680 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3681 | depth = curr->lockdep_depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3682 | /* |
| 3683 | * So we're all set to release this lock.. wait what lock? We don't |
| 3684 | * own any locks, you've been drinking again? |
| 3685 | */ |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3686 | if (DEBUG_LOCKS_WARN_ON(depth <= 0)) |
| 3687 | return print_unlock_imbalance_bug(curr, lock, ip); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3688 | |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3689 | /* |
| 3690 | * Check whether the lock exists in the current stack |
| 3691 | * of held locks: |
| 3692 | */ |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 3693 | hlock = find_held_lock(curr, lock, depth, &i); |
| 3694 | if (!hlock) |
| 3695 | return print_unlock_imbalance_bug(curr, lock, ip); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3696 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3697 | if (hlock->instance == lock) |
| 3698 | lock_release_holdtime(hlock); |
| 3699 | |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3700 | WARN(hlock->pin_count, "releasing a pinned lock\n"); |
| 3701 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3702 | if (hlock->references) { |
| 3703 | hlock->references--; |
| 3704 | if (hlock->references) { |
| 3705 | /* |
| 3706 | * We had, and after removing one, still have |
| 3707 | * references, the current lock stack is still |
| 3708 | * valid. We're done! |
| 3709 | */ |
| 3710 | return 1; |
| 3711 | } |
| 3712 | } |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 3713 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3714 | /* |
| 3715 | * We have the right lock to unlock, 'hlock' points to it. |
| 3716 | * Now we remove it from the stack, and add back the other |
| 3717 | * entries (if any), recalculating the hash along the way: |
| 3718 | */ |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3719 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3720 | curr->lockdep_depth = i; |
| 3721 | curr->curr_chain_key = hlock->prev_chain_key; |
| 3722 | |
J. R. Okajima | e969970 | 2017-02-03 01:38:16 +0900 | [diff] [blame] | 3723 | if (reacquire_held_locks(curr, depth, i + 1)) |
| 3724 | return 0; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3725 | |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3726 | /* |
| 3727 | * We had N bottles of beer on the wall, we drank one, but now |
| 3728 | * there's not N-1 bottles of beer left on the wall... |
| 3729 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3730 | if (DEBUG_LOCKS_WARN_ON(curr->lockdep_depth != depth - 1)) |
| 3731 | return 0; |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3732 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3733 | return 1; |
| 3734 | } |
| 3735 | |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 3736 | static int __lock_is_held(const struct lockdep_map *lock, int read) |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3737 | { |
| 3738 | struct task_struct *curr = current; |
| 3739 | int i; |
| 3740 | |
| 3741 | for (i = 0; i < curr->lockdep_depth; i++) { |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 3742 | struct held_lock *hlock = curr->held_locks + i; |
| 3743 | |
Peter Zijlstra | f831948 | 2016-11-30 14:32:25 +1100 | [diff] [blame] | 3744 | if (match_held_lock(hlock, lock)) { |
| 3745 | if (read == -1 || hlock->read == read) |
| 3746 | return 1; |
| 3747 | |
| 3748 | return 0; |
| 3749 | } |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3750 | } |
| 3751 | |
| 3752 | return 0; |
| 3753 | } |
| 3754 | |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3755 | static struct pin_cookie __lock_pin_lock(struct lockdep_map *lock) |
| 3756 | { |
| 3757 | struct pin_cookie cookie = NIL_COOKIE; |
| 3758 | struct task_struct *curr = current; |
| 3759 | int i; |
| 3760 | |
| 3761 | if (unlikely(!debug_locks)) |
| 3762 | return cookie; |
| 3763 | |
| 3764 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 3765 | struct held_lock *hlock = curr->held_locks + i; |
| 3766 | |
| 3767 | if (match_held_lock(hlock, lock)) { |
| 3768 | /* |
| 3769 | * Grab 16bits of randomness; this is sufficient to not |
| 3770 | * be guessable and still allows some pin nesting in |
| 3771 | * our u32 pin_count. |
| 3772 | */ |
| 3773 | cookie.val = 1 + (prandom_u32() >> 16); |
| 3774 | hlock->pin_count += cookie.val; |
| 3775 | return cookie; |
| 3776 | } |
| 3777 | } |
| 3778 | |
| 3779 | WARN(1, "pinning an unheld lock\n"); |
| 3780 | return cookie; |
| 3781 | } |
| 3782 | |
| 3783 | static void __lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie) |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3784 | { |
| 3785 | struct task_struct *curr = current; |
| 3786 | int i; |
| 3787 | |
| 3788 | if (unlikely(!debug_locks)) |
| 3789 | return; |
| 3790 | |
| 3791 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 3792 | struct held_lock *hlock = curr->held_locks + i; |
| 3793 | |
| 3794 | if (match_held_lock(hlock, lock)) { |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3795 | hlock->pin_count += cookie.val; |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3796 | return; |
| 3797 | } |
| 3798 | } |
| 3799 | |
| 3800 | WARN(1, "pinning an unheld lock\n"); |
| 3801 | } |
| 3802 | |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3803 | static void __lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie) |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3804 | { |
| 3805 | struct task_struct *curr = current; |
| 3806 | int i; |
| 3807 | |
| 3808 | if (unlikely(!debug_locks)) |
| 3809 | return; |
| 3810 | |
| 3811 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 3812 | struct held_lock *hlock = curr->held_locks + i; |
| 3813 | |
| 3814 | if (match_held_lock(hlock, lock)) { |
| 3815 | if (WARN(!hlock->pin_count, "unpinning an unpinned lock\n")) |
| 3816 | return; |
| 3817 | |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3818 | hlock->pin_count -= cookie.val; |
| 3819 | |
| 3820 | if (WARN((int)hlock->pin_count < 0, "pin count corrupted\n")) |
| 3821 | hlock->pin_count = 0; |
| 3822 | |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3823 | return; |
| 3824 | } |
| 3825 | } |
| 3826 | |
| 3827 | WARN(1, "unpinning an unheld lock\n"); |
| 3828 | } |
| 3829 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3830 | /* |
| 3831 | * Check whether we follow the irq-flags state precisely: |
| 3832 | */ |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 3833 | static void check_flags(unsigned long flags) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3834 | { |
Ingo Molnar | 992860e | 2008-07-14 10:28:38 +0200 | [diff] [blame] | 3835 | #if defined(CONFIG_PROVE_LOCKING) && defined(CONFIG_DEBUG_LOCKDEP) && \ |
| 3836 | defined(CONFIG_TRACE_IRQFLAGS) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3837 | if (!debug_locks) |
| 3838 | return; |
| 3839 | |
Ingo Molnar | 5f9fa8a | 2007-12-07 19:02:47 +0100 | [diff] [blame] | 3840 | if (irqs_disabled_flags(flags)) { |
| 3841 | if (DEBUG_LOCKS_WARN_ON(current->hardirqs_enabled)) { |
| 3842 | printk("possible reason: unannotated irqs-off.\n"); |
| 3843 | } |
| 3844 | } else { |
| 3845 | if (DEBUG_LOCKS_WARN_ON(!current->hardirqs_enabled)) { |
| 3846 | printk("possible reason: unannotated irqs-on.\n"); |
| 3847 | } |
| 3848 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3849 | |
| 3850 | /* |
| 3851 | * We dont accurately track softirq state in e.g. |
| 3852 | * hardirq contexts (such as on 4KSTACKS), so only |
| 3853 | * check if not in hardirq contexts: |
| 3854 | */ |
| 3855 | if (!hardirq_count()) { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3856 | if (softirq_count()) { |
| 3857 | /* like the above, but with softirqs */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3858 | DEBUG_LOCKS_WARN_ON(current->softirqs_enabled); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3859 | } else { |
| 3860 | /* lick the above, does it taste good? */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3861 | DEBUG_LOCKS_WARN_ON(!current->softirqs_enabled); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 3862 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3863 | } |
| 3864 | |
| 3865 | if (!debug_locks) |
| 3866 | print_irqtrace_events(current); |
| 3867 | #endif |
| 3868 | } |
| 3869 | |
Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 3870 | void lock_set_class(struct lockdep_map *lock, const char *name, |
| 3871 | struct lock_class_key *key, unsigned int subclass, |
| 3872 | unsigned long ip) |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3873 | { |
| 3874 | unsigned long flags; |
| 3875 | |
| 3876 | if (unlikely(current->lockdep_recursion)) |
| 3877 | return; |
| 3878 | |
| 3879 | raw_local_irq_save(flags); |
| 3880 | current->lockdep_recursion = 1; |
| 3881 | check_flags(flags); |
Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 3882 | if (__lock_set_class(lock, name, key, subclass, ip)) |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3883 | check_chain_key(current); |
| 3884 | current->lockdep_recursion = 0; |
| 3885 | raw_local_irq_restore(flags); |
| 3886 | } |
Peter Zijlstra | 00ef9f7 | 2008-12-04 09:00:17 +0100 | [diff] [blame] | 3887 | EXPORT_SYMBOL_GPL(lock_set_class); |
Peter Zijlstra | 64aa348 | 2008-08-11 09:30:21 +0200 | [diff] [blame] | 3888 | |
J. R. Okajima | 6419c4a | 2017-02-03 01:38:17 +0900 | [diff] [blame] | 3889 | void lock_downgrade(struct lockdep_map *lock, unsigned long ip) |
| 3890 | { |
| 3891 | unsigned long flags; |
| 3892 | |
| 3893 | if (unlikely(current->lockdep_recursion)) |
| 3894 | return; |
| 3895 | |
| 3896 | raw_local_irq_save(flags); |
| 3897 | current->lockdep_recursion = 1; |
| 3898 | check_flags(flags); |
| 3899 | if (__lock_downgrade(lock, ip)) |
| 3900 | check_chain_key(current); |
| 3901 | current->lockdep_recursion = 0; |
| 3902 | raw_local_irq_restore(flags); |
| 3903 | } |
| 3904 | EXPORT_SYMBOL_GPL(lock_downgrade); |
| 3905 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3906 | /* |
| 3907 | * We are not always called with irqs disabled - do that here, |
| 3908 | * and also avoid lockdep recursion: |
| 3909 | */ |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 3910 | void lock_acquire(struct lockdep_map *lock, unsigned int subclass, |
Peter Zijlstra | 7531e2f | 2008-08-11 09:30:24 +0200 | [diff] [blame] | 3911 | int trylock, int read, int check, |
| 3912 | struct lockdep_map *nest_lock, unsigned long ip) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3913 | { |
| 3914 | unsigned long flags; |
| 3915 | |
| 3916 | if (unlikely(current->lockdep_recursion)) |
| 3917 | return; |
| 3918 | |
| 3919 | raw_local_irq_save(flags); |
| 3920 | check_flags(flags); |
| 3921 | |
| 3922 | current->lockdep_recursion = 1; |
Frederic Weisbecker | db2c4c7 | 2010-02-02 23:34:40 +0100 | [diff] [blame] | 3923 | trace_lock_acquire(lock, subclass, trylock, read, check, nest_lock, ip); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3924 | __lock_acquire(lock, subclass, trylock, read, check, |
Peter Zijlstra | 21199f2 | 2015-09-16 16:10:40 +0200 | [diff] [blame] | 3925 | irqs_disabled_flags(flags), nest_lock, ip, 0, 0); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3926 | current->lockdep_recursion = 0; |
| 3927 | raw_local_irq_restore(flags); |
| 3928 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3929 | EXPORT_SYMBOL_GPL(lock_acquire); |
| 3930 | |
Steven Rostedt | 1d09daa | 2008-05-12 21:20:55 +0200 | [diff] [blame] | 3931 | void lock_release(struct lockdep_map *lock, int nested, |
Steven Rostedt | 0764d23 | 2008-05-12 21:20:44 +0200 | [diff] [blame] | 3932 | unsigned long ip) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3933 | { |
| 3934 | unsigned long flags; |
| 3935 | |
| 3936 | if (unlikely(current->lockdep_recursion)) |
| 3937 | return; |
| 3938 | |
| 3939 | raw_local_irq_save(flags); |
| 3940 | check_flags(flags); |
| 3941 | current->lockdep_recursion = 1; |
Frederic Weisbecker | 9313543 | 2010-05-08 06:24:25 +0200 | [diff] [blame] | 3942 | trace_lock_release(lock, ip); |
Peter Zijlstra | e0f56fd | 2015-06-11 14:46:52 +0200 | [diff] [blame] | 3943 | if (__lock_release(lock, nested, ip)) |
| 3944 | check_chain_key(current); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3945 | current->lockdep_recursion = 0; |
| 3946 | raw_local_irq_restore(flags); |
| 3947 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 3948 | EXPORT_SYMBOL_GPL(lock_release); |
| 3949 | |
Matthew Wilcox | 08f36ff | 2018-01-17 07:14:13 -0800 | [diff] [blame] | 3950 | int lock_is_held_type(const struct lockdep_map *lock, int read) |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3951 | { |
| 3952 | unsigned long flags; |
| 3953 | int ret = 0; |
| 3954 | |
| 3955 | if (unlikely(current->lockdep_recursion)) |
Peter Zijlstra | f2513cd | 2011-06-06 12:32:43 +0200 | [diff] [blame] | 3956 | return 1; /* avoid false negative lockdep_assert_held() */ |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3957 | |
| 3958 | raw_local_irq_save(flags); |
| 3959 | check_flags(flags); |
| 3960 | |
| 3961 | current->lockdep_recursion = 1; |
Peter Zijlstra | f831948 | 2016-11-30 14:32:25 +1100 | [diff] [blame] | 3962 | ret = __lock_is_held(lock, read); |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3963 | current->lockdep_recursion = 0; |
| 3964 | raw_local_irq_restore(flags); |
| 3965 | |
| 3966 | return ret; |
| 3967 | } |
Peter Zijlstra | f831948 | 2016-11-30 14:32:25 +1100 | [diff] [blame] | 3968 | EXPORT_SYMBOL_GPL(lock_is_held_type); |
Peter Zijlstra | f607c66 | 2009-07-20 19:16:29 +0200 | [diff] [blame] | 3969 | |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3970 | struct pin_cookie lock_pin_lock(struct lockdep_map *lock) |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3971 | { |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3972 | struct pin_cookie cookie = NIL_COOKIE; |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3973 | unsigned long flags; |
| 3974 | |
| 3975 | if (unlikely(current->lockdep_recursion)) |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3976 | return cookie; |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3977 | |
| 3978 | raw_local_irq_save(flags); |
| 3979 | check_flags(flags); |
| 3980 | |
| 3981 | current->lockdep_recursion = 1; |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3982 | cookie = __lock_pin_lock(lock); |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3983 | current->lockdep_recursion = 0; |
| 3984 | raw_local_irq_restore(flags); |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3985 | |
| 3986 | return cookie; |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3987 | } |
| 3988 | EXPORT_SYMBOL_GPL(lock_pin_lock); |
| 3989 | |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 3990 | void lock_repin_lock(struct lockdep_map *lock, struct pin_cookie cookie) |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 3991 | { |
| 3992 | unsigned long flags; |
| 3993 | |
| 3994 | if (unlikely(current->lockdep_recursion)) |
| 3995 | return; |
| 3996 | |
| 3997 | raw_local_irq_save(flags); |
| 3998 | check_flags(flags); |
| 3999 | |
| 4000 | current->lockdep_recursion = 1; |
Peter Zijlstra | e7904a2 | 2015-08-01 19:25:08 +0200 | [diff] [blame] | 4001 | __lock_repin_lock(lock, cookie); |
| 4002 | current->lockdep_recursion = 0; |
| 4003 | raw_local_irq_restore(flags); |
| 4004 | } |
| 4005 | EXPORT_SYMBOL_GPL(lock_repin_lock); |
| 4006 | |
| 4007 | void lock_unpin_lock(struct lockdep_map *lock, struct pin_cookie cookie) |
| 4008 | { |
| 4009 | unsigned long flags; |
| 4010 | |
| 4011 | if (unlikely(current->lockdep_recursion)) |
| 4012 | return; |
| 4013 | |
| 4014 | raw_local_irq_save(flags); |
| 4015 | check_flags(flags); |
| 4016 | |
| 4017 | current->lockdep_recursion = 1; |
| 4018 | __lock_unpin_lock(lock, cookie); |
Peter Zijlstra | a24fc60 | 2015-06-11 14:46:53 +0200 | [diff] [blame] | 4019 | current->lockdep_recursion = 0; |
| 4020 | raw_local_irq_restore(flags); |
| 4021 | } |
| 4022 | EXPORT_SYMBOL_GPL(lock_unpin_lock); |
| 4023 | |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4024 | #ifdef CONFIG_LOCK_STAT |
| 4025 | static int |
| 4026 | print_lock_contention_bug(struct task_struct *curr, struct lockdep_map *lock, |
| 4027 | unsigned long ip) |
| 4028 | { |
| 4029 | if (!debug_locks_off()) |
| 4030 | return 0; |
| 4031 | if (debug_locks_silent) |
| 4032 | return 0; |
| 4033 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4034 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4035 | pr_warn("=================================\n"); |
| 4036 | pr_warn("WARNING: bad contention detected!\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 4037 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4038 | pr_warn("---------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4039 | pr_warn("%s/%d is trying to contend lock (", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 4040 | curr->comm, task_pid_nr(curr)); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4041 | print_lockdep_cache(lock); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4042 | pr_cont(") at:\n"); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4043 | print_ip_sym(ip); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4044 | pr_warn("but there are no locks held!\n"); |
| 4045 | pr_warn("\nother info that might help us debug this:\n"); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4046 | lockdep_print_held_locks(curr); |
| 4047 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4048 | pr_warn("\nstack backtrace:\n"); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4049 | dump_stack(); |
| 4050 | |
| 4051 | return 0; |
| 4052 | } |
| 4053 | |
| 4054 | static void |
| 4055 | __lock_contended(struct lockdep_map *lock, unsigned long ip) |
| 4056 | { |
| 4057 | struct task_struct *curr = current; |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 4058 | struct held_lock *hlock; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4059 | struct lock_class_stats *stats; |
| 4060 | unsigned int depth; |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4061 | int i, contention_point, contending_point; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4062 | |
| 4063 | depth = curr->lockdep_depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 4064 | /* |
| 4065 | * Whee, we contended on this lock, except it seems we're not |
| 4066 | * actually trying to acquire anything much at all.. |
| 4067 | */ |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4068 | if (DEBUG_LOCKS_WARN_ON(!depth)) |
| 4069 | return; |
| 4070 | |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 4071 | hlock = find_held_lock(curr, lock, depth, &i); |
| 4072 | if (!hlock) { |
| 4073 | print_lock_contention_bug(curr, lock, ip); |
| 4074 | return; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4075 | } |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4076 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 4077 | if (hlock->instance != lock) |
| 4078 | return; |
| 4079 | |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 4080 | hlock->waittime_stamp = lockstat_clock(); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4081 | |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4082 | contention_point = lock_point(hlock_class(hlock)->contention_point, ip); |
| 4083 | contending_point = lock_point(hlock_class(hlock)->contending_point, |
| 4084 | lock->ip); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4085 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 4086 | stats = get_lock_stats(hlock_class(hlock)); |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4087 | if (contention_point < LOCKSTAT_POINTS) |
| 4088 | stats->contention_point[contention_point]++; |
| 4089 | if (contending_point < LOCKSTAT_POINTS) |
| 4090 | stats->contending_point[contending_point]++; |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4091 | if (lock->cpu != smp_processor_id()) |
| 4092 | stats->bounces[bounce_contended + !!hlock->read]++; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4093 | put_lock_stats(stats); |
| 4094 | } |
| 4095 | |
| 4096 | static void |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4097 | __lock_acquired(struct lockdep_map *lock, unsigned long ip) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4098 | { |
| 4099 | struct task_struct *curr = current; |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 4100 | struct held_lock *hlock; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4101 | struct lock_class_stats *stats; |
| 4102 | unsigned int depth; |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 4103 | u64 now, waittime = 0; |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4104 | int i, cpu; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4105 | |
| 4106 | depth = curr->lockdep_depth; |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 4107 | /* |
| 4108 | * Yay, we acquired ownership of this lock we didn't try to |
| 4109 | * acquire, how the heck did that happen? |
| 4110 | */ |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4111 | if (DEBUG_LOCKS_WARN_ON(!depth)) |
| 4112 | return; |
| 4113 | |
J. R. Okajima | 41c2c5b | 2017-02-03 01:38:15 +0900 | [diff] [blame] | 4114 | hlock = find_held_lock(curr, lock, depth, &i); |
| 4115 | if (!hlock) { |
| 4116 | print_lock_contention_bug(curr, lock, _RET_IP_); |
| 4117 | return; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4118 | } |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4119 | |
Peter Zijlstra | bb97a91 | 2009-07-20 19:15:35 +0200 | [diff] [blame] | 4120 | if (hlock->instance != lock) |
| 4121 | return; |
| 4122 | |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4123 | cpu = smp_processor_id(); |
| 4124 | if (hlock->waittime_stamp) { |
Peter Zijlstra | 3365e779 | 2009-10-09 10:12:41 +0200 | [diff] [blame] | 4125 | now = lockstat_clock(); |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4126 | waittime = now - hlock->waittime_stamp; |
| 4127 | hlock->holdtime_stamp = now; |
| 4128 | } |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4129 | |
Frederic Weisbecker | 883a2a3 | 2010-05-08 06:16:11 +0200 | [diff] [blame] | 4130 | trace_lock_acquired(lock, ip); |
Frederic Weisbecker | 2062501 | 2009-04-06 01:49:33 +0200 | [diff] [blame] | 4131 | |
Dave Jones | f82b217 | 2008-08-11 09:30:23 +0200 | [diff] [blame] | 4132 | stats = get_lock_stats(hlock_class(hlock)); |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4133 | if (waittime) { |
| 4134 | if (hlock->read) |
| 4135 | lock_time_inc(&stats->read_waittime, waittime); |
| 4136 | else |
| 4137 | lock_time_inc(&stats->write_waittime, waittime); |
| 4138 | } |
| 4139 | if (lock->cpu != cpu) |
| 4140 | stats->bounces[bounce_acquired + !!hlock->read]++; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4141 | put_lock_stats(stats); |
Peter Zijlstra | 9664567 | 2007-07-19 01:49:00 -0700 | [diff] [blame] | 4142 | |
| 4143 | lock->cpu = cpu; |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4144 | lock->ip = ip; |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4145 | } |
| 4146 | |
| 4147 | void lock_contended(struct lockdep_map *lock, unsigned long ip) |
| 4148 | { |
| 4149 | unsigned long flags; |
| 4150 | |
| 4151 | if (unlikely(!lock_stat)) |
| 4152 | return; |
| 4153 | |
| 4154 | if (unlikely(current->lockdep_recursion)) |
| 4155 | return; |
| 4156 | |
| 4157 | raw_local_irq_save(flags); |
| 4158 | check_flags(flags); |
| 4159 | current->lockdep_recursion = 1; |
Frederic Weisbecker | db2c4c7 | 2010-02-02 23:34:40 +0100 | [diff] [blame] | 4160 | trace_lock_contended(lock, ip); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4161 | __lock_contended(lock, ip); |
| 4162 | current->lockdep_recursion = 0; |
| 4163 | raw_local_irq_restore(flags); |
| 4164 | } |
| 4165 | EXPORT_SYMBOL_GPL(lock_contended); |
| 4166 | |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4167 | void lock_acquired(struct lockdep_map *lock, unsigned long ip) |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4168 | { |
| 4169 | unsigned long flags; |
| 4170 | |
| 4171 | if (unlikely(!lock_stat)) |
| 4172 | return; |
| 4173 | |
| 4174 | if (unlikely(current->lockdep_recursion)) |
| 4175 | return; |
| 4176 | |
| 4177 | raw_local_irq_save(flags); |
| 4178 | check_flags(flags); |
| 4179 | current->lockdep_recursion = 1; |
Peter Zijlstra | c7e78cf | 2008-10-16 23:17:09 +0200 | [diff] [blame] | 4180 | __lock_acquired(lock, ip); |
Peter Zijlstra | f20786f | 2007-07-19 01:48:56 -0700 | [diff] [blame] | 4181 | current->lockdep_recursion = 0; |
| 4182 | raw_local_irq_restore(flags); |
| 4183 | } |
| 4184 | EXPORT_SYMBOL_GPL(lock_acquired); |
| 4185 | #endif |
| 4186 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4187 | /* |
| 4188 | * Used by the testsuite, sanitize the validator state |
| 4189 | * after a simulated failure: |
| 4190 | */ |
| 4191 | |
| 4192 | void lockdep_reset(void) |
| 4193 | { |
| 4194 | unsigned long flags; |
Ingo Molnar | 23d95a0 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 4195 | int i; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4196 | |
| 4197 | raw_local_irq_save(flags); |
| 4198 | current->curr_chain_key = 0; |
| 4199 | current->lockdep_depth = 0; |
| 4200 | current->lockdep_recursion = 0; |
| 4201 | memset(current->held_locks, 0, MAX_LOCK_DEPTH*sizeof(struct held_lock)); |
| 4202 | nr_hardirq_chains = 0; |
| 4203 | nr_softirq_chains = 0; |
| 4204 | nr_process_chains = 0; |
| 4205 | debug_locks = 1; |
Ingo Molnar | 23d95a0 | 2006-12-13 00:34:40 -0800 | [diff] [blame] | 4206 | for (i = 0; i < CHAINHASH_SIZE; i++) |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4207 | INIT_HLIST_HEAD(chainhash_table + i); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4208 | raw_local_irq_restore(flags); |
| 4209 | } |
| 4210 | |
| 4211 | static void zap_class(struct lock_class *class) |
| 4212 | { |
| 4213 | int i; |
| 4214 | |
| 4215 | /* |
| 4216 | * Remove all dependencies this lock is |
| 4217 | * involved in: |
| 4218 | */ |
| 4219 | for (i = 0; i < nr_list_entries; i++) { |
| 4220 | if (list_entries[i].class == class) |
| 4221 | list_del_rcu(&list_entries[i].entry); |
| 4222 | } |
| 4223 | /* |
| 4224 | * Unhash the class and remove it from the all_lock_classes list: |
| 4225 | */ |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4226 | hlist_del_rcu(&class->hash_entry); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4227 | list_del_rcu(&class->lock_entry); |
| 4228 | |
Peter Zijlstra | cee34d8 | 2015-06-02 12:50:13 +0200 | [diff] [blame] | 4229 | RCU_INIT_POINTER(class->key, NULL); |
| 4230 | RCU_INIT_POINTER(class->name, NULL); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4231 | } |
| 4232 | |
Arjan van de Ven | fabe874 | 2008-01-24 07:00:45 +0100 | [diff] [blame] | 4233 | static inline int within(const void *addr, void *start, unsigned long size) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4234 | { |
| 4235 | return addr >= start && addr < start + size; |
| 4236 | } |
| 4237 | |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 4238 | /* |
| 4239 | * Used in module.c to remove lock classes from memory that is going to be |
| 4240 | * freed; and possibly re-used by other modules. |
| 4241 | * |
| 4242 | * We will have had one sync_sched() before getting here, so we're guaranteed |
| 4243 | * nobody will look up these exact classes -- they're properly dead but still |
| 4244 | * allocated. |
| 4245 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4246 | void lockdep_free_key_range(void *start, unsigned long size) |
| 4247 | { |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 4248 | struct lock_class *class; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4249 | struct hlist_head *head; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4250 | unsigned long flags; |
| 4251 | int i; |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4252 | int locked; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4253 | |
| 4254 | raw_local_irq_save(flags); |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4255 | locked = graph_lock(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4256 | |
| 4257 | /* |
| 4258 | * Unhash all classes that were created by this module: |
| 4259 | */ |
| 4260 | for (i = 0; i < CLASSHASH_SIZE; i++) { |
| 4261 | head = classhash_table + i; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4262 | hlist_for_each_entry_rcu(class, head, hash_entry) { |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4263 | if (within(class->key, start, size)) |
| 4264 | zap_class(class); |
Arjan van de Ven | fabe874 | 2008-01-24 07:00:45 +0100 | [diff] [blame] | 4265 | else if (within(class->name, start, size)) |
| 4266 | zap_class(class); |
| 4267 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4268 | } |
| 4269 | |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4270 | if (locked) |
| 4271 | graph_unlock(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4272 | raw_local_irq_restore(flags); |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 4273 | |
| 4274 | /* |
| 4275 | * Wait for any possible iterators from look_up_lock_class() to pass |
| 4276 | * before continuing to free the memory they refer to. |
| 4277 | * |
| 4278 | * sync_sched() is sufficient because the read-side is IRQ disable. |
| 4279 | */ |
| 4280 | synchronize_sched(); |
| 4281 | |
| 4282 | /* |
| 4283 | * XXX at this point we could return the resources to the pool; |
| 4284 | * instead we leak them. We would need to change to bitmap allocators |
| 4285 | * instead of the linear allocators we have now. |
| 4286 | */ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4287 | } |
| 4288 | |
| 4289 | void lockdep_reset_lock(struct lockdep_map *lock) |
| 4290 | { |
Peter Zijlstra | 35a9393 | 2015-02-26 16:23:11 +0100 | [diff] [blame] | 4291 | struct lock_class *class; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4292 | struct hlist_head *head; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4293 | unsigned long flags; |
| 4294 | int i, j; |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4295 | int locked; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4296 | |
| 4297 | raw_local_irq_save(flags); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4298 | |
| 4299 | /* |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 4300 | * Remove all classes this lock might have: |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4301 | */ |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 4302 | for (j = 0; j < MAX_LOCKDEP_SUBCLASSES; j++) { |
| 4303 | /* |
| 4304 | * If the class exists we look it up and zap it: |
| 4305 | */ |
| 4306 | class = look_up_lock_class(lock, j); |
Matthew Wilcox | 64f29d1 | 2018-01-17 07:14:12 -0800 | [diff] [blame] | 4307 | if (class) |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 4308 | zap_class(class); |
| 4309 | } |
| 4310 | /* |
| 4311 | * Debug check: in the end all mapped classes should |
| 4312 | * be gone. |
| 4313 | */ |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4314 | locked = graph_lock(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4315 | for (i = 0; i < CLASSHASH_SIZE; i++) { |
| 4316 | head = classhash_table + i; |
Andrew Morton | a63f38c | 2016-02-03 13:44:12 -0800 | [diff] [blame] | 4317 | hlist_for_each_entry_rcu(class, head, hash_entry) { |
Hitoshi Mitake | 6201625 | 2010-10-05 18:01:51 +0900 | [diff] [blame] | 4318 | int match = 0; |
| 4319 | |
| 4320 | for (j = 0; j < NR_LOCKDEP_CACHING_CLASSES; j++) |
| 4321 | match |= class == lock->class_cache[j]; |
| 4322 | |
| 4323 | if (unlikely(match)) { |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 4324 | if (debug_locks_off_graph_unlock()) { |
| 4325 | /* |
| 4326 | * We all just reset everything, how did it match? |
| 4327 | */ |
Ingo Molnar | 74c383f | 2006-12-13 00:34:43 -0800 | [diff] [blame] | 4328 | WARN_ON(1); |
Peter Zijlstra | 0119fee | 2011-09-02 01:30:29 +0200 | [diff] [blame] | 4329 | } |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 4330 | goto out_restore; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4331 | } |
| 4332 | } |
| 4333 | } |
Nick Piggin | 5a26db5 | 2008-01-16 09:51:58 +0100 | [diff] [blame] | 4334 | if (locked) |
| 4335 | graph_unlock(); |
Ingo Molnar | d6d897c | 2006-07-10 04:44:04 -0700 | [diff] [blame] | 4336 | |
| 4337 | out_restore: |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4338 | raw_local_irq_restore(flags); |
| 4339 | } |
| 4340 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4341 | void __init lockdep_info(void) |
| 4342 | { |
| 4343 | printk("Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar\n"); |
| 4344 | |
Li Zefan | b0788ca | 2008-11-21 15:57:32 +0800 | [diff] [blame] | 4345 | printk("... MAX_LOCKDEP_SUBCLASSES: %lu\n", MAX_LOCKDEP_SUBCLASSES); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4346 | printk("... MAX_LOCK_DEPTH: %lu\n", MAX_LOCK_DEPTH); |
| 4347 | printk("... MAX_LOCKDEP_KEYS: %lu\n", MAX_LOCKDEP_KEYS); |
Li Zefan | b0788ca | 2008-11-21 15:57:32 +0800 | [diff] [blame] | 4348 | printk("... CLASSHASH_SIZE: %lu\n", CLASSHASH_SIZE); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4349 | printk("... MAX_LOCKDEP_ENTRIES: %lu\n", MAX_LOCKDEP_ENTRIES); |
| 4350 | printk("... MAX_LOCKDEP_CHAINS: %lu\n", MAX_LOCKDEP_CHAINS); |
| 4351 | printk("... CHAINHASH_SIZE: %lu\n", CHAINHASH_SIZE); |
| 4352 | |
| 4353 | printk(" memory used by lock dependency info: %lu kB\n", |
| 4354 | (sizeof(struct lock_class) * MAX_LOCKDEP_KEYS + |
| 4355 | sizeof(struct list_head) * CLASSHASH_SIZE + |
| 4356 | sizeof(struct lock_list) * MAX_LOCKDEP_ENTRIES + |
| 4357 | sizeof(struct lock_chain) * MAX_LOCKDEP_CHAINS + |
Ming Lei | 90629209 | 2009-08-02 21:43:36 +0800 | [diff] [blame] | 4358 | sizeof(struct list_head) * CHAINHASH_SIZE |
Ming Lei | 4dd861d | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 4359 | #ifdef CONFIG_PROVE_LOCKING |
Ming Lei | e351b66 | 2009-07-22 22:48:09 +0800 | [diff] [blame] | 4360 | + sizeof(struct circular_queue) |
Ming Lei | 4dd861d | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 4361 | #endif |
Ming Lei | 90629209 | 2009-08-02 21:43:36 +0800 | [diff] [blame] | 4362 | ) / 1024 |
Ming Lei | 4dd861d | 2009-07-16 15:44:29 +0200 | [diff] [blame] | 4363 | ); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4364 | |
| 4365 | printk(" per task-struct memory footprint: %lu bytes\n", |
| 4366 | sizeof(struct held_lock) * MAX_LOCK_DEPTH); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4367 | } |
| 4368 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4369 | static void |
| 4370 | 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] | 4371 | const void *mem_to, struct held_lock *hlock) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4372 | { |
| 4373 | if (!debug_locks_off()) |
| 4374 | return; |
| 4375 | if (debug_locks_silent) |
| 4376 | return; |
| 4377 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4378 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4379 | pr_warn("=========================\n"); |
| 4380 | pr_warn("WARNING: held lock freed!\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 4381 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4382 | pr_warn("-------------------------\n"); |
Borislav Petkov | 04860d4 | 2018-02-26 14:49:26 +0100 | [diff] [blame] | 4383 | pr_warn("%s/%d is freeing memory %px-%px, with a lock still held there!\n", |
Pavel Emelyanov | ba25f9d | 2007-10-18 23:40:40 -0700 | [diff] [blame] | 4384 | 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] | 4385 | print_lock(hlock); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4386 | lockdep_print_held_locks(curr); |
| 4387 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4388 | pr_warn("\nstack backtrace:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4389 | dump_stack(); |
| 4390 | } |
| 4391 | |
Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4392 | static inline int not_in_range(const void* mem_from, unsigned long mem_len, |
| 4393 | const void* lock_from, unsigned long lock_len) |
| 4394 | { |
| 4395 | return lock_from + lock_len <= mem_from || |
| 4396 | mem_from + mem_len <= lock_from; |
| 4397 | } |
| 4398 | |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4399 | /* |
| 4400 | * Called when kernel memory is freed (or unmapped), or if a lock |
| 4401 | * is destroyed or reinitialized - this code checks whether there is |
| 4402 | * any held lock in the memory range of <from> to <to>: |
| 4403 | */ |
| 4404 | void debug_check_no_locks_freed(const void *mem_from, unsigned long mem_len) |
| 4405 | { |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4406 | struct task_struct *curr = current; |
| 4407 | struct held_lock *hlock; |
| 4408 | unsigned long flags; |
| 4409 | int i; |
| 4410 | |
| 4411 | if (unlikely(!debug_locks)) |
| 4412 | return; |
| 4413 | |
| 4414 | local_irq_save(flags); |
| 4415 | for (i = 0; i < curr->lockdep_depth; i++) { |
| 4416 | hlock = curr->held_locks + i; |
| 4417 | |
Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4418 | if (not_in_range(mem_from, mem_len, hlock->instance, |
| 4419 | sizeof(*hlock->instance))) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4420 | continue; |
| 4421 | |
Oleg Nesterov | 5456178 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 4422 | print_freed_lock_bug(curr, mem_from, mem_from + mem_len, hlock); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4423 | break; |
| 4424 | } |
| 4425 | local_irq_restore(flags); |
| 4426 | } |
Peter Zijlstra | ed07536 | 2006-12-06 20:35:24 -0800 | [diff] [blame] | 4427 | EXPORT_SYMBOL_GPL(debug_check_no_locks_freed); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4428 | |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4429 | static void print_held_locks_bug(void) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4430 | { |
| 4431 | if (!debug_locks_off()) |
| 4432 | return; |
| 4433 | if (debug_locks_silent) |
| 4434 | return; |
| 4435 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4436 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4437 | pr_warn("====================================\n"); |
| 4438 | pr_warn("WARNING: %s/%d still has locks held!\n", |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4439 | current->comm, task_pid_nr(current)); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 4440 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4441 | pr_warn("------------------------------------\n"); |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4442 | lockdep_print_held_locks(current); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4443 | pr_warn("\nstack backtrace:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4444 | dump_stack(); |
| 4445 | } |
| 4446 | |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4447 | void debug_check_no_locks_held(void) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4448 | { |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4449 | if (unlikely(current->lockdep_depth > 0)) |
| 4450 | print_held_locks_bug(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4451 | } |
Colin Cross | 1b1d2fb | 2013-05-06 23:50:08 +0000 | [diff] [blame] | 4452 | EXPORT_SYMBOL_GPL(debug_check_no_locks_held); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4453 | |
Sasha Levin | 8dce7a9 | 2013-06-13 18:41:16 -0400 | [diff] [blame] | 4454 | #ifdef __KERNEL__ |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4455 | void debug_show_all_locks(void) |
| 4456 | { |
| 4457 | struct task_struct *g, *p; |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4458 | |
Jarek Poplawski | 9c35dd7 | 2007-03-22 00:11:28 -0800 | [diff] [blame] | 4459 | if (unlikely(!debug_locks)) { |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4460 | pr_warn("INFO: lockdep is turned off.\n"); |
Jarek Poplawski | 9c35dd7 | 2007-03-22 00:11:28 -0800 | [diff] [blame] | 4461 | return; |
| 4462 | } |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4463 | pr_warn("\nShowing all locks held in the system:\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4464 | |
Tetsuo Handa | 0f736a5 | 2018-04-06 19:41:18 +0900 | [diff] [blame] | 4465 | rcu_read_lock(); |
| 4466 | for_each_process_thread(g, p) { |
Tetsuo Handa | 0f736a5 | 2018-04-06 19:41:18 +0900 | [diff] [blame] | 4467 | if (!p->lockdep_depth) |
| 4468 | continue; |
| 4469 | lockdep_print_held_locks(p); |
Tejun Heo | 88f1c87 | 2018-01-22 14:00:55 -0800 | [diff] [blame] | 4470 | touch_nmi_watchdog(); |
Tetsuo Handa | 0f736a5 | 2018-04-06 19:41:18 +0900 | [diff] [blame] | 4471 | touch_all_softlockup_watchdogs(); |
| 4472 | } |
| 4473 | rcu_read_unlock(); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4474 | |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4475 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4476 | pr_warn("=============================================\n\n"); |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4477 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4478 | EXPORT_SYMBOL_GPL(debug_show_all_locks); |
Sasha Levin | 8dce7a9 | 2013-06-13 18:41:16 -0400 | [diff] [blame] | 4479 | #endif |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4480 | |
Ingo Molnar | 82a1fcb | 2008-01-25 21:08:02 +0100 | [diff] [blame] | 4481 | /* |
| 4482 | * Careful: only use this function if you are sure that |
| 4483 | * the task cannot run in parallel! |
| 4484 | */ |
John Kacur | f1b499f | 2010-08-05 17:10:53 +0200 | [diff] [blame] | 4485 | void debug_show_held_locks(struct task_struct *task) |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4486 | { |
Jarek Poplawski | 9c35dd7 | 2007-03-22 00:11:28 -0800 | [diff] [blame] | 4487 | if (unlikely(!debug_locks)) { |
| 4488 | printk("INFO: lockdep is turned off.\n"); |
| 4489 | return; |
| 4490 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4491 | lockdep_print_held_locks(task); |
| 4492 | } |
Ingo Molnar | fbb9ce95 | 2006-07-03 00:24:50 -0700 | [diff] [blame] | 4493 | EXPORT_SYMBOL_GPL(debug_show_held_locks); |
Peter Zijlstra | b351d16 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 4494 | |
Andi Kleen | 722a9f9 | 2014-05-02 00:44:38 +0200 | [diff] [blame] | 4495 | asmlinkage __visible void lockdep_sys_exit(void) |
Peter Zijlstra | b351d16 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 4496 | { |
| 4497 | struct task_struct *curr = current; |
| 4498 | |
| 4499 | if (unlikely(curr->lockdep_depth)) { |
| 4500 | if (!debug_locks_off()) |
| 4501 | return; |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4502 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4503 | pr_warn("================================================\n"); |
| 4504 | pr_warn("WARNING: lock held when returning to user space!\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 4505 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4506 | pr_warn("------------------------------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4507 | pr_warn("%s/%d is leaving the kernel with locks still held!\n", |
Peter Zijlstra | b351d16 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 4508 | curr->comm, curr->pid); |
| 4509 | lockdep_print_held_locks(curr); |
| 4510 | } |
Byungchul Park | b09be67 | 2017-08-07 16:12:52 +0900 | [diff] [blame] | 4511 | |
| 4512 | /* |
| 4513 | * The lock history for each syscall should be independent. So wipe the |
| 4514 | * slate clean on return to userspace. |
| 4515 | */ |
Peter Zijlstra | f52be57 | 2017-08-29 10:59:39 +0200 | [diff] [blame] | 4516 | lockdep_invariant_state(false); |
Peter Zijlstra | b351d16 | 2007-10-11 22:11:12 +0200 | [diff] [blame] | 4517 | } |
Paul E. McKenney | 0632eb3 | 2010-02-22 17:04:47 -0800 | [diff] [blame] | 4518 | |
Paul E. McKenney | b3fbab0 | 2011-05-24 08:31:09 -0700 | [diff] [blame] | 4519 | void lockdep_rcu_suspicious(const char *file, const int line, const char *s) |
Paul E. McKenney | 0632eb3 | 2010-02-22 17:04:47 -0800 | [diff] [blame] | 4520 | { |
| 4521 | struct task_struct *curr = current; |
| 4522 | |
Lai Jiangshan | 2b3fc35 | 2010-04-20 16:23:07 +0800 | [diff] [blame] | 4523 | /* Note: the following can be executed concurrently, so be careful. */ |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4524 | pr_warn("\n"); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4525 | pr_warn("=============================\n"); |
| 4526 | pr_warn("WARNING: suspicious RCU usage\n"); |
Ben Hutchings | fbdc4b9 | 2011-10-28 04:36:55 +0100 | [diff] [blame] | 4527 | print_kernel_ident(); |
Paul E. McKenney | a5dd63e | 2017-01-31 07:45:13 -0800 | [diff] [blame] | 4528 | pr_warn("-----------------------------\n"); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4529 | pr_warn("%s:%d %s!\n", file, line, s); |
| 4530 | pr_warn("\nother info that might help us debug this:\n\n"); |
| 4531 | pr_warn("\n%srcu_scheduler_active = %d, debug_locks = %d\n", |
Paul E. McKenney | c5fdcec | 2012-01-30 08:46:32 -0800 | [diff] [blame] | 4532 | !rcu_lockdep_current_cpu_online() |
| 4533 | ? "RCU used illegally from offline CPU!\n" |
Paul E. McKenney | 5c173eb | 2013-09-13 17:20:11 -0700 | [diff] [blame] | 4534 | : !rcu_is_watching() |
Paul E. McKenney | c5fdcec | 2012-01-30 08:46:32 -0800 | [diff] [blame] | 4535 | ? "RCU used illegally from idle CPU!\n" |
| 4536 | : "", |
| 4537 | rcu_scheduler_active, debug_locks); |
Frederic Weisbecker | 0464e93 | 2011-10-07 18:22:01 +0200 | [diff] [blame] | 4538 | |
| 4539 | /* |
| 4540 | * If a CPU is in the RCU-free window in idle (ie: in the section |
| 4541 | * between rcu_idle_enter() and rcu_idle_exit(), then RCU |
| 4542 | * considers that CPU to be in an "extended quiescent state", |
| 4543 | * which means that RCU will be completely ignoring that CPU. |
| 4544 | * Therefore, rcu_read_lock() and friends have absolutely no |
| 4545 | * effect on a CPU running in that state. In other words, even if |
| 4546 | * such an RCU-idle CPU has called rcu_read_lock(), RCU might well |
| 4547 | * delete data structures out from under it. RCU really has no |
| 4548 | * choice here: we need to keep an RCU-free window in idle where |
| 4549 | * the CPU may possibly enter into low power mode. This way we can |
| 4550 | * notice an extended quiescent state to other CPUs that started a grace |
| 4551 | * period. Otherwise we would delay any grace period as long as we run |
| 4552 | * in the idle task. |
| 4553 | * |
| 4554 | * So complain bitterly if someone does call rcu_read_lock(), |
| 4555 | * rcu_read_lock_bh() and so on from extended quiescent states. |
| 4556 | */ |
Paul E. McKenney | 5c173eb | 2013-09-13 17:20:11 -0700 | [diff] [blame] | 4557 | if (!rcu_is_watching()) |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4558 | pr_warn("RCU used illegally from extended quiescent state!\n"); |
Frederic Weisbecker | 0464e93 | 2011-10-07 18:22:01 +0200 | [diff] [blame] | 4559 | |
Paul E. McKenney | 0632eb3 | 2010-02-22 17:04:47 -0800 | [diff] [blame] | 4560 | lockdep_print_held_locks(curr); |
Paul E. McKenney | 681fbec | 2017-05-04 15:44:38 -0700 | [diff] [blame] | 4561 | pr_warn("\nstack backtrace:\n"); |
Paul E. McKenney | 0632eb3 | 2010-02-22 17:04:47 -0800 | [diff] [blame] | 4562 | dump_stack(); |
| 4563 | } |
Paul E. McKenney | b3fbab0 | 2011-05-24 08:31:09 -0700 | [diff] [blame] | 4564 | EXPORT_SYMBOL_GPL(lockdep_rcu_suspicious); |