Home | History | Annotate | Line # | Download | only in include
      1  1.25    bouyer /* $NetBSD: xenbus.h,v 1.25 2020/04/25 15:26:17 bouyer Exp $ */
      2   1.1    bouyer /******************************************************************************
      3   1.1    bouyer  * xenbus.h
      4   1.1    bouyer  *
      5   1.1    bouyer  * Talks to Xen Store to figure out what devices we have.
      6   1.1    bouyer  *
      7   1.1    bouyer  * Copyright (C) 2005 Rusty Russell, IBM Corporation
      8   1.1    bouyer  * Copyright (C) 2005 XenSource Ltd.
      9   1.1    bouyer  *
     10   1.1    bouyer  * This file may be distributed separately from the Linux kernel, or
     11   1.1    bouyer  * incorporated into other software packages, subject to the following license:
     12   1.1    bouyer  *
     13   1.1    bouyer  * Permission is hereby granted, free of charge, to any person obtaining a copy
     14   1.1    bouyer  * of this source file (the "Software"), to deal in the Software without
     15   1.1    bouyer  * restriction, including without limitation the rights to use, copy, modify,
     16   1.1    bouyer  * merge, publish, distribute, sublicense, and/or sell copies of the Software,
     17   1.1    bouyer  * and to permit persons to whom the Software is furnished to do so, subject to
     18   1.1    bouyer  * the following conditions:
     19   1.1    bouyer  *
     20   1.1    bouyer  * The above copyright notice and this permission notice shall be included in
     21   1.1    bouyer  * all copies or substantial portions of the Software.
     22   1.1    bouyer  *
     23   1.1    bouyer  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     24   1.1    bouyer  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     25   1.1    bouyer  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
     26   1.1    bouyer  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     27   1.1    bouyer  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
     28   1.1    bouyer  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
     29   1.1    bouyer  * IN THE SOFTWARE.
     30   1.1    bouyer  */
     31   1.1    bouyer 
     32   1.1    bouyer #ifndef _ASM_XEN_XENBUS_H
     33   1.1    bouyer #define _ASM_XEN_XENBUS_H
     34   1.1    bouyer 
     35   1.1    bouyer #include <sys/device.h>
     36  1.23  jdolecek #include <sys/bus.h>
     37   1.1    bouyer #include <sys/queue.h>
     38  1.14    cherry #include <xen/include/public/xen.h>
     39  1.14    cherry #include <xen/include/public/io/xenbus.h>
     40  1.14    cherry #include <xen/include/public/io/xs_wire.h>
     41  1.14    cherry #include <xen/include/public/grant_table.h>	/* for grant_ref_t */
     42   1.1    bouyer 
     43   1.1    bouyer /* xenbus to hypervisor attach */
     44   1.1    bouyer struct xenbus_attach_args {
     45   1.1    bouyer 	const char 		*xa_device;
     46   1.1    bouyer 	int			xa_handle;
     47  1.23  jdolecek 	bus_dma_tag_t		xa_dmat;
     48   1.1    bouyer };
     49   1.1    bouyer 
     50   1.1    bouyer /* devices to xenbus attach */
     51   1.1    bouyer struct xenbusdev_attach_args {
     52   1.1    bouyer 	const char		*xa_type;
     53   1.1    bouyer 	int 			xa_id;
     54   1.1    bouyer 	struct xenbus_device	*xa_xbusd;
     55   1.1    bouyer };
     56   1.1    bouyer 
     57   1.1    bouyer /* Register callback to watch this node. */
     58   1.3    bouyer struct xenbus_watch {
     59   1.1    bouyer 	SLIST_ENTRY(xenbus_watch) watch_next;
     60   1.1    bouyer 
     61   1.1    bouyer 	/* Path being watched. */
     62  1.17  jdolecek 	char *node;
     63  1.19  jdolecek 	size_t node_sz;
     64   1.1    bouyer 
     65   1.1    bouyer 	/* Callback (executed in a process context with no locks held). */
     66   1.2    bouyer 	void (*xbw_callback)(struct xenbus_watch *,
     67   1.1    bouyer 			 const char **vec, unsigned int len);
     68   1.2    bouyer 	struct xenbus_device *xbw_dev;
     69   1.1    bouyer };
     70   1.1    bouyer 
     71   1.1    bouyer 
     72   1.4    bouyer /*
     73   1.4    bouyer  * A xenbus device. Note that the malloced memory will be larger than
     74   1.4    bouyer  * sizeof(xenbus_device) to have the storage for xbusd_path, so xbusd_path
     75   1.4    bouyer  * has to be the last entry.
     76   1.4    bouyer  */
     77   1.5    bouyer typedef enum {
     78   1.5    bouyer 	XENBUS_FRONTEND_DEVICE,
     79   1.5    bouyer 	XENBUS_BACKEND_DEVICE
     80   1.5    bouyer } xenbusdev_type_t;
     81   1.5    bouyer 
     82   1.1    bouyer struct xenbus_device {
     83   1.4    bouyer 	SLIST_ENTRY(xenbus_device) xbusd_entries;
     84  1.16  jdolecek 	char xbusd_otherend[64]; /* the otherend path (size arbitrary) */
     85   1.2    bouyer 	int xbusd_otherend_id; /* the otherend's id */
     86   1.2    bouyer 	/* callback for otherend change */
     87   1.5    bouyer 	void (*xbusd_otherend_changed)(void *, XenbusState);
     88   1.5    bouyer 	xenbusdev_type_t xbusd_type;
     89   1.5    bouyer 	union {
     90   1.5    bouyer 		struct {
     91   1.9    cegger 			device_t f_dev;
     92   1.5    bouyer 		} f;
     93   1.5    bouyer 		struct {
     94   1.5    bouyer 			void *b_cookie; /* private to backend driver */
     95   1.5    bouyer 			int (*b_detach)(void *);
     96   1.5    bouyer 		} b;
     97   1.5    bouyer 	} xbusd_u;
     98   1.2    bouyer 	int xbusd_has_error;
     99   1.2    bouyer 	/* for xenbus internal use */
    100   1.1    bouyer 	struct xenbus_watch xbusd_otherend_watch;
    101  1.20  jdolecek 	size_t xbusd_sz;		/* size of allocated structure */
    102  1.24  jdolecek 	bus_dma_tag_t xbusd_dmat;
    103   1.4    bouyer 	const char xbusd_path[1]; /* our path */
    104   1.1    bouyer };
    105   1.1    bouyer 
    106   1.5    bouyer /*
    107   1.5    bouyer  * frontend devices use the normal autoconf(9) framework to attach.
    108   1.5    bouyer  * backend drivers need something more clever because we want the
    109   1.5    bouyer  * domain's name or uid in the device's name. Each backend driver registers
    110   1.5    bouyer  * to xenbus.
    111   1.5    bouyer  */
    112   1.5    bouyer 
    113   1.5    bouyer struct xenbus_backend_driver {
    114   1.5    bouyer 	SLIST_ENTRY(xenbus_backend_driver) xbakd_entries;
    115   1.5    bouyer 	int (*xbakd_create) (struct xenbus_device *); /* called for new devs */
    116   1.5    bouyer 	const char *xbakd_type; /* device type we register for */
    117   1.1    bouyer };
    118   1.1    bouyer 
    119   1.5    bouyer void xenbus_backend_register(struct xenbus_backend_driver *);
    120   1.5    bouyer 
    121   1.1    bouyer struct xenbus_transaction;
    122   1.1    bouyer 
    123   1.1    bouyer int xenbus_directory(struct xenbus_transaction *t,
    124   1.1    bouyer 			const char *dir, const char *node, unsigned int *num,
    125   1.1    bouyer 			char ***);
    126  1.21  jdolecek void xenbus_directory_free(unsigned int, char **);
    127  1.16  jdolecek int xenbus_read(struct xenbus_transaction *,
    128  1.16  jdolecek 		  const char *, const char *, char *, size_t);
    129   1.3    bouyer int xenbus_read_ul(struct xenbus_transaction *,
    130   1.6    bouyer 		  const char *, const char *, unsigned long *, int);
    131   1.8    ichiro int xenbus_read_ull(struct xenbus_transaction *,
    132   1.8    ichiro 		  const char *, const char *, unsigned long long *, int);
    133   1.1    bouyer int xenbus_write(struct xenbus_transaction *t,
    134   1.1    bouyer 		 const char *dir, const char *node, const char *string);
    135   1.1    bouyer int xenbus_mkdir(struct xenbus_transaction *t,
    136   1.1    bouyer 		 const char *dir, const char *node);
    137   1.1    bouyer int xenbus_exists(struct xenbus_transaction *t,
    138   1.1    bouyer 		  const char *dir, const char *node);
    139   1.1    bouyer int xenbus_rm(struct xenbus_transaction *t, const char *dir, const char *node);
    140   1.1    bouyer struct xenbus_transaction *xenbus_transaction_start(void);
    141   1.1    bouyer int xenbus_transaction_end(struct xenbus_transaction *t, int abort);
    142   1.1    bouyer 
    143   1.1    bouyer /* Single printf and write: returns -errno or 0. */
    144   1.1    bouyer int xenbus_printf(struct xenbus_transaction *t,
    145   1.1    bouyer 		  const char *dir, const char *node, const char *fmt, ...)
    146   1.1    bouyer 	__attribute__((format(printf, 4, 5)));
    147   1.1    bouyer 
    148   1.1    bouyer /* notifer routines for when the xenstore comes up */
    149   1.1    bouyer // XXX int register_xenstore_notifier(struct notifier_block *nb);
    150   1.1    bouyer // XXX void unregister_xenstore_notifier(struct notifier_block *nb);
    151   1.1    bouyer 
    152   1.1    bouyer int register_xenbus_watch(struct xenbus_watch *watch);
    153   1.1    bouyer void unregister_xenbus_watch(struct xenbus_watch *watch);
    154   1.1    bouyer void xs_suspend(void);
    155   1.1    bouyer void xs_resume(void);
    156   1.1    bouyer 
    157   1.1    bouyer /* Used by xenbus_dev to borrow kernel's store connection. */
    158   1.1    bouyer int xenbus_dev_request_and_reply(struct xsd_sockmsg *msg, void **);
    159  1.22  jdolecek void xenbus_dev_reply_free(struct xsd_sockmsg *msg, void *);
    160   1.1    bouyer 
    161   1.1    bouyer void xenbus_probe(void *);
    162   1.1    bouyer 
    163   1.4    bouyer int xenbus_free_device(struct xenbus_device *);
    164   1.4    bouyer 
    165   1.1    bouyer #define XENBUS_IS_ERR_READ(str) ({			\
    166   1.1    bouyer 	if (!IS_ERR(str) && strlen(str) == 0) {		\
    167   1.1    bouyer 		kfree(str);				\
    168   1.1    bouyer 		str = ERR_PTR(-ERANGE);			\
    169   1.1    bouyer 	}						\
    170   1.1    bouyer 	IS_ERR(str);					\
    171   1.1    bouyer })
    172   1.1    bouyer 
    173   1.1    bouyer #define XENBUS_EXIST_ERR(err) ((err) == -ENOENT || (err) == -ERANGE)
    174   1.1    bouyer 
    175   1.1    bouyer 
    176   1.1    bouyer /**
    177   1.1    bouyer  * Register a watch on the given path/path2, using the given xenbus_watch
    178   1.1    bouyer  * structure for storage, and the given callback function as the callback.
    179   1.1    bouyer  * Return 0 on success, or -errno on error.  On success, the watched path
    180   1.1    bouyer  * (path/path2) will be saved as watch->node, and becomes the caller's to
    181   1.1    bouyer  * kfree().  On error, watch->node will be NULL, so the caller has nothing to
    182   1.1    bouyer  * free, the device will switch to XenbusStateClosing, and the error will be
    183   1.1    bouyer  * saved in the store.
    184   1.1    bouyer  */
    185   1.1    bouyer int xenbus_watch_path2(struct xenbus_device *dev, const char *path,
    186   1.1    bouyer 		       const char *path2, struct xenbus_watch *watch,
    187   1.1    bouyer 		       void (*callback)(struct xenbus_watch *,
    188   1.1    bouyer 					const char **, unsigned int));
    189   1.1    bouyer 
    190  1.19  jdolecek /* Unregister the watch, and free associated internal structures. */
    191  1.19  jdolecek void xenbus_unwatch_path(struct xenbus_watch *);
    192   1.1    bouyer 
    193   1.1    bouyer /**
    194   1.1    bouyer  * Advertise in the store a change of the given driver to the given new_state.
    195   1.1    bouyer  * Perform the change inside the given transaction xbt.  xbt may be NULL, in
    196   1.1    bouyer  * which case this is performed inside its own transaction.  Return 0 on
    197   1.1    bouyer  * success, or -errno on error.  On error, the device will switch to
    198   1.1    bouyer  * XenbusStateClosing, and the error will be saved in the store.
    199   1.1    bouyer  */
    200   1.1    bouyer int xenbus_switch_state(struct xenbus_device *dev,
    201   1.1    bouyer 			struct xenbus_transaction *xbt,
    202   1.1    bouyer 			XenbusState new_state);
    203   1.1    bouyer 
    204   1.1    bouyer 
    205   1.1    bouyer /**
    206   1.1    bouyer  * Grant access to the given ring_mfn to the peer of the given device.  Return
    207   1.1    bouyer  * 0 on success, or -errno on error.  On error, the device will switch to
    208   1.1    bouyer  * XenbusStateClosing, and the error will be saved in the store.
    209   1.1    bouyer  */
    210   1.1    bouyer int xenbus_grant_ring(struct xenbus_device *, paddr_t, grant_ref_t *);
    211   1.1    bouyer 
    212   1.1    bouyer 
    213   1.1    bouyer /**
    214   1.1    bouyer  * Allocate an event channel for the given xenbus_device, assigning the newly
    215   1.1    bouyer  * created local port to *port.  Return 0 on success, or -errno on error.  On
    216   1.1    bouyer  * error, the device will switch to XenbusStateClosing, and the error will be
    217   1.1    bouyer  * saved in the store.
    218   1.1    bouyer  */
    219   1.1    bouyer int xenbus_alloc_evtchn(struct xenbus_device *dev, int *port);
    220   1.1    bouyer 
    221   1.1    bouyer 
    222   1.1    bouyer /**
    223   1.1    bouyer  * Return the state of the driver rooted at the given store path, or
    224   1.1    bouyer  * XenbusStateClosed if no state can be read.
    225   1.1    bouyer  */
    226   1.1    bouyer XenbusState xenbus_read_driver_state(const char *path);
    227   1.1    bouyer 
    228   1.1    bouyer 
    229   1.1    bouyer /***
    230   1.1    bouyer  * Report the given negative errno into the store, along with the given
    231   1.1    bouyer  * formatted message.
    232   1.1    bouyer  */
    233   1.1    bouyer void xenbus_dev_error(struct xenbus_device *dev, int err, const char *fmt,
    234   1.1    bouyer 		      ...);
    235   1.1    bouyer 
    236   1.1    bouyer 
    237   1.1    bouyer /***
    238   1.1    bouyer  * Equivalent to xenbus_dev_error(dev, err, fmt, args), followed by
    239   1.1    bouyer  * xenbus_switch_state(dev, NULL, XenbusStateClosing) to schedule an orderly
    240   1.1    bouyer  * closedown of this driver and its peer.
    241   1.1    bouyer  */
    242   1.1    bouyer void xenbus_dev_fatal(struct xenbus_device *dev, int err, const char *fmt,
    243   1.1    bouyer 		      ...);
    244   1.1    bouyer 
    245  1.12       jym bool xenbus_device_suspend(struct xenbus_device *);
    246  1.12       jym bool xenbus_device_resume(struct xenbus_device *);
    247   1.1    bouyer 
    248   1.1    bouyer #endif /* _ASM_XEN_XENBUS_H */
    249   1.1    bouyer 
    250   1.1    bouyer /*
    251   1.1    bouyer  * Local variables:
    252   1.1    bouyer  *  c-file-style: "linux"
    253   1.1    bouyer  *  indent-tabs-mode: t
    254   1.1    bouyer  *  c-indent-level: 8
    255   1.1    bouyer  *  c-basic-offset: 8
    256   1.1    bouyer  *  tab-width: 8
    257   1.1    bouyer  * End:
    258   1.1    bouyer  */
    259