blob: 2ed0b045c69a0e66097c06284f7c266db9df69db [file] [log] [blame]
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -07001/******************************************************************************
2 * Talks to Xen Store to figure out what devices we have.
3 *
4 * Copyright (C) 2005 Rusty Russell, IBM Corporation
5 * Copyright (C) 2005 Mike Wray, Hewlett-Packard
6 * Copyright (C) 2005, 2006 XenSource Ltd
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version 2
10 * as published by the Free Software Foundation; or, when distributed
11 * separately from the Linux kernel or incorporated into other
12 * software packages, subject to the following license:
13 *
14 * Permission is hereby granted, free of charge, to any person obtaining a copy
15 * of this source file (the "Software"), to deal in the Software without
16 * restriction, including without limitation the rights to use, copy, modify,
17 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
18 * and to permit persons to whom the Software is furnished to do so, subject to
19 * the following conditions:
20 *
21 * The above copyright notice and this permission notice shall be included in
22 * all copies or substantial portions of the Software.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
26 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
27 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
28 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
29 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
30 * IN THE SOFTWARE.
31 */
32
33#define DPRINTK(fmt, args...) \
34 pr_debug("xenbus_probe (%s:%d) " fmt ".\n", \
35 __func__, __LINE__, ##args)
36
37#include <linux/kernel.h>
38#include <linux/err.h>
39#include <linux/string.h>
40#include <linux/ctype.h>
41#include <linux/fcntl.h>
42#include <linux/mm.h>
Alex Zeffertt1107ba82009-01-07 18:07:11 -080043#include <linux/proc_fs.h>
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070044#include <linux/notifier.h>
45#include <linux/kthread.h>
46#include <linux/mutex.h>
47#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090048#include <linux/slab.h>
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070049
50#include <asm/page.h>
51#include <asm/pgtable.h>
52#include <asm/xen/hypervisor.h>
Jeremy Fitzhardinge1ccbf532009-10-06 15:11:14 -070053
54#include <xen/xen.h>
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070055#include <xen/xenbus.h>
56#include <xen/events.h>
57#include <xen/page.h>
58
Sheng Yangbee6ab532010-05-14 12:39:33 +010059#include <xen/hvm.h>
60
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070061#include "xenbus_comms.h"
62#include "xenbus_probe.h"
63
Alex Zeffertt1107ba82009-01-07 18:07:11 -080064
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070065int xen_store_evtchn;
Jeremy Fitzhardinge8e3e9992009-03-21 23:51:26 -070066EXPORT_SYMBOL_GPL(xen_store_evtchn);
Alex Zeffertt1107ba82009-01-07 18:07:11 -080067
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070068struct xenstore_domain_interface *xen_store_interface;
Jeremy Fitzhardinge8e3e9992009-03-21 23:51:26 -070069EXPORT_SYMBOL_GPL(xen_store_interface);
70
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070071static unsigned long xen_store_mfn;
72
73static BLOCKING_NOTIFIER_HEAD(xenstore_chain);
74
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070075/* If something in array of ids matches this device, return it. */
76static const struct xenbus_device_id *
77match_device(const struct xenbus_device_id *arr, struct xenbus_device *dev)
78{
79 for (; *arr->devicetype != '\0'; arr++) {
80 if (!strcmp(arr->devicetype, dev->devicetype))
81 return arr;
82 }
83 return NULL;
84}
85
86int xenbus_match(struct device *_dev, struct device_driver *_drv)
87{
88 struct xenbus_driver *drv = to_xenbus_driver(_drv);
89
90 if (!drv->ids)
91 return 0;
92
93 return match_device(drv->ids, to_xenbus_device(_dev)) != NULL;
94}
Ian Campbell2de06cc2009-02-09 12:05:51 -080095EXPORT_SYMBOL_GPL(xenbus_match);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070096
Ian Campbell2de06cc2009-02-09 12:05:51 -080097
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -070098static void free_otherend_details(struct xenbus_device *dev)
99{
100 kfree(dev->otherend);
101 dev->otherend = NULL;
102}
103
104
105static void free_otherend_watch(struct xenbus_device *dev)
106{
107 if (dev->otherend_watch.node) {
108 unregister_xenbus_watch(&dev->otherend_watch);
109 kfree(dev->otherend_watch.node);
110 dev->otherend_watch.node = NULL;
111 }
112}
113
114
Ian Campbell2de06cc2009-02-09 12:05:51 -0800115static int talk_to_otherend(struct xenbus_device *dev)
116{
117 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
118
119 free_otherend_watch(dev);
120 free_otherend_details(dev);
121
122 return drv->read_otherend_details(dev);
123}
124
125
126
127static int watch_otherend(struct xenbus_device *dev)
128{
Ian Campbell6bac7f92010-12-10 14:39:15 +0000129 struct xen_bus_type *bus =
130 container_of(dev->dev.bus, struct xen_bus_type, bus);
Ian Campbell2de06cc2009-02-09 12:05:51 -0800131
Ian Campbell6bac7f92010-12-10 14:39:15 +0000132 return xenbus_watch_pathfmt(dev, &dev->otherend_watch,
133 bus->otherend_changed,
Ian Campbell2de06cc2009-02-09 12:05:51 -0800134 "%s/%s", dev->otherend, "state");
135}
136
137
138int xenbus_read_otherend_details(struct xenbus_device *xendev,
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700139 char *id_node, char *path_node)
140{
141 int err = xenbus_gather(XBT_NIL, xendev->nodename,
142 id_node, "%i", &xendev->otherend_id,
143 path_node, NULL, &xendev->otherend,
144 NULL);
145 if (err) {
146 xenbus_dev_fatal(xendev, err,
147 "reading other end details from %s",
148 xendev->nodename);
149 return err;
150 }
151 if (strlen(xendev->otherend) == 0 ||
152 !xenbus_exists(XBT_NIL, xendev->otherend, "")) {
153 xenbus_dev_fatal(xendev, -ENOENT,
154 "unable to read other end from %s. "
155 "missing or inaccessible.",
156 xendev->nodename);
157 free_otherend_details(xendev);
158 return -ENOENT;
159 }
160
161 return 0;
162}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800163EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700164
Ian Campbell2de06cc2009-02-09 12:05:51 -0800165void xenbus_otherend_changed(struct xenbus_watch *watch,
166 const char **vec, unsigned int len,
167 int ignore_on_shutdown)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700168{
169 struct xenbus_device *dev =
170 container_of(watch, struct xenbus_device, otherend_watch);
171 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
172 enum xenbus_state state;
173
174 /* Protect us against watches firing on old details when the otherend
175 details change, say immediately after a resume. */
176 if (!dev->otherend ||
177 strncmp(dev->otherend, vec[XS_WATCH_PATH],
178 strlen(dev->otherend))) {
Joe Perches898eb712007-10-18 03:06:30 -0700179 dev_dbg(&dev->dev, "Ignoring watch at %s\n",
180 vec[XS_WATCH_PATH]);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700181 return;
182 }
183
184 state = xenbus_read_driver_state(dev->otherend);
185
Joe Perches898eb712007-10-18 03:06:30 -0700186 dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n",
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700187 state, xenbus_strstate(state), dev->otherend_watch.node,
188 vec[XS_WATCH_PATH]);
189
190 /*
191 * Ignore xenbus transitions during shutdown. This prevents us doing
192 * work that can fail e.g., when the rootfs is gone.
193 */
194 if (system_state > SYSTEM_RUNNING) {
Ian Campbell2de06cc2009-02-09 12:05:51 -0800195 if (ignore_on_shutdown && (state == XenbusStateClosing))
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700196 xenbus_frontend_closed(dev);
197 return;
198 }
199
200 if (drv->otherend_changed)
201 drv->otherend_changed(dev, state);
202}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800203EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700204
205int xenbus_dev_probe(struct device *_dev)
206{
207 struct xenbus_device *dev = to_xenbus_device(_dev);
208 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
209 const struct xenbus_device_id *id;
210 int err;
211
212 DPRINTK("%s", dev->nodename);
213
214 if (!drv->probe) {
215 err = -ENODEV;
216 goto fail;
217 }
218
219 id = match_device(drv->ids, dev);
220 if (!id) {
221 err = -ENODEV;
222 goto fail;
223 }
224
225 err = talk_to_otherend(dev);
226 if (err) {
227 dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n",
228 dev->nodename);
229 return err;
230 }
231
232 err = drv->probe(dev, id);
233 if (err)
234 goto fail;
235
236 err = watch_otherend(dev);
237 if (err) {
238 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
239 dev->nodename);
240 return err;
241 }
242
243 return 0;
244fail:
245 xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
246 xenbus_switch_state(dev, XenbusStateClosed);
Jeremy Fitzhardinge7432e4b2009-10-29 14:19:42 -0700247 return err;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700248}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800249EXPORT_SYMBOL_GPL(xenbus_dev_probe);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700250
251int xenbus_dev_remove(struct device *_dev)
252{
253 struct xenbus_device *dev = to_xenbus_device(_dev);
254 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
255
256 DPRINTK("%s", dev->nodename);
257
258 free_otherend_watch(dev);
259 free_otherend_details(dev);
260
261 if (drv->remove)
262 drv->remove(dev);
263
264 xenbus_switch_state(dev, XenbusStateClosed);
265 return 0;
266}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800267EXPORT_SYMBOL_GPL(xenbus_dev_remove);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700268
Ian Campbell2de06cc2009-02-09 12:05:51 -0800269void xenbus_dev_shutdown(struct device *_dev)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700270{
271 struct xenbus_device *dev = to_xenbus_device(_dev);
272 unsigned long timeout = 5*HZ;
273
274 DPRINTK("%s", dev->nodename);
275
276 get_device(&dev->dev);
277 if (dev->state != XenbusStateConnected) {
278 printk(KERN_INFO "%s: %s: %s != Connected, skipping\n", __func__,
279 dev->nodename, xenbus_strstate(dev->state));
280 goto out;
281 }
282 xenbus_switch_state(dev, XenbusStateClosing);
283 timeout = wait_for_completion_timeout(&dev->down, timeout);
284 if (!timeout)
285 printk(KERN_INFO "%s: %s timeout closing device\n",
286 __func__, dev->nodename);
287 out:
288 put_device(&dev->dev);
289}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800290EXPORT_SYMBOL_GPL(xenbus_dev_shutdown);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700291
292int xenbus_register_driver_common(struct xenbus_driver *drv,
293 struct xen_bus_type *bus,
294 struct module *owner,
295 const char *mod_name)
296{
297 drv->driver.name = drv->name;
298 drv->driver.bus = &bus->bus;
299 drv->driver.owner = owner;
300 drv->driver.mod_name = mod_name;
301
302 return driver_register(&drv->driver);
303}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800304EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700305
306void xenbus_unregister_driver(struct xenbus_driver *drv)
307{
308 driver_unregister(&drv->driver);
309}
310EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
311
312struct xb_find_info
313{
314 struct xenbus_device *dev;
315 const char *nodename;
316};
317
318static int cmp_dev(struct device *dev, void *data)
319{
320 struct xenbus_device *xendev = to_xenbus_device(dev);
321 struct xb_find_info *info = data;
322
323 if (!strcmp(xendev->nodename, info->nodename)) {
324 info->dev = xendev;
325 get_device(dev);
326 return 1;
327 }
328 return 0;
329}
330
331struct xenbus_device *xenbus_device_find(const char *nodename,
332 struct bus_type *bus)
333{
334 struct xb_find_info info = { .dev = NULL, .nodename = nodename };
335
336 bus_for_each_dev(bus, NULL, &info, cmp_dev);
337 return info.dev;
338}
339
340static int cleanup_dev(struct device *dev, void *data)
341{
342 struct xenbus_device *xendev = to_xenbus_device(dev);
343 struct xb_find_info *info = data;
344 int len = strlen(info->nodename);
345
346 DPRINTK("%s", info->nodename);
347
348 /* Match the info->nodename path, or any subdirectory of that path. */
349 if (strncmp(xendev->nodename, info->nodename, len))
350 return 0;
351
352 /* If the node name is longer, ensure it really is a subdirectory. */
353 if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/'))
354 return 0;
355
356 info->dev = xendev;
357 get_device(dev);
358 return 1;
359}
360
361static void xenbus_cleanup_devices(const char *path, struct bus_type *bus)
362{
363 struct xb_find_info info = { .nodename = path };
364
365 do {
366 info.dev = NULL;
367 bus_for_each_dev(bus, NULL, &info, cleanup_dev);
368 if (info.dev) {
369 device_unregister(&info.dev->dev);
370 put_device(&info.dev->dev);
371 }
372 } while (info.dev);
373}
374
375static void xenbus_dev_release(struct device *dev)
376{
377 if (dev)
378 kfree(to_xenbus_device(dev));
379}
380
Bastian Blankcc85e932011-06-29 14:39:26 +0200381static ssize_t nodename_show(struct device *dev,
382 struct device_attribute *attr, char *buf)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700383{
384 return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename);
385}
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700386
Bastian Blankcc85e932011-06-29 14:39:26 +0200387static ssize_t devtype_show(struct device *dev,
388 struct device_attribute *attr, char *buf)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700389{
390 return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype);
391}
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700392
Bastian Blankcc85e932011-06-29 14:39:26 +0200393static ssize_t modalias_show(struct device *dev,
394 struct device_attribute *attr, char *buf)
Mark McLoughlind2f0c522008-04-02 10:54:05 -0700395{
396 return sprintf(buf, "xen:%s\n", to_xenbus_device(dev)->devicetype);
397}
Bastian Blankcc85e932011-06-29 14:39:26 +0200398
399struct device_attribute xenbus_dev_attrs[] = {
400 __ATTR_RO(nodename),
401 __ATTR_RO(devtype),
402 __ATTR_RO(modalias),
403 __ATTR_NULL
404};
405EXPORT_SYMBOL_GPL(xenbus_dev_attrs);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700406
407int xenbus_probe_node(struct xen_bus_type *bus,
408 const char *type,
409 const char *nodename)
410{
Kay Sievers2a678cc2009-01-06 10:44:34 -0800411 char devname[XEN_BUS_ID_SIZE];
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700412 int err;
413 struct xenbus_device *xendev;
414 size_t stringlen;
415 char *tmpstring;
416
417 enum xenbus_state state = xenbus_read_driver_state(nodename);
418
419 if (state != XenbusStateInitialising) {
420 /* Device is not new, so ignore it. This can happen if a
421 device is going away after switching to Closed. */
422 return 0;
423 }
424
425 stringlen = strlen(nodename) + 1 + strlen(type) + 1;
426 xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
427 if (!xendev)
428 return -ENOMEM;
429
430 xendev->state = XenbusStateInitialising;
431
432 /* Copy the strings into the extra space. */
433
434 tmpstring = (char *)(xendev + 1);
435 strcpy(tmpstring, nodename);
436 xendev->nodename = tmpstring;
437
438 tmpstring += strlen(tmpstring) + 1;
439 strcpy(tmpstring, type);
440 xendev->devicetype = tmpstring;
441 init_completion(&xendev->down);
442
443 xendev->dev.bus = &bus->bus;
444 xendev->dev.release = xenbus_dev_release;
445
Kay Sievers2a678cc2009-01-06 10:44:34 -0800446 err = bus->get_bus_id(devname, xendev->nodename);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700447 if (err)
448 goto fail;
449
Kay Sievers2a678cc2009-01-06 10:44:34 -0800450 dev_set_name(&xendev->dev, devname);
451
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700452 /* Register with generic device framework. */
453 err = device_register(&xendev->dev);
454 if (err)
455 goto fail;
456
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700457 return 0;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700458fail:
459 kfree(xendev);
460 return err;
461}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800462EXPORT_SYMBOL_GPL(xenbus_probe_node);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700463
464static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
465{
466 int err = 0;
467 char **dir;
468 unsigned int dir_n = 0;
469 int i;
470
471 dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700472 if (IS_ERR(dir))
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700473 return PTR_ERR(dir);
474
475 for (i = 0; i < dir_n; i++) {
Ian Campbell2de06cc2009-02-09 12:05:51 -0800476 err = bus->probe(bus, type, dir[i]);
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700477 if (err)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700478 break;
479 }
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700480
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700481 kfree(dir);
482 return err;
483}
484
485int xenbus_probe_devices(struct xen_bus_type *bus)
486{
487 int err = 0;
488 char **dir;
489 unsigned int i, dir_n;
490
491 dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700492 if (IS_ERR(dir))
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700493 return PTR_ERR(dir);
494
495 for (i = 0; i < dir_n; i++) {
496 err = xenbus_probe_device_type(bus, dir[i]);
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700497 if (err)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700498 break;
499 }
Jeremy Fitzhardingea39bda22010-03-29 14:38:12 -0700500
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700501 kfree(dir);
502 return err;
503}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800504EXPORT_SYMBOL_GPL(xenbus_probe_devices);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700505
506static unsigned int char_count(const char *str, char c)
507{
508 unsigned int i, ret = 0;
509
510 for (i = 0; str[i]; i++)
511 if (str[i] == c)
512 ret++;
513 return ret;
514}
515
516static int strsep_len(const char *str, char c, unsigned int len)
517{
518 unsigned int i;
519
520 for (i = 0; str[i]; i++)
521 if (str[i] == c) {
522 if (len == 0)
523 return i;
524 len--;
525 }
526 return (len == 0) ? i : -ERANGE;
527}
528
529void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
530{
531 int exists, rootlen;
532 struct xenbus_device *dev;
Kay Sievers2a678cc2009-01-06 10:44:34 -0800533 char type[XEN_BUS_ID_SIZE];
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700534 const char *p, *root;
535
536 if (char_count(node, '/') < 2)
537 return;
538
539 exists = xenbus_exists(XBT_NIL, node, "");
540 if (!exists) {
541 xenbus_cleanup_devices(node, &bus->bus);
542 return;
543 }
544
545 /* backend/<type>/... or device/<type>/... */
546 p = strchr(node, '/') + 1;
Kay Sievers2a678cc2009-01-06 10:44:34 -0800547 snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
548 type[XEN_BUS_ID_SIZE-1] = '\0';
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700549
550 rootlen = strsep_len(node, '/', bus->levels);
551 if (rootlen < 0)
552 return;
553 root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
554 if (!root)
555 return;
556
557 dev = xenbus_device_find(root, &bus->bus);
558 if (!dev)
559 xenbus_probe_node(bus, type, root);
560 else
561 put_device(&dev->dev);
562
563 kfree(root);
564}
Jeremy Fitzhardingec6a960c2009-02-09 12:05:53 -0800565EXPORT_SYMBOL_GPL(xenbus_dev_changed);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700566
Kazuhiro SUZUKIc7853ae2011-02-18 14:43:07 -0800567int xenbus_dev_suspend(struct device *dev)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700568{
569 int err = 0;
570 struct xenbus_driver *drv;
Ian Campbell6bac7f92010-12-10 14:39:15 +0000571 struct xenbus_device *xdev
572 = container_of(dev, struct xenbus_device, dev);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700573
Ian Campbell2de06cc2009-02-09 12:05:51 -0800574 DPRINTK("%s", xdev->nodename);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700575
576 if (dev->driver == NULL)
577 return 0;
578 drv = to_xenbus_driver(dev->driver);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700579 if (drv->suspend)
Kazuhiro SUZUKIc7853ae2011-02-18 14:43:07 -0800580 err = drv->suspend(xdev);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700581 if (err)
582 printk(KERN_WARNING
Kay Sievers2a678cc2009-01-06 10:44:34 -0800583 "xenbus: suspend %s failed: %i\n", dev_name(dev), err);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700584 return 0;
585}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800586EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700587
Ian Campbell2de06cc2009-02-09 12:05:51 -0800588int xenbus_dev_resume(struct device *dev)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700589{
590 int err;
591 struct xenbus_driver *drv;
Ian Campbell6bac7f92010-12-10 14:39:15 +0000592 struct xenbus_device *xdev
593 = container_of(dev, struct xenbus_device, dev);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700594
Ian Campbell2de06cc2009-02-09 12:05:51 -0800595 DPRINTK("%s", xdev->nodename);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700596
597 if (dev->driver == NULL)
598 return 0;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700599 drv = to_xenbus_driver(dev->driver);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700600 err = talk_to_otherend(xdev);
601 if (err) {
602 printk(KERN_WARNING
603 "xenbus: resume (talk_to_otherend) %s failed: %i\n",
Kay Sievers2a678cc2009-01-06 10:44:34 -0800604 dev_name(dev), err);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700605 return err;
606 }
607
608 xdev->state = XenbusStateInitialising;
609
610 if (drv->resume) {
611 err = drv->resume(xdev);
612 if (err) {
613 printk(KERN_WARNING
614 "xenbus: resume %s failed: %i\n",
Kay Sievers2a678cc2009-01-06 10:44:34 -0800615 dev_name(dev), err);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700616 return err;
617 }
618 }
619
620 err = watch_otherend(xdev);
621 if (err) {
622 printk(KERN_WARNING
623 "xenbus_probe: resume (watch_otherend) %s failed: "
Kay Sievers2a678cc2009-01-06 10:44:34 -0800624 "%d.\n", dev_name(dev), err);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700625 return err;
626 }
627
628 return 0;
629}
Ian Campbell2de06cc2009-02-09 12:05:51 -0800630EXPORT_SYMBOL_GPL(xenbus_dev_resume);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700631
Kazuhiro SUZUKIc7853ae2011-02-18 14:43:07 -0800632int xenbus_dev_cancel(struct device *dev)
633{
634 /* Do nothing */
635 DPRINTK("cancel");
636 return 0;
637}
638EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
639
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700640/* A flag to determine if xenstored is 'ready' (i.e. has started) */
641int xenstored_ready = 0;
642
643
644int register_xenstore_notifier(struct notifier_block *nb)
645{
646 int ret = 0;
647
Stefano Stabellinia947f0f2010-10-04 16:10:06 +0100648 if (xenstored_ready > 0)
649 ret = nb->notifier_call(nb, 0, NULL);
650 else
651 blocking_notifier_chain_register(&xenstore_chain, nb);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700652
653 return ret;
654}
655EXPORT_SYMBOL_GPL(register_xenstore_notifier);
656
657void unregister_xenstore_notifier(struct notifier_block *nb)
658{
659 blocking_notifier_chain_unregister(&xenstore_chain, nb);
660}
661EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
662
663void xenbus_probe(struct work_struct *unused)
664{
Stefano Stabellinia947f0f2010-10-04 16:10:06 +0100665 xenstored_ready = 1;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700666
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700667 /* Notify others that xenstore is up */
668 blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
669}
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100670EXPORT_SYMBOL_GPL(xenbus_probe);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700671
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100672static int __init xenbus_probe_initcall(void)
673{
674 if (!xen_domain())
675 return -ENODEV;
676
677 if (xen_initial_domain() || xen_hvm_domain())
678 return 0;
679
680 xenbus_probe(NULL);
681 return 0;
682}
683
684device_initcall(xenbus_probe_initcall);
685
686static int __init xenbus_init(void)
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700687{
688 int err = 0;
Juan Quintelab37a56d2010-09-02 14:53:56 +0100689 unsigned long page = 0;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700690
691 DPRINTK("");
692
693 err = -ENODEV;
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700694 if (!xen_domain())
Jeremy Fitzhardinge7432e4b2009-10-29 14:19:42 -0700695 return err;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700696
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700697 /*
698 * Domain0 doesn't have a store_evtchn or store_mfn yet.
699 */
Jeremy Fitzhardinge6e833582008-08-19 13:16:17 -0700700 if (xen_initial_domain()) {
Juan Quintelab37a56d2010-09-02 14:53:56 +0100701 struct evtchn_alloc_unbound alloc_unbound;
702
703 /* Allocate Xenstore page */
704 page = get_zeroed_page(GFP_KERNEL);
705 if (!page)
706 goto out_error;
707
708 xen_store_mfn = xen_start_info->store_mfn =
709 pfn_to_mfn(virt_to_phys((void *)page) >>
710 PAGE_SHIFT);
711
712 /* Next allocate a local port which xenstored can bind to */
713 alloc_unbound.dom = DOMID_SELF;
714 alloc_unbound.remote_dom = 0;
715
716 err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
717 &alloc_unbound);
718 if (err == -ENOSYS)
719 goto out_error;
720
721 BUG_ON(err);
722 xen_store_evtchn = xen_start_info->store_evtchn =
723 alloc_unbound.port;
724
725 xen_store_interface = mfn_to_virt(xen_store_mfn);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700726 } else {
Sheng Yangbee6ab532010-05-14 12:39:33 +0100727 if (xen_hvm_domain()) {
728 uint64_t v = 0;
729 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
730 if (err)
731 goto out_error;
732 xen_store_evtchn = (int)v;
733 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
734 if (err)
735 goto out_error;
736 xen_store_mfn = (unsigned long)v;
737 xen_store_interface = ioremap(xen_store_mfn << PAGE_SHIFT, PAGE_SIZE);
738 } else {
739 xen_store_evtchn = xen_start_info->store_evtchn;
740 xen_store_mfn = xen_start_info->store_mfn;
741 xen_store_interface = mfn_to_virt(xen_store_mfn);
Stefano Stabellinia947f0f2010-10-04 16:10:06 +0100742 xenstored_ready = 1;
Sheng Yangbee6ab532010-05-14 12:39:33 +0100743 }
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700744 }
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700745
746 /* Initialize the interface to xenstore. */
747 err = xs_init();
748 if (err) {
749 printk(KERN_WARNING
750 "XENBUS: Error initializing xenstore comms: %i\n", err);
Ian Campbell2de06cc2009-02-09 12:05:51 -0800751 goto out_error;
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700752 }
753
Alex Zeffertt1107ba82009-01-07 18:07:11 -0800754#ifdef CONFIG_XEN_COMPAT_XENFS
755 /*
756 * Create xenfs mountpoint in /proc for compatibility with
757 * utilities that expect to find "xenbus" under "/proc/xen".
758 */
759 proc_mkdir("xen", NULL);
760#endif
761
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700762 return 0;
763
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700764 out_error:
Juan Quintelab37a56d2010-09-02 14:53:56 +0100765 if (page != 0)
766 free_page(page);
Ian Campbell2de06cc2009-02-09 12:05:51 -0800767
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700768 return err;
769}
770
Stefano Stabellini183d03c2010-05-17 17:08:21 +0100771postcore_initcall(xenbus_init);
Jeremy Fitzhardinge4bac07c2007-07-17 18:37:06 -0700772
773MODULE_LICENSE("GPL");