2 * Handle extern requests for shutdown, reboot and sysrq
4 #include <linux/kernel.h>
6 #include <linux/reboot.h>
7 #include <linux/sysrq.h>
8 #include <linux/stop_machine.h>
9 #include <linux/freezer.h>
11 #include <xen/xenbus.h>
12 #include <xen/grant_table.h>
13 #include <xen/events.h>
14 #include <xen/hvc-console.h>
15 #include <xen/xen-ops.h>
17 #include <asm/xen/hypercall.h>
18 #include <asm/xen/page.h>
21 SHUTDOWN_INVALID = -1,
22 SHUTDOWN_POWEROFF = 0,
24 /* Code 3 is SHUTDOWN_CRASH, which we don't use because the domain can only
25 report a crash, not be instructed to crash!
26 HALT is the same as POWEROFF, as far as we're concerned. The tools use
27 the distinction when we return the reason code to them. */
31 /* Ignore multiple shutdown requests. */
32 static enum shutdown_state shutting_down = SHUTDOWN_INVALID;
34 #ifdef CONFIG_PM_SLEEP
35 static int xen_suspend(void *data)
37 int *cancelled = data;
40 BUG_ON(!irqs_disabled());
42 load_cr3(swapper_pg_dir);
44 err = device_power_down(PMSG_SUSPEND);
46 printk(KERN_ERR "xen_suspend: device_power_down failed: %d\n",
56 * This hypercall returns 1 if suspend was cancelled
57 * or the domain was merely checkpointed, and 0 if it
58 * is resuming in a new domain.
60 *cancelled = HYPERVISOR_suspend(virt_to_mfn(xen_start_info));
62 xen_post_suspend(*cancelled);
76 static void do_suspend(void)
81 shutting_down = SHUTDOWN_SUSPEND;
84 /* If the kernel is preemptible, we need to freeze all the processes
85 to prevent them from being in the middle of a pagetable update
87 err = freeze_processes();
89 printk(KERN_ERR "xen suspend: freeze failed %d\n", err);
94 err = device_suspend(PMSG_SUSPEND);
96 printk(KERN_ERR "xen suspend: device_suspend %d\n", err);
100 printk("suspending xenbus...\n");
101 /* XXX use normal device tree? */
104 err = stop_machine_run(xen_suspend, &cancelled, 0);
106 printk(KERN_ERR "failed to start xen_suspend: %d\n", err);
113 xenbus_suspend_cancel();
117 /* Make sure timer events get retriggered on all CPUs */
120 #ifdef CONFIG_PREEMPT
123 shutting_down = SHUTDOWN_INVALID;
125 #endif /* CONFIG_PM_SLEEP */
127 static void shutdown_handler(struct xenbus_watch *watch,
128 const char **vec, unsigned int len)
131 struct xenbus_transaction xbt;
134 if (shutting_down != SHUTDOWN_INVALID)
138 err = xenbus_transaction_start(&xbt);
142 str = (char *)xenbus_read(xbt, "control", "shutdown", NULL);
143 /* Ignore read errors and empty reads. */
144 if (XENBUS_IS_ERR_READ(str)) {
145 xenbus_transaction_end(xbt, 1);
149 xenbus_write(xbt, "control", "shutdown", "");
151 err = xenbus_transaction_end(xbt, 0);
152 if (err == -EAGAIN) {
157 if (strcmp(str, "poweroff") == 0 ||
158 strcmp(str, "halt") == 0) {
159 shutting_down = SHUTDOWN_POWEROFF;
160 orderly_poweroff(false);
161 } else if (strcmp(str, "reboot") == 0) {
162 shutting_down = SHUTDOWN_POWEROFF; /* ? */
164 #ifdef CONFIG_PM_SLEEP
165 } else if (strcmp(str, "suspend") == 0) {
169 printk(KERN_INFO "Ignoring shutdown request: %s\n", str);
170 shutting_down = SHUTDOWN_INVALID;
176 static void sysrq_handler(struct xenbus_watch *watch, const char **vec,
179 char sysrq_key = '\0';
180 struct xenbus_transaction xbt;
184 err = xenbus_transaction_start(&xbt);
187 if (!xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key)) {
188 printk(KERN_ERR "Unable to read sysrq code in "
190 xenbus_transaction_end(xbt, 1);
194 if (sysrq_key != '\0')
195 xenbus_printf(xbt, "control", "sysrq", "%c", '\0');
197 err = xenbus_transaction_end(xbt, 0);
201 if (sysrq_key != '\0')
202 handle_sysrq(sysrq_key, NULL);
205 static struct xenbus_watch shutdown_watch = {
206 .node = "control/shutdown",
207 .callback = shutdown_handler
210 static struct xenbus_watch sysrq_watch = {
211 .node = "control/sysrq",
212 .callback = sysrq_handler
215 static int setup_shutdown_watcher(void)
219 err = register_xenbus_watch(&shutdown_watch);
221 printk(KERN_ERR "Failed to set shutdown watcher\n");
225 err = register_xenbus_watch(&sysrq_watch);
227 printk(KERN_ERR "Failed to set sysrq watcher\n");
234 static int shutdown_event(struct notifier_block *notifier,
238 setup_shutdown_watcher();
242 static int __init setup_shutdown_event(void)
244 static struct notifier_block xenstore_notifier = {
245 .notifier_call = shutdown_event
247 register_xenstore_notifier(&xenstore_notifier);
252 subsys_initcall(setup_shutdown_event);