locktorture.c 26.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * Module-based torture test facility for locking
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can access it online at
 * http://www.gnu.org/licenses/gpl-2.0.html.
 *
 * Copyright (C) IBM Corporation, 2014
 *
20 21
 * Authors: Paul E. McKenney <paulmck@us.ibm.com>
 *          Davidlohr Bueso <dave@stgolabs.net>
22 23 24 25 26
 *	Based on kernel/rcu/torture.c.
 */
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/kthread.h>
27
#include <linux/sched/rt.h>
28
#include <linux/spinlock.h>
D
Davidlohr Bueso 已提交
29
#include <linux/rwlock.h>
D
Davidlohr Bueso 已提交
30
#include <linux/mutex.h>
31
#include <linux/rwsem.h>
32 33 34 35 36 37 38
#include <linux/smp.h>
#include <linux/interrupt.h>
#include <linux/sched.h>
#include <linux/atomic.h>
#include <linux/moduleparam.h>
#include <linux/delay.h>
#include <linux/slab.h>
39
#include <linux/percpu-rwsem.h>
40 41 42 43 44 45 46
#include <linux/torture.h>

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com>");

torture_param(int, nwriters_stress, -1,
	     "Number of write-locking stress-test threads");
47 48
torture_param(int, nreaders_stress, -1,
	     "Number of read-locking stress-test threads");
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63
torture_param(int, onoff_holdoff, 0, "Time after boot before CPU hotplugs (s)");
torture_param(int, onoff_interval, 0,
	     "Time between CPU hotplugs (s), 0=disable");
torture_param(int, shuffle_interval, 3,
	     "Number of jiffies between shuffles, 0=disable");
torture_param(int, shutdown_secs, 0, "Shutdown time (j), <= zero to disable.");
torture_param(int, stat_interval, 60,
	     "Number of seconds between stats printk()s");
torture_param(int, stutter, 5, "Number of jiffies to run/halt test, 0=disable");
torture_param(bool, verbose, true,
	     "Enable verbose debugging printk()s");

static char *torture_type = "spin_lock";
module_param(torture_type, charp, 0444);
MODULE_PARM_DESC(torture_type,
D
Davidlohr Bueso 已提交
64
		 "Type of lock to torture (spin_lock, spin_lock_irq, mutex_lock, ...)");
65 66 67

static struct task_struct *stats_task;
static struct task_struct **writer_tasks;
68
static struct task_struct **reader_tasks;
69 70

static bool lock_is_write_held;
71
static bool lock_is_read_held;
72

73 74 75
struct lock_stress_stats {
	long n_lock_fail;
	long n_lock_acquired;
76 77
};

78
int torture_runnable = IS_ENABLED(MODULE);
79 80
module_param(torture_runnable, int, 0444);
MODULE_PARM_DESC(torture_runnable, "Start locktorture at module init");
81 82 83 84 85 86 87 88 89 90 91

/* Forward reference. */
static void lock_torture_cleanup(void);

/*
 * Operations vector for selecting different types of tests.
 */
struct lock_torture_ops {
	void (*init)(void);
	int (*writelock)(void);
	void (*write_delay)(struct torture_random_state *trsp);
92
	void (*task_boost)(struct torture_random_state *trsp);
93
	void (*writeunlock)(void);
94 95 96
	int (*readlock)(void);
	void (*read_delay)(struct torture_random_state *trsp);
	void (*readunlock)(void);
97 98

	unsigned long flags; /* for irq spinlocks */
99 100 101
	const char *name;
};

102 103 104 105 106 107 108 109 110 111 112 113
struct lock_torture_cxt {
	int nrealwriters_stress;
	int nrealreaders_stress;
	bool debug_lock;
	atomic_t n_lock_torture_errors;
	struct lock_torture_ops *cur_ops;
	struct lock_stress_stats *lwsa; /* writer statistics */
	struct lock_stress_stats *lrsa; /* reader statistics */
};
static struct lock_torture_cxt cxt = { 0, 0, false,
				       ATOMIC_INIT(0),
				       NULL, NULL};
114 115 116 117
/*
 * Definitions for lock torture testing.
 */

118 119 120 121 122 123 124
static int torture_lock_busted_write_lock(void)
{
	return 0;  /* BUGGY, do not use in real life!!! */
}

