2 * linux/kernel/reboot.c
4 * Copyright (C) 2013 Linus Torvalds
7 #define pr_fmt(fmt) "reboot: " fmt
9 #include <linux/ctype.h>
10 #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>
21 * this indicates whether you can reboot with ctrl-alt-del: the default is yes
26 EXPORT_SYMBOL(cad_pid
);
28 #if defined(CONFIG_ARM) || defined(CONFIG_UNICORE32)
29 #define DEFAULT_REBOOT_MODE = REBOOT_HARD
31 #define DEFAULT_REBOOT_MODE
33 enum reboot_mode reboot_mode DEFAULT_REBOOT_MODE
;
37 enum reboot_type reboot_type
= BOOT_ACPI
;
41 * If set, this is used for preparing the system to power off.
44 void (*pm_power_off_prepare
)(void);
47 * emergency_restart - reboot the system
49 * Without shutting down any hardware or taking any locks
50 * reboot the system. This is called when we know we are in
51 * trouble so this is our best effort to reboot. This is
52 * safe to call in interrupt context.
54 void emergency_restart(void)
56 kmsg_dump(KMSG_DUMP_EMERG
);
57 machine_emergency_restart();
59 EXPORT_SYMBOL_GPL(emergency_restart
);
61 void kernel_restart_prepare(char *cmd
)
63 blocking_notifier_call_chain(&reboot_notifier_list
, SYS_RESTART
, cmd
);
64 system_state
= SYSTEM_RESTART
;
65 usermodehelper_disable();
70 * register_reboot_notifier - Register function to be called at reboot time
71 * @nb: Info about notifier function to be called
73 * Registers a function with the list of functions
74 * to be called at reboot time.
76 * Currently always returns zero, as blocking_notifier_chain_register()
77 * always returns zero.
79 int register_reboot_notifier(struct notifier_block
*nb
)
81 return blocking_notifier_chain_register(&reboot_notifier_list
, nb
);
83 EXPORT_SYMBOL(register_reboot_notifier
);
86 * unregister_reboot_notifier - Unregister previously registered reboot notifier
87 * @nb: Hook to be unregistered
89 * Unregisters a previously registered reboot
92 * Returns zero on success, or %-ENOENT on failure.
94 int unregister_reboot_notifier(struct notifier_block
*nb
)
96 return blocking_notifier_chain_unregister(&reboot_notifier_list
, nb
);
98 EXPORT_SYMBOL(unregister_reboot_notifier
);
100 static void migrate_to_reboot_cpu(void)
102 /* The boot cpu is always logical cpu 0 */
103 int cpu
= reboot_cpu
;
105 cpu_hotplug_disable();
107 /* Make certain the cpu I'm about to reboot on is online */
108 if (!cpu_online(cpu
))
109 cpu
= cpumask_first(cpu_online_mask
);
111 /* Prevent races with other tasks migrating this task */
112 current
->flags
|= PF_NO_SETAFFINITY
;
114 /* Make certain I only run on the appropriate processor */
115 set_cpus_allowed_ptr(current
, cpumask_of(cpu
));
119 * kernel_restart - reboot the system
120 * @cmd: pointer to buffer containing command to execute for restart
123 * Shutdown everything and perform a clean reboot.
124 * This is not safe to call in interrupt context.
126 void kernel_restart(char *cmd
)
128 kernel_restart_prepare(cmd
);
129 migrate_to_reboot_cpu();
132 pr_emerg("Restarting system\n");
134 pr_emerg("Restarting system with command '%s'\n", cmd
);
135 kmsg_dump(KMSG_DUMP_RESTART
);
136 machine_restart(cmd
);
138 EXPORT_SYMBOL_GPL(kernel_restart
);
140 static void kernel_shutdown_prepare(enum system_states state
)
142 blocking_notifier_call_chain(&reboot_notifier_list
,
143 (state
== SYSTEM_HALT
) ? SYS_HALT
: SYS_POWER_OFF
, NULL
);
144 system_state
= state
;
145 usermodehelper_disable();
149 * kernel_halt - halt the system
151 * Shutdown everything and perform a clean system halt.
153 void kernel_halt(void)
155 kernel_shutdown_prepare(SYSTEM_HALT
);
156 migrate_to_reboot_cpu();
158 pr_emerg("System halted\n");
159 kmsg_dump(KMSG_DUMP_HALT
);
162 EXPORT_SYMBOL_GPL(kernel_halt
);
165 * kernel_power_off - power_off the system
167 * Shutdown everything and perform a clean system power_off.
169 void kernel_power_off(void)
171 kernel_shutdown_prepare(SYSTEM_POWER_OFF
);
172 if (pm_power_off_prepare
)
173 pm_power_off_prepare();
174 migrate_to_reboot_cpu();
176 pr_emerg("Power down\n");
177 kmsg_dump(KMSG_DUMP_POWEROFF
);
180 EXPORT_SYMBOL_GPL(kernel_power_off
);
182 static DEFINE_MUTEX(reboot_mutex
);
185 * Reboot system call: for obvious reasons only root may call it,
186 * and even root needs to set up some magic numbers in the registers
187 * so that some mistake won't make this reboot the whole machine.
188 * You can also set the meaning of the ctrl-alt-del-key here.
190 * reboot doesn't sync: do that yourself before calling this.
192 SYSCALL_DEFINE4(reboot
, int, magic1
, int, magic2
, unsigned int, cmd
,
195 struct pid_namespace
*pid_ns
= task_active_pid_ns(current
);
199 /* We only trust the superuser with rebooting the system. */
200 if (!ns_capable(pid_ns
->user_ns
, CAP_SYS_BOOT
))
203 /* For safety, we require "magic" arguments. */
204 if (magic1
!= LINUX_REBOOT_MAGIC1
||
205 (magic2
!= LINUX_REBOOT_MAGIC2
&&
206 magic2
!= LINUX_REBOOT_MAGIC2A
&&
207 magic2
!= LINUX_REBOOT_MAGIC2B
&&
208 magic2
!= LINUX_REBOOT_MAGIC2C
))
212 * If pid namespaces are enabled and the current task is in a child
213 * pid_namespace, the command is handled by reboot_pid_ns() which will
216 ret
= reboot_pid_ns(pid_ns
, cmd
);
220 /* Instead of trying to make the power_off code look like
221 * halt when pm_power_off is not set do it the easy way.
223 if ((cmd
== LINUX_REBOOT_CMD_POWER_OFF
) && !pm_power_off
)
224 cmd
= LINUX_REBOOT_CMD_HALT
;
226 mutex_lock(&reboot_mutex
);
228 case LINUX_REBOOT_CMD_RESTART
:
229 kernel_restart(NULL
);
232 case LINUX_REBOOT_CMD_CAD_ON
:
236 case LINUX_REBOOT_CMD_CAD_OFF
:
240 case LINUX_REBOOT_CMD_HALT
:
243 panic("cannot halt");
245 case LINUX_REBOOT_CMD_POWER_OFF
:
250 case LINUX_REBOOT_CMD_RESTART2
:
251 ret
= strncpy_from_user(&buffer
[0], arg
, sizeof(buffer
) - 1);
256 buffer
[sizeof(buffer
) - 1] = '\0';
258 kernel_restart(buffer
);
262 case LINUX_REBOOT_CMD_KEXEC
:
263 ret
= kernel_kexec();
267 #ifdef CONFIG_HIBERNATION
268 case LINUX_REBOOT_CMD_SW_SUSPEND
:
277 mutex_unlock(&reboot_mutex
);
281 static void deferred_cad(struct work_struct
*dummy
)
283 kernel_restart(NULL
);
287 * This function gets called by ctrl-alt-del - ie the keyboard interrupt.
288 * As it's called within an interrupt, it may NOT sync: the only choice
289 * is whether to reboot at once, or just ignore the ctrl-alt-del.
291 void ctrl_alt_del(void)
293 static DECLARE_WORK(cad_work
, deferred_cad
);
296 schedule_work(&cad_work
);
298 kill_cad_pid(SIGINT
, 1);
301 char poweroff_cmd
[POWEROFF_CMD_PATH_LEN
] = "/sbin/poweroff";
303 static int __orderly_poweroff(bool force
)
306 static char *envp
[] = {
308 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
313 argv
= argv_split(GFP_KERNEL
, poweroff_cmd
, NULL
);
315 ret
= call_usermodehelper(argv
[0], argv
, envp
, UMH_WAIT_EXEC
);
322 pr_warn("Failed to start orderly shutdown: forcing the issue\n");
324 * I guess this should try to kick off some daemon to sync and
325 * poweroff asap. Or not even bother syncing if we're doing an
326 * emergency shutdown?
335 static bool poweroff_force
;
337 static void poweroff_work_func(struct work_struct
*work
)
339 __orderly_poweroff(poweroff_force
);
342 static DECLARE_WORK(poweroff_work
, poweroff_work_func
);
345 * orderly_poweroff - Trigger an orderly system poweroff
346 * @force: force poweroff if command execution fails
348 * This may be called from any context to trigger a system shutdown.
349 * If the orderly shutdown fails, it will force an immediate shutdown.
351 int orderly_poweroff(bool force
)
353 if (force
) /* do not override the pending "true" */
354 poweroff_force
= true;
355 schedule_work(&poweroff_work
);
358 EXPORT_SYMBOL_GPL(orderly_poweroff
);
360 static int __init
reboot_setup(char *str
)
364 * Having anything passed on the command line via
365 * reboot= will cause us to disable DMI checking
372 reboot_mode
= REBOOT_WARM
;
376 reboot_mode
= REBOOT_COLD
;
380 reboot_mode
= REBOOT_HARD
;
384 if (isdigit(*(str
+1)))
385 reboot_cpu
= simple_strtoul(str
+1, NULL
, 0);
386 else if (str
[1] == 'm' && str
[2] == 'p' &&
388 reboot_cpu
= simple_strtoul(str
+3, NULL
, 0);
390 reboot_mode
= REBOOT_SOFT
;
394 reboot_mode
= REBOOT_GPIO
;
411 str
= strchr(str
, ',');
419 __setup("reboot=", reboot_setup
);