Loading...
1/*
2 * lib/locking-selftest.c
3 *
4 * Testsuite for various locking APIs: spinlocks, rwlocks,
5 * mutexes and rw-semaphores.
6 *
7 * It is checking both false positives and false negatives.
8 *
9 * Started by Ingo Molnar:
10 *
11 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
12 */
13#include <linux/rwsem.h>
14#include <linux/mutex.h>
15#include <linux/ww_mutex.h>
16#include <linux/sched.h>
17#include <linux/delay.h>
18#include <linux/lockdep.h>
19#include <linux/spinlock.h>
20#include <linux/kallsyms.h>
21#include <linux/interrupt.h>
22#include <linux/debug_locks.h>
23#include <linux/irqflags.h>
24
25/*
26 * Change this to 1 if you want to see the failure printouts:
27 */
28static unsigned int debug_locks_verbose;
29
30static DEFINE_WW_CLASS(ww_lockdep);
31
32static int __init setup_debug_locks_verbose(char *str)
33{
34 get_option(&str, &debug_locks_verbose);
35
36 return 1;
37}
38
39__setup("debug_locks_verbose=", setup_debug_locks_verbose);
40
41#define FAILURE 0
42#define SUCCESS 1
43
44#define LOCKTYPE_SPIN 0x1
45#define LOCKTYPE_RWLOCK 0x2
46#define LOCKTYPE_MUTEX 0x4
47#define LOCKTYPE_RWSEM 0x8
48#define LOCKTYPE_WW 0x10
49
50static struct ww_acquire_ctx t, t2;
51static struct ww_mutex o, o2, o3;
52
53/*
54 * Normal standalone locks, for the circular and irq-context
55 * dependency tests:
56 */
57static DEFINE_RAW_SPINLOCK(lock_A);
58static DEFINE_RAW_SPINLOCK(lock_B);
59static DEFINE_RAW_SPINLOCK(lock_C);
60static DEFINE_RAW_SPINLOCK(lock_D);
61
62static DEFINE_RWLOCK(rwlock_A);
63static DEFINE_RWLOCK(rwlock_B);
64static DEFINE_RWLOCK(rwlock_C);
65static DEFINE_RWLOCK(rwlock_D);
66
67static DEFINE_MUTEX(mutex_A);
68static DEFINE_MUTEX(mutex_B);
69static DEFINE_MUTEX(mutex_C);
70static DEFINE_MUTEX(mutex_D);
71
72static DECLARE_RWSEM(rwsem_A);
73static DECLARE_RWSEM(rwsem_B);
74static DECLARE_RWSEM(rwsem_C);
75static DECLARE_RWSEM(rwsem_D);
76
77/*
78 * Locks that we initialize dynamically as well so that
79 * e.g. X1 and X2 becomes two instances of the same class,
80 * but X* and Y* are different classes. We do this so that
81 * we do not trigger a real lockup:
82 */
83static DEFINE_RAW_SPINLOCK(lock_X1);
84static DEFINE_RAW_SPINLOCK(lock_X2);
85static DEFINE_RAW_SPINLOCK(lock_Y1);
86static DEFINE_RAW_SPINLOCK(lock_Y2);
87static DEFINE_RAW_SPINLOCK(lock_Z1);
88static DEFINE_RAW_SPINLOCK(lock_Z2);
89
90static DEFINE_RWLOCK(rwlock_X1);
91static DEFINE_RWLOCK(rwlock_X2);
92static DEFINE_RWLOCK(rwlock_Y1);
93static DEFINE_RWLOCK(rwlock_Y2);
94static DEFINE_RWLOCK(rwlock_Z1);
95static DEFINE_RWLOCK(rwlock_Z2);
96
97static DEFINE_MUTEX(mutex_X1);
98static DEFINE_MUTEX(mutex_X2);
99static DEFINE_MUTEX(mutex_Y1);
100static DEFINE_MUTEX(mutex_Y2);
101static DEFINE_MUTEX(mutex_Z1);
102static DEFINE_MUTEX(mutex_Z2);
103
104static DECLARE_RWSEM(rwsem_X1);
105static DECLARE_RWSEM(rwsem_X2);
106static DECLARE_RWSEM(rwsem_Y1);
107static DECLARE_RWSEM(rwsem_Y2);
108static DECLARE_RWSEM(rwsem_Z1);
109static DECLARE_RWSEM(rwsem_Z2);
110
111/*
112 * non-inlined runtime initializers, to let separate locks share
113 * the same lock-class:
114 */
115#define INIT_CLASS_FUNC(class) \
116static noinline void \
117init_class_##class(raw_spinlock_t *lock, rwlock_t *rwlock, \
118 struct mutex *mutex, struct rw_semaphore *rwsem)\
119{ \
120 raw_spin_lock_init(lock); \
121 rwlock_init(rwlock); \
122 mutex_init(mutex); \
123 init_rwsem(rwsem); \
124}
125
126INIT_CLASS_FUNC(X)
127INIT_CLASS_FUNC(Y)
128INIT_CLASS_FUNC(Z)
129
130static void init_shared_classes(void)
131{
132 init_class_X(&lock_X1, &rwlock_X1, &mutex_X1, &rwsem_X1);
133 init_class_X(&lock_X2, &rwlock_X2, &mutex_X2, &rwsem_X2);
134
135 init_class_Y(&lock_Y1, &rwlock_Y1, &mutex_Y1, &rwsem_Y1);
136 init_class_Y(&lock_Y2, &rwlock_Y2, &mutex_Y2, &rwsem_Y2);
137
138 init_class_Z(&lock_Z1, &rwlock_Z1, &mutex_Z1, &rwsem_Z1);
139 init_class_Z(&lock_Z2, &rwlock_Z2, &mutex_Z2, &rwsem_Z2);
140}
141
142/*
143 * For spinlocks and rwlocks we also do hardirq-safe / softirq-safe tests.
144 * The following functions use a lock from a simulated hardirq/softirq
145 * context, causing the locks to be marked as hardirq-safe/softirq-safe:
146 */
147
148#define HARDIRQ_DISABLE local_irq_disable
149#define HARDIRQ_ENABLE local_irq_enable
150
151#define HARDIRQ_ENTER() \
152 local_irq_disable(); \
153 __irq_enter(); \
154 WARN_ON(!in_irq());
155
156#define HARDIRQ_EXIT() \
157 __irq_exit(); \
158 local_irq_enable();
159
160#define SOFTIRQ_DISABLE local_bh_disable
161#define SOFTIRQ_ENABLE local_bh_enable
162
163#define SOFTIRQ_ENTER() \
164 local_bh_disable(); \
165 local_irq_disable(); \
166 lockdep_softirq_enter(); \
167 WARN_ON(!in_softirq());
168
169#define SOFTIRQ_EXIT() \
170 lockdep_softirq_exit(); \
171 local_irq_enable(); \
172 local_bh_enable();
173
174/*
175 * Shortcuts for lock/unlock API variants, to keep
176 * the testcases compact:
177 */
178#define L(x) raw_spin_lock(&lock_##x)
179#define U(x) raw_spin_unlock(&lock_##x)
180#define LU(x) L(x); U(x)
181#define SI(x) raw_spin_lock_init(&lock_##x)
182
183#define WL(x) write_lock(&rwlock_##x)
184#define WU(x) write_unlock(&rwlock_##x)
185#define WLU(x) WL(x); WU(x)
186
187#define RL(x) read_lock(&rwlock_##x)
188#define RU(x) read_unlock(&rwlock_##x)
189#define RLU(x) RL(x); RU(x)
190#define RWI(x) rwlock_init(&rwlock_##x)
191
192#define ML(x) mutex_lock(&mutex_##x)
193#define MU(x) mutex_unlock(&mutex_##x)
194#define MI(x) mutex_init(&mutex_##x)
195
196#define WSL(x) down_write(&rwsem_##x)
197#define WSU(x) up_write(&rwsem_##x)
198
199#define RSL(x) down_read(&rwsem_##x)
200#define RSU(x) up_read(&rwsem_##x)
201#define RWSI(x) init_rwsem(&rwsem_##x)
202
203#ifndef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
204#define WWAI(x) ww_acquire_init(x, &ww_lockdep)
205#else
206#define WWAI(x) do { ww_acquire_init(x, &ww_lockdep); (x)->deadlock_inject_countdown = ~0U; } while (0)
207#endif
208#define WWAD(x) ww_acquire_done(x)
209#define WWAF(x) ww_acquire_fini(x)
210
211#define WWL(x, c) ww_mutex_lock(x, c)
212#define WWT(x) ww_mutex_trylock(x)
213#define WWL1(x) ww_mutex_lock(x, NULL)
214#define WWU(x) ww_mutex_unlock(x)
215
216
217#define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x)
218
219/*
220 * Generate different permutations of the same testcase, using
221 * the same basic lock-dependency/state events:
222 */
223
224#define GENERATE_TESTCASE(name) \
225 \
226static void name(void) { E(); }
227
228#define GENERATE_PERMUTATIONS_2_EVENTS(name) \
229 \
230static void name##_12(void) { E1(); E2(); } \
231static void name##_21(void) { E2(); E1(); }
232
233#define GENERATE_PERMUTATIONS_3_EVENTS(name) \
234 \
235static void name##_123(void) { E1(); E2(); E3(); } \
236static void name##_132(void) { E1(); E3(); E2(); } \
237static void name##_213(void) { E2(); E1(); E3(); } \
238static void name##_231(void) { E2(); E3(); E1(); } \
239static void name##_312(void) { E3(); E1(); E2(); } \
240static void name##_321(void) { E3(); E2(); E1(); }
241
242/*
243 * AA deadlock:
244 */
245
246#define E() \
247 \
248 LOCK(X1); \
249 LOCK(X2); /* this one should fail */
250
251/*
252 * 6 testcases:
253 */
254#include "locking-selftest-spin.h"
255GENERATE_TESTCASE(AA_spin)
256#include "locking-selftest-wlock.h"
257GENERATE_TESTCASE(AA_wlock)
258#include "locking-selftest-rlock.h"
259GENERATE_TESTCASE(AA_rlock)
260#include "locking-selftest-mutex.h"
261GENERATE_TESTCASE(AA_mutex)
262#include "locking-selftest-wsem.h"
263GENERATE_TESTCASE(AA_wsem)
264#include "locking-selftest-rsem.h"
265GENERATE_TESTCASE(AA_rsem)
266
267#undef E
268
269/*
270 * Special-case for read-locking, they are
271 * allowed to recurse on the same lock class:
272 */
273static void rlock_AA1(void)
274{
275 RL(X1);
276 RL(X1); // this one should NOT fail
277}
278
279static void rlock_AA1B(void)
280{
281 RL(X1);
282 RL(X2); // this one should NOT fail
283}
284
285static void rsem_AA1(void)
286{
287 RSL(X1);
288 RSL(X1); // this one should fail
289}
290
291static void rsem_AA1B(void)
292{
293 RSL(X1);
294 RSL(X2); // this one should fail
295}
296/*
297 * The mixing of read and write locks is not allowed:
298 */
299static void rlock_AA2(void)
300{
301 RL(X1);
302 WL(X2); // this one should fail
303}
304
305static void rsem_AA2(void)
306{
307 RSL(X1);
308 WSL(X2); // this one should fail
309}
310
311static void rlock_AA3(void)
312{
313 WL(X1);
314 RL(X2); // this one should fail
315}
316
317static void rsem_AA3(void)
318{
319 WSL(X1);
320 RSL(X2); // this one should fail
321}
322
323/*
324 * ABBA deadlock:
325 */
326
327#define E() \
328 \
329 LOCK_UNLOCK_2(A, B); \
330 LOCK_UNLOCK_2(B, A); /* fail */
331
332/*
333 * 6 testcases:
334 */
335#include "locking-selftest-spin.h"
336GENERATE_TESTCASE(ABBA_spin)
337#include "locking-selftest-wlock.h"
338GENERATE_TESTCASE(ABBA_wlock)
339#include "locking-selftest-rlock.h"
340GENERATE_TESTCASE(ABBA_rlock)
341#include "locking-selftest-mutex.h"
342GENERATE_TESTCASE(ABBA_mutex)
343#include "locking-selftest-wsem.h"
344GENERATE_TESTCASE(ABBA_wsem)
345#include "locking-selftest-rsem.h"
346GENERATE_TESTCASE(ABBA_rsem)
347
348#undef E
349
350/*
351 * AB BC CA deadlock:
352 */
353
354#define E() \
355 \
356 LOCK_UNLOCK_2(A, B); \
357 LOCK_UNLOCK_2(B, C); \
358 LOCK_UNLOCK_2(C, A); /* fail */
359
360/*
361 * 6 testcases:
362 */
363#include "locking-selftest-spin.h"
364GENERATE_TESTCASE(ABBCCA_spin)
365#include "locking-selftest-wlock.h"
366GENERATE_TESTCASE(ABBCCA_wlock)
367#include "locking-selftest-rlock.h"
368GENERATE_TESTCASE(ABBCCA_rlock)
369#include "locking-selftest-mutex.h"
370GENERATE_TESTCASE(ABBCCA_mutex)
371#include "locking-selftest-wsem.h"
372GENERATE_TESTCASE(ABBCCA_wsem)
373#include "locking-selftest-rsem.h"
374GENERATE_TESTCASE(ABBCCA_rsem)
375
376#undef E
377
378/*
379 * AB CA BC deadlock:
380 */
381
382#define E() \
383 \
384 LOCK_UNLOCK_2(A, B); \
385 LOCK_UNLOCK_2(C, A); \
386 LOCK_UNLOCK_2(B, C); /* fail */
387
388/*
389 * 6 testcases:
390 */
391#include "locking-selftest-spin.h"
392GENERATE_TESTCASE(ABCABC_spin)
393#include "locking-selftest-wlock.h"
394GENERATE_TESTCASE(ABCABC_wlock)
395#include "locking-selftest-rlock.h"
396GENERATE_TESTCASE(ABCABC_rlock)
397#include "locking-selftest-mutex.h"
398GENERATE_TESTCASE(ABCABC_mutex)
399#include "locking-selftest-wsem.h"
400GENERATE_TESTCASE(ABCABC_wsem)
401#include "locking-selftest-rsem.h"
402GENERATE_TESTCASE(ABCABC_rsem)
403
404#undef E
405
406/*
407 * AB BC CD DA deadlock:
408 */
409
410#define E() \
411 \
412 LOCK_UNLOCK_2(A, B); \
413 LOCK_UNLOCK_2(B, C); \
414 LOCK_UNLOCK_2(C, D); \
415 LOCK_UNLOCK_2(D, A); /* fail */
416
417/*
418 * 6 testcases:
419 */
420#include "locking-selftest-spin.h"
421GENERATE_TESTCASE(ABBCCDDA_spin)
422#include "locking-selftest-wlock.h"
423GENERATE_TESTCASE(ABBCCDDA_wlock)
424#include "locking-selftest-rlock.h"
425GENERATE_TESTCASE(ABBCCDDA_rlock)
426#include "locking-selftest-mutex.h"
427GENERATE_TESTCASE(ABBCCDDA_mutex)
428#include "locking-selftest-wsem.h"
429GENERATE_TESTCASE(ABBCCDDA_wsem)
430#include "locking-selftest-rsem.h"
431GENERATE_TESTCASE(ABBCCDDA_rsem)
432
433#undef E
434
435/*
436 * AB CD BD DA deadlock:
437 */
438#define E() \
439 \
440 LOCK_UNLOCK_2(A, B); \
441 LOCK_UNLOCK_2(C, D); \
442 LOCK_UNLOCK_2(B, D); \
443 LOCK_UNLOCK_2(D, A); /* fail */
444
445/*
446 * 6 testcases:
447 */
448#include "locking-selftest-spin.h"
449GENERATE_TESTCASE(ABCDBDDA_spin)
450#include "locking-selftest-wlock.h"
451GENERATE_TESTCASE(ABCDBDDA_wlock)
452#include "locking-selftest-rlock.h"
453GENERATE_TESTCASE(ABCDBDDA_rlock)
454#include "locking-selftest-mutex.h"
455GENERATE_TESTCASE(ABCDBDDA_mutex)
456#include "locking-selftest-wsem.h"
457GENERATE_TESTCASE(ABCDBDDA_wsem)
458#include "locking-selftest-rsem.h"
459GENERATE_TESTCASE(ABCDBDDA_rsem)
460
461#undef E
462
463/*
464 * AB CD BC DA deadlock:
465 */
466#define E() \
467 \
468 LOCK_UNLOCK_2(A, B); \
469 LOCK_UNLOCK_2(C, D); \
470 LOCK_UNLOCK_2(B, C); \
471 LOCK_UNLOCK_2(D, A); /* fail */
472
473/*
474 * 6 testcases:
475 */
476#include "locking-selftest-spin.h"
477GENERATE_TESTCASE(ABCDBCDA_spin)
478#include "locking-selftest-wlock.h"
479GENERATE_TESTCASE(ABCDBCDA_wlock)
480#include "locking-selftest-rlock.h"
481GENERATE_TESTCASE(ABCDBCDA_rlock)
482#include "locking-selftest-mutex.h"
483GENERATE_TESTCASE(ABCDBCDA_mutex)
484#include "locking-selftest-wsem.h"
485GENERATE_TESTCASE(ABCDBCDA_wsem)
486#include "locking-selftest-rsem.h"
487GENERATE_TESTCASE(ABCDBCDA_rsem)
488
489#undef E
490
491/*
492 * Double unlock:
493 */
494#define E() \
495 \
496 LOCK(A); \
497 UNLOCK(A); \
498 UNLOCK(A); /* fail */
499
500/*
501 * 6 testcases:
502 */
503#include "locking-selftest-spin.h"
504GENERATE_TESTCASE(double_unlock_spin)
505#include "locking-selftest-wlock.h"
506GENERATE_TESTCASE(double_unlock_wlock)
507#include "locking-selftest-rlock.h"
508GENERATE_TESTCASE(double_unlock_rlock)
509#include "locking-selftest-mutex.h"
510GENERATE_TESTCASE(double_unlock_mutex)
511#include "locking-selftest-wsem.h"
512GENERATE_TESTCASE(double_unlock_wsem)
513#include "locking-selftest-rsem.h"
514GENERATE_TESTCASE(double_unlock_rsem)
515
516#undef E
517
518/*
519 * Bad unlock ordering:
520 */
521#define E() \
522 \
523 LOCK(A); \
524 LOCK(B); \
525 UNLOCK(A); /* fail */ \
526 UNLOCK(B);
527
528/*
529 * 6 testcases:
530 */
531#include "locking-selftest-spin.h"
532GENERATE_TESTCASE(bad_unlock_order_spin)
533#include "locking-selftest-wlock.h"
534GENERATE_TESTCASE(bad_unlock_order_wlock)
535#include "locking-selftest-rlock.h"
536GENERATE_TESTCASE(bad_unlock_order_rlock)
537#include "locking-selftest-mutex.h"
538GENERATE_TESTCASE(bad_unlock_order_mutex)
539#include "locking-selftest-wsem.h"
540GENERATE_TESTCASE(bad_unlock_order_wsem)
541#include "locking-selftest-rsem.h"
542GENERATE_TESTCASE(bad_unlock_order_rsem)
543
544#undef E
545
546/*
547 * initializing a held lock:
548 */
549#define E() \
550 \
551 LOCK(A); \
552 INIT(A); /* fail */
553
554/*
555 * 6 testcases:
556 */
557#include "locking-selftest-spin.h"
558GENERATE_TESTCASE(init_held_spin)
559#include "locking-selftest-wlock.h"
560GENERATE_TESTCASE(init_held_wlock)
561#include "locking-selftest-rlock.h"
562GENERATE_TESTCASE(init_held_rlock)
563#include "locking-selftest-mutex.h"
564GENERATE_TESTCASE(init_held_mutex)
565#include "locking-selftest-wsem.h"
566GENERATE_TESTCASE(init_held_wsem)
567#include "locking-selftest-rsem.h"
568GENERATE_TESTCASE(init_held_rsem)
569
570#undef E
571
572/*
573 * locking an irq-safe lock with irqs enabled:
574 */
575#define E1() \
576 \
577 IRQ_ENTER(); \
578 LOCK(A); \
579 UNLOCK(A); \
580 IRQ_EXIT();
581
582#define E2() \
583 \
584 LOCK(A); \
585 UNLOCK(A);
586
587/*
588 * Generate 24 testcases:
589 */
590#include "locking-selftest-spin-hardirq.h"
591GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_spin)
592
593#include "locking-selftest-rlock-hardirq.h"
594GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_rlock)
595
596#include "locking-selftest-wlock-hardirq.h"
597GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_wlock)
598
599#include "locking-selftest-spin-softirq.h"
600GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_spin)
601
602#include "locking-selftest-rlock-softirq.h"
603GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_rlock)
604
605#include "locking-selftest-wlock-softirq.h"
606GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_wlock)
607
608#undef E1
609#undef E2
610
611/*
612 * Enabling hardirqs with a softirq-safe lock held:
613 */
614#define E1() \
615 \
616 SOFTIRQ_ENTER(); \
617 LOCK(A); \
618 UNLOCK(A); \
619 SOFTIRQ_EXIT();
620
621#define E2() \
622 \
623 HARDIRQ_DISABLE(); \
624 LOCK(A); \
625 HARDIRQ_ENABLE(); \
626 UNLOCK(A);
627
628/*
629 * Generate 12 testcases:
630 */
631#include "locking-selftest-spin.h"
632GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_spin)
633
634#include "locking-selftest-wlock.h"
635GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_wlock)
636
637#include "locking-selftest-rlock.h"
638GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_rlock)
639
640#undef E1
641#undef E2
642
643/*
644 * Enabling irqs with an irq-safe lock held:
645 */
646#define E1() \
647 \
648 IRQ_ENTER(); \
649 LOCK(A); \
650 UNLOCK(A); \
651 IRQ_EXIT();
652
653#define E2() \
654 \
655 IRQ_DISABLE(); \
656 LOCK(A); \
657 IRQ_ENABLE(); \
658 UNLOCK(A);
659
660/*
661 * Generate 24 testcases:
662 */
663#include "locking-selftest-spin-hardirq.h"
664GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_spin)
665
666#include "locking-selftest-rlock-hardirq.h"
667GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_rlock)
668
669#include "locking-selftest-wlock-hardirq.h"
670GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_wlock)
671
672#include "locking-selftest-spin-softirq.h"
673GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_spin)
674
675#include "locking-selftest-rlock-softirq.h"
676GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_rlock)
677
678#include "locking-selftest-wlock-softirq.h"
679GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_wlock)
680
681#undef E1
682#undef E2
683
684/*
685 * Acquiring a irq-unsafe lock while holding an irq-safe-lock:
686 */
687#define E1() \
688 \
689 LOCK(A); \
690 LOCK(B); \
691 UNLOCK(B); \
692 UNLOCK(A); \
693
694#define E2() \
695 \
696 LOCK(B); \
697 UNLOCK(B);
698
699#define E3() \
700 \
701 IRQ_ENTER(); \
702 LOCK(A); \
703 UNLOCK(A); \
704 IRQ_EXIT();
705
706/*
707 * Generate 36 testcases:
708 */
709#include "locking-selftest-spin-hardirq.h"
710GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_spin)
711
712#include "locking-selftest-rlock-hardirq.h"
713GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_rlock)
714
715#include "locking-selftest-wlock-hardirq.h"
716GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_wlock)
717
718#include "locking-selftest-spin-softirq.h"
719GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_spin)
720
721#include "locking-selftest-rlock-softirq.h"
722GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_rlock)
723
724#include "locking-selftest-wlock-softirq.h"
725GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_wlock)
726
727#undef E1
728#undef E2
729#undef E3
730
731/*
732 * If a lock turns into softirq-safe, but earlier it took
733 * a softirq-unsafe lock:
734 */
735
736#define E1() \
737 IRQ_DISABLE(); \
738 LOCK(A); \
739 LOCK(B); \
740 UNLOCK(B); \
741 UNLOCK(A); \
742 IRQ_ENABLE();
743
744#define E2() \
745 LOCK(B); \
746 UNLOCK(B);
747
748#define E3() \
749 IRQ_ENTER(); \
750 LOCK(A); \
751 UNLOCK(A); \
752 IRQ_EXIT();
753
754/*
755 * Generate 36 testcases:
756 */
757#include "locking-selftest-spin-hardirq.h"
758GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_spin)
759
760#include "locking-selftest-rlock-hardirq.h"
761GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_rlock)
762
763#include "locking-selftest-wlock-hardirq.h"
764GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_wlock)
765
766#include "locking-selftest-spin-softirq.h"
767GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_spin)
768
769#include "locking-selftest-rlock-softirq.h"
770GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_rlock)
771
772#include "locking-selftest-wlock-softirq.h"
773GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_wlock)
774
775#undef E1
776#undef E2
777#undef E3
778
779/*
780 * read-lock / write-lock irq inversion.
781 *
782 * Deadlock scenario:
783 *
784 * CPU#1 is at #1, i.e. it has write-locked A, but has not
785 * taken B yet.
786 *
787 * CPU#2 is at #2, i.e. it has locked B.
788 *
789 * Hardirq hits CPU#2 at point #2 and is trying to read-lock A.
790 *
791 * The deadlock occurs because CPU#1 will spin on B, and CPU#2
792 * will spin on A.
793 */
794
795#define E1() \
796 \
797 IRQ_DISABLE(); \
798 WL(A); \
799 LOCK(B); \
800 UNLOCK(B); \
801 WU(A); \
802 IRQ_ENABLE();
803
804#define E2() \
805 \
806 LOCK(B); \
807 UNLOCK(B);
808
809#define E3() \
810 \
811 IRQ_ENTER(); \
812 RL(A); \
813 RU(A); \
814 IRQ_EXIT();
815
816/*
817 * Generate 36 testcases:
818 */
819#include "locking-selftest-spin-hardirq.h"
820GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_spin)
821
822#include "locking-selftest-rlock-hardirq.h"
823GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_rlock)
824
825#include "locking-selftest-wlock-hardirq.h"
826GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_wlock)
827
828#include "locking-selftest-spin-softirq.h"
829GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_spin)
830
831#include "locking-selftest-rlock-softirq.h"
832GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_rlock)
833
834#include "locking-selftest-wlock-softirq.h"
835GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_wlock)
836
837#undef E1
838#undef E2
839#undef E3
840
841/*
842 * read-lock / write-lock recursion that is actually safe.
843 */
844
845#define E1() \
846 \
847 IRQ_DISABLE(); \
848 WL(A); \
849 WU(A); \
850 IRQ_ENABLE();
851
852#define E2() \
853 \
854 RL(A); \
855 RU(A); \
856
857#define E3() \
858 \
859 IRQ_ENTER(); \
860 RL(A); \
861 L(B); \
862 U(B); \
863 RU(A); \
864 IRQ_EXIT();
865
866/*
867 * Generate 12 testcases:
868 */
869#include "locking-selftest-hardirq.h"
870GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_hard)
871
872#include "locking-selftest-softirq.h"
873GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_soft)
874
875#undef E1
876#undef E2
877#undef E3
878
879/*
880 * read-lock / write-lock recursion that is unsafe.
881 */
882
883#define E1() \
884 \
885 IRQ_DISABLE(); \
886 L(B); \
887 WL(A); \
888 WU(A); \
889 U(B); \
890 IRQ_ENABLE();
891
892#define E2() \
893 \
894 RL(A); \
895 RU(A); \
896
897#define E3() \
898 \
899 IRQ_ENTER(); \
900 L(B); \
901 U(B); \
902 IRQ_EXIT();
903
904/*
905 * Generate 12 testcases:
906 */
907#include "locking-selftest-hardirq.h"
908// GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_hard)
909
910#include "locking-selftest-softirq.h"
911// GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_soft)
912
913#ifdef CONFIG_DEBUG_LOCK_ALLOC
914# define I_SPINLOCK(x) lockdep_reset_lock(&lock_##x.dep_map)
915# define I_RWLOCK(x) lockdep_reset_lock(&rwlock_##x.dep_map)
916# define I_MUTEX(x) lockdep_reset_lock(&mutex_##x.dep_map)
917# define I_RWSEM(x) lockdep_reset_lock(&rwsem_##x.dep_map)
918# define I_WW(x) lockdep_reset_lock(&x.dep_map)
919#else
920# define I_SPINLOCK(x)
921# define I_RWLOCK(x)
922# define I_MUTEX(x)
923# define I_RWSEM(x)
924# define I_WW(x)
925#endif
926
927#define I1(x) \
928 do { \
929 I_SPINLOCK(x); \
930 I_RWLOCK(x); \
931 I_MUTEX(x); \
932 I_RWSEM(x); \
933 } while (0)
934
935#define I2(x) \
936 do { \
937 raw_spin_lock_init(&lock_##x); \
938 rwlock_init(&rwlock_##x); \
939 mutex_init(&mutex_##x); \
940 init_rwsem(&rwsem_##x); \
941 } while (0)
942
943static void reset_locks(void)
944{
945 local_irq_disable();
946 lockdep_free_key_range(&ww_lockdep.acquire_key, 1);
947 lockdep_free_key_range(&ww_lockdep.mutex_key, 1);
948
949 I1(A); I1(B); I1(C); I1(D);
950 I1(X1); I1(X2); I1(Y1); I1(Y2); I1(Z1); I1(Z2);
951 I_WW(t); I_WW(t2); I_WW(o.base); I_WW(o2.base); I_WW(o3.base);
952 lockdep_reset();
953 I2(A); I2(B); I2(C); I2(D);
954 init_shared_classes();
955
956 ww_mutex_init(&o, &ww_lockdep); ww_mutex_init(&o2, &ww_lockdep); ww_mutex_init(&o3, &ww_lockdep);
957 memset(&t, 0, sizeof(t)); memset(&t2, 0, sizeof(t2));
958 memset(&ww_lockdep.acquire_key, 0, sizeof(ww_lockdep.acquire_key));
959 memset(&ww_lockdep.mutex_key, 0, sizeof(ww_lockdep.mutex_key));
960 local_irq_enable();
961}
962
963#undef I
964
965static int testcase_total;
966static int testcase_successes;
967static int expected_testcase_failures;
968static int unexpected_testcase_failures;
969
970static void dotest(void (*testcase_fn)(void), int expected, int lockclass_mask)
971{
972 unsigned long saved_preempt_count = preempt_count();
973
974 WARN_ON(irqs_disabled());
975
976 testcase_fn();
977 /*
978 * Filter out expected failures:
979 */
980#ifndef CONFIG_PROVE_LOCKING
981 if (expected == FAILURE && debug_locks) {
982 expected_testcase_failures++;
983 printk("failed|");
984 }
985 else
986#endif
987 if (debug_locks != expected) {
988 unexpected_testcase_failures++;
989 printk("FAILED|");
990
991 dump_stack();
992 } else {
993 testcase_successes++;
994 printk(" ok |");
995 }
996 testcase_total++;
997
998 if (debug_locks_verbose)
999 printk(" lockclass mask: %x, debug_locks: %d, expected: %d\n",
1000 lockclass_mask, debug_locks, expected);
1001 /*
1002 * Some tests (e.g. double-unlock) might corrupt the preemption
1003 * count, so restore it:
1004 */
1005 preempt_count_set(saved_preempt_count);
1006#ifdef CONFIG_TRACE_IRQFLAGS
1007 if (softirq_count())
1008 current->softirqs_enabled = 0;
1009 else
1010 current->softirqs_enabled = 1;
1011#endif
1012
1013 reset_locks();
1014}
1015
1016static inline void print_testname(const char *testname)
1017{
1018 printk("%33s:", testname);
1019}
1020
1021#define DO_TESTCASE_1(desc, name, nr) \
1022 print_testname(desc"/"#nr); \
1023 dotest(name##_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1024 printk("\n");
1025
1026#define DO_TESTCASE_1B(desc, name, nr) \
1027 print_testname(desc"/"#nr); \
1028 dotest(name##_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1029 printk("\n");
1030
1031#define DO_TESTCASE_3(desc, name, nr) \
1032 print_testname(desc"/"#nr); \
1033 dotest(name##_spin_##nr, FAILURE, LOCKTYPE_SPIN); \
1034 dotest(name##_wlock_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1035 dotest(name##_rlock_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1036 printk("\n");
1037
1038#define DO_TESTCASE_3RW(desc, name, nr) \
1039 print_testname(desc"/"#nr); \
1040 dotest(name##_spin_##nr, FAILURE, LOCKTYPE_SPIN|LOCKTYPE_RWLOCK);\
1041 dotest(name##_wlock_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1042 dotest(name##_rlock_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1043 printk("\n");
1044
1045#define DO_TESTCASE_6(desc, name) \
1046 print_testname(desc); \
1047 dotest(name##_spin, FAILURE, LOCKTYPE_SPIN); \
1048 dotest(name##_wlock, FAILURE, LOCKTYPE_RWLOCK); \
1049 dotest(name##_rlock, FAILURE, LOCKTYPE_RWLOCK); \
1050 dotest(name##_mutex, FAILURE, LOCKTYPE_MUTEX); \
1051 dotest(name##_wsem, FAILURE, LOCKTYPE_RWSEM); \
1052 dotest(name##_rsem, FAILURE, LOCKTYPE_RWSEM); \
1053 printk("\n");
1054
1055#define DO_TESTCASE_6_SUCCESS(desc, name) \
1056 print_testname(desc); \
1057 dotest(name##_spin, SUCCESS, LOCKTYPE_SPIN); \
1058 dotest(name##_wlock, SUCCESS, LOCKTYPE_RWLOCK); \
1059 dotest(name##_rlock, SUCCESS, LOCKTYPE_RWLOCK); \
1060 dotest(name##_mutex, SUCCESS, LOCKTYPE_MUTEX); \
1061 dotest(name##_wsem, SUCCESS, LOCKTYPE_RWSEM); \
1062 dotest(name##_rsem, SUCCESS, LOCKTYPE_RWSEM); \
1063 printk("\n");
1064
1065/*
1066 * 'read' variant: rlocks must not trigger.
1067 */
1068#define DO_TESTCASE_6R(desc, name) \
1069 print_testname(desc); \
1070 dotest(name##_spin, FAILURE, LOCKTYPE_SPIN); \
1071 dotest(name##_wlock, FAILURE, LOCKTYPE_RWLOCK); \
1072 dotest(name##_rlock, SUCCESS, LOCKTYPE_RWLOCK); \
1073 dotest(name##_mutex, FAILURE, LOCKTYPE_MUTEX); \
1074 dotest(name##_wsem, FAILURE, LOCKTYPE_RWSEM); \
1075 dotest(name##_rsem, FAILURE, LOCKTYPE_RWSEM); \
1076 printk("\n");
1077
1078#define DO_TESTCASE_2I(desc, name, nr) \
1079 DO_TESTCASE_1("hard-"desc, name##_hard, nr); \
1080 DO_TESTCASE_1("soft-"desc, name##_soft, nr);
1081
1082#define DO_TESTCASE_2IB(desc, name, nr) \
1083 DO_TESTCASE_1B("hard-"desc, name##_hard, nr); \
1084 DO_TESTCASE_1B("soft-"desc, name##_soft, nr);
1085
1086#define DO_TESTCASE_6I(desc, name, nr) \
1087 DO_TESTCASE_3("hard-"desc, name##_hard, nr); \
1088 DO_TESTCASE_3("soft-"desc, name##_soft, nr);
1089
1090#define DO_TESTCASE_6IRW(desc, name, nr) \
1091 DO_TESTCASE_3RW("hard-"desc, name##_hard, nr); \
1092 DO_TESTCASE_3RW("soft-"desc, name##_soft, nr);
1093
1094#define DO_TESTCASE_2x3(desc, name) \
1095 DO_TESTCASE_3(desc, name, 12); \
1096 DO_TESTCASE_3(desc, name, 21);
1097
1098#define DO_TESTCASE_2x6(desc, name) \
1099 DO_TESTCASE_6I(desc, name, 12); \
1100 DO_TESTCASE_6I(desc, name, 21);
1101
1102#define DO_TESTCASE_6x2(desc, name) \
1103 DO_TESTCASE_2I(desc, name, 123); \
1104 DO_TESTCASE_2I(desc, name, 132); \
1105 DO_TESTCASE_2I(desc, name, 213); \
1106 DO_TESTCASE_2I(desc, name, 231); \
1107 DO_TESTCASE_2I(desc, name, 312); \
1108 DO_TESTCASE_2I(desc, name, 321);
1109
1110#define DO_TESTCASE_6x2B(desc, name) \
1111 DO_TESTCASE_2IB(desc, name, 123); \
1112 DO_TESTCASE_2IB(desc, name, 132); \
1113 DO_TESTCASE_2IB(desc, name, 213); \
1114 DO_TESTCASE_2IB(desc, name, 231); \
1115 DO_TESTCASE_2IB(desc, name, 312); \
1116 DO_TESTCASE_2IB(desc, name, 321);
1117
1118#define DO_TESTCASE_6x6(desc, name) \
1119 DO_TESTCASE_6I(desc, name, 123); \
1120 DO_TESTCASE_6I(desc, name, 132); \
1121 DO_TESTCASE_6I(desc, name, 213); \
1122 DO_TESTCASE_6I(desc, name, 231); \
1123 DO_TESTCASE_6I(desc, name, 312); \
1124 DO_TESTCASE_6I(desc, name, 321);
1125
1126#define DO_TESTCASE_6x6RW(desc, name) \
1127 DO_TESTCASE_6IRW(desc, name, 123); \
1128 DO_TESTCASE_6IRW(desc, name, 132); \
1129 DO_TESTCASE_6IRW(desc, name, 213); \
1130 DO_TESTCASE_6IRW(desc, name, 231); \
1131 DO_TESTCASE_6IRW(desc, name, 312); \
1132 DO_TESTCASE_6IRW(desc, name, 321);
1133
1134static void ww_test_fail_acquire(void)
1135{
1136 int ret;
1137
1138 WWAI(&t);
1139 t.stamp++;
1140
1141 ret = WWL(&o, &t);
1142
1143 if (WARN_ON(!o.ctx) ||
1144 WARN_ON(ret))
1145 return;
1146
1147 /* No lockdep test, pure API */
1148 ret = WWL(&o, &t);
1149 WARN_ON(ret != -EALREADY);
1150
1151 ret = WWT(&o);
1152 WARN_ON(ret);
1153
1154 t2 = t;
1155 t2.stamp++;
1156 ret = WWL(&o, &t2);
1157 WARN_ON(ret != -EDEADLK);
1158 WWU(&o);
1159
1160 if (WWT(&o))
1161 WWU(&o);
1162#ifdef CONFIG_DEBUG_LOCK_ALLOC
1163 else
1164 DEBUG_LOCKS_WARN_ON(1);
1165#endif
1166}
1167
1168static void ww_test_normal(void)
1169{
1170 int ret;
1171
1172 WWAI(&t);
1173
1174 /*
1175 * None of the ww_mutex codepaths should be taken in the 'normal'
1176 * mutex calls. The easiest way to verify this is by using the
1177 * normal mutex calls, and making sure o.ctx is unmodified.
1178 */
1179
1180 /* mutex_lock (and indirectly, mutex_lock_nested) */
1181 o.ctx = (void *)~0UL;
1182 mutex_lock(&o.base);
1183 mutex_unlock(&o.base);
1184 WARN_ON(o.ctx != (void *)~0UL);
1185
1186 /* mutex_lock_interruptible (and *_nested) */
1187 o.ctx = (void *)~0UL;
1188 ret = mutex_lock_interruptible(&o.base);
1189 if (!ret)
1190 mutex_unlock(&o.base);
1191 else
1192 WARN_ON(1);
1193 WARN_ON(o.ctx != (void *)~0UL);
1194
1195 /* mutex_lock_killable (and *_nested) */
1196 o.ctx = (void *)~0UL;
1197 ret = mutex_lock_killable(&o.base);
1198 if (!ret)
1199 mutex_unlock(&o.base);
1200 else
1201 WARN_ON(1);
1202 WARN_ON(o.ctx != (void *)~0UL);
1203
1204 /* trylock, succeeding */
1205 o.ctx = (void *)~0UL;
1206 ret = mutex_trylock(&o.base);
1207 WARN_ON(!ret);
1208 if (ret)
1209 mutex_unlock(&o.base);
1210 else
1211 WARN_ON(1);
1212 WARN_ON(o.ctx != (void *)~0UL);
1213
1214 /* trylock, failing */
1215 o.ctx = (void *)~0UL;
1216 mutex_lock(&o.base);
1217 ret = mutex_trylock(&o.base);
1218 WARN_ON(ret);
1219 mutex_unlock(&o.base);
1220 WARN_ON(o.ctx != (void *)~0UL);
1221
1222 /* nest_lock */
1223 o.ctx = (void *)~0UL;
1224 mutex_lock_nest_lock(&o.base, &t);
1225 mutex_unlock(&o.base);
1226 WARN_ON(o.ctx != (void *)~0UL);
1227}
1228
1229static void ww_test_two_contexts(void)
1230{
1231 WWAI(&t);
1232 WWAI(&t2);
1233}
1234
1235static void ww_test_diff_class(void)
1236{
1237 WWAI(&t);
1238#ifdef CONFIG_DEBUG_MUTEXES
1239 t.ww_class = NULL;
1240#endif
1241 WWL(&o, &t);
1242}
1243
1244static void ww_test_context_done_twice(void)
1245{
1246 WWAI(&t);
1247 WWAD(&t);
1248 WWAD(&t);
1249 WWAF(&t);
1250}
1251
1252static void ww_test_context_unlock_twice(void)
1253{
1254 WWAI(&t);
1255 WWAD(&t);
1256 WWAF(&t);
1257 WWAF(&t);
1258}
1259
1260static void ww_test_context_fini_early(void)
1261{
1262 WWAI(&t);
1263 WWL(&o, &t);
1264 WWAD(&t);
1265 WWAF(&t);
1266}
1267
1268static void ww_test_context_lock_after_done(void)
1269{
1270 WWAI(&t);
1271 WWAD(&t);
1272 WWL(&o, &t);
1273}
1274
1275static void ww_test_object_unlock_twice(void)
1276{
1277 WWL1(&o);
1278 WWU(&o);
1279 WWU(&o);
1280}
1281
1282static void ww_test_object_lock_unbalanced(void)
1283{
1284 WWAI(&t);
1285 WWL(&o, &t);
1286 t.acquired = 0;
1287 WWU(&o);
1288 WWAF(&t);
1289}
1290
1291static void ww_test_object_lock_stale_context(void)
1292{
1293 WWAI(&t);
1294 o.ctx = &t2;
1295 WWL(&o, &t);
1296}
1297
1298static void ww_test_edeadlk_normal(void)
1299{
1300 int ret;
1301
1302 mutex_lock(&o2.base);
1303 o2.ctx = &t2;
1304 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1305
1306 WWAI(&t);
1307 t2 = t;
1308 t2.stamp--;
1309
1310 ret = WWL(&o, &t);
1311 WARN_ON(ret);
1312
1313 ret = WWL(&o2, &t);
1314 WARN_ON(ret != -EDEADLK);
1315
1316 o2.ctx = NULL;
1317 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1318 mutex_unlock(&o2.base);
1319 WWU(&o);
1320
1321 WWL(&o2, &t);
1322}
1323
1324static void ww_test_edeadlk_normal_slow(void)
1325{
1326 int ret;
1327
1328 mutex_lock(&o2.base);
1329 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1330 o2.ctx = &t2;
1331
1332 WWAI(&t);
1333 t2 = t;
1334 t2.stamp--;
1335
1336 ret = WWL(&o, &t);
1337 WARN_ON(ret);
1338
1339 ret = WWL(&o2, &t);
1340 WARN_ON(ret != -EDEADLK);
1341
1342 o2.ctx = NULL;
1343 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1344 mutex_unlock(&o2.base);
1345 WWU(&o);
1346
1347 ww_mutex_lock_slow(&o2, &t);
1348}
1349
1350static void ww_test_edeadlk_no_unlock(void)
1351{
1352 int ret;
1353
1354 mutex_lock(&o2.base);
1355 o2.ctx = &t2;
1356 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1357
1358 WWAI(&t);
1359 t2 = t;
1360 t2.stamp--;
1361
1362 ret = WWL(&o, &t);
1363 WARN_ON(ret);
1364
1365 ret = WWL(&o2, &t);
1366 WARN_ON(ret != -EDEADLK);
1367
1368 o2.ctx = NULL;
1369 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1370 mutex_unlock(&o2.base);
1371
1372 WWL(&o2, &t);
1373}
1374
1375static void ww_test_edeadlk_no_unlock_slow(void)
1376{
1377 int ret;
1378
1379 mutex_lock(&o2.base);
1380 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1381 o2.ctx = &t2;
1382
1383 WWAI(&t);
1384 t2 = t;
1385 t2.stamp--;
1386
1387 ret = WWL(&o, &t);
1388 WARN_ON(ret);
1389
1390 ret = WWL(&o2, &t);
1391 WARN_ON(ret != -EDEADLK);
1392
1393 o2.ctx = NULL;
1394 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1395 mutex_unlock(&o2.base);
1396
1397 ww_mutex_lock_slow(&o2, &t);
1398}
1399
1400static void ww_test_edeadlk_acquire_more(void)
1401{
1402 int ret;
1403
1404 mutex_lock(&o2.base);
1405 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1406 o2.ctx = &t2;
1407
1408 WWAI(&t);
1409 t2 = t;
1410 t2.stamp--;
1411
1412 ret = WWL(&o, &t);
1413 WARN_ON(ret);
1414
1415 ret = WWL(&o2, &t);
1416 WARN_ON(ret != -EDEADLK);
1417
1418 ret = WWL(&o3, &t);
1419}
1420
1421static void ww_test_edeadlk_acquire_more_slow(void)
1422{
1423 int ret;
1424
1425 mutex_lock(&o2.base);
1426 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1427 o2.ctx = &t2;
1428
1429 WWAI(&t);
1430 t2 = t;
1431 t2.stamp--;
1432
1433 ret = WWL(&o, &t);
1434 WARN_ON(ret);
1435
1436 ret = WWL(&o2, &t);
1437 WARN_ON(ret != -EDEADLK);
1438
1439 ww_mutex_lock_slow(&o3, &t);
1440}
1441
1442static void ww_test_edeadlk_acquire_more_edeadlk(void)
1443{
1444 int ret;
1445
1446 mutex_lock(&o2.base);
1447 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1448 o2.ctx = &t2;
1449
1450 mutex_lock(&o3.base);
1451 mutex_release(&o3.base.dep_map, 1, _THIS_IP_);
1452 o3.ctx = &t2;
1453
1454 WWAI(&t);
1455 t2 = t;
1456 t2.stamp--;
1457
1458 ret = WWL(&o, &t);
1459 WARN_ON(ret);
1460
1461 ret = WWL(&o2, &t);
1462 WARN_ON(ret != -EDEADLK);
1463
1464 ret = WWL(&o3, &t);
1465 WARN_ON(ret != -EDEADLK);
1466}
1467
1468static void ww_test_edeadlk_acquire_more_edeadlk_slow(void)
1469{
1470 int ret;
1471
1472 mutex_lock(&o2.base);
1473 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1474 o2.ctx = &t2;
1475
1476 mutex_lock(&o3.base);
1477 mutex_release(&o3.base.dep_map, 1, _THIS_IP_);
1478 o3.ctx = &t2;
1479
1480 WWAI(&t);
1481 t2 = t;
1482 t2.stamp--;
1483
1484 ret = WWL(&o, &t);
1485 WARN_ON(ret);
1486
1487 ret = WWL(&o2, &t);
1488 WARN_ON(ret != -EDEADLK);
1489
1490 ww_mutex_lock_slow(&o3, &t);
1491}
1492
1493static void ww_test_edeadlk_acquire_wrong(void)
1494{
1495 int ret;
1496
1497 mutex_lock(&o2.base);
1498 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1499 o2.ctx = &t2;
1500
1501 WWAI(&t);
1502 t2 = t;
1503 t2.stamp--;
1504
1505 ret = WWL(&o, &t);
1506 WARN_ON(ret);
1507
1508 ret = WWL(&o2, &t);
1509 WARN_ON(ret != -EDEADLK);
1510 if (!ret)
1511 WWU(&o2);
1512
1513 WWU(&o);
1514
1515 ret = WWL(&o3, &t);
1516}
1517
1518static void ww_test_edeadlk_acquire_wrong_slow(void)
1519{
1520 int ret;
1521
1522 mutex_lock(&o2.base);
1523 mutex_release(&o2.base.dep_map, 1, _THIS_IP_);
1524 o2.ctx = &t2;
1525
1526 WWAI(&t);
1527 t2 = t;
1528 t2.stamp--;
1529
1530 ret = WWL(&o, &t);
1531 WARN_ON(ret);
1532
1533 ret = WWL(&o2, &t);
1534 WARN_ON(ret != -EDEADLK);
1535 if (!ret)
1536 WWU(&o2);
1537
1538 WWU(&o);
1539
1540 ww_mutex_lock_slow(&o3, &t);
1541}
1542
1543static void ww_test_spin_nest_unlocked(void)
1544{
1545 raw_spin_lock_nest_lock(&lock_A, &o.base);
1546 U(A);
1547}
1548
1549static void ww_test_unneeded_slow(void)
1550{
1551 WWAI(&t);
1552
1553 ww_mutex_lock_slow(&o, &t);
1554}
1555
1556static void ww_test_context_block(void)
1557{
1558 int ret;
1559
1560 WWAI(&t);
1561
1562 ret = WWL(&o, &t);
1563 WARN_ON(ret);
1564 WWL1(&o2);
1565}
1566
1567static void ww_test_context_try(void)
1568{
1569 int ret;
1570
1571 WWAI(&t);
1572
1573 ret = WWL(&o, &t);
1574 WARN_ON(ret);
1575
1576 ret = WWT(&o2);
1577 WARN_ON(!ret);
1578 WWU(&o2);
1579 WWU(&o);
1580}
1581
1582static void ww_test_context_context(void)
1583{
1584 int ret;
1585
1586 WWAI(&t);
1587
1588 ret = WWL(&o, &t);
1589 WARN_ON(ret);
1590
1591 ret = WWL(&o2, &t);
1592 WARN_ON(ret);
1593
1594 WWU(&o2);
1595 WWU(&o);
1596}
1597
1598static void ww_test_try_block(void)
1599{
1600 bool ret;
1601
1602 ret = WWT(&o);
1603 WARN_ON(!ret);
1604
1605 WWL1(&o2);
1606 WWU(&o2);
1607 WWU(&o);
1608}
1609
1610static void ww_test_try_try(void)
1611{
1612 bool ret;
1613
1614 ret = WWT(&o);
1615 WARN_ON(!ret);
1616 ret = WWT(&o2);
1617 WARN_ON(!ret);
1618 WWU(&o2);
1619 WWU(&o);
1620}
1621
1622static void ww_test_try_context(void)
1623{
1624 int ret;
1625
1626 ret = WWT(&o);
1627 WARN_ON(!ret);
1628
1629 WWAI(&t);
1630
1631 ret = WWL(&o2, &t);
1632 WARN_ON(ret);
1633}
1634
1635static void ww_test_block_block(void)
1636{
1637 WWL1(&o);
1638 WWL1(&o2);
1639}
1640
1641static void ww_test_block_try(void)
1642{
1643 bool ret;
1644
1645 WWL1(&o);
1646 ret = WWT(&o2);
1647 WARN_ON(!ret);
1648}
1649
1650static void ww_test_block_context(void)
1651{
1652 int ret;
1653
1654 WWL1(&o);
1655 WWAI(&t);
1656
1657 ret = WWL(&o2, &t);
1658 WARN_ON(ret);
1659}
1660
1661static void ww_test_spin_block(void)
1662{
1663 L(A);
1664 U(A);
1665
1666 WWL1(&o);
1667 L(A);
1668 U(A);
1669 WWU(&o);
1670
1671 L(A);
1672 WWL1(&o);
1673 WWU(&o);
1674 U(A);
1675}
1676
1677static void ww_test_spin_try(void)
1678{
1679 bool ret;
1680
1681 L(A);
1682 U(A);
1683
1684 ret = WWT(&o);
1685 WARN_ON(!ret);
1686 L(A);
1687 U(A);
1688 WWU(&o);
1689
1690 L(A);
1691 ret = WWT(&o);
1692 WARN_ON(!ret);
1693 WWU(&o);
1694 U(A);
1695}
1696
1697static void ww_test_spin_context(void)
1698{
1699 int ret;
1700
1701 L(A);
1702 U(A);
1703
1704 WWAI(&t);
1705
1706 ret = WWL(&o, &t);
1707 WARN_ON(ret);
1708 L(A);
1709 U(A);
1710 WWU(&o);
1711
1712 L(A);
1713 ret = WWL(&o, &t);
1714 WARN_ON(ret);
1715 WWU(&o);
1716 U(A);
1717}
1718
1719static void ww_tests(void)
1720{
1721 printk(" --------------------------------------------------------------------------\n");
1722 printk(" | Wound/wait tests |\n");
1723 printk(" ---------------------\n");
1724
1725 print_testname("ww api failures");
1726 dotest(ww_test_fail_acquire, SUCCESS, LOCKTYPE_WW);
1727 dotest(ww_test_normal, SUCCESS, LOCKTYPE_WW);
1728 dotest(ww_test_unneeded_slow, FAILURE, LOCKTYPE_WW);
1729 printk("\n");
1730
1731 print_testname("ww contexts mixing");
1732 dotest(ww_test_two_contexts, FAILURE, LOCKTYPE_WW);
1733 dotest(ww_test_diff_class, FAILURE, LOCKTYPE_WW);
1734 printk("\n");
1735
1736 print_testname("finishing ww context");
1737 dotest(ww_test_context_done_twice, FAILURE, LOCKTYPE_WW);
1738 dotest(ww_test_context_unlock_twice, FAILURE, LOCKTYPE_WW);
1739 dotest(ww_test_context_fini_early, FAILURE, LOCKTYPE_WW);
1740 dotest(ww_test_context_lock_after_done, FAILURE, LOCKTYPE_WW);
1741 printk("\n");
1742
1743 print_testname("locking mismatches");
1744 dotest(ww_test_object_unlock_twice, FAILURE, LOCKTYPE_WW);
1745 dotest(ww_test_object_lock_unbalanced, FAILURE, LOCKTYPE_WW);
1746 dotest(ww_test_object_lock_stale_context, FAILURE, LOCKTYPE_WW);
1747 printk("\n");
1748
1749 print_testname("EDEADLK handling");
1750 dotest(ww_test_edeadlk_normal, SUCCESS, LOCKTYPE_WW);
1751 dotest(ww_test_edeadlk_normal_slow, SUCCESS, LOCKTYPE_WW);
1752 dotest(ww_test_edeadlk_no_unlock, FAILURE, LOCKTYPE_WW);
1753 dotest(ww_test_edeadlk_no_unlock_slow, FAILURE, LOCKTYPE_WW);
1754 dotest(ww_test_edeadlk_acquire_more, FAILURE, LOCKTYPE_WW);
1755 dotest(ww_test_edeadlk_acquire_more_slow, FAILURE, LOCKTYPE_WW);
1756 dotest(ww_test_edeadlk_acquire_more_edeadlk, FAILURE, LOCKTYPE_WW);
1757 dotest(ww_test_edeadlk_acquire_more_edeadlk_slow, FAILURE, LOCKTYPE_WW);
1758 dotest(ww_test_edeadlk_acquire_wrong, FAILURE, LOCKTYPE_WW);
1759 dotest(ww_test_edeadlk_acquire_wrong_slow, FAILURE, LOCKTYPE_WW);
1760 printk("\n");
1761
1762 print_testname("spinlock nest unlocked");
1763 dotest(ww_test_spin_nest_unlocked, FAILURE, LOCKTYPE_WW);
1764 printk("\n");
1765
1766 printk(" -----------------------------------------------------\n");
1767 printk(" |block | try |context|\n");
1768 printk(" -----------------------------------------------------\n");
1769
1770 print_testname("context");
1771 dotest(ww_test_context_block, FAILURE, LOCKTYPE_WW);
1772 dotest(ww_test_context_try, SUCCESS, LOCKTYPE_WW);
1773 dotest(ww_test_context_context, SUCCESS, LOCKTYPE_WW);
1774 printk("\n");
1775
1776 print_testname("try");
1777 dotest(ww_test_try_block, FAILURE, LOCKTYPE_WW);
1778 dotest(ww_test_try_try, SUCCESS, LOCKTYPE_WW);
1779 dotest(ww_test_try_context, FAILURE, LOCKTYPE_WW);
1780 printk("\n");
1781
1782 print_testname("block");
1783 dotest(ww_test_block_block, FAILURE, LOCKTYPE_WW);
1784 dotest(ww_test_block_try, SUCCESS, LOCKTYPE_WW);
1785 dotest(ww_test_block_context, FAILURE, LOCKTYPE_WW);
1786 printk("\n");
1787
1788 print_testname("spinlock");
1789 dotest(ww_test_spin_block, FAILURE, LOCKTYPE_WW);
1790 dotest(ww_test_spin_try, SUCCESS, LOCKTYPE_WW);
1791 dotest(ww_test_spin_context, FAILURE, LOCKTYPE_WW);
1792 printk("\n");
1793}
1794
1795void locking_selftest(void)
1796{
1797 /*
1798 * Got a locking failure before the selftest ran?
1799 */
1800 if (!debug_locks) {
1801 printk("----------------------------------\n");
1802 printk("| Locking API testsuite disabled |\n");
1803 printk("----------------------------------\n");
1804 return;
1805 }
1806
1807 /*
1808 * Run the testsuite:
1809 */
1810 printk("------------------------\n");
1811 printk("| Locking API testsuite:\n");
1812 printk("----------------------------------------------------------------------------\n");
1813 printk(" | spin |wlock |rlock |mutex | wsem | rsem |\n");
1814 printk(" --------------------------------------------------------------------------\n");
1815
1816 init_shared_classes();
1817 debug_locks_silent = !debug_locks_verbose;
1818
1819 DO_TESTCASE_6R("A-A deadlock", AA);
1820 DO_TESTCASE_6R("A-B-B-A deadlock", ABBA);
1821 DO_TESTCASE_6R("A-B-B-C-C-A deadlock", ABBCCA);
1822 DO_TESTCASE_6R("A-B-C-A-B-C deadlock", ABCABC);
1823 DO_TESTCASE_6R("A-B-B-C-C-D-D-A deadlock", ABBCCDDA);
1824 DO_TESTCASE_6R("A-B-C-D-B-D-D-A deadlock", ABCDBDDA);
1825 DO_TESTCASE_6R("A-B-C-D-B-C-D-A deadlock", ABCDBCDA);
1826 DO_TESTCASE_6("double unlock", double_unlock);
1827 DO_TESTCASE_6("initialize held", init_held);
1828 DO_TESTCASE_6_SUCCESS("bad unlock order", bad_unlock_order);
1829
1830 printk(" --------------------------------------------------------------------------\n");
1831 print_testname("recursive read-lock");
1832 printk(" |");
1833 dotest(rlock_AA1, SUCCESS, LOCKTYPE_RWLOCK);
1834 printk(" |");
1835 dotest(rsem_AA1, FAILURE, LOCKTYPE_RWSEM);
1836 printk("\n");
1837
1838 print_testname("recursive read-lock #2");
1839 printk(" |");
1840 dotest(rlock_AA1B, SUCCESS, LOCKTYPE_RWLOCK);
1841 printk(" |");
1842 dotest(rsem_AA1B, FAILURE, LOCKTYPE_RWSEM);
1843 printk("\n");
1844
1845 print_testname("mixed read-write-lock");
1846 printk(" |");
1847 dotest(rlock_AA2, FAILURE, LOCKTYPE_RWLOCK);
1848 printk(" |");
1849 dotest(rsem_AA2, FAILURE, LOCKTYPE_RWSEM);
1850 printk("\n");
1851
1852 print_testname("mixed write-read-lock");
1853 printk(" |");
1854 dotest(rlock_AA3, FAILURE, LOCKTYPE_RWLOCK);
1855 printk(" |");
1856 dotest(rsem_AA3, FAILURE, LOCKTYPE_RWSEM);
1857 printk("\n");
1858
1859 printk(" --------------------------------------------------------------------------\n");
1860
1861 /*
1862 * irq-context testcases:
1863 */
1864 DO_TESTCASE_2x6("irqs-on + irq-safe-A", irqsafe1);
1865 DO_TESTCASE_2x3("sirq-safe-A => hirqs-on", irqsafe2A);
1866 DO_TESTCASE_2x6("safe-A + irqs-on", irqsafe2B);
1867 DO_TESTCASE_6x6("safe-A + unsafe-B #1", irqsafe3);
1868 DO_TESTCASE_6x6("safe-A + unsafe-B #2", irqsafe4);
1869 DO_TESTCASE_6x6RW("irq lock-inversion", irq_inversion);
1870
1871 DO_TESTCASE_6x2("irq read-recursion", irq_read_recursion);
1872// DO_TESTCASE_6x2B("irq read-recursion #2", irq_read_recursion2);
1873
1874 ww_tests();
1875
1876 if (unexpected_testcase_failures) {
1877 printk("-----------------------------------------------------------------\n");
1878 debug_locks = 0;
1879 printk("BUG: %3d unexpected failures (out of %3d) - debugging disabled! |\n",
1880 unexpected_testcase_failures, testcase_total);
1881 printk("-----------------------------------------------------------------\n");
1882 } else if (expected_testcase_failures && testcase_successes) {
1883 printk("--------------------------------------------------------\n");
1884 printk("%3d out of %3d testcases failed, as expected. |\n",
1885 expected_testcase_failures, testcase_total);
1886 printk("----------------------------------------------------\n");
1887 debug_locks = 1;
1888 } else if (expected_testcase_failures && !testcase_successes) {
1889 printk("--------------------------------------------------------\n");
1890 printk("All %3d testcases failed, as expected. |\n",
1891 expected_testcase_failures);
1892 printk("----------------------------------------\n");
1893 debug_locks = 1;
1894 } else {
1895 printk("-------------------------------------------------------\n");
1896 printk("Good, all %3d testcases passed! |\n",
1897 testcase_successes);
1898 printk("---------------------------------\n");
1899 debug_locks = 1;
1900 }
1901 debug_locks_silent = 0;
1902}
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * lib/locking-selftest.c
4 *
5 * Testsuite for various locking APIs: spinlocks, rwlocks,
6 * mutexes and rw-semaphores.
7 *
8 * It is checking both false positives and false negatives.
9 *
10 * Started by Ingo Molnar:
11 *
12 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
13 */
14#include <linux/rwsem.h>
15#include <linux/mutex.h>
16#include <linux/ww_mutex.h>
17#include <linux/sched.h>
18#include <linux/sched/mm.h>
19#include <linux/delay.h>
20#include <linux/lockdep.h>
21#include <linux/spinlock.h>
22#include <linux/kallsyms.h>
23#include <linux/interrupt.h>
24#include <linux/debug_locks.h>
25#include <linux/irqflags.h>
26#include <linux/rtmutex.h>
27#include <linux/local_lock.h>
28
29#ifdef CONFIG_PREEMPT_RT
30# define NON_RT(...)
31#else
32# define NON_RT(...) __VA_ARGS__
33#endif
34
35/*
36 * Change this to 1 if you want to see the failure printouts:
37 */
38static unsigned int debug_locks_verbose;
39unsigned int force_read_lock_recursive;
40
41static DEFINE_WD_CLASS(ww_lockdep);
42
43static int __init setup_debug_locks_verbose(char *str)
44{
45 get_option(&str, &debug_locks_verbose);
46
47 return 1;
48}
49
50__setup("debug_locks_verbose=", setup_debug_locks_verbose);
51
52#define FAILURE 0
53#define SUCCESS 1
54
55#define LOCKTYPE_SPIN 0x1
56#define LOCKTYPE_RWLOCK 0x2
57#define LOCKTYPE_MUTEX 0x4
58#define LOCKTYPE_RWSEM 0x8
59#define LOCKTYPE_WW 0x10
60#define LOCKTYPE_RTMUTEX 0x20
61#define LOCKTYPE_LL 0x40
62#define LOCKTYPE_SPECIAL 0x80
63
64static struct ww_acquire_ctx t, t2;
65static struct ww_mutex o, o2, o3;
66
67/*
68 * Normal standalone locks, for the circular and irq-context
69 * dependency tests:
70 */
71static DEFINE_SPINLOCK(lock_A);
72static DEFINE_SPINLOCK(lock_B);
73static DEFINE_SPINLOCK(lock_C);
74static DEFINE_SPINLOCK(lock_D);
75
76static DEFINE_RAW_SPINLOCK(raw_lock_A);
77static DEFINE_RAW_SPINLOCK(raw_lock_B);
78
79static DEFINE_RWLOCK(rwlock_A);
80static DEFINE_RWLOCK(rwlock_B);
81static DEFINE_RWLOCK(rwlock_C);
82static DEFINE_RWLOCK(rwlock_D);
83
84static DEFINE_MUTEX(mutex_A);
85static DEFINE_MUTEX(mutex_B);
86static DEFINE_MUTEX(mutex_C);
87static DEFINE_MUTEX(mutex_D);
88
89static DECLARE_RWSEM(rwsem_A);
90static DECLARE_RWSEM(rwsem_B);
91static DECLARE_RWSEM(rwsem_C);
92static DECLARE_RWSEM(rwsem_D);
93
94#ifdef CONFIG_RT_MUTEXES
95
96static DEFINE_RT_MUTEX(rtmutex_A);
97static DEFINE_RT_MUTEX(rtmutex_B);
98static DEFINE_RT_MUTEX(rtmutex_C);
99static DEFINE_RT_MUTEX(rtmutex_D);
100
101#endif
102
103/*
104 * Locks that we initialize dynamically as well so that
105 * e.g. X1 and X2 becomes two instances of the same class,
106 * but X* and Y* are different classes. We do this so that
107 * we do not trigger a real lockup:
108 */
109static DEFINE_SPINLOCK(lock_X1);
110static DEFINE_SPINLOCK(lock_X2);
111static DEFINE_SPINLOCK(lock_Y1);
112static DEFINE_SPINLOCK(lock_Y2);
113static DEFINE_SPINLOCK(lock_Z1);
114static DEFINE_SPINLOCK(lock_Z2);
115
116static DEFINE_RWLOCK(rwlock_X1);
117static DEFINE_RWLOCK(rwlock_X2);
118static DEFINE_RWLOCK(rwlock_Y1);
119static DEFINE_RWLOCK(rwlock_Y2);
120static DEFINE_RWLOCK(rwlock_Z1);
121static DEFINE_RWLOCK(rwlock_Z2);
122
123static DEFINE_MUTEX(mutex_X1);
124static DEFINE_MUTEX(mutex_X2);
125static DEFINE_MUTEX(mutex_Y1);
126static DEFINE_MUTEX(mutex_Y2);
127static DEFINE_MUTEX(mutex_Z1);
128static DEFINE_MUTEX(mutex_Z2);
129
130static DECLARE_RWSEM(rwsem_X1);
131static DECLARE_RWSEM(rwsem_X2);
132static DECLARE_RWSEM(rwsem_Y1);
133static DECLARE_RWSEM(rwsem_Y2);
134static DECLARE_RWSEM(rwsem_Z1);
135static DECLARE_RWSEM(rwsem_Z2);
136
137#ifdef CONFIG_RT_MUTEXES
138
139static DEFINE_RT_MUTEX(rtmutex_X1);
140static DEFINE_RT_MUTEX(rtmutex_X2);
141static DEFINE_RT_MUTEX(rtmutex_Y1);
142static DEFINE_RT_MUTEX(rtmutex_Y2);
143static DEFINE_RT_MUTEX(rtmutex_Z1);
144static DEFINE_RT_MUTEX(rtmutex_Z2);
145
146#endif
147
148static DEFINE_PER_CPU(local_lock_t, local_A);
149
150/*
151 * non-inlined runtime initializers, to let separate locks share
152 * the same lock-class:
153 */
154#define INIT_CLASS_FUNC(class) \
155static noinline void \
156init_class_##class(spinlock_t *lock, rwlock_t *rwlock, \
157 struct mutex *mutex, struct rw_semaphore *rwsem)\
158{ \
159 spin_lock_init(lock); \
160 rwlock_init(rwlock); \
161 mutex_init(mutex); \
162 init_rwsem(rwsem); \
163}
164
165INIT_CLASS_FUNC(X)
166INIT_CLASS_FUNC(Y)
167INIT_CLASS_FUNC(Z)
168
169static void init_shared_classes(void)
170{
171#ifdef CONFIG_RT_MUTEXES
172 static struct lock_class_key rt_X, rt_Y, rt_Z;
173
174 __rt_mutex_init(&rtmutex_X1, __func__, &rt_X);
175 __rt_mutex_init(&rtmutex_X2, __func__, &rt_X);
176 __rt_mutex_init(&rtmutex_Y1, __func__, &rt_Y);
177 __rt_mutex_init(&rtmutex_Y2, __func__, &rt_Y);
178 __rt_mutex_init(&rtmutex_Z1, __func__, &rt_Z);
179 __rt_mutex_init(&rtmutex_Z2, __func__, &rt_Z);
180#endif
181
182 init_class_X(&lock_X1, &rwlock_X1, &mutex_X1, &rwsem_X1);
183 init_class_X(&lock_X2, &rwlock_X2, &mutex_X2, &rwsem_X2);
184
185 init_class_Y(&lock_Y1, &rwlock_Y1, &mutex_Y1, &rwsem_Y1);
186 init_class_Y(&lock_Y2, &rwlock_Y2, &mutex_Y2, &rwsem_Y2);
187
188 init_class_Z(&lock_Z1, &rwlock_Z1, &mutex_Z1, &rwsem_Z1);
189 init_class_Z(&lock_Z2, &rwlock_Z2, &mutex_Z2, &rwsem_Z2);
190}
191
192/*
193 * For spinlocks and rwlocks we also do hardirq-safe / softirq-safe tests.
194 * The following functions use a lock from a simulated hardirq/softirq
195 * context, causing the locks to be marked as hardirq-safe/softirq-safe:
196 */
197
198#define HARDIRQ_DISABLE local_irq_disable
199#define HARDIRQ_ENABLE local_irq_enable
200
201#define HARDIRQ_ENTER() \
202 local_irq_disable(); \
203 __irq_enter(); \
204 lockdep_hardirq_threaded(); \
205 WARN_ON(!in_irq());
206
207#define HARDIRQ_EXIT() \
208 __irq_exit(); \
209 local_irq_enable();
210
211#define SOFTIRQ_DISABLE local_bh_disable
212#define SOFTIRQ_ENABLE local_bh_enable
213
214#define SOFTIRQ_ENTER() \
215 local_bh_disable(); \
216 local_irq_disable(); \
217 lockdep_softirq_enter(); \
218 WARN_ON(!in_softirq());
219
220#define SOFTIRQ_EXIT() \
221 lockdep_softirq_exit(); \
222 local_irq_enable(); \
223 local_bh_enable();
224
225/*
226 * Shortcuts for lock/unlock API variants, to keep
227 * the testcases compact:
228 */
229#define L(x) spin_lock(&lock_##x)
230#define U(x) spin_unlock(&lock_##x)
231#define LU(x) L(x); U(x)
232#define SI(x) spin_lock_init(&lock_##x)
233
234#define WL(x) write_lock(&rwlock_##x)
235#define WU(x) write_unlock(&rwlock_##x)
236#define WLU(x) WL(x); WU(x)
237
238#define RL(x) read_lock(&rwlock_##x)
239#define RU(x) read_unlock(&rwlock_##x)
240#define RLU(x) RL(x); RU(x)
241#define RWI(x) rwlock_init(&rwlock_##x)
242
243#define ML(x) mutex_lock(&mutex_##x)
244#define MU(x) mutex_unlock(&mutex_##x)
245#define MI(x) mutex_init(&mutex_##x)
246
247#define RTL(x) rt_mutex_lock(&rtmutex_##x)
248#define RTU(x) rt_mutex_unlock(&rtmutex_##x)
249#define RTI(x) rt_mutex_init(&rtmutex_##x)
250
251#define WSL(x) down_write(&rwsem_##x)
252#define WSU(x) up_write(&rwsem_##x)
253
254#define RSL(x) down_read(&rwsem_##x)
255#define RSU(x) up_read(&rwsem_##x)
256#define RWSI(x) init_rwsem(&rwsem_##x)
257
258#ifndef CONFIG_DEBUG_WW_MUTEX_SLOWPATH
259#define WWAI(x) ww_acquire_init(x, &ww_lockdep)
260#else
261#define WWAI(x) do { ww_acquire_init(x, &ww_lockdep); (x)->deadlock_inject_countdown = ~0U; } while (0)
262#endif
263#define WWAD(x) ww_acquire_done(x)
264#define WWAF(x) ww_acquire_fini(x)
265
266#define WWL(x, c) ww_mutex_lock(x, c)
267#define WWT(x) ww_mutex_trylock(x, NULL)
268#define WWL1(x) ww_mutex_lock(x, NULL)
269#define WWU(x) ww_mutex_unlock(x)
270
271
272#define LOCK_UNLOCK_2(x,y) LOCK(x); LOCK(y); UNLOCK(y); UNLOCK(x)
273
274/*
275 * Generate different permutations of the same testcase, using
276 * the same basic lock-dependency/state events:
277 */
278
279#define GENERATE_TESTCASE(name) \
280 \
281static void name(void) { E(); }
282
283#define GENERATE_PERMUTATIONS_2_EVENTS(name) \
284 \
285static void name##_12(void) { E1(); E2(); } \
286static void name##_21(void) { E2(); E1(); }
287
288#define GENERATE_PERMUTATIONS_3_EVENTS(name) \
289 \
290static void name##_123(void) { E1(); E2(); E3(); } \
291static void name##_132(void) { E1(); E3(); E2(); } \
292static void name##_213(void) { E2(); E1(); E3(); } \
293static void name##_231(void) { E2(); E3(); E1(); } \
294static void name##_312(void) { E3(); E1(); E2(); } \
295static void name##_321(void) { E3(); E2(); E1(); }
296
297/*
298 * AA deadlock:
299 */
300
301#define E() \
302 \
303 LOCK(X1); \
304 LOCK(X2); /* this one should fail */
305
306/*
307 * 6 testcases:
308 */
309#include "locking-selftest-spin.h"
310GENERATE_TESTCASE(AA_spin)
311#include "locking-selftest-wlock.h"
312GENERATE_TESTCASE(AA_wlock)
313#include "locking-selftest-rlock.h"
314GENERATE_TESTCASE(AA_rlock)
315#include "locking-selftest-mutex.h"
316GENERATE_TESTCASE(AA_mutex)
317#include "locking-selftest-wsem.h"
318GENERATE_TESTCASE(AA_wsem)
319#include "locking-selftest-rsem.h"
320GENERATE_TESTCASE(AA_rsem)
321
322#ifdef CONFIG_RT_MUTEXES
323#include "locking-selftest-rtmutex.h"
324GENERATE_TESTCASE(AA_rtmutex);
325#endif
326
327#undef E
328
329/*
330 * Special-case for read-locking, they are
331 * allowed to recurse on the same lock class:
332 */
333static void rlock_AA1(void)
334{
335 RL(X1);
336 RL(X1); // this one should NOT fail
337}
338
339static void rlock_AA1B(void)
340{
341 RL(X1);
342 RL(X2); // this one should NOT fail
343}
344
345static void rsem_AA1(void)
346{
347 RSL(X1);
348 RSL(X1); // this one should fail
349}
350
351static void rsem_AA1B(void)
352{
353 RSL(X1);
354 RSL(X2); // this one should fail
355}
356/*
357 * The mixing of read and write locks is not allowed:
358 */
359static void rlock_AA2(void)
360{
361 RL(X1);
362 WL(X2); // this one should fail
363}
364
365static void rsem_AA2(void)
366{
367 RSL(X1);
368 WSL(X2); // this one should fail
369}
370
371static void rlock_AA3(void)
372{
373 WL(X1);
374 RL(X2); // this one should fail
375}
376
377static void rsem_AA3(void)
378{
379 WSL(X1);
380 RSL(X2); // this one should fail
381}
382
383/*
384 * read_lock(A)
385 * spin_lock(B)
386 * spin_lock(B)
387 * write_lock(A)
388 */
389static void rlock_ABBA1(void)
390{
391 RL(X1);
392 L(Y1);
393 U(Y1);
394 RU(X1);
395
396 L(Y1);
397 WL(X1);
398 WU(X1);
399 U(Y1); // should fail
400}
401
402static void rwsem_ABBA1(void)
403{
404 RSL(X1);
405 ML(Y1);
406 MU(Y1);
407 RSU(X1);
408
409 ML(Y1);
410 WSL(X1);
411 WSU(X1);
412 MU(Y1); // should fail
413}
414
415/*
416 * read_lock(A)
417 * spin_lock(B)
418 * spin_lock(B)
419 * write_lock(A)
420 *
421 * This test case is aimed at poking whether the chain cache prevents us from
422 * detecting a read-lock/lock-write deadlock: if the chain cache doesn't differ
423 * read/write locks, the following case may happen
424 *
425 * { read_lock(A)->lock(B) dependency exists }
426 *
427 * P0:
428 * lock(B);
429 * read_lock(A);
430 *
431 * { Not a deadlock, B -> A is added in the chain cache }
432 *
433 * P1:
434 * lock(B);
435 * write_lock(A);
436 *
437 * { B->A found in chain cache, not reported as a deadlock }
438 *
439 */
440static void rlock_chaincache_ABBA1(void)
441{
442 RL(X1);
443 L(Y1);
444 U(Y1);
445 RU(X1);
446
447 L(Y1);
448 RL(X1);
449 RU(X1);
450 U(Y1);
451
452 L(Y1);
453 WL(X1);
454 WU(X1);
455 U(Y1); // should fail
456}
457
458/*
459 * read_lock(A)
460 * spin_lock(B)
461 * spin_lock(B)
462 * read_lock(A)
463 */
464static void rlock_ABBA2(void)
465{
466 RL(X1);
467 L(Y1);
468 U(Y1);
469 RU(X1);
470
471 L(Y1);
472 RL(X1);
473 RU(X1);
474 U(Y1); // should NOT fail
475}
476
477static void rwsem_ABBA2(void)
478{
479 RSL(X1);
480 ML(Y1);
481 MU(Y1);
482 RSU(X1);
483
484 ML(Y1);
485 RSL(X1);
486 RSU(X1);
487 MU(Y1); // should fail
488}
489
490
491/*
492 * write_lock(A)
493 * spin_lock(B)
494 * spin_lock(B)
495 * write_lock(A)
496 */
497static void rlock_ABBA3(void)
498{
499 WL(X1);
500 L(Y1);
501 U(Y1);
502 WU(X1);
503
504 L(Y1);
505 WL(X1);
506 WU(X1);
507 U(Y1); // should fail
508}
509
510static void rwsem_ABBA3(void)
511{
512 WSL(X1);
513 ML(Y1);
514 MU(Y1);
515 WSU(X1);
516
517 ML(Y1);
518 WSL(X1);
519 WSU(X1);
520 MU(Y1); // should fail
521}
522
523/*
524 * ABBA deadlock:
525 */
526
527#define E() \
528 \
529 LOCK_UNLOCK_2(A, B); \
530 LOCK_UNLOCK_2(B, A); /* fail */
531
532/*
533 * 6 testcases:
534 */
535#include "locking-selftest-spin.h"
536GENERATE_TESTCASE(ABBA_spin)
537#include "locking-selftest-wlock.h"
538GENERATE_TESTCASE(ABBA_wlock)
539#include "locking-selftest-rlock.h"
540GENERATE_TESTCASE(ABBA_rlock)
541#include "locking-selftest-mutex.h"
542GENERATE_TESTCASE(ABBA_mutex)
543#include "locking-selftest-wsem.h"
544GENERATE_TESTCASE(ABBA_wsem)
545#include "locking-selftest-rsem.h"
546GENERATE_TESTCASE(ABBA_rsem)
547
548#ifdef CONFIG_RT_MUTEXES
549#include "locking-selftest-rtmutex.h"
550GENERATE_TESTCASE(ABBA_rtmutex);
551#endif
552
553#undef E
554
555/*
556 * AB BC CA deadlock:
557 */
558
559#define E() \
560 \
561 LOCK_UNLOCK_2(A, B); \
562 LOCK_UNLOCK_2(B, C); \
563 LOCK_UNLOCK_2(C, A); /* fail */
564
565/*
566 * 6 testcases:
567 */
568#include "locking-selftest-spin.h"
569GENERATE_TESTCASE(ABBCCA_spin)
570#include "locking-selftest-wlock.h"
571GENERATE_TESTCASE(ABBCCA_wlock)
572#include "locking-selftest-rlock.h"
573GENERATE_TESTCASE(ABBCCA_rlock)
574#include "locking-selftest-mutex.h"
575GENERATE_TESTCASE(ABBCCA_mutex)
576#include "locking-selftest-wsem.h"
577GENERATE_TESTCASE(ABBCCA_wsem)
578#include "locking-selftest-rsem.h"
579GENERATE_TESTCASE(ABBCCA_rsem)
580
581#ifdef CONFIG_RT_MUTEXES
582#include "locking-selftest-rtmutex.h"
583GENERATE_TESTCASE(ABBCCA_rtmutex);
584#endif
585
586#undef E
587
588/*
589 * AB CA BC deadlock:
590 */
591
592#define E() \
593 \
594 LOCK_UNLOCK_2(A, B); \
595 LOCK_UNLOCK_2(C, A); \
596 LOCK_UNLOCK_2(B, C); /* fail */
597
598/*
599 * 6 testcases:
600 */
601#include "locking-selftest-spin.h"
602GENERATE_TESTCASE(ABCABC_spin)
603#include "locking-selftest-wlock.h"
604GENERATE_TESTCASE(ABCABC_wlock)
605#include "locking-selftest-rlock.h"
606GENERATE_TESTCASE(ABCABC_rlock)
607#include "locking-selftest-mutex.h"
608GENERATE_TESTCASE(ABCABC_mutex)
609#include "locking-selftest-wsem.h"
610GENERATE_TESTCASE(ABCABC_wsem)
611#include "locking-selftest-rsem.h"
612GENERATE_TESTCASE(ABCABC_rsem)
613
614#ifdef CONFIG_RT_MUTEXES
615#include "locking-selftest-rtmutex.h"
616GENERATE_TESTCASE(ABCABC_rtmutex);
617#endif
618
619#undef E
620
621/*
622 * AB BC CD DA deadlock:
623 */
624
625#define E() \
626 \
627 LOCK_UNLOCK_2(A, B); \
628 LOCK_UNLOCK_2(B, C); \
629 LOCK_UNLOCK_2(C, D); \
630 LOCK_UNLOCK_2(D, A); /* fail */
631
632/*
633 * 6 testcases:
634 */
635#include "locking-selftest-spin.h"
636GENERATE_TESTCASE(ABBCCDDA_spin)
637#include "locking-selftest-wlock.h"
638GENERATE_TESTCASE(ABBCCDDA_wlock)
639#include "locking-selftest-rlock.h"
640GENERATE_TESTCASE(ABBCCDDA_rlock)
641#include "locking-selftest-mutex.h"
642GENERATE_TESTCASE(ABBCCDDA_mutex)
643#include "locking-selftest-wsem.h"
644GENERATE_TESTCASE(ABBCCDDA_wsem)
645#include "locking-selftest-rsem.h"
646GENERATE_TESTCASE(ABBCCDDA_rsem)
647
648#ifdef CONFIG_RT_MUTEXES
649#include "locking-selftest-rtmutex.h"
650GENERATE_TESTCASE(ABBCCDDA_rtmutex);
651#endif
652
653#undef E
654
655/*
656 * AB CD BD DA deadlock:
657 */
658#define E() \
659 \
660 LOCK_UNLOCK_2(A, B); \
661 LOCK_UNLOCK_2(C, D); \
662 LOCK_UNLOCK_2(B, D); \
663 LOCK_UNLOCK_2(D, A); /* fail */
664
665/*
666 * 6 testcases:
667 */
668#include "locking-selftest-spin.h"
669GENERATE_TESTCASE(ABCDBDDA_spin)
670#include "locking-selftest-wlock.h"
671GENERATE_TESTCASE(ABCDBDDA_wlock)
672#include "locking-selftest-rlock.h"
673GENERATE_TESTCASE(ABCDBDDA_rlock)
674#include "locking-selftest-mutex.h"
675GENERATE_TESTCASE(ABCDBDDA_mutex)
676#include "locking-selftest-wsem.h"
677GENERATE_TESTCASE(ABCDBDDA_wsem)
678#include "locking-selftest-rsem.h"
679GENERATE_TESTCASE(ABCDBDDA_rsem)
680
681#ifdef CONFIG_RT_MUTEXES
682#include "locking-selftest-rtmutex.h"
683GENERATE_TESTCASE(ABCDBDDA_rtmutex);
684#endif
685
686#undef E
687
688/*
689 * AB CD BC DA deadlock:
690 */
691#define E() \
692 \
693 LOCK_UNLOCK_2(A, B); \
694 LOCK_UNLOCK_2(C, D); \
695 LOCK_UNLOCK_2(B, C); \
696 LOCK_UNLOCK_2(D, A); /* fail */
697
698/*
699 * 6 testcases:
700 */
701#include "locking-selftest-spin.h"
702GENERATE_TESTCASE(ABCDBCDA_spin)
703#include "locking-selftest-wlock.h"
704GENERATE_TESTCASE(ABCDBCDA_wlock)
705#include "locking-selftest-rlock.h"
706GENERATE_TESTCASE(ABCDBCDA_rlock)
707#include "locking-selftest-mutex.h"
708GENERATE_TESTCASE(ABCDBCDA_mutex)
709#include "locking-selftest-wsem.h"
710GENERATE_TESTCASE(ABCDBCDA_wsem)
711#include "locking-selftest-rsem.h"
712GENERATE_TESTCASE(ABCDBCDA_rsem)
713
714#ifdef CONFIG_RT_MUTEXES
715#include "locking-selftest-rtmutex.h"
716GENERATE_TESTCASE(ABCDBCDA_rtmutex);
717#endif
718
719#undef E
720
721#ifdef CONFIG_PREEMPT_RT
722# define RT_PREPARE_DBL_UNLOCK() { migrate_disable(); rcu_read_lock(); }
723#else
724# define RT_PREPARE_DBL_UNLOCK()
725#endif
726/*
727 * Double unlock:
728 */
729#define E() \
730 \
731 LOCK(A); \
732 RT_PREPARE_DBL_UNLOCK(); \
733 UNLOCK(A); \
734 UNLOCK(A); /* fail */
735
736/*
737 * 6 testcases:
738 */
739#include "locking-selftest-spin.h"
740GENERATE_TESTCASE(double_unlock_spin)
741#include "locking-selftest-wlock.h"
742GENERATE_TESTCASE(double_unlock_wlock)
743#include "locking-selftest-rlock.h"
744GENERATE_TESTCASE(double_unlock_rlock)
745#include "locking-selftest-mutex.h"
746GENERATE_TESTCASE(double_unlock_mutex)
747#include "locking-selftest-wsem.h"
748GENERATE_TESTCASE(double_unlock_wsem)
749#include "locking-selftest-rsem.h"
750GENERATE_TESTCASE(double_unlock_rsem)
751
752#ifdef CONFIG_RT_MUTEXES
753#include "locking-selftest-rtmutex.h"
754GENERATE_TESTCASE(double_unlock_rtmutex);
755#endif
756
757#undef E
758
759/*
760 * initializing a held lock:
761 */
762#define E() \
763 \
764 LOCK(A); \
765 INIT(A); /* fail */
766
767/*
768 * 6 testcases:
769 */
770#include "locking-selftest-spin.h"
771GENERATE_TESTCASE(init_held_spin)
772#include "locking-selftest-wlock.h"
773GENERATE_TESTCASE(init_held_wlock)
774#include "locking-selftest-rlock.h"
775GENERATE_TESTCASE(init_held_rlock)
776#include "locking-selftest-mutex.h"
777GENERATE_TESTCASE(init_held_mutex)
778#include "locking-selftest-wsem.h"
779GENERATE_TESTCASE(init_held_wsem)
780#include "locking-selftest-rsem.h"
781GENERATE_TESTCASE(init_held_rsem)
782
783#ifdef CONFIG_RT_MUTEXES
784#include "locking-selftest-rtmutex.h"
785GENERATE_TESTCASE(init_held_rtmutex);
786#endif
787
788#undef E
789
790/*
791 * locking an irq-safe lock with irqs enabled:
792 */
793#define E1() \
794 \
795 IRQ_ENTER(); \
796 LOCK(A); \
797 UNLOCK(A); \
798 IRQ_EXIT();
799
800#define E2() \
801 \
802 LOCK(A); \
803 UNLOCK(A);
804
805/*
806 * Generate 24 testcases:
807 */
808#include "locking-selftest-spin-hardirq.h"
809GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_spin)
810
811#include "locking-selftest-rlock-hardirq.h"
812GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_rlock)
813
814#include "locking-selftest-wlock-hardirq.h"
815GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_hard_wlock)
816
817#ifndef CONFIG_PREEMPT_RT
818#include "locking-selftest-spin-softirq.h"
819GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_spin)
820
821#include "locking-selftest-rlock-softirq.h"
822GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_rlock)
823
824#include "locking-selftest-wlock-softirq.h"
825GENERATE_PERMUTATIONS_2_EVENTS(irqsafe1_soft_wlock)
826#endif
827
828#undef E1
829#undef E2
830
831#ifndef CONFIG_PREEMPT_RT
832/*
833 * Enabling hardirqs with a softirq-safe lock held:
834 */
835#define E1() \
836 \
837 SOFTIRQ_ENTER(); \
838 LOCK(A); \
839 UNLOCK(A); \
840 SOFTIRQ_EXIT();
841
842#define E2() \
843 \
844 HARDIRQ_DISABLE(); \
845 LOCK(A); \
846 HARDIRQ_ENABLE(); \
847 UNLOCK(A);
848
849/*
850 * Generate 12 testcases:
851 */
852#include "locking-selftest-spin.h"
853GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_spin)
854
855#include "locking-selftest-wlock.h"
856GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_wlock)
857
858#include "locking-selftest-rlock.h"
859GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2A_rlock)
860
861#undef E1
862#undef E2
863
864#endif
865
866/*
867 * Enabling irqs with an irq-safe lock held:
868 */
869#define E1() \
870 \
871 IRQ_ENTER(); \
872 LOCK(A); \
873 UNLOCK(A); \
874 IRQ_EXIT();
875
876#define E2() \
877 \
878 IRQ_DISABLE(); \
879 LOCK(A); \
880 IRQ_ENABLE(); \
881 UNLOCK(A);
882
883/*
884 * Generate 24 testcases:
885 */
886#include "locking-selftest-spin-hardirq.h"
887GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_spin)
888
889#include "locking-selftest-rlock-hardirq.h"
890GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_rlock)
891
892#include "locking-selftest-wlock-hardirq.h"
893GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_hard_wlock)
894
895#ifndef CONFIG_PREEMPT_RT
896#include "locking-selftest-spin-softirq.h"
897GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_spin)
898
899#include "locking-selftest-rlock-softirq.h"
900GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_rlock)
901
902#include "locking-selftest-wlock-softirq.h"
903GENERATE_PERMUTATIONS_2_EVENTS(irqsafe2B_soft_wlock)
904#endif
905
906#undef E1
907#undef E2
908
909/*
910 * Acquiring a irq-unsafe lock while holding an irq-safe-lock:
911 */
912#define E1() \
913 \
914 LOCK(A); \
915 LOCK(B); \
916 UNLOCK(B); \
917 UNLOCK(A); \
918
919#define E2() \
920 \
921 LOCK(B); \
922 UNLOCK(B);
923
924#define E3() \
925 \
926 IRQ_ENTER(); \
927 LOCK(A); \
928 UNLOCK(A); \
929 IRQ_EXIT();
930
931/*
932 * Generate 36 testcases:
933 */
934#include "locking-selftest-spin-hardirq.h"
935GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_spin)
936
937#include "locking-selftest-rlock-hardirq.h"
938GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_rlock)
939
940#include "locking-selftest-wlock-hardirq.h"
941GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_hard_wlock)
942
943#ifndef CONFIG_PREEMPT_RT
944#include "locking-selftest-spin-softirq.h"
945GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_spin)
946
947#include "locking-selftest-rlock-softirq.h"
948GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_rlock)
949
950#include "locking-selftest-wlock-softirq.h"
951GENERATE_PERMUTATIONS_3_EVENTS(irqsafe3_soft_wlock)
952#endif
953
954#undef E1
955#undef E2
956#undef E3
957
958/*
959 * If a lock turns into softirq-safe, but earlier it took
960 * a softirq-unsafe lock:
961 */
962
963#define E1() \
964 IRQ_DISABLE(); \
965 LOCK(A); \
966 LOCK(B); \
967 UNLOCK(B); \
968 UNLOCK(A); \
969 IRQ_ENABLE();
970
971#define E2() \
972 LOCK(B); \
973 UNLOCK(B);
974
975#define E3() \
976 IRQ_ENTER(); \
977 LOCK(A); \
978 UNLOCK(A); \
979 IRQ_EXIT();
980
981/*
982 * Generate 36 testcases:
983 */
984#include "locking-selftest-spin-hardirq.h"
985GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_spin)
986
987#include "locking-selftest-rlock-hardirq.h"
988GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_rlock)
989
990#include "locking-selftest-wlock-hardirq.h"
991GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_hard_wlock)
992
993#ifndef CONFIG_PREEMPT_RT
994#include "locking-selftest-spin-softirq.h"
995GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_spin)
996
997#include "locking-selftest-rlock-softirq.h"
998GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_rlock)
999
1000#include "locking-selftest-wlock-softirq.h"
1001GENERATE_PERMUTATIONS_3_EVENTS(irqsafe4_soft_wlock)
1002#endif
1003
1004#undef E1
1005#undef E2
1006#undef E3
1007
1008/*
1009 * read-lock / write-lock irq inversion.
1010 *
1011 * Deadlock scenario:
1012 *
1013 * CPU#1 is at #1, i.e. it has write-locked A, but has not
1014 * taken B yet.
1015 *
1016 * CPU#2 is at #2, i.e. it has locked B.
1017 *
1018 * Hardirq hits CPU#2 at point #2 and is trying to read-lock A.
1019 *
1020 * The deadlock occurs because CPU#1 will spin on B, and CPU#2
1021 * will spin on A.
1022 */
1023
1024#define E1() \
1025 \
1026 IRQ_DISABLE(); \
1027 WL(A); \
1028 LOCK(B); \
1029 UNLOCK(B); \
1030 WU(A); \
1031 IRQ_ENABLE();
1032
1033#define E2() \
1034 \
1035 LOCK(B); \
1036 UNLOCK(B);
1037
1038#define E3() \
1039 \
1040 IRQ_ENTER(); \
1041 RL(A); \
1042 RU(A); \
1043 IRQ_EXIT();
1044
1045/*
1046 * Generate 36 testcases:
1047 */
1048#include "locking-selftest-spin-hardirq.h"
1049GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_spin)
1050
1051#include "locking-selftest-rlock-hardirq.h"
1052GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_rlock)
1053
1054#include "locking-selftest-wlock-hardirq.h"
1055GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_hard_wlock)
1056
1057#ifndef CONFIG_PREEMPT_RT
1058#include "locking-selftest-spin-softirq.h"
1059GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_spin)
1060
1061#include "locking-selftest-rlock-softirq.h"
1062GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_rlock)
1063
1064#include "locking-selftest-wlock-softirq.h"
1065GENERATE_PERMUTATIONS_3_EVENTS(irq_inversion_soft_wlock)
1066#endif
1067
1068#undef E1
1069#undef E2
1070#undef E3
1071
1072/*
1073 * write-read / write-read / write-read deadlock even if read is recursive
1074 */
1075
1076#define E1() \
1077 \
1078 WL(X1); \
1079 RL(Y1); \
1080 RU(Y1); \
1081 WU(X1);
1082
1083#define E2() \
1084 \
1085 WL(Y1); \
1086 RL(Z1); \
1087 RU(Z1); \
1088 WU(Y1);
1089
1090#define E3() \
1091 \
1092 WL(Z1); \
1093 RL(X1); \
1094 RU(X1); \
1095 WU(Z1);
1096
1097#include "locking-selftest-rlock.h"
1098GENERATE_PERMUTATIONS_3_EVENTS(W1R2_W2R3_W3R1)
1099
1100#undef E1
1101#undef E2
1102#undef E3
1103
1104/*
1105 * write-write / read-read / write-read deadlock even if read is recursive
1106 */
1107
1108#define E1() \
1109 \
1110 WL(X1); \
1111 WL(Y1); \
1112 WU(Y1); \
1113 WU(X1);
1114
1115#define E2() \
1116 \
1117 RL(Y1); \
1118 RL(Z1); \
1119 RU(Z1); \
1120 RU(Y1);
1121
1122#define E3() \
1123 \
1124 WL(Z1); \
1125 RL(X1); \
1126 RU(X1); \
1127 WU(Z1);
1128
1129#include "locking-selftest-rlock.h"
1130GENERATE_PERMUTATIONS_3_EVENTS(W1W2_R2R3_W3R1)
1131
1132#undef E1
1133#undef E2
1134#undef E3
1135
1136/*
1137 * write-write / read-read / read-write is not deadlock when read is recursive
1138 */
1139
1140#define E1() \
1141 \
1142 WL(X1); \
1143 WL(Y1); \
1144 WU(Y1); \
1145 WU(X1);
1146
1147#define E2() \
1148 \
1149 RL(Y1); \
1150 RL(Z1); \
1151 RU(Z1); \
1152 RU(Y1);
1153
1154#define E3() \
1155 \
1156 RL(Z1); \
1157 WL(X1); \
1158 WU(X1); \
1159 RU(Z1);
1160
1161#include "locking-selftest-rlock.h"
1162GENERATE_PERMUTATIONS_3_EVENTS(W1R2_R2R3_W3W1)
1163
1164#undef E1
1165#undef E2
1166#undef E3
1167
1168/*
1169 * write-read / read-read / write-write is not deadlock when read is recursive
1170 */
1171
1172#define E1() \
1173 \
1174 WL(X1); \
1175 RL(Y1); \
1176 RU(Y1); \
1177 WU(X1);
1178
1179#define E2() \
1180 \
1181 RL(Y1); \
1182 RL(Z1); \
1183 RU(Z1); \
1184 RU(Y1);
1185
1186#define E3() \
1187 \
1188 WL(Z1); \
1189 WL(X1); \
1190 WU(X1); \
1191 WU(Z1);
1192
1193#include "locking-selftest-rlock.h"
1194GENERATE_PERMUTATIONS_3_EVENTS(W1W2_R2R3_R3W1)
1195
1196#undef E1
1197#undef E2
1198#undef E3
1199/*
1200 * read-lock / write-lock recursion that is actually safe.
1201 */
1202
1203#define E1() \
1204 \
1205 IRQ_DISABLE(); \
1206 WL(A); \
1207 WU(A); \
1208 IRQ_ENABLE();
1209
1210#define E2() \
1211 \
1212 RL(A); \
1213 RU(A); \
1214
1215#define E3() \
1216 \
1217 IRQ_ENTER(); \
1218 LOCK(A); \
1219 L(B); \
1220 U(B); \
1221 UNLOCK(A); \
1222 IRQ_EXIT();
1223
1224/*
1225 * Generate 24 testcases:
1226 */
1227#include "locking-selftest-hardirq.h"
1228#include "locking-selftest-rlock.h"
1229GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_hard_rlock)
1230
1231#include "locking-selftest-wlock.h"
1232GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_hard_wlock)
1233
1234#ifndef CONFIG_PREEMPT_RT
1235#include "locking-selftest-softirq.h"
1236#include "locking-selftest-rlock.h"
1237GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_soft_rlock)
1238
1239#include "locking-selftest-wlock.h"
1240GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion_soft_wlock)
1241#endif
1242
1243#undef E1
1244#undef E2
1245#undef E3
1246
1247/*
1248 * read-lock / write-lock recursion that is unsafe.
1249 */
1250
1251#define E1() \
1252 \
1253 IRQ_DISABLE(); \
1254 L(B); \
1255 LOCK(A); \
1256 UNLOCK(A); \
1257 U(B); \
1258 IRQ_ENABLE();
1259
1260#define E2() \
1261 \
1262 RL(A); \
1263 RU(A); \
1264
1265#define E3() \
1266 \
1267 IRQ_ENTER(); \
1268 L(B); \
1269 U(B); \
1270 IRQ_EXIT();
1271
1272/*
1273 * Generate 24 testcases:
1274 */
1275#include "locking-selftest-hardirq.h"
1276#include "locking-selftest-rlock.h"
1277GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_hard_rlock)
1278
1279#include "locking-selftest-wlock.h"
1280GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_hard_wlock)
1281
1282#ifndef CONFIG_PREEMPT_RT
1283#include "locking-selftest-softirq.h"
1284#include "locking-selftest-rlock.h"
1285GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_soft_rlock)
1286
1287#include "locking-selftest-wlock.h"
1288GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion2_soft_wlock)
1289#endif
1290
1291#undef E1
1292#undef E2
1293#undef E3
1294/*
1295 * read-lock / write-lock recursion that is unsafe.
1296 *
1297 * A is a ENABLED_*_READ lock
1298 * B is a USED_IN_*_READ lock
1299 *
1300 * read_lock(A);
1301 * write_lock(B);
1302 * <interrupt>
1303 * read_lock(B);
1304 * write_lock(A); // if this one is read_lock(), no deadlock
1305 */
1306
1307#define E1() \
1308 \
1309 IRQ_DISABLE(); \
1310 WL(B); \
1311 LOCK(A); \
1312 UNLOCK(A); \
1313 WU(B); \
1314 IRQ_ENABLE();
1315
1316#define E2() \
1317 \
1318 RL(A); \
1319 RU(A); \
1320
1321#define E3() \
1322 \
1323 IRQ_ENTER(); \
1324 RL(B); \
1325 RU(B); \
1326 IRQ_EXIT();
1327
1328/*
1329 * Generate 24 testcases:
1330 */
1331#include "locking-selftest-hardirq.h"
1332#include "locking-selftest-rlock.h"
1333GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion3_hard_rlock)
1334
1335#include "locking-selftest-wlock.h"
1336GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion3_hard_wlock)
1337
1338#ifndef CONFIG_PREEMPT_RT
1339#include "locking-selftest-softirq.h"
1340#include "locking-selftest-rlock.h"
1341GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion3_soft_rlock)
1342
1343#include "locking-selftest-wlock.h"
1344GENERATE_PERMUTATIONS_3_EVENTS(irq_read_recursion3_soft_wlock)
1345#endif
1346
1347#ifdef CONFIG_DEBUG_LOCK_ALLOC
1348# define I_SPINLOCK(x) lockdep_reset_lock(&lock_##x.dep_map)
1349# define I_RAW_SPINLOCK(x) lockdep_reset_lock(&raw_lock_##x.dep_map)
1350# define I_RWLOCK(x) lockdep_reset_lock(&rwlock_##x.dep_map)
1351# define I_MUTEX(x) lockdep_reset_lock(&mutex_##x.dep_map)
1352# define I_RWSEM(x) lockdep_reset_lock(&rwsem_##x.dep_map)
1353# define I_WW(x) lockdep_reset_lock(&x.dep_map)
1354# define I_LOCAL_LOCK(x) lockdep_reset_lock(this_cpu_ptr(&local_##x.dep_map))
1355#ifdef CONFIG_RT_MUTEXES
1356# define I_RTMUTEX(x) lockdep_reset_lock(&rtmutex_##x.dep_map)
1357#endif
1358#else
1359# define I_SPINLOCK(x)
1360# define I_RAW_SPINLOCK(x)
1361# define I_RWLOCK(x)
1362# define I_MUTEX(x)
1363# define I_RWSEM(x)
1364# define I_WW(x)
1365# define I_LOCAL_LOCK(x)
1366#endif
1367
1368#ifndef I_RTMUTEX
1369# define I_RTMUTEX(x)
1370#endif
1371
1372#ifdef CONFIG_RT_MUTEXES
1373#define I2_RTMUTEX(x) rt_mutex_init(&rtmutex_##x)
1374#else
1375#define I2_RTMUTEX(x)
1376#endif
1377
1378#define I1(x) \
1379 do { \
1380 I_SPINLOCK(x); \
1381 I_RWLOCK(x); \
1382 I_MUTEX(x); \
1383 I_RWSEM(x); \
1384 I_RTMUTEX(x); \
1385 } while (0)
1386
1387#define I2(x) \
1388 do { \
1389 spin_lock_init(&lock_##x); \
1390 rwlock_init(&rwlock_##x); \
1391 mutex_init(&mutex_##x); \
1392 init_rwsem(&rwsem_##x); \
1393 I2_RTMUTEX(x); \
1394 } while (0)
1395
1396static void reset_locks(void)
1397{
1398 local_irq_disable();
1399 lockdep_free_key_range(&ww_lockdep.acquire_key, 1);
1400 lockdep_free_key_range(&ww_lockdep.mutex_key, 1);
1401
1402 I1(A); I1(B); I1(C); I1(D);
1403 I1(X1); I1(X2); I1(Y1); I1(Y2); I1(Z1); I1(Z2);
1404 I_WW(t); I_WW(t2); I_WW(o.base); I_WW(o2.base); I_WW(o3.base);
1405 I_RAW_SPINLOCK(A); I_RAW_SPINLOCK(B);
1406 I_LOCAL_LOCK(A);
1407
1408 lockdep_reset();
1409
1410 I2(A); I2(B); I2(C); I2(D);
1411 init_shared_classes();
1412 raw_spin_lock_init(&raw_lock_A);
1413 raw_spin_lock_init(&raw_lock_B);
1414 local_lock_init(this_cpu_ptr(&local_A));
1415
1416 ww_mutex_init(&o, &ww_lockdep); ww_mutex_init(&o2, &ww_lockdep); ww_mutex_init(&o3, &ww_lockdep);
1417 memset(&t, 0, sizeof(t)); memset(&t2, 0, sizeof(t2));
1418 memset(&ww_lockdep.acquire_key, 0, sizeof(ww_lockdep.acquire_key));
1419 memset(&ww_lockdep.mutex_key, 0, sizeof(ww_lockdep.mutex_key));
1420 local_irq_enable();
1421}
1422
1423#undef I
1424
1425static int testcase_total;
1426static int testcase_successes;
1427static int expected_testcase_failures;
1428static int unexpected_testcase_failures;
1429
1430static void dotest(void (*testcase_fn)(void), int expected, int lockclass_mask)
1431{
1432 int saved_preempt_count = preempt_count();
1433#ifdef CONFIG_PREEMPT_RT
1434#ifdef CONFIG_SMP
1435 int saved_mgd_count = current->migration_disabled;
1436#endif
1437 int saved_rcu_count = current->rcu_read_lock_nesting;
1438#endif
1439
1440 WARN_ON(irqs_disabled());
1441
1442 debug_locks_silent = !(debug_locks_verbose & lockclass_mask);
1443
1444 testcase_fn();
1445 /*
1446 * Filter out expected failures:
1447 */
1448#ifndef CONFIG_PROVE_LOCKING
1449 if (expected == FAILURE && debug_locks) {
1450 expected_testcase_failures++;
1451 pr_cont("failed|");
1452 }
1453 else
1454#endif
1455 if (debug_locks != expected) {
1456 unexpected_testcase_failures++;
1457 pr_cont("FAILED|");
1458 } else {
1459 testcase_successes++;
1460 pr_cont(" ok |");
1461 }
1462 testcase_total++;
1463
1464 if (debug_locks_verbose & lockclass_mask)
1465 pr_cont(" lockclass mask: %x, debug_locks: %d, expected: %d\n",
1466 lockclass_mask, debug_locks, expected);
1467 /*
1468 * Some tests (e.g. double-unlock) might corrupt the preemption
1469 * count, so restore it:
1470 */
1471 preempt_count_set(saved_preempt_count);
1472
1473#ifdef CONFIG_PREEMPT_RT
1474#ifdef CONFIG_SMP
1475 while (current->migration_disabled > saved_mgd_count)
1476 migrate_enable();
1477#endif
1478
1479 while (current->rcu_read_lock_nesting > saved_rcu_count)
1480 rcu_read_unlock();
1481 WARN_ON_ONCE(current->rcu_read_lock_nesting < saved_rcu_count);
1482#endif
1483
1484#ifdef CONFIG_TRACE_IRQFLAGS
1485 if (softirq_count())
1486 current->softirqs_enabled = 0;
1487 else
1488 current->softirqs_enabled = 1;
1489#endif
1490
1491 reset_locks();
1492}
1493
1494#ifdef CONFIG_RT_MUTEXES
1495#define dotest_rt(fn, e, m) dotest((fn), (e), (m))
1496#else
1497#define dotest_rt(fn, e, m)
1498#endif
1499
1500static inline void print_testname(const char *testname)
1501{
1502 printk("%33s:", testname);
1503}
1504
1505#define DO_TESTCASE_1(desc, name, nr) \
1506 print_testname(desc"/"#nr); \
1507 dotest(name##_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1508 pr_cont("\n");
1509
1510#define DO_TESTCASE_1B(desc, name, nr) \
1511 print_testname(desc"/"#nr); \
1512 dotest(name##_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1513 pr_cont("\n");
1514
1515#define DO_TESTCASE_1RR(desc, name, nr) \
1516 print_testname(desc"/"#nr); \
1517 pr_cont(" |"); \
1518 dotest(name##_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1519 pr_cont("\n");
1520
1521#define DO_TESTCASE_1RRB(desc, name, nr) \
1522 print_testname(desc"/"#nr); \
1523 pr_cont(" |"); \
1524 dotest(name##_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1525 pr_cont("\n");
1526
1527
1528#define DO_TESTCASE_3(desc, name, nr) \
1529 print_testname(desc"/"#nr); \
1530 dotest(name##_spin_##nr, FAILURE, LOCKTYPE_SPIN); \
1531 dotest(name##_wlock_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1532 dotest(name##_rlock_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1533 pr_cont("\n");
1534
1535#define DO_TESTCASE_3RW(desc, name, nr) \
1536 print_testname(desc"/"#nr); \
1537 dotest(name##_spin_##nr, FAILURE, LOCKTYPE_SPIN|LOCKTYPE_RWLOCK);\
1538 dotest(name##_wlock_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1539 dotest(name##_rlock_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1540 pr_cont("\n");
1541
1542#define DO_TESTCASE_2RW(desc, name, nr) \
1543 print_testname(desc"/"#nr); \
1544 pr_cont(" |"); \
1545 dotest(name##_wlock_##nr, FAILURE, LOCKTYPE_RWLOCK); \
1546 dotest(name##_rlock_##nr, SUCCESS, LOCKTYPE_RWLOCK); \
1547 pr_cont("\n");
1548
1549#define DO_TESTCASE_2x2RW(desc, name, nr) \
1550 DO_TESTCASE_2RW("hard-"desc, name##_hard, nr) \
1551 NON_RT(DO_TESTCASE_2RW("soft-"desc, name##_soft, nr)) \
1552
1553#define DO_TESTCASE_6x2x2RW(desc, name) \
1554 DO_TESTCASE_2x2RW(desc, name, 123); \
1555 DO_TESTCASE_2x2RW(desc, name, 132); \
1556 DO_TESTCASE_2x2RW(desc, name, 213); \
1557 DO_TESTCASE_2x2RW(desc, name, 231); \
1558 DO_TESTCASE_2x2RW(desc, name, 312); \
1559 DO_TESTCASE_2x2RW(desc, name, 321);
1560
1561#define DO_TESTCASE_6(desc, name) \
1562 print_testname(desc); \
1563 dotest(name##_spin, FAILURE, LOCKTYPE_SPIN); \
1564 dotest(name##_wlock, FAILURE, LOCKTYPE_RWLOCK); \
1565 dotest(name##_rlock, FAILURE, LOCKTYPE_RWLOCK); \
1566 dotest(name##_mutex, FAILURE, LOCKTYPE_MUTEX); \
1567 dotest(name##_wsem, FAILURE, LOCKTYPE_RWSEM); \
1568 dotest(name##_rsem, FAILURE, LOCKTYPE_RWSEM); \
1569 dotest_rt(name##_rtmutex, FAILURE, LOCKTYPE_RTMUTEX); \
1570 pr_cont("\n");
1571
1572#define DO_TESTCASE_6_SUCCESS(desc, name) \
1573 print_testname(desc); \
1574 dotest(name##_spin, SUCCESS, LOCKTYPE_SPIN); \
1575 dotest(name##_wlock, SUCCESS, LOCKTYPE_RWLOCK); \
1576 dotest(name##_rlock, SUCCESS, LOCKTYPE_RWLOCK); \
1577 dotest(name##_mutex, SUCCESS, LOCKTYPE_MUTEX); \
1578 dotest(name##_wsem, SUCCESS, LOCKTYPE_RWSEM); \
1579 dotest(name##_rsem, SUCCESS, LOCKTYPE_RWSEM); \
1580 dotest_rt(name##_rtmutex, SUCCESS, LOCKTYPE_RTMUTEX); \
1581 pr_cont("\n");
1582
1583/*
1584 * 'read' variant: rlocks must not trigger.
1585 */
1586#define DO_TESTCASE_6R(desc, name) \
1587 print_testname(desc); \
1588 dotest(name##_spin, FAILURE, LOCKTYPE_SPIN); \
1589 dotest(name##_wlock, FAILURE, LOCKTYPE_RWLOCK); \
1590 dotest(name##_rlock, SUCCESS, LOCKTYPE_RWLOCK); \
1591 dotest(name##_mutex, FAILURE, LOCKTYPE_MUTEX); \
1592 dotest(name##_wsem, FAILURE, LOCKTYPE_RWSEM); \
1593 dotest(name##_rsem, FAILURE, LOCKTYPE_RWSEM); \
1594 dotest_rt(name##_rtmutex, FAILURE, LOCKTYPE_RTMUTEX); \
1595 pr_cont("\n");
1596
1597#define DO_TESTCASE_2I(desc, name, nr) \
1598 DO_TESTCASE_1("hard-"desc, name##_hard, nr); \
1599 NON_RT(DO_TESTCASE_1("soft-"desc, name##_soft, nr));
1600
1601#define DO_TESTCASE_2IB(desc, name, nr) \
1602 DO_TESTCASE_1B("hard-"desc, name##_hard, nr); \
1603 NON_RT(DO_TESTCASE_1B("soft-"desc, name##_soft, nr));
1604
1605#define DO_TESTCASE_6I(desc, name, nr) \
1606 DO_TESTCASE_3("hard-"desc, name##_hard, nr); \
1607 NON_RT(DO_TESTCASE_3("soft-"desc, name##_soft, nr));
1608
1609#define DO_TESTCASE_6IRW(desc, name, nr) \
1610 DO_TESTCASE_3RW("hard-"desc, name##_hard, nr); \
1611 NON_RT(DO_TESTCASE_3RW("soft-"desc, name##_soft, nr));
1612
1613#define DO_TESTCASE_2x3(desc, name) \
1614 DO_TESTCASE_3(desc, name, 12); \
1615 DO_TESTCASE_3(desc, name, 21);
1616
1617#define DO_TESTCASE_2x6(desc, name) \
1618 DO_TESTCASE_6I(desc, name, 12); \
1619 DO_TESTCASE_6I(desc, name, 21);
1620
1621#define DO_TESTCASE_6x2(desc, name) \
1622 DO_TESTCASE_2I(desc, name, 123); \
1623 DO_TESTCASE_2I(desc, name, 132); \
1624 DO_TESTCASE_2I(desc, name, 213); \
1625 DO_TESTCASE_2I(desc, name, 231); \
1626 DO_TESTCASE_2I(desc, name, 312); \
1627 DO_TESTCASE_2I(desc, name, 321);
1628
1629#define DO_TESTCASE_6x2B(desc, name) \
1630 DO_TESTCASE_2IB(desc, name, 123); \
1631 DO_TESTCASE_2IB(desc, name, 132); \
1632 DO_TESTCASE_2IB(desc, name, 213); \
1633 DO_TESTCASE_2IB(desc, name, 231); \
1634 DO_TESTCASE_2IB(desc, name, 312); \
1635 DO_TESTCASE_2IB(desc, name, 321);
1636
1637#define DO_TESTCASE_6x1RR(desc, name) \
1638 DO_TESTCASE_1RR(desc, name, 123); \
1639 DO_TESTCASE_1RR(desc, name, 132); \
1640 DO_TESTCASE_1RR(desc, name, 213); \
1641 DO_TESTCASE_1RR(desc, name, 231); \
1642 DO_TESTCASE_1RR(desc, name, 312); \
1643 DO_TESTCASE_1RR(desc, name, 321);
1644
1645#define DO_TESTCASE_6x1RRB(desc, name) \
1646 DO_TESTCASE_1RRB(desc, name, 123); \
1647 DO_TESTCASE_1RRB(desc, name, 132); \
1648 DO_TESTCASE_1RRB(desc, name, 213); \
1649 DO_TESTCASE_1RRB(desc, name, 231); \
1650 DO_TESTCASE_1RRB(desc, name, 312); \
1651 DO_TESTCASE_1RRB(desc, name, 321);
1652
1653#define DO_TESTCASE_6x6(desc, name) \
1654 DO_TESTCASE_6I(desc, name, 123); \
1655 DO_TESTCASE_6I(desc, name, 132); \
1656 DO_TESTCASE_6I(desc, name, 213); \
1657 DO_TESTCASE_6I(desc, name, 231); \
1658 DO_TESTCASE_6I(desc, name, 312); \
1659 DO_TESTCASE_6I(desc, name, 321);
1660
1661#define DO_TESTCASE_6x6RW(desc, name) \
1662 DO_TESTCASE_6IRW(desc, name, 123); \
1663 DO_TESTCASE_6IRW(desc, name, 132); \
1664 DO_TESTCASE_6IRW(desc, name, 213); \
1665 DO_TESTCASE_6IRW(desc, name, 231); \
1666 DO_TESTCASE_6IRW(desc, name, 312); \
1667 DO_TESTCASE_6IRW(desc, name, 321);
1668
1669static void ww_test_fail_acquire(void)
1670{
1671 int ret;
1672
1673 WWAI(&t);
1674 t.stamp++;
1675
1676 ret = WWL(&o, &t);
1677
1678 if (WARN_ON(!o.ctx) ||
1679 WARN_ON(ret))
1680 return;
1681
1682 /* No lockdep test, pure API */
1683 ret = WWL(&o, &t);
1684 WARN_ON(ret != -EALREADY);
1685
1686 ret = WWT(&o);
1687 WARN_ON(ret);
1688
1689 t2 = t;
1690 t2.stamp++;
1691 ret = WWL(&o, &t2);
1692 WARN_ON(ret != -EDEADLK);
1693 WWU(&o);
1694
1695 if (WWT(&o))
1696 WWU(&o);
1697#ifdef CONFIG_DEBUG_LOCK_ALLOC
1698 else
1699 DEBUG_LOCKS_WARN_ON(1);
1700#endif
1701}
1702
1703#ifdef CONFIG_PREEMPT_RT
1704#define ww_mutex_base_lock(b) rt_mutex_lock(b)
1705#define ww_mutex_base_trylock(b) rt_mutex_trylock(b)
1706#define ww_mutex_base_lock_nest_lock(b, b2) rt_mutex_lock_nest_lock(b, b2)
1707#define ww_mutex_base_lock_interruptible(b) rt_mutex_lock_interruptible(b)
1708#define ww_mutex_base_lock_killable(b) rt_mutex_lock_killable(b)
1709#define ww_mutex_base_unlock(b) rt_mutex_unlock(b)
1710#else
1711#define ww_mutex_base_lock(b) mutex_lock(b)
1712#define ww_mutex_base_trylock(b) mutex_trylock(b)
1713#define ww_mutex_base_lock_nest_lock(b, b2) mutex_lock_nest_lock(b, b2)
1714#define ww_mutex_base_lock_interruptible(b) mutex_lock_interruptible(b)
1715#define ww_mutex_base_lock_killable(b) mutex_lock_killable(b)
1716#define ww_mutex_base_unlock(b) mutex_unlock(b)
1717#endif
1718
1719static void ww_test_normal(void)
1720{
1721 int ret;
1722
1723 /*
1724 * None of the ww_mutex codepaths should be taken in the 'normal'
1725 * mutex calls. The easiest way to verify this is by using the
1726 * normal mutex calls, and making sure o.ctx is unmodified.
1727 */
1728
1729 /* mutex_lock (and indirectly, mutex_lock_nested) */
1730 o.ctx = (void *)~0UL;
1731 ww_mutex_base_lock(&o.base);
1732 ww_mutex_base_unlock(&o.base);
1733 WARN_ON(o.ctx != (void *)~0UL);
1734
1735 /* mutex_lock_interruptible (and *_nested) */
1736 o.ctx = (void *)~0UL;
1737 ret = ww_mutex_base_lock_interruptible(&o.base);
1738 if (!ret)
1739 ww_mutex_base_unlock(&o.base);
1740 else
1741 WARN_ON(1);
1742 WARN_ON(o.ctx != (void *)~0UL);
1743
1744 /* mutex_lock_killable (and *_nested) */
1745 o.ctx = (void *)~0UL;
1746 ret = ww_mutex_base_lock_killable(&o.base);
1747 if (!ret)
1748 ww_mutex_base_unlock(&o.base);
1749 else
1750 WARN_ON(1);
1751 WARN_ON(o.ctx != (void *)~0UL);
1752
1753 /* trylock, succeeding */
1754 o.ctx = (void *)~0UL;
1755 ret = ww_mutex_base_trylock(&o.base);
1756 WARN_ON(!ret);
1757 if (ret)
1758 ww_mutex_base_unlock(&o.base);
1759 else
1760 WARN_ON(1);
1761 WARN_ON(o.ctx != (void *)~0UL);
1762
1763 /* trylock, failing */
1764 o.ctx = (void *)~0UL;
1765 ww_mutex_base_lock(&o.base);
1766 ret = ww_mutex_base_trylock(&o.base);
1767 WARN_ON(ret);
1768 ww_mutex_base_unlock(&o.base);
1769 WARN_ON(o.ctx != (void *)~0UL);
1770
1771 WWAI(&t);
1772
1773 /* nest_lock */
1774 o.ctx = (void *)~0UL;
1775 ww_mutex_base_lock_nest_lock(&o.base, &t);
1776 ww_mutex_base_unlock(&o.base);
1777 WARN_ON(o.ctx != (void *)~0UL);
1778}
1779
1780static void ww_test_two_contexts(void)
1781{
1782 WWAI(&t);
1783 WWAI(&t2);
1784}
1785
1786static void ww_test_diff_class(void)
1787{
1788 WWAI(&t);
1789#ifdef DEBUG_WW_MUTEXES
1790 t.ww_class = NULL;
1791#endif
1792 WWL(&o, &t);
1793}
1794
1795static void ww_test_context_done_twice(void)
1796{
1797 WWAI(&t);
1798 WWAD(&t);
1799 WWAD(&t);
1800 WWAF(&t);
1801}
1802
1803static void ww_test_context_unlock_twice(void)
1804{
1805 WWAI(&t);
1806 WWAD(&t);
1807 WWAF(&t);
1808 WWAF(&t);
1809}
1810
1811static void ww_test_context_fini_early(void)
1812{
1813 WWAI(&t);
1814 WWL(&o, &t);
1815 WWAD(&t);
1816 WWAF(&t);
1817}
1818
1819static void ww_test_context_lock_after_done(void)
1820{
1821 WWAI(&t);
1822 WWAD(&t);
1823 WWL(&o, &t);
1824}
1825
1826static void ww_test_object_unlock_twice(void)
1827{
1828 WWL1(&o);
1829 WWU(&o);
1830 WWU(&o);
1831}
1832
1833static void ww_test_object_lock_unbalanced(void)
1834{
1835 WWAI(&t);
1836 WWL(&o, &t);
1837 t.acquired = 0;
1838 WWU(&o);
1839 WWAF(&t);
1840}
1841
1842static void ww_test_object_lock_stale_context(void)
1843{
1844 WWAI(&t);
1845 o.ctx = &t2;
1846 WWL(&o, &t);
1847}
1848
1849static void ww_test_edeadlk_normal(void)
1850{
1851 int ret;
1852
1853 ww_mutex_base_lock(&o2.base);
1854 o2.ctx = &t2;
1855 mutex_release(&o2.base.dep_map, _THIS_IP_);
1856
1857 WWAI(&t);
1858 t2 = t;
1859 t2.stamp--;
1860
1861 ret = WWL(&o, &t);
1862 WARN_ON(ret);
1863
1864 ret = WWL(&o2, &t);
1865 WARN_ON(ret != -EDEADLK);
1866
1867 o2.ctx = NULL;
1868 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1869 ww_mutex_base_unlock(&o2.base);
1870 WWU(&o);
1871
1872 WWL(&o2, &t);
1873}
1874
1875static void ww_test_edeadlk_normal_slow(void)
1876{
1877 int ret;
1878
1879 ww_mutex_base_lock(&o2.base);
1880 mutex_release(&o2.base.dep_map, _THIS_IP_);
1881 o2.ctx = &t2;
1882
1883 WWAI(&t);
1884 t2 = t;
1885 t2.stamp--;
1886
1887 ret = WWL(&o, &t);
1888 WARN_ON(ret);
1889
1890 ret = WWL(&o2, &t);
1891 WARN_ON(ret != -EDEADLK);
1892
1893 o2.ctx = NULL;
1894 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1895 ww_mutex_base_unlock(&o2.base);
1896 WWU(&o);
1897
1898 ww_mutex_lock_slow(&o2, &t);
1899}
1900
1901static void ww_test_edeadlk_no_unlock(void)
1902{
1903 int ret;
1904
1905 ww_mutex_base_lock(&o2.base);
1906 o2.ctx = &t2;
1907 mutex_release(&o2.base.dep_map, _THIS_IP_);
1908
1909 WWAI(&t);
1910 t2 = t;
1911 t2.stamp--;
1912
1913 ret = WWL(&o, &t);
1914 WARN_ON(ret);
1915
1916 ret = WWL(&o2, &t);
1917 WARN_ON(ret != -EDEADLK);
1918
1919 o2.ctx = NULL;
1920 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1921 ww_mutex_base_unlock(&o2.base);
1922
1923 WWL(&o2, &t);
1924}
1925
1926static void ww_test_edeadlk_no_unlock_slow(void)
1927{
1928 int ret;
1929
1930 ww_mutex_base_lock(&o2.base);
1931 mutex_release(&o2.base.dep_map, _THIS_IP_);
1932 o2.ctx = &t2;
1933
1934 WWAI(&t);
1935 t2 = t;
1936 t2.stamp--;
1937
1938 ret = WWL(&o, &t);
1939 WARN_ON(ret);
1940
1941 ret = WWL(&o2, &t);
1942 WARN_ON(ret != -EDEADLK);
1943
1944 o2.ctx = NULL;
1945 mutex_acquire(&o2.base.dep_map, 0, 1, _THIS_IP_);
1946 ww_mutex_base_unlock(&o2.base);
1947
1948 ww_mutex_lock_slow(&o2, &t);
1949}
1950
1951static void ww_test_edeadlk_acquire_more(void)
1952{
1953 int ret;
1954
1955 ww_mutex_base_lock(&o2.base);
1956 mutex_release(&o2.base.dep_map, _THIS_IP_);
1957 o2.ctx = &t2;
1958
1959 WWAI(&t);
1960 t2 = t;
1961 t2.stamp--;
1962
1963 ret = WWL(&o, &t);
1964 WARN_ON(ret);
1965
1966 ret = WWL(&o2, &t);
1967 WARN_ON(ret != -EDEADLK);
1968
1969 ret = WWL(&o3, &t);
1970}
1971
1972static void ww_test_edeadlk_acquire_more_slow(void)
1973{
1974 int ret;
1975
1976 ww_mutex_base_lock(&o2.base);
1977 mutex_release(&o2.base.dep_map, _THIS_IP_);
1978 o2.ctx = &t2;
1979
1980 WWAI(&t);
1981 t2 = t;
1982 t2.stamp--;
1983
1984 ret = WWL(&o, &t);
1985 WARN_ON(ret);
1986
1987 ret = WWL(&o2, &t);
1988 WARN_ON(ret != -EDEADLK);
1989
1990 ww_mutex_lock_slow(&o3, &t);
1991}
1992
1993static void ww_test_edeadlk_acquire_more_edeadlk(void)
1994{
1995 int ret;
1996
1997 ww_mutex_base_lock(&o2.base);
1998 mutex_release(&o2.base.dep_map, _THIS_IP_);
1999 o2.ctx = &t2;
2000
2001 ww_mutex_base_lock(&o3.base);
2002 mutex_release(&o3.base.dep_map, _THIS_IP_);
2003 o3.ctx = &t2;
2004
2005 WWAI(&t);
2006 t2 = t;
2007 t2.stamp--;
2008
2009 ret = WWL(&o, &t);
2010 WARN_ON(ret);
2011
2012 ret = WWL(&o2, &t);
2013 WARN_ON(ret != -EDEADLK);
2014
2015 ret = WWL(&o3, &t);
2016 WARN_ON(ret != -EDEADLK);
2017}
2018
2019static void ww_test_edeadlk_acquire_more_edeadlk_slow(void)
2020{
2021 int ret;
2022
2023 ww_mutex_base_lock(&o2.base);
2024 mutex_release(&o2.base.dep_map, _THIS_IP_);
2025 o2.ctx = &t2;
2026
2027 ww_mutex_base_lock(&o3.base);
2028 mutex_release(&o3.base.dep_map, _THIS_IP_);
2029 o3.ctx = &t2;
2030
2031 WWAI(&t);
2032 t2 = t;
2033 t2.stamp--;
2034
2035 ret = WWL(&o, &t);
2036 WARN_ON(ret);
2037
2038 ret = WWL(&o2, &t);
2039 WARN_ON(ret != -EDEADLK);
2040
2041 ww_mutex_lock_slow(&o3, &t);
2042}
2043
2044static void ww_test_edeadlk_acquire_wrong(void)
2045{
2046 int ret;
2047
2048 ww_mutex_base_lock(&o2.base);
2049 mutex_release(&o2.base.dep_map, _THIS_IP_);
2050 o2.ctx = &t2;
2051
2052 WWAI(&t);
2053 t2 = t;
2054 t2.stamp--;
2055
2056 ret = WWL(&o, &t);
2057 WARN_ON(ret);
2058
2059 ret = WWL(&o2, &t);
2060 WARN_ON(ret != -EDEADLK);
2061 if (!ret)
2062 WWU(&o2);
2063
2064 WWU(&o);
2065
2066 ret = WWL(&o3, &t);
2067}
2068
2069static void ww_test_edeadlk_acquire_wrong_slow(void)
2070{
2071 int ret;
2072
2073 ww_mutex_base_lock(&o2.base);
2074 mutex_release(&o2.base.dep_map, _THIS_IP_);
2075 o2.ctx = &t2;
2076
2077 WWAI(&t);
2078 t2 = t;
2079 t2.stamp--;
2080
2081 ret = WWL(&o, &t);
2082 WARN_ON(ret);
2083
2084 ret = WWL(&o2, &t);
2085 WARN_ON(ret != -EDEADLK);
2086 if (!ret)
2087 WWU(&o2);
2088
2089 WWU(&o);
2090
2091 ww_mutex_lock_slow(&o3, &t);
2092}
2093
2094static void ww_test_spin_nest_unlocked(void)
2095{
2096 spin_lock_nest_lock(&lock_A, &o.base);
2097 U(A);
2098}
2099
2100/* This is not a deadlock, because we have X1 to serialize Y1 and Y2 */
2101static void ww_test_spin_nest_lock(void)
2102{
2103 spin_lock(&lock_X1);
2104 spin_lock_nest_lock(&lock_Y1, &lock_X1);
2105 spin_lock(&lock_A);
2106 spin_lock_nest_lock(&lock_Y2, &lock_X1);
2107 spin_unlock(&lock_A);
2108 spin_unlock(&lock_Y2);
2109 spin_unlock(&lock_Y1);
2110 spin_unlock(&lock_X1);
2111}
2112
2113static void ww_test_unneeded_slow(void)
2114{
2115 WWAI(&t);
2116
2117 ww_mutex_lock_slow(&o, &t);
2118}
2119
2120static void ww_test_context_block(void)
2121{
2122 int ret;
2123
2124 WWAI(&t);
2125
2126 ret = WWL(&o, &t);
2127 WARN_ON(ret);
2128 WWL1(&o2);
2129}
2130
2131static void ww_test_context_try(void)
2132{
2133 int ret;
2134
2135 WWAI(&t);
2136
2137 ret = WWL(&o, &t);
2138 WARN_ON(ret);
2139
2140 ret = WWT(&o2);
2141 WARN_ON(!ret);
2142 WWU(&o2);
2143 WWU(&o);
2144}
2145
2146static void ww_test_context_context(void)
2147{
2148 int ret;
2149
2150 WWAI(&t);
2151
2152 ret = WWL(&o, &t);
2153 WARN_ON(ret);
2154
2155 ret = WWL(&o2, &t);
2156 WARN_ON(ret);
2157
2158 WWU(&o2);
2159 WWU(&o);
2160}
2161
2162static void ww_test_try_block(void)
2163{
2164 bool ret;
2165
2166 ret = WWT(&o);
2167 WARN_ON(!ret);
2168
2169 WWL1(&o2);
2170 WWU(&o2);
2171 WWU(&o);
2172}
2173
2174static void ww_test_try_try(void)
2175{
2176 bool ret;
2177
2178 ret = WWT(&o);
2179 WARN_ON(!ret);
2180 ret = WWT(&o2);
2181 WARN_ON(!ret);
2182 WWU(&o2);
2183 WWU(&o);
2184}
2185
2186static void ww_test_try_context(void)
2187{
2188 int ret;
2189
2190 ret = WWT(&o);
2191 WARN_ON(!ret);
2192
2193 WWAI(&t);
2194
2195 ret = WWL(&o2, &t);
2196 WARN_ON(ret);
2197}
2198
2199static void ww_test_block_block(void)
2200{
2201 WWL1(&o);
2202 WWL1(&o2);
2203}
2204
2205static void ww_test_block_try(void)
2206{
2207 bool ret;
2208
2209 WWL1(&o);
2210 ret = WWT(&o2);
2211 WARN_ON(!ret);
2212}
2213
2214static void ww_test_block_context(void)
2215{
2216 int ret;
2217
2218 WWL1(&o);
2219 WWAI(&t);
2220
2221 ret = WWL(&o2, &t);
2222 WARN_ON(ret);
2223}
2224
2225static void ww_test_spin_block(void)
2226{
2227 L(A);
2228 U(A);
2229
2230 WWL1(&o);
2231 L(A);
2232 U(A);
2233 WWU(&o);
2234
2235 L(A);
2236 WWL1(&o);
2237 WWU(&o);
2238 U(A);
2239}
2240
2241static void ww_test_spin_try(void)
2242{
2243 bool ret;
2244
2245 L(A);
2246 U(A);
2247
2248 ret = WWT(&o);
2249 WARN_ON(!ret);
2250 L(A);
2251 U(A);
2252 WWU(&o);
2253
2254 L(A);
2255 ret = WWT(&o);
2256 WARN_ON(!ret);
2257 WWU(&o);
2258 U(A);
2259}
2260
2261static void ww_test_spin_context(void)
2262{
2263 int ret;
2264
2265 L(A);
2266 U(A);
2267
2268 WWAI(&t);
2269
2270 ret = WWL(&o, &t);
2271 WARN_ON(ret);
2272 L(A);
2273 U(A);
2274 WWU(&o);
2275
2276 L(A);
2277 ret = WWL(&o, &t);
2278 WARN_ON(ret);
2279 WWU(&o);
2280 U(A);
2281}
2282
2283static void ww_tests(void)
2284{
2285 printk(" --------------------------------------------------------------------------\n");
2286 printk(" | Wound/wait tests |\n");
2287 printk(" ---------------------\n");
2288
2289 print_testname("ww api failures");
2290 dotest(ww_test_fail_acquire, SUCCESS, LOCKTYPE_WW);
2291 dotest(ww_test_normal, SUCCESS, LOCKTYPE_WW);
2292 dotest(ww_test_unneeded_slow, FAILURE, LOCKTYPE_WW);
2293 pr_cont("\n");
2294
2295 print_testname("ww contexts mixing");
2296 dotest(ww_test_two_contexts, FAILURE, LOCKTYPE_WW);
2297 dotest(ww_test_diff_class, FAILURE, LOCKTYPE_WW);
2298 pr_cont("\n");
2299
2300 print_testname("finishing ww context");
2301 dotest(ww_test_context_done_twice, FAILURE, LOCKTYPE_WW);
2302 dotest(ww_test_context_unlock_twice, FAILURE, LOCKTYPE_WW);
2303 dotest(ww_test_context_fini_early, FAILURE, LOCKTYPE_WW);
2304 dotest(ww_test_context_lock_after_done, FAILURE, LOCKTYPE_WW);
2305 pr_cont("\n");
2306
2307 print_testname("locking mismatches");
2308 dotest(ww_test_object_unlock_twice, FAILURE, LOCKTYPE_WW);
2309 dotest(ww_test_object_lock_unbalanced, FAILURE, LOCKTYPE_WW);
2310 dotest(ww_test_object_lock_stale_context, FAILURE, LOCKTYPE_WW);
2311 pr_cont("\n");
2312
2313 print_testname("EDEADLK handling");
2314 dotest(ww_test_edeadlk_normal, SUCCESS, LOCKTYPE_WW);
2315 dotest(ww_test_edeadlk_normal_slow, SUCCESS, LOCKTYPE_WW);
2316 dotest(ww_test_edeadlk_no_unlock, FAILURE, LOCKTYPE_WW);
2317 dotest(ww_test_edeadlk_no_unlock_slow, FAILURE, LOCKTYPE_WW);
2318 dotest(ww_test_edeadlk_acquire_more, FAILURE, LOCKTYPE_WW);
2319 dotest(ww_test_edeadlk_acquire_more_slow, FAILURE, LOCKTYPE_WW);
2320 dotest(ww_test_edeadlk_acquire_more_edeadlk, FAILURE, LOCKTYPE_WW);
2321 dotest(ww_test_edeadlk_acquire_more_edeadlk_slow, FAILURE, LOCKTYPE_WW);
2322 dotest(ww_test_edeadlk_acquire_wrong, FAILURE, LOCKTYPE_WW);
2323 dotest(ww_test_edeadlk_acquire_wrong_slow, FAILURE, LOCKTYPE_WW);
2324 pr_cont("\n");
2325
2326 print_testname("spinlock nest unlocked");
2327 dotest(ww_test_spin_nest_unlocked, FAILURE, LOCKTYPE_WW);
2328 pr_cont("\n");
2329
2330 print_testname("spinlock nest test");
2331 dotest(ww_test_spin_nest_lock, SUCCESS, LOCKTYPE_WW);
2332 pr_cont("\n");
2333
2334 printk(" -----------------------------------------------------\n");
2335 printk(" |block | try |context|\n");
2336 printk(" -----------------------------------------------------\n");
2337
2338 print_testname("context");
2339 dotest(ww_test_context_block, FAILURE, LOCKTYPE_WW);
2340 dotest(ww_test_context_try, SUCCESS, LOCKTYPE_WW);
2341 dotest(ww_test_context_context, SUCCESS, LOCKTYPE_WW);
2342 pr_cont("\n");
2343
2344 print_testname("try");
2345 dotest(ww_test_try_block, FAILURE, LOCKTYPE_WW);
2346 dotest(ww_test_try_try, SUCCESS, LOCKTYPE_WW);
2347 dotest(ww_test_try_context, FAILURE, LOCKTYPE_WW);
2348 pr_cont("\n");
2349
2350 print_testname("block");
2351 dotest(ww_test_block_block, FAILURE, LOCKTYPE_WW);
2352 dotest(ww_test_block_try, SUCCESS, LOCKTYPE_WW);
2353 dotest(ww_test_block_context, FAILURE, LOCKTYPE_WW);
2354 pr_cont("\n");
2355
2356 print_testname("spinlock");
2357 dotest(ww_test_spin_block, FAILURE, LOCKTYPE_WW);
2358 dotest(ww_test_spin_try, SUCCESS, LOCKTYPE_WW);
2359 dotest(ww_test_spin_context, FAILURE, LOCKTYPE_WW);
2360 pr_cont("\n");
2361}
2362
2363
2364/*
2365 * <in hardirq handler>
2366 * read_lock(&A);
2367 * <hardirq disable>
2368 * spin_lock(&B);
2369 * spin_lock(&B);
2370 * read_lock(&A);
2371 *
2372 * is a deadlock.
2373 */
2374static void queued_read_lock_hardirq_RE_Er(void)
2375{
2376 HARDIRQ_ENTER();
2377 read_lock(&rwlock_A);
2378 LOCK(B);
2379 UNLOCK(B);
2380 read_unlock(&rwlock_A);
2381 HARDIRQ_EXIT();
2382
2383 HARDIRQ_DISABLE();
2384 LOCK(B);
2385 read_lock(&rwlock_A);
2386 read_unlock(&rwlock_A);
2387 UNLOCK(B);
2388 HARDIRQ_ENABLE();
2389}
2390
2391/*
2392 * <in hardirq handler>
2393 * spin_lock(&B);
2394 * <hardirq disable>
2395 * read_lock(&A);
2396 * read_lock(&A);
2397 * spin_lock(&B);
2398 *
2399 * is not a deadlock.
2400 */
2401static void queued_read_lock_hardirq_ER_rE(void)
2402{
2403 HARDIRQ_ENTER();
2404 LOCK(B);
2405 read_lock(&rwlock_A);
2406 read_unlock(&rwlock_A);
2407 UNLOCK(B);
2408 HARDIRQ_EXIT();
2409
2410 HARDIRQ_DISABLE();
2411 read_lock(&rwlock_A);
2412 LOCK(B);
2413 UNLOCK(B);
2414 read_unlock(&rwlock_A);
2415 HARDIRQ_ENABLE();
2416}
2417
2418/*
2419 * <hardirq disable>
2420 * spin_lock(&B);
2421 * read_lock(&A);
2422 * <in hardirq handler>
2423 * spin_lock(&B);
2424 * read_lock(&A);
2425 *
2426 * is a deadlock. Because the two read_lock()s are both non-recursive readers.
2427 */
2428static void queued_read_lock_hardirq_inversion(void)
2429{
2430
2431 HARDIRQ_ENTER();
2432 LOCK(B);
2433 UNLOCK(B);
2434 HARDIRQ_EXIT();
2435
2436 HARDIRQ_DISABLE();
2437 LOCK(B);
2438 read_lock(&rwlock_A);
2439 read_unlock(&rwlock_A);
2440 UNLOCK(B);
2441 HARDIRQ_ENABLE();
2442
2443 read_lock(&rwlock_A);
2444 read_unlock(&rwlock_A);
2445}
2446
2447static void queued_read_lock_tests(void)
2448{
2449 printk(" --------------------------------------------------------------------------\n");
2450 printk(" | queued read lock tests |\n");
2451 printk(" ---------------------------\n");
2452 print_testname("hardirq read-lock/lock-read");
2453 dotest(queued_read_lock_hardirq_RE_Er, FAILURE, LOCKTYPE_RWLOCK);
2454 pr_cont("\n");
2455
2456 print_testname("hardirq lock-read/read-lock");
2457 dotest(queued_read_lock_hardirq_ER_rE, SUCCESS, LOCKTYPE_RWLOCK);
2458 pr_cont("\n");
2459
2460 print_testname("hardirq inversion");
2461 dotest(queued_read_lock_hardirq_inversion, FAILURE, LOCKTYPE_RWLOCK);
2462 pr_cont("\n");
2463}
2464
2465static void fs_reclaim_correct_nesting(void)
2466{
2467 fs_reclaim_acquire(GFP_KERNEL);
2468 might_alloc(GFP_NOFS);
2469 fs_reclaim_release(GFP_KERNEL);
2470}
2471
2472static void fs_reclaim_wrong_nesting(void)
2473{
2474 fs_reclaim_acquire(GFP_KERNEL);
2475 might_alloc(GFP_KERNEL);
2476 fs_reclaim_release(GFP_KERNEL);
2477}
2478
2479static void fs_reclaim_protected_nesting(void)
2480{
2481 unsigned int flags;
2482
2483 fs_reclaim_acquire(GFP_KERNEL);
2484 flags = memalloc_nofs_save();
2485 might_alloc(GFP_KERNEL);
2486 memalloc_nofs_restore(flags);
2487 fs_reclaim_release(GFP_KERNEL);
2488}
2489
2490static void fs_reclaim_tests(void)
2491{
2492 printk(" --------------------\n");
2493 printk(" | fs_reclaim tests |\n");
2494 printk(" --------------------\n");
2495
2496 print_testname("correct nesting");
2497 dotest(fs_reclaim_correct_nesting, SUCCESS, 0);
2498 pr_cont("\n");
2499
2500 print_testname("wrong nesting");
2501 dotest(fs_reclaim_wrong_nesting, FAILURE, 0);
2502 pr_cont("\n");
2503
2504 print_testname("protected nesting");
2505 dotest(fs_reclaim_protected_nesting, SUCCESS, 0);
2506 pr_cont("\n");
2507}
2508
2509/* Defines guard classes to create contexts */
2510DEFINE_LOCK_GUARD_0(HARDIRQ, HARDIRQ_ENTER(), HARDIRQ_EXIT())
2511DEFINE_LOCK_GUARD_0(NOTTHREADED_HARDIRQ,
2512 do {
2513 local_irq_disable();
2514 __irq_enter();
2515 WARN_ON(!in_irq());
2516 } while(0), HARDIRQ_EXIT())
2517DEFINE_LOCK_GUARD_0(SOFTIRQ, SOFTIRQ_ENTER(), SOFTIRQ_EXIT())
2518
2519/* Define RCU guards, should go away when RCU has its own guard definitions */
2520DEFINE_LOCK_GUARD_0(RCU, rcu_read_lock(), rcu_read_unlock())
2521DEFINE_LOCK_GUARD_0(RCU_BH, rcu_read_lock_bh(), rcu_read_unlock_bh())
2522DEFINE_LOCK_GUARD_0(RCU_SCHED, rcu_read_lock_sched(), rcu_read_unlock_sched())
2523
2524
2525#define GENERATE_2_CONTEXT_TESTCASE(outer, outer_lock, inner, inner_lock) \
2526 \
2527static void __maybe_unused inner##_in_##outer(void) \
2528{ \
2529 /* Relies the reversed clean-up ordering: inner first */ \
2530 guard(outer)(outer_lock); \
2531 guard(inner)(inner_lock); \
2532}
2533
2534/*
2535 * wait contexts (considering PREEMPT_RT)
2536 *
2537 * o: inner is allowed in outer
2538 * x: inner is disallowed in outer
2539 *
2540 * \ inner | RCU | RAW_SPIN | SPIN | MUTEX
2541 * outer \ | | | |
2542 * ---------------+-------+----------+------+-------
2543 * HARDIRQ | o | o | o | x
2544 * ---------------+-------+----------+------+-------
2545 * NOTTHREADED_IRQ| o | o | x | x
2546 * ---------------+-------+----------+------+-------
2547 * SOFTIRQ | o | o | o | x
2548 * ---------------+-------+----------+------+-------
2549 * RCU | o | o | o | x
2550 * ---------------+-------+----------+------+-------
2551 * RCU_BH | o | o | o | x
2552 * ---------------+-------+----------+------+-------
2553 * RCU_SCHED | o | o | x | x
2554 * ---------------+-------+----------+------+-------
2555 * RAW_SPIN | o | o | x | x
2556 * ---------------+-------+----------+------+-------
2557 * SPIN | o | o | o | x
2558 * ---------------+-------+----------+------+-------
2559 * MUTEX | o | o | o | o
2560 * ---------------+-------+----------+------+-------
2561 */
2562
2563#define GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(inner, inner_lock) \
2564GENERATE_2_CONTEXT_TESTCASE(HARDIRQ, , inner, inner_lock) \
2565GENERATE_2_CONTEXT_TESTCASE(NOTTHREADED_HARDIRQ, , inner, inner_lock) \
2566GENERATE_2_CONTEXT_TESTCASE(SOFTIRQ, , inner, inner_lock) \
2567GENERATE_2_CONTEXT_TESTCASE(RCU, , inner, inner_lock) \
2568GENERATE_2_CONTEXT_TESTCASE(RCU_BH, , inner, inner_lock) \
2569GENERATE_2_CONTEXT_TESTCASE(RCU_SCHED, , inner, inner_lock) \
2570GENERATE_2_CONTEXT_TESTCASE(raw_spinlock, &raw_lock_A, inner, inner_lock) \
2571GENERATE_2_CONTEXT_TESTCASE(spinlock, &lock_A, inner, inner_lock) \
2572GENERATE_2_CONTEXT_TESTCASE(mutex, &mutex_A, inner, inner_lock)
2573
2574GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(RCU, )
2575GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(raw_spinlock, &raw_lock_B)
2576GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(spinlock, &lock_B)
2577GENERATE_2_CONTEXT_TESTCASE_FOR_ALL_OUTER(mutex, &mutex_B)
2578
2579/* the outer context allows all kinds of preemption */
2580#define DO_CONTEXT_TESTCASE_OUTER_PREEMPTIBLE(outer) \
2581 dotest(RCU_in_##outer, SUCCESS, LOCKTYPE_RWLOCK); \
2582 dotest(raw_spinlock_in_##outer, SUCCESS, LOCKTYPE_SPIN); \
2583 dotest(spinlock_in_##outer, SUCCESS, LOCKTYPE_SPIN); \
2584 dotest(mutex_in_##outer, SUCCESS, LOCKTYPE_MUTEX); \
2585
2586/*
2587 * the outer context only allows the preemption introduced by spinlock_t (which
2588 * is a sleepable lock for PREEMPT_RT)
2589 */
2590#define DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(outer) \
2591 dotest(RCU_in_##outer, SUCCESS, LOCKTYPE_RWLOCK); \
2592 dotest(raw_spinlock_in_##outer, SUCCESS, LOCKTYPE_SPIN); \
2593 dotest(spinlock_in_##outer, SUCCESS, LOCKTYPE_SPIN); \
2594 dotest(mutex_in_##outer, FAILURE, LOCKTYPE_MUTEX); \
2595
2596/* the outer doesn't allows any kind of preemption */
2597#define DO_CONTEXT_TESTCASE_OUTER_NOT_PREEMPTIBLE(outer) \
2598 dotest(RCU_in_##outer, SUCCESS, LOCKTYPE_RWLOCK); \
2599 dotest(raw_spinlock_in_##outer, SUCCESS, LOCKTYPE_SPIN); \
2600 dotest(spinlock_in_##outer, FAILURE, LOCKTYPE_SPIN); \
2601 dotest(mutex_in_##outer, FAILURE, LOCKTYPE_MUTEX); \
2602
2603static void wait_context_tests(void)
2604{
2605 printk(" --------------------------------------------------------------------------\n");
2606 printk(" | wait context tests |\n");
2607 printk(" --------------------------------------------------------------------------\n");
2608 printk(" | rcu | raw | spin |mutex |\n");
2609 printk(" --------------------------------------------------------------------------\n");
2610 print_testname("in hardirq context");
2611 DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(HARDIRQ);
2612 pr_cont("\n");
2613
2614 print_testname("in hardirq context (not threaded)");
2615 DO_CONTEXT_TESTCASE_OUTER_NOT_PREEMPTIBLE(NOTTHREADED_HARDIRQ);
2616 pr_cont("\n");
2617
2618 print_testname("in softirq context");
2619 DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(SOFTIRQ);
2620 pr_cont("\n");
2621
2622 print_testname("in RCU context");
2623 DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(RCU);
2624 pr_cont("\n");
2625
2626 print_testname("in RCU-bh context");
2627 DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(RCU_BH);
2628 pr_cont("\n");
2629
2630 print_testname("in RCU-sched context");
2631 DO_CONTEXT_TESTCASE_OUTER_NOT_PREEMPTIBLE(RCU_SCHED);
2632 pr_cont("\n");
2633
2634 print_testname("in RAW_SPINLOCK context");
2635 DO_CONTEXT_TESTCASE_OUTER_NOT_PREEMPTIBLE(raw_spinlock);
2636 pr_cont("\n");
2637
2638 print_testname("in SPINLOCK context");
2639 DO_CONTEXT_TESTCASE_OUTER_LIMITED_PREEMPTIBLE(spinlock);
2640 pr_cont("\n");
2641
2642 print_testname("in MUTEX context");
2643 DO_CONTEXT_TESTCASE_OUTER_PREEMPTIBLE(mutex);
2644 pr_cont("\n");
2645}
2646
2647static void local_lock_2(void)
2648{
2649 local_lock(&local_A); /* IRQ-ON */
2650 local_unlock(&local_A);
2651
2652 HARDIRQ_ENTER();
2653 spin_lock(&lock_A); /* IN-IRQ */
2654 spin_unlock(&lock_A);
2655 HARDIRQ_EXIT()
2656
2657 HARDIRQ_DISABLE();
2658 spin_lock(&lock_A);
2659 local_lock(&local_A); /* IN-IRQ <-> IRQ-ON cycle, false */
2660 local_unlock(&local_A);
2661 spin_unlock(&lock_A);
2662 HARDIRQ_ENABLE();
2663}
2664
2665static void local_lock_3A(void)
2666{
2667 local_lock(&local_A); /* IRQ-ON */
2668 spin_lock(&lock_B); /* IRQ-ON */
2669 spin_unlock(&lock_B);
2670 local_unlock(&local_A);
2671
2672 HARDIRQ_ENTER();
2673 spin_lock(&lock_A); /* IN-IRQ */
2674 spin_unlock(&lock_A);
2675 HARDIRQ_EXIT()
2676
2677 HARDIRQ_DISABLE();
2678 spin_lock(&lock_A);
2679 local_lock(&local_A); /* IN-IRQ <-> IRQ-ON cycle only if we count local_lock(), false */
2680 local_unlock(&local_A);
2681 spin_unlock(&lock_A);
2682 HARDIRQ_ENABLE();
2683}
2684
2685static void local_lock_3B(void)
2686{
2687 local_lock(&local_A); /* IRQ-ON */
2688 spin_lock(&lock_B); /* IRQ-ON */
2689 spin_unlock(&lock_B);
2690 local_unlock(&local_A);
2691
2692 HARDIRQ_ENTER();
2693 spin_lock(&lock_A); /* IN-IRQ */
2694 spin_unlock(&lock_A);
2695 HARDIRQ_EXIT()
2696
2697 HARDIRQ_DISABLE();
2698 spin_lock(&lock_A);
2699 local_lock(&local_A); /* IN-IRQ <-> IRQ-ON cycle only if we count local_lock(), false */
2700 local_unlock(&local_A);
2701 spin_unlock(&lock_A);
2702 HARDIRQ_ENABLE();
2703
2704 HARDIRQ_DISABLE();
2705 spin_lock(&lock_A);
2706 spin_lock(&lock_B); /* IN-IRQ <-> IRQ-ON cycle, true */
2707 spin_unlock(&lock_B);
2708 spin_unlock(&lock_A);
2709 HARDIRQ_DISABLE();
2710
2711}
2712
2713#ifdef CONFIG_DEBUG_LOCK_ALLOC
2714static inline const char *rw_semaphore_lockdep_name(struct rw_semaphore *rwsem)
2715{
2716 return rwsem->dep_map.name;
2717}
2718#else
2719static inline const char *rw_semaphore_lockdep_name(struct rw_semaphore *rwsem)
2720{
2721 return NULL;
2722}
2723#endif
2724
2725static void test_lockdep_set_subclass_name(void)
2726{
2727 const char *name_before = rw_semaphore_lockdep_name(&rwsem_X1);
2728 const char *name_after;
2729
2730 lockdep_set_subclass(&rwsem_X1, 1);
2731 name_after = rw_semaphore_lockdep_name(&rwsem_X1);
2732 DEBUG_LOCKS_WARN_ON(name_before != name_after);
2733}
2734
2735/*
2736 * lockdep_set_subclass() should reuse the existing lock class name instead
2737 * of creating a new one.
2738 */
2739static void lockdep_set_subclass_name_test(void)
2740{
2741 printk(" --------------------------------------------------------------------------\n");
2742 printk(" | lockdep_set_subclass() name test|\n");
2743 printk(" -----------------------------------\n");
2744
2745 print_testname("compare name before and after");
2746 dotest(test_lockdep_set_subclass_name, SUCCESS, LOCKTYPE_RWSEM);
2747 pr_cont("\n");
2748}
2749
2750static void local_lock_tests(void)
2751{
2752 printk(" --------------------------------------------------------------------------\n");
2753 printk(" | local_lock tests |\n");
2754 printk(" ---------------------\n");
2755
2756 print_testname("local_lock inversion 2");
2757 dotest(local_lock_2, SUCCESS, LOCKTYPE_LL);
2758 pr_cont("\n");
2759
2760 print_testname("local_lock inversion 3A");
2761 dotest(local_lock_3A, SUCCESS, LOCKTYPE_LL);
2762 pr_cont("\n");
2763
2764 print_testname("local_lock inversion 3B");
2765 dotest(local_lock_3B, FAILURE, LOCKTYPE_LL);
2766 pr_cont("\n");
2767}
2768
2769static void hardirq_deadlock_softirq_not_deadlock(void)
2770{
2771 /* mutex_A is hardirq-unsafe and softirq-unsafe */
2772 /* mutex_A -> lock_C */
2773 mutex_lock(&mutex_A);
2774 HARDIRQ_DISABLE();
2775 spin_lock(&lock_C);
2776 spin_unlock(&lock_C);
2777 HARDIRQ_ENABLE();
2778 mutex_unlock(&mutex_A);
2779
2780 /* lock_A is hardirq-safe */
2781 HARDIRQ_ENTER();
2782 spin_lock(&lock_A);
2783 spin_unlock(&lock_A);
2784 HARDIRQ_EXIT();
2785
2786 /* lock_A -> lock_B */
2787 HARDIRQ_DISABLE();
2788 spin_lock(&lock_A);
2789 spin_lock(&lock_B);
2790 spin_unlock(&lock_B);
2791 spin_unlock(&lock_A);
2792 HARDIRQ_ENABLE();
2793
2794 /* lock_B -> lock_C */
2795 HARDIRQ_DISABLE();
2796 spin_lock(&lock_B);
2797 spin_lock(&lock_C);
2798 spin_unlock(&lock_C);
2799 spin_unlock(&lock_B);
2800 HARDIRQ_ENABLE();
2801
2802 /* lock_D is softirq-safe */
2803 SOFTIRQ_ENTER();
2804 spin_lock(&lock_D);
2805 spin_unlock(&lock_D);
2806 SOFTIRQ_EXIT();
2807
2808 /* And lock_D is hardirq-unsafe */
2809 SOFTIRQ_DISABLE();
2810 spin_lock(&lock_D);
2811 spin_unlock(&lock_D);
2812 SOFTIRQ_ENABLE();
2813
2814 /*
2815 * mutex_A -> lock_C -> lock_D is softirq-unsafe -> softirq-safe, not
2816 * deadlock.
2817 *
2818 * lock_A -> lock_B -> lock_C -> lock_D is hardirq-safe ->
2819 * hardirq-unsafe, deadlock.
2820 */
2821 HARDIRQ_DISABLE();
2822 spin_lock(&lock_C);
2823 spin_lock(&lock_D);
2824 spin_unlock(&lock_D);
2825 spin_unlock(&lock_C);
2826 HARDIRQ_ENABLE();
2827}
2828
2829void locking_selftest(void)
2830{
2831 /*
2832 * Got a locking failure before the selftest ran?
2833 */
2834 if (!debug_locks) {
2835 printk("----------------------------------\n");
2836 printk("| Locking API testsuite disabled |\n");
2837 printk("----------------------------------\n");
2838 return;
2839 }
2840
2841 /*
2842 * treats read_lock() as recursive read locks for testing purpose
2843 */
2844 force_read_lock_recursive = 1;
2845
2846 /*
2847 * Run the testsuite:
2848 */
2849 printk("------------------------\n");
2850 printk("| Locking API testsuite:\n");
2851 printk("----------------------------------------------------------------------------\n");
2852 printk(" | spin |wlock |rlock |mutex | wsem | rsem |rtmutex\n");
2853 printk(" --------------------------------------------------------------------------\n");
2854
2855 init_shared_classes();
2856 lockdep_set_selftest_task(current);
2857
2858 DO_TESTCASE_6R("A-A deadlock", AA);
2859 DO_TESTCASE_6R("A-B-B-A deadlock", ABBA);
2860 DO_TESTCASE_6R("A-B-B-C-C-A deadlock", ABBCCA);
2861 DO_TESTCASE_6R("A-B-C-A-B-C deadlock", ABCABC);
2862 DO_TESTCASE_6R("A-B-B-C-C-D-D-A deadlock", ABBCCDDA);
2863 DO_TESTCASE_6R("A-B-C-D-B-D-D-A deadlock", ABCDBDDA);
2864 DO_TESTCASE_6R("A-B-C-D-B-C-D-A deadlock", ABCDBCDA);
2865 DO_TESTCASE_6("double unlock", double_unlock);
2866 DO_TESTCASE_6("initialize held", init_held);
2867
2868 printk(" --------------------------------------------------------------------------\n");
2869 print_testname("recursive read-lock");
2870 pr_cont(" |");
2871 dotest(rlock_AA1, SUCCESS, LOCKTYPE_RWLOCK);
2872 pr_cont(" |");
2873 dotest(rsem_AA1, FAILURE, LOCKTYPE_RWSEM);
2874 pr_cont("\n");
2875
2876 print_testname("recursive read-lock #2");
2877 pr_cont(" |");
2878 dotest(rlock_AA1B, SUCCESS, LOCKTYPE_RWLOCK);
2879 pr_cont(" |");
2880 dotest(rsem_AA1B, FAILURE, LOCKTYPE_RWSEM);
2881 pr_cont("\n");
2882
2883 print_testname("mixed read-write-lock");
2884 pr_cont(" |");
2885 dotest(rlock_AA2, FAILURE, LOCKTYPE_RWLOCK);
2886 pr_cont(" |");
2887 dotest(rsem_AA2, FAILURE, LOCKTYPE_RWSEM);
2888 pr_cont("\n");
2889
2890 print_testname("mixed write-read-lock");
2891 pr_cont(" |");
2892 dotest(rlock_AA3, FAILURE, LOCKTYPE_RWLOCK);
2893 pr_cont(" |");
2894 dotest(rsem_AA3, FAILURE, LOCKTYPE_RWSEM);
2895 pr_cont("\n");
2896
2897 print_testname("mixed read-lock/lock-write ABBA");
2898 pr_cont(" |");
2899 dotest(rlock_ABBA1, FAILURE, LOCKTYPE_RWLOCK);
2900 pr_cont(" |");
2901 dotest(rwsem_ABBA1, FAILURE, LOCKTYPE_RWSEM);
2902
2903 print_testname("mixed read-lock/lock-read ABBA");
2904 pr_cont(" |");
2905 dotest(rlock_ABBA2, SUCCESS, LOCKTYPE_RWLOCK);
2906 pr_cont(" |");
2907 dotest(rwsem_ABBA2, FAILURE, LOCKTYPE_RWSEM);
2908
2909 print_testname("mixed write-lock/lock-write ABBA");
2910 pr_cont(" |");
2911 dotest(rlock_ABBA3, FAILURE, LOCKTYPE_RWLOCK);
2912 pr_cont(" |");
2913 dotest(rwsem_ABBA3, FAILURE, LOCKTYPE_RWSEM);
2914
2915 print_testname("chain cached mixed R-L/L-W ABBA");
2916 pr_cont(" |");
2917 dotest(rlock_chaincache_ABBA1, FAILURE, LOCKTYPE_RWLOCK);
2918
2919 DO_TESTCASE_6x1RRB("rlock W1R2/W2R3/W3R1", W1R2_W2R3_W3R1);
2920 DO_TESTCASE_6x1RRB("rlock W1W2/R2R3/W3R1", W1W2_R2R3_W3R1);
2921 DO_TESTCASE_6x1RR("rlock W1W2/R2R3/R3W1", W1W2_R2R3_R3W1);
2922 DO_TESTCASE_6x1RR("rlock W1R2/R2R3/W3W1", W1R2_R2R3_W3W1);
2923
2924 printk(" --------------------------------------------------------------------------\n");
2925 /*
2926 * irq-context testcases:
2927 */
2928 DO_TESTCASE_2x6("irqs-on + irq-safe-A", irqsafe1);
2929 NON_RT(DO_TESTCASE_2x3("sirq-safe-A => hirqs-on", irqsafe2A));
2930 DO_TESTCASE_2x6("safe-A + irqs-on", irqsafe2B);
2931 DO_TESTCASE_6x6("safe-A + unsafe-B #1", irqsafe3);
2932 DO_TESTCASE_6x6("safe-A + unsafe-B #2", irqsafe4);
2933 DO_TESTCASE_6x6RW("irq lock-inversion", irq_inversion);
2934
2935 DO_TESTCASE_6x2x2RW("irq read-recursion", irq_read_recursion);
2936 DO_TESTCASE_6x2x2RW("irq read-recursion #2", irq_read_recursion2);
2937 DO_TESTCASE_6x2x2RW("irq read-recursion #3", irq_read_recursion3);
2938
2939 ww_tests();
2940
2941 force_read_lock_recursive = 0;
2942 /*
2943 * queued_read_lock() specific test cases can be put here
2944 */
2945 if (IS_ENABLED(CONFIG_QUEUED_RWLOCKS))
2946 queued_read_lock_tests();
2947
2948 fs_reclaim_tests();
2949
2950 /* Wait context test cases that are specific for RAW_LOCK_NESTING */
2951 if (IS_ENABLED(CONFIG_PROVE_RAW_LOCK_NESTING))
2952 wait_context_tests();
2953
2954 local_lock_tests();
2955
2956 print_testname("hardirq_unsafe_softirq_safe");
2957 dotest(hardirq_deadlock_softirq_not_deadlock, FAILURE, LOCKTYPE_SPECIAL);
2958 pr_cont("\n");
2959
2960 lockdep_set_subclass_name_test();
2961
2962 if (unexpected_testcase_failures) {
2963 printk("-----------------------------------------------------------------\n");
2964 debug_locks = 0;
2965 printk("BUG: %3d unexpected failures (out of %3d) - debugging disabled! |\n",
2966 unexpected_testcase_failures, testcase_total);
2967 printk("-----------------------------------------------------------------\n");
2968 } else if (expected_testcase_failures && testcase_successes) {
2969 printk("--------------------------------------------------------\n");
2970 printk("%3d out of %3d testcases failed, as expected. |\n",
2971 expected_testcase_failures, testcase_total);
2972 printk("----------------------------------------------------\n");
2973 debug_locks = 1;
2974 } else if (expected_testcase_failures && !testcase_successes) {
2975 printk("--------------------------------------------------------\n");
2976 printk("All %3d testcases failed, as expected. |\n",
2977 expected_testcase_failures);
2978 printk("----------------------------------------\n");
2979 debug_locks = 1;
2980 } else {
2981 printk("-------------------------------------------------------\n");
2982 printk("Good, all %3d testcases passed! |\n",
2983 testcase_successes);
2984 printk("---------------------------------\n");
2985 debug_locks = 1;
2986 }
2987 lockdep_set_selftest_task(NULL);
2988 debug_locks_silent = 0;
2989}