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",
46 dpm_resume_noirq(PMSG_RESUME
);
55 * This hypercall returns 1 if suspend was cancelled
56 * or the domain was merely checkpointed, and 0 if it
57 * is resuming in a new domain.
59 *cancelled
= HYPERVISOR_suspend(virt_to_mfn(xen_start_info
));
61 xen_post_suspend(*cancelled
);
72 dpm_resume_noirq(PMSG_RESUME
);
77 static void do_suspend(void)
82 shutting_down
= SHUTDOWN_SUSPEND
;
85 /* If the kernel is preemptible, we need to freeze all the processes
86 to prevent them from being in the middle of a pagetable update
88 err
= freeze_processes();
90 printk(KERN_ERR
"xen suspend: freeze failed %d\n", err
);
95 err
= dpm_suspend_start(PMSG_SUSPEND
);
97 printk(KERN_ERR
"xen suspend: dpm_suspend_start %d\n", err
);
101 printk(KERN_DEBUG
"suspending xenstore...\n");
104 err
= dpm_suspend_noirq(PMSG_SUSPEND
);
106 printk(KERN_ERR
"dpm_suspend_noirq failed: %d\n", err
);
110 err
= stop_machine(xen_suspend
, &cancelled
, cpumask_of(0));
112 printk(KERN_ERR
"failed to start xen_suspend: %d\n", err
);
122 dpm_resume_noirq(PMSG_RESUME
);
125 dpm_resume_end(PMSG_RESUME
);
127 /* Make sure timer events get retriggered on all CPUs */
130 #ifdef CONFIG_PREEMPT
133 shutting_down
= SHUTDOWN_INVALID
;
135 #endif /* CONFIG_PM_SLEEP */
137 static void shutdown_handler(struct xenbus_watch
*watch
,
138 const char **vec
, unsigned int len
)
141 struct xenbus_transaction xbt
;
144 if (shutting_down
!= SHUTDOWN_INVALID
)
148 err
= xenbus_transaction_start(&xbt
);
152 str
= (char *)xenbus_read(xbt
, "control", "shutdown", NULL
);
153 /* Ignore read errors and empty reads. */
154 if (XENBUS_IS_ERR_READ(str
)) {
155 xenbus_transaction_end(xbt
, 1);
159 xenbus_write(xbt
, "control", "shutdown", "");
161 err
= xenbus_transaction_end(xbt
, 0);
162 if (err
== -EAGAIN
) {
167 if (strcmp(str
, "poweroff") == 0 ||
168 strcmp(str
, "halt") == 0) {
169 shutting_down
= SHUTDOWN_POWEROFF
;
170 orderly_poweroff(false);
171 } else if (strcmp(str
, "reboot") == 0) {
172 shutting_down
= SHUTDOWN_POWEROFF
; /* ? */
174 #ifdef CONFIG_PM_SLEEP
175 } else if (strcmp(str
, "suspend") == 0) {
179 printk(KERN_INFO
"Ignoring shutdown request: %s\n", str
);
180 shutting_down
= SHUTDOWN_INVALID
;
186 static void sysrq_handler(struct xenbus_watch
*watch
, const char **vec
,
189 char sysrq_key
= '\0';
190 struct xenbus_transaction xbt
;
194 err
= xenbus_transaction_start(&xbt
);
197 if (!xenbus_scanf(xbt
, "control", "sysrq", "%c", &sysrq_key
)) {
198 printk(KERN_ERR
"Unable to read sysrq code in "
200 xenbus_transaction_end(xbt
, 1);
204 if (sysrq_key
!= '\0')
205 xenbus_printf(xbt
, "control", "sysrq", "%c", '\0');
207 err
= xenbus_transaction_end(xbt
, 0);
211 if (sysrq_key
!= '\0')
212 handle_sysrq(sysrq_key
, NULL
);
215 static struct xenbus_watch shutdown_watch
= {
216 .node
= "control/shutdown",
217 .callback
= shutdown_handler
220 static struct xenbus_watch sysrq_watch
= {
221 .node
= "control/sysrq",
222 .callback
= sysrq_handler
225 static int setup_shutdown_watcher(void)
229 err
= register_xenbus_watch(&shutdown_watch
);
231 printk(KERN_ERR
"Failed to set shutdown watcher\n");
235 err
= register_xenbus_watch(&sysrq_watch
);
237 printk(KERN_ERR
"Failed to set sysrq watcher\n");
244 static int shutdown_event(struct notifier_block
*notifier
,
248 setup_shutdown_watcher();
252 static int __init
setup_shutdown_event(void)
254 static struct notifier_block xenstore_notifier
= {
255 .notifier_call
= shutdown_event
257 register_xenstore_notifier(&xenstore_notifier
);
262 subsys_initcall(setup_shutdown_event
);