2 * Common functions for in-kernel torture tests.
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.
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.
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.
18 * Copyright (C) IBM Corporation, 2014
20 * Author: Paul E. McKenney <paulmck@us.ibm.com>
21 * Based on kernel/rcu/torture.c.
24 #define pr_fmt(fmt) fmt
26 #include <linux/types.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
29 #include <linux/module.h>
30 #include <linux/kthread.h>
31 #include <linux/err.h>
32 #include <linux/spinlock.h>
33 #include <linux/smp.h>
34 #include <linux/interrupt.h>
35 #include <linux/sched.h>
36 #include <linux/sched/clock.h>
37 #include <linux/atomic.h>
38 #include <linux/bitops.h>
39 #include <linux/completion.h>
40 #include <linux/moduleparam.h>
41 #include <linux/percpu.h>
42 #include <linux/notifier.h>
43 #include <linux/reboot.h>
44 #include <linux/freezer.h>
45 #include <linux/cpu.h>
46 #include <linux/delay.h>
47 #include <linux/stat.h>
48 #include <linux/slab.h>
49 #include <linux/trace_clock.h>
50 #include <linux/ktime.h>
51 #include <asm/byteorder.h>
52 #include <linux/torture.h>
55 MODULE_LICENSE("GPL");
56 MODULE_AUTHOR("Paul E. McKenney <paulmck@us.ibm.com>");
58 static char *torture_type
;
61 /* Mediate rmmod and system shutdown. Concurrent rmmod & shutdown illegal! */
62 #define FULLSTOP_DONTSTOP 0 /* Normal operation. */
63 #define FULLSTOP_SHUTDOWN 1 /* System shutdown with torture running. */
64 #define FULLSTOP_RMMOD 2 /* Normal rmmod of torture. */
65 static int fullstop
= FULLSTOP_RMMOD
;
66 static DEFINE_MUTEX(fullstop_mutex
);
68 #ifdef CONFIG_HOTPLUG_CPU
71 * Variables for online-offline handling. Only present if CPU hotplug
72 * is enabled, otherwise does nothing.
75 static struct task_struct
*onoff_task
;
76 static long onoff_holdoff
;
77 static long onoff_interval
;
78 static long n_offline_attempts
;
79 static long n_offline_successes
;
80 static unsigned long sum_offline
;
81 static int min_offline
= -1;
82 static int max_offline
;
83 static long n_online_attempts
;
84 static long n_online_successes
;
85 static unsigned long sum_online
;
86 static int min_online
= -1;
87 static int max_online
;
90 * Attempt to take a CPU offline. Return false if the CPU is already
91 * offline or if it is not subject to CPU-hotplug operations. The
92 * caller can detect other failures by looking at the statistics.
94 bool torture_offline(int cpu
, long *n_offl_attempts
, long *n_offl_successes
,
95 unsigned long *sum_offl
, int *min_offl
, int *max_offl
)
99 unsigned long starttime
;
101 if (!cpu_online(cpu
) || !cpu_is_hotpluggable(cpu
))
105 pr_alert("%s" TORTURE_FLAG
106 "torture_onoff task: offlining %d\n",
109 (*n_offl_attempts
)++;
113 pr_alert("%s" TORTURE_FLAG
114 "torture_onoff task: offline %d failed: errno %d\n",
115 torture_type
, cpu
, ret
);
118 pr_alert("%s" TORTURE_FLAG
119 "torture_onoff task: offlined %d\n",
121 (*n_offl_successes
)++;
122 delta
= jiffies
- starttime
;
128 if (*min_offl
> delta
)
130 if (*max_offl
< delta
)
136 EXPORT_SYMBOL_GPL(torture_offline
);
139 * Attempt to bring a CPU online. Return false if the CPU is already
140 * online or if it is not subject to CPU-hotplug operations. The
141 * caller can detect other failures by looking at the statistics.
143 bool torture_online(int cpu
, long *n_onl_attempts
, long *n_onl_successes
,
144 unsigned long *sum_onl
, int *min_onl
, int *max_onl
)
148 unsigned long starttime
;
150 if (cpu_online(cpu
) || !cpu_is_hotpluggable(cpu
))
154 pr_alert("%s" TORTURE_FLAG
155 "torture_onoff task: onlining %d\n",
162 pr_alert("%s" TORTURE_FLAG
163 "torture_onoff task: online %d failed: errno %d\n",
164 torture_type
, cpu
, ret
);
167 pr_alert("%s" TORTURE_FLAG
168 "torture_onoff task: onlined %d\n",
170 (*n_onl_successes
)++;
171 delta
= jiffies
- starttime
;
177 if (*min_onl
> delta
)
179 if (*max_onl
< delta
)
185 EXPORT_SYMBOL_GPL(torture_online
);
188 * Execute random CPU-hotplug operations at the interval specified
189 * by the onoff_interval.
192 torture_onoff(void *arg
)
196 DEFINE_TORTURE_RANDOM(rand
);
199 VERBOSE_TOROUT_STRING("torture_onoff task started");
200 for_each_online_cpu(cpu
)
203 if (!IS_MODULE(CONFIG_TORTURE_TEST
))
204 for_each_possible_cpu(cpu
) {
208 if (ret
&& verbose
) {
209 pr_alert("%s" TORTURE_FLAG
210 "%s: Initial online %d: errno %d\n",
211 __func__
, torture_type
, cpu
, ret
);
216 VERBOSE_TOROUT_STRING("Only one CPU, so CPU-hotplug testing is disabled");
220 if (onoff_holdoff
> 0) {
221 VERBOSE_TOROUT_STRING("torture_onoff begin holdoff");
222 schedule_timeout_interruptible(onoff_holdoff
);
223 VERBOSE_TOROUT_STRING("torture_onoff end holdoff");
225 while (!torture_must_stop()) {
226 cpu
= (torture_random(&rand
) >> 4) % (maxcpu
+ 1);
227 if (!torture_offline(cpu
,
228 &n_offline_attempts
, &n_offline_successes
,
229 &sum_offline
, &min_offline
, &max_offline
))
231 &n_online_attempts
, &n_online_successes
,
232 &sum_online
, &min_online
, &max_online
);
233 schedule_timeout_interruptible(onoff_interval
);
237 torture_kthread_stopping("torture_onoff");
241 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
244 * Initiate online-offline handling.
246 int torture_onoff_init(long ooholdoff
, long oointerval
)
248 #ifdef CONFIG_HOTPLUG_CPU
249 onoff_holdoff
= ooholdoff
;
250 onoff_interval
= oointerval
;
251 if (onoff_interval
<= 0)
253 return torture_create_kthread(torture_onoff
, NULL
, onoff_task
);
254 #else /* #ifdef CONFIG_HOTPLUG_CPU */
256 #endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
258 EXPORT_SYMBOL_GPL(torture_onoff_init
);
261 * Clean up after online/offline testing.
263 static void torture_onoff_cleanup(void)
265 #ifdef CONFIG_HOTPLUG_CPU
266 if (onoff_task
== NULL
)
268 VERBOSE_TOROUT_STRING("Stopping torture_onoff task");
269 kthread_stop(onoff_task
);
271 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
273 EXPORT_SYMBOL_GPL(torture_onoff_cleanup
);
276 * Print online/offline testing statistics.
278 void torture_onoff_stats(void)
280 #ifdef CONFIG_HOTPLUG_CPU
281 pr_cont("onoff: %ld/%ld:%ld/%ld %d,%d:%d,%d %lu:%lu (HZ=%d) ",
282 n_online_successes
, n_online_attempts
,
283 n_offline_successes
, n_offline_attempts
,
284 min_online
, max_online
,
285 min_offline
, max_offline
,
286 sum_online
, sum_offline
, HZ
);
287 #endif /* #ifdef CONFIG_HOTPLUG_CPU */
289 EXPORT_SYMBOL_GPL(torture_onoff_stats
);
292 * Were all the online/offline operations successful?
294 bool torture_onoff_failures(void)
296 #ifdef CONFIG_HOTPLUG_CPU
297 return n_online_successes
!= n_online_attempts
||
298 n_offline_successes
!= n_offline_attempts
;
299 #else /* #ifdef CONFIG_HOTPLUG_CPU */
301 #endif /* #else #ifdef CONFIG_HOTPLUG_CPU */
303 EXPORT_SYMBOL_GPL(torture_onoff_failures
);
305 #define TORTURE_RANDOM_MULT 39916801 /* prime */
306 #define TORTURE_RANDOM_ADD 479001701 /* prime */
307 #define TORTURE_RANDOM_REFRESH 10000
310 * Crude but fast random-number generator. Uses a linear congruential
311 * generator, with occasional help from cpu_clock().
314 torture_random(struct torture_random_state
*trsp
)
316 if (--trsp
->trs_count
< 0) {
317 trsp
->trs_state
+= (unsigned long)local_clock();
318 trsp
->trs_count
= TORTURE_RANDOM_REFRESH
;
320 trsp
->trs_state
= trsp
->trs_state
* TORTURE_RANDOM_MULT
+
322 return swahw32(trsp
->trs_state
);
324 EXPORT_SYMBOL_GPL(torture_random
);
327 * Variables for shuffling. The idea is to ensure that each CPU stays
328 * idle for an extended period to test interactions with dyntick idle,
329 * as well as interactions with any per-CPU variables.
331 struct shuffle_task
{
332 struct list_head st_l
;
333 struct task_struct
*st_t
;
336 static long shuffle_interval
; /* In jiffies. */
337 static struct task_struct
*shuffler_task
;
338 static cpumask_var_t shuffle_tmp_mask
;
339 static int shuffle_idle_cpu
; /* Force all torture tasks off this CPU */
340 static struct list_head shuffle_task_list
= LIST_HEAD_INIT(shuffle_task_list
);
341 static DEFINE_MUTEX(shuffle_task_mutex
);
344 * Register a task to be shuffled. If there is no memory, just splat
345 * and don't bother registering.
347 void torture_shuffle_task_register(struct task_struct
*tp
)
349 struct shuffle_task
*stp
;
351 if (WARN_ON_ONCE(tp
== NULL
))
353 stp
= kmalloc(sizeof(*stp
), GFP_KERNEL
);
354 if (WARN_ON_ONCE(stp
== NULL
))
357 mutex_lock(&shuffle_task_mutex
);
358 list_add(&stp
->st_l
, &shuffle_task_list
);
359 mutex_unlock(&shuffle_task_mutex
);
361 EXPORT_SYMBOL_GPL(torture_shuffle_task_register
);
364 * Unregister all tasks, for example, at the end of the torture run.
366 static void torture_shuffle_task_unregister_all(void)
368 struct shuffle_task
*stp
;
369 struct shuffle_task
*p
;
371 mutex_lock(&shuffle_task_mutex
);
372 list_for_each_entry_safe(stp
, p
, &shuffle_task_list
, st_l
) {
373 list_del(&stp
->st_l
);
376 mutex_unlock(&shuffle_task_mutex
);
379 /* Shuffle tasks such that we allow shuffle_idle_cpu to become idle.
380 * A special case is when shuffle_idle_cpu = -1, in which case we allow
381 * the tasks to run on all CPUs.
383 static void torture_shuffle_tasks(void)
385 struct shuffle_task
*stp
;
387 cpumask_setall(shuffle_tmp_mask
);
390 /* No point in shuffling if there is only one online CPU (ex: UP) */
391 if (num_online_cpus() == 1) {
396 /* Advance to the next CPU. Upon overflow, don't idle any CPUs. */
397 shuffle_idle_cpu
= cpumask_next(shuffle_idle_cpu
, shuffle_tmp_mask
);
398 if (shuffle_idle_cpu
>= nr_cpu_ids
)
399 shuffle_idle_cpu
= -1;
401 cpumask_clear_cpu(shuffle_idle_cpu
, shuffle_tmp_mask
);
403 mutex_lock(&shuffle_task_mutex
);
404 list_for_each_entry(stp
, &shuffle_task_list
, st_l
)
405 set_cpus_allowed_ptr(stp
->st_t
, shuffle_tmp_mask
);
406 mutex_unlock(&shuffle_task_mutex
);
411 /* Shuffle tasks across CPUs, with the intent of allowing each CPU in the
412 * system to become idle at a time and cut off its timer ticks. This is meant
413 * to test the support for such tickless idle CPU in RCU.
415 static int torture_shuffle(void *arg
)
417 VERBOSE_TOROUT_STRING("torture_shuffle task started");
419 schedule_timeout_interruptible(shuffle_interval
);
420 torture_shuffle_tasks();
421 torture_shutdown_absorb("torture_shuffle");
422 } while (!torture_must_stop());
423 torture_kthread_stopping("torture_shuffle");
428 * Start the shuffler, with shuffint in jiffies.
430 int torture_shuffle_init(long shuffint
)
432 shuffle_interval
= shuffint
;
434 shuffle_idle_cpu
= -1;
436 if (!alloc_cpumask_var(&shuffle_tmp_mask
, GFP_KERNEL
)) {
437 VERBOSE_TOROUT_ERRSTRING("Failed to alloc mask");
441 /* Create the shuffler thread */
442 return torture_create_kthread(torture_shuffle
, NULL
, shuffler_task
);
444 EXPORT_SYMBOL_GPL(torture_shuffle_init
);
447 * Stop the shuffling.
449 static void torture_shuffle_cleanup(void)
451 torture_shuffle_task_unregister_all();
453 VERBOSE_TOROUT_STRING("Stopping torture_shuffle task");
454 kthread_stop(shuffler_task
);
455 free_cpumask_var(shuffle_tmp_mask
);
457 shuffler_task
= NULL
;
459 EXPORT_SYMBOL_GPL(torture_shuffle_cleanup
);
462 * Variables for auto-shutdown. This allows "lights out" torture runs
463 * to be fully scripted.
465 static struct task_struct
*shutdown_task
;
466 static ktime_t shutdown_time
; /* time to system shutdown. */
467 static void (*torture_shutdown_hook
)(void);
470 * Absorb kthreads into a kernel function that won't return, so that
471 * they won't ever access module text or data again.
473 void torture_shutdown_absorb(const char *title
)
475 while (READ_ONCE(fullstop
) == FULLSTOP_SHUTDOWN
) {
476 pr_notice("torture thread %s parking due to system shutdown\n",
478 schedule_timeout_uninterruptible(MAX_SCHEDULE_TIMEOUT
);
481 EXPORT_SYMBOL_GPL(torture_shutdown_absorb
);
484 * Cause the torture test to shutdown the system after the test has
485 * run for the time specified by the shutdown_secs parameter.
487 static int torture_shutdown(void *arg
)
491 VERBOSE_TOROUT_STRING("torture_shutdown task started");
492 ktime_snap
= ktime_get();
493 while (ktime_before(ktime_snap
, shutdown_time
) &&
494 !torture_must_stop()) {
496 pr_alert("%s" TORTURE_FLAG
497 "torture_shutdown task: %llu ms remaining\n",
499 ktime_ms_delta(shutdown_time
, ktime_snap
));
500 set_current_state(TASK_INTERRUPTIBLE
);
501 schedule_hrtimeout(&shutdown_time
, HRTIMER_MODE_ABS
);
502 ktime_snap
= ktime_get();
504 if (torture_must_stop()) {
505 torture_kthread_stopping("torture_shutdown");
509 /* OK, shut down the system. */
511 VERBOSE_TOROUT_STRING("torture_shutdown task shutting down system");
512 shutdown_task
= NULL
; /* Avoid self-kill deadlock. */
513 if (torture_shutdown_hook
)
514 torture_shutdown_hook();
516 VERBOSE_TOROUT_STRING("No torture_shutdown_hook(), skipping.");
517 rcu_ftrace_dump(DUMP_ALL
);
518 kernel_power_off(); /* Shut down the system. */
523 * Start up the shutdown task.
525 int torture_shutdown_init(int ssecs
, void (*cleanup
)(void))
527 torture_shutdown_hook
= cleanup
;
529 shutdown_time
= ktime_add(ktime_get(), ktime_set(ssecs
, 0));
530 return torture_create_kthread(torture_shutdown
, NULL
,
535 EXPORT_SYMBOL_GPL(torture_shutdown_init
);
538 * Detect and respond to a system shutdown.
540 static int torture_shutdown_notify(struct notifier_block
*unused1
,
541 unsigned long unused2
, void *unused3
)
543 mutex_lock(&fullstop_mutex
);
544 if (READ_ONCE(fullstop
) == FULLSTOP_DONTSTOP
) {
545 VERBOSE_TOROUT_STRING("Unscheduled system shutdown detected");
546 WRITE_ONCE(fullstop
, FULLSTOP_SHUTDOWN
);
548 pr_warn("Concurrent rmmod and shutdown illegal!\n");
550 mutex_unlock(&fullstop_mutex
);
554 static struct notifier_block torture_shutdown_nb
= {
555 .notifier_call
= torture_shutdown_notify
,
559 * Shut down the shutdown task. Say what??? Heh! This can happen if
560 * the torture module gets an rmmod before the shutdown time arrives. ;-)
562 static void torture_shutdown_cleanup(void)
564 unregister_reboot_notifier(&torture_shutdown_nb
);
565 if (shutdown_task
!= NULL
) {
566 VERBOSE_TOROUT_STRING("Stopping torture_shutdown task");
567 kthread_stop(shutdown_task
);
569 shutdown_task
= NULL
;
573 * Variables for stuttering, which means to periodically pause and
574 * restart testing in order to catch bugs that appear when load is
575 * suddenly applied to or removed from the system.
577 static struct task_struct
*stutter_task
;
578 static int stutter_pause_test
;
582 * Block until the stutter interval ends. This must be called periodically
583 * by all running kthreads that need to be subject to stuttering.
585 bool stutter_wait(const char *title
)
589 cond_resched_tasks_rcu_qs();
590 spt
= READ_ONCE(stutter_pause_test
);
591 for (; spt
; spt
= READ_ONCE(stutter_pause_test
)) {
593 schedule_timeout_interruptible(1);
594 } else if (spt
== 2) {
595 while (READ_ONCE(stutter_pause_test
))
598 schedule_timeout_interruptible(round_jiffies_relative(HZ
));
600 torture_shutdown_absorb(title
);
604 EXPORT_SYMBOL_GPL(stutter_wait
);
607 * Cause the torture test to "stutter", starting and stopping all
608 * threads periodically.
610 static int torture_stutter(void *arg
)
612 VERBOSE_TOROUT_STRING("torture_stutter task started");
614 if (!torture_must_stop() && stutter
> 1) {
615 WRITE_ONCE(stutter_pause_test
, 1);
616 schedule_timeout_interruptible(stutter
- 1);
617 WRITE_ONCE(stutter_pause_test
, 2);
618 schedule_timeout_interruptible(1);
620 WRITE_ONCE(stutter_pause_test
, 0);
621 if (!torture_must_stop())
622 schedule_timeout_interruptible(stutter
);
623 torture_shutdown_absorb("torture_stutter");
624 } while (!torture_must_stop());
625 torture_kthread_stopping("torture_stutter");
630 * Initialize and kick off the torture_stutter kthread.
632 int torture_stutter_init(const int s
)
635 return torture_create_kthread(torture_stutter
, NULL
, stutter_task
);
637 EXPORT_SYMBOL_GPL(torture_stutter_init
);
640 * Cleanup after the torture_stutter kthread.
642 static void torture_stutter_cleanup(void)
646 VERBOSE_TOROUT_STRING("Stopping torture_stutter task");
647 kthread_stop(stutter_task
);
652 * Initialize torture module. Please note that this is -not- invoked via
653 * the usual module_init() mechanism, but rather by an explicit call from
654 * the client torture module. This call must be paired with a later
655 * torture_init_end().
657 * The runnable parameter points to a flag that controls whether or not
658 * the test is currently runnable. If there is no such flag, pass in NULL.
660 bool torture_init_begin(char *ttype
, int v
)
662 mutex_lock(&fullstop_mutex
);
663 if (torture_type
!= NULL
) {
664 pr_alert("torture_init_begin: Refusing %s init: %s running.\n",
665 ttype
, torture_type
);
666 pr_alert("torture_init_begin: One torture test at a time!\n");
667 mutex_unlock(&fullstop_mutex
);
670 torture_type
= ttype
;
672 fullstop
= FULLSTOP_DONTSTOP
;
675 EXPORT_SYMBOL_GPL(torture_init_begin
);
678 * Tell the torture module that initialization is complete.
680 void torture_init_end(void)
682 mutex_unlock(&fullstop_mutex
);
683 register_reboot_notifier(&torture_shutdown_nb
);
685 EXPORT_SYMBOL_GPL(torture_init_end
);
688 * Clean up torture module. Please note that this is -not- invoked via
689 * the usual module_exit() mechanism, but rather by an explicit call from
690 * the client torture module. Returns true if a race with system shutdown
691 * is detected, otherwise, all kthreads started by functions in this file
694 * This must be called before the caller starts shutting down its own
697 * Both torture_cleanup_begin() and torture_cleanup_end() must be paired,
698 * in order to correctly perform the cleanup. They are separated because
699 * threads can still need to reference the torture_type type, thus nullify
700 * only after completing all other relevant calls.
702 bool torture_cleanup_begin(void)
704 mutex_lock(&fullstop_mutex
);
705 if (READ_ONCE(fullstop
) == FULLSTOP_SHUTDOWN
) {
706 pr_warn("Concurrent rmmod and shutdown illegal!\n");
707 mutex_unlock(&fullstop_mutex
);
708 schedule_timeout_uninterruptible(10);
711 WRITE_ONCE(fullstop
, FULLSTOP_RMMOD
);
712 mutex_unlock(&fullstop_mutex
);
713 torture_shutdown_cleanup();
714 torture_shuffle_cleanup();
715 torture_stutter_cleanup();
716 torture_onoff_cleanup();
719 EXPORT_SYMBOL_GPL(torture_cleanup_begin
);
721 void torture_cleanup_end(void)
723 mutex_lock(&fullstop_mutex
);
725 mutex_unlock(&fullstop_mutex
);
727 EXPORT_SYMBOL_GPL(torture_cleanup_end
);
730 * Is it time for the current torture test to stop?
732 bool torture_must_stop(void)
734 return torture_must_stop_irq() || kthread_should_stop();
736 EXPORT_SYMBOL_GPL(torture_must_stop
);
739 * Is it time for the current torture test to stop? This is the irq-safe
740 * version, hence no check for kthread_should_stop().
742 bool torture_must_stop_irq(void)
744 return READ_ONCE(fullstop
) != FULLSTOP_DONTSTOP
;
746 EXPORT_SYMBOL_GPL(torture_must_stop_irq
);
749 * Each kthread must wait for kthread_should_stop() before returning from
750 * its top-level function, otherwise segfaults ensue. This function
751 * prints a "stopping" message and waits for kthread_should_stop(), and
752 * should be called from all torture kthreads immediately prior to
755 void torture_kthread_stopping(char *title
)
759 snprintf(buf
, sizeof(buf
), "Stopping %s", title
);
760 VERBOSE_TOROUT_STRING(buf
);
761 while (!kthread_should_stop()) {
762 torture_shutdown_absorb(title
);
763 schedule_timeout_uninterruptible(1);
766 EXPORT_SYMBOL_GPL(torture_kthread_stopping
);
769 * Create a generic torture kthread that is immediately runnable. If you
770 * need the kthread to be stopped so that you can do something to it before
771 * it starts, you will need to open-code your own.
773 int _torture_create_kthread(int (*fn
)(void *arg
), void *arg
, char *s
, char *m
,
774 char *f
, struct task_struct
**tp
)
778 VERBOSE_TOROUT_STRING(m
);
779 *tp
= kthread_run(fn
, arg
, "%s", s
);
782 VERBOSE_TOROUT_ERRSTRING(f
);
785 torture_shuffle_task_register(*tp
);
788 EXPORT_SYMBOL_GPL(_torture_create_kthread
);
791 * Stop a generic kthread, emitting a message.
793 void _torture_stop_kthread(char *m
, struct task_struct
**tp
)
797 VERBOSE_TOROUT_STRING(m
);
801 EXPORT_SYMBOL_GPL(_torture_stop_kthread
);