static void torture_lock_busted_write_delay(struct torture_random_state *trsp)
{
125
	const unsigned long longdelay_ms = 100;
126 127 128

	/* We want a long delay occasionally to force massive contention.  */
	if (!(torture_random(trsp) %
129 130
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
		mdelay(longdelay_ms);
131
#ifdef CONFIG_PREEMPT
132
	if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
133 134 135 136 137 138 139 140 141
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_lock_busted_write_unlock(void)
{
	  /* BUGGY, do not use in real life!!! */
}

142 143 144 145 146
static void torture_boost_dummy(struct torture_random_state *trsp)
{
	/* Only rtmutexes care about priority */
}

147 148 149
static struct lock_torture_ops lock_busted_ops = {
	.writelock	= torture_lock_busted_write_lock,
	.write_delay	= torture_lock_busted_write_delay,
150
	.task_boost     = torture_boost_dummy,
151
	.writeunlock	= torture_lock_busted_write_unlock,
152 153 154
	.readlock       = NULL,
	.read_delay     = NULL,
	.readunlock     = NULL,
155 156 157
	.name		= "lock_busted"
};

158 159 160 161 162 163 164 165 166 167 168
static DEFINE_SPINLOCK(torture_spinlock);

static int torture_spin_lock_write_lock(void) __acquires(torture_spinlock)
{
	spin_lock(&torture_spinlock);
	return 0;
}

static void torture_spin_lock_write_delay(struct torture_random_state *trsp)
{
	const unsigned long shortdelay_us = 2;
169
	const unsigned long longdelay_ms = 100;
170 171 172 173 174

	/* We want a short delay mostly to emulate likely code, and
	 * we want a long delay occasionally to force massive contention.
	 */
	if (!(torture_random(trsp) %
175 176
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
		mdelay(longdelay_ms);
177
	if (!(torture_random(trsp) %
178
	      (cxt.nrealwriters_stress * 2 * shortdelay_us)))
179 180
		udelay(shortdelay_us);
#ifdef CONFIG_PREEMPT
181
	if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
182 183 184 185 186 187 188 189 190 191 192 193
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_spin_lock_write_unlock(void) __releases(torture_spinlock)
{
	spin_unlock(&torture_spinlock);
}

static struct lock_torture_ops spin_lock_ops = {
	.writelock	= torture_spin_lock_write_lock,
	.write_delay	= torture_spin_lock_write_delay,
194
	.task_boost     = torture_boost_dummy,
195
	.writeunlock	= torture_spin_lock_write_unlock,
196 197 198
	.readlock       = NULL,
	.read_delay     = NULL,
	.readunlock     = NULL,
199 200 201 202
	.name		= "spin_lock"
};

static int torture_spin_lock_write_lock_irq(void)
203
__acquires(torture_spinlock)
204 205 206 207
{
	unsigned long flags;

	spin_lock_irqsave(&torture_spinlock, flags);
208
	cxt.cur_ops->flags = flags;
209 210 211 212 213 214
	return 0;
}

static void torture_lock_spin_write_unlock_irq(void)
__releases(torture_spinlock)
{
215
	spin_unlock_irqrestore(&torture_spinlock, cxt.cur_ops->flags);
216 217 218 219 220
}

static struct lock_torture_ops spin_lock_irq_ops = {
	.writelock	= torture_spin_lock_write_lock_irq,
	.write_delay	= torture_spin_lock_write_delay,
221
	.task_boost     = torture_boost_dummy,
222
	.writeunlock	= torture_lock_spin_write_unlock_irq,
223 224 225
	.readlock       = NULL,
	.read_delay     = NULL,
	.readunlock     = NULL,
226 227 228
	.name		= "spin_lock_irq"
};

D
Davidlohr Bueso 已提交
229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
static DEFINE_RWLOCK(torture_rwlock);

static int torture_rwlock_write_lock(void) __acquires(torture_rwlock)
{
	write_lock(&torture_rwlock);
	return 0;
}

static void torture_rwlock_write_delay(struct torture_random_state *trsp)
{
	const unsigned long shortdelay_us = 2;
	const unsigned long longdelay_ms = 100;

	/* We want a short delay mostly to emulate likely code, and
	 * we want a long delay occasionally to force massive contention.
	 */
	if (!(torture_random(trsp) %
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
		mdelay(longdelay_ms);
	else
		udelay(shortdelay_us);
}

static void torture_rwlock_write_unlock(void) __releases(torture_rwlock)
{
	write_unlock(&torture_rwlock);
}

static int torture_rwlock_read_lock(void) __acquires(torture_rwlock)
{
	read_lock(&torture_rwlock);
	return 0;
}

static void torture_rwlock_read_delay(struct torture_random_state *trsp)
{
	const unsigned long shortdelay_us = 10;
	const unsigned long longdelay_ms = 100;

	/* We want a short delay mostly to emulate likely code, and
	 * we want a long delay occasionally to force massive contention.
	 */
	if (!(torture_random(trsp) %
	      (cxt.nrealreaders_stress * 2000 * longdelay_ms)))
		mdelay(longdelay_ms);
	else
		udelay(shortdelay_us);
}

static void torture_rwlock_read_unlock(void) __releases(torture_rwlock)
{
	read_unlock(&torture_rwlock);
}

static struct lock_torture_ops rw_lock_ops = {
	.writelock	= torture_rwlock_write_lock,
	.write_delay	= torture_rwlock_write_delay,
286
	.task_boost     = torture_boost_dummy,
D
Davidlohr Bueso 已提交
287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
	.writeunlock	= torture_rwlock_write_unlock,
	.readlock       = torture_rwlock_read_lock,
	.read_delay     = torture_rwlock_read_delay,
	.readunlock     = torture_rwlock_read_unlock,
	.name		= "rw_lock"
};

static int torture_rwlock_write_lock_irq(void) __acquires(torture_rwlock)
{
	unsigned long flags;

	write_lock_irqsave(&torture_rwlock, flags);
	cxt.cur_ops->flags = flags;
	return 0;
}

static void torture_rwlock_write_unlock_irq(void)
__releases(torture_rwlock)
{
	write_unlock_irqrestore(&torture_rwlock, cxt.cur_ops->flags);
}

static int torture_rwlock_read_lock_irq(void) __acquires(torture_rwlock)
{
	unsigned long flags;

	read_lock_irqsave(&torture_rwlock, flags);
	cxt.cur_ops->flags = flags;
	return 0;
}

static void torture_rwlock_read_unlock_irq(void)
__releases(torture_rwlock)
{
321
	read_unlock_irqrestore(&torture_rwlock, cxt.cur_ops->flags);
D
Davidlohr Bueso 已提交
322 323 324 325 326
}

static struct lock_torture_ops rw_lock_irq_ops = {
	.writelock	= torture_rwlock_write_lock_irq,
	.write_delay	= torture_rwlock_write_delay,
327
	.task_boost     = torture_boost_dummy,
D
Davidlohr Bueso 已提交
328 329 330 331 332 333 334
	.writeunlock	= torture_rwlock_write_unlock_irq,
	.readlock       = torture_rwlock_read_lock_irq,
	.read_delay     = torture_rwlock_read_delay,
	.readunlock     = torture_rwlock_read_unlock_irq,
	.name		= "rw_lock_irq"
};

D
Davidlohr Bueso 已提交
335 336 337 338 339 340 341 342 343 344 345 346 347 348
static DEFINE_MUTEX(torture_mutex);

static int torture_mutex_lock(void) __acquires(torture_mutex)
{
	mutex_lock(&torture_mutex);
	return 0;
}

static void torture_mutex_delay(struct torture_random_state *trsp)
{
	const unsigned long longdelay_ms = 100;

	/* We want a long delay occasionally to force massive contention.  */
	if (!(torture_random(trsp) %
349
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
D
Davidlohr Bueso 已提交
350 351 352 353
		mdelay(longdelay_ms * 5);
	else
		mdelay(longdelay_ms / 5);
#ifdef CONFIG_PREEMPT
354
	if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
D
Davidlohr Bueso 已提交
355 356 357 358 359 360 361 362 363 364 365 366
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_mutex_unlock(void) __releases(torture_mutex)
{
	mutex_unlock(&torture_mutex);
}

static struct lock_torture_ops mutex_lock_ops = {
	.writelock	= torture_mutex_lock,
	.write_delay	= torture_mutex_delay,
367
	.task_boost     = torture_boost_dummy,
D
Davidlohr Bueso 已提交
368
	.writeunlock	= torture_mutex_unlock,
369 370 371
	.readlock       = NULL,
	.read_delay     = NULL,
	.readunlock     = NULL,
D
Davidlohr Bueso 已提交
372 373 374
	.name		= "mutex_lock"
};

375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391
#ifdef CONFIG_RT_MUTEXES
static DEFINE_RT_MUTEX(torture_rtmutex);

static int torture_rtmutex_lock(void) __acquires(torture_rtmutex)
{
	rt_mutex_lock(&torture_rtmutex);
	return 0;
}

static void torture_rtmutex_boost(struct torture_random_state *trsp)
{
	int policy;
	struct sched_param param;
	const unsigned int factor = 50000; /* yes, quite arbitrary */

	if (!rt_task(current)) {
		/*
392
		 * Boost priority once every ~50k operations. When the
393 394 395
		 * task tries to take the lock, the rtmutex it will account
		 * for the new priority, and do any corresponding pi-dance.
		 */
396 397
		if (trsp && !(torture_random(trsp) %
			      (cxt.nrealwriters_stress * factor))) {
398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
			policy = SCHED_FIFO;
			param.sched_priority = MAX_RT_PRIO - 1;
		} else /* common case, do nothing */
			return;
	} else {
		/*
		 * The task will remain boosted for another ~500k operations,
		 * then restored back to its original prio, and so forth.
		 *
		 * When @trsp is nil, we want to force-reset the task for
		 * stopping the kthread.
		 */
		if (!trsp || !(torture_random(trsp) %
			       (cxt.nrealwriters_stress * factor * 2))) {
			policy = SCHED_NORMAL;
			param.sched_priority = 0;
		} else /* common case, do nothing */
			return;
	}

	sched_setscheduler_nocheck(current, policy, &param);
}

static void torture_rtmutex_delay(struct torture_random_state *trsp)
{
	const unsigned long shortdelay_us = 2;
	const unsigned long longdelay_ms = 100;

	/*
	 * We want a short delay mostly to emulate likely code, and
	 * we want a long delay occasionally to force massive contention.
	 */
	if (!(torture_random(trsp) %
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
		mdelay(longdelay_ms);
	if (!(torture_random(trsp) %
	      (cxt.nrealwriters_stress * 2 * shortdelay_us)))
		udelay(shortdelay_us);
#ifdef CONFIG_PREEMPT
	if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_rtmutex_unlock(void) __releases(torture_rtmutex)
{
	rt_mutex_unlock(&torture_rtmutex);
}

static struct lock_torture_ops rtmutex_lock_ops = {
	.writelock	= torture_rtmutex_lock,
	.write_delay	= torture_rtmutex_delay,
	.task_boost     = torture_rtmutex_boost,
	.writeunlock	= torture_rtmutex_unlock,
	.readlock       = NULL,
	.read_delay     = NULL,
	.readunlock     = NULL,
	.name		= "rtmutex_lock"
};
#endif

D
Davidlohr Bueso 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471
static DECLARE_RWSEM(torture_rwsem);
static int torture_rwsem_down_write(void) __acquires(torture_rwsem)
{
	down_write(&torture_rwsem);
	return 0;
}

static void torture_rwsem_write_delay(struct torture_random_state *trsp)
{
	const unsigned long longdelay_ms = 100;

	/* We want a long delay occasionally to force massive contention.  */
	if (!(torture_random(trsp) %
472
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
D
Davidlohr Bueso 已提交
473 474 475 476
		mdelay(longdelay_ms * 10);
	else
		mdelay(longdelay_ms / 10);
#ifdef CONFIG_PREEMPT
477
	if (!(torture_random(trsp) % (cxt.nrealwriters_stress * 20000)))
D
Davidlohr Bueso 已提交
478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_rwsem_up_write(void) __releases(torture_rwsem)
{
	up_write(&torture_rwsem);
}

static int torture_rwsem_down_read(void) __acquires(torture_rwsem)
{
	down_read(&torture_rwsem);
	return 0;
}

static void torture_rwsem_read_delay(struct torture_random_state *trsp)
{
	const unsigned long longdelay_ms = 100;

	/* We want a long delay occasionally to force massive contention.  */
	if (!(torture_random(trsp) %
499
	      (cxt.nrealwriters_stress * 2000 * longdelay_ms)))
D
Davidlohr Bueso 已提交
500 501 502 503
		mdelay(longdelay_ms * 2);
	else
		mdelay(longdelay_ms / 2);
#ifdef CONFIG_PREEMPT
504
	if (!(torture_random(trsp) % (cxt.nrealreaders_stress * 20000)))
D
Davidlohr Bueso 已提交
505 506 507 508 509 510 511 512 513 514 515 516
		preempt_schedule();  /* Allow test to be preempted. */
#endif
}

static void torture_rwsem_up_read(void) __releases(torture_rwsem)
{
	up_read(&torture_rwsem);
}

static struct lock_torture_ops rwsem_lock_ops = {
	.writelock	= torture_rwsem_down_write,
	.write_delay	= torture_rwsem_write_delay,
517
	.task_boost     = torture_boost_dummy,
D
Davidlohr Bueso 已提交
518 519 520 521 522 523 524
	.writeunlock	= torture_rwsem_up_write,
	.readlock       = torture_rwsem_down_read,
	.read_delay     = torture_rwsem_read_delay,
	.readunlock     = torture_rwsem_up_read,
	.name		= "rwsem_lock"
};

525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566
#include <linux/percpu-rwsem.h>
static struct percpu_rw_semaphore pcpu_rwsem;

void torture_percpu_rwsem_init(void)
{
	BUG_ON(percpu_init_rwsem(&pcpu_rwsem));
}

static int torture_percpu_rwsem_down_write(void) __acquires(pcpu_rwsem)
{
	percpu_down_write(&pcpu_rwsem);
	return 0;
}

static void torture_percpu_rwsem_up_write(void) __releases(pcpu_rwsem)
{
	percpu_up_write(&pcpu_rwsem);
}

static int torture_percpu_rwsem_down_read(void) __acquires(pcpu_rwsem)
{
	percpu_down_read(&pcpu_rwsem);
	return 0;
}

static void torture_percpu_rwsem_up_read(void) __releases(pcpu_rwsem)
{
	percpu_up_read(&pcpu_rwsem);
}

static struct lock_torture_ops percpu_rwsem_lock_ops = {
	.init		= torture_percpu_rwsem_init,
	.writelock	= torture_percpu_rwsem_down_write,
	.write_delay	= torture_rwsem_write_delay,
	.task_boost     = torture_boost_dummy,
	.writeunlock	= torture_percpu_rwsem_up_write,
	.readlock       = torture_percpu_rwsem_down_read,
	.read_delay     = torture_rwsem_read_delay,
	.readunlock     = torture_percpu_rwsem_up_read,
	.name		= "percpu_rwsem_lock"
};

567 568 569 570 571 572
/*
 * Lock torture writer kthread.  Repeatedly acquires and releases
 * the lock, checking for duplicate acquisitions.
 */
static int lock_torture_writer(void *arg)
{
573
	struct lock_stress_stats *lwsp = arg;
574 575 576
	static DEFINE_TORTURE_RANDOM(rand);

	VERBOSE_TOROUT_STRING("lock_torture_writer task started");
577
	set_user_nice(current, MAX_NICE);
578 579

	do {
580 581
		if ((torture_random(&rand) & 0xfffff) == 0)
			schedule_timeout_uninterruptible(1);
582

583
		cxt.cur_ops->task_boost(&rand);
584
		cxt.cur_ops->writelock();
585
		if (WARN_ON_ONCE(lock_is_write_held))
586
			lwsp->n_lock_fail++;
587
		lock_is_write_held = 1;
588 589 590
		if (WARN_ON_ONCE(lock_is_read_held))
			lwsp->n_lock_fail++; /* rare, but... */

591
		lwsp->n_lock_acquired++;
592
		cxt.cur_ops->write_delay(&rand);
593
		lock_is_write_held = 0;
594
		cxt.cur_ops->writeunlock();
595

596 597
		stutter_wait("lock_torture_writer");
	} while (!torture_must_stop());
598 599

	cxt.cur_ops->task_boost(NULL); /* reset prio */
600 601 602 603
	torture_kthread_stopping("lock_torture_writer");
	return 0;
}

604 605 606 607 608 609 610 611 612 613 614 615 616 617 618
/*
 * Lock torture reader kthread.  Repeatedly acquires and releases
 * the reader lock.
 */
static int lock_torture_reader(void *arg)
{
	struct lock_stress_stats *lrsp = arg;
	static DEFINE_TORTURE_RANDOM(rand);

	VERBOSE_TOROUT_STRING("lock_torture_reader task started");
	set_user_nice(current, MAX_NICE);

	do {
		if ((torture_random(&rand) & 0xfffff) == 0)
			schedule_timeout_uninterruptible(1);
619

620
		cxt.cur_ops->readlock();
621
		lock_is_read_held = 1;
622 623 624
		if (WARN_ON_ONCE(lock_is_write_held))
			lrsp->n_lock_fail++; /* rare, but... */

625
		lrsp->n_lock_acquired++;
626
		cxt.cur_ops->read_delay(&rand);
627
		lock_is_read_held = 0;
628
		cxt.cur_ops->readunlock();
629

630 631 632 633 634 635
		stutter_wait("lock_torture_reader");
	} while (!torture_must_stop());
	torture_kthread_stopping("lock_torture_reader");
	return 0;
}

636 637 638
/*
 * Create an lock-torture-statistics message in the specified buffer.
 */
639 640
static void __torture_print_stats(char *page,
				  struct lock_stress_stats *statp, bool write)
641 642
{
	bool fail = 0;
643
	int i, n_stress;
644
	long max = 0;
645
	long min = statp[0].n_lock_acquired;
646 647
	long long sum = 0;

648
	n_stress = write ? cxt.nrealwriters_stress : cxt.nrealreaders_stress;
649 650
	for (i = 0; i < n_stress; i++) {
		if (statp[i].n_lock_fail)
651
			fail = true;
652 653 654 655 656
		sum += statp[i].n_lock_acquired;
		if (max < statp[i].n_lock_fail)
			max = statp[i].n_lock_fail;
		if (min > statp[i].n_lock_fail)
			min = statp[i].n_lock_fail;
657 658
	}
	page += sprintf(page,
659 660
			"%s:  Total: %lld  Max/Min: %ld/%ld %s  Fail: %d %s\n",
			write ? "Writes" : "Reads ",
661 662 663
			sum, max, min, max / 2 > min ? "???" : "",
			fail, fail ? "!!!" : "");
	if (fail)
664
		atomic_inc(&cxt.n_lock_torture_errors);
665 666 667 668 669 670 671 672 673 674 675 676
}

/*
 * Print torture statistics.  Caller must ensure that there is only one
 * call to this function at a given time!!!  This is normally accomplished
 * by relying on the module system to only have one copy of the module
 * loaded, and then by giving the lock_torture_stats kthread full control
 * (or the init/cleanup functions when lock_torture_stats thread is not
 * running).
 */
static void lock_torture_stats_print(void)
{
677
	int size = cxt.nrealwriters_stress * 200 + 8192;
678 679
	char *buf;

680 681
	if (cxt.cur_ops->readlock)
		size += cxt.nrealreaders_stress * 200 + 8192;
682

683 684 685 686 687 688
	buf = kmalloc(size, GFP_KERNEL);
	if (!buf) {
		pr_err("lock_torture_stats_print: Out of memory, need: %d",
		       size);
		return;
	}
689

690
	__torture_print_stats(buf, cxt.lwsa, true);
691 692
	pr_alert("%s", buf);
	kfree(buf);
693

694
	if (cxt.cur_ops->readlock) {
695 696 697 698 699 700 701
		buf = kmalloc(size, GFP_KERNEL);
		if (!buf) {
			pr_err("lock_torture_stats_print: Out of memory, need: %d",
			       size);
			return;
		}

702
		__torture_print_stats(buf, cxt.lrsa, false);
703 704 705
		pr_alert("%s", buf);
		kfree(buf);
	}
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731
}

/*
 * Periodically prints torture statistics, if periodic statistics printing
 * was specified via the stat_interval module parameter.
 *
 * No need to worry about fullstop here, since this one doesn't reference
 * volatile state or register callbacks.
 */
static int lock_torture_stats(void *arg)
{
	VERBOSE_TOROUT_STRING("lock_torture_stats task started");
	do {
		schedule_timeout_interruptible(stat_interval * HZ);
		lock_torture_stats_print();
		torture_shutdown_absorb("lock_torture_stats");
	} while (!torture_must_stop());
	torture_kthread_stopping("lock_torture_stats");
	return 0;
}

static inline void
lock_torture_print_module_parms(struct lock_torture_ops *cur_ops,
				const char *tag)
{
	pr_alert("%s" TORTURE_FLAG
732
		 "--- %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",
733 734
		 torture_type, tag, cxt.debug_lock ? " [debug]": "",
		 cxt.nrealwriters_stress, cxt.nrealreaders_stress, stat_interval,
735
		 verbose, shuffle_interval, stutter, shutdown_secs,
736 737 738 739 740 741 742
		 onoff_interval, onoff_holdoff);
}

static void lock_torture_cleanup(void)
{
	int i;

743
	if (torture_cleanup_begin())
744 745
		return;

746 747 748 749 750 751 752 753 754
	/*
	 * Indicates early cleanup, meaning that the test has not run,
	 * such as when passing bogus args when loading the module. As
	 * such, only perform the underlying torture-specific cleanups,
	 * and avoid anything related to locktorture.
	 */
	if (!cxt.lwsa)
		goto end;

755
	if (writer_tasks) {
756
		for (i = 0; i < cxt.nrealwriters_stress; i++)
757 758 759 760 761 762
			torture_stop_kthread(lock_torture_writer,
					     writer_tasks[i]);
		kfree(writer_tasks);
		writer_tasks = NULL;
	}

763
	if (reader_tasks) {
764
		for (i = 0; i < cxt.nrealreaders_stress; i++)
765 766 767 768 769 770
			torture_stop_kthread(lock_torture_reader,
					     reader_tasks[i]);
		kfree(reader_tasks);
		reader_tasks = NULL;
	}

771 772 773
	torture_stop_kthread(lock_torture_stats, stats_task);
	lock_torture_stats_print();  /* -After- the stats thread is stopped! */

774 775
	if (atomic_read(&cxt.n_lock_torture_errors))
		lock_torture_print_module_parms(cxt.cur_ops,
776 777
						"End of test: FAILURE");
	else if (torture_onoff_failures())
778
		lock_torture_print_module_parms(cxt.cur_ops,
779 780
						"End of test: LOCK_HOTPLUG");
	else
781
		lock_torture_print_module_parms(cxt.cur_ops,
782
						"End of test: SUCCESS");
783
end:
784
	torture_cleanup_end();
785 786 787 788
}

static int __init lock_torture_init(void)
{
789
	int i, j;
790 791
	int firsterr = 0;
	static struct lock_torture_ops *torture_ops[] = {
D
Davidlohr Bueso 已提交
792 793 794 795
		&lock_busted_ops,
		&spin_lock_ops, &spin_lock_irq_ops,
		&rw_lock_ops, &rw_lock_irq_ops,
		&mutex_lock_ops,
796 797 798
#ifdef CONFIG_RT_MUTEXES
		&rtmutex_lock_ops,
#endif
D
Davidlohr Bueso 已提交
799
		&rwsem_lock_ops,
800
		&percpu_rwsem_lock_ops,
801 802
	};

803
	if (!torture_init_begin(torture_type, verbose, &torture_runnable))
804
		return -EBUSY;
805 806 807

	/* Process args and tell the world that the torturer is on the job. */
	for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
808 809
		cxt.cur_ops = torture_ops[i];
		if (strcmp(torture_type, cxt.cur_ops->name) == 0)
810 811 812 813 814 815 816 817 818
			break;
	}
	if (i == ARRAY_SIZE(torture_ops)) {
		pr_alert("lock-torture: invalid torture type: \"%s\"\n",
			 torture_type);
		pr_alert("lock-torture types:");
		for (i = 0; i < ARRAY_SIZE(torture_ops); i++)
			pr_alert(" %s", torture_ops[i]->name);
		pr_alert("\n");
819 820
		firsterr = -EINVAL;
		goto unwind;
821
	}
822
	if (cxt.cur_ops->init)
823
		cxt.cur_ops->init();
824 825

	if (nwriters_stress >= 0)
826
		cxt.nrealwriters_stress = nwriters_stress;
827
	else
828
		cxt.nrealwriters_stress = 2 * num_online_cpus();
829 830 831

#ifdef CONFIG_DEBUG_MUTEXES
	if (strncmp(torture_type, "mutex", 5) == 0)
832
		cxt.debug_lock = true;
833
#endif
834 835 836 837
#ifdef CONFIG_DEBUG_RT_MUTEXES
	if (strncmp(torture_type, "rtmutex", 7) == 0)
		cxt.debug_lock = true;
#endif
838
#ifdef CONFIG_DEBUG_SPINLOCK
D
Davidlohr Bueso 已提交
839 840
	if ((strncmp(torture_type, "spin", 4) == 0) ||
	    (strncmp(torture_type, "rw_lock", 7) == 0))
841
		cxt.debug_lock = true;
842
#endif
843 844 845 846

	/* Initialize the statistics so that each run gets its own numbers. */

	lock_is_write_held = 0;
847 848 849
	cxt.lwsa = kmalloc(sizeof(*cxt.lwsa) * cxt.nrealwriters_stress, GFP_KERNEL);
	if (cxt.lwsa == NULL) {
		VERBOSE_TOROUT_STRING("cxt.lwsa: Out of memory");
850 851 852
		firsterr = -ENOMEM;
		goto unwind;
	}
853 854 855
	for (i = 0; i < cxt.nrealwriters_stress; i++) {
		cxt.lwsa[i].n_lock_fail = 0;
		cxt.lwsa[i].n_lock_acquired = 0;
856 857
	}

858
	if (cxt.cur_ops->readlock) {
859
		if (nreaders_stress >= 0)
860
			cxt.nrealreaders_stress = nreaders_stress;
861 862 863 864 865 866 867
		else {
			/*
			 * By default distribute evenly the number of
			 * readers and writers. We still run the same number
			 * of threads as the writer-only locks default.
			 */
			if (nwriters_stress < 0) /* user doesn't care */
868 869
				cxt.nrealwriters_stress = num_online_cpus();
			cxt.nrealreaders_stress = cxt.nrealwriters_stress;
870 871 872
		}

		lock_is_read_held = 0;
873 874 875
		cxt.lrsa = kmalloc(sizeof(*cxt.lrsa) * cxt.nrealreaders_stress, GFP_KERNEL);
		if (cxt.lrsa == NULL) {
			VERBOSE_TOROUT_STRING("cxt.lrsa: Out of memory");
876
			firsterr = -ENOMEM;
877
			kfree(cxt.lwsa);
878
			cxt.lwsa = NULL;
879 880
			goto unwind;
		}
881

882 883 884
		for (i = 0; i < cxt.nrealreaders_stress; i++) {
			cxt.lrsa[i].n_lock_fail = 0;
			cxt.lrsa[i].n_lock_acquired = 0;
885 886
		}
	}
887

888
	lock_torture_print_module_parms(cxt.cur_ops, "Start of test");
889 890

	/* Prepare torture context. */
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913
	if (onoff_interval > 0) {
		firsterr = torture_onoff_init(onoff_holdoff * HZ,
					      onoff_interval * HZ);
		if (firsterr)
			goto unwind;
	}
	if (shuffle_interval > 0) {
		firsterr = torture_shuffle_init(shuffle_interval);
		if (firsterr)
			goto unwind;
	}
	if (shutdown_secs > 0) {
		firsterr = torture_shutdown_init(shutdown_secs,
						 lock_torture_cleanup);
		if (firsterr)
			goto unwind;
	}
	if (stutter > 0) {
		firsterr = torture_stutter_init(stutter);
		if (firsterr)
			goto unwind;
	}

914
	writer_tasks = kzalloc(cxt.nrealwriters_stress * sizeof(writer_tasks[0]),
915 916 917 918 919 920
			       GFP_KERNEL);
	if (writer_tasks == NULL) {
		VERBOSE_TOROUT_ERRSTRING("writer_tasks: Out of memory");
		firsterr = -ENOMEM;
		goto unwind;
	}
921

922 923
	if (cxt.cur_ops->readlock) {
		reader_tasks = kzalloc(cxt.nrealreaders_stress * sizeof(reader_tasks[0]),
924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939
				       GFP_KERNEL);
		if (reader_tasks == NULL) {
			VERBOSE_TOROUT_ERRSTRING("reader_tasks: Out of memory");
			firsterr = -ENOMEM;
			goto unwind;
		}
	}

	/*
	 * Create the kthreads and start torturing (oh, those poor little locks).
	 *
	 * TODO: Note that we interleave writers with readers, giving writers a
	 * slight advantage, by creating its kthread first. This can be modified
	 * for very specific needs, or even let the user choose the policy, if
	 * ever wanted.
	 */
940 941 942
	for (i = 0, j = 0; i < cxt.nrealwriters_stress ||
		    j < cxt.nrealreaders_stress; i++, j++) {
		if (i >= cxt.nrealwriters_stress)
943 944 945
			goto create_reader;

		/* Create writer. */
946
		firsterr = torture_create_kthread(lock_torture_writer, &cxt.lwsa[i],
947 948 949
						  writer_tasks[i]);
		if (firsterr)
			goto unwind;
950 951

	create_reader:
952
		if (cxt.cur_ops->readlock == NULL || (j >= cxt.nrealreaders_stress))
953 954
			continue;
		/* Create reader. */
955
		firsterr = torture_create_kthread(lock_torture_reader, &cxt.lrsa[j],
956 957 958
						  reader_tasks[j]);
		if (firsterr)
			goto unwind;
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976
	}
	if (stat_interval > 0) {
		firsterr = torture_create_kthread(lock_torture_stats, NULL,
						  stats_task);
		if (firsterr)
			goto unwind;
	}
	torture_init_end();
	return 0;

unwind:
	torture_init_end();
	lock_torture_cleanup();
	return firsterr;
}

module_init(lock_torture_init);
module_exit(lock_torture_cleanup);