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 err = device_power_down(PMSG_SUSPEND);
44 printk(KERN_ERR "xen_suspend: device_power_down failed: %d\n",
48 err = sysdev_suspend(PMSG_SUSPEND);
50 printk(KERN_ERR "xen_suspend: sysdev_suspend failed: %d\n",
52 device_power_up(PMSG_RESUME);
61 * This hypercall returns 1 if suspend was cancelled
62 * or the domain was merely checkpointed, and 0 if it
63 * is resuming in a new domain.
65 *cancelled = HYPERVISOR_suspend(virt_to_mfn(xen_start_info));
67 xen_post_suspend(*cancelled);
72 device_power_up(PMSG_RESUME);
83 static void do_suspend(void)
88 shutting_down = SHUTDOWN_SUSPEND;
91 /* If the kernel is preemptible, we need to freeze all the processes
92 to prevent them from being in the middle of a pagetable update
94 err = freeze_processes();
96 printk(KERN_ERR "xen suspend: freeze failed %d\n", err);
101 err = device_suspend(PMSG_SUSPEND);
103 printk(KERN_ERR "xen suspend: device_suspend %d\n", err);
107 printk("suspending xenbus...\n");
108 /* XXX use normal device tree? */
111 err = stop_machine(xen_suspend, &cancelled, cpumask_of(0));
113 printk(KERN_ERR "failed to start xen_suspend: %d\n", err);
121 xenbus_suspend_cancel();
123 device_resume(PMSG_RESUME);
125 /* Make sure timer events get retriggered on all CPUs */
128 #ifdef CONFIG_PREEMPT
131 shutting_down = SHUTDOWN_INVALID;
133 #endif /* CONFIG_PM_SLEEP */
135 static void shutdown_handler(struct xenbus_watch *watch,
136 const char **vec, unsigned int len)
139 struct xenbus_transaction xbt;
142 if (shutting_down != SHUTDOWN_INVALID)
146 err = xenbus_transaction_start(&xbt);
150 str = (char *)xenbus_read(xbt, "control", "shutdown", NULL);
151 /* Ignore read errors and empty reads. */
152 if (XENBUS_IS_ERR_READ(str)) {
153 xenbus_transaction_end(xbt, 1);
157 xenbus_write(xbt, "control", "shutdown", "");
159 err = xenbus_transaction_end(xbt, 0);
160 if (err == -EAGAIN) {
165 if (strcmp(str, "poweroff") == 0 ||
166 strcmp(str, "halt") == 0) {
167 shutting_down = SHUTDOWN_POWEROFF;
168 orderly_poweroff(false);
169 } else if (strcmp(str, "reboot") == 0) {
170 shutting_down = SHUTDOWN_POWEROFF; /* ? */
172 #ifdef CONFIG_PM_SLEEP
173 } else if (strcmp(str, "suspend") == 0) {
177 printk(KERN_INFO "Ignoring shutdown request: %s\n", str);
178 shutting_down = SHUTDOWN_INVALID;
184 static void sysrq_handler(struct xenbus_watch *watch, const char **vec,
187 char sysrq_key = '\0';
188 struct xenbus_transaction xbt;
192 err = xenbus_transaction_start(&xbt);
195 if (!xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key)) {
196 printk(KERN_ERR "Unable to read sysrq code in "
198 xenbus_transaction_end(xbt, 1);
202 if (sysrq_key != '\0')
203 xenbus_printf(xbt, "control", "sysrq", "%c", '\0');
205 err = xenbus_transaction_end(xbt, 0);
209 if (sysrq_key != '\0')
210 handle_sysrq(sysrq_key, NULL);
213 static struct xenbus_watch shutdown_watch = {
214 .node = "control/shutdown",
215 .callback = shutdown_handler
218 static struct xenbus_watch sysrq_watch = {
219 .node = "control/sysrq",
220 .callback = sysrq_handler
223 static int setup_shutdown_watcher(void)
227 err = register_xenbus_watch(&shutdown_watch);
229 printk(KERN_ERR "Failed to set shutdown watcher\n");
233 err = register_xenbus_watch(&sysrq_watch);
235 printk(KERN_ERR "Failed to set sysrq watcher\n");
242 static int shutdown_event(struct notifier_block *notifier,
246 setup_shutdown_watcher();
250 static int __init setup_shutdown_event(void)
252 static struct notifier_block xenstore_notifier = {
253 .notifier_call = shutdown_event
255 register_xenstore_notifier(&xenstore_notifier);
260 subsys_initcall(setup_shutdown_event);