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 33 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt 34 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> 45 #include <linux/proc_fs.h> 46 #include <linux/notifier.h> 47 #include <linux/kthread.h> 48 #include <linux/mutex.h> 49 #include <linux/io.h> 50 #include <linux/slab.h> 51 #include <linux/module.h> 52 53 #include <asm/page.h> 54 #include <asm/pgtable.h> 55 #include <asm/xen/hypervisor.h> 56 57 #include <xen/xen.h> 58 #include <xen/xenbus.h> 59 #include <xen/events.h> 60 #include <xen/xen-ops.h> 61 #include <xen/page.h> 62 63 #include <xen/hvm.h> 64 65 #include "xenbus.h" 66 67 68 int xen_store_evtchn; 69 EXPORT_SYMBOL_GPL(xen_store_evtchn); 70 71 struct xenstore_domain_interface *xen_store_interface; 72 EXPORT_SYMBOL_GPL(xen_store_interface); 73 74 enum xenstore_init xen_store_domain_type; 75 EXPORT_SYMBOL_GPL(xen_store_domain_type); 76 77 static unsigned long xen_store_gfn; 78 79 static BLOCKING_NOTIFIER_HEAD(xenstore_chain); 80 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 } 101 EXPORT_SYMBOL_GPL(xenbus_match); 102 103 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 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 { 135 struct xen_bus_type *bus = 136 container_of(dev->dev.bus, struct xen_bus_type, bus); 137 138 return xenbus_watch_pathfmt(dev, &dev->otherend_watch, 139 bus->otherend_changed, 140 "%s/%s", dev->otherend, "state"); 141 } 142 143 144 int xenbus_read_otherend_details(struct xenbus_device *xendev, 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 } 169 EXPORT_SYMBOL_GPL(xenbus_read_otherend_details); 170 171 void xenbus_otherend_changed(struct xenbus_watch *watch, 172 const char *path, const char *token, 173 int ignore_on_shutdown) 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 || 183 strncmp(dev->otherend, path, strlen(dev->otherend))) { 184 dev_dbg(&dev->dev, "Ignoring watch at %s\n", path); 185 return; 186 } 187 188 state = xenbus_read_driver_state(dev->otherend); 189 190 dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n", 191 state, xenbus_strstate(state), dev->otherend_watch.node, path); 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) { 198 if (ignore_on_shutdown && (state == XenbusStateClosing)) 199 xenbus_frontend_closed(dev); 200 return; 201 } 202 203 if (drv->otherend_changed) 204 drv->otherend_changed(dev, state); 205 } 206 EXPORT_SYMBOL_GPL(xenbus_otherend_changed); 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 if (!try_module_get(drv->driver.owner)) { 236 dev_warn(&dev->dev, "failed to acquire module reference on '%s'\n", 237 drv->driver.name); 238 err = -ESRCH; 239 goto fail; 240 } 241 242 err = drv->probe(dev, id); 243 if (err) 244 goto fail_put; 245 246 err = watch_otherend(dev); 247 if (err) { 248 dev_warn(&dev->dev, "watch_otherend on %s failed.\n", 249 dev->nodename); 250 return err; 251 } 252 253 return 0; 254 fail_put: 255 module_put(drv->driver.owner); 256 fail: 257 xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename); 258 xenbus_switch_state(dev, XenbusStateClosed); 259 return err; 260 } 261 EXPORT_SYMBOL_GPL(xenbus_dev_probe); 262 263 int xenbus_dev_remove(struct device *_dev) 264 { 265 struct xenbus_device *dev = to_xenbus_device(_dev); 266 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver); 267 268 DPRINTK("%s", dev->nodename); 269 270 free_otherend_watch(dev); 271 272 if (drv->remove) 273 drv->remove(dev); 274 275 module_put(drv->driver.owner); 276 277 free_otherend_details(dev); 278 279 xenbus_switch_state(dev, XenbusStateClosed); 280 return 0; 281 } 282 EXPORT_SYMBOL_GPL(xenbus_dev_remove); 283 284 void xenbus_dev_shutdown(struct device *_dev) 285 { 286 struct xenbus_device *dev = to_xenbus_device(_dev); 287 unsigned long timeout = 5*HZ; 288 289 DPRINTK("%s", dev->nodename); 290 291 get_device(&dev->dev); 292 if (dev->state != XenbusStateConnected) { 293 pr_info("%s: %s: %s != Connected, skipping\n", 294 __func__, dev->nodename, xenbus_strstate(dev->state)); 295 goto out; 296 } 297 xenbus_switch_state(dev, XenbusStateClosing); 298 timeout = wait_for_completion_timeout(&dev->down, timeout); 299 if (!timeout) 300 pr_info("%s: %s timeout closing device\n", 301 __func__, dev->nodename); 302 out: 303 put_device(&dev->dev); 304 } 305 EXPORT_SYMBOL_GPL(xenbus_dev_shutdown); 306 307 int xenbus_register_driver_common(struct xenbus_driver *drv, 308 struct xen_bus_type *bus, 309 struct module *owner, const char *mod_name) 310 { 311 drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype; 312 drv->driver.bus = &bus->bus; 313 drv->driver.owner = owner; 314 drv->driver.mod_name = mod_name; 315 316 return driver_register(&drv->driver); 317 } 318 EXPORT_SYMBOL_GPL(xenbus_register_driver_common); 319 320 void xenbus_unregister_driver(struct xenbus_driver *drv) 321 { 322 driver_unregister(&drv->driver); 323 } 324 EXPORT_SYMBOL_GPL(xenbus_unregister_driver); 325 326 struct xb_find_info { 327 struct xenbus_device *dev; 328 const char *nodename; 329 }; 330 331 static int cmp_dev(struct device *dev, void *data) 332 { 333 struct xenbus_device *xendev = to_xenbus_device(dev); 334 struct xb_find_info *info = data; 335 336 if (!strcmp(xendev->nodename, info->nodename)) { 337 info->dev = xendev; 338 get_device(dev); 339 return 1; 340 } 341 return 0; 342 } 343 344 static struct xenbus_device *xenbus_device_find(const char *nodename, 345 struct bus_type *bus) 346 { 347 struct xb_find_info info = { .dev = NULL, .nodename = nodename }; 348 349 bus_for_each_dev(bus, NULL, &info, cmp_dev); 350 return info.dev; 351 } 352 353 static int cleanup_dev(struct device *dev, void *data) 354 { 355 struct xenbus_device *xendev = to_xenbus_device(dev); 356 struct xb_find_info *info = data; 357 int len = strlen(info->nodename); 358 359 DPRINTK("%s", info->nodename); 360 361 /* Match the info->nodename path, or any subdirectory of that path. */ 362 if (strncmp(xendev->nodename, info->nodename, len)) 363 return 0; 364 365 /* If the node name is longer, ensure it really is a subdirectory. */ 366 if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/')) 367 return 0; 368 369 info->dev = xendev; 370 get_device(dev); 371 return 1; 372 } 373 374 static void xenbus_cleanup_devices(const char *path, struct bus_type *bus) 375 { 376 struct xb_find_info info = { .nodename = path }; 377 378 do { 379 info.dev = NULL; 380 bus_for_each_dev(bus, NULL, &info, cleanup_dev); 381 if (info.dev) { 382 device_unregister(&info.dev->dev); 383 put_device(&info.dev->dev); 384 } 385 } while (info.dev); 386 } 387 388 static void xenbus_dev_release(struct device *dev) 389 { 390 if (dev) 391 kfree(to_xenbus_device(dev)); 392 } 393 394 static ssize_t nodename_show(struct device *dev, 395 struct device_attribute *attr, char *buf) 396 { 397 return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename); 398 } 399 static DEVICE_ATTR_RO(nodename); 400 401 static ssize_t devtype_show(struct device *dev, 402 struct device_attribute *attr, char *buf) 403 { 404 return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype); 405 } 406 static DEVICE_ATTR_RO(devtype); 407 408 static ssize_t modalias_show(struct device *dev, 409 struct device_attribute *attr, char *buf) 410 { 411 return sprintf(buf, "%s:%s\n", dev->bus->name, 412 to_xenbus_device(dev)->devicetype); 413 } 414 static DEVICE_ATTR_RO(modalias); 415 416 static ssize_t state_show(struct device *dev, 417 struct device_attribute *attr, char *buf) 418 { 419 return sprintf(buf, "%s\n", 420 xenbus_strstate(to_xenbus_device(dev)->state)); 421 } 422 static DEVICE_ATTR_RO(state); 423 424 static struct attribute *xenbus_dev_attrs[] = { 425 &dev_attr_nodename.attr, 426 &dev_attr_devtype.attr, 427 &dev_attr_modalias.attr, 428 &dev_attr_state.attr, 429 NULL, 430 }; 431 432 static const struct attribute_group xenbus_dev_group = { 433 .attrs = xenbus_dev_attrs, 434 }; 435 436 const struct attribute_group *xenbus_dev_groups[] = { 437 &xenbus_dev_group, 438 NULL, 439 }; 440 EXPORT_SYMBOL_GPL(xenbus_dev_groups); 441 442 int xenbus_probe_node(struct xen_bus_type *bus, 443 const char *type, 444 const char *nodename) 445 { 446 char devname[XEN_BUS_ID_SIZE]; 447 int err; 448 struct xenbus_device *xendev; 449 size_t stringlen; 450 char *tmpstring; 451 452 enum xenbus_state state = xenbus_read_driver_state(nodename); 453 454 if (state != XenbusStateInitialising) { 455 /* Device is not new, so ignore it. This can happen if a 456 device is going away after switching to Closed. */ 457 return 0; 458 } 459 460 stringlen = strlen(nodename) + 1 + strlen(type) + 1; 461 xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL); 462 if (!xendev) 463 return -ENOMEM; 464 465 xendev->state = XenbusStateInitialising; 466 467 /* Copy the strings into the extra space. */ 468 469 tmpstring = (char *)(xendev + 1); 470 strcpy(tmpstring, nodename); 471 xendev->nodename = tmpstring; 472 473 tmpstring += strlen(tmpstring) + 1; 474 strcpy(tmpstring, type); 475 xendev->devicetype = tmpstring; 476 init_completion(&xendev->down); 477 478 xendev->dev.bus = &bus->bus; 479 xendev->dev.release = xenbus_dev_release; 480 481 err = bus->get_bus_id(devname, xendev->nodename); 482 if (err) 483 goto fail; 484 485 dev_set_name(&xendev->dev, "%s", devname); 486 487 /* Register with generic device framework. */ 488 err = device_register(&xendev->dev); 489 if (err) { 490 put_device(&xendev->dev); 491 xendev = NULL; 492 goto fail; 493 } 494 495 return 0; 496 fail: 497 kfree(xendev); 498 return err; 499 } 500 EXPORT_SYMBOL_GPL(xenbus_probe_node); 501 502 static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type) 503 { 504 int err = 0; 505 char **dir; 506 unsigned int dir_n = 0; 507 int i; 508 509 dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n); 510 if (IS_ERR(dir)) 511 return PTR_ERR(dir); 512 513 for (i = 0; i < dir_n; i++) { 514 err = bus->probe(bus, type, dir[i]); 515 if (err) 516 break; 517 } 518 519 kfree(dir); 520 return err; 521 } 522 523 int xenbus_probe_devices(struct xen_bus_type *bus) 524 { 525 int err = 0; 526 char **dir; 527 unsigned int i, dir_n; 528 529 dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n); 530 if (IS_ERR(dir)) 531 return PTR_ERR(dir); 532 533 for (i = 0; i < dir_n; i++) { 534 err = xenbus_probe_device_type(bus, dir[i]); 535 if (err) 536 break; 537 } 538 539 kfree(dir); 540 return err; 541 } 542 EXPORT_SYMBOL_GPL(xenbus_probe_devices); 543 544 static unsigned int char_count(const char *str, char c) 545 { 546 unsigned int i, ret = 0; 547 548 for (i = 0; str[i]; i++) 549 if (str[i] == c) 550 ret++; 551 return ret; 552 } 553 554 static int strsep_len(const char *str, char c, unsigned int len) 555 { 556 unsigned int i; 557 558 for (i = 0; str[i]; i++) 559 if (str[i] == c) { 560 if (len == 0) 561 return i; 562 len--; 563 } 564 return (len == 0) ? i : -ERANGE; 565 } 566 567 void xenbus_dev_changed(const char *node, struct xen_bus_type *bus) 568 { 569 int exists, rootlen; 570 struct xenbus_device *dev; 571 char type[XEN_BUS_ID_SIZE]; 572 const char *p, *root; 573 574 if (char_count(node, '/') < 2) 575 return; 576 577 exists = xenbus_exists(XBT_NIL, node, ""); 578 if (!exists) { 579 xenbus_cleanup_devices(node, &bus->bus); 580 return; 581 } 582 583 /* backend/<type>/... or device/<type>/... */ 584 p = strchr(node, '/') + 1; 585 snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p); 586 type[XEN_BUS_ID_SIZE-1] = '\0'; 587 588 rootlen = strsep_len(node, '/', bus->levels); 589 if (rootlen < 0) 590 return; 591 root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node); 592 if (!root) 593 return; 594 595 dev = xenbus_device_find(root, &bus->bus); 596 if (!dev) 597 xenbus_probe_node(bus, type, root); 598 else 599 put_device(&dev->dev); 600 601 kfree(root); 602 } 603 EXPORT_SYMBOL_GPL(xenbus_dev_changed); 604 605 int xenbus_dev_suspend(struct device *dev) 606 { 607 int err = 0; 608 struct xenbus_driver *drv; 609 struct xenbus_device *xdev 610 = container_of(dev, struct xenbus_device, dev); 611 612 DPRINTK("%s", xdev->nodename); 613 614 if (dev->driver == NULL) 615 return 0; 616 drv = to_xenbus_driver(dev->driver); 617 if (drv->suspend) 618 err = drv->suspend(xdev); 619 if (err) 620 pr_warn("suspend %s failed: %i\n", dev_name(dev), err); 621 return 0; 622 } 623 EXPORT_SYMBOL_GPL(xenbus_dev_suspend); 624 625 int xenbus_dev_resume(struct device *dev) 626 { 627 int err; 628 struct xenbus_driver *drv; 629 struct xenbus_device *xdev 630 = container_of(dev, struct xenbus_device, dev); 631 632 DPRINTK("%s", xdev->nodename); 633 634 if (dev->driver == NULL) 635 return 0; 636 drv = to_xenbus_driver(dev->driver); 637 err = talk_to_otherend(xdev); 638 if (err) { 639 pr_warn("resume (talk_to_otherend) %s failed: %i\n", 640 dev_name(dev), err); 641 return err; 642 } 643 644 xdev->state = XenbusStateInitialising; 645 646 if (drv->resume) { 647 err = drv->resume(xdev); 648 if (err) { 649 pr_warn("resume %s failed: %i\n", dev_name(dev), err); 650 return err; 651 } 652 } 653 654 err = watch_otherend(xdev); 655 if (err) { 656 pr_warn("resume (watch_otherend) %s failed: %d.\n", 657 dev_name(dev), err); 658 return err; 659 } 660 661 return 0; 662 } 663 EXPORT_SYMBOL_GPL(xenbus_dev_resume); 664 665 int xenbus_dev_cancel(struct device *dev) 666 { 667 /* Do nothing */ 668 DPRINTK("cancel"); 669 return 0; 670 } 671 EXPORT_SYMBOL_GPL(xenbus_dev_cancel); 672 673 /* A flag to determine if xenstored is 'ready' (i.e. has started) */ 674 int xenstored_ready; 675 676 677 int register_xenstore_notifier(struct notifier_block *nb) 678 { 679 int ret = 0; 680 681 if (xenstored_ready > 0) 682 ret = nb->notifier_call(nb, 0, NULL); 683 else 684 blocking_notifier_chain_register(&xenstore_chain, nb); 685 686 return ret; 687 } 688 EXPORT_SYMBOL_GPL(register_xenstore_notifier); 689 690 void unregister_xenstore_notifier(struct notifier_block *nb) 691 { 692 blocking_notifier_chain_unregister(&xenstore_chain, nb); 693 } 694 EXPORT_SYMBOL_GPL(unregister_xenstore_notifier); 695 696 void xenbus_probe(struct work_struct *unused) 697 { 698 xenstored_ready = 1; 699 700 /* Notify others that xenstore is up */ 701 blocking_notifier_call_chain(&xenstore_chain, 0, NULL); 702 } 703 EXPORT_SYMBOL_GPL(xenbus_probe); 704 705 static int __init xenbus_probe_initcall(void) 706 { 707 if (!xen_domain()) 708 return -ENODEV; 709 710 if (xen_initial_domain() || xen_hvm_domain()) 711 return 0; 712 713 xenbus_probe(NULL); 714 return 0; 715 } 716 717 device_initcall(xenbus_probe_initcall); 718 719 /* Set up event channel for xenstored which is run as a local process 720 * (this is normally used only in dom0) 721 */ 722 static int __init xenstored_local_init(void) 723 { 724 int err = -ENOMEM; 725 unsigned long page = 0; 726 struct evtchn_alloc_unbound alloc_unbound; 727 728 /* Allocate Xenstore page */ 729 page = get_zeroed_page(GFP_KERNEL); 730 if (!page) 731 goto out_err; 732 733 xen_store_gfn = virt_to_gfn((void *)page); 734 735 /* Next allocate a local port which xenstored can bind to */ 736 alloc_unbound.dom = DOMID_SELF; 737 alloc_unbound.remote_dom = DOMID_SELF; 738 739 err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound, 740 &alloc_unbound); 741 if (err == -ENOSYS) 742 goto out_err; 743 744 BUG_ON(err); 745 xen_store_evtchn = alloc_unbound.port; 746 747 return 0; 748 749 out_err: 750 if (page != 0) 751 free_page(page); 752 return err; 753 } 754 755 static int xenbus_resume_cb(struct notifier_block *nb, 756 unsigned long action, void *data) 757 { 758 int err = 0; 759 760 if (xen_hvm_domain()) { 761 uint64_t v = 0; 762 763 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v); 764 if (!err && v) 765 xen_store_evtchn = v; 766 else 767 pr_warn("Cannot update xenstore event channel: %d\n", 768 err); 769 } else 770 xen_store_evtchn = xen_start_info->store_evtchn; 771 772 return err; 773 } 774 775 static struct notifier_block xenbus_resume_nb = { 776 .notifier_call = xenbus_resume_cb, 777 }; 778 779 static int __init xenbus_init(void) 780 { 781 int err = 0; 782 uint64_t v = 0; 783 xen_store_domain_type = XS_UNKNOWN; 784 785 if (!xen_domain()) 786 return -ENODEV; 787 788 xenbus_ring_ops_init(); 789 790 if (xen_pv_domain()) 791 xen_store_domain_type = XS_PV; 792 if (xen_hvm_domain()) 793 xen_store_domain_type = XS_HVM; 794 if (xen_hvm_domain() && xen_initial_domain()) 795 xen_store_domain_type = XS_LOCAL; 796 if (xen_pv_domain() && !xen_start_info->store_evtchn) 797 xen_store_domain_type = XS_LOCAL; 798 if (xen_pv_domain() && xen_start_info->store_evtchn) 799 xenstored_ready = 1; 800 801 switch (xen_store_domain_type) { 802 case XS_LOCAL: 803 err = xenstored_local_init(); 804 if (err) 805 goto out_error; 806 xen_store_interface = gfn_to_virt(xen_store_gfn); 807 break; 808 case XS_PV: 809 xen_store_evtchn = xen_start_info->store_evtchn; 810 xen_store_gfn = xen_start_info->store_mfn; 811 xen_store_interface = gfn_to_virt(xen_store_gfn); 812 break; 813 case XS_HVM: 814 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v); 815 if (err) 816 goto out_error; 817 xen_store_evtchn = (int)v; 818 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v); 819 if (err) 820 goto out_error; 821 xen_store_gfn = (unsigned long)v; 822 xen_store_interface = 823 xen_remap(xen_store_gfn << XEN_PAGE_SHIFT, 824 XEN_PAGE_SIZE); 825 break; 826 default: 827 pr_warn("Xenstore state unknown\n"); 828 break; 829 } 830 831 /* Initialize the interface to xenstore. */ 832 err = xs_init(); 833 if (err) { 834 pr_warn("Error initializing xenstore comms: %i\n", err); 835 goto out_error; 836 } 837 838 if ((xen_store_domain_type != XS_LOCAL) && 839 (xen_store_domain_type != XS_UNKNOWN)) 840 xen_resume_notifier_register(&xenbus_resume_nb); 841 842 #ifdef CONFIG_XEN_COMPAT_XENFS 843 /* 844 * Create xenfs mountpoint in /proc for compatibility with 845 * utilities that expect to find "xenbus" under "/proc/xen". 846 */ 847 proc_create_mount_point("xen"); 848 #endif 849 850 out_error: 851 return err; 852 } 853 854 postcore_initcall(xenbus_init); 855 856 MODULE_LICENSE("GPL"); 857