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