123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978 |
- #include <linux/types.h>
- #include <linux/kernel.h>
- #include <linux/init.h>
- #include <linux/spinlock.h>
- #include <linux/smp.h>
- #include <linux/interrupt.h>
- #include <linux/sched/signal.h>
- #include <linux/sched/debug.h>
- #include <linux/atomic.h>
- #include <linux/bitops.h>
- #include <linux/percpu.h>
- #include <linux/notifier.h>
- #include <linux/cpu.h>
- #include <linux/mutex.h>
- #include <linux/export.h>
- #include <linux/hardirq.h>
- #include <linux/delay.h>
- #include <linux/moduleparam.h>
- #include <linux/kthread.h>
- #include <linux/tick.h>
- #include <linux/rcupdate_wait.h>
- #include <linux/sched/isolation.h>
- #include <linux/kprobes.h>
- #define CREATE_TRACE_POINTS
- #include "rcu.h"
- #ifdef MODULE_PARAM_PREFIX
- #undef MODULE_PARAM_PREFIX
- #endif
- #define MODULE_PARAM_PREFIX "rcupdate."
- #ifndef CONFIG_TINY_RCU
- extern int rcu_expedited;
- module_param(rcu_expedited, int, 0);
- extern int rcu_normal;
- module_param(rcu_normal, int, 0);
- static int rcu_normal_after_boot;
- module_param(rcu_normal_after_boot, int, 0);
- #endif
- #ifdef CONFIG_DEBUG_LOCK_ALLOC
- int rcu_read_lock_sched_held(void)
- {
- int lockdep_opinion = 0;
- if (!debug_lockdep_rcu_enabled())
- return 1;
- if (!rcu_is_watching())
- return 0;
- if (!rcu_lockdep_current_cpu_online())
- return 0;
- if (debug_locks)
- lockdep_opinion = lock_is_held(&rcu_sched_lock_map);
- return lockdep_opinion || !preemptible();
- }
- EXPORT_SYMBOL(rcu_read_lock_sched_held);
- #endif
- #ifndef CONFIG_TINY_RCU
- bool rcu_gp_is_normal(void)
- {
- return READ_ONCE(rcu_normal) &&
- rcu_scheduler_active != RCU_SCHEDULER_INIT;
- }
- EXPORT_SYMBOL_GPL(rcu_gp_is_normal);
- static atomic_t rcu_expedited_nesting = ATOMIC_INIT(1);
- bool rcu_gp_is_expedited(void)
- {
- return rcu_expedited || atomic_read(&rcu_expedited_nesting) ||
- rcu_scheduler_active == RCU_SCHEDULER_INIT;
- }
- EXPORT_SYMBOL_GPL(rcu_gp_is_expedited);
- void rcu_expedite_gp(void)
- {
- atomic_inc(&rcu_expedited_nesting);
- }
- EXPORT_SYMBOL_GPL(rcu_expedite_gp);
- void rcu_unexpedite_gp(void)
- {
- atomic_dec(&rcu_expedited_nesting);
- }
- EXPORT_SYMBOL_GPL(rcu_unexpedite_gp);
- void rcu_end_inkernel_boot(void)
- {
- rcu_unexpedite_gp();
- if (rcu_normal_after_boot)
- WRITE_ONCE(rcu_normal, 1);
- }
- #endif
- void rcu_test_sync_prims(void)
- {
- if (!IS_ENABLED(CONFIG_PROVE_RCU))
- return;
- synchronize_rcu();
- synchronize_rcu_bh();
- synchronize_sched();
- synchronize_rcu_expedited();
- synchronize_rcu_bh_expedited();
- synchronize_sched_expedited();
- }
- #if !defined(CONFIG_TINY_RCU) || defined(CONFIG_SRCU)
- static int __init rcu_set_runtime_mode(void)
- {
- rcu_test_sync_prims();
- rcu_scheduler_active = RCU_SCHEDULER_RUNNING;
- rcu_test_sync_prims();
- return 0;
- }
- core_initcall(rcu_set_runtime_mode);
- #endif
- #ifdef CONFIG_DEBUG_LOCK_ALLOC
- static struct lock_class_key rcu_lock_key;
- struct lockdep_map rcu_lock_map =
- STATIC_LOCKDEP_MAP_INIT("rcu_read_lock", &rcu_lock_key);
- EXPORT_SYMBOL_GPL(rcu_lock_map);
- static struct lock_class_key rcu_bh_lock_key;
- struct lockdep_map rcu_bh_lock_map =
- STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_bh", &rcu_bh_lock_key);
- EXPORT_SYMBOL_GPL(rcu_bh_lock_map);
- static struct lock_class_key rcu_sched_lock_key;
- struct lockdep_map rcu_sched_lock_map =
- STATIC_LOCKDEP_MAP_INIT("rcu_read_lock_sched", &rcu_sched_lock_key);
- EXPORT_SYMBOL_GPL(rcu_sched_lock_map);
- static struct lock_class_key rcu_callback_key;
- struct lockdep_map rcu_callback_map =
- STATIC_LOCKDEP_MAP_INIT("rcu_callback", &rcu_callback_key);
- EXPORT_SYMBOL_GPL(rcu_callback_map);
- int notrace debug_lockdep_rcu_enabled(void)
- {
- return rcu_scheduler_active != RCU_SCHEDULER_INACTIVE && debug_locks &&
- current->lockdep_recursion == 0;
- }
- EXPORT_SYMBOL_GPL(debug_lockdep_rcu_enabled);
- NOKPROBE_SYMBOL(debug_lockdep_rcu_enabled);
- int rcu_read_lock_held(void)
- {
- if (!debug_lockdep_rcu_enabled())
- return 1;
- if (!rcu_is_watching())
- return 0;
- if (!rcu_lockdep_current_cpu_online())
- return 0;
- return lock_is_held(&rcu_lock_map);
- }
- EXPORT_SYMBOL_GPL(rcu_read_lock_held);
- int rcu_read_lock_bh_held(void)
- {
- if (!debug_lockdep_rcu_enabled())
- return 1;
- if (!rcu_is_watching())
- return 0;
- if (!rcu_lockdep_current_cpu_online())
- return 0;
- return in_softirq() || irqs_disabled();
- }
- EXPORT_SYMBOL_GPL(rcu_read_lock_bh_held);
- #endif
- void wakeme_after_rcu(struct rcu_head *head)
- {
- struct rcu_synchronize *rcu;
- rcu = container_of(head, struct rcu_synchronize, head);
- complete(&rcu->completion);
- }
- EXPORT_SYMBOL_GPL(wakeme_after_rcu);
- void __wait_rcu_gp(bool checktiny, int n, call_rcu_func_t *crcu_array,
- struct rcu_synchronize *rs_array)
- {
- int i;
- int j;
-
- for (i = 0; i < n; i++) {
- if (checktiny &&
- (crcu_array[i] == call_rcu ||
- crcu_array[i] == call_rcu_bh)) {
- might_sleep();
- continue;
- }
- init_rcu_head_on_stack(&rs_array[i].head);
- init_completion(&rs_array[i].completion);
- for (j = 0; j < i; j++)
- if (crcu_array[j] == crcu_array[i])
- break;
- if (j == i)
- (crcu_array[i])(&rs_array[i].head, wakeme_after_rcu);
- }
-
- for (i = 0; i < n; i++) {
- if (checktiny &&
- (crcu_array[i] == call_rcu ||
- crcu_array[i] == call_rcu_bh))
- continue;
- for (j = 0; j < i; j++)
- if (crcu_array[j] == crcu_array[i])
- break;
- if (j == i)
- wait_for_completion(&rs_array[i].completion);
- destroy_rcu_head_on_stack(&rs_array[i].head);
- }
- }
- EXPORT_SYMBOL_GPL(__wait_rcu_gp);
- #ifdef CONFIG_DEBUG_OBJECTS_RCU_HEAD
- void init_rcu_head(struct rcu_head *head)
- {
- debug_object_init(head, &rcuhead_debug_descr);
- }
- EXPORT_SYMBOL_GPL(init_rcu_head);
- void destroy_rcu_head(struct rcu_head *head)
- {
- debug_object_free(head, &rcuhead_debug_descr);
- }
- EXPORT_SYMBOL_GPL(destroy_rcu_head);
- static bool rcuhead_is_static_object(void *addr)
- {
- return true;
- }
- void init_rcu_head_on_stack(struct rcu_head *head)
- {
- debug_object_init_on_stack(head, &rcuhead_debug_descr);
- }
- EXPORT_SYMBOL_GPL(init_rcu_head_on_stack);
- void destroy_rcu_head_on_stack(struct rcu_head *head)
- {
- debug_object_free(head, &rcuhead_debug_descr);
- }
- EXPORT_SYMBOL_GPL(destroy_rcu_head_on_stack);
- struct debug_obj_descr rcuhead_debug_descr = {
- .name = "rcu_head",
- .is_static_object = rcuhead_is_static_object,
- };
- EXPORT_SYMBOL_GPL(rcuhead_debug_descr);
- #endif
- #if defined(CONFIG_TREE_RCU) || defined(CONFIG_PREEMPT_RCU) || defined(CONFIG_RCU_TRACE)
- void do_trace_rcu_torture_read(const char *rcutorturename, struct rcu_head *rhp,
- unsigned long secs,
- unsigned long c_old, unsigned long c)
- {
- trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c);
- }
- EXPORT_SYMBOL_GPL(do_trace_rcu_torture_read);
- #else
- #define do_trace_rcu_torture_read(rcutorturename, rhp, secs, c_old, c) \
- do { } while (0)
- #endif
- #ifdef CONFIG_RCU_STALL_COMMON
- #ifdef CONFIG_PROVE_RCU
- #define RCU_STALL_DELAY_DELTA (5 * HZ)
- #else
- #define RCU_STALL_DELAY_DELTA 0
- #endif
- int rcu_cpu_stall_suppress __read_mostly;
- EXPORT_SYMBOL_GPL(rcu_cpu_stall_suppress);
- static int rcu_cpu_stall_timeout __read_mostly = CONFIG_RCU_CPU_STALL_TIMEOUT;
- module_param(rcu_cpu_stall_suppress, int, 0644);
- module_param(rcu_cpu_stall_timeout, int, 0644);
- int rcu_jiffies_till_stall_check(void)
- {
- int till_stall_check = READ_ONCE(rcu_cpu_stall_timeout);
-
- if (till_stall_check < 3) {
- WRITE_ONCE(rcu_cpu_stall_timeout, 3);
- till_stall_check = 3;
- } else if (till_stall_check > 300) {
- WRITE_ONCE(rcu_cpu_stall_timeout, 300);
- till_stall_check = 300;
- }
- return till_stall_check * HZ + RCU_STALL_DELAY_DELTA;
- }
- void rcu_sysrq_start(void)
- {
- if (!rcu_cpu_stall_suppress)
- rcu_cpu_stall_suppress = 2;
- }
- void rcu_sysrq_end(void)
- {
- if (rcu_cpu_stall_suppress == 2)
- rcu_cpu_stall_suppress = 0;
- }
- static int rcu_panic(struct notifier_block *this, unsigned long ev, void *ptr)
- {
- rcu_cpu_stall_suppress = 1;
- return NOTIFY_DONE;
- }
- static struct notifier_block rcu_panic_block = {
- .notifier_call = rcu_panic,
- };
- static int __init check_cpu_stall_init(void)
- {
- atomic_notifier_chain_register(&panic_notifier_list, &rcu_panic_block);
- return 0;
- }
- early_initcall(check_cpu_stall_init);
- #endif
- #ifdef CONFIG_TASKS_RCU
- static struct rcu_head *rcu_tasks_cbs_head;
- static struct rcu_head **rcu_tasks_cbs_tail = &rcu_tasks_cbs_head;
- static DECLARE_WAIT_QUEUE_HEAD(rcu_tasks_cbs_wq);
- static DEFINE_RAW_SPINLOCK(rcu_tasks_cbs_lock);
- DEFINE_STATIC_SRCU(tasks_rcu_exit_srcu);
- #define RCU_TASK_STALL_TIMEOUT (HZ * 60 * 10)
- static int rcu_task_stall_timeout __read_mostly = RCU_TASK_STALL_TIMEOUT;
- module_param(rcu_task_stall_timeout, int, 0644);
- static struct task_struct *rcu_tasks_kthread_ptr;
- void call_rcu_tasks(struct rcu_head *rhp, rcu_callback_t func)
- {
- unsigned long flags;
- bool needwake;
- rhp->next = NULL;
- rhp->func = func;
- raw_spin_lock_irqsave(&rcu_tasks_cbs_lock, flags);
- needwake = !rcu_tasks_cbs_head;
- *rcu_tasks_cbs_tail = rhp;
- rcu_tasks_cbs_tail = &rhp->next;
- raw_spin_unlock_irqrestore(&rcu_tasks_cbs_lock, flags);
-
- if (needwake && READ_ONCE(rcu_tasks_kthread_ptr))
- wake_up(&rcu_tasks_cbs_wq);
- }
- EXPORT_SYMBOL_GPL(call_rcu_tasks);
- void synchronize_rcu_tasks(void)
- {
-
- RCU_LOCKDEP_WARN(rcu_scheduler_active == RCU_SCHEDULER_INACTIVE,
- "synchronize_rcu_tasks called too soon");
-
- wait_rcu_gp(call_rcu_tasks);
- }
- EXPORT_SYMBOL_GPL(synchronize_rcu_tasks);
- void rcu_barrier_tasks(void)
- {
-
- synchronize_rcu_tasks();
- }
- EXPORT_SYMBOL_GPL(rcu_barrier_tasks);
- static void check_holdout_task(struct task_struct *t,
- bool needreport, bool *firstreport)
- {
- int cpu;
- if (!READ_ONCE(t->rcu_tasks_holdout) ||
- t->rcu_tasks_nvcsw != READ_ONCE(t->nvcsw) ||
- !READ_ONCE(t->on_rq) ||
- (IS_ENABLED(CONFIG_NO_HZ_FULL) &&
- !is_idle_task(t) && t->rcu_tasks_idle_cpu >= 0)) {
- WRITE_ONCE(t->rcu_tasks_holdout, false);
- list_del_init(&t->rcu_tasks_holdout_list);
- put_task_struct(t);
- return;
- }
- rcu_request_urgent_qs_task(t);
- if (!needreport)
- return;
- if (*firstreport) {
- pr_err("INFO: rcu_tasks detected stalls on tasks:\n");
- *firstreport = false;
- }
- cpu = task_cpu(t);
- pr_alert("%p: %c%c nvcsw: %lu/%lu holdout: %d idle_cpu: %d/%d\n",
- t, ".I"[is_idle_task(t)],
- "N."[cpu < 0 || !tick_nohz_full_cpu(cpu)],
- t->rcu_tasks_nvcsw, t->nvcsw, t->rcu_tasks_holdout,
- t->rcu_tasks_idle_cpu, cpu);
- sched_show_task(t);
- }
- static int __noreturn rcu_tasks_kthread(void *arg)
- {
- unsigned long flags;
- struct task_struct *g, *t;
- unsigned long lastreport;
- struct rcu_head *list;
- struct rcu_head *next;
- LIST_HEAD(rcu_tasks_holdouts);
- int fract;
-
- housekeeping_affine(current, HK_FLAG_RCU);
-
- for (;;) {
-
- raw_spin_lock_irqsave(&rcu_tasks_cbs_lock, flags);
- list = rcu_tasks_cbs_head;
- rcu_tasks_cbs_head = NULL;
- rcu_tasks_cbs_tail = &rcu_tasks_cbs_head;
- raw_spin_unlock_irqrestore(&rcu_tasks_cbs_lock, flags);
-
- if (!list) {
- wait_event_interruptible(rcu_tasks_cbs_wq,
- rcu_tasks_cbs_head);
- if (!rcu_tasks_cbs_head) {
- WARN_ON(signal_pending(current));
- schedule_timeout_interruptible(HZ/10);
- }
- continue;
- }
-
- synchronize_sched();
-
- rcu_read_lock();
- for_each_process_thread(g, t) {
- if (t != current && READ_ONCE(t->on_rq) &&
- !is_idle_task(t)) {
- get_task_struct(t);
- t->rcu_tasks_nvcsw = READ_ONCE(t->nvcsw);
- WRITE_ONCE(t->rcu_tasks_holdout, true);
- list_add(&t->rcu_tasks_holdout_list,
- &rcu_tasks_holdouts);
- }
- }
- rcu_read_unlock();
-
- synchronize_srcu(&tasks_rcu_exit_srcu);
-
- lastreport = jiffies;
-
- fract = 10;
- for (;;) {
- bool firstreport;
- bool needreport;
- int rtst;
- struct task_struct *t1;
- if (list_empty(&rcu_tasks_holdouts))
- break;
-
- schedule_timeout_interruptible(HZ/fract);
- if (fract > 1)
- fract--;
- rtst = READ_ONCE(rcu_task_stall_timeout);
- needreport = rtst > 0 &&
- time_after(jiffies, lastreport + rtst);
- if (needreport)
- lastreport = jiffies;
- firstreport = true;
- WARN_ON(signal_pending(current));
- list_for_each_entry_safe(t, t1, &rcu_tasks_holdouts,
- rcu_tasks_holdout_list) {
- check_holdout_task(t, needreport, &firstreport);
- cond_resched();
- }
- }
-
- synchronize_sched();
-
- while (list) {
- next = list->next;
- local_bh_disable();
- list->func(list);
- local_bh_enable();
- list = next;
- cond_resched();
- }
-
- schedule_timeout_uninterruptible(HZ/10);
- }
- }
- static int __init rcu_spawn_tasks_kthread(void)
- {
- struct task_struct *t;
- t = kthread_run(rcu_tasks_kthread, NULL, "rcu_tasks_kthread");
- BUG_ON(IS_ERR(t));
- smp_mb();
- WRITE_ONCE(rcu_tasks_kthread_ptr, t);
- return 0;
- }
- core_initcall(rcu_spawn_tasks_kthread);
- void exit_tasks_rcu_start(void)
- {
- preempt_disable();
- current->rcu_tasks_idx = __srcu_read_lock(&tasks_rcu_exit_srcu);
- preempt_enable();
- }
- void exit_tasks_rcu_finish(void)
- {
- preempt_disable();
- __srcu_read_unlock(&tasks_rcu_exit_srcu, current->rcu_tasks_idx);
- preempt_enable();
- }
- #endif
- #ifndef CONFIG_TINY_RCU
- static void __init rcu_tasks_bootup_oddness(void)
- {
- #ifdef CONFIG_TASKS_RCU
- if (rcu_task_stall_timeout != RCU_TASK_STALL_TIMEOUT)
- pr_info("\tTasks-RCU CPU stall warnings timeout set to %d (rcu_task_stall_timeout).\n", rcu_task_stall_timeout);
- else
- pr_info("\tTasks RCU enabled.\n");
- #endif
- }
- #endif
- #ifdef CONFIG_PROVE_RCU
- static bool rcu_self_test;
- static bool rcu_self_test_bh;
- static bool rcu_self_test_sched;
- module_param(rcu_self_test, bool, 0444);
- module_param(rcu_self_test_bh, bool, 0444);
- module_param(rcu_self_test_sched, bool, 0444);
- static int rcu_self_test_counter;
- static void test_callback(struct rcu_head *r)
- {
- rcu_self_test_counter++;
- pr_info("RCU test callback executed %d\n", rcu_self_test_counter);
- }
- static void early_boot_test_call_rcu(void)
- {
- static struct rcu_head head;
- call_rcu(&head, test_callback);
- }
- static void early_boot_test_call_rcu_bh(void)
- {
- static struct rcu_head head;
- call_rcu_bh(&head, test_callback);
- }
- static void early_boot_test_call_rcu_sched(void)
- {
- static struct rcu_head head;
- call_rcu_sched(&head, test_callback);
- }
- void rcu_early_boot_tests(void)
- {
- pr_info("Running RCU self tests\n");
- if (rcu_self_test)
- early_boot_test_call_rcu();
- if (rcu_self_test_bh)
- early_boot_test_call_rcu_bh();
- if (rcu_self_test_sched)
- early_boot_test_call_rcu_sched();
- rcu_test_sync_prims();
- }
- static int rcu_verify_early_boot_tests(void)
- {
- int ret = 0;
- int early_boot_test_counter = 0;
- if (rcu_self_test) {
- early_boot_test_counter++;
- rcu_barrier();
- }
- if (rcu_self_test_bh) {
- early_boot_test_counter++;
- rcu_barrier_bh();
- }
- if (rcu_self_test_sched) {
- early_boot_test_counter++;
- rcu_barrier_sched();
- }
- if (rcu_self_test_counter != early_boot_test_counter) {
- WARN_ON(1);
- ret = -1;
- }
- return ret;
- }
- late_initcall(rcu_verify_early_boot_tests);
- #else
- void rcu_early_boot_tests(void) {}
- #endif
- #ifndef CONFIG_TINY_RCU
- void __init rcupdate_announce_bootup_oddness(void)
- {
- if (rcu_normal)
- pr_info("\tNo expedited grace period (rcu_normal).\n");
- else if (rcu_normal_after_boot)
- pr_info("\tNo expedited grace period (rcu_normal_after_boot).\n");
- else if (rcu_expedited)
- pr_info("\tAll grace periods are expedited (rcu_expedited).\n");
- if (rcu_cpu_stall_suppress)
- pr_info("\tRCU CPU stall warnings suppressed (rcu_cpu_stall_suppress).\n");
- if (rcu_cpu_stall_timeout != CONFIG_RCU_CPU_STALL_TIMEOUT)
- pr_info("\tRCU CPU stall warnings timeout set to %d (rcu_cpu_stall_timeout).\n", rcu_cpu_stall_timeout);
- rcu_tasks_bootup_oddness();
- }
- #endif
|