Merge branch 'upstream' of git://git.linux-mips.org/pub/scm/ralf/upstream-linus
[linux-2.6.git] / kernel / reboot.c
blob269ed9384cc4284e9cf6043bd00667ea582c4369
1 /*
2 * linux/kernel/reboot.c
4 * Copyright (C) 2013 Linus Torvalds
5 */
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
24 int C_A_D = 1;
25 struct pid *cad_pid;
26 EXPORT_SYMBOL(cad_pid);
28 #if defined(CONFIG_ARM) || defined(CONFIG_UNICORE32)
29 #define DEFAULT_REBOOT_MODE = REBOOT_HARD
30 #else
31 #define DEFAULT_REBOOT_MODE
32 #endif
33 enum reboot_mode reboot_mode DEFAULT_REBOOT_MODE;
35 int reboot_default;
36 int reboot_cpu;
37 enum reboot_type reboot_type = BOOT_ACPI;
38 int reboot_force;
41 * If set, this is used for preparing the system to power off.
44 void (*pm_power_off_prepare)(void);
46 /**
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();
66 device_shutdown();
69 /**
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);
85 /**
86 * unregister_reboot_notifier - Unregister previously registered reboot notifier
87 * @nb: Hook to be unregistered
89 * Unregisters a previously registered reboot
90 * notifier function.
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
121 * or %NULL
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();
130 syscore_shutdown();
131 if (!cmd)
132 pr_emerg("Restarting system\n");
133 else
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();
146 device_shutdown();
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();
157 syscore_shutdown();
158 pr_emerg("System halted\n");
159 kmsg_dump(KMSG_DUMP_HALT);
160 machine_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();
175 syscore_shutdown();
176 pr_emerg("Power down\n");
177 kmsg_dump(KMSG_DUMP_POWEROFF);
178 machine_power_off();
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,
193 void __user *, arg)
195 struct pid_namespace *pid_ns = task_active_pid_ns(current);
196 char buffer[256];
197 int ret = 0;
199 /* We only trust the superuser with rebooting the system. */
200 if (!ns_capable(pid_ns->user_ns, CAP_SYS_BOOT))
201 return -EPERM;
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))
209 return -EINVAL;
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
214 * call do_exit().
216 ret = reboot_pid_ns(pid_ns, cmd);
217 if (ret)
218 return ret;
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);
227 switch (cmd) {
228 case LINUX_REBOOT_CMD_RESTART:
229 kernel_restart(NULL);
230 break;
232 case LINUX_REBOOT_CMD_CAD_ON:
233 C_A_D = 1;
234 break;
236 case LINUX_REBOOT_CMD_CAD_OFF:
237 C_A_D = 0;
238 break;
240 case LINUX_REBOOT_CMD_HALT:
241 kernel_halt();
242 do_exit(0);
243 panic("cannot halt");
245 case LINUX_REBOOT_CMD_POWER_OFF:
246 kernel_power_off();
247 do_exit(0);
248 break;
250 case LINUX_REBOOT_CMD_RESTART2:
251 ret = strncpy_from_user(&buffer[0], arg, sizeof(buffer) - 1);
252 if (ret < 0) {
253 ret = -EFAULT;
254 break;
256 buffer[sizeof(buffer) - 1] = '\0';
258 kernel_restart(buffer);
259 break;
261 #ifdef CONFIG_KEXEC
262 case LINUX_REBOOT_CMD_KEXEC:
263 ret = kernel_kexec();
264 break;
265 #endif
267 #ifdef CONFIG_HIBERNATION
268 case LINUX_REBOOT_CMD_SW_SUSPEND:
269 ret = hibernate();
270 break;
271 #endif
273 default:
274 ret = -EINVAL;
275 break;
277 mutex_unlock(&reboot_mutex);
278 return ret;
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);
295 if (C_A_D)
296 schedule_work(&cad_work);
297 else
298 kill_cad_pid(SIGINT, 1);
301 char poweroff_cmd[POWEROFF_CMD_PATH_LEN] = "/sbin/poweroff";
303 static int __orderly_poweroff(bool force)
305 char **argv;
306 static char *envp[] = {
307 "HOME=/",
308 "PATH=/sbin:/bin:/usr/sbin:/usr/bin",
309 NULL
311 int ret;
313 argv = argv_split(GFP_KERNEL, poweroff_cmd, NULL);
314 if (argv) {
315 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_EXEC);
316 argv_free(argv);
317 } else {
318 ret = -ENOMEM;
321 if (ret && force) {
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?
328 emergency_sync();
329 kernel_power_off();
332 return ret;
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);
356 return 0;
358 EXPORT_SYMBOL_GPL(orderly_poweroff);
360 static int __init reboot_setup(char *str)
362 for (;;) {
364 * Having anything passed on the command line via
365 * reboot= will cause us to disable DMI checking
366 * below.
368 reboot_default = 0;
370 switch (*str) {
371 case 'w':
372 reboot_mode = REBOOT_WARM;
373 break;
375 case 'c':
376 reboot_mode = REBOOT_COLD;
377 break;
379 case 'h':
380 reboot_mode = REBOOT_HARD;
381 break;
383 case 's':
384 if (isdigit(*(str+1)))
385 reboot_cpu = simple_strtoul(str+1, NULL, 0);
386 else if (str[1] == 'm' && str[2] == 'p' &&
387 isdigit(*(str+3)))
388 reboot_cpu = simple_strtoul(str+3, NULL, 0);
389 else
390 reboot_mode = REBOOT_SOFT;
391 break;
393 case 'g':
394 reboot_mode = REBOOT_GPIO;
395 break;
397 case 'b':
398 case 'a':
399 case 'k':
400 case 't':
401 case 'e':
402 case 'p':
403 reboot_type = *str;
404 break;
406 case 'f':
407 reboot_force = 1;
408 break;
411 str = strchr(str, ',');
412 if (str)
413 str++;
414 else
415 break;
417 return 1;
419 __setup("reboot=", reboot_setup);