]> bbs.cooldavid.org Git - net-next-2.6.git/blame - kernel/rcutorture.c
binfmt_misc.c: avoid potential kernel stack overflow
[net-next-2.6.git] / kernel / rcutorture.c
CommitLineData
a241ec65 1/*
29766f1e 2 * Read-Copy Update module-based torture test facility
a241ec65
PM
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, write to the Free Software
16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 *
b772e1dd 18 * Copyright (C) IBM Corporation, 2005, 2006
a241ec65
PM
19 *
20 * Authors: Paul E. McKenney <paulmck@us.ibm.com>
b772e1dd 21 * Josh Triplett <josh@freedesktop.org>
a241ec65
PM
22 *
23 * See also: Documentation/RCU/torture.txt
24 */
25#include <linux/types.h>
26#include <linux/kernel.h>
27#include <linux/init.h>
28#include <linux/module.h>
29#include <linux/kthread.h>
30#include <linux/err.h>
31#include <linux/spinlock.h>
32#include <linux/smp.h>
33#include <linux/rcupdate.h>
34#include <linux/interrupt.h>
35#include <linux/sched.h>
36#include <asm/atomic.h>
37#include <linux/bitops.h>
a241ec65
PM
38#include <linux/completion.h>
39#include <linux/moduleparam.h>
40#include <linux/percpu.h>
41#include <linux/notifier.h>
83144186 42#include <linux/freezer.h>
a241ec65 43#include <linux/cpu.h>
a241ec65
PM
44#include <linux/delay.h>
45#include <linux/byteorder/swabb.h>
46#include <linux/stat.h>
b2896d2e 47#include <linux/srcu.h>
a241ec65
PM
48
49MODULE_LICENSE("GPL");
b772e1dd
JT
50MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com> and "
51 "Josh Triplett <josh@freedesktop.org>");
a241ec65 52
4802211c 53static int nreaders = -1; /* # reader threads, defaults to 2*ncpus */
b772e1dd 54static int nfakewriters = 4; /* # fake writer threads */
d84f5203 55static int stat_interval; /* Interval between stats, in seconds. */
a241ec65 56 /* Defaults to "only at end of test". */
d84f5203
SV
57static int verbose; /* Print more debug info. */
58static int test_no_idle_hz; /* Test RCU's support for tickless idle CPUs. */
59static int shuffle_interval = 5; /* Interval between shuffles (in sec)*/
20d2e428 60static char *torture_type = "rcu"; /* What RCU implementation to torture. */
a241ec65 61
d6ad6711 62module_param(nreaders, int, 0444);
a241ec65 63MODULE_PARM_DESC(nreaders, "Number of RCU reader threads");
d6ad6711 64module_param(nfakewriters, int, 0444);
b772e1dd 65MODULE_PARM_DESC(nfakewriters, "Number of RCU fake writer threads");
d6ad6711 66module_param(stat_interval, int, 0444);
a241ec65 67MODULE_PARM_DESC(stat_interval, "Number of seconds between stats printk()s");
d6ad6711 68module_param(verbose, bool, 0444);
a241ec65 69MODULE_PARM_DESC(verbose, "Enable verbose debugging printk()s");
d6ad6711 70module_param(test_no_idle_hz, bool, 0444);
d84f5203 71MODULE_PARM_DESC(test_no_idle_hz, "Test support for tickless idle CPUs");
d6ad6711 72module_param(shuffle_interval, int, 0444);
d84f5203 73MODULE_PARM_DESC(shuffle_interval, "Number of seconds between shuffles");
d6ad6711 74module_param(torture_type, charp, 0444);
b2896d2e 75MODULE_PARM_DESC(torture_type, "Type of RCU to torture (rcu, rcu_bh, srcu)");
72e9bb54
PM
76
77#define TORTURE_FLAG "-torture:"
a241ec65 78#define PRINTK_STRING(s) \
72e9bb54 79 do { printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
a241ec65 80#define VERBOSE_PRINTK_STRING(s) \
72e9bb54 81 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG s "\n", torture_type); } while (0)
a241ec65 82#define VERBOSE_PRINTK_ERRSTRING(s) \
72e9bb54 83 do { if (verbose) printk(KERN_ALERT "%s" TORTURE_FLAG "!!! " s "\n", torture_type); } while (0)
a241ec65
PM
84
85static char printk_buf[4096];
86
87static int nrealreaders;
88static struct task_struct *writer_task;
b772e1dd 89static struct task_struct **fakewriter_tasks;
a241ec65
PM
90static struct task_struct **reader_tasks;
91static struct task_struct *stats_task;
d84f5203 92static struct task_struct *shuffler_task;
a241ec65
PM
93
94#define RCU_TORTURE_PIPE_LEN 10
95
96struct rcu_torture {
97 struct rcu_head rtort_rcu;
98 int rtort_pipe_count;
99 struct list_head rtort_free;
996417d2 100 int rtort_mbtest;
a241ec65
PM
101};
102
103static int fullstop = 0; /* stop generating callbacks at test end. */
104static LIST_HEAD(rcu_torture_freelist);
105static struct rcu_torture *rcu_torture_current = NULL;
106static long rcu_torture_current_version = 0;
107static struct rcu_torture rcu_tortures[10 * RCU_TORTURE_PIPE_LEN];
108static DEFINE_SPINLOCK(rcu_torture_lock);
109static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_count) =
110 { 0 };
111static DEFINE_PER_CPU(long [RCU_TORTURE_PIPE_LEN + 1], rcu_torture_batch) =
112 { 0 };
113static atomic_t rcu_torture_wcount[RCU_TORTURE_PIPE_LEN + 1];
b2896d2e
PM
114static atomic_t n_rcu_torture_alloc;
115static atomic_t n_rcu_torture_alloc_fail;
116static atomic_t n_rcu_torture_free;
117static atomic_t n_rcu_torture_mberror;
118static atomic_t n_rcu_torture_error;
e3033736 119static struct list_head rcu_torture_removed;
a241ec65
PM
120
121/*
122 * Allocate an element from the rcu_tortures pool.
123 */
97a41e26 124static struct rcu_torture *
a241ec65
PM
125rcu_torture_alloc(void)
126{
127 struct list_head *p;
128
adac1665 129 spin_lock_bh(&rcu_torture_lock);
a241ec65
PM
130 if (list_empty(&rcu_torture_freelist)) {
131 atomic_inc(&n_rcu_torture_alloc_fail);
adac1665 132 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
133 return NULL;
134 }
135 atomic_inc(&n_rcu_torture_alloc);
136 p = rcu_torture_freelist.next;
137 list_del_init(p);
adac1665 138 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
139 return container_of(p, struct rcu_torture, rtort_free);
140}
141
142/*
143 * Free an element to the rcu_tortures pool.
144 */
145static void
146rcu_torture_free(struct rcu_torture *p)
147{
148 atomic_inc(&n_rcu_torture_free);
adac1665 149 spin_lock_bh(&rcu_torture_lock);
a241ec65 150 list_add_tail(&p->rtort_free, &rcu_torture_freelist);
adac1665 151 spin_unlock_bh(&rcu_torture_lock);
a241ec65
PM
152}
153
a241ec65
PM
154struct rcu_random_state {
155 unsigned long rrs_state;
75cfef32 156 long rrs_count;
a241ec65
PM
157};
158
159#define RCU_RANDOM_MULT 39916801 /* prime */
160#define RCU_RANDOM_ADD 479001701 /* prime */
161#define RCU_RANDOM_REFRESH 10000
162
163#define DEFINE_RCU_RANDOM(name) struct rcu_random_state name = { 0, 0 }
164
165/*
166 * Crude but fast random-number generator. Uses a linear congruential
c17ac855 167 * generator, with occasional help from cpu_clock().
a241ec65 168 */
75cfef32 169static unsigned long
a241ec65
PM
170rcu_random(struct rcu_random_state *rrsp)
171{
a241ec65 172 if (--rrsp->rrs_count < 0) {
c17ac855
PM
173 rrsp->rrs_state +=
174 (unsigned long)cpu_clock(raw_smp_processor_id());
a241ec65
PM
175 rrsp->rrs_count = RCU_RANDOM_REFRESH;
176 }
177 rrsp->rrs_state = rrsp->rrs_state * RCU_RANDOM_MULT + RCU_RANDOM_ADD;
178 return swahw32(rrsp->rrs_state);
179}
180
72e9bb54
PM
181/*
182 * Operations vector for selecting different types of tests.
183 */
184
185struct rcu_torture_ops {
186 void (*init)(void);
187 void (*cleanup)(void);
188 int (*readlock)(void);
b2896d2e 189 void (*readdelay)(struct rcu_random_state *rrsp);
72e9bb54
PM
190 void (*readunlock)(int idx);
191 int (*completed)(void);
192 void (*deferredfree)(struct rcu_torture *p);
b772e1dd 193 void (*sync)(void);
72e9bb54
PM
194 int (*stats)(char *page);
195 char *name;
196};
197static struct rcu_torture_ops *cur_ops = NULL;
198
199/*
200 * Definitions for rcu torture testing.
201 */
202
a49a4af7 203static int rcu_torture_read_lock(void) __acquires(RCU)
72e9bb54
PM
204{
205 rcu_read_lock();
206 return 0;
207}
208
b2896d2e
PM
209static void rcu_read_delay(struct rcu_random_state *rrsp)
210{
211 long delay;
212 const long longdelay = 200;
213
214 /* We want there to be long-running readers, but not all the time. */
215
216 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay);
217 if (!delay)
218 udelay(longdelay);
219}
220
a49a4af7 221static void rcu_torture_read_unlock(int idx) __releases(RCU)
72e9bb54
PM
222{
223 rcu_read_unlock();
224}
225
226static int rcu_torture_completed(void)
227{
228 return rcu_batches_completed();
229}
230
231static void
232rcu_torture_cb(struct rcu_head *p)
233{
234 int i;
235 struct rcu_torture *rp = container_of(p, struct rcu_torture, rtort_rcu);
236
237 if (fullstop) {
238 /* Test is ending, just drop callbacks on the floor. */
239 /* The next initialization will pick up the pieces. */
240 return;
241 }
242 i = rp->rtort_pipe_count;
243 if (i > RCU_TORTURE_PIPE_LEN)
244 i = RCU_TORTURE_PIPE_LEN;
245 atomic_inc(&rcu_torture_wcount[i]);
246 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
247 rp->rtort_mbtest = 0;
248 rcu_torture_free(rp);
249 } else
250 cur_ops->deferredfree(rp);
251}
252
253static void rcu_torture_deferred_free(struct rcu_torture *p)
254{
255 call_rcu(&p->rtort_rcu, rcu_torture_cb);
256}
257
258static struct rcu_torture_ops rcu_ops = {
259 .init = NULL,
260 .cleanup = NULL,
261 .readlock = rcu_torture_read_lock,
b2896d2e 262 .readdelay = rcu_read_delay,
72e9bb54
PM
263 .readunlock = rcu_torture_read_unlock,
264 .completed = rcu_torture_completed,
265 .deferredfree = rcu_torture_deferred_free,
b772e1dd 266 .sync = synchronize_rcu,
72e9bb54
PM
267 .stats = NULL,
268 .name = "rcu"
269};
270
e3033736
JT
271static void rcu_sync_torture_deferred_free(struct rcu_torture *p)
272{
273 int i;
274 struct rcu_torture *rp;
275 struct rcu_torture *rp1;
276
277 cur_ops->sync();
278 list_add(&p->rtort_free, &rcu_torture_removed);
279 list_for_each_entry_safe(rp, rp1, &rcu_torture_removed, rtort_free) {
280 i = rp->rtort_pipe_count;
281 if (i > RCU_TORTURE_PIPE_LEN)
282 i = RCU_TORTURE_PIPE_LEN;
283 atomic_inc(&rcu_torture_wcount[i]);
284 if (++rp->rtort_pipe_count >= RCU_TORTURE_PIPE_LEN) {
285 rp->rtort_mbtest = 0;
286 list_del(&rp->rtort_free);
287 rcu_torture_free(rp);
288 }
289 }
290}
291
292static void rcu_sync_torture_init(void)
293{
294 INIT_LIST_HEAD(&rcu_torture_removed);
295}
296
20d2e428
JT
297static struct rcu_torture_ops rcu_sync_ops = {
298 .init = rcu_sync_torture_init,
299 .cleanup = NULL,
300 .readlock = rcu_torture_read_lock,
301 .readdelay = rcu_read_delay,
302 .readunlock = rcu_torture_read_unlock,
303 .completed = rcu_torture_completed,
304 .deferredfree = rcu_sync_torture_deferred_free,
305 .sync = synchronize_rcu,
306 .stats = NULL,
307 .name = "rcu_sync"
308};
309
c32e0660
PM
310/*
311 * Definitions for rcu_bh torture testing.
312 */
313
a49a4af7 314static int rcu_bh_torture_read_lock(void) __acquires(RCU_BH)
c32e0660
PM
315{
316 rcu_read_lock_bh();
317 return 0;
318}
319
a49a4af7 320static void rcu_bh_torture_read_unlock(int idx) __releases(RCU_BH)
c32e0660
PM
321{
322 rcu_read_unlock_bh();
323}
324
325static int rcu_bh_torture_completed(void)
326{
327 return rcu_batches_completed_bh();
328}
329
330static void rcu_bh_torture_deferred_free(struct rcu_torture *p)
331{
332 call_rcu_bh(&p->rtort_rcu, rcu_torture_cb);
333}
334
b772e1dd
JT
335struct rcu_bh_torture_synchronize {
336 struct rcu_head head;
337 struct completion completion;
338};
339
340static void rcu_bh_torture_wakeme_after_cb(struct rcu_head *head)
341{
342 struct rcu_bh_torture_synchronize *rcu;
343
344 rcu = container_of(head, struct rcu_bh_torture_synchronize, head);
345 complete(&rcu->completion);
346}
347
348static void rcu_bh_torture_synchronize(void)
349{
350 struct rcu_bh_torture_synchronize rcu;
351
352 init_completion(&rcu.completion);
353 call_rcu_bh(&rcu.head, rcu_bh_torture_wakeme_after_cb);
354 wait_for_completion(&rcu.completion);
355}
356
c32e0660
PM
357static struct rcu_torture_ops rcu_bh_ops = {
358 .init = NULL,
359 .cleanup = NULL,
360 .readlock = rcu_bh_torture_read_lock,
b2896d2e 361 .readdelay = rcu_read_delay, /* just reuse rcu's version. */
c32e0660
PM
362 .readunlock = rcu_bh_torture_read_unlock,
363 .completed = rcu_bh_torture_completed,
364 .deferredfree = rcu_bh_torture_deferred_free,
b772e1dd 365 .sync = rcu_bh_torture_synchronize,
c32e0660
PM
366 .stats = NULL,
367 .name = "rcu_bh"
368};
369
11a14701
JT
370static struct rcu_torture_ops rcu_bh_sync_ops = {
371 .init = rcu_sync_torture_init,
372 .cleanup = NULL,
373 .readlock = rcu_bh_torture_read_lock,
374 .readdelay = rcu_read_delay, /* just reuse rcu's version. */
375 .readunlock = rcu_bh_torture_read_unlock,
376 .completed = rcu_bh_torture_completed,
377 .deferredfree = rcu_sync_torture_deferred_free,
378 .sync = rcu_bh_torture_synchronize,
379 .stats = NULL,
380 .name = "rcu_bh_sync"
381};
382
b2896d2e
PM
383/*
384 * Definitions for srcu torture testing.
385 */
386
387static struct srcu_struct srcu_ctl;
b2896d2e
PM
388
389static void srcu_torture_init(void)
390{
391 init_srcu_struct(&srcu_ctl);
e3033736 392 rcu_sync_torture_init();
b2896d2e
PM
393}
394
395static void srcu_torture_cleanup(void)
396{
397 synchronize_srcu(&srcu_ctl);
398 cleanup_srcu_struct(&srcu_ctl);
399}
400
012d3ca8 401static int srcu_torture_read_lock(void) __acquires(&srcu_ctl)
b2896d2e
PM
402{
403 return srcu_read_lock(&srcu_ctl);
404}
405
406static void srcu_read_delay(struct rcu_random_state *rrsp)
407{
408 long delay;
409 const long uspertick = 1000000 / HZ;
410 const long longdelay = 10;
411
412 /* We want there to be long-running readers, but not all the time. */
413
414 delay = rcu_random(rrsp) % (nrealreaders * 2 * longdelay * uspertick);
415 if (!delay)
416 schedule_timeout_interruptible(longdelay);
417}
418
012d3ca8 419static void srcu_torture_read_unlock(int idx) __releases(&srcu_ctl)
b2896d2e
PM
420{
421 srcu_read_unlock(&srcu_ctl, idx);
422}
423
424static int srcu_torture_completed(void)
425{
426 return srcu_batches_completed(&srcu_ctl);
427}
428
b772e1dd
JT
429static void srcu_torture_synchronize(void)
430{
431 synchronize_srcu(&srcu_ctl);
432}
433
b2896d2e
PM
434static int srcu_torture_stats(char *page)
435{
436 int cnt = 0;
437 int cpu;
438 int idx = srcu_ctl.completed & 0x1;
439
440 cnt += sprintf(&page[cnt], "%s%s per-CPU(idx=%d):",
441 torture_type, TORTURE_FLAG, idx);
442 for_each_possible_cpu(cpu) {
443 cnt += sprintf(&page[cnt], " %d(%d,%d)", cpu,
444 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[!idx],
445 per_cpu_ptr(srcu_ctl.per_cpu_ref, cpu)->c[idx]);
446 }
447 cnt += sprintf(&page[cnt], "\n");
448 return cnt;
449}
450
451static struct rcu_torture_ops srcu_ops = {
452 .init = srcu_torture_init,
453 .cleanup = srcu_torture_cleanup,
454 .readlock = srcu_torture_read_lock,
455 .readdelay = srcu_read_delay,
456 .readunlock = srcu_torture_read_unlock,
457 .completed = srcu_torture_completed,
e3033736 458 .deferredfree = rcu_sync_torture_deferred_free,
b772e1dd 459 .sync = srcu_torture_synchronize,
b2896d2e
PM
460 .stats = srcu_torture_stats,
461 .name = "srcu"
462};
463
4b6c2cca
JT
464/*
465 * Definitions for sched torture testing.
466 */
467
468static int sched_torture_read_lock(void)
469{
470 preempt_disable();
471 return 0;
472}
473
474static void sched_torture_read_unlock(int idx)
475{
476 preempt_enable();
477}
478
479static int sched_torture_completed(void)
480{
481 return 0;
482}
483
484static void sched_torture_synchronize(void)
485{
486 synchronize_sched();
487}
488
489static struct rcu_torture_ops sched_ops = {
490 .init = rcu_sync_torture_init,
491 .cleanup = NULL,
492 .readlock = sched_torture_read_lock,
493 .readdelay = rcu_read_delay, /* just reuse rcu's version. */
494 .readunlock = sched_torture_read_unlock,
495 .completed = sched_torture_completed,
496 .deferredfree = rcu_sync_torture_deferred_free,
497 .sync = sched_torture_synchronize,
498 .stats = NULL,
499 .name = "sched"
500};
501
a241ec65
PM
502/*
503 * RCU torture writer kthread. Repeatedly substitutes a new structure
504 * for that pointed to by rcu_torture_current, freeing the old structure
505 * after a series of grace periods (the "pipeline").
506 */
507static int
508rcu_torture_writer(void *arg)
509{
510 int i;
511 long oldbatch = rcu_batches_completed();
512 struct rcu_torture *rp;
513 struct rcu_torture *old_rp;
514 static DEFINE_RCU_RANDOM(rand);
515
516 VERBOSE_PRINTK_STRING("rcu_torture_writer task started");
dbdf65b1
IM
517 set_user_nice(current, 19);
518
a241ec65
PM
519 do {
520 schedule_timeout_uninterruptible(1);
a241ec65
PM
521 if ((rp = rcu_torture_alloc()) == NULL)
522 continue;
523 rp->rtort_pipe_count = 0;
524 udelay(rcu_random(&rand) & 0x3ff);
525 old_rp = rcu_torture_current;
996417d2 526 rp->rtort_mbtest = 1;
a241ec65
PM
527 rcu_assign_pointer(rcu_torture_current, rp);
528 smp_wmb();
c8e5b163 529 if (old_rp) {
a241ec65
PM
530 i = old_rp->rtort_pipe_count;
531 if (i > RCU_TORTURE_PIPE_LEN)
532 i = RCU_TORTURE_PIPE_LEN;
533 atomic_inc(&rcu_torture_wcount[i]);
534 old_rp->rtort_pipe_count++;
72e9bb54 535 cur_ops->deferredfree(old_rp);
a241ec65
PM
536 }
537 rcu_torture_current_version++;
72e9bb54 538 oldbatch = cur_ops->completed();
a241ec65
PM
539 } while (!kthread_should_stop() && !fullstop);
540 VERBOSE_PRINTK_STRING("rcu_torture_writer task stopping");
541 while (!kthread_should_stop())
542 schedule_timeout_uninterruptible(1);
543 return 0;
544}
545
b772e1dd
JT
546/*
547 * RCU torture fake writer kthread. Repeatedly calls sync, with a random
548 * delay between calls.
549 */
550static int
551rcu_torture_fakewriter(void *arg)
552{
553 DEFINE_RCU_RANDOM(rand);
554
555 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task started");
556 set_user_nice(current, 19);
557
558 do {
559 schedule_timeout_uninterruptible(1 + rcu_random(&rand)%10);
560 udelay(rcu_random(&rand) & 0x3ff);
561 cur_ops->sync();
562 } while (!kthread_should_stop() && !fullstop);
563
564 VERBOSE_PRINTK_STRING("rcu_torture_fakewriter task stopping");
565 while (!kthread_should_stop())
566 schedule_timeout_uninterruptible(1);
567 return 0;
568}
569
a241ec65
PM
570/*
571 * RCU torture reader kthread. Repeatedly dereferences rcu_torture_current,
572 * incrementing the corresponding element of the pipeline array. The
573 * counter in the element should never be greater than 1, otherwise, the
574 * RCU implementation is broken.
575 */
576static int
577rcu_torture_reader(void *arg)
578{
579 int completed;
72e9bb54 580 int idx;
a241ec65
PM
581 DEFINE_RCU_RANDOM(rand);
582 struct rcu_torture *p;
583 int pipe_count;
584
585 VERBOSE_PRINTK_STRING("rcu_torture_reader task started");
dbdf65b1
IM
586 set_user_nice(current, 19);
587
a241ec65 588 do {
72e9bb54
PM
589 idx = cur_ops->readlock();
590 completed = cur_ops->completed();
a241ec65
PM
591 p = rcu_dereference(rcu_torture_current);
592 if (p == NULL) {
593 /* Wait for rcu_torture_writer to get underway */
72e9bb54 594 cur_ops->readunlock(idx);
a241ec65
PM
595 schedule_timeout_interruptible(HZ);
596 continue;
597 }
996417d2
PM
598 if (p->rtort_mbtest == 0)
599 atomic_inc(&n_rcu_torture_mberror);
b2896d2e 600 cur_ops->readdelay(&rand);
a241ec65
PM
601 preempt_disable();
602 pipe_count = p->rtort_pipe_count;
603 if (pipe_count > RCU_TORTURE_PIPE_LEN) {
604 /* Should not happen, but... */
605 pipe_count = RCU_TORTURE_PIPE_LEN;
606 }
607 ++__get_cpu_var(rcu_torture_count)[pipe_count];
72e9bb54 608 completed = cur_ops->completed() - completed;
a241ec65
PM
609 if (completed > RCU_TORTURE_PIPE_LEN) {
610 /* Should not happen, but... */
611 completed = RCU_TORTURE_PIPE_LEN;
612 }
613 ++__get_cpu_var(rcu_torture_batch)[completed];
614 preempt_enable();
72e9bb54 615 cur_ops->readunlock(idx);
a241ec65
PM
616 schedule();
617 } while (!kthread_should_stop() && !fullstop);
618 VERBOSE_PRINTK_STRING("rcu_torture_reader task stopping");
619 while (!kthread_should_stop())
620 schedule_timeout_uninterruptible(1);
621 return 0;
622}
623
624/*
625 * Create an RCU-torture statistics message in the specified buffer.
626 */
627static int
628rcu_torture_printk(char *page)
629{
630 int cnt = 0;
631 int cpu;
632 int i;
633 long pipesummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
634 long batchsummary[RCU_TORTURE_PIPE_LEN + 1] = { 0 };
635
0a945022 636 for_each_possible_cpu(cpu) {
a241ec65
PM
637 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
638 pipesummary[i] += per_cpu(rcu_torture_count, cpu)[i];
639 batchsummary[i] += per_cpu(rcu_torture_batch, cpu)[i];
640 }
641 }
642 for (i = RCU_TORTURE_PIPE_LEN - 1; i >= 0; i--) {
643 if (pipesummary[i] != 0)
644 break;
645 }
72e9bb54 646 cnt += sprintf(&page[cnt], "%s%s ", torture_type, TORTURE_FLAG);
a241ec65 647 cnt += sprintf(&page[cnt],
996417d2
PM
648 "rtc: %p ver: %ld tfle: %d rta: %d rtaf: %d rtf: %d "
649 "rtmbe: %d",
a241ec65
PM
650 rcu_torture_current,
651 rcu_torture_current_version,
652 list_empty(&rcu_torture_freelist),
653 atomic_read(&n_rcu_torture_alloc),
654 atomic_read(&n_rcu_torture_alloc_fail),
996417d2
PM
655 atomic_read(&n_rcu_torture_free),
656 atomic_read(&n_rcu_torture_mberror));
657 if (atomic_read(&n_rcu_torture_mberror) != 0)
658 cnt += sprintf(&page[cnt], " !!!");
72e9bb54 659 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
996417d2 660 if (i > 1) {
a241ec65 661 cnt += sprintf(&page[cnt], "!!! ");
996417d2
PM
662 atomic_inc(&n_rcu_torture_error);
663 }
a241ec65
PM
664 cnt += sprintf(&page[cnt], "Reader Pipe: ");
665 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
666 cnt += sprintf(&page[cnt], " %ld", pipesummary[i]);
72e9bb54 667 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
a241ec65 668 cnt += sprintf(&page[cnt], "Reader Batch: ");
72e9bb54 669 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
a241ec65 670 cnt += sprintf(&page[cnt], " %ld", batchsummary[i]);
72e9bb54 671 cnt += sprintf(&page[cnt], "\n%s%s ", torture_type, TORTURE_FLAG);
a241ec65
PM
672 cnt += sprintf(&page[cnt], "Free-Block Circulation: ");
673 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
674 cnt += sprintf(&page[cnt], " %d",
675 atomic_read(&rcu_torture_wcount[i]));
676 }
677 cnt += sprintf(&page[cnt], "\n");
c8e5b163 678 if (cur_ops->stats)
72e9bb54 679 cnt += cur_ops->stats(&page[cnt]);
a241ec65
PM
680 return cnt;
681}
682
683/*
684 * Print torture statistics. Caller must ensure that there is only
685 * one call to this function at a given time!!! This is normally
686 * accomplished by relying on the module system to only have one copy
687 * of the module loaded, and then by giving the rcu_torture_stats
688 * kthread full control (or the init/cleanup functions when rcu_torture_stats
689 * thread is not running).
690 */
691static void
692rcu_torture_stats_print(void)
693{
694 int cnt;
695
696 cnt = rcu_torture_printk(printk_buf);
697 printk(KERN_ALERT "%s", printk_buf);
698}
699
700/*
701 * Periodically prints torture statistics, if periodic statistics printing
702 * was specified via the stat_interval module parameter.
703 *
704 * No need to worry about fullstop here, since this one doesn't reference
705 * volatile state or register callbacks.
706 */
707static int
708rcu_torture_stats(void *arg)
709{
710 VERBOSE_PRINTK_STRING("rcu_torture_stats task started");
711 do {
712 schedule_timeout_interruptible(stat_interval * HZ);
713 rcu_torture_stats_print();
714 } while (!kthread_should_stop());
715 VERBOSE_PRINTK_STRING("rcu_torture_stats task stopping");
716 return 0;
717}
718
d84f5203
SV
719static int rcu_idle_cpu; /* Force all torture tasks off this CPU */
720
721/* Shuffle tasks such that we allow @rcu_idle_cpu to become idle. A special case
722 * is when @rcu_idle_cpu = -1, when we allow the tasks to run on all CPUs.
723 */
b2896d2e 724static void rcu_torture_shuffle_tasks(void)
d84f5203 725{
f70316da 726 cpumask_t tmp_mask;
d84f5203
SV
727 int i;
728
f70316da 729 cpus_setall(tmp_mask);
86ef5c9a 730 get_online_cpus();
d84f5203
SV
731
732 /* No point in shuffling if there is only one online CPU (ex: UP) */
733 if (num_online_cpus() == 1) {
86ef5c9a 734 put_online_cpus();
d84f5203
SV
735 return;
736 }
737
738 if (rcu_idle_cpu != -1)
739 cpu_clear(rcu_idle_cpu, tmp_mask);
740
f70316da 741 set_cpus_allowed_ptr(current, &tmp_mask);
d84f5203 742
c8e5b163 743 if (reader_tasks) {
d84f5203
SV
744 for (i = 0; i < nrealreaders; i++)
745 if (reader_tasks[i])
f70316da
MT
746 set_cpus_allowed_ptr(reader_tasks[i],
747 &tmp_mask);
d84f5203
SV
748 }
749
c8e5b163 750 if (fakewriter_tasks) {
b772e1dd
JT
751 for (i = 0; i < nfakewriters; i++)
752 if (fakewriter_tasks[i])
f70316da
MT
753 set_cpus_allowed_ptr(fakewriter_tasks[i],
754 &tmp_mask);
b772e1dd
JT
755 }
756
d84f5203 757 if (writer_task)
f70316da 758 set_cpus_allowed_ptr(writer_task, &tmp_mask);
d84f5203
SV
759
760 if (stats_task)
f70316da 761 set_cpus_allowed_ptr(stats_task, &tmp_mask);
d84f5203
SV
762
763 if (rcu_idle_cpu == -1)
764 rcu_idle_cpu = num_online_cpus() - 1;
765 else
766 rcu_idle_cpu--;
767
86ef5c9a 768 put_online_cpus();
d84f5203
SV
769}
770
771/* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
772 * system to become idle at a time and cut off its timer ticks. This is meant
773 * to test the support for such tickless idle CPU in RCU.
774 */
775static int
776rcu_torture_shuffle(void *arg)
777{
778 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task started");
779 do {
780 schedule_timeout_interruptible(shuffle_interval * HZ);
781 rcu_torture_shuffle_tasks();
782 } while (!kthread_should_stop());
783 VERBOSE_PRINTK_STRING("rcu_torture_shuffle task stopping");
784 return 0;
785}
786
95c38322
PM
787static inline void
788rcu_torture_print_module_parms(char *tag)
789{
b772e1dd
JT
790 printk(KERN_ALERT "%s" TORTURE_FLAG
791 "--- %s: nreaders=%d nfakewriters=%d "
95c38322
PM
792 "stat_interval=%d verbose=%d test_no_idle_hz=%d "
793 "shuffle_interval = %d\n",
b772e1dd
JT
794 torture_type, tag, nrealreaders, nfakewriters,
795 stat_interval, verbose, test_no_idle_hz, shuffle_interval);
95c38322
PM
796}
797
a241ec65
PM
798static void
799rcu_torture_cleanup(void)
800{
801 int i;
802
803 fullstop = 1;
c8e5b163 804 if (shuffler_task) {
d84f5203
SV
805 VERBOSE_PRINTK_STRING("Stopping rcu_torture_shuffle task");
806 kthread_stop(shuffler_task);
807 }
808 shuffler_task = NULL;
809
c8e5b163 810 if (writer_task) {
a241ec65
PM
811 VERBOSE_PRINTK_STRING("Stopping rcu_torture_writer task");
812 kthread_stop(writer_task);
813 }
814 writer_task = NULL;
815
c8e5b163 816 if (reader_tasks) {
a241ec65 817 for (i = 0; i < nrealreaders; i++) {
c8e5b163 818 if (reader_tasks[i]) {
a241ec65
PM
819 VERBOSE_PRINTK_STRING(
820 "Stopping rcu_torture_reader task");
821 kthread_stop(reader_tasks[i]);
822 }
823 reader_tasks[i] = NULL;
824 }
825 kfree(reader_tasks);
826 reader_tasks = NULL;
827 }
828 rcu_torture_current = NULL;
829
c8e5b163 830 if (fakewriter_tasks) {
b772e1dd 831 for (i = 0; i < nfakewriters; i++) {
c8e5b163 832 if (fakewriter_tasks[i]) {
b772e1dd
JT
833 VERBOSE_PRINTK_STRING(
834 "Stopping rcu_torture_fakewriter task");
835 kthread_stop(fakewriter_tasks[i]);
836 }
837 fakewriter_tasks[i] = NULL;
838 }
839 kfree(fakewriter_tasks);
840 fakewriter_tasks = NULL;
841 }
842
c8e5b163 843 if (stats_task) {
a241ec65
PM
844 VERBOSE_PRINTK_STRING("Stopping rcu_torture_stats task");
845 kthread_stop(stats_task);
846 }
847 stats_task = NULL;
848
849 /* Wait for all RCU callbacks to fire. */
89d46b87 850 rcu_barrier();
a241ec65 851
a241ec65 852 rcu_torture_stats_print(); /* -After- the stats thread is stopped! */
72e9bb54 853
c8e5b163 854 if (cur_ops->cleanup)
72e9bb54 855 cur_ops->cleanup();
95c38322
PM
856 if (atomic_read(&n_rcu_torture_error))
857 rcu_torture_print_module_parms("End of test: FAILURE");
858 else
859 rcu_torture_print_module_parms("End of test: SUCCESS");
a241ec65
PM
860}
861
6f8bc500 862static int __init
a241ec65
PM
863rcu_torture_init(void)
864{
865 int i;
866 int cpu;
867 int firsterr = 0;
ade5fb81
JT
868 static struct rcu_torture_ops *torture_ops[] =
869 { &rcu_ops, &rcu_sync_ops, &rcu_bh_ops, &rcu_bh_sync_ops,
870 &srcu_ops, &sched_ops, };
a241ec65
PM
871
872 /* Process args and tell the world that the torturer is on the job. */
ade5fb81 873 for (i = 0; i < ARRAY_SIZE(torture_ops); i++) {
72e9bb54 874 cur_ops = torture_ops[i];
ade5fb81 875 if (strcmp(torture_type, cur_ops->name) == 0)
72e9bb54 876 break;
72e9bb54 877 }
ade5fb81 878 if (i == ARRAY_SIZE(torture_ops)) {
72e9bb54
PM
879 printk(KERN_ALERT "rcutorture: invalid torture type: \"%s\"\n",
880 torture_type);
881 return (-EINVAL);
882 }
c8e5b163 883 if (cur_ops->init)
72e9bb54
PM
884 cur_ops->init(); /* no "goto unwind" prior to this point!!! */
885
a241ec65
PM
886 if (nreaders >= 0)
887 nrealreaders = nreaders;
888 else
889 nrealreaders = 2 * num_online_cpus();
95c38322 890 rcu_torture_print_module_parms("Start of test");
a241ec65
PM
891 fullstop = 0;
892
893 /* Set up the freelist. */
894
895 INIT_LIST_HEAD(&rcu_torture_freelist);
788e770e 896 for (i = 0; i < ARRAY_SIZE(rcu_tortures); i++) {
996417d2 897 rcu_tortures[i].rtort_mbtest = 0;
a241ec65
PM
898 list_add_tail(&rcu_tortures[i].rtort_free,
899 &rcu_torture_freelist);
900 }
901
902 /* Initialize the statistics so that each run gets its own numbers. */
903
904 rcu_torture_current = NULL;
905 rcu_torture_current_version = 0;
906 atomic_set(&n_rcu_torture_alloc, 0);
907 atomic_set(&n_rcu_torture_alloc_fail, 0);
908 atomic_set(&n_rcu_torture_free, 0);
996417d2
PM
909 atomic_set(&n_rcu_torture_mberror, 0);
910 atomic_set(&n_rcu_torture_error, 0);
a241ec65
PM
911 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++)
912 atomic_set(&rcu_torture_wcount[i], 0);
0a945022 913 for_each_possible_cpu(cpu) {
a241ec65
PM
914 for (i = 0; i < RCU_TORTURE_PIPE_LEN + 1; i++) {
915 per_cpu(rcu_torture_count, cpu)[i] = 0;
916 per_cpu(rcu_torture_batch, cpu)[i] = 0;
917 }
918 }
919
920 /* Start up the kthreads. */
921
922 VERBOSE_PRINTK_STRING("Creating rcu_torture_writer task");
923 writer_task = kthread_run(rcu_torture_writer, NULL,
924 "rcu_torture_writer");
925 if (IS_ERR(writer_task)) {
926 firsterr = PTR_ERR(writer_task);
927 VERBOSE_PRINTK_ERRSTRING("Failed to create writer");
928 writer_task = NULL;
929 goto unwind;
930 }
b772e1dd
JT
931 fakewriter_tasks = kzalloc(nfakewriters * sizeof(fakewriter_tasks[0]),
932 GFP_KERNEL);
933 if (fakewriter_tasks == NULL) {
934 VERBOSE_PRINTK_ERRSTRING("out of memory");
935 firsterr = -ENOMEM;
936 goto unwind;
937 }
938 for (i = 0; i < nfakewriters; i++) {
939 VERBOSE_PRINTK_STRING("Creating rcu_torture_fakewriter task");
940 fakewriter_tasks[i] = kthread_run(rcu_torture_fakewriter, NULL,
941 "rcu_torture_fakewriter");
942 if (IS_ERR(fakewriter_tasks[i])) {
943 firsterr = PTR_ERR(fakewriter_tasks[i]);
944 VERBOSE_PRINTK_ERRSTRING("Failed to create fakewriter");
945 fakewriter_tasks[i] = NULL;
946 goto unwind;
947 }
948 }
2860aaba 949 reader_tasks = kzalloc(nrealreaders * sizeof(reader_tasks[0]),
a241ec65
PM
950 GFP_KERNEL);
951 if (reader_tasks == NULL) {
952 VERBOSE_PRINTK_ERRSTRING("out of memory");
953 firsterr = -ENOMEM;
954 goto unwind;
955 }
956 for (i = 0; i < nrealreaders; i++) {
957 VERBOSE_PRINTK_STRING("Creating rcu_torture_reader task");
958 reader_tasks[i] = kthread_run(rcu_torture_reader, NULL,
959 "rcu_torture_reader");
960 if (IS_ERR(reader_tasks[i])) {
961 firsterr = PTR_ERR(reader_tasks[i]);
962 VERBOSE_PRINTK_ERRSTRING("Failed to create reader");
963 reader_tasks[i] = NULL;
964 goto unwind;
965 }
966 }
967 if (stat_interval > 0) {
968 VERBOSE_PRINTK_STRING("Creating rcu_torture_stats task");
969 stats_task = kthread_run(rcu_torture_stats, NULL,
970 "rcu_torture_stats");
971 if (IS_ERR(stats_task)) {
972 firsterr = PTR_ERR(stats_task);
973 VERBOSE_PRINTK_ERRSTRING("Failed to create stats");
974 stats_task = NULL;
975 goto unwind;
976 }
977 }
d84f5203
SV
978 if (test_no_idle_hz) {
979 rcu_idle_cpu = num_online_cpus() - 1;
980 /* Create the shuffler thread */
981 shuffler_task = kthread_run(rcu_torture_shuffle, NULL,
982 "rcu_torture_shuffle");
983 if (IS_ERR(shuffler_task)) {
984 firsterr = PTR_ERR(shuffler_task);
985 VERBOSE_PRINTK_ERRSTRING("Failed to create shuffler");
986 shuffler_task = NULL;
987 goto unwind;
988 }
989 }
a241ec65
PM
990 return 0;
991
992unwind:
993 rcu_torture_cleanup();
994 return firsterr;
995}
996
997module_init(rcu_torture_init);
998module_exit(rcu_torture_cleanup);