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
68int xen_store_evtchn;
69EXPORT_SYMBOL_GPL(xen_store_evtchn);
70
71struct xenstore_domain_interface *xen_store_interface;
72EXPORT_SYMBOL_GPL(xen_store_interface);
73
74enum xenstore_init xen_store_domain_type;
75EXPORT_SYMBOL_GPL(xen_store_domain_type);
76
77static unsigned long xen_store_gfn;
78
79static BLOCKING_NOTIFIER_HEAD(xenstore_chain);
80
81
82static const struct xenbus_device_id *
83match_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
92int 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}
101EXPORT_SYMBOL_GPL(xenbus_match);
102
103
104static void free_otherend_details(struct xenbus_device *dev)
105{
106 kfree(dev->otherend);
107 dev->otherend = NULL;
108}
109
110
111static 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
121static 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
133static 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
144int 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}
169EXPORT_SYMBOL_GPL(xenbus_read_otherend_details);
170
171void 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
181
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
195
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}
206EXPORT_SYMBOL_GPL(xenbus_otherend_changed);
207
208int 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 down(&dev->reclaim_sem);
243 err = drv->probe(dev, id);
244 up(&dev->reclaim_sem);
245 if (err)
246 goto fail_put;
247
248 err = watch_otherend(dev);
249 if (err) {
250 dev_warn(&dev->dev, "watch_otherend on %s failed.\n",
251 dev->nodename);
252 return err;
253 }
254
255 return 0;
256fail_put:
257 module_put(drv->driver.owner);
258fail:
259 xenbus_dev_error(dev, err, "xenbus_dev_probe on %s", dev->nodename);
260 return err;
261}
262EXPORT_SYMBOL_GPL(xenbus_dev_probe);
263
264int xenbus_dev_remove(struct device *_dev)
265{
266 struct xenbus_device *dev = to_xenbus_device(_dev);
267 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver);
268
269 DPRINTK("%s", dev->nodename);
270
271 free_otherend_watch(dev);
272
273 if (drv->remove) {
274 down(&dev->reclaim_sem);
275 drv->remove(dev);
276 up(&dev->reclaim_sem);
277 }
278
279 module_put(drv->driver.owner);
280
281 free_otherend_details(dev);
282
283
284
285
286
287
288
289 if (!drv->allow_rebind ||
290 xenbus_read_driver_state(dev->nodename) == XenbusStateClosing)
291 xenbus_switch_state(dev, XenbusStateClosed);
292
293 return 0;
294}
295EXPORT_SYMBOL_GPL(xenbus_dev_remove);
296
297int 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}
308EXPORT_SYMBOL_GPL(xenbus_register_driver_common);
309
310void xenbus_unregister_driver(struct xenbus_driver *drv)
311{
312 driver_unregister(&drv->driver);
313}
314EXPORT_SYMBOL_GPL(xenbus_unregister_driver);
315
316struct xb_find_info {
317 struct xenbus_device *dev;
318 const char *nodename;
319};
320
321static 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
334static 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
343static 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
352 if (strncmp(xendev->nodename, info->nodename, len))
353 return 0;
354
355
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
364static 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
378static void xenbus_dev_release(struct device *dev)
379{
380 if (dev)
381 kfree(to_xenbus_device(dev));
382}
383
384static 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}
389static DEVICE_ATTR_RO(nodename);
390
391static 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}
396static DEVICE_ATTR_RO(devtype);
397
398static 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}
404static DEVICE_ATTR_RO(modalias);
405
406static ssize_t state_show(struct device *dev,
407 struct device_attribute *attr, char *buf)
408{
409 return sprintf(buf, "%s\n",
410 xenbus_strstate(to_xenbus_device(dev)->state));
411}
412static DEVICE_ATTR_RO(state);
413
414static struct attribute *xenbus_dev_attrs[] = {
415 &dev_attr_nodename.attr,
416 &dev_attr_devtype.attr,
417 &dev_attr_modalias.attr,
418 &dev_attr_state.attr,
419 NULL,
420};
421
422static const struct attribute_group xenbus_dev_group = {
423 .attrs = xenbus_dev_attrs,
424};
425
426const struct attribute_group *xenbus_dev_groups[] = {
427 &xenbus_dev_group,
428 NULL,
429};
430EXPORT_SYMBOL_GPL(xenbus_dev_groups);
431
432int xenbus_probe_node(struct xen_bus_type *bus,
433 const char *type,
434 const char *nodename)
435{
436 char devname[XEN_BUS_ID_SIZE];
437 int err;
438 struct xenbus_device *xendev;
439 size_t stringlen;
440 char *tmpstring;
441
442 enum xenbus_state state = xenbus_read_driver_state(nodename);
443
444 if (state != XenbusStateInitialising) {
445
446
447 return 0;
448 }
449
450 stringlen = strlen(nodename) + 1 + strlen(type) + 1;
451 xendev = kzalloc(sizeof(*xendev) + stringlen, GFP_KERNEL);
452 if (!xendev)
453 return -ENOMEM;
454
455 xendev->state = XenbusStateInitialising;
456
457
458
459 tmpstring = (char *)(xendev + 1);
460 strcpy(tmpstring, nodename);
461 xendev->nodename = tmpstring;
462
463 tmpstring += strlen(tmpstring) + 1;
464 strcpy(tmpstring, type);
465 xendev->devicetype = tmpstring;
466 init_completion(&xendev->down);
467
468 xendev->dev.bus = &bus->bus;
469 xendev->dev.release = xenbus_dev_release;
470
471 err = bus->get_bus_id(devname, xendev->nodename);
472 if (err)
473 goto fail;
474
475 dev_set_name(&xendev->dev, "%s", devname);
476 sema_init(&xendev->reclaim_sem, 1);
477
478
479 err = device_register(&xendev->dev);
480 if (err) {
481 put_device(&xendev->dev);
482 xendev = NULL;
483 goto fail;
484 }
485
486 return 0;
487fail:
488 kfree(xendev);
489 return err;
490}
491EXPORT_SYMBOL_GPL(xenbus_probe_node);
492
493static int xenbus_probe_device_type(struct xen_bus_type *bus, const char *type)
494{
495 int err = 0;
496 char **dir;
497 unsigned int dir_n = 0;
498 int i;
499
500 dir = xenbus_directory(XBT_NIL, bus->root, type, &dir_n);
501 if (IS_ERR(dir))
502 return PTR_ERR(dir);
503
504 for (i = 0; i < dir_n; i++) {
505 err = bus->probe(bus, type, dir[i]);
506 if (err)
507 break;
508 }
509
510 kfree(dir);
511 return err;
512}
513
514int xenbus_probe_devices(struct xen_bus_type *bus)
515{
516 int err = 0;
517 char **dir;
518 unsigned int i, dir_n;
519
520 dir = xenbus_directory(XBT_NIL, bus->root, "", &dir_n);
521 if (IS_ERR(dir))
522 return PTR_ERR(dir);
523
524 for (i = 0; i < dir_n; i++) {
525 err = xenbus_probe_device_type(bus, dir[i]);
526 if (err)
527 break;
528 }
529
530 kfree(dir);
531 return err;
532}
533EXPORT_SYMBOL_GPL(xenbus_probe_devices);
534
535static unsigned int char_count(const char *str, char c)
536{
537 unsigned int i, ret = 0;
538
539 for (i = 0; str[i]; i++)
540 if (str[i] == c)
541 ret++;
542 return ret;
543}
544
545static int strsep_len(const char *str, char c, unsigned int len)
546{
547 unsigned int i;
548
549 for (i = 0; str[i]; i++)
550 if (str[i] == c) {
551 if (len == 0)
552 return i;
553 len--;
554 }
555 return (len == 0) ? i : -ERANGE;
556}
557
558void xenbus_dev_changed(const char *node, struct xen_bus_type *bus)
559{
560 int exists, rootlen;
561 struct xenbus_device *dev;
562 char type[XEN_BUS_ID_SIZE];
563 const char *p, *root;
564
565 if (char_count(node, '/') < 2)
566 return;
567
568 exists = xenbus_exists(XBT_NIL, node, "");
569 if (!exists) {
570 xenbus_cleanup_devices(node, &bus->bus);
571 return;
572 }
573
574
575 p = strchr(node, '/') + 1;
576 snprintf(type, XEN_BUS_ID_SIZE, "%.*s", (int)strcspn(p, "/"), p);
577 type[XEN_BUS_ID_SIZE-1] = '\0';
578
579 rootlen = strsep_len(node, '/', bus->levels);
580 if (rootlen < 0)
581 return;
582 root = kasprintf(GFP_KERNEL, "%.*s", rootlen, node);
583 if (!root)
584 return;
585
586 dev = xenbus_device_find(root, &bus->bus);
587 if (!dev)
588 xenbus_probe_node(bus, type, root);
589 else
590 put_device(&dev->dev);
591
592 kfree(root);
593}
594EXPORT_SYMBOL_GPL(xenbus_dev_changed);
595
596int xenbus_dev_suspend(struct device *dev)
597{
598 int err = 0;
599 struct xenbus_driver *drv;
600 struct xenbus_device *xdev
601 = container_of(dev, struct xenbus_device, dev);
602
603 DPRINTK("%s", xdev->nodename);
604
605 if (dev->driver == NULL)
606 return 0;
607 drv = to_xenbus_driver(dev->driver);
608 if (drv->suspend)
609 err = drv->suspend(xdev);
610 if (err)
611 dev_warn(dev, "suspend failed: %i\n", err);
612 return 0;
613}
614EXPORT_SYMBOL_GPL(xenbus_dev_suspend);
615
616int xenbus_dev_resume(struct device *dev)
617{
618 int err;
619 struct xenbus_driver *drv;
620 struct xenbus_device *xdev
621 = container_of(dev, struct xenbus_device, dev);
622
623 DPRINTK("%s", xdev->nodename);
624
625 if (dev->driver == NULL)
626 return 0;
627 drv = to_xenbus_driver(dev->driver);
628 err = talk_to_otherend(xdev);
629 if (err) {
630 dev_warn(dev, "resume (talk_to_otherend) failed: %i\n", err);
631 return err;
632 }
633
634 xdev->state = XenbusStateInitialising;
635
636 if (drv->resume) {
637 err = drv->resume(xdev);
638 if (err) {
639 dev_warn(dev, "resume failed: %i\n", err);
640 return err;
641 }
642 }
643
644 err = watch_otherend(xdev);
645 if (err) {
646 dev_warn(dev, "resume (watch_otherend) failed: %d\n", err);
647 return err;
648 }
649
650 return 0;
651}
652EXPORT_SYMBOL_GPL(xenbus_dev_resume);
653
654int xenbus_dev_cancel(struct device *dev)
655{
656
657 DPRINTK("cancel");
658 return 0;
659}
660EXPORT_SYMBOL_GPL(xenbus_dev_cancel);
661
662
663int xenstored_ready;
664
665
666int register_xenstore_notifier(struct notifier_block *nb)
667{
668 int ret = 0;
669
670 if (xenstored_ready > 0)
671 ret = nb->notifier_call(nb, 0, NULL);
672 else
673 blocking_notifier_chain_register(&xenstore_chain, nb);
674
675 return ret;
676}
677EXPORT_SYMBOL_GPL(register_xenstore_notifier);
678
679void unregister_xenstore_notifier(struct notifier_block *nb)
680{
681 blocking_notifier_chain_unregister(&xenstore_chain, nb);
682}
683EXPORT_SYMBOL_GPL(unregister_xenstore_notifier);
684
685void xenbus_probe(struct work_struct *unused)
686{
687 xenstored_ready = 1;
688
689
690 blocking_notifier_call_chain(&xenstore_chain, 0, NULL);
691}
692EXPORT_SYMBOL_GPL(xenbus_probe);
693
694static int __init xenbus_probe_initcall(void)
695{
696 if (!xen_domain())
697 return -ENODEV;
698
699 if (xen_initial_domain() || xen_hvm_domain())
700 return 0;
701
702 xenbus_probe(NULL);
703 return 0;
704}
705
706device_initcall(xenbus_probe_initcall);
707
708
709
710
711static int __init xenstored_local_init(void)
712{
713 int err = -ENOMEM;
714 unsigned long page = 0;
715 struct evtchn_alloc_unbound alloc_unbound;
716
717
718 page = get_zeroed_page(GFP_KERNEL);
719 if (!page)
720 goto out_err;
721
722 xen_store_gfn = virt_to_gfn((void *)page);
723
724
725 alloc_unbound.dom = DOMID_SELF;
726 alloc_unbound.remote_dom = DOMID_SELF;
727
728 err = HYPERVISOR_event_channel_op(EVTCHNOP_alloc_unbound,
729 &alloc_unbound);
730 if (err == -ENOSYS)
731 goto out_err;
732
733 BUG_ON(err);
734 xen_store_evtchn = alloc_unbound.port;
735
736 return 0;
737
738 out_err:
739 if (page != 0)
740 free_page(page);
741 return err;
742}
743
744static int xenbus_resume_cb(struct notifier_block *nb,
745 unsigned long action, void *data)
746{
747 int err = 0;
748
749 if (xen_hvm_domain()) {
750 uint64_t v = 0;
751
752 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
753 if (!err && v)
754 xen_store_evtchn = v;
755 else
756 pr_warn("Cannot update xenstore event channel: %d\n",
757 err);
758 } else
759 xen_store_evtchn = xen_start_info->store_evtchn;
760
761 return err;
762}
763
764static struct notifier_block xenbus_resume_nb = {
765 .notifier_call = xenbus_resume_cb,
766};
767
768static int __init xenbus_init(void)
769{
770 int err = 0;
771 uint64_t v = 0;
772 xen_store_domain_type = XS_UNKNOWN;
773
774 if (!xen_domain())
775 return -ENODEV;
776
777 xenbus_ring_ops_init();
778
779 if (xen_pv_domain())
780 xen_store_domain_type = XS_PV;
781 if (xen_hvm_domain())
782 xen_store_domain_type = XS_HVM;
783 if (xen_hvm_domain() && xen_initial_domain())
784 xen_store_domain_type = XS_LOCAL;
785 if (xen_pv_domain() && !xen_start_info->store_evtchn)
786 xen_store_domain_type = XS_LOCAL;
787 if (xen_pv_domain() && xen_start_info->store_evtchn)
788 xenstored_ready = 1;
789
790 switch (xen_store_domain_type) {
791 case XS_LOCAL:
792 err = xenstored_local_init();
793 if (err)
794 goto out_error;
795 xen_store_interface = gfn_to_virt(xen_store_gfn);
796 break;
797 case XS_PV:
798 xen_store_evtchn = xen_start_info->store_evtchn;
799 xen_store_gfn = xen_start_info->store_mfn;
800 xen_store_interface = gfn_to_virt(xen_store_gfn);
801 break;
802 case XS_HVM:
803 err = hvm_get_parameter(HVM_PARAM_STORE_EVTCHN, &v);
804 if (err)
805 goto out_error;
806 xen_store_evtchn = (int)v;
807 err = hvm_get_parameter(HVM_PARAM_STORE_PFN, &v);
808 if (err)
809 goto out_error;
810 xen_store_gfn = (unsigned long)v;
811 xen_store_interface =
812 xen_remap(xen_store_gfn << XEN_PAGE_SHIFT,
813 XEN_PAGE_SIZE);
814 break;
815 default:
816 pr_warn("Xenstore state unknown\n");
817 break;
818 }
819
820
821 err = xs_init();
822 if (err) {
823 pr_warn("Error initializing xenstore comms: %i\n", err);
824 goto out_error;
825 }
826
827 if ((xen_store_domain_type != XS_LOCAL) &&
828 (xen_store_domain_type != XS_UNKNOWN))
829 xen_resume_notifier_register(&xenbus_resume_nb);
830
831#ifdef CONFIG_XEN_COMPAT_XENFS
832
833
834
835
836 proc_create_mount_point("xen");
837#endif
838
839out_error:
840 return err;
841}
842
843postcore_initcall(xenbus_init);
844
845MODULE_LICENSE("GPL");
846