blob: b9e79e8c722654e84cc90407f3dfc8322d4ffe23 [file] [log] [blame]
Robin Holt15d94b82013-07-08 16:01:32 -07001/*
2 * linux/kernel/reboot.c
3 *
4 * Copyright (C) 2013 Linus Torvalds
5 */
6
Robin Holt972ee832013-07-08 16:01:34 -07007#define pr_fmt(fmt) "reboot: " fmt
8
Robin Holt1b3a5d02013-07-08 16:01:42 -07009#include <linux/ctype.h>
Robin Holt15d94b82013-07-08 16:01:32 -070010#include <linux/export.h>
11#include <linux/kexec.h>
12#include <linux/kmod.h>
13#include <linux/kmsg_dump.h>
14#include <linux/reboot.h>
15#include <linux/suspend.h>
16#include <linux/syscalls.h>
17#include <linux/syscore_ops.h>
18#include <linux/uaccess.h>
19
20/*
21 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
22 */
23
24int C_A_D = 1;
25struct pid *cad_pid;
26EXPORT_SYMBOL(cad_pid);
27
Robin Holt1b3a5d02013-07-08 16:01:42 -070028#if defined(CONFIG_ARM) || defined(CONFIG_UNICORE32)
29#define DEFAULT_REBOOT_MODE = REBOOT_HARD
30#else
31#define DEFAULT_REBOOT_MODE
32#endif
33enum reboot_mode reboot_mode DEFAULT_REBOOT_MODE;
Aaro Koskinenb287a252019-05-14 15:45:37 -070034enum reboot_mode panic_reboot_mode = REBOOT_UNDEFINED;
Robin Holt1b3a5d02013-07-08 16:01:42 -070035
Chuansheng Liue2f0b882013-09-24 15:27:43 -070036/*
37 * This variable is used privately to keep track of whether or not
38 * reboot_type is still set to its default value (i.e., reboot= hasn't
39 * been set on the command line). This is needed so that we can
40 * suppress DMI scanning for reboot quirks. Without it, it's
41 * impossible to override a faulty reboot quirk without recompiling.
42 */
43int reboot_default = 1;
Robin Holt1b3a5d02013-07-08 16:01:42 -070044int reboot_cpu;
45enum reboot_type reboot_type = BOOT_ACPI;
46int reboot_force;
47
Robin Holt15d94b82013-07-08 16:01:32 -070048/*
49 * If set, this is used for preparing the system to power off.
50 */
51
52void (*pm_power_off_prepare)(void);
Oleksij Rempel74f008f2018-08-02 12:34:22 +020053EXPORT_SYMBOL_GPL(pm_power_off_prepare);
Robin Holt15d94b82013-07-08 16:01:32 -070054
55/**
56 * emergency_restart - reboot the system
57 *
58 * Without shutting down any hardware or taking any locks
59 * reboot the system. This is called when we know we are in
60 * trouble so this is our best effort to reboot. This is
61 * safe to call in interrupt context.
62 */
63void emergency_restart(void)
64{
65 kmsg_dump(KMSG_DUMP_EMERG);
66 machine_emergency_restart();
67}
68EXPORT_SYMBOL_GPL(emergency_restart);
69
70void kernel_restart_prepare(char *cmd)
71{
72 blocking_notifier_call_chain(&reboot_notifier_list, SYS_RESTART, cmd);
73 system_state = SYSTEM_RESTART;
74 usermodehelper_disable();
75 device_shutdown();
76}
77
78/**
79 * register_reboot_notifier - Register function to be called at reboot time
80 * @nb: Info about notifier function to be called
81 *
82 * Registers a function with the list of functions
83 * to be called at reboot time.
84 *
85 * Currently always returns zero, as blocking_notifier_chain_register()
86 * always returns zero.
87 */
88int register_reboot_notifier(struct notifier_block *nb)
89{
90 return blocking_notifier_chain_register(&reboot_notifier_list, nb);
91}
92EXPORT_SYMBOL(register_reboot_notifier);
93
94/**
95 * unregister_reboot_notifier - Unregister previously registered reboot notifier
96 * @nb: Hook to be unregistered
97 *
98 * Unregisters a previously registered reboot
99 * notifier function.
100 *
101 * Returns zero on success, or %-ENOENT on failure.
102 */
103int unregister_reboot_notifier(struct notifier_block *nb)
104{
105 return blocking_notifier_chain_unregister(&reboot_notifier_list, nb);
106}
107EXPORT_SYMBOL(unregister_reboot_notifier);
108
Andrey Smirnov2d8364b2017-11-17 15:30:57 -0800109static void devm_unregister_reboot_notifier(struct device *dev, void *res)
110{
111 WARN_ON(unregister_reboot_notifier(*(struct notifier_block **)res));
112}
113
114int devm_register_reboot_notifier(struct device *dev, struct notifier_block *nb)
115{
116 struct notifier_block **rcnb;
117 int ret;
118
119 rcnb = devres_alloc(devm_unregister_reboot_notifier,
120 sizeof(*rcnb), GFP_KERNEL);
121 if (!rcnb)
122 return -ENOMEM;
123
124 ret = register_reboot_notifier(nb);
125 if (!ret) {
126 *rcnb = nb;
127 devres_add(dev, rcnb);
128 } else {
129 devres_free(rcnb);
130 }
131
132 return ret;
133}
134EXPORT_SYMBOL(devm_register_reboot_notifier);
135
Guenter Roeckb63adb972014-09-26 00:03:16 +0000136/*
137 * Notifier list for kernel code which wants to be called
138 * to restart the system.
139 */
140static ATOMIC_NOTIFIER_HEAD(restart_handler_list);
141
142/**
143 * register_restart_handler - Register function to be called to reset
144 * the system
145 * @nb: Info about handler function to be called
146 * @nb->priority: Handler priority. Handlers should follow the
147 * following guidelines for setting priorities.
148 * 0: Restart handler of last resort,
149 * with limited restart capabilities
150 * 128: Default restart handler; use if no other
151 * restart handler is expected to be available,
152 * and/or if restart functionality is
153 * sufficient to restart the entire system
154 * 255: Highest priority restart handler, will
155 * preempt all other restart handlers
156 *
157 * Registers a function with code to be called to restart the
158 * system.
159 *
160 * Registered functions will be called from machine_restart as last
161 * step of the restart sequence (if the architecture specific
162 * machine_restart function calls do_kernel_restart - see below
163 * for details).
164 * Registered functions are expected to restart the system immediately.
165 * If more than one function is registered, the restart handler priority
166 * selects which function will be called first.
167 *
168 * Restart handlers are expected to be registered from non-architecture
169 * code, typically from drivers. A typical use case would be a system
170 * where restart functionality is provided through a watchdog. Multiple
171 * restart handlers may exist; for example, one restart handler might
172 * restart the entire system, while another only restarts the CPU.
173 * In such cases, the restart handler which only restarts part of the
174 * hardware is expected to register with low priority to ensure that
175 * it only runs if no other means to restart the system is available.
176 *
177 * Currently always returns zero, as atomic_notifier_chain_register()
178 * always returns zero.
179 */
180int register_restart_handler(struct notifier_block *nb)
181{
182 return atomic_notifier_chain_register(&restart_handler_list, nb);
183}
184EXPORT_SYMBOL(register_restart_handler);
185
186/**
187 * unregister_restart_handler - Unregister previously registered
188 * restart handler
189 * @nb: Hook to be unregistered
190 *
191 * Unregisters a previously registered restart handler function.
192 *
193 * Returns zero on success, or %-ENOENT on failure.
194 */
195int unregister_restart_handler(struct notifier_block *nb)
196{
197 return atomic_notifier_chain_unregister(&restart_handler_list, nb);
198}
199EXPORT_SYMBOL(unregister_restart_handler);
200
201/**
202 * do_kernel_restart - Execute kernel restart handler call chain
203 *
204 * Calls functions registered with register_restart_handler.
205 *
206 * Expected to be called from machine_restart as last step of the restart
207 * sequence.
208 *
209 * Restarts the system immediately if a restart handler function has been
210 * registered. Otherwise does nothing.
211 */
212void do_kernel_restart(char *cmd)
213{
214 atomic_notifier_call_chain(&restart_handler_list, reboot_mode, cmd);
215}
216
Vivek Goyalc97102b2013-12-18 17:08:31 -0800217void migrate_to_reboot_cpu(void)
Robin Holt15d94b82013-07-08 16:01:32 -0700218{
219 /* The boot cpu is always logical cpu 0 */
Robin Holt1b3a5d02013-07-08 16:01:42 -0700220 int cpu = reboot_cpu;
Robin Holt15d94b82013-07-08 16:01:32 -0700221
222 cpu_hotplug_disable();
223
224 /* Make certain the cpu I'm about to reboot on is online */
225 if (!cpu_online(cpu))
226 cpu = cpumask_first(cpu_online_mask);
227
228 /* Prevent races with other tasks migrating this task */
229 current->flags |= PF_NO_SETAFFINITY;
230
231 /* Make certain I only run on the appropriate processor */
232 set_cpus_allowed_ptr(current, cpumask_of(cpu));
233}
234
235/**
236 * kernel_restart - reboot the system
237 * @cmd: pointer to buffer containing command to execute for restart
238 * or %NULL
239 *
240 * Shutdown everything and perform a clean reboot.
241 * This is not safe to call in interrupt context.
242 */
243void kernel_restart(char *cmd)
244{
245 kernel_restart_prepare(cmd);
246 migrate_to_reboot_cpu();
247 syscore_shutdown();
248 if (!cmd)
Robin Holt972ee832013-07-08 16:01:34 -0700249 pr_emerg("Restarting system\n");
Robin Holt15d94b82013-07-08 16:01:32 -0700250 else
Robin Holt972ee832013-07-08 16:01:34 -0700251 pr_emerg("Restarting system with command '%s'\n", cmd);
Robin Holt15d94b82013-07-08 16:01:32 -0700252 kmsg_dump(KMSG_DUMP_RESTART);
253 machine_restart(cmd);
254}
255EXPORT_SYMBOL_GPL(kernel_restart);
256
257static void kernel_shutdown_prepare(enum system_states state)
258{
259 blocking_notifier_call_chain(&reboot_notifier_list,
Robin Holt972ee832013-07-08 16:01:34 -0700260 (state == SYSTEM_HALT) ? SYS_HALT : SYS_POWER_OFF, NULL);
Robin Holt15d94b82013-07-08 16:01:32 -0700261 system_state = state;
262 usermodehelper_disable();
263 device_shutdown();
264}
265/**
266 * kernel_halt - halt the system
267 *
268 * Shutdown everything and perform a clean system halt.
269 */
270void kernel_halt(void)
271{
272 kernel_shutdown_prepare(SYSTEM_HALT);
273 migrate_to_reboot_cpu();
274 syscore_shutdown();
Robin Holt972ee832013-07-08 16:01:34 -0700275 pr_emerg("System halted\n");
Robin Holt15d94b82013-07-08 16:01:32 -0700276 kmsg_dump(KMSG_DUMP_HALT);
277 machine_halt();
278}
Robin Holt15d94b82013-07-08 16:01:32 -0700279EXPORT_SYMBOL_GPL(kernel_halt);
280
281/**
282 * kernel_power_off - power_off the system
283 *
284 * Shutdown everything and perform a clean system power_off.
285 */
286void kernel_power_off(void)
287{
288 kernel_shutdown_prepare(SYSTEM_POWER_OFF);
289 if (pm_power_off_prepare)
290 pm_power_off_prepare();
291 migrate_to_reboot_cpu();
292 syscore_shutdown();
Robin Holt972ee832013-07-08 16:01:34 -0700293 pr_emerg("Power down\n");
Robin Holt15d94b82013-07-08 16:01:32 -0700294 kmsg_dump(KMSG_DUMP_POWEROFF);
295 machine_power_off();
296}
297EXPORT_SYMBOL_GPL(kernel_power_off);
298
Pingfan Liu55f25032018-07-31 16:51:32 +0800299DEFINE_MUTEX(system_transition_mutex);
Robin Holt15d94b82013-07-08 16:01:32 -0700300
301/*
302 * Reboot system call: for obvious reasons only root may call it,
303 * and even root needs to set up some magic numbers in the registers
304 * so that some mistake won't make this reboot the whole machine.
305 * You can also set the meaning of the ctrl-alt-del-key here.
306 *
307 * reboot doesn't sync: do that yourself before calling this.
308 */
309SYSCALL_DEFINE4(reboot, int, magic1, int, magic2, unsigned int, cmd,
310 void __user *, arg)
311{
312 struct pid_namespace *pid_ns = task_active_pid_ns(current);
313 char buffer[256];
314 int ret = 0;
315
316 /* We only trust the superuser with rebooting the system. */
317 if (!ns_capable(pid_ns->user_ns, CAP_SYS_BOOT))
318 return -EPERM;
319
320 /* For safety, we require "magic" arguments. */
321 if (magic1 != LINUX_REBOOT_MAGIC1 ||
Robin Holt972ee832013-07-08 16:01:34 -0700322 (magic2 != LINUX_REBOOT_MAGIC2 &&
323 magic2 != LINUX_REBOOT_MAGIC2A &&
Robin Holt15d94b82013-07-08 16:01:32 -0700324 magic2 != LINUX_REBOOT_MAGIC2B &&
Robin Holt972ee832013-07-08 16:01:34 -0700325 magic2 != LINUX_REBOOT_MAGIC2C))
Robin Holt15d94b82013-07-08 16:01:32 -0700326 return -EINVAL;
327
328 /*
329 * If pid namespaces are enabled and the current task is in a child
330 * pid_namespace, the command is handled by reboot_pid_ns() which will
331 * call do_exit().
332 */
333 ret = reboot_pid_ns(pid_ns, cmd);
334 if (ret)
335 return ret;
336
337 /* Instead of trying to make the power_off code look like
338 * halt when pm_power_off is not set do it the easy way.
339 */
340 if ((cmd == LINUX_REBOOT_CMD_POWER_OFF) && !pm_power_off)
341 cmd = LINUX_REBOOT_CMD_HALT;
342
Pingfan Liu55f25032018-07-31 16:51:32 +0800343 mutex_lock(&system_transition_mutex);
Robin Holt15d94b82013-07-08 16:01:32 -0700344 switch (cmd) {
345 case LINUX_REBOOT_CMD_RESTART:
346 kernel_restart(NULL);
347 break;
348
349 case LINUX_REBOOT_CMD_CAD_ON:
350 C_A_D = 1;
351 break;
352
353 case LINUX_REBOOT_CMD_CAD_OFF:
354 C_A_D = 0;
355 break;
356
357 case LINUX_REBOOT_CMD_HALT:
358 kernel_halt();
359 do_exit(0);
360 panic("cannot halt");
361
362 case LINUX_REBOOT_CMD_POWER_OFF:
363 kernel_power_off();
364 do_exit(0);
365 break;
366
367 case LINUX_REBOOT_CMD_RESTART2:
Robin Holt972ee832013-07-08 16:01:34 -0700368 ret = strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1);
369 if (ret < 0) {
Robin Holt15d94b82013-07-08 16:01:32 -0700370 ret = -EFAULT;
371 break;
372 }
373 buffer[sizeof(buffer) - 1] = '\0';
374
375 kernel_restart(buffer);
376 break;
377
Dave Young2965faa2015-09-09 15:38:55 -0700378#ifdef CONFIG_KEXEC_CORE
Robin Holt15d94b82013-07-08 16:01:32 -0700379 case LINUX_REBOOT_CMD_KEXEC:
380 ret = kernel_kexec();
381 break;
382#endif
383
384#ifdef CONFIG_HIBERNATION
385 case LINUX_REBOOT_CMD_SW_SUSPEND:
386 ret = hibernate();
387 break;
388#endif
389
390 default:
391 ret = -EINVAL;
392 break;
393 }
Pingfan Liu55f25032018-07-31 16:51:32 +0800394 mutex_unlock(&system_transition_mutex);
Robin Holt15d94b82013-07-08 16:01:32 -0700395 return ret;
396}
397
398static void deferred_cad(struct work_struct *dummy)
399{
400 kernel_restart(NULL);
401}
402
403/*
404 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
405 * As it's called within an interrupt, it may NOT sync: the only choice
406 * is whether to reboot at once, or just ignore the ctrl-alt-del.
407 */
408void ctrl_alt_del(void)
409{
410 static DECLARE_WORK(cad_work, deferred_cad);
411
412 if (C_A_D)
413 schedule_work(&cad_work);
414 else
415 kill_cad_pid(SIGINT, 1);
416}
417
418char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
Joel Stanley7a54f462015-04-15 16:16:53 -0700419static const char reboot_cmd[] = "/sbin/reboot";
Robin Holt15d94b82013-07-08 16:01:32 -0700420
Joel Stanley7a54f462015-04-15 16:16:53 -0700421static int run_cmd(const char *cmd)
Robin Holt15d94b82013-07-08 16:01:32 -0700422{
423 char **argv;
424 static char *envp[] = {
425 "HOME=/",
426 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
427 NULL
428 };
429 int ret;
Joel Stanley7a54f462015-04-15 16:16:53 -0700430 argv = argv_split(GFP_KERNEL, cmd, NULL);
Robin Holt15d94b82013-07-08 16:01:32 -0700431 if (argv) {
432 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
433 argv_free(argv);
434 } else {
Robin Holt15d94b82013-07-08 16:01:32 -0700435 ret = -ENOMEM;
436 }
437
Joel Stanley7a54f462015-04-15 16:16:53 -0700438 return ret;
439}
440
441static int __orderly_reboot(void)
442{
443 int ret;
444
445 ret = run_cmd(reboot_cmd);
446
447 if (ret) {
448 pr_warn("Failed to start orderly reboot: forcing the issue\n");
449 emergency_sync();
450 kernel_restart(NULL);
451 }
452
453 return ret;
454}
455
456static int __orderly_poweroff(bool force)
457{
458 int ret;
459
460 ret = run_cmd(poweroff_cmd);
461
Robin Holt15d94b82013-07-08 16:01:32 -0700462 if (ret && force) {
Robin Holt972ee832013-07-08 16:01:34 -0700463 pr_warn("Failed to start orderly shutdown: forcing the issue\n");
Joel Stanley7a54f462015-04-15 16:16:53 -0700464
Robin Holt15d94b82013-07-08 16:01:32 -0700465 /*
466 * I guess this should try to kick off some daemon to sync and
467 * poweroff asap. Or not even bother syncing if we're doing an
468 * emergency shutdown?
469 */
470 emergency_sync();
471 kernel_power_off();
472 }
473
474 return ret;
475}
476
477static bool poweroff_force;
478
479static void poweroff_work_func(struct work_struct *work)
480{
481 __orderly_poweroff(poweroff_force);
482}
483
484static DECLARE_WORK(poweroff_work, poweroff_work_func);
485
486/**
487 * orderly_poweroff - Trigger an orderly system poweroff
488 * @force: force poweroff if command execution fails
489 *
490 * This may be called from any context to trigger a system shutdown.
491 * If the orderly shutdown fails, it will force an immediate shutdown.
492 */
Joel Stanley7a54f462015-04-15 16:16:53 -0700493void orderly_poweroff(bool force)
Robin Holt15d94b82013-07-08 16:01:32 -0700494{
495 if (force) /* do not override the pending "true" */
496 poweroff_force = true;
497 schedule_work(&poweroff_work);
Robin Holt15d94b82013-07-08 16:01:32 -0700498}
499EXPORT_SYMBOL_GPL(orderly_poweroff);
Robin Holt1b3a5d02013-07-08 16:01:42 -0700500
Joel Stanley7a54f462015-04-15 16:16:53 -0700501static void reboot_work_func(struct work_struct *work)
502{
503 __orderly_reboot();
504}
505
506static DECLARE_WORK(reboot_work, reboot_work_func);
507
508/**
509 * orderly_reboot - Trigger an orderly system reboot
510 *
511 * This may be called from any context to trigger a system reboot.
512 * If the orderly reboot fails, it will force an immediate reboot.
513 */
514void orderly_reboot(void)
515{
516 schedule_work(&reboot_work);
517}
518EXPORT_SYMBOL_GPL(orderly_reboot);
519
Robin Holt1b3a5d02013-07-08 16:01:42 -0700520static int __init reboot_setup(char *str)
521{
522 for (;;) {
Aaro Koskinenb287a252019-05-14 15:45:37 -0700523 enum reboot_mode *mode;
524
Robin Holt1b3a5d02013-07-08 16:01:42 -0700525 /*
526 * Having anything passed on the command line via
527 * reboot= will cause us to disable DMI checking
528 * below.
529 */
530 reboot_default = 0;
531
Aaro Koskinenb287a252019-05-14 15:45:37 -0700532 if (!strncmp(str, "panic_", 6)) {
533 mode = &panic_reboot_mode;
534 str += 6;
535 } else {
536 mode = &reboot_mode;
537 }
538
Robin Holt1b3a5d02013-07-08 16:01:42 -0700539 switch (*str) {
540 case 'w':
Aaro Koskinenb287a252019-05-14 15:45:37 -0700541 *mode = REBOOT_WARM;
Robin Holt1b3a5d02013-07-08 16:01:42 -0700542 break;
543
544 case 'c':
Aaro Koskinenb287a252019-05-14 15:45:37 -0700545 *mode = REBOOT_COLD;
Robin Holt1b3a5d02013-07-08 16:01:42 -0700546 break;
547
548 case 'h':
Aaro Koskinenb287a252019-05-14 15:45:37 -0700549 *mode = REBOOT_HARD;
Robin Holt1b3a5d02013-07-08 16:01:42 -0700550 break;
551
552 case 's':
Fabian Frederick616feab2014-06-04 16:11:25 -0700553 {
554 int rc;
555
556 if (isdigit(*(str+1))) {
557 rc = kstrtoint(str+1, 0, &reboot_cpu);
558 if (rc)
559 return rc;
560 } else if (str[1] == 'm' && str[2] == 'p' &&
561 isdigit(*(str+3))) {
562 rc = kstrtoint(str+3, 0, &reboot_cpu);
563 if (rc)
564 return rc;
565 } else
Aaro Koskinenb287a252019-05-14 15:45:37 -0700566 *mode = REBOOT_SOFT;
Robin Holt1b3a5d02013-07-08 16:01:42 -0700567 break;
Fabian Frederick616feab2014-06-04 16:11:25 -0700568 }
Robin Holt1b3a5d02013-07-08 16:01:42 -0700569 case 'g':
Aaro Koskinenb287a252019-05-14 15:45:37 -0700570 *mode = REBOOT_GPIO;
Robin Holt1b3a5d02013-07-08 16:01:42 -0700571 break;
572
573 case 'b':
574 case 'a':
575 case 'k':
576 case 't':
577 case 'e':
578 case 'p':
579 reboot_type = *str;
580 break;
581
582 case 'f':
583 reboot_force = 1;
584 break;
585 }
586
587 str = strchr(str, ',');
588 if (str)
589 str++;
590 else
591 break;
592 }
593 return 1;
594}
595__setup("reboot=", reboot_setup);