blob: b05dc46c4297638bdd0c757f274323a4d9ed8639 [file] [log] [blame]
Paul E. McKenney0af3fe12014-02-04 15:51:41 -08001/*
2 * Module-based torture test facility for locking
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, you can access it online at
16 * http://www.gnu.org/licenses/gpl-2.0.html.
17 *
18 * Copyright (C) IBM Corporation, 2014
19 *
20 * Author: Paul E. McKenney <paulmck@us.ibm.com>
21 * Based on kernel/rcu/torture.c.
22 */
23#include <linux/types.h>
24#include <linux/kernel.h>
25#include <linux/init.h>
26#include <linux/module.h>
27#include <linux/kthread.h>
28#include <linux/err.h>
29#include <linux/spinlock.h>
Davidlohr Buesoe34191f2014-09-29 06:14:23 -070030#include <linux/rwlock.h>
Davidlohr Bueso42ddc752014-09-11 20:40:18 -070031#include <linux/mutex.h>
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080032#include <linux/smp.h>
33#include <linux/interrupt.h>
34#include <linux/sched.h>
35#include <linux/atomic.h>
36#include <linux/bitops.h>
37#include <linux/completion.h>
38#include <linux/moduleparam.h>
39#include <linux/percpu.h>
40#include <linux/notifier.h>
41#include <linux/reboot.h>
42#include <linux/freezer.h>
43#include <linux/cpu.h>
44#include <linux/delay.h>
45#include <linux/stat.h>
46#include <linux/slab.h>
47#include <linux/trace_clock.h>
48#include <asm/byteorder.h>
49#include <linux/torture.h>
50
51MODULE_LICENSE("GPL");
52MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com>");
53
54torture_param(int, nwriters_stress, -1,
55 "Number of write-locking stress-test threads");
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -070056torture_param(int, nreaders_stress, -1,
57 "Number of read-locking stress-test threads");
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080058torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
59torture_param(int, onoff_interval, 0,
60 "Time between CPU hotplugs (s), 0=disable");
61torture_param(int, shuffle_interval, 3,
62 "Number of jiffies between shuffles, 0=disable");
63torture_param(int, shutdown_secs, 0, "Shutdown time (j), <= zero to disable.");
64torture_param(int, stat_interval, 60,
65 "Number of seconds between stats printk()s");
66torture_param(int, stutter, 5, "Number of jiffies to run/halt test, 0=disable");
67torture_param(bool, verbose, true,
68 "Enable verbose debugging printk()s");
69
70static char *torture_type = "spin_lock";
71module_param(torture_type, charp, 0444);
72MODULE_PARM_DESC(torture_type,
Davidlohr Bueso42ddc752014-09-11 20:40:18 -070073 "Type of lock to torture (spin_lock, spin_lock_irq, mutex_lock, ...)");
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080074
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080075static struct task_struct *stats_task;
76static struct task_struct **writer_tasks;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -070077static struct task_struct **reader_tasks;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080078
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080079static bool lock_is_write_held;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -070080static bool lock_is_read_held;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080081
Davidlohr Bueso1e6757a2014-09-11 20:40:20 -070082struct lock_stress_stats {
83 long n_lock_fail;
84 long n_lock_acquired;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080085};
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080086
Paul E. McKenneyd065eac2014-04-04 17:17:35 -070087#if defined(MODULE)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080088#define LOCKTORTURE_RUNNABLE_INIT 1
89#else
90#define LOCKTORTURE_RUNNABLE_INIT 0
91#endif
Davidlohr Bueso23a8e5c2014-09-11 20:40:16 -070092int torture_runnable = LOCKTORTURE_RUNNABLE_INIT;
93module_param(torture_runnable, int, 0444);
94MODULE_PARM_DESC(torture_runnable, "Start locktorture at module init");
Paul E. McKenney0af3fe12014-02-04 15:51:41 -080095
96/* Forward reference. */
97static void lock_torture_cleanup(void);
98
99/*
100 * Operations vector for selecting different types of tests.
101 */
102struct lock_torture_ops {
103 void (*init)(void);
104 int (*writelock)(void);
105 void (*write_delay)(struct torture_random_state *trsp);
106 void (*writeunlock)(void);
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700107 int (*readlock)(void);
108 void (*read_delay)(struct torture_random_state *trsp);
109 void (*readunlock)(void);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800110 unsigned long flags;
111 const char *name;
112};
113
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700114struct lock_torture_cxt {
115 int nrealwriters_stress;
116 int nrealreaders_stress;
117 bool debug_lock;
118 atomic_t n_lock_torture_errors;
119 struct lock_torture_ops *cur_ops;
120 struct lock_stress_stats *lwsa; /* writer statistics */
121 struct lock_stress_stats *lrsa; /* reader statistics */
122};
123static struct lock_torture_cxt cxt = { 0, 0, false,
124 ATOMIC_INIT(0),
125 NULL, NULL};
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800126/*
127 * Definitions for lock torture testing.
128 */
129
Paul E. McKenneye0864812014-02-11 08:05:07 -0800130static int torture_lock_busted_write_lock(void)
131{
132 return 0; /* BUGGY, do not use in real life!!! */
133}
134
135static void torture_lock_busted_write_delay(struct torture_random_state *trsp)
136{
137 const unsigned long longdelay_us = 100;
138
139 /* We want a long delay occasionally to force massive contention. */
140 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700141 (cxt.nrealwriters_stress * 2000 * longdelay_us)))
Paul E. McKenneye0864812014-02-11 08:05:07 -0800142 mdelay(longdelay_us);
143#ifdef CONFIG_PREEMPT
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700144 if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
Paul E. McKenneye0864812014-02-11 08:05:07 -0800145 preempt_schedule(); /* Allow test to be preempted. */
146#endif
147}
148
149static void torture_lock_busted_write_unlock(void)
150{
151 /* BUGGY, do not use in real life!!! */
152}
153
154static struct lock_torture_ops lock_busted_ops = {
155 .writelock = torture_lock_busted_write_lock,
156 .write_delay = torture_lock_busted_write_delay,
157 .writeunlock = torture_lock_busted_write_unlock,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700158 .readlock = NULL,
159 .read_delay = NULL,
160 .readunlock = NULL,
Paul E. McKenneye0864812014-02-11 08:05:07 -0800161 .name = "lock_busted"
162};
163
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800164static DEFINE_SPINLOCK(torture_spinlock);
165
166static int torture_spin_lock_write_lock(void) __acquires(torture_spinlock)
167{
168 spin_lock(&torture_spinlock);
169 return 0;
170}
171
172static void torture_spin_lock_write_delay(struct torture_random_state *trsp)
173{
174 const unsigned long shortdelay_us = 2;
175 const unsigned long longdelay_us = 100;
176
177 /* We want a short delay mostly to emulate likely code, and
178 * we want a long delay occasionally to force massive contention.
179 */
180 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700181 (cxt.nrealwriters_stress * 2000 * longdelay_us)))
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800182 mdelay(longdelay_us);
183 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700184 (cxt.nrealwriters_stress * 2 * shortdelay_us)))
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800185 udelay(shortdelay_us);
186#ifdef CONFIG_PREEMPT
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700187 if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800188 preempt_schedule(); /* Allow test to be preempted. */
189#endif
190}
191
192static void torture_spin_lock_write_unlock(void) __releases(torture_spinlock)
193{
194 spin_unlock(&torture_spinlock);
195}
196
197static struct lock_torture_ops spin_lock_ops = {
198 .writelock = torture_spin_lock_write_lock,
199 .write_delay = torture_spin_lock_write_delay,
200 .writeunlock = torture_spin_lock_write_unlock,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700201 .readlock = NULL,
202 .read_delay = NULL,
203 .readunlock = NULL,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800204 .name = "spin_lock"
205};
206
207static int torture_spin_lock_write_lock_irq(void)
Davidlohr Bueso219f8002014-09-29 06:14:24 -0700208__acquires(torture_spinlock)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800209{
210 unsigned long flags;
211
212 spin_lock_irqsave(&torture_spinlock, flags);
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700213 cxt.cur_ops->flags = flags;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800214 return 0;
215}
216
217static void torture_lock_spin_write_unlock_irq(void)
218__releases(torture_spinlock)
219{
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700220 spin_unlock_irqrestore(&torture_spinlock, cxt.cur_ops->flags);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800221}
222
223static struct lock_torture_ops spin_lock_irq_ops = {
224 .writelock = torture_spin_lock_write_lock_irq,
225 .write_delay = torture_spin_lock_write_delay,
226 .writeunlock = torture_lock_spin_write_unlock_irq,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700227 .readlock = NULL,
228 .read_delay = NULL,
229 .readunlock = NULL,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800230 .name = "spin_lock_irq"
231};
232
Davidlohr Buesoe34191f2014-09-29 06:14:23 -0700233static DEFINE_RWLOCK(torture_rwlock);
234
235static int torture_rwlock_write_lock(void) __acquires(torture_rwlock)
236{
237 write_lock(&torture_rwlock);
238 return 0;
239}
240
241static void torture_rwlock_write_delay(struct torture_random_state *trsp)
242{
243 const unsigned long shortdelay_us = 2;
244 const unsigned long longdelay_ms = 100;
245
246 /* We want a short delay mostly to emulate likely code, and
247 * we want a long delay occasionally to force massive contention.
248 */
249 if (!(torture_random(trsp) %
250 (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
251 mdelay(longdelay_ms);
252 else
253 udelay(shortdelay_us);
254}
255
256static void torture_rwlock_write_unlock(void) __releases(torture_rwlock)
257{
258 write_unlock(&torture_rwlock);
259}
260
261static int torture_rwlock_read_lock(void) __acquires(torture_rwlock)
262{
263 read_lock(&torture_rwlock);
264 return 0;
265}
266
267static void torture_rwlock_read_delay(struct torture_random_state *trsp)
268{
269 const unsigned long shortdelay_us = 10;
270 const unsigned long longdelay_ms = 100;
271
272 /* We want a short delay mostly to emulate likely code, and
273 * we want a long delay occasionally to force massive contention.
274 */
275 if (!(torture_random(trsp) %
276 (cxt.nrealreaders_stress * 2000 * longdelay_ms)))
277 mdelay(longdelay_ms);
278 else
279 udelay(shortdelay_us);
280}
281
282static void torture_rwlock_read_unlock(void) __releases(torture_rwlock)
283{
284 read_unlock(&torture_rwlock);
285}
286
287static struct lock_torture_ops rw_lock_ops = {
288 .writelock = torture_rwlock_write_lock,
289 .write_delay = torture_rwlock_write_delay,
290 .writeunlock = torture_rwlock_write_unlock,
291 .readlock = torture_rwlock_read_lock,
292 .read_delay = torture_rwlock_read_delay,
293 .readunlock = torture_rwlock_read_unlock,
294 .name = "rw_lock"
295};
296
297static int torture_rwlock_write_lock_irq(void) __acquires(torture_rwlock)
298{
299 unsigned long flags;
300
301 write_lock_irqsave(&torture_rwlock, flags);
302 cxt.cur_ops->flags = flags;
303 return 0;
304}
305
306static void torture_rwlock_write_unlock_irq(void)
307__releases(torture_rwlock)
308{
309 write_unlock_irqrestore(&torture_rwlock, cxt.cur_ops->flags);
310}
311
312static int torture_rwlock_read_lock_irq(void) __acquires(torture_rwlock)
313{
314 unsigned long flags;
315
316 read_lock_irqsave(&torture_rwlock, flags);
317 cxt.cur_ops->flags = flags;
318 return 0;
319}
320
321static void torture_rwlock_read_unlock_irq(void)
322__releases(torture_rwlock)
323{
324 write_unlock_irqrestore(&torture_rwlock, cxt.cur_ops->flags);
325}
326
327static struct lock_torture_ops rw_lock_irq_ops = {
328 .writelock = torture_rwlock_write_lock_irq,
329 .write_delay = torture_rwlock_write_delay,
330 .writeunlock = torture_rwlock_write_unlock_irq,
331 .readlock = torture_rwlock_read_lock_irq,
332 .read_delay = torture_rwlock_read_delay,
333 .readunlock = torture_rwlock_read_unlock_irq,
334 .name = "rw_lock_irq"
335};
336
Davidlohr Bueso42ddc752014-09-11 20:40:18 -0700337static DEFINE_MUTEX(torture_mutex);
338
339static int torture_mutex_lock(void) __acquires(torture_mutex)
340{
341 mutex_lock(&torture_mutex);
342 return 0;
343}
344
345static void torture_mutex_delay(struct torture_random_state *trsp)
346{
347 const unsigned long longdelay_ms = 100;
348
349 /* We want a long delay occasionally to force massive contention. */
350 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700351 (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
Davidlohr Bueso42ddc752014-09-11 20:40:18 -0700352 mdelay(longdelay_ms * 5);
353 else
354 mdelay(longdelay_ms / 5);
355#ifdef CONFIG_PREEMPT
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700356 if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
Davidlohr Bueso42ddc752014-09-11 20:40:18 -0700357 preempt_schedule(); /* Allow test to be preempted. */
358#endif
359}
360
361static void torture_mutex_unlock(void) __releases(torture_mutex)
362{
363 mutex_unlock(&torture_mutex);
364}
365
366static struct lock_torture_ops mutex_lock_ops = {
367 .writelock = torture_mutex_lock,
368 .write_delay = torture_mutex_delay,
369 .writeunlock = torture_mutex_unlock,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700370 .readlock = NULL,
371 .read_delay = NULL,
372 .readunlock = NULL,
Davidlohr Bueso42ddc752014-09-11 20:40:18 -0700373 .name = "mutex_lock"
374};
375
Davidlohr Bueso4a3b4272014-09-11 21:41:30 -0700376static DECLARE_RWSEM(torture_rwsem);
377static int torture_rwsem_down_write(void) __acquires(torture_rwsem)
378{
379 down_write(&torture_rwsem);
380 return 0;
381}
382
383static void torture_rwsem_write_delay(struct torture_random_state *trsp)
384{
385 const unsigned long longdelay_ms = 100;
386
387 /* We want a long delay occasionally to force massive contention. */
388 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700389 (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
Davidlohr Bueso4a3b4272014-09-11 21:41:30 -0700390 mdelay(longdelay_ms * 10);
391 else
392 mdelay(longdelay_ms / 10);
393#ifdef CONFIG_PREEMPT
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700394 if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
Davidlohr Bueso4a3b4272014-09-11 21:41:30 -0700395 preempt_schedule(); /* Allow test to be preempted. */
396#endif
397}
398
399static void torture_rwsem_up_write(void) __releases(torture_rwsem)
400{
401 up_write(&torture_rwsem);
402}
403
404static int torture_rwsem_down_read(void) __acquires(torture_rwsem)
405{
406 down_read(&torture_rwsem);
407 return 0;
408}
409
410static void torture_rwsem_read_delay(struct torture_random_state *trsp)
411{
412 const unsigned long longdelay_ms = 100;
413
414 /* We want a long delay occasionally to force massive contention. */
415 if (!(torture_random(trsp) %
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700416 (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
Davidlohr Bueso4a3b4272014-09-11 21:41:30 -0700417 mdelay(longdelay_ms * 2);
418 else
419 mdelay(longdelay_ms / 2);
420#ifdef CONFIG_PREEMPT
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700421 if (!(torture_random(trsp) % (cxt.nrealreaders_stress * 20000)))
Davidlohr Bueso4a3b4272014-09-11 21:41:30 -0700422 preempt_schedule(); /* Allow test to be preempted. */
423#endif
424}
425
426static void torture_rwsem_up_read(void) __releases(torture_rwsem)
427{
428 up_read(&torture_rwsem);
429}
430
431static struct lock_torture_ops rwsem_lock_ops = {
432 .writelock = torture_rwsem_down_write,
433 .write_delay = torture_rwsem_write_delay,
434 .writeunlock = torture_rwsem_up_write,
435 .readlock = torture_rwsem_down_read,
436 .read_delay = torture_rwsem_read_delay,
437 .readunlock = torture_rwsem_up_read,
438 .name = "rwsem_lock"
439};
440
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800441/*
442 * Lock torture writer kthread. Repeatedly acquires and releases
443 * the lock, checking for duplicate acquisitions.
444 */
445static int lock_torture_writer(void *arg)
446{
Davidlohr Bueso1e6757a2014-09-11 20:40:20 -0700447 struct lock_stress_stats *lwsp = arg;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800448 static DEFINE_TORTURE_RANDOM(rand);
449
450 VERBOSE_TOROUT_STRING("lock_torture_writer task started");
Dongsheng Yang8698a742014-03-11 18:09:12 +0800451 set_user_nice(current, MAX_NICE);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800452
453 do {
Paul E. McKenneyda601c62014-02-26 12:14:51 -0800454 if ((torture_random(&rand) & 0xfffff) == 0)
455 schedule_timeout_uninterruptible(1);
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700456
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700457 cxt.cur_ops->writelock();
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800458 if (WARN_ON_ONCE(lock_is_write_held))
Davidlohr Bueso1e6757a2014-09-11 20:40:20 -0700459 lwsp->n_lock_fail++;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800460 lock_is_write_held = 1;
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700461 if (WARN_ON_ONCE(lock_is_read_held))
462 lwsp->n_lock_fail++; /* rare, but... */
463
Davidlohr Bueso1e6757a2014-09-11 20:40:20 -0700464 lwsp->n_lock_acquired++;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700465 cxt.cur_ops->write_delay(&rand);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800466 lock_is_write_held = 0;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700467 cxt.cur_ops->writeunlock();
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700468
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800469 stutter_wait("lock_torture_writer");
470 } while (!torture_must_stop());
471 torture_kthread_stopping("lock_torture_writer");
472 return 0;
473}
474
475/*
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700476 * Lock torture reader kthread. Repeatedly acquires and releases
477 * the reader lock.
478 */
479static int lock_torture_reader(void *arg)
480{
481 struct lock_stress_stats *lrsp = arg;
482 static DEFINE_TORTURE_RANDOM(rand);
483
484 VERBOSE_TOROUT_STRING("lock_torture_reader task started");
485 set_user_nice(current, MAX_NICE);
486
487 do {
488 if ((torture_random(&rand) & 0xfffff) == 0)
489 schedule_timeout_uninterruptible(1);
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700490
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700491 cxt.cur_ops->readlock();
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700492 lock_is_read_held = 1;
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700493 if (WARN_ON_ONCE(lock_is_write_held))
494 lrsp->n_lock_fail++; /* rare, but... */
495
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700496 lrsp->n_lock_acquired++;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700497 cxt.cur_ops->read_delay(&rand);
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700498 lock_is_read_held = 0;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700499 cxt.cur_ops->readunlock();
Davidlohr Buesoa1229492014-09-29 06:14:25 -0700500
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700501 stutter_wait("lock_torture_reader");
502 } while (!torture_must_stop());
503 torture_kthread_stopping("lock_torture_reader");
504 return 0;
505}
506
507/*
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800508 * Create an lock-torture-statistics message in the specified buffer.
509 */
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700510static void __torture_print_stats(char *page,
511 struct lock_stress_stats *statp, bool write)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800512{
513 bool fail = 0;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700514 int i, n_stress;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800515 long max = 0;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700516 long min = statp[0].n_lock_acquired;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800517 long long sum = 0;
518
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700519 n_stress = write ? cxt.nrealwriters_stress : cxt.nrealreaders_stress;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700520 for (i = 0; i < n_stress; i++) {
521 if (statp[i].n_lock_fail)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800522 fail = true;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700523 sum += statp[i].n_lock_acquired;
524 if (max < statp[i].n_lock_fail)
525 max = statp[i].n_lock_fail;
526 if (min > statp[i].n_lock_fail)
527 min = statp[i].n_lock_fail;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800528 }
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800529 page += sprintf(page,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700530 "%s: Total: %lld Max/Min: %ld/%ld %s Fail: %d %s\n",
531 write ? "Writes" : "Reads ",
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800532 sum, max, min, max / 2 > min ? "???" : "",
533 fail, fail ? "!!!" : "");
534 if (fail)
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700535 atomic_inc(&cxt.n_lock_torture_errors);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800536}
537
538/*
539 * Print torture statistics. Caller must ensure that there is only one
540 * call to this function at a given time!!! This is normally accomplished
541 * by relying on the module system to only have one copy of the module
542 * loaded, and then by giving the lock_torture_stats kthread full control
543 * (or the init/cleanup functions when lock_torture_stats thread is not
544 * running).
545 */
546static void lock_torture_stats_print(void)
547{
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700548 int size = cxt.nrealwriters_stress * 200 + 8192;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800549 char *buf;
550
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700551 if (cxt.cur_ops->readlock)
552 size += cxt.nrealreaders_stress * 200 + 8192;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700553
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800554 buf = kmalloc(size, GFP_KERNEL);
555 if (!buf) {
556 pr_err("lock_torture_stats_print: Out of memory, need: %d",
557 size);
558 return;
559 }
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700560
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700561 __torture_print_stats(buf, cxt.lwsa, true);
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800562 pr_alert("%s", buf);
563 kfree(buf);
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700564
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700565 if (cxt.cur_ops->readlock) {
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700566 buf = kmalloc(size, GFP_KERNEL);
567 if (!buf) {
568 pr_err("lock_torture_stats_print: Out of memory, need: %d",
569 size);
570 return;
571 }
572
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700573 __torture_print_stats(buf, cxt.lrsa, false);
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700574 pr_alert("%s", buf);
575 kfree(buf);
576 }
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800577}
578
579/*
580 * Periodically prints torture statistics, if periodic statistics printing
581 * was specified via the stat_interval module parameter.
582 *
583 * No need to worry about fullstop here, since this one doesn't reference
584 * volatile state or register callbacks.
585 */
586static int lock_torture_stats(void *arg)
587{
588 VERBOSE_TOROUT_STRING("lock_torture_stats task started");
589 do {
590 schedule_timeout_interruptible(stat_interval * HZ);
591 lock_torture_stats_print();
592 torture_shutdown_absorb("lock_torture_stats");
593 } while (!torture_must_stop());
594 torture_kthread_stopping("lock_torture_stats");
595 return 0;
596}
597
598static inline void
599lock_torture_print_module_parms(struct lock_torture_ops *cur_ops,
600 const char *tag)
601{
602 pr_alert("%s" TORTURE_FLAG
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700603 "--- %s%s: nwriters_stress=%d nreaders_stress=%d stat_interval=%d verbose=%d shuffle_interval=%d stutter=%d shutdown_secs=%d onoff_interval=%d onoff_holdoff=%d\n",
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700604 torture_type, tag, cxt.debug_lock ? " [debug]": "",
605 cxt.nrealwriters_stress, cxt.nrealreaders_stress, stat_interval,
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700606 verbose, shuffle_interval, stutter, shutdown_secs,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800607 onoff_interval, onoff_holdoff);
608}
609
610static void lock_torture_cleanup(void)
611{
612 int i;
613
Davidlohr Buesod36a7a02014-09-11 20:40:21 -0700614 if (torture_cleanup_begin())
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800615 return;
616
617 if (writer_tasks) {
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700618 for (i = 0; i < cxt.nrealwriters_stress; i++)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800619 torture_stop_kthread(lock_torture_writer,
620 writer_tasks[i]);
621 kfree(writer_tasks);
622 writer_tasks = NULL;
623 }
624
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700625 if (reader_tasks) {
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700626 for (i = 0; i < cxt.nrealreaders_stress; i++)
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700627 torture_stop_kthread(lock_torture_reader,
628 reader_tasks[i]);
629 kfree(reader_tasks);
630 reader_tasks = NULL;
631 }
632
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800633 torture_stop_kthread(lock_torture_stats, stats_task);
634 lock_torture_stats_print(); /* -After- the stats thread is stopped! */
635
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700636 if (atomic_read(&cxt.n_lock_torture_errors))
637 lock_torture_print_module_parms(cxt.cur_ops,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800638 "End of test: FAILURE");
639 else if (torture_onoff_failures())
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700640 lock_torture_print_module_parms(cxt.cur_ops,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800641 "End of test: LOCK_HOTPLUG");
642 else
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700643 lock_torture_print_module_parms(cxt.cur_ops,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800644 "End of test: SUCCESS");
Davidlohr Buesod36a7a02014-09-11 20:40:21 -0700645 torture_cleanup_end();
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800646}
647
648static int __init lock_torture_init(void)
649{
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700650 int i, j;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800651 int firsterr = 0;
652 static struct lock_torture_ops *torture_ops[] = {
Davidlohr Buesoe34191f2014-09-29 06:14:23 -0700653 &lock_busted_ops,
654 &spin_lock_ops, &spin_lock_irq_ops,
655 &rw_lock_ops, &rw_lock_irq_ops,
656 &mutex_lock_ops,
657 &rwsem_lock_ops,
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800658 };
659
Davidlohr Bueso23a8e5c2014-09-11 20:40:16 -0700660 if (!torture_init_begin(torture_type, verbose, &torture_runnable))
Paul E. McKenney52280842014-04-07 09:14:11 -0700661 return -EBUSY;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800662
663 /* Process args and tell the world that the torturer is on the job. */
664 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700665 cxt.cur_ops = torture_ops[i];
666 if (strcmp(torture_type, cxt.cur_ops->name) == 0)
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800667 break;
668 }
669 if (i == ARRAY_SIZE(torture_ops)) {
670 pr_alert("lock-torture: invalid torture type: \"%s\"\n",
671 torture_type);
672 pr_alert("lock-torture types:");
673 for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
674 pr_alert(" %s", torture_ops[i]->name);
675 pr_alert("\n");
676 torture_init_end();
677 return -EINVAL;
678 }
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700679 if (cxt.cur_ops->init)
680 cxt.cur_ops->init(); /* no "goto unwind" prior to this point!!! */
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800681
682 if (nwriters_stress >= 0)
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700683 cxt.nrealwriters_stress = nwriters_stress;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800684 else
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700685 cxt.nrealwriters_stress = 2 * num_online_cpus();
Davidlohr Buesof095bfc2014-09-11 20:40:19 -0700686
687#ifdef CONFIG_DEBUG_MUTEXES
688 if (strncmp(torture_type, "mutex", 5) == 0)
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700689 cxt.debug_lock = true;
Davidlohr Buesof095bfc2014-09-11 20:40:19 -0700690#endif
691#ifdef CONFIG_DEBUG_SPINLOCK
Davidlohr Buesoe34191f2014-09-29 06:14:23 -0700692 if ((strncmp(torture_type, "spin", 4) == 0) ||
693 (strncmp(torture_type, "rw_lock", 7) == 0))
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700694 cxt.debug_lock = true;
Davidlohr Buesof095bfc2014-09-11 20:40:19 -0700695#endif
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800696
697 /* Initialize the statistics so that each run gets its own numbers. */
698
699 lock_is_write_held = 0;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700700 cxt.lwsa = kmalloc(sizeof(*cxt.lwsa) * cxt.nrealwriters_stress, GFP_KERNEL);
701 if (cxt.lwsa == NULL) {
702 VERBOSE_TOROUT_STRING("cxt.lwsa: Out of memory");
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800703 firsterr = -ENOMEM;
704 goto unwind;
705 }
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700706 for (i = 0; i < cxt.nrealwriters_stress; i++) {
707 cxt.lwsa[i].n_lock_fail = 0;
708 cxt.lwsa[i].n_lock_acquired = 0;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800709 }
710
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700711 if (cxt.cur_ops->readlock) {
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700712 if (nreaders_stress >= 0)
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700713 cxt.nrealreaders_stress = nreaders_stress;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700714 else {
715 /*
716 * By default distribute evenly the number of
717 * readers and writers. We still run the same number
718 * of threads as the writer-only locks default.
719 */
720 if (nwriters_stress < 0) /* user doesn't care */
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700721 cxt.nrealwriters_stress = num_online_cpus();
722 cxt.nrealreaders_stress = cxt.nrealwriters_stress;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700723 }
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800724
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700725 lock_is_read_held = 0;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700726 cxt.lrsa = kmalloc(sizeof(*cxt.lrsa) * cxt.nrealreaders_stress, GFP_KERNEL);
727 if (cxt.lrsa == NULL) {
728 VERBOSE_TOROUT_STRING("cxt.lrsa: Out of memory");
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700729 firsterr = -ENOMEM;
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700730 kfree(cxt.lwsa);
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700731 goto unwind;
732 }
733
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700734 for (i = 0; i < cxt.nrealreaders_stress; i++) {
735 cxt.lrsa[i].n_lock_fail = 0;
736 cxt.lrsa[i].n_lock_acquired = 0;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700737 }
738 }
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700739 lock_torture_print_module_parms(cxt.cur_ops, "Start of test");
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700740
741 /* Prepare torture context. */
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800742 if (onoff_interval > 0) {
743 firsterr = torture_onoff_init(onoff_holdoff * HZ,
744 onoff_interval * HZ);
745 if (firsterr)
746 goto unwind;
747 }
748 if (shuffle_interval > 0) {
749 firsterr = torture_shuffle_init(shuffle_interval);
750 if (firsterr)
751 goto unwind;
752 }
753 if (shutdown_secs > 0) {
754 firsterr = torture_shutdown_init(shutdown_secs,
755 lock_torture_cleanup);
756 if (firsterr)
757 goto unwind;
758 }
759 if (stutter > 0) {
760 firsterr = torture_stutter_init(stutter);
761 if (firsterr)
762 goto unwind;
763 }
764
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700765 writer_tasks = kzalloc(cxt.nrealwriters_stress * sizeof(writer_tasks[0]),
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800766 GFP_KERNEL);
767 if (writer_tasks == NULL) {
768 VERBOSE_TOROUT_ERRSTRING("writer_tasks: Out of memory");
769 firsterr = -ENOMEM;
770 goto unwind;
771 }
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700772
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700773 if (cxt.cur_ops->readlock) {
774 reader_tasks = kzalloc(cxt.nrealreaders_stress * sizeof(reader_tasks[0]),
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700775 GFP_KERNEL);
776 if (reader_tasks == NULL) {
777 VERBOSE_TOROUT_ERRSTRING("reader_tasks: Out of memory");
778 firsterr = -ENOMEM;
779 goto unwind;
780 }
781 }
782
783 /*
784 * Create the kthreads and start torturing (oh, those poor little locks).
785 *
786 * TODO: Note that we interleave writers with readers, giving writers a
787 * slight advantage, by creating its kthread first. This can be modified
788 * for very specific needs, or even let the user choose the policy, if
789 * ever wanted.
790 */
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700791 for (i = 0, j = 0; i < cxt.nrealwriters_stress ||
792 j < cxt.nrealreaders_stress; i++, j++) {
793 if (i >= cxt.nrealwriters_stress)
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700794 goto create_reader;
795
796 /* Create writer. */
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700797 firsterr = torture_create_kthread(lock_torture_writer, &cxt.lwsa[i],
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800798 writer_tasks[i]);
799 if (firsterr)
800 goto unwind;
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700801
802 create_reader:
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700803 if (cxt.cur_ops->readlock == NULL || (j >= cxt.nrealreaders_stress))
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700804 continue;
805 /* Create reader. */
Davidlohr Bueso630952c2014-09-11 21:42:25 -0700806 firsterr = torture_create_kthread(lock_torture_reader, &cxt.lrsa[j],
Davidlohr Bueso4f6332c2014-09-11 21:40:41 -0700807 reader_tasks[j]);
808 if (firsterr)
809 goto unwind;
Paul E. McKenney0af3fe12014-02-04 15:51:41 -0800810 }
811 if (stat_interval > 0) {
812 firsterr = torture_create_kthread(lock_torture_stats, NULL,
813 stats_task);
814 if (firsterr)
815 goto unwind;
816 }
817 torture_init_end();
818 return 0;
819
820unwind:
821 torture_init_end();
822 lock_torture_cleanup();
823 return firsterr;
824}
825
826module_init(lock_torture_init);
827module_exit(lock_torture_cleanup);