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
= sysdev_suspend(PMSG_SUSPEND
);
44 printk(KERN_ERR
"xen_suspend: sysdev_suspend failed: %d\n",
54 * This hypercall returns 1 if suspend was cancelled
55 * or the domain was merely checkpointed, and 0 if it
56 * is resuming in a new domain.
58 *cancelled
= HYPERVISOR_suspend(virt_to_mfn(xen_start_info
));
60 xen_post_suspend(*cancelled
);
75 static void do_suspend(void)
80 shutting_down
= SHUTDOWN_SUSPEND
;
82 err
= stop_machine_create();
84 printk(KERN_ERR
"xen suspend: failed to setup stop_machine %d\n", err
);
89 /* If the kernel is preemptible, we need to freeze all the processes
90 to prevent them from being in the middle of a pagetable update
92 err
= freeze_processes();
94 printk(KERN_ERR
"xen suspend: freeze failed %d\n", err
);
99 err
= dpm_suspend_start(PMSG_SUSPEND
);
101 printk(KERN_ERR
"xen suspend: dpm_suspend_start %d\n", err
);
105 printk(KERN_DEBUG
"suspending xenstore...\n");
108 err
= dpm_suspend_noirq(PMSG_SUSPEND
);
110 printk(KERN_ERR
"dpm_suspend_noirq failed: %d\n", err
);
114 err
= stop_machine(xen_suspend
, &cancelled
, cpumask_of(0));
116 dpm_resume_noirq(PMSG_RESUME
);
119 printk(KERN_ERR
"failed to start xen_suspend: %d\n", err
);
130 dpm_resume_end(PMSG_RESUME
);
132 /* Make sure timer events get retriggered on all CPUs */
136 #ifdef CONFIG_PREEMPT
141 stop_machine_destroy();
144 shutting_down
= SHUTDOWN_INVALID
;
146 #endif /* CONFIG_PM_SLEEP */
148 static void shutdown_handler(struct xenbus_watch
*watch
,
149 const char **vec
, unsigned int len
)
152 struct xenbus_transaction xbt
;
155 if (shutting_down
!= SHUTDOWN_INVALID
)
159 err
= xenbus_transaction_start(&xbt
);
163 str
= (char *)xenbus_read(xbt
, "control", "shutdown", NULL
);
164 /* Ignore read errors and empty reads. */
165 if (XENBUS_IS_ERR_READ(str
)) {
166 xenbus_transaction_end(xbt
, 1);
170 xenbus_write(xbt
, "control", "shutdown", "");
172 err
= xenbus_transaction_end(xbt
, 0);
173 if (err
== -EAGAIN
) {
178 if (strcmp(str
, "poweroff") == 0 ||
179 strcmp(str
, "halt") == 0) {
180 shutting_down
= SHUTDOWN_POWEROFF
;
181 orderly_poweroff(false);
182 } else if (strcmp(str
, "reboot") == 0) {
183 shutting_down
= SHUTDOWN_POWEROFF
; /* ? */
185 #ifdef CONFIG_PM_SLEEP
186 } else if (strcmp(str
, "suspend") == 0) {
190 printk(KERN_INFO
"Ignoring shutdown request: %s\n", str
);
191 shutting_down
= SHUTDOWN_INVALID
;
197 static void sysrq_handler(struct xenbus_watch
*watch
, const char **vec
,
200 char sysrq_key
= '\0';
201 struct xenbus_transaction xbt
;
205 err
= xenbus_transaction_start(&xbt
);
208 if (!xenbus_scanf(xbt
, "control", "sysrq", "%c", &sysrq_key
)) {
209 printk(KERN_ERR
"Unable to read sysrq code in "
211 xenbus_transaction_end(xbt
, 1);
215 if (sysrq_key
!= '\0')
216 xenbus_printf(xbt
, "control", "sysrq", "%c", '\0');
218 err
= xenbus_transaction_end(xbt
, 0);
222 if (sysrq_key
!= '\0')
223 handle_sysrq(sysrq_key
, NULL
);
226 static struct xenbus_watch shutdown_watch
= {
227 .node
= "control/shutdown",
228 .callback
= shutdown_handler
231 static struct xenbus_watch sysrq_watch
= {
232 .node
= "control/sysrq",
233 .callback
= sysrq_handler
236 static int setup_shutdown_watcher(void)
240 err
= register_xenbus_watch(&shutdown_watch
);
242 printk(KERN_ERR
"Failed to set shutdown watcher\n");
246 err
= register_xenbus_watch(&sysrq_watch
);
248 printk(KERN_ERR
"Failed to set sysrq watcher\n");
255 static int shutdown_event(struct notifier_block
*notifier
,
259 setup_shutdown_watcher();
263 static int __init
setup_shutdown_event(void)
265 static struct notifier_block xenstore_notifier
= {
266 .notifier_call
= shutdown_event
268 register_xenstore_notifier(&xenstore_notifier
);
273 subsys_initcall(setup_shutdown_event
);