GNU Linux-libre 4.14.251-gnu1
[releases.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/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_will_handle,
140                                     bus->otherend_changed,
141                                     "%s/%s", dev->otherend, "state");
142 }
143
144
145 int xenbus_read_otherend_details(struct xenbus_device *xendev,
146                                  char *id_node, char *path_node)
147 {
148         int err = xenbus_gather(XBT_NIL, xendev->nodename,
149                                 id_node, "%i", &xendev->otherend_id,
150                                 path_node, NULL, &xendev->otherend,
151                                 NULL);
152         if (err) {
153                 xenbus_dev_fatal(xendev, err,
154                                  "reading other end details from %s",
155                                  xendev->nodename);
156                 return err;
157         }
158         if (strlen(xendev->otherend) == 0 ||
159             !xenbus_exists(XBT_NIL, xendev->otherend, "")) {
160                 xenbus_dev_fatal(xendev, -ENOENT,
161                                  "unable to read other end from %s.  "
162                                  "missing or inaccessible.",
163                                  xendev->nodename);
164                 free_otherend_details(xendev);
165                 return -ENOENT;
166         }
167
168         return 0;
169 }
170 EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
171
172 void xenbus_otherend_changed(struct xenbus_watch *watch,
173                              const char *path, const char *token,
174                              int ignore_on_shutdown)
175 {
176         struct xenbus_device *dev =
177                 container_of(watch, struct xenbus_device, otherend_watch);
178         struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
179         enum xenbus_state state;
180
181         /* Protect us against watches firing on old details when the otherend
182            details change, say immediately after a resume. */
183         if (!dev->otherend ||
184             strncmp(dev->otherend, path, strlen(dev->otherend))) {
185                 dev_dbg(&dev->dev, "Ignoring watch at %s\n", path);
186                 return;
187         }
188
189         state = xenbus_read_driver_state(dev->otherend);
190
191         dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n",
192                 state, xenbus_strstate(state), dev->otherend_watch.node, path);
193
194         /*
195          * Ignore xenbus transitions during shutdown. This prevents us doing
196          * work that can fail e.g., when the rootfs is gone.
197          */
198         if (system_state > SYSTEM_RUNNING) {
199                 if (ignore_on_shutdown && (state == XenbusStateClosing))
200                         xenbus_frontend_closed(dev);
201                 return;
202         }
203
204         if (drv->otherend_changed)
205                 drv->otherend_changed(dev, state);
206 }
207 EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
208
209 int xenbus_dev_probe(struct device *_dev)
210 {
211         struct xenbus_device *dev = to_xenbus_device(_dev);
212         struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
213         const struct xenbus_device_id *id;
214         int err;
215
216         DPRINTK("%s", dev->nodename);
217
218         if (!drv->probe) {
219                 err = -ENODEV;
220                 goto fail;
221         }
222
223         id = match_device(drv->ids, dev);
224         if (!id) {
225                 err = -ENODEV;
226                 goto fail;
227         }
228
229         err = talk_to_otherend(dev);
230         if (err) {
231                 dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n",
232                          dev->nodename);
233                 return err;
234         }
235
236         err = drv->probe(dev, id);
237         if (err)
238                 goto fail;
239
240         err = watch_otherend(dev);
241         if (err) {
242                 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
243                        dev->nodename);
244                 return err;
245         }
246
247         return 0;
248 fail:
249         xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
250         xenbus_switch_state(dev, XenbusStateClosed);
251         return err;
252 }
253 EXPORT_SYMBOL_GPL(xenbus_dev_probe);
254
255 int xenbus_dev_remove(struct device *_dev)
256 {
257         struct xenbus_device *dev = to_xenbus_device(_dev);
258         struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
259
260         DPRINTK("%s", dev->nodename);
261
262         free_otherend_watch(dev);
263
264         if (drv->remove)
265                 drv->remove(dev);
266
267         free_otherend_details(dev);
268
269         xenbus_switch_state(dev, XenbusStateClosed);
270         return 0;
271 }
272 EXPORT_SYMBOL_GPL(xenbus_dev_remove);
273
274 void xenbus_dev_shutdown(struct device *_dev)
275 {
276         struct xenbus_device *dev = to_xenbus_device(_dev);
277         unsigned long timeout = 5*HZ;
278
279         DPRINTK("%s", dev->nodename);
280
281         get_device(&dev->dev);
282         if (dev->state != XenbusStateConnected) {
283                 pr_info("%s: %s: %s != Connected, skipping\n",
284                         __func__, dev->nodename, xenbus_strstate(dev->state));
285                 goto out;
286         }
287         xenbus_switch_state(dev, XenbusStateClosing);
288         timeout = wait_for_completion_timeout(&dev->down, timeout);
289         if (!timeout)
290                 pr_info("%s: %s timeout closing device\n",
291                         __func__, dev->nodename);
292  out:
293         put_device(&dev->dev);
294 }
295 EXPORT_SYMBOL_GPL(xenbus_dev_shutdown);
296
297 int xenbus_register_driver_common(struct xenbus_driver *drv,
298                                   struct xen_bus_type *bus,
299                                   struct module *owner, const char *mod_name)
300 {
301         drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype;
302         drv->driver.bus = &bus->bus;
303         drv->driver.owner = owner;
304         drv->driver.mod_name = mod_name;
305
306         return driver_register(&drv->driver);
307 }
308 EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
309
310 void xenbus_unregister_driver(struct xenbus_driver *drv)
311 {
312         driver_unregister(&drv->driver);
313 }
314 EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
315
316 struct xb_find_info {
317         struct xenbus_device *dev;
318         const char *nodename;
319 };
320
321 static int cmp_dev(struct device *dev, void *data)
322 {
323         struct xenbus_device *xendev = to_xenbus_device(dev);
324         struct xb_find_info *info = data;
325
326         if (!strcmp(xendev->nodename, info->nodename)) {
327                 info->dev = xendev;
328                 get_device(dev);
329                 return 1;
330         }
331         return 0;
332 }
333
334 static struct xenbus_device *xenbus_device_find(const char *nodename,
335                                                 struct bus_type *bus)
336 {
337         struct xb_find_info info = { .dev = NULL, .nodename = nodename };
338
339         bus_for_each_dev(bus, NULL, &info, cmp_dev);
340         return info.dev;
341 }
342
343 static int cleanup_dev(struct device *dev, void *data)
344 {
345         struct xenbus_device *xendev = to_xenbus_device(dev);
346         struct xb_find_info *info = data;
347         int len = strlen(info->nodename);
348
349         DPRINTK("%s", info->nodename);
350
351         /* Match the info->nodename path, or any subdirectory of that path. */
352         if (strncmp(xendev->nodename, info->nodename, len))
353                 return 0;
354
355         /* If the node name is longer, ensure it really is a subdirectory. */
356         if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/'))
357                 return 0;
358
359         info->dev = xendev;
360         get_device(dev);
361         return 1;
362 }
363
364 static void xenbus_cleanup_devices(const char *path, struct bus_type *bus)
365 {
366         struct xb_find_info info = { .nodename = path };
367
368         do {
369                 info.dev = NULL;
370                 bus_for_each_dev(bus, NULL, &info, cleanup_dev);
371                 if (info.dev) {
372                         device_unregister(&info.dev->dev);
373                         put_device(&info.dev->dev);
374                 }
375         } while (info.dev);
376 }
377
378 static void xenbus_dev_release(struct device *dev)
379 {
380         if (dev)
381                 kfree(to_xenbus_device(dev));
382 }
383
384 static ssize_t nodename_show(struct device *dev,
385                              struct device_attribute *attr, char *buf)
386 {
387         return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename);
388 }
389 static DEVICE_ATTR_RO(nodename);
390
391 static ssize_t devtype_show(struct device *dev,
392                             struct device_attribute *attr, char *buf)
393 {
394         return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype);
395 }
396 static DEVICE_ATTR_RO(devtype);
397
398 static ssize_t modalias_show(struct device *dev,
399                              struct device_attribute *attr, char *buf)
400 {
401         return sprintf(buf, "%s:%s\n", dev->bus->name,
402                        to_xenbus_device(dev)->devicetype);
403 }
404 static DEVICE_ATTR_RO(modalias);
405
406 static struct attribute *xenbus_dev_attrs[] = {
407         &dev_attr_nodename.attr,
408         &dev_attr_devtype.attr,
409         &dev_attr_modalias.attr,
410         NULL,
411 };
412
413 static const struct attribute_group xenbus_dev_group = {
414         .attrs = xenbus_dev_attrs,
415 };
416
417 const struct attribute_group *xenbus_dev_groups[] = {
418         &xenbus_dev_group,
419         NULL,
420 };
421 EXPORT_SYMBOL_GPL(xenbus_dev_groups);
422
423 int xenbus_probe_node(struct xen_bus_type *bus,
424                       const char *type,
425                       const char *nodename)
426 {
427         char devname[XEN_BUS_ID_SIZE];
428         int err;
429         struct xenbus_device *xendev;
430         size_t stringlen;
431         char *tmpstring;
432
433         enum xenbus_state state = xenbus_read_driver_state(nodename);
434
435         if (state != XenbusStateInitialising) {
436                 /* Device is not new, so ignore it.  This can happen if a
437                    device is going away after switching to Closed.  */
438                 return 0;
439         }
440
441         stringlen = strlen(nodename) + 1 + strlen(type) + 1;
442         xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
443         if (!xendev)
444                 return -ENOMEM;
445
446         xendev->state = XenbusStateInitialising;
447
448         /* Copy the strings into the extra space. */
449
450         tmpstring = (char *)(xendev + 1);
451         strcpy(tmpstring, nodename);
452         xendev->nodename = tmpstring;
453
454         tmpstring += strlen(tmpstring) + 1;
455         strcpy(tmpstring, type);
456         xendev->devicetype = tmpstring;
457         init_completion(&xendev->down);
458
459         xendev->dev.bus = &bus->bus;
460         xendev->dev.release = xenbus_dev_release;
461
462         err = bus->get_bus_id(devname, xendev->nodename);
463         if (err)
464                 goto fail;
465
466         dev_set_name(&xendev->dev, "%s", devname);
467
468         /* Register with generic device framework. */
469         err = device_register(&xendev->dev);
470         if (err) {
471                 put_device(&xendev->dev);
472                 xendev = NULL;
473                 goto fail;
474         }
475
476         return 0;
477 fail:
478         kfree(xendev);
479         return err;
480 }
481 EXPORT_SYMBOL_GPL(xenbus_probe_node);
482
483 static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
484 {
485         int err = 0;
486         char **dir;
487         unsigned int dir_n = 0;
488         int i;
489
490         dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
491         if (IS_ERR(dir))
492                 return PTR_ERR(dir);
493
494         for (i = 0; i < dir_n; i++) {
495                 err = bus->probe(bus, type, dir[i]);
496                 if (err)
497                         break;
498         }
499
500         kfree(dir);
501         return err;
502 }
503
504 int xenbus_probe_devices(struct xen_bus_type *bus)
505 {
506         int err = 0;
507         char **dir;
508         unsigned int i, dir_n;
509
510         dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
511         if (IS_ERR(dir))
512                 return PTR_ERR(dir);
513
514         for (i = 0; i < dir_n; i++) {
515                 err = xenbus_probe_device_type(bus, dir[i]);
516                 if (err)
517                         break;
518         }
519
520         kfree(dir);
521         return err;
522 }
523 EXPORT_SYMBOL_GPL(xenbus_probe_devices);
524
525 static unsigned int char_count(const char *str, char c)
526 {
527         unsigned int i, ret = 0;
528
529         for (i = 0; str[i]; i++)
530                 if (str[i] == c)
531                         ret++;
532         return ret;
533 }
534
535 static int strsep_len(const char *str, char c, unsigned int len)
536 {
537         unsigned int i;
538
539         for (i = 0; str[i]; i++)
540                 if (str[i] == c) {
541                         if (len == 0)
542                                 return i;
543                         len--;
544                 }
545         return (len == 0) ? i : -ERANGE;
546 }
547
548 void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
549 {
550         int exists, rootlen;
551         struct xenbus_device *dev;
552         char type[XEN_BUS_ID_SIZE];
553         const char *p, *root;
554
555         if (char_count(node, '/') < 2)
556                 return;
557
558         exists = xenbus_exists(XBT_NIL, node, "");
559         if (!exists) {
560                 xenbus_cleanup_devices(node, &bus->bus);
561                 return;
562         }
563
564         /* backend/<type>/... or device/<type>/... */
565         p = strchr(node, '/') + 1;
566         snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
567         type[XEN_BUS_ID_SIZE-1] = '\0';
568
569         rootlen = strsep_len(node, '/', bus->levels);
570         if (rootlen < 0)
571                 return;
572         root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
573         if (!root)
574                 return;
575
576         dev = xenbus_device_find(root, &bus->bus);
577         if (!dev)
578                 xenbus_probe_node(bus, type, root);
579         else
580                 put_device(&dev->dev);
581
582         kfree(root);
583 }
584 EXPORT_SYMBOL_GPL(xenbus_dev_changed);
585
586 int xenbus_dev_suspend(struct device *dev)
587 {
588         int err = 0;
589         struct xenbus_driver *drv;
590         struct xenbus_device *xdev
591                 = container_of(dev, struct xenbus_device, dev);
592
593         DPRINTK("%s", xdev->nodename);
594
595         if (dev->driver == NULL)
596                 return 0;
597         drv = to_xenbus_driver(dev->driver);
598         if (drv->suspend)
599                 err = drv->suspend(xdev);
600         if (err)
601                 pr_warn("suspend %s failed: %i\n", dev_name(dev), err);
602         return 0;
603 }
604 EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
605
606 int xenbus_dev_resume(struct device *dev)
607 {
608         int err;
609         struct xenbus_driver *drv;
610         struct xenbus_device *xdev
611                 = container_of(dev, struct xenbus_device, dev);
612
613         DPRINTK("%s", xdev->nodename);
614
615         if (dev->driver == NULL)
616                 return 0;
617         drv = to_xenbus_driver(dev->driver);
618         err = talk_to_otherend(xdev);
619         if (err) {
620                 pr_warn("resume (talk_to_otherend) %s failed: %i\n",
621                         dev_name(dev), err);
622                 return err;
623         }
624
625         xdev->state = XenbusStateInitialising;
626
627         if (drv->resume) {
628                 err = drv->resume(xdev);
629                 if (err) {
630                         pr_warn("resume %s failed: %i\n", dev_name(dev), err);
631                         return err;
632                 }
633         }
634
635         err = watch_otherend(xdev);
636         if (err) {
637                 pr_warn("resume (watch_otherend) %s failed: %d.\n",
638                         dev_name(dev), err);
639                 return err;
640         }
641
642         return 0;
643 }
644 EXPORT_SYMBOL_GPL(xenbus_dev_resume);
645
646 int xenbus_dev_cancel(struct device *dev)
647 {
648         /* Do nothing */
649         DPRINTK("cancel");
650         return 0;
651 }
652 EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
653
654 /* A flag to determine if xenstored is 'ready' (i.e. has started) */
655 int xenstored_ready;
656
657
658 int register_xenstore_notifier(struct notifier_block *nb)
659 {
660         int ret = 0;
661
662         if (xenstored_ready > 0)
663                 ret = nb->notifier_call(nb, 0, NULL);
664         else
665                 blocking_notifier_chain_register(&xenstore_chain, nb);
666
667         return ret;
668 }
669 EXPORT_SYMBOL_GPL(register_xenstore_notifier);
670
671 void unregister_xenstore_notifier(struct notifier_block *nb)
672 {
673         blocking_notifier_chain_unregister(&xenstore_chain, nb);
674 }
675 EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
676
677 static void xenbus_probe(void)
678 {
679         xenstored_ready = 1;
680
681         /*
682          * In the HVM case, xenbus_init() deferred its call to
683          * xs_init() in case callbacks were not operational yet.
684          * So do it now.
685          */
686         if (xen_store_domain_type == XS_HVM)
687                 xs_init();
688
689         /* Notify others that xenstore is up */
690         blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
691 }
692
693 /*
694  * Returns true when XenStore init must be deferred in order to
695  * allow the PCI platform device to be initialised, before we
696  * can actually have event channel interrupts working.
697  */
698 static bool xs_hvm_defer_init_for_callback(void)
699 {
700 #ifdef CONFIG_XEN_PVHVM
701         return xen_store_domain_type == XS_HVM &&
702                 !xen_have_vector_callback;
703 #else
704         return false;
705 #endif
706 }
707
708 static int xenbus_probe_thread(void *unused)
709 {
710         DEFINE_WAIT(w);
711
712         /*
713          * We actually just want to wait for *any* trigger of xb_waitq,
714          * and run xenbus_probe() the moment it occurs.
715          */
716         prepare_to_wait(&xb_waitq, &w, TASK_INTERRUPTIBLE);
717         schedule();
718         finish_wait(&xb_waitq, &w);
719
720         DPRINTK("probing");
721         xenbus_probe();
722         return 0;
723 }
724
725 static int __init xenbus_probe_initcall(void)
726 {
727         /*
728          * Probe XenBus here in the XS_PV case, and also XS_HVM unless we
729          * need to wait for the platform PCI device to come up.
730          */
731         if (xen_store_domain_type == XS_PV ||
732             (xen_store_domain_type == XS_HVM &&
733              !xs_hvm_defer_init_for_callback()))
734                 xenbus_probe();
735
736         /*
737          * For XS_LOCAL, spawn a thread which will wait for xenstored
738          * or a xenstore-stubdom to be started, then probe. It will be
739          * triggered when communication starts happening, by waiting
740          * on xb_waitq.
741          */
742         if (xen_store_domain_type == XS_LOCAL) {
743                 struct task_struct *probe_task;
744
745                 probe_task = kthread_run(xenbus_probe_thread, NULL,
746                                          "xenbus_probe");
747                 if (IS_ERR(probe_task))
748                         return PTR_ERR(probe_task);
749         }
750         return 0;
751 }
752 device_initcall(xenbus_probe_initcall);
753
754 int xen_set_callback_via(uint64_t via)
755 {
756         struct xen_hvm_param a;
757         int ret;
758
759         a.domid = DOMID_SELF;
760         a.index = HVM_PARAM_CALLBACK_IRQ;
761         a.value = via;
762
763         ret = HYPERVISOR_hvm_op(HVMOP_set_param, &a);
764         if (ret)
765                 return ret;
766
767         /*
768          * If xenbus_probe_initcall() deferred the xenbus_probe()
769          * due to the callback not functioning yet, we can do it now.
770          */
771         if (!xenstored_ready && xs_hvm_defer_init_for_callback())
772                 xenbus_probe();
773
774         return ret;
775 }
776 EXPORT_SYMBOL_GPL(xen_set_callback_via);
777
778 /* Set up event channel for xenstored which is run as a local process
779  * (this is normally used only in dom0)
780  */
781 static int __init xenstored_local_init(void)
782 {
783         int err = -ENOMEM;
784         unsigned long page = 0;
785         struct evtchn_alloc_unbound alloc_unbound;
786
787         /* Allocate Xenstore page */
788         page = get_zeroed_page(GFP_KERNEL);
789         if (!page)
790                 goto out_err;
791
792         xen_store_gfn = xen_start_info->store_mfn = virt_to_gfn((void *)page);
793
794         /* Next allocate a local port which xenstored can bind to */
795         alloc_unbound.dom        = DOMID_SELF;
796         alloc_unbound.remote_dom = DOMID_SELF;
797
798         err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
799                                           &alloc_unbound);
800         if (err == -ENOSYS)
801                 goto out_err;
802
803         BUG_ON(err);
804         xen_store_evtchn = xen_start_info->store_evtchn =
805                 alloc_unbound.port;
806
807         return 0;
808
809  out_err:
810         if (page != 0)
811                 free_page(page);
812         return err;
813 }
814
815 static int xenbus_resume_cb(struct notifier_block *nb,
816                             unsigned long action, void *data)
817 {
818         int err = 0;
819
820         if (xen_hvm_domain()) {
821                 uint64_t v = 0;
822
823                 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
824                 if (!err && v)
825                         xen_store_evtchn = v;
826                 else
827                         pr_warn("Cannot update xenstore event channel: %d\n",
828                                 err);
829         } else
830                 xen_store_evtchn = xen_start_info->store_evtchn;
831
832         return err;
833 }
834
835 static struct notifier_block xenbus_resume_nb = {
836         .notifier_call = xenbus_resume_cb,
837 };
838
839 static int __init xenbus_init(void)
840 {
841         int err = 0;
842         uint64_t v = 0;
843         xen_store_domain_type = XS_UNKNOWN;
844
845         if (!xen_domain())
846                 return -ENODEV;
847
848         xenbus_ring_ops_init();
849
850         if (xen_pv_domain())
851                 xen_store_domain_type = XS_PV;
852         if (xen_hvm_domain())
853                 xen_store_domain_type = XS_HVM;
854         if (xen_hvm_domain() && xen_initial_domain())
855                 xen_store_domain_type = XS_LOCAL;
856         if (xen_pv_domain() && !xen_start_info->store_evtchn)
857                 xen_store_domain_type = XS_LOCAL;
858         if (xen_pv_domain() && xen_start_info->store_evtchn)
859                 xenstored_ready = 1;
860
861         switch (xen_store_domain_type) {
862         case XS_LOCAL:
863                 err = xenstored_local_init();
864                 if (err)
865                         goto out_error;
866                 xen_store_interface = gfn_to_virt(xen_store_gfn);
867                 break;
868         case XS_PV:
869                 xen_store_evtchn = xen_start_info->store_evtchn;
870                 xen_store_gfn = xen_start_info->store_mfn;
871                 xen_store_interface = gfn_to_virt(xen_store_gfn);
872                 break;
873         case XS_HVM:
874                 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
875                 if (err)
876                         goto out_error;
877                 xen_store_evtchn = (int)v;
878                 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
879                 if (err)
880                         goto out_error;
881                 xen_store_gfn = (unsigned long)v;
882                 xen_store_interface =
883                         xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
884                                   XEN_PAGE_SIZE);
885                 break;
886         default:
887                 pr_warn("Xenstore state unknown\n");
888                 break;
889         }
890
891         /*
892          * HVM domains may not have a functional callback yet. In that
893          * case let xs_init() be called from xenbus_probe(), which will
894          * get invoked at an appropriate time.
895          */
896         if (xen_store_domain_type != XS_HVM) {
897                 err = xs_init();
898                 if (err) {
899                         pr_warn("Error initializing xenstore comms: %i\n", err);
900                         goto out_error;
901                 }
902         }
903
904         if ((xen_store_domain_type != XS_LOCAL) &&
905             (xen_store_domain_type != XS_UNKNOWN))
906                 xen_resume_notifier_register(&xenbus_resume_nb);
907
908 #ifdef CONFIG_XEN_COMPAT_XENFS
909         /*
910          * Create xenfs mountpoint in /proc for compatibility with
911          * utilities that expect to find "xenbus" under "/proc/xen".
912          */
913         proc_create_mount_point("xen");
914 #endif
915
916 out_error:
917         return err;
918 }
919
920 postcore_initcall(xenbus_init);
921
922 MODULE_LICENSE("GPL");