blob: 10d03d7931c47236a42e2e7ac158ac7564308354 [file] [log] [blame]
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -07001/*
2 * Handle extern requests for shutdown, reboot and sysrq
3 */
4#include <linux/kernel.h>
5#include <linux/err.h>
6#include <linux/reboot.h>
7#include <linux/sysrq.h>
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01008#include <linux/stop_machine.h>
9#include <linux/freezer.h>
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070010
11#include <xen/xenbus.h>
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010012#include <xen/grant_table.h>
13#include <xen/events.h>
14#include <xen/hvc-console.h>
15#include <xen/xen-ops.h>
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070016
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010017#include <asm/xen/hypercall.h>
18#include <asm/xen/page.h>
19
20enum shutdown_state {
21 SHUTDOWN_INVALID = -1,
22 SHUTDOWN_POWEROFF = 0,
23 SHUTDOWN_SUSPEND = 2,
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. */
28 SHUTDOWN_HALT = 4,
29};
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070030
31/* Ignore multiple shutdown requests. */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010032static enum shutdown_state shutting_down = SHUTDOWN_INVALID;
33
Jeremy Fitzhardingec7827722008-05-29 09:02:19 +010034#ifdef CONFIG_PM_SLEEP
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010035static int xen_suspend(void *data)
36{
37 int *cancelled = data;
Jeremy Fitzhardinge359cdd32008-05-26 23:31:28 +010038 int err;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010039
40 BUG_ON(!irqs_disabled());
41
Rafael J. Wysocki770824b2009-02-22 18:38:50 +010042 err = sysdev_suspend(PMSG_SUSPEND);
43 if (err) {
44 printk(KERN_ERR "xen_suspend: sysdev_suspend failed: %d\n",
45 err);
Alan Sternd1616302009-05-24 22:05:42 +020046 dpm_resume_noirq(PMSG_RESUME);
Rafael J. Wysocki770824b2009-02-22 18:38:50 +010047 return err;
48 }
Jeremy Fitzhardinge359cdd32008-05-26 23:31:28 +010049
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010050 xen_mm_pin_all();
51 gnttab_suspend();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010052 xen_pre_suspend();
53
54 /*
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.
58 */
59 *cancelled = HYPERVISOR_suspend(virt_to_mfn(xen_start_info));
60
61 xen_post_suspend(*cancelled);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010062 gnttab_resume();
63 xen_mm_unpin_all();
64
65 if (!*cancelled) {
66 xen_irq_resume();
67 xen_console_resume();
Isaku Yamahataad55db92008-07-08 15:06:32 -070068 xen_timer_resume();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010069 }
70
Ian Campbell1e6fcf82009-03-25 17:46:42 +000071 sysdev_resume();
Alan Sternd1616302009-05-24 22:05:42 +020072 dpm_resume_noirq(PMSG_RESUME);
Ian Campbell1e6fcf82009-03-25 17:46:42 +000073
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010074 return 0;
75}
76
77static void do_suspend(void)
78{
79 int err;
80 int cancelled = 1;
81
82 shutting_down = SHUTDOWN_SUSPEND;
83
84#ifdef CONFIG_PREEMPT
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
87 during suspend. */
88 err = freeze_processes();
89 if (err) {
90 printk(KERN_ERR "xen suspend: freeze failed %d\n", err);
91 return;
92 }
93#endif
94
Alan Sternd1616302009-05-24 22:05:42 +020095 err = dpm_suspend_start(PMSG_SUSPEND);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010096 if (err) {
Alan Sternd1616302009-05-24 22:05:42 +020097 printk(KERN_ERR "xen suspend: dpm_suspend_start %d\n", err);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010098 goto out;
99 }
100
Ian Campbellde5b31b2009-02-09 12:05:50 -0800101 printk(KERN_DEBUG "suspending xenstore...\n");
102 xs_suspend();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100103
Alan Sternd1616302009-05-24 22:05:42 +0200104 err = dpm_suspend_noirq(PMSG_SUSPEND);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100105 if (err) {
Alan Sternd1616302009-05-24 22:05:42 +0200106 printk(KERN_ERR "dpm_suspend_noirq failed: %d\n", err);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100107 goto resume_devices;
108 }
109
Rusty Russellf7df8ed2009-01-10 21:58:09 -0800110 err = stop_machine(xen_suspend, &cancelled, cpumask_of(0));
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100111 if (err) {
112 printk(KERN_ERR "failed to start xen_suspend: %d\n", err);
113 goto out;
114 }
115
Isaku Yamahataad55db92008-07-08 15:06:32 -0700116 if (!cancelled) {
117 xen_arch_resume();
Ian Campbellde5b31b2009-02-09 12:05:50 -0800118 xs_resume();
Isaku Yamahataad55db92008-07-08 15:06:32 -0700119 } else
Ian Campbellde5b31b2009-02-09 12:05:50 -0800120 xs_suspend_cancel();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100121
Alan Sternd1616302009-05-24 22:05:42 +0200122 dpm_resume_noirq(PMSG_RESUME);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100123
124resume_devices:
Alan Sternd1616302009-05-24 22:05:42 +0200125 dpm_resume_end(PMSG_RESUME);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100126
Jeremy Fitzhardinge359cdd32008-05-26 23:31:28 +0100127 /* Make sure timer events get retriggered on all CPUs */
128 clock_was_set();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100129out:
130#ifdef CONFIG_PREEMPT
131 thaw_processes();
132#endif
133 shutting_down = SHUTDOWN_INVALID;
134}
Jeremy Fitzhardingec7827722008-05-29 09:02:19 +0100135#endif /* CONFIG_PM_SLEEP */
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700136
137static void shutdown_handler(struct xenbus_watch *watch,
138 const char **vec, unsigned int len)
139{
140 char *str;
141 struct xenbus_transaction xbt;
142 int err;
143
144 if (shutting_down != SHUTDOWN_INVALID)
145 return;
146
147 again:
148 err = xenbus_transaction_start(&xbt);
149 if (err)
150 return;
151
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);
156 return;
157 }
158
159 xenbus_write(xbt, "control", "shutdown", "");
160
161 err = xenbus_transaction_end(xbt, 0);
162 if (err == -EAGAIN) {
163 kfree(str);
164 goto again;
165 }
166
167 if (strcmp(str, "poweroff") == 0 ||
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100168 strcmp(str, "halt") == 0) {
169 shutting_down = SHUTDOWN_POWEROFF;
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700170 orderly_poweroff(false);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100171 } else if (strcmp(str, "reboot") == 0) {
172 shutting_down = SHUTDOWN_POWEROFF; /* ? */
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700173 ctrl_alt_del();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100174#ifdef CONFIG_PM_SLEEP
175 } else if (strcmp(str, "suspend") == 0) {
176 do_suspend();
177#endif
178 } else {
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700179 printk(KERN_INFO "Ignoring shutdown request: %s\n", str);
180 shutting_down = SHUTDOWN_INVALID;
181 }
182
183 kfree(str);
184}
185
186static void sysrq_handler(struct xenbus_watch *watch, const char **vec,
187 unsigned int len)
188{
189 char sysrq_key = '\0';
190 struct xenbus_transaction xbt;
191 int err;
192
193 again:
194 err = xenbus_transaction_start(&xbt);
195 if (err)
196 return;
197 if (!xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key)) {
198 printk(KERN_ERR "Unable to read sysrq code in "
199 "control/sysrq\n");
200 xenbus_transaction_end(xbt, 1);
201 return;
202 }
203
204 if (sysrq_key != '\0')
205 xenbus_printf(xbt, "control", "sysrq", "%c", '\0');
206
207 err = xenbus_transaction_end(xbt, 0);
208 if (err == -EAGAIN)
209 goto again;
210
211 if (sysrq_key != '\0')
212 handle_sysrq(sysrq_key, NULL);
213}
214
215static struct xenbus_watch shutdown_watch = {
216 .node = "control/shutdown",
217 .callback = shutdown_handler
218};
219
220static struct xenbus_watch sysrq_watch = {
221 .node = "control/sysrq",
222 .callback = sysrq_handler
223};
224
225static int setup_shutdown_watcher(void)
226{
227 int err;
228
229 err = register_xenbus_watch(&shutdown_watch);
230 if (err) {
231 printk(KERN_ERR "Failed to set shutdown watcher\n");
232 return err;
233 }
234
235 err = register_xenbus_watch(&sysrq_watch);
236 if (err) {
237 printk(KERN_ERR "Failed to set sysrq watcher\n");
238 return err;
239 }
240
241 return 0;
242}
243
244static int shutdown_event(struct notifier_block *notifier,
245 unsigned long event,
246 void *data)
247{
248 setup_shutdown_watcher();
249 return NOTIFY_DONE;
250}
251
252static int __init setup_shutdown_event(void)
253{
254 static struct notifier_block xenstore_notifier = {
255 .notifier_call = shutdown_event
256 };
257 register_xenstore_notifier(&xenstore_notifier);
258
259 return 0;
260}
261
262subsys_initcall(setup_shutdown_event);