Merge tag 'locking-kcsan-2020-06-11' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6-microblaze.git] / drivers / xen / xenbus / xenbus_probe.c
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/xen/hypervisor.h>
55
56 #include <xen/xen.h>
57 #include <xen/xenbus.h>
58 #include <xen/events.h>
59 #include <xen/xen-ops.h>
60 #include <xen/page.h>
61
62 #include <xen/hvm.h>
63
64 #include "xenbus.h"
65
66
67 int xen_store_evtchn;
68 EXPORT_SYMBOL_GPL(xen_store_evtchn);
69
70 struct xenstore_domain_interface *xen_store_interface;
71 EXPORT_SYMBOL_GPL(xen_store_interface);
72
73 enum xenstore_init xen_store_domain_type;
74 EXPORT_SYMBOL_GPL(xen_store_domain_type);
75
76 static unsigned long xen_store_gfn;
77
78 static BLOCKING_NOTIFIER_HEAD(xenstore_chain);
79
80 /* If something in array of ids matches this device, return it. */
81 static const struct xenbus_device_id *
82 match_device(const struct xenbus_device_id *arr, struct xenbus_device *dev)
83 {
84         for (; *arr->devicetype != '\0'; arr++) {
85                 if (!strcmp(arr->devicetype, dev->devicetype))
86                         return arr;
87         }
88         return NULL;
89 }
90
91 int xenbus_match(struct device *_dev, struct device_driver *_drv)
92 {
93         struct xenbus_driver *drv = to_xenbus_driver(_drv);
94
95         if (!drv->ids)
96                 return 0;
97
98         return match_device(drv->ids, to_xenbus_device(_dev)) != NULL;
99 }
100 EXPORT_SYMBOL_GPL(xenbus_match);
101
102
103 static void free_otherend_details(struct xenbus_device *dev)
104 {
105         kfree(dev->otherend);
106         dev->otherend = NULL;
107 }
108
109
110 static void free_otherend_watch(struct xenbus_device *dev)
111 {
112         if (dev->otherend_watch.node) {
113                 unregister_xenbus_watch(&dev->otherend_watch);
114                 kfree(dev->otherend_watch.node);
115                 dev->otherend_watch.node = NULL;
116         }
117 }
118
119
120 static int talk_to_otherend(struct xenbus_device *dev)
121 {
122         struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
123
124         free_otherend_watch(dev);
125         free_otherend_details(dev);
126
127         return drv->read_otherend_details(dev);
128 }
129
130
131
132 static int watch_otherend(struct xenbus_device *dev)
133 {
134         struct xen_bus_type *bus =
135                 container_of(dev->dev.bus, struct xen_bus_type, bus);
136
137         return xenbus_watch_pathfmt(dev, &dev->otherend_watch,
138                                     bus->otherend_changed,
139                                     "%s/%s", dev->otherend, "state");
140 }
141
142
143 int xenbus_read_otherend_details(struct xenbus_device *xendev,
144                                  char *id_node, char *path_node)
145 {
146         int err = xenbus_gather(XBT_NIL, xendev->nodename,
147                                 id_node, "%i", &xendev->otherend_id,
148                                 path_node, NULL, &xendev->otherend,
149                                 NULL);
150         if (err) {
151                 xenbus_dev_fatal(xendev, err,
152                                  "reading other end details from %s",
153                                  xendev->nodename);
154                 return err;
155         }
156         if (strlen(xendev->otherend) == 0 ||
157             !xenbus_exists(XBT_NIL, xendev->otherend, "")) {
158                 xenbus_dev_fatal(xendev, -ENOENT,
159                                  "unable to read other end from %s.  "
160                                  "missing or inaccessible.",
161                                  xendev->nodename);
162                 free_otherend_details(xendev);
163                 return -ENOENT;
164         }
165
166         return 0;
167 }
168 EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
169
170 void xenbus_otherend_changed(struct xenbus_watch *watch,
171                              const char *path, const char *token,
172                              int ignore_on_shutdown)
173 {
174         struct xenbus_device *dev =
175                 container_of(watch, struct xenbus_device, otherend_watch);
176         struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
177         enum xenbus_state state;
178
179         /* Protect us against watches firing on old details when the otherend
180            details change, say immediately after a resume. */
181         if (!dev->otherend ||
182             strncmp(dev->otherend, path, strlen(dev->otherend))) {
183                 dev_dbg(&dev->dev, "Ignoring watch at %s\n", path);
184                 return;
185         }
186
187         state = xenbus_read_driver_state(dev->otherend);
188
189         dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n",
190                 state, xenbus_strstate(state), dev->otherend_watch.node, path);
191
192         /*
193          * Ignore xenbus transitions during shutdown. This prevents us doing
194          * work that can fail e.g., when the rootfs is gone.
195          */
196         if (system_state > SYSTEM_RUNNING) {
197                 if (ignore_on_shutdown && (state == XenbusStateClosing))
198                         xenbus_frontend_closed(dev);
199                 return;
200         }
201
202         if (drv->otherend_changed)
203                 drv->otherend_changed(dev, state);
204 }
205 EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
206
207 int xenbus_dev_probe(struct device *_dev)
208 {
209         struct xenbus_device *dev = to_xenbus_device(_dev);
210         struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
211         const struct xenbus_device_id *id;
212         int err;
213
214         DPRINTK("%s", dev->nodename);
215
216         if (!drv->probe) {
217                 err = -ENODEV;
218                 goto fail;
219         }
220
221         id = match_device(drv->ids, dev);
222         if (!id) {
223                 err = -ENODEV;
224                 goto fail;
225         }
226
227         err = talk_to_otherend(dev);
228         if (err) {
229                 dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n",
230                          dev->nodename);
231                 return err;
232         }
233
234         if (!try_module_get(drv->driver.owner)) {
235                 dev_warn(&dev->dev, "failed to acquire module reference on '%s'\n",
236                          drv->driver.name);
237                 err = -ESRCH;
238                 goto fail;
239         }
240
241         down(&dev->reclaim_sem);
242         err = drv->probe(dev, id);
243         up(&dev->reclaim_sem);
244         if (err)
245                 goto fail_put;
246
247         err = watch_otherend(dev);
248         if (err) {
249                 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
250                        dev->nodename);
251                 return err;
252         }
253
254         return 0;
255 fail_put:
256         module_put(drv->driver.owner);
257 fail:
258         xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
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                 down(&dev->reclaim_sem);
274                 drv->remove(dev);
275                 up(&dev->reclaim_sem);
276         }
277
278         module_put(drv->driver.owner);
279
280         free_otherend_details(dev);
281
282         /*
283          * If the toolstack has forced the device state to closing then set
284          * the state to closed now to allow it to be cleaned up.
285          * Similarly, if the driver does not support re-bind, set the
286          * closed.
287          */
288         if (!drv->allow_rebind ||
289             xenbus_read_driver_state(dev->nodename) == XenbusStateClosing)
290                 xenbus_switch_state(dev, XenbusStateClosed);
291
292         return 0;
293 }
294 EXPORT_SYMBOL_GPL(xenbus_dev_remove);
295
296 int xenbus_register_driver_common(struct xenbus_driver *drv,
297                                   struct xen_bus_type *bus,
298                                   struct module *owner, const char *mod_name)
299 {
300         drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype;
301         drv->driver.bus = &bus->bus;
302         drv->driver.owner = owner;
303         drv->driver.mod_name = mod_name;
304
305         return driver_register(&drv->driver);
306 }
307 EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
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
315 struct xb_find_info {
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
333 static struct xenbus_device *xenbus_device_find(const char *nodename,
334                                                 struct bus_type *bus)
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
383 static ssize_t nodename_show(struct device *dev,
384                              struct device_attribute *attr, char *buf)
385 {
386         return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename);
387 }
388 static DEVICE_ATTR_RO(nodename);
389
390 static ssize_t devtype_show(struct device *dev,
391                             struct device_attribute *attr, char *buf)
392 {
393         return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype);
394 }
395 static DEVICE_ATTR_RO(devtype);
396
397 static ssize_t modalias_show(struct device *dev,
398                              struct device_attribute *attr, char *buf)
399 {
400         return sprintf(buf, "%s:%s\n", dev->bus->name,
401                        to_xenbus_device(dev)->devicetype);
402 }
403 static DEVICE_ATTR_RO(modalias);
404
405 static ssize_t state_show(struct device *dev,
406                             struct device_attribute *attr, char *buf)
407 {
408         return sprintf(buf, "%s\n",
409                         xenbus_strstate(to_xenbus_device(dev)->state));
410 }
411 static DEVICE_ATTR_RO(state);
412
413 static struct attribute *xenbus_dev_attrs[] = {
414         &dev_attr_nodename.attr,
415         &dev_attr_devtype.attr,
416         &dev_attr_modalias.attr,
417         &dev_attr_state.attr,
418         NULL,
419 };
420
421 static const struct attribute_group xenbus_dev_group = {
422         .attrs = xenbus_dev_attrs,
423 };
424
425 const struct attribute_group *xenbus_dev_groups[] = {
426         &xenbus_dev_group,
427         NULL,
428 };
429 EXPORT_SYMBOL_GPL(xenbus_dev_groups);
430
431 int xenbus_probe_node(struct xen_bus_type *bus,
432                       const char *type,
433                       const char *nodename)
434 {
435         char devname[XEN_BUS_ID_SIZE];
436         int err;
437         struct xenbus_device *xendev;
438         size_t stringlen;
439         char *tmpstring;
440
441         enum xenbus_state state = xenbus_read_driver_state(nodename);
442
443         if (state != XenbusStateInitialising) {
444                 /* Device is not new, so ignore it.  This can happen if a
445                    device is going away after switching to Closed.  */
446                 return 0;
447         }
448
449         stringlen = strlen(nodename) + 1 + strlen(type) + 1;
450         xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
451         if (!xendev)
452                 return -ENOMEM;
453
454         xendev->state = XenbusStateInitialising;
455
456         /* Copy the strings into the extra space. */
457
458         tmpstring = (char *)(xendev + 1);
459         strcpy(tmpstring, nodename);
460         xendev->nodename = tmpstring;
461
462         tmpstring += strlen(tmpstring) + 1;
463         strcpy(tmpstring, type);
464         xendev->devicetype = tmpstring;
465         init_completion(&xendev->down);
466
467         xendev->dev.bus = &bus->bus;
468         xendev->dev.release = xenbus_dev_release;
469
470         err = bus->get_bus_id(devname, xendev->nodename);
471         if (err)
472                 goto fail;
473
474         dev_set_name(&xendev->dev, "%s", devname);
475         sema_init(&xendev->reclaim_sem, 1);
476
477         /* Register with generic device framework. */
478         err = device_register(&xendev->dev);
479         if (err) {
480                 put_device(&xendev->dev);
481                 xendev = NULL;
482                 goto fail;
483         }
484
485         return 0;
486 fail:
487         kfree(xendev);
488         return err;
489 }
490 EXPORT_SYMBOL_GPL(xenbus_probe_node);
491
492 static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
493 {
494         int err = 0;
495         char **dir;
496         unsigned int dir_n = 0;
497         int i;
498
499         dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
500         if (IS_ERR(dir))
501                 return PTR_ERR(dir);
502
503         for (i = 0; i < dir_n; i++) {
504                 err = bus->probe(bus, type, dir[i]);
505                 if (err)
506                         break;
507         }
508
509         kfree(dir);
510         return err;
511 }
512
513 int xenbus_probe_devices(struct xen_bus_type *bus)
514 {
515         int err = 0;
516         char **dir;
517         unsigned int i, dir_n;
518
519         dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
520         if (IS_ERR(dir))
521                 return PTR_ERR(dir);
522
523         for (i = 0; i < dir_n; i++) {
524                 err = xenbus_probe_device_type(bus, dir[i]);
525                 if (err)
526                         break;
527         }
528
529         kfree(dir);
530         return err;
531 }
532 EXPORT_SYMBOL_GPL(xenbus_probe_devices);
533
534 static unsigned int char_count(const char *str, char c)
535 {
536         unsigned int i, ret = 0;
537
538         for (i = 0; str[i]; i++)
539                 if (str[i] == c)
540                         ret++;
541         return ret;
542 }
543
544 static int strsep_len(const char *str, char c, unsigned int len)
545 {
546         unsigned int i;
547
548         for (i = 0; str[i]; i++)
549                 if (str[i] == c) {
550                         if (len == 0)
551                                 return i;
552                         len--;
553                 }
554         return (len == 0) ? i : -ERANGE;
555 }
556
557 void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
558 {
559         int exists, rootlen;
560         struct xenbus_device *dev;
561         char type[XEN_BUS_ID_SIZE];
562         const char *p, *root;
563
564         if (char_count(node, '/') < 2)
565                 return;
566
567         exists = xenbus_exists(XBT_NIL, node, "");
568         if (!exists) {
569                 xenbus_cleanup_devices(node, &bus->bus);
570                 return;
571         }
572
573         /* backend/<type>/... or device/<type>/... */
574         p = strchr(node, '/') + 1;
575         snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
576         type[XEN_BUS_ID_SIZE-1] = '\0';
577
578         rootlen = strsep_len(node, '/', bus->levels);
579         if (rootlen < 0)
580                 return;
581         root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
582         if (!root)
583                 return;
584
585         dev = xenbus_device_find(root, &bus->bus);
586         if (!dev)
587                 xenbus_probe_node(bus, type, root);
588         else
589                 put_device(&dev->dev);
590
591         kfree(root);
592 }
593 EXPORT_SYMBOL_GPL(xenbus_dev_changed);
594
595 int xenbus_dev_suspend(struct device *dev)
596 {
597         int err = 0;
598         struct xenbus_driver *drv;
599         struct xenbus_device *xdev
600                 = container_of(dev, struct xenbus_device, dev);
601
602         DPRINTK("%s", xdev->nodename);
603
604         if (dev->driver == NULL)
605                 return 0;
606         drv = to_xenbus_driver(dev->driver);
607         if (drv->suspend)
608                 err = drv->suspend(xdev);
609         if (err)
610                 pr_warn("suspend %s failed: %i\n", dev_name(dev), err);
611         return 0;
612 }
613 EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
614
615 int xenbus_dev_resume(struct device *dev)
616 {
617         int err;
618         struct xenbus_driver *drv;
619         struct xenbus_device *xdev
620                 = container_of(dev, struct xenbus_device, dev);
621
622         DPRINTK("%s", xdev->nodename);
623
624         if (dev->driver == NULL)
625                 return 0;
626         drv = to_xenbus_driver(dev->driver);
627         err = talk_to_otherend(xdev);
628         if (err) {
629                 pr_warn("resume (talk_to_otherend) %s failed: %i\n",
630                         dev_name(dev), err);
631                 return err;
632         }
633
634         xdev->state = XenbusStateInitialising;
635
636         if (drv->resume) {
637                 err = drv->resume(xdev);
638                 if (err) {
639                         pr_warn("resume %s failed: %i\n", dev_name(dev), err);
640                         return err;
641                 }
642         }
643
644         err = watch_otherend(xdev);
645         if (err) {
646                 pr_warn("resume (watch_otherend) %s failed: %d.\n",
647                         dev_name(dev), err);
648                 return err;
649         }
650
651         return 0;
652 }
653 EXPORT_SYMBOL_GPL(xenbus_dev_resume);
654
655 int xenbus_dev_cancel(struct device *dev)
656 {
657         /* Do nothing */
658         DPRINTK("cancel");
659         return 0;
660 }
661 EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
662
663 /* A flag to determine if xenstored is 'ready' (i.e. has started) */
664 int xenstored_ready;
665
666
667 int register_xenstore_notifier(struct notifier_block *nb)
668 {
669         int ret = 0;
670
671         if (xenstored_ready > 0)
672                 ret = nb->notifier_call(nb, 0, NULL);
673         else
674                 blocking_notifier_chain_register(&xenstore_chain, nb);
675
676         return ret;
677 }
678 EXPORT_SYMBOL_GPL(register_xenstore_notifier);
679
680 void unregister_xenstore_notifier(struct notifier_block *nb)
681 {
682         blocking_notifier_chain_unregister(&xenstore_chain, nb);
683 }
684 EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
685
686 void xenbus_probe(struct work_struct *unused)
687 {
688         xenstored_ready = 1;
689
690         /* Notify others that xenstore is up */
691         blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
692 }
693 EXPORT_SYMBOL_GPL(xenbus_probe);
694
695 static int __init xenbus_probe_initcall(void)
696 {
697         if (!xen_domain())
698                 return -ENODEV;
699
700         if (xen_initial_domain() || xen_hvm_domain())
701                 return 0;
702
703         xenbus_probe(NULL);
704         return 0;
705 }
706
707 device_initcall(xenbus_probe_initcall);
708
709 /* Set up event channel for xenstored which is run as a local process
710  * (this is normally used only in dom0)
711  */
712 static int __init xenstored_local_init(void)
713 {
714         int err = -ENOMEM;
715         unsigned long page = 0;
716         struct evtchn_alloc_unbound alloc_unbound;
717
718         /* Allocate Xenstore page */
719         page = get_zeroed_page(GFP_KERNEL);
720         if (!page)
721                 goto out_err;
722
723         xen_store_gfn = virt_to_gfn((void *)page);
724
725         /* Next allocate a local port which xenstored can bind to */
726         alloc_unbound.dom        = DOMID_SELF;
727         alloc_unbound.remote_dom = DOMID_SELF;
728
729         err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
730                                           &alloc_unbound);
731         if (err == -ENOSYS)
732                 goto out_err;
733
734         BUG_ON(err);
735         xen_store_evtchn = alloc_unbound.port;
736
737         return 0;
738
739  out_err:
740         if (page != 0)
741                 free_page(page);
742         return err;
743 }
744
745 static int xenbus_resume_cb(struct notifier_block *nb,
746                             unsigned long action, void *data)
747 {
748         int err = 0;
749
750         if (xen_hvm_domain()) {
751                 uint64_t v = 0;
752
753                 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
754                 if (!err && v)
755                         xen_store_evtchn = v;
756                 else
757                         pr_warn("Cannot update xenstore event channel: %d\n",
758                                 err);
759         } else
760                 xen_store_evtchn = xen_start_info->store_evtchn;
761
762         return err;
763 }
764
765 static struct notifier_block xenbus_resume_nb = {
766         .notifier_call = xenbus_resume_cb,
767 };
768
769 static int __init xenbus_init(void)
770 {
771         int err = 0;
772         uint64_t v = 0;
773         xen_store_domain_type = XS_UNKNOWN;
774
775         if (!xen_domain())
776                 return -ENODEV;
777
778         xenbus_ring_ops_init();
779
780         if (xen_pv_domain())
781                 xen_store_domain_type = XS_PV;
782         if (xen_hvm_domain())
783                 xen_store_domain_type = XS_HVM;
784         if (xen_hvm_domain() && xen_initial_domain())
785                 xen_store_domain_type = XS_LOCAL;
786         if (xen_pv_domain() && !xen_start_info->store_evtchn)
787                 xen_store_domain_type = XS_LOCAL;
788         if (xen_pv_domain() && xen_start_info->store_evtchn)
789                 xenstored_ready = 1;
790
791         switch (xen_store_domain_type) {
792         case XS_LOCAL:
793                 err = xenstored_local_init();
794                 if (err)
795                         goto out_error;
796                 xen_store_interface = gfn_to_virt(xen_store_gfn);
797                 break;
798         case XS_PV:
799                 xen_store_evtchn = xen_start_info->store_evtchn;
800                 xen_store_gfn = xen_start_info->store_mfn;
801                 xen_store_interface = gfn_to_virt(xen_store_gfn);
802                 break;
803         case XS_HVM:
804                 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
805                 if (err)
806                         goto out_error;
807                 xen_store_evtchn = (int)v;
808                 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
809                 if (err)
810                         goto out_error;
811                 xen_store_gfn = (unsigned long)v;
812                 xen_store_interface =
813                         xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
814                                   XEN_PAGE_SIZE);
815                 break;
816         default:
817                 pr_warn("Xenstore state unknown\n");
818                 break;
819         }
820
821         /* Initialize the interface to xenstore. */
822         err = xs_init();
823         if (err) {
824                 pr_warn("Error initializing xenstore comms: %i\n", err);
825                 goto out_error;
826         }
827
828         if ((xen_store_domain_type != XS_LOCAL) &&
829             (xen_store_domain_type != XS_UNKNOWN))
830                 xen_resume_notifier_register(&xenbus_resume_nb);
831
832 #ifdef CONFIG_XEN_COMPAT_XENFS
833         /*
834          * Create xenfs mountpoint in /proc for compatibility with
835          * utilities that expect to find "xenbus" under "/proc/xen".
836          */
837         proc_create_mount_point("xen");
838 #endif
839
840 out_error:
841         return err;
842 }
843
844 postcore_initcall(xenbus_init);
845
846 MODULE_LICENSE("GPL");