Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 1 | /****************************************************************************** |
| 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 | |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 33 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 34 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 35 | #define DPRINTK(fmt, args...) \ |
| 36 | pr_debug("xenbus_probe (%s:%d) " fmt ".\n", \ |
| 37 | __func__, __LINE__, ##args) |
| 38 | |
| 39 | #include <linux/kernel.h> |
| 40 | #include <linux/err.h> |
| 41 | #include <linux/string.h> |
| 42 | #include <linux/ctype.h> |
| 43 | #include <linux/fcntl.h> |
| 44 | #include <linux/mm.h> |
Alex Zeffertt | 1107ba8 | 2009-01-07 18:07:11 -0800 | [diff] [blame] | 45 | #include <linux/proc_fs.h> |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 46 | #include <linux/notifier.h> |
| 47 | #include <linux/kthread.h> |
| 48 | #include <linux/mutex.h> |
| 49 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 50 | #include <linux/slab.h> |
Paul Gortmaker | 72ee511 | 2011-07-03 16:20:57 -0400 | [diff] [blame] | 51 | #include <linux/module.h> |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 52 | |
| 53 | #include <asm/page.h> |
| 54 | #include <asm/pgtable.h> |
| 55 | #include <asm/xen/hypervisor.h> |
Jeremy Fitzhardinge | 1ccbf53 | 2009-10-06 15:11:14 -0700 | [diff] [blame] | 56 | |
| 57 | #include <xen/xen.h> |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 58 | #include <xen/xenbus.h> |
| 59 | #include <xen/events.h> |
Boris Ostrovsky | 16f1cf3 | 2015-04-29 17:10:13 -0400 | [diff] [blame] | 60 | #include <xen/xen-ops.h> |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 61 | #include <xen/page.h> |
| 62 | |
Sheng Yang | bee6ab5 | 2010-05-14 12:39:33 +0100 | [diff] [blame] | 63 | #include <xen/hvm.h> |
| 64 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 65 | #include "xenbus_comms.h" |
| 66 | #include "xenbus_probe.h" |
| 67 | |
Alex Zeffertt | 1107ba8 | 2009-01-07 18:07:11 -0800 | [diff] [blame] | 68 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 69 | int xen_store_evtchn; |
Jeremy Fitzhardinge | 8e3e999 | 2009-03-21 23:51:26 -0700 | [diff] [blame] | 70 | EXPORT_SYMBOL_GPL(xen_store_evtchn); |
Alex Zeffertt | 1107ba8 | 2009-01-07 18:07:11 -0800 | [diff] [blame] | 71 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 72 | struct xenstore_domain_interface *xen_store_interface; |
Jeremy Fitzhardinge | 8e3e999 | 2009-03-21 23:51:26 -0700 | [diff] [blame] | 73 | EXPORT_SYMBOL_GPL(xen_store_interface); |
| 74 | |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 75 | enum xenstore_init xen_store_domain_type; |
| 76 | EXPORT_SYMBOL_GPL(xen_store_domain_type); |
| 77 | |
Julien Grall | 5f51042 | 2015-08-07 17:34:42 +0100 | [diff] [blame] | 78 | static unsigned long xen_store_gfn; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 79 | |
| 80 | static BLOCKING_NOTIFIER_HEAD(xenstore_chain); |
| 81 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 82 | /* If something in array of ids matches this device, return it. */ |
| 83 | static const struct xenbus_device_id * |
| 84 | match_device(const struct xenbus_device_id *arr, struct xenbus_device *dev) |
| 85 | { |
| 86 | for (; *arr->devicetype != '\0'; arr++) { |
| 87 | if (!strcmp(arr->devicetype, dev->devicetype)) |
| 88 | return arr; |
| 89 | } |
| 90 | return NULL; |
| 91 | } |
| 92 | |
| 93 | int xenbus_match(struct device *_dev, struct device_driver *_drv) |
| 94 | { |
| 95 | struct xenbus_driver *drv = to_xenbus_driver(_drv); |
| 96 | |
| 97 | if (!drv->ids) |
| 98 | return 0; |
| 99 | |
| 100 | return match_device(drv->ids, to_xenbus_device(_dev)) != NULL; |
| 101 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 102 | EXPORT_SYMBOL_GPL(xenbus_match); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 103 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 104 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 105 | static void free_otherend_details(struct xenbus_device *dev) |
| 106 | { |
| 107 | kfree(dev->otherend); |
| 108 | dev->otherend = NULL; |
| 109 | } |
| 110 | |
| 111 | |
| 112 | static void free_otherend_watch(struct xenbus_device *dev) |
| 113 | { |
| 114 | if (dev->otherend_watch.node) { |
| 115 | unregister_xenbus_watch(&dev->otherend_watch); |
| 116 | kfree(dev->otherend_watch.node); |
| 117 | dev->otherend_watch.node = NULL; |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 122 | static int talk_to_otherend(struct xenbus_device *dev) |
| 123 | { |
| 124 | struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver); |
| 125 | |
| 126 | free_otherend_watch(dev); |
| 127 | free_otherend_details(dev); |
| 128 | |
| 129 | return drv->read_otherend_details(dev); |
| 130 | } |
| 131 | |
| 132 | |
| 133 | |
| 134 | static int watch_otherend(struct xenbus_device *dev) |
| 135 | { |
Ian Campbell | 6bac7f9 | 2010-12-10 14:39:15 +0000 | [diff] [blame] | 136 | struct xen_bus_type *bus = |
| 137 | container_of(dev->dev.bus, struct xen_bus_type, bus); |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 138 | |
Ian Campbell | 6bac7f9 | 2010-12-10 14:39:15 +0000 | [diff] [blame] | 139 | return xenbus_watch_pathfmt(dev, &dev->otherend_watch, |
| 140 | bus->otherend_changed, |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 141 | "%s/%s", dev->otherend, "state"); |
| 142 | } |
| 143 | |
| 144 | |
| 145 | int xenbus_read_otherend_details(struct xenbus_device *xendev, |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 146 | char *id_node, char *path_node) |
| 147 | { |
| 148 | int err = xenbus_gather(XBT_NIL, xendev->nodename, |
| 149 | id_node, "%i", &xendev->otherend_id, |
| 150 | path_node, NULL, &xendev->otherend, |
| 151 | NULL); |
| 152 | if (err) { |
| 153 | xenbus_dev_fatal(xendev, err, |
| 154 | "reading other end details from %s", |
| 155 | xendev->nodename); |
| 156 | return err; |
| 157 | } |
| 158 | if (strlen(xendev->otherend) == 0 || |
| 159 | !xenbus_exists(XBT_NIL, xendev->otherend, "")) { |
| 160 | xenbus_dev_fatal(xendev, -ENOENT, |
| 161 | "unable to read other end from %s. " |
| 162 | "missing or inaccessible.", |
| 163 | xendev->nodename); |
| 164 | free_otherend_details(xendev); |
| 165 | return -ENOENT; |
| 166 | } |
| 167 | |
| 168 | return 0; |
| 169 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 170 | EXPORT_SYMBOL_GPL(xenbus_read_otherend_details); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 171 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 172 | void xenbus_otherend_changed(struct xenbus_watch *watch, |
| 173 | const char **vec, unsigned int len, |
| 174 | int ignore_on_shutdown) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 175 | { |
| 176 | struct xenbus_device *dev = |
| 177 | container_of(watch, struct xenbus_device, otherend_watch); |
| 178 | struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver); |
| 179 | enum xenbus_state state; |
| 180 | |
| 181 | /* Protect us against watches firing on old details when the otherend |
| 182 | details change, say immediately after a resume. */ |
| 183 | if (!dev->otherend || |
| 184 | strncmp(dev->otherend, vec[XS_WATCH_PATH], |
| 185 | strlen(dev->otherend))) { |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 186 | dev_dbg(&dev->dev, "Ignoring watch at %s\n", |
| 187 | vec[XS_WATCH_PATH]); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 188 | return; |
| 189 | } |
| 190 | |
| 191 | state = xenbus_read_driver_state(dev->otherend); |
| 192 | |
Joe Perches | 898eb71 | 2007-10-18 03:06:30 -0700 | [diff] [blame] | 193 | dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n", |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 194 | state, xenbus_strstate(state), dev->otherend_watch.node, |
| 195 | vec[XS_WATCH_PATH]); |
| 196 | |
| 197 | /* |
| 198 | * Ignore xenbus transitions during shutdown. This prevents us doing |
| 199 | * work that can fail e.g., when the rootfs is gone. |
| 200 | */ |
| 201 | if (system_state > SYSTEM_RUNNING) { |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 202 | if (ignore_on_shutdown && (state == XenbusStateClosing)) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 203 | xenbus_frontend_closed(dev); |
| 204 | return; |
| 205 | } |
| 206 | |
| 207 | if (drv->otherend_changed) |
| 208 | drv->otherend_changed(dev, state); |
| 209 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 210 | EXPORT_SYMBOL_GPL(xenbus_otherend_changed); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 211 | |
| 212 | int xenbus_dev_probe(struct device *_dev) |
| 213 | { |
| 214 | struct xenbus_device *dev = to_xenbus_device(_dev); |
| 215 | struct xenbus_driver *drv = to_xenbus_driver(_dev->driver); |
| 216 | const struct xenbus_device_id *id; |
| 217 | int err; |
| 218 | |
| 219 | DPRINTK("%s", dev->nodename); |
| 220 | |
| 221 | if (!drv->probe) { |
| 222 | err = -ENODEV; |
| 223 | goto fail; |
| 224 | } |
| 225 | |
| 226 | id = match_device(drv->ids, dev); |
| 227 | if (!id) { |
| 228 | err = -ENODEV; |
| 229 | goto fail; |
| 230 | } |
| 231 | |
| 232 | err = talk_to_otherend(dev); |
| 233 | if (err) { |
| 234 | dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n", |
| 235 | dev->nodename); |
| 236 | return err; |
| 237 | } |
| 238 | |
| 239 | err = drv->probe(dev, id); |
| 240 | if (err) |
| 241 | goto fail; |
| 242 | |
| 243 | err = watch_otherend(dev); |
| 244 | if (err) { |
| 245 | dev_warn(&dev->dev, "watch_otherend on %s failed.\n", |
| 246 | dev->nodename); |
| 247 | return err; |
| 248 | } |
| 249 | |
| 250 | return 0; |
| 251 | fail: |
| 252 | xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename); |
| 253 | xenbus_switch_state(dev, XenbusStateClosed); |
Jeremy Fitzhardinge | 7432e4b | 2009-10-29 14:19:42 -0700 | [diff] [blame] | 254 | return err; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 255 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 256 | EXPORT_SYMBOL_GPL(xenbus_dev_probe); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 257 | |
| 258 | int xenbus_dev_remove(struct device *_dev) |
| 259 | { |
| 260 | struct xenbus_device *dev = to_xenbus_device(_dev); |
| 261 | struct xenbus_driver *drv = to_xenbus_driver(_dev->driver); |
| 262 | |
| 263 | DPRINTK("%s", dev->nodename); |
| 264 | |
| 265 | free_otherend_watch(dev); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 266 | |
| 267 | if (drv->remove) |
| 268 | drv->remove(dev); |
| 269 | |
Jan Beulich | bd0d5aa | 2012-03-05 17:11:31 +0000 | [diff] [blame] | 270 | free_otherend_details(dev); |
| 271 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 272 | xenbus_switch_state(dev, XenbusStateClosed); |
| 273 | return 0; |
| 274 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 275 | EXPORT_SYMBOL_GPL(xenbus_dev_remove); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 276 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 277 | void xenbus_dev_shutdown(struct device *_dev) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 278 | { |
| 279 | struct xenbus_device *dev = to_xenbus_device(_dev); |
| 280 | unsigned long timeout = 5*HZ; |
| 281 | |
| 282 | DPRINTK("%s", dev->nodename); |
| 283 | |
| 284 | get_device(&dev->dev); |
| 285 | if (dev->state != XenbusStateConnected) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 286 | pr_info("%s: %s: %s != Connected, skipping\n", |
| 287 | __func__, dev->nodename, xenbus_strstate(dev->state)); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 288 | goto out; |
| 289 | } |
| 290 | xenbus_switch_state(dev, XenbusStateClosing); |
| 291 | timeout = wait_for_completion_timeout(&dev->down, timeout); |
| 292 | if (!timeout) |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 293 | pr_info("%s: %s timeout closing device\n", |
| 294 | __func__, dev->nodename); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 295 | out: |
| 296 | put_device(&dev->dev); |
| 297 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 298 | EXPORT_SYMBOL_GPL(xenbus_dev_shutdown); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 299 | |
| 300 | int xenbus_register_driver_common(struct xenbus_driver *drv, |
David Vrabel | 95afae4 | 2014-09-08 17:30:41 +0100 | [diff] [blame] | 301 | struct xen_bus_type *bus, |
| 302 | struct module *owner, const char *mod_name) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 303 | { |
David Vrabel | 95afae4 | 2014-09-08 17:30:41 +0100 | [diff] [blame] | 304 | drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 305 | drv->driver.bus = &bus->bus; |
David Vrabel | 95afae4 | 2014-09-08 17:30:41 +0100 | [diff] [blame] | 306 | drv->driver.owner = owner; |
| 307 | drv->driver.mod_name = mod_name; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 308 | |
| 309 | return driver_register(&drv->driver); |
| 310 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 311 | EXPORT_SYMBOL_GPL(xenbus_register_driver_common); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 312 | |
| 313 | void xenbus_unregister_driver(struct xenbus_driver *drv) |
| 314 | { |
| 315 | driver_unregister(&drv->driver); |
| 316 | } |
| 317 | EXPORT_SYMBOL_GPL(xenbus_unregister_driver); |
| 318 | |
Ruslan Pisarev | 6913200 | 2011-07-26 14:17:23 +0300 | [diff] [blame] | 319 | struct xb_find_info { |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 320 | struct xenbus_device *dev; |
| 321 | const char *nodename; |
| 322 | }; |
| 323 | |
| 324 | static int cmp_dev(struct device *dev, void *data) |
| 325 | { |
| 326 | struct xenbus_device *xendev = to_xenbus_device(dev); |
| 327 | struct xb_find_info *info = data; |
| 328 | |
| 329 | if (!strcmp(xendev->nodename, info->nodename)) { |
| 330 | info->dev = xendev; |
| 331 | get_device(dev); |
| 332 | return 1; |
| 333 | } |
| 334 | return 0; |
| 335 | } |
| 336 | |
Konrad Rzeszutek Wilk | b8b0f55 | 2012-08-21 14:49:34 -0400 | [diff] [blame] | 337 | static struct xenbus_device *xenbus_device_find(const char *nodename, |
| 338 | struct bus_type *bus) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 339 | { |
| 340 | struct xb_find_info info = { .dev = NULL, .nodename = nodename }; |
| 341 | |
| 342 | bus_for_each_dev(bus, NULL, &info, cmp_dev); |
| 343 | return info.dev; |
| 344 | } |
| 345 | |
| 346 | static int cleanup_dev(struct device *dev, void *data) |
| 347 | { |
| 348 | struct xenbus_device *xendev = to_xenbus_device(dev); |
| 349 | struct xb_find_info *info = data; |
| 350 | int len = strlen(info->nodename); |
| 351 | |
| 352 | DPRINTK("%s", info->nodename); |
| 353 | |
| 354 | /* Match the info->nodename path, or any subdirectory of that path. */ |
| 355 | if (strncmp(xendev->nodename, info->nodename, len)) |
| 356 | return 0; |
| 357 | |
| 358 | /* If the node name is longer, ensure it really is a subdirectory. */ |
| 359 | if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/')) |
| 360 | return 0; |
| 361 | |
| 362 | info->dev = xendev; |
| 363 | get_device(dev); |
| 364 | return 1; |
| 365 | } |
| 366 | |
| 367 | static void xenbus_cleanup_devices(const char *path, struct bus_type *bus) |
| 368 | { |
| 369 | struct xb_find_info info = { .nodename = path }; |
| 370 | |
| 371 | do { |
| 372 | info.dev = NULL; |
| 373 | bus_for_each_dev(bus, NULL, &info, cleanup_dev); |
| 374 | if (info.dev) { |
| 375 | device_unregister(&info.dev->dev); |
| 376 | put_device(&info.dev->dev); |
| 377 | } |
| 378 | } while (info.dev); |
| 379 | } |
| 380 | |
| 381 | static void xenbus_dev_release(struct device *dev) |
| 382 | { |
| 383 | if (dev) |
| 384 | kfree(to_xenbus_device(dev)); |
| 385 | } |
| 386 | |
Bastian Blank | cc85e93 | 2011-06-29 14:39:26 +0200 | [diff] [blame] | 387 | static ssize_t nodename_show(struct device *dev, |
| 388 | struct device_attribute *attr, char *buf) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 389 | { |
| 390 | return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename); |
| 391 | } |
Greg Kroah-Hartman | 85dd926 | 2013-10-06 23:55:49 -0700 | [diff] [blame] | 392 | static DEVICE_ATTR_RO(nodename); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 393 | |
Bastian Blank | cc85e93 | 2011-06-29 14:39:26 +0200 | [diff] [blame] | 394 | static ssize_t devtype_show(struct device *dev, |
| 395 | struct device_attribute *attr, char *buf) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 396 | { |
| 397 | return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype); |
| 398 | } |
Greg Kroah-Hartman | 85dd926 | 2013-10-06 23:55:49 -0700 | [diff] [blame] | 399 | static DEVICE_ATTR_RO(devtype); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 400 | |
Bastian Blank | cc85e93 | 2011-06-29 14:39:26 +0200 | [diff] [blame] | 401 | static ssize_t modalias_show(struct device *dev, |
| 402 | struct device_attribute *attr, char *buf) |
Mark McLoughlin | d2f0c52 | 2008-04-02 10:54:05 -0700 | [diff] [blame] | 403 | { |
Bastian Blank | 149bb2f | 2011-06-29 14:40:08 +0200 | [diff] [blame] | 404 | return sprintf(buf, "%s:%s\n", dev->bus->name, |
| 405 | to_xenbus_device(dev)->devicetype); |
Mark McLoughlin | d2f0c52 | 2008-04-02 10:54:05 -0700 | [diff] [blame] | 406 | } |
Greg Kroah-Hartman | 85dd926 | 2013-10-06 23:55:49 -0700 | [diff] [blame] | 407 | static DEVICE_ATTR_RO(modalias); |
Bastian Blank | cc85e93 | 2011-06-29 14:39:26 +0200 | [diff] [blame] | 408 | |
Greg Kroah-Hartman | 85dd926 | 2013-10-06 23:55:49 -0700 | [diff] [blame] | 409 | static struct attribute *xenbus_dev_attrs[] = { |
| 410 | &dev_attr_nodename.attr, |
| 411 | &dev_attr_devtype.attr, |
| 412 | &dev_attr_modalias.attr, |
| 413 | NULL, |
Bastian Blank | cc85e93 | 2011-06-29 14:39:26 +0200 | [diff] [blame] | 414 | }; |
Greg Kroah-Hartman | 85dd926 | 2013-10-06 23:55:49 -0700 | [diff] [blame] | 415 | |
| 416 | static const struct attribute_group xenbus_dev_group = { |
| 417 | .attrs = xenbus_dev_attrs, |
| 418 | }; |
| 419 | |
| 420 | const struct attribute_group *xenbus_dev_groups[] = { |
| 421 | &xenbus_dev_group, |
| 422 | NULL, |
| 423 | }; |
| 424 | EXPORT_SYMBOL_GPL(xenbus_dev_groups); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 425 | |
| 426 | int xenbus_probe_node(struct xen_bus_type *bus, |
| 427 | const char *type, |
| 428 | const char *nodename) |
| 429 | { |
Kay Sievers | 2a678cc | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 430 | char devname[XEN_BUS_ID_SIZE]; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 431 | int err; |
| 432 | struct xenbus_device *xendev; |
| 433 | size_t stringlen; |
| 434 | char *tmpstring; |
| 435 | |
| 436 | enum xenbus_state state = xenbus_read_driver_state(nodename); |
| 437 | |
| 438 | if (state != XenbusStateInitialising) { |
| 439 | /* Device is not new, so ignore it. This can happen if a |
| 440 | device is going away after switching to Closed. */ |
| 441 | return 0; |
| 442 | } |
| 443 | |
| 444 | stringlen = strlen(nodename) + 1 + strlen(type) + 1; |
| 445 | xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL); |
| 446 | if (!xendev) |
| 447 | return -ENOMEM; |
| 448 | |
| 449 | xendev->state = XenbusStateInitialising; |
| 450 | |
| 451 | /* Copy the strings into the extra space. */ |
| 452 | |
| 453 | tmpstring = (char *)(xendev + 1); |
| 454 | strcpy(tmpstring, nodename); |
| 455 | xendev->nodename = tmpstring; |
| 456 | |
| 457 | tmpstring += strlen(tmpstring) + 1; |
| 458 | strcpy(tmpstring, type); |
| 459 | xendev->devicetype = tmpstring; |
| 460 | init_completion(&xendev->down); |
| 461 | |
| 462 | xendev->dev.bus = &bus->bus; |
| 463 | xendev->dev.release = xenbus_dev_release; |
| 464 | |
Kay Sievers | 2a678cc | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 465 | err = bus->get_bus_id(devname, xendev->nodename); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 466 | if (err) |
| 467 | goto fail; |
| 468 | |
Kees Cook | 02aa2a3 | 2013-07-03 15:04:56 -0700 | [diff] [blame] | 469 | dev_set_name(&xendev->dev, "%s", devname); |
Kay Sievers | 2a678cc | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 470 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 471 | /* Register with generic device framework. */ |
| 472 | err = device_register(&xendev->dev); |
| 473 | if (err) |
| 474 | goto fail; |
| 475 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 476 | return 0; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 477 | fail: |
| 478 | kfree(xendev); |
| 479 | return err; |
| 480 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 481 | EXPORT_SYMBOL_GPL(xenbus_probe_node); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 482 | |
| 483 | static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type) |
| 484 | { |
| 485 | int err = 0; |
| 486 | char **dir; |
| 487 | unsigned int dir_n = 0; |
| 488 | int i; |
| 489 | |
| 490 | dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n); |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 491 | if (IS_ERR(dir)) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 492 | return PTR_ERR(dir); |
| 493 | |
| 494 | for (i = 0; i < dir_n; i++) { |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 495 | err = bus->probe(bus, type, dir[i]); |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 496 | if (err) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 497 | break; |
| 498 | } |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 499 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 500 | kfree(dir); |
| 501 | return err; |
| 502 | } |
| 503 | |
| 504 | int xenbus_probe_devices(struct xen_bus_type *bus) |
| 505 | { |
| 506 | int err = 0; |
| 507 | char **dir; |
| 508 | unsigned int i, dir_n; |
| 509 | |
| 510 | dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n); |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 511 | if (IS_ERR(dir)) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 512 | return PTR_ERR(dir); |
| 513 | |
| 514 | for (i = 0; i < dir_n; i++) { |
| 515 | err = xenbus_probe_device_type(bus, dir[i]); |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 516 | if (err) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 517 | break; |
| 518 | } |
Jeremy Fitzhardinge | a39bda2 | 2010-03-29 14:38:12 -0700 | [diff] [blame] | 519 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 520 | kfree(dir); |
| 521 | return err; |
| 522 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 523 | EXPORT_SYMBOL_GPL(xenbus_probe_devices); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 524 | |
| 525 | static unsigned int char_count(const char *str, char c) |
| 526 | { |
| 527 | unsigned int i, ret = 0; |
| 528 | |
| 529 | for (i = 0; str[i]; i++) |
| 530 | if (str[i] == c) |
| 531 | ret++; |
| 532 | return ret; |
| 533 | } |
| 534 | |
| 535 | static int strsep_len(const char *str, char c, unsigned int len) |
| 536 | { |
| 537 | unsigned int i; |
| 538 | |
| 539 | for (i = 0; str[i]; i++) |
| 540 | if (str[i] == c) { |
| 541 | if (len == 0) |
| 542 | return i; |
| 543 | len--; |
| 544 | } |
| 545 | return (len == 0) ? i : -ERANGE; |
| 546 | } |
| 547 | |
| 548 | void xenbus_dev_changed(const char *node, struct xen_bus_type *bus) |
| 549 | { |
| 550 | int exists, rootlen; |
| 551 | struct xenbus_device *dev; |
Kay Sievers | 2a678cc | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 552 | char type[XEN_BUS_ID_SIZE]; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 553 | const char *p, *root; |
| 554 | |
| 555 | if (char_count(node, '/') < 2) |
| 556 | return; |
| 557 | |
| 558 | exists = xenbus_exists(XBT_NIL, node, ""); |
| 559 | if (!exists) { |
| 560 | xenbus_cleanup_devices(node, &bus->bus); |
| 561 | return; |
| 562 | } |
| 563 | |
| 564 | /* backend/<type>/... or device/<type>/... */ |
| 565 | p = strchr(node, '/') + 1; |
Kay Sievers | 2a678cc | 2009-01-06 10:44:34 -0800 | [diff] [blame] | 566 | snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p); |
| 567 | type[XEN_BUS_ID_SIZE-1] = '\0'; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 568 | |
| 569 | rootlen = strsep_len(node, '/', bus->levels); |
| 570 | if (rootlen < 0) |
| 571 | return; |
| 572 | root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node); |
| 573 | if (!root) |
| 574 | return; |
| 575 | |
| 576 | dev = xenbus_device_find(root, &bus->bus); |
| 577 | if (!dev) |
| 578 | xenbus_probe_node(bus, type, root); |
| 579 | else |
| 580 | put_device(&dev->dev); |
| 581 | |
| 582 | kfree(root); |
| 583 | } |
Jeremy Fitzhardinge | c6a960c | 2009-02-09 12:05:53 -0800 | [diff] [blame] | 584 | EXPORT_SYMBOL_GPL(xenbus_dev_changed); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 585 | |
Kazuhiro SUZUKI | c7853ae | 2011-02-18 14:43:07 -0800 | [diff] [blame] | 586 | int xenbus_dev_suspend(struct device *dev) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 587 | { |
| 588 | int err = 0; |
| 589 | struct xenbus_driver *drv; |
Ian Campbell | 6bac7f9 | 2010-12-10 14:39:15 +0000 | [diff] [blame] | 590 | struct xenbus_device *xdev |
| 591 | = container_of(dev, struct xenbus_device, dev); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 592 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 593 | DPRINTK("%s", xdev->nodename); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 594 | |
| 595 | if (dev->driver == NULL) |
| 596 | return 0; |
| 597 | drv = to_xenbus_driver(dev->driver); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 598 | if (drv->suspend) |
Kazuhiro SUZUKI | c7853ae | 2011-02-18 14:43:07 -0800 | [diff] [blame] | 599 | err = drv->suspend(xdev); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 600 | if (err) |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 601 | pr_warn("suspend %s failed: %i\n", dev_name(dev), err); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 602 | return 0; |
| 603 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 604 | EXPORT_SYMBOL_GPL(xenbus_dev_suspend); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 605 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 606 | int xenbus_dev_resume(struct device *dev) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 607 | { |
| 608 | int err; |
| 609 | struct xenbus_driver *drv; |
Ian Campbell | 6bac7f9 | 2010-12-10 14:39:15 +0000 | [diff] [blame] | 610 | struct xenbus_device *xdev |
| 611 | = container_of(dev, struct xenbus_device, dev); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 612 | |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 613 | DPRINTK("%s", xdev->nodename); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 614 | |
| 615 | if (dev->driver == NULL) |
| 616 | return 0; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 617 | drv = to_xenbus_driver(dev->driver); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 618 | err = talk_to_otherend(xdev); |
| 619 | if (err) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 620 | pr_warn("resume (talk_to_otherend) %s failed: %i\n", |
| 621 | dev_name(dev), err); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 622 | return err; |
| 623 | } |
| 624 | |
| 625 | xdev->state = XenbusStateInitialising; |
| 626 | |
| 627 | if (drv->resume) { |
| 628 | err = drv->resume(xdev); |
| 629 | if (err) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 630 | pr_warn("resume %s failed: %i\n", dev_name(dev), err); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 631 | return err; |
| 632 | } |
| 633 | } |
| 634 | |
| 635 | err = watch_otherend(xdev); |
| 636 | if (err) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 637 | pr_warn("resume (watch_otherend) %s failed: %d.\n", |
| 638 | dev_name(dev), err); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 639 | return err; |
| 640 | } |
| 641 | |
| 642 | return 0; |
| 643 | } |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 644 | EXPORT_SYMBOL_GPL(xenbus_dev_resume); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 645 | |
Kazuhiro SUZUKI | c7853ae | 2011-02-18 14:43:07 -0800 | [diff] [blame] | 646 | int xenbus_dev_cancel(struct device *dev) |
| 647 | { |
| 648 | /* Do nothing */ |
| 649 | DPRINTK("cancel"); |
| 650 | return 0; |
| 651 | } |
| 652 | EXPORT_SYMBOL_GPL(xenbus_dev_cancel); |
| 653 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 654 | /* A flag to determine if xenstored is 'ready' (i.e. has started) */ |
Ruslan Pisarev | 6913200 | 2011-07-26 14:17:23 +0300 | [diff] [blame] | 655 | int xenstored_ready; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 656 | |
| 657 | |
| 658 | int register_xenstore_notifier(struct notifier_block *nb) |
| 659 | { |
| 660 | int ret = 0; |
| 661 | |
Stefano Stabellini | a947f0f | 2010-10-04 16:10:06 +0100 | [diff] [blame] | 662 | if (xenstored_ready > 0) |
| 663 | ret = nb->notifier_call(nb, 0, NULL); |
| 664 | else |
| 665 | blocking_notifier_chain_register(&xenstore_chain, nb); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 666 | |
| 667 | return ret; |
| 668 | } |
| 669 | EXPORT_SYMBOL_GPL(register_xenstore_notifier); |
| 670 | |
| 671 | void unregister_xenstore_notifier(struct notifier_block *nb) |
| 672 | { |
| 673 | blocking_notifier_chain_unregister(&xenstore_chain, nb); |
| 674 | } |
| 675 | EXPORT_SYMBOL_GPL(unregister_xenstore_notifier); |
| 676 | |
| 677 | void xenbus_probe(struct work_struct *unused) |
| 678 | { |
Stefano Stabellini | a947f0f | 2010-10-04 16:10:06 +0100 | [diff] [blame] | 679 | xenstored_ready = 1; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 680 | |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 681 | /* Notify others that xenstore is up */ |
| 682 | blocking_notifier_call_chain(&xenstore_chain, 0, NULL); |
| 683 | } |
Stefano Stabellini | 183d03c | 2010-05-17 17:08:21 +0100 | [diff] [blame] | 684 | EXPORT_SYMBOL_GPL(xenbus_probe); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 685 | |
Stefano Stabellini | 183d03c | 2010-05-17 17:08:21 +0100 | [diff] [blame] | 686 | static int __init xenbus_probe_initcall(void) |
| 687 | { |
| 688 | if (!xen_domain()) |
| 689 | return -ENODEV; |
| 690 | |
| 691 | if (xen_initial_domain() || xen_hvm_domain()) |
| 692 | return 0; |
| 693 | |
| 694 | xenbus_probe(NULL); |
| 695 | return 0; |
| 696 | } |
| 697 | |
| 698 | device_initcall(xenbus_probe_initcall); |
| 699 | |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 700 | /* Set up event channel for xenstored which is run as a local process |
| 701 | * (this is normally used only in dom0) |
| 702 | */ |
| 703 | static int __init xenstored_local_init(void) |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 704 | { |
| 705 | int err = 0; |
Juan Quintela | b37a56d | 2010-09-02 14:53:56 +0100 | [diff] [blame] | 706 | unsigned long page = 0; |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 707 | struct evtchn_alloc_unbound alloc_unbound; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 708 | |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 709 | /* Allocate Xenstore page */ |
| 710 | page = get_zeroed_page(GFP_KERNEL); |
| 711 | if (!page) |
| 712 | goto out_err; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 713 | |
Julien Grall | 5f51042 | 2015-08-07 17:34:42 +0100 | [diff] [blame] | 714 | xen_store_gfn = xen_start_info->store_mfn = virt_to_gfn((void *)page); |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 715 | |
| 716 | /* Next allocate a local port which xenstored can bind to */ |
| 717 | alloc_unbound.dom = DOMID_SELF; |
| 718 | alloc_unbound.remote_dom = DOMID_SELF; |
| 719 | |
| 720 | err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, |
| 721 | &alloc_unbound); |
| 722 | if (err == -ENOSYS) |
| 723 | goto out_err; |
| 724 | |
| 725 | BUG_ON(err); |
| 726 | xen_store_evtchn = xen_start_info->store_evtchn = |
| 727 | alloc_unbound.port; |
| 728 | |
| 729 | return 0; |
| 730 | |
| 731 | out_err: |
| 732 | if (page != 0) |
| 733 | free_page(page); |
| 734 | return err; |
| 735 | } |
| 736 | |
Boris Ostrovsky | 16f1cf3 | 2015-04-29 17:10:13 -0400 | [diff] [blame] | 737 | static int xenbus_resume_cb(struct notifier_block *nb, |
| 738 | unsigned long action, void *data) |
| 739 | { |
| 740 | int err = 0; |
| 741 | |
| 742 | if (xen_hvm_domain()) { |
Jan Beulich | 76ea3cb | 2015-05-28 09:26:37 +0100 | [diff] [blame] | 743 | uint64_t v = 0; |
Boris Ostrovsky | 16f1cf3 | 2015-04-29 17:10:13 -0400 | [diff] [blame] | 744 | |
| 745 | err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v); |
| 746 | if (!err && v) |
| 747 | xen_store_evtchn = v; |
| 748 | else |
| 749 | pr_warn("Cannot update xenstore event channel: %d\n", |
| 750 | err); |
| 751 | } else |
| 752 | xen_store_evtchn = xen_start_info->store_evtchn; |
| 753 | |
| 754 | return err; |
| 755 | } |
| 756 | |
| 757 | static struct notifier_block xenbus_resume_nb = { |
| 758 | .notifier_call = xenbus_resume_cb, |
| 759 | }; |
| 760 | |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 761 | static int __init xenbus_init(void) |
| 762 | { |
| 763 | int err = 0; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 764 | uint64_t v = 0; |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 765 | xen_store_domain_type = XS_UNKNOWN; |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 766 | |
Jeremy Fitzhardinge | 6e83358 | 2008-08-19 13:16:17 -0700 | [diff] [blame] | 767 | if (!xen_domain()) |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 768 | return -ENODEV; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 769 | |
Daniel De Graaf | 2c5d37d | 2011-12-19 14:55:14 -0500 | [diff] [blame] | 770 | xenbus_ring_ops_init(); |
| 771 | |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 772 | if (xen_pv_domain()) |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 773 | xen_store_domain_type = XS_PV; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 774 | if (xen_hvm_domain()) |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 775 | xen_store_domain_type = XS_HVM; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 776 | if (xen_hvm_domain() && xen_initial_domain()) |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 777 | xen_store_domain_type = XS_LOCAL; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 778 | if (xen_pv_domain() && !xen_start_info->store_evtchn) |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 779 | xen_store_domain_type = XS_LOCAL; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 780 | if (xen_pv_domain() && xen_start_info->store_evtchn) |
| 781 | xenstored_ready = 1; |
| 782 | |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 783 | switch (xen_store_domain_type) { |
| 784 | case XS_LOCAL: |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 785 | err = xenstored_local_init(); |
| 786 | if (err) |
| 787 | goto out_error; |
Julien Grall | 5f51042 | 2015-08-07 17:34:42 +0100 | [diff] [blame] | 788 | xen_store_interface = gfn_to_virt(xen_store_gfn); |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 789 | break; |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 790 | case XS_PV: |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 791 | xen_store_evtchn = xen_start_info->store_evtchn; |
Julien Grall | 5f51042 | 2015-08-07 17:34:42 +0100 | [diff] [blame] | 792 | xen_store_gfn = xen_start_info->store_mfn; |
| 793 | xen_store_interface = gfn_to_virt(xen_store_gfn); |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 794 | break; |
Aurelien Chartier | 33c1174 | 2013-05-28 18:09:55 +0100 | [diff] [blame] | 795 | case XS_HVM: |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 796 | err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v); |
| 797 | if (err) |
Juan Quintela | b37a56d | 2010-09-02 14:53:56 +0100 | [diff] [blame] | 798 | goto out_error; |
Daniel De Graaf | e4184aa | 2011-10-13 16:07:08 -0400 | [diff] [blame] | 799 | xen_store_evtchn = (int)v; |
| 800 | err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v); |
| 801 | if (err) |
Juan Quintela | b37a56d | 2010-09-02 14:53:56 +0100 | [diff] [blame] | 802 | goto out_error; |
Julien Grall | 5f51042 | 2015-08-07 17:34:42 +0100 | [diff] [blame] | 803 | xen_store_gfn = (unsigned long)v; |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 804 | xen_store_interface = |
Julien Grall | 7d56792 | 2015-05-05 16:38:27 +0100 | [diff] [blame] | 805 | xen_remap(xen_store_gfn << XEN_PAGE_SHIFT, |
| 806 | XEN_PAGE_SIZE); |
Stefano Stabellini | ecc635f | 2012-09-14 12:13:12 +0100 | [diff] [blame] | 807 | break; |
| 808 | default: |
| 809 | pr_warn("Xenstore state unknown\n"); |
| 810 | break; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 811 | } |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 812 | |
| 813 | /* Initialize the interface to xenstore. */ |
| 814 | err = xs_init(); |
| 815 | if (err) { |
Joe Perches | 283c097 | 2013-06-28 03:21:41 -0700 | [diff] [blame] | 816 | pr_warn("Error initializing xenstore comms: %i\n", err); |
Ian Campbell | 2de06cc | 2009-02-09 12:05:51 -0800 | [diff] [blame] | 817 | goto out_error; |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 818 | } |
| 819 | |
Boris Ostrovsky | 16f1cf3 | 2015-04-29 17:10:13 -0400 | [diff] [blame] | 820 | if ((xen_store_domain_type != XS_LOCAL) && |
| 821 | (xen_store_domain_type != XS_UNKNOWN)) |
| 822 | xen_resume_notifier_register(&xenbus_resume_nb); |
| 823 | |
Alex Zeffertt | 1107ba8 | 2009-01-07 18:07:11 -0800 | [diff] [blame] | 824 | #ifdef CONFIG_XEN_COMPAT_XENFS |
| 825 | /* |
| 826 | * Create xenfs mountpoint in /proc for compatibility with |
| 827 | * utilities that expect to find "xenbus" under "/proc/xen". |
| 828 | */ |
| 829 | proc_mkdir("xen", NULL); |
| 830 | #endif |
| 831 | |
Ruslan Pisarev | 6913200 | 2011-07-26 14:17:23 +0300 | [diff] [blame] | 832 | out_error: |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 833 | return err; |
| 834 | } |
| 835 | |
Stefano Stabellini | 183d03c | 2010-05-17 17:08:21 +0100 | [diff] [blame] | 836 | postcore_initcall(xenbus_init); |
Jeremy Fitzhardinge | 4bac07c | 2007-07-17 18:37:06 -0700 | [diff] [blame] | 837 | |
| 838 | MODULE_LICENSE("GPL"); |