blob: 07e857b0de13958e974181ff76f9da11e1af7c7e [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +09006#include <linux/slab.h>
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -07007#include <linux/reboot.h>
8#include <linux/sysrq.h>
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +01009#include <linux/stop_machine.h>
10#include <linux/freezer.h>
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070011
12#include <xen/xenbus.h>
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010013#include <xen/grant_table.h>
14#include <xen/events.h>
15#include <xen/hvc-console.h>
16#include <xen/xen-ops.h>
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070017
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010018#include <asm/xen/hypercall.h>
19#include <asm/xen/page.h>
20
21enum shutdown_state {
22 SHUTDOWN_INVALID = -1,
23 SHUTDOWN_POWEROFF = 0,
24 SHUTDOWN_SUSPEND = 2,
25 /* Code 3 is SHUTDOWN_CRASH, which we don't use because the domain can only
26 report a crash, not be instructed to crash!
27 HALT is the same as POWEROFF, as far as we're concerned. The tools use
28 the distinction when we return the reason code to them. */
29 SHUTDOWN_HALT = 4,
30};
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -070031
32/* Ignore multiple shutdown requests. */
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010033static enum shutdown_state shutting_down = SHUTDOWN_INVALID;
34
Jeremy Fitzhardingec7827722008-05-29 09:02:19 +010035#ifdef CONFIG_PM_SLEEP
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010036static int xen_suspend(void *data)
37{
38 int *cancelled = data;
Jeremy Fitzhardinge359cdd32008-05-26 23:31:28 +010039 int err;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010040
41 BUG_ON(!irqs_disabled());
42
Rafael J. Wysocki770824b2009-02-22 18:38:50 +010043 err = sysdev_suspend(PMSG_SUSPEND);
44 if (err) {
45 printk(KERN_ERR "xen_suspend: sysdev_suspend failed: %d\n",
46 err);
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();
Ian Campbell1e6fcf82009-03-25 17:46:42 +000072
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010073 return 0;
74}
75
76static void do_suspend(void)
77{
78 int err;
79 int cancelled = 1;
80
81 shutting_down = SHUTDOWN_SUSPEND;
82
83#ifdef CONFIG_PREEMPT
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
86 during suspend. */
87 err = freeze_processes();
88 if (err) {
89 printk(KERN_ERR "xen suspend: freeze failed %d\n", err);
Tejun Heo3fc1f1e2010-05-06 18:49:20 +020090 goto out;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010091 }
92#endif
93
Alan Sternd1616302009-05-24 22:05:42 +020094 err = dpm_suspend_start(PMSG_SUSPEND);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010095 if (err) {
Alan Sternd1616302009-05-24 22:05:42 +020096 printk(KERN_ERR "xen suspend: dpm_suspend_start %d\n", err);
Ian Campbell65f63382009-12-01 11:47:14 +000097 goto out_thaw;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +010098 }
99
Ian Campbellc5cae662009-12-17 13:57:09 +0000100 printk(KERN_DEBUG "suspending xenstore...\n");
101 xs_suspend();
102
Alan Sternd1616302009-05-24 22:05:42 +0200103 err = dpm_suspend_noirq(PMSG_SUSPEND);
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100104 if (err) {
Alan Sternd1616302009-05-24 22:05:42 +0200105 printk(KERN_ERR "dpm_suspend_noirq failed: %d\n", err);
Ian Campbell65f63382009-12-01 11:47:14 +0000106 goto out_resume;
Rafael J. Wysocki2ed8d2b2009-03-16 22:34:06 +0100107 }
108
Rusty Russellf7df8ed2009-01-10 21:58:09 -0800109 err = stop_machine(xen_suspend, &cancelled, cpumask_of(0));
Jeremy Fitzhardinge922cc38a2009-11-24 09:58:49 -0800110
111 dpm_resume_noirq(PMSG_RESUME);
112
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100113 if (err) {
114 printk(KERN_ERR "failed to start xen_suspend: %d\n", err);
Ian Campbell65f63382009-12-01 11:47:14 +0000115 cancelled = 1;
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100116 }
117
Ian Campbellc5cae662009-12-17 13:57:09 +0000118out_resume:
Isaku Yamahataad55db92008-07-08 15:06:32 -0700119 if (!cancelled) {
120 xen_arch_resume();
Ian Campbellde5b31b2009-02-09 12:05:50 -0800121 xs_resume();
Isaku Yamahataad55db92008-07-08 15:06:32 -0700122 } else
Ian Campbellde5b31b2009-02-09 12:05:50 -0800123 xs_suspend_cancel();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100124
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();
Ian Campbell65f63382009-12-01 11:47:14 +0000129
130out_thaw:
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100131#ifdef CONFIG_PREEMPT
132 thaw_processes();
Ian Campbell65f63382009-12-01 11:47:14 +0000133out:
Tejun Heo3fc1f1e2010-05-06 18:49:20 +0200134#endif
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100135 shutting_down = SHUTDOWN_INVALID;
136}
Jeremy Fitzhardingec7827722008-05-29 09:02:19 +0100137#endif /* CONFIG_PM_SLEEP */
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700138
139static void shutdown_handler(struct xenbus_watch *watch,
140 const char **vec, unsigned int len)
141{
142 char *str;
143 struct xenbus_transaction xbt;
144 int err;
145
146 if (shutting_down != SHUTDOWN_INVALID)
147 return;
148
149 again:
150 err = xenbus_transaction_start(&xbt);
151 if (err)
152 return;
153
154 str = (char *)xenbus_read(xbt, "control", "shutdown", NULL);
155 /* Ignore read errors and empty reads. */
156 if (XENBUS_IS_ERR_READ(str)) {
157 xenbus_transaction_end(xbt, 1);
158 return;
159 }
160
161 xenbus_write(xbt, "control", "shutdown", "");
162
163 err = xenbus_transaction_end(xbt, 0);
164 if (err == -EAGAIN) {
165 kfree(str);
166 goto again;
167 }
168
169 if (strcmp(str, "poweroff") == 0 ||
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100170 strcmp(str, "halt") == 0) {
171 shutting_down = SHUTDOWN_POWEROFF;
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700172 orderly_poweroff(false);
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100173 } else if (strcmp(str, "reboot") == 0) {
174 shutting_down = SHUTDOWN_POWEROFF; /* ? */
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700175 ctrl_alt_del();
Jeremy Fitzhardinge0e913982008-05-26 23:31:27 +0100176#ifdef CONFIG_PM_SLEEP
177 } else if (strcmp(str, "suspend") == 0) {
178 do_suspend();
179#endif
180 } else {
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700181 printk(KERN_INFO "Ignoring shutdown request: %s\n", str);
182 shutting_down = SHUTDOWN_INVALID;
183 }
184
185 kfree(str);
186}
187
Randy Dunlapf3bc3182010-05-24 14:33:41 -0700188#ifdef CONFIG_MAGIC_SYSRQ
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700189static void sysrq_handler(struct xenbus_watch *watch, const char **vec,
190 unsigned int len)
191{
192 char sysrq_key = '\0';
193 struct xenbus_transaction xbt;
194 int err;
195
196 again:
197 err = xenbus_transaction_start(&xbt);
198 if (err)
199 return;
200 if (!xenbus_scanf(xbt, "control", "sysrq", "%c", &sysrq_key)) {
201 printk(KERN_ERR "Unable to read sysrq code in "
202 "control/sysrq\n");
203 xenbus_transaction_end(xbt, 1);
204 return;
205 }
206
207 if (sysrq_key != '\0')
208 xenbus_printf(xbt, "control", "sysrq", "%c", '\0');
209
210 err = xenbus_transaction_end(xbt, 0);
211 if (err == -EAGAIN)
212 goto again;
213
214 if (sysrq_key != '\0')
215 handle_sysrq(sysrq_key, NULL);
216}
217
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700218static struct xenbus_watch sysrq_watch = {
219 .node = "control/sysrq",
220 .callback = sysrq_handler
221};
Randy Dunlapf3bc3182010-05-24 14:33:41 -0700222#endif
223
224static struct xenbus_watch shutdown_watch = {
225 .node = "control/shutdown",
226 .callback = shutdown_handler
227};
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700228
229static int setup_shutdown_watcher(void)
230{
231 int err;
232
233 err = register_xenbus_watch(&shutdown_watch);
234 if (err) {
235 printk(KERN_ERR "Failed to set shutdown watcher\n");
236 return err;
237 }
238
Randy Dunlapf3bc3182010-05-24 14:33:41 -0700239#ifdef CONFIG_MAGIC_SYSRQ
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700240 err = register_xenbus_watch(&sysrq_watch);
241 if (err) {
242 printk(KERN_ERR "Failed to set sysrq watcher\n");
243 return err;
244 }
Randy Dunlapf3bc3182010-05-24 14:33:41 -0700245#endif
Jeremy Fitzhardinge3e2b8fb2007-07-17 18:37:07 -0700246
247 return 0;
248}
249
250static int shutdown_event(struct notifier_block *notifier,
251 unsigned long event,
252 void *data)
253{
254 setup_shutdown_watcher();
255 return NOTIFY_DONE;
256}
257
258static int __init setup_shutdown_event(void)
259{
260 static struct notifier_block xenstore_notifier = {
261 .notifier_call = shutdown_event
262 };
263 register_xenstore_notifier(&xenstore_notifier);
264
265 return 0;
266}
267
268subsys_initcall(setup_shutdown_event);