1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
34#define dev_fmt pr_fmt
35
36#define DPRINTK(fmt, args...) \
37 pr_debug("xenbus_probe (%s:%d) " fmt ".\n", \
38 __func__, __LINE__, ##args)
39
40#include <linux/kernel.h>
41#include <linux/err.h>
42#include <linux/string.h>
43#include <linux/ctype.h>
44#include <linux/fcntl.h>
45#include <linux/mm.h>
46#include <linux/proc_fs.h>
47#include <linux/notifier.h>
48#include <linux/kthread.h>
49#include <linux/mutex.h>
50#include <linux/io.h>
51#include <linux/slab.h>
52#include <linux/module.h>
53
54#include <asm/page.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
68static int xs_init_irq;
69int xen_store_evtchn;
70EXPORT_SYMBOL_GPL(xen_store_evtchn);
71
72struct xenstore_domain_interface *xen_store_interface;
73EXPORT_SYMBOL_GPL(xen_store_interface);
74
75enum xenstore_init xen_store_domain_type;
76EXPORT_SYMBOL_GPL(xen_store_domain_type);
77
78static unsigned long xen_store_gfn;
79
80static BLOCKING_NOTIFIER_HEAD(xenstore_chain);
81
82
83static const struct xenbus_device_id *
84match_device(const struct xenbus_device_id *arr, struct xenbus_device *dev)
85{
86 for (; *arr->devicetype != '\0'; arr++) {
87 if (!strcmp(arr->devicetype, dev->devicetype))
88 return arr;
89 }
90 return NULL;
91}
92
93int xenbus_match(struct device *_dev, struct device_driver *_drv)
94{
95 struct xenbus_driver *drv = to_xenbus_driver(_drv);
96
97 if (!drv->ids)
98 return 0;
99
100 return match_device(drv->ids, to_xenbus_device(_dev)) != NULL;
101}
102EXPORT_SYMBOL_GPL(xenbus_match);
103
104
105static void free_otherend_details(struct xenbus_device *dev)
106{
107 kfree(dev->otherend);
108 dev->otherend = NULL;
109}
110
111
112static void free_otherend_watch(struct xenbus_device *dev)
113{
114 if (dev->otherend_watch.node) {
115 unregister_xenbus_watch(&dev->otherend_watch);
116 kfree(dev->otherend_watch.node);
117 dev->otherend_watch.node = NULL;
118 }
119}
120
121
122static int talk_to_otherend(struct xenbus_device *dev)
123{
124 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
125
126 free_otherend_watch(dev);
127 free_otherend_details(dev);
128
129 return drv->read_otherend_details(dev);
130}
131
132
133
134static int watch_otherend(struct xenbus_device *dev)
135{
136 struct xen_bus_type *bus =
137 container_of(dev->dev.bus, struct xen_bus_type, bus);
138
139 return xenbus_watch_pathfmt(dev, &dev->otherend_watch,
140 bus->otherend_will_handle,
141 bus->otherend_changed,
142 "%s/%s", dev->otherend, "state");
143}
144
145
146int xenbus_read_otherend_details(struct xenbus_device *xendev,
147 char *id_node, char *path_node)
148{
149 int err = xenbus_gather(XBT_NIL, xendev->nodename,
150 id_node, "%i", &xendev->otherend_id,
151 path_node, NULL, &xendev->otherend,
152 NULL);
153 if (err) {
154 xenbus_dev_fatal(xendev, err,
155 "reading other end details from %s",
156 xendev->nodename);
157 return err;
158 }
159 if (strlen(xendev->otherend) == 0 ||
160 !xenbus_exists(XBT_NIL, xendev->otherend, "")) {
161 xenbus_dev_fatal(xendev, -ENOENT,
162 "unable to read other end from %s. "
163 "missing or inaccessible.",
164 xendev->nodename);
165 free_otherend_details(xendev);
166 return -ENOENT;
167 }
168
169 return 0;
170}
171EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
172
173void xenbus_otherend_changed(struct xenbus_watch *watch,
174 const char *path, const char *token,
175 int ignore_on_shutdown)
176{
177 struct xenbus_device *dev =
178 container_of(watch, struct xenbus_device, otherend_watch);
179 struct xenbus_driver *drv = to_xenbus_driver(dev->dev.driver);
180 enum xenbus_state state;
181
182
183
184 if (!dev->otherend ||
185 strncmp(dev->otherend, path, strlen(dev->otherend))) {
186 dev_dbg(&dev->dev, "Ignoring watch at %s\n", path);
187 return;
188 }
189
190 state = xenbus_read_driver_state(dev->otherend);
191
192 dev_dbg(&dev->dev, "state is %d, (%s), %s, %s\n",
193 state, xenbus_strstate(state), dev->otherend_watch.node, path);
194
195
196
197
198
199 if (system_state > SYSTEM_RUNNING) {
200 if (ignore_on_shutdown && (state == XenbusStateClosing))
201 xenbus_frontend_closed(dev);
202 return;
203 }
204
205 if (drv->otherend_changed)
206 drv->otherend_changed(dev, state);
207}
208EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
209
210#define XENBUS_SHOW_STAT(name) \
211static ssize_t name##_show(struct device *_dev, \
212 struct device_attribute *attr, \
213 char *buf) \
214{ \
215 struct xenbus_device *dev = to_xenbus_device(_dev); \
216 \
217 return sprintf(buf, "%d\n", atomic_read(&dev->name)); \
218} \
219static DEVICE_ATTR_RO(name)
220
221XENBUS_SHOW_STAT(event_channels);
222XENBUS_SHOW_STAT(events);
223XENBUS_SHOW_STAT(spurious_events);
224XENBUS_SHOW_STAT(jiffies_eoi_delayed);
225
226static ssize_t spurious_threshold_show(struct device *_dev,
227 struct device_attribute *attr,
228 char *buf)
229{
230 struct xenbus_device *dev = to_xenbus_device(_dev);
231
232 return sprintf(buf, "%d\n", dev->spurious_threshold);
233}
234
235static ssize_t spurious_threshold_store(struct device *_dev,
236 struct device_attribute *attr,
237 const char *buf, size_t count)
238{
239 struct xenbus_device *dev = to_xenbus_device(_dev);
240 unsigned int val;
241 ssize_t ret;
242
243 ret = kstrtouint(buf, 0, &val);
244 if (ret)
245 return ret;
246
247 dev->spurious_threshold = val;
248
249 return count;
250}
251
252static DEVICE_ATTR_RW(spurious_threshold);
253
254static struct attribute *xenbus_attrs[] = {
255 &dev_attr_event_channels.attr,
256 &dev_attr_events.attr,
257 &dev_attr_spurious_events.attr,
258 &dev_attr_jiffies_eoi_delayed.attr,
259 &dev_attr_spurious_threshold.attr,
260 NULL
261};
262
263static const struct attribute_group xenbus_group = {
264 .name = "xenbus",
265 .attrs = xenbus_attrs,
266};
267
268int xenbus_dev_probe(struct device *_dev)
269{
270 struct xenbus_device *dev = to_xenbus_device(_dev);
271 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
272 const struct xenbus_device_id *id;
273 int err;
274
275 DPRINTK("%s", dev->nodename);
276
277 if (!drv->probe) {
278 err = -ENODEV;
279 goto fail;
280 }
281
282 id = match_device(drv->ids, dev);
283 if (!id) {
284 err = -ENODEV;
285 goto fail;
286 }
287
288 err = talk_to_otherend(dev);
289 if (err) {
290 dev_warn(&dev->dev, "talk_to_otherend on %s failed.\n",
291 dev->nodename);
292 return err;
293 }
294
295 if (!try_module_get(drv->driver.owner)) {
296 dev_warn(&dev->dev, "failed to acquire module reference on '%s'\n",
297 drv->driver.name);
298 err = -ESRCH;
299 goto fail;
300 }
301
302 down(&dev->reclaim_sem);
303 err = drv->probe(dev, id);
304 up(&dev->reclaim_sem);
305 if (err)
306 goto fail_put;
307
308 err = watch_otherend(dev);
309 if (err) {
310 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
311 dev->nodename);
312 return err;
313 }
314
315 dev->spurious_threshold = 1;
316 if (sysfs_create_group(&dev->dev.kobj, &xenbus_group))
317 dev_warn(&dev->dev, "sysfs_create_group on %s failed.\n",
318 dev->nodename);
319
320 return 0;
321fail_put:
322 module_put(drv->driver.owner);
323fail:
324 xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
325 return err;
326}
327EXPORT_SYMBOL_GPL(xenbus_dev_probe);
328
329void xenbus_dev_remove(struct device *_dev)
330{
331 struct xenbus_device *dev = to_xenbus_device(_dev);
332 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
333
334 DPRINTK("%s", dev->nodename);
335
336 sysfs_remove_group(&dev->dev.kobj, &xenbus_group);
337
338 free_otherend_watch(dev);
339
340 if (drv->remove) {
341 down(&dev->reclaim_sem);
342 drv->remove(dev);
343 up(&dev->reclaim_sem);
344 }
345
346 module_put(drv->driver.owner);
347
348 free_otherend_details(dev);
349
350
351
352
353
354
355
356 if (!drv->allow_rebind ||
357 xenbus_read_driver_state(dev->nodename) == XenbusStateClosing)
358 xenbus_switch_state(dev, XenbusStateClosed);
359}
360EXPORT_SYMBOL_GPL(xenbus_dev_remove);
361
362int xenbus_register_driver_common(struct xenbus_driver *drv,
363 struct xen_bus_type *bus,
364 struct module *owner, const char *mod_name)
365{
366 drv->driver.name = drv->name ? drv->name : drv->ids[0].devicetype;
367 drv->driver.bus = &bus->bus;
368 drv->driver.owner = owner;
369 drv->driver.mod_name = mod_name;
370
371 return driver_register(&drv->driver);
372}
373EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
374
375void xenbus_unregister_driver(struct xenbus_driver *drv)
376{
377 driver_unregister(&drv->driver);
378}
379EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
380
381struct xb_find_info {
382 struct xenbus_device *dev;
383 const char *nodename;
384};
385
386static int cmp_dev(struct device *dev, void *data)
387{
388 struct xenbus_device *xendev = to_xenbus_device(dev);
389 struct xb_find_info *info = data;
390
391 if (!strcmp(xendev->nodename, info->nodename)) {
392 info->dev = xendev;
393 get_device(dev);
394 return 1;
395 }
396 return 0;
397}
398
399static struct xenbus_device *xenbus_device_find(const char *nodename,
400 struct bus_type *bus)
401{
402 struct xb_find_info info = { .dev = NULL, .nodename = nodename };
403
404 bus_for_each_dev(bus, NULL, &info, cmp_dev);
405 return info.dev;
406}
407
408static int cleanup_dev(struct device *dev, void *data)
409{
410 struct xenbus_device *xendev = to_xenbus_device(dev);
411 struct xb_find_info *info = data;
412 int len = strlen(info->nodename);
413
414 DPRINTK("%s", info->nodename);
415
416
417 if (strncmp(xendev->nodename, info->nodename, len))
418 return 0;
419
420
421 if ((strlen(xendev->nodename) > len) && (xendev->nodename[len] != '/'))
422 return 0;
423
424 info->dev = xendev;
425 get_device(dev);
426 return 1;
427}
428
429static void xenbus_cleanup_devices(const char *path, struct bus_type *bus)
430{
431 struct xb_find_info info = { .nodename = path };
432
433 do {
434 info.dev = NULL;
435 bus_for_each_dev(bus, NULL, &info, cleanup_dev);
436 if (info.dev) {
437 device_unregister(&info.dev->dev);
438 put_device(&info.dev->dev);
439 }
440 } while (info.dev);
441}
442
443static void xenbus_dev_release(struct device *dev)
444{
445 if (dev)
446 kfree(to_xenbus_device(dev));
447}
448
449static ssize_t nodename_show(struct device *dev,
450 struct device_attribute *attr, char *buf)
451{
452 return sprintf(buf, "%s\n", to_xenbus_device(dev)->nodename);
453}
454static DEVICE_ATTR_RO(nodename);
455
456static ssize_t devtype_show(struct device *dev,
457 struct device_attribute *attr, char *buf)
458{
459 return sprintf(buf, "%s\n", to_xenbus_device(dev)->devicetype);
460}
461static DEVICE_ATTR_RO(devtype);
462
463static ssize_t modalias_show(struct device *dev,
464 struct device_attribute *attr, char *buf)
465{
466 return sprintf(buf, "%s:%s\n", dev->bus->name,
467 to_xenbus_device(dev)->devicetype);
468}
469static DEVICE_ATTR_RO(modalias);
470
471static ssize_t state_show(struct device *dev,
472 struct device_attribute *attr, char *buf)
473{
474 return sprintf(buf, "%s\n",
475 xenbus_strstate(to_xenbus_device(dev)->state));
476}
477static DEVICE_ATTR_RO(state);
478
479static struct attribute *xenbus_dev_attrs[] = {
480 &dev_attr_nodename.attr,
481 &dev_attr_devtype.attr,
482 &dev_attr_modalias.attr,
483 &dev_attr_state.attr,
484 NULL,
485};
486
487static const struct attribute_group xenbus_dev_group = {
488 .attrs = xenbus_dev_attrs,
489};
490
491const struct attribute_group *xenbus_dev_groups[] = {
492 &xenbus_dev_group,
493 NULL,
494};
495EXPORT_SYMBOL_GPL(xenbus_dev_groups);
496
497int xenbus_probe_node(struct xen_bus_type *bus,
498 const char *type,
499 const char *nodename)
500{
501 char devname[XEN_BUS_ID_SIZE];
502 int err;
503 struct xenbus_device *xendev;
504 size_t stringlen;
505 char *tmpstring;
506
507 enum xenbus_state state = xenbus_read_driver_state(nodename);
508
509 if (state != XenbusStateInitialising) {
510
511
512 return 0;
513 }
514
515 stringlen = strlen(nodename) + 1 + strlen(type) + 1;
516 xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
517 if (!xendev)
518 return -ENOMEM;
519
520 xendev->state = XenbusStateInitialising;
521
522
523
524 tmpstring = (char *)(xendev + 1);
525 strcpy(tmpstring, nodename);
526 xendev->nodename = tmpstring;
527
528 tmpstring += strlen(tmpstring) + 1;
529 strcpy(tmpstring, type);
530 xendev->devicetype = tmpstring;
531 init_completion(&xendev->down);
532
533 xendev->dev.bus = &bus->bus;
534 xendev->dev.release = xenbus_dev_release;
535
536 err = bus->get_bus_id(devname, xendev->nodename);
537 if (err)
538 goto fail;
539
540 dev_set_name(&xendev->dev, "%s", devname);
541 sema_init(&xendev->reclaim_sem, 1);
542
543
544 err = device_register(&xendev->dev);
545 if (err) {
546 put_device(&xendev->dev);
547 xendev = NULL;
548 goto fail;
549 }
550
551 return 0;
552fail:
553 kfree(xendev);
554 return err;
555}
556EXPORT_SYMBOL_GPL(xenbus_probe_node);
557
558static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
559{
560 int err = 0;
561 char **dir;
562 unsigned int dir_n = 0;
563 int i;
564
565 dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
566 if (IS_ERR(dir))
567 return PTR_ERR(dir);
568
569 for (i = 0; i < dir_n; i++) {
570 err = bus->probe(bus, type, dir[i]);
571 if (err)
572 break;
573 }
574
575 kfree(dir);
576 return err;
577}
578
579int xenbus_probe_devices(struct xen_bus_type *bus)
580{
581 int err = 0;
582 char **dir;
583 unsigned int i, dir_n;
584
585 dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
586 if (IS_ERR(dir))
587 return PTR_ERR(dir);
588
589 for (i = 0; i < dir_n; i++) {
590 err = xenbus_probe_device_type(bus, dir[i]);
591 if (err)
592 break;
593 }
594
595 kfree(dir);
596 return err;
597}
598EXPORT_SYMBOL_GPL(xenbus_probe_devices);
599
600static unsigned int char_count(const char *str, char c)
601{
602 unsigned int i, ret = 0;
603
604 for (i = 0; str[i]; i++)
605 if (str[i] == c)
606 ret++;
607 return ret;
608}
609
610static int strsep_len(const char *str, char c, unsigned int len)
611{
612 unsigned int i;
613
614 for (i = 0; str[i]; i++)
615 if (str[i] == c) {
616 if (len == 0)
617 return i;
618 len--;
619 }
620 return (len == 0) ? i : -ERANGE;
621}
622
623void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
624{
625 int exists, rootlen;
626 struct xenbus_device *dev;
627 char type[XEN_BUS_ID_SIZE];
628 const char *p, *root;
629
630 if (char_count(node, '/') < 2)
631 return;
632
633 exists = xenbus_exists(XBT_NIL, node, "");
634 if (!exists) {
635 xenbus_cleanup_devices(node, &bus->bus);
636 return;
637 }
638
639
640 p = strchr(node, '/') + 1;
641 snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
642 type[XEN_BUS_ID_SIZE-1] = '\0';
643
644 rootlen = strsep_len(node, '/', bus->levels);
645 if (rootlen < 0)
646 return;
647 root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
648 if (!root)
649 return;
650
651 dev = xenbus_device_find(root, &bus->bus);
652 if (!dev)
653 xenbus_probe_node(bus, type, root);
654 else
655 put_device(&dev->dev);
656
657 kfree(root);
658}
659EXPORT_SYMBOL_GPL(xenbus_dev_changed);
660
661int xenbus_dev_suspend(struct device *dev)
662{
663 int err = 0;
664 struct xenbus_driver *drv;
665 struct xenbus_device *xdev
666 = container_of(dev, struct xenbus_device, dev);
667
668 DPRINTK("%s", xdev->nodename);
669
670 if (dev->driver == NULL)
671 return 0;
672 drv = to_xenbus_driver(dev->driver);
673 if (drv->suspend)
674 err = drv->suspend(xdev);
675 if (err)
676 dev_warn(dev, "suspend failed: %i\n", err);
677 return 0;
678}
679EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
680
681int xenbus_dev_resume(struct device *dev)
682{
683 int err;
684 struct xenbus_driver *drv;
685 struct xenbus_device *xdev
686 = container_of(dev, struct xenbus_device, dev);
687
688 DPRINTK("%s", xdev->nodename);
689
690 if (dev->driver == NULL)
691 return 0;
692 drv = to_xenbus_driver(dev->driver);
693 err = talk_to_otherend(xdev);
694 if (err) {
695 dev_warn(dev, "resume (talk_to_otherend) failed: %i\n", err);
696 return err;
697 }
698
699 xdev->state = XenbusStateInitialising;
700
701 if (drv->resume) {
702 err = drv->resume(xdev);
703 if (err) {
704 dev_warn(dev, "resume failed: %i\n", err);
705 return err;
706 }
707 }
708
709 err = watch_otherend(xdev);
710 if (err) {
711 dev_warn(dev, "resume (watch_otherend) failed: %d\n", err);
712 return err;
713 }
714
715 return 0;
716}
717EXPORT_SYMBOL_GPL(xenbus_dev_resume);
718
719int xenbus_dev_cancel(struct device *dev)
720{
721
722 DPRINTK("cancel");
723 return 0;
724}
725EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
726
727
728int xenstored_ready;
729
730
731int register_xenstore_notifier(struct notifier_block *nb)
732{
733 int ret = 0;
734
735 if (xenstored_ready > 0)
736 ret = nb->notifier_call(nb, 0, NULL);
737 else
738 blocking_notifier_chain_register(&xenstore_chain, nb);
739
740 return ret;
741}
742EXPORT_SYMBOL_GPL(register_xenstore_notifier);
743
744void unregister_xenstore_notifier(struct notifier_block *nb)
745{
746 blocking_notifier_chain_unregister(&xenstore_chain, nb);
747}
748EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
749
750static void xenbus_probe(void)
751{
752 xenstored_ready = 1;
753
754 if (!xen_store_interface) {
755 xen_store_interface = xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
756 XEN_PAGE_SIZE);
757
758
759
760
761
762 free_irq(xs_init_irq, &xb_waitq);
763 }
764
765
766
767
768
769
770 if (xen_store_domain_type == XS_HVM)
771 xs_init();
772
773
774 blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
775}
776
777
778
779
780
781
782static bool xs_hvm_defer_init_for_callback(void)
783{
784#ifdef CONFIG_XEN_PVHVM
785 return xen_store_domain_type == XS_HVM &&
786 !xen_have_vector_callback;
787#else
788 return false;
789#endif
790}
791
792static int xenbus_probe_thread(void *unused)
793{
794 DEFINE_WAIT(w);
795
796
797
798
799
800 prepare_to_wait(&xb_waitq, &w, TASK_INTERRUPTIBLE);
801 schedule();
802 finish_wait(&xb_waitq, &w);
803
804 DPRINTK("probing");
805 xenbus_probe();
806 return 0;
807}
808
809static int __init xenbus_probe_initcall(void)
810{
811
812
813
814
815
816 if (xen_store_domain_type == XS_PV ||
817 (xen_store_domain_type == XS_HVM &&
818 !xs_hvm_defer_init_for_callback() &&
819 xen_store_interface != NULL))
820 xenbus_probe();
821
822
823
824
825
826
827
828 if (xen_store_domain_type == XS_LOCAL || xen_store_interface == NULL) {
829 struct task_struct *probe_task;
830
831 probe_task = kthread_run(xenbus_probe_thread, NULL,
832 "xenbus_probe");
833 if (IS_ERR(probe_task))
834 return PTR_ERR(probe_task);
835 }
836 return 0;
837}
838device_initcall(xenbus_probe_initcall);
839
840int xen_set_callback_via(uint64_t via)
841{
842 struct xen_hvm_param a;
843 int ret;
844
845 a.domid = DOMID_SELF;
846 a.index = HVM_PARAM_CALLBACK_IRQ;
847 a.value = via;
848
849 ret = HYPERVISOR_hvm_op(HVMOP_set_param, &a);
850 if (ret)
851 return ret;
852
853
854
855
856
857 if (!xenstored_ready && xs_hvm_defer_init_for_callback())
858 xenbus_probe();
859
860 return ret;
861}
862EXPORT_SYMBOL_GPL(xen_set_callback_via);
863
864
865
866
867static int __init xenstored_local_init(void)
868{
869 int err = -ENOMEM;
870 unsigned long page = 0;
871 struct evtchn_alloc_unbound alloc_unbound;
872
873
874 page = get_zeroed_page(GFP_KERNEL);
875 if (!page)
876 goto out_err;
877
878 xen_store_gfn = virt_to_gfn((void *)page);
879
880
881 alloc_unbound.dom = DOMID_SELF;
882 alloc_unbound.remote_dom = DOMID_SELF;
883
884 err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
885 &alloc_unbound);
886 if (err == -ENOSYS)
887 goto out_err;
888
889 BUG_ON(err);
890 xen_store_evtchn = alloc_unbound.port;
891
892 return 0;
893
894 out_err:
895 if (page != 0)
896 free_page(page);
897 return err;
898}
899
900static int xenbus_resume_cb(struct notifier_block *nb,
901 unsigned long action, void *data)
902{
903 int err = 0;
904
905 if (xen_hvm_domain()) {
906 uint64_t v = 0;
907
908 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
909 if (!err && v)
910 xen_store_evtchn = v;
911 else
912 pr_warn("Cannot update xenstore event channel: %d\n",
913 err);
914 } else
915 xen_store_evtchn = xen_start_info->store_evtchn;
916
917 return err;
918}
919
920static struct notifier_block xenbus_resume_nb = {
921 .notifier_call = xenbus_resume_cb,
922};
923
924static irqreturn_t xenbus_late_init(int irq, void *unused)
925{
926 int err = 0;
927 uint64_t v = 0;
928
929 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
930 if (err || !v || !~v)
931 return IRQ_HANDLED;
932 xen_store_gfn = (unsigned long)v;
933
934 wake_up(&xb_waitq);
935 return IRQ_HANDLED;
936}
937
938static int __init xenbus_init(void)
939{
940 int err;
941 uint64_t v = 0;
942 xen_store_domain_type = XS_UNKNOWN;
943
944 if (!xen_domain())
945 return -ENODEV;
946
947 xenbus_ring_ops_init();
948
949 if (xen_pv_domain())
950 xen_store_domain_type = XS_PV;
951 if (xen_hvm_domain())
952 xen_store_domain_type = XS_HVM;
953 if (xen_hvm_domain() && xen_initial_domain())
954 xen_store_domain_type = XS_LOCAL;
955 if (xen_pv_domain() && !xen_start_info->store_evtchn)
956 xen_store_domain_type = XS_LOCAL;
957 if (xen_pv_domain() && xen_start_info->store_evtchn)
958 xenstored_ready = 1;
959
960 switch (xen_store_domain_type) {
961 case XS_LOCAL:
962 err = xenstored_local_init();
963 if (err)
964 goto out_error;
965 xen_store_interface = gfn_to_virt(xen_store_gfn);
966 break;
967 case XS_PV:
968 xen_store_evtchn = xen_start_info->store_evtchn;
969 xen_store_gfn = xen_start_info->store_mfn;
970 xen_store_interface = gfn_to_virt(xen_store_gfn);
971 break;
972 case XS_HVM:
973 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
974 if (err)
975 goto out_error;
976 xen_store_evtchn = (int)v;
977 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
978 if (err)
979 goto out_error;
980
981
982
983
984
985
986
987
988
989
990 if (!v) {
991 err = -ENOENT;
992 goto out_error;
993 }
994 if (v == ~0ULL) {
995 err = bind_evtchn_to_irqhandler(xen_store_evtchn,
996 xenbus_late_init,
997 0, "xenstore_late_init",
998 &xb_waitq);
999 if (err < 0) {
1000 pr_err("xenstore_late_init couldn't bind irq err=%d\n",
1001 err);
1002 return err;
1003 }
1004
1005 xs_init_irq = err;
1006 } else {
1007
1008#if BITS_PER_LONG == 32
1009 if (v > ULONG_MAX) {
1010 pr_err("%s: cannot handle HVM_PARAM_STORE_PFN=%llx > ULONG_MAX\n",
1011 __func__, v);
1012 err = -EINVAL;
1013 goto out_error;
1014 }
1015#endif
1016 xen_store_gfn = (unsigned long)v;
1017 xen_store_interface =
1018 xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
1019 XEN_PAGE_SIZE);
1020 }
1021 break;
1022 default:
1023 pr_warn("Xenstore state unknown\n");
1024 break;
1025 }
1026
1027
1028
1029
1030
1031
1032 if (xen_store_domain_type != XS_HVM) {
1033 err = xs_init();
1034 if (err) {
1035 pr_warn("Error initializing xenstore comms: %i\n", err);
1036 goto out_error;
1037 }
1038 }
1039
1040 if ((xen_store_domain_type != XS_LOCAL) &&
1041 (xen_store_domain_type != XS_UNKNOWN))
1042 xen_resume_notifier_register(&xenbus_resume_nb);
1043
1044#ifdef CONFIG_XEN_COMPAT_XENFS
1045
1046
1047
1048
1049 proc_create_mount_point("xen");
1050#endif
1051 return 0;
1052
1053out_error:
1054 xen_store_domain_type = XS_UNKNOWN;
1055 return err;
1056}
1057
1058postcore_initcall(xenbus_init);
1059
1060MODULE_LICENSE("GPL");
1061