2009-04-22 23:19:15 +08:00
|
|
|
#ifndef QEMU_HW_XEN_COMMON_H
|
|
|
|
#define QEMU_HW_XEN_COMMON_H 1
|
|
|
|
|
2011-02-26 00:20:34 +08:00
|
|
|
#include "config-host.h"
|
|
|
|
|
2009-04-22 23:19:15 +08:00
|
|
|
#include <stddef.h>
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
2016-01-15 21:23:42 +08:00
|
|
|
/*
|
|
|
|
* If we have new enough libxenctrl then we do not want/need these compat
|
|
|
|
* interfaces, despite what the user supplied cflags might say. They
|
|
|
|
* must be undefined before including xenctrl.h
|
|
|
|
*/
|
|
|
|
#undef XC_WANT_COMPAT_EVTCHN_API
|
|
|
|
#undef XC_WANT_COMPAT_GNTTAB_API
|
|
|
|
#undef XC_WANT_COMPAT_MAP_FOREIGN_API
|
|
|
|
|
2009-04-22 23:19:15 +08:00
|
|
|
#include <xenctrl.h>
|
2012-06-21 19:44:35 +08:00
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 420
|
|
|
|
# include <xs.h>
|
|
|
|
#else
|
|
|
|
# include <xenstore.h>
|
|
|
|
#endif
|
2009-04-22 23:19:15 +08:00
|
|
|
#include <xen/io/xenbus.h>
|
|
|
|
|
2013-02-04 22:40:22 +08:00
|
|
|
#include "hw/hw.h"
|
2013-02-06 00:06:20 +08:00
|
|
|
#include "hw/xen/xen.h"
|
2015-01-20 19:06:19 +08:00
|
|
|
#include "hw/pci/pci.h"
|
2012-12-18 01:20:00 +08:00
|
|
|
#include "qemu/queue.h"
|
2015-01-20 19:06:19 +08:00
|
|
|
#include "trace.h"
|
2009-04-22 23:19:15 +08:00
|
|
|
|
|
|
|
/*
|
2011-02-26 00:20:34 +08:00
|
|
|
* We don't support Xen prior to 3.3.0.
|
2009-04-22 23:19:15 +08:00
|
|
|
*/
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
/* Xen before 4.0 */
|
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 400
|
|
|
|
static inline void *xc_map_foreign_bulk(int xc_handle, uint32_t dom, int prot,
|
|
|
|
xen_pfn_t *arr, int *err,
|
|
|
|
unsigned int num)
|
|
|
|
{
|
|
|
|
return xc_map_foreign_batch(xc_handle, dom, prot, arr, num);
|
|
|
|
}
|
2009-04-22 23:19:15 +08:00
|
|
|
#endif
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* Xen before 4.1 */
|
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 410
|
|
|
|
|
|
|
|
typedef int XenXC;
|
2016-01-15 21:23:38 +08:00
|
|
|
typedef int xenevtchn_handle;
|
2016-01-15 21:23:39 +08:00
|
|
|
typedef int xengnttab_handle;
|
xen: Switch uses of xc_map_foreign_{pages,bulk} to use libxenforeignmemory API.
In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.
One such library will be libxenforeignmemory which provides access to
privileged foreign mappings and which will provide an interface
equivalent to xc_map_foreign_{pages,bulk}.
The new xenforeignmemory_map() function behaves like
xc_map_foreign_pages() when the err argument is NULL and like
xc_map_foreign_bulk() when err is non-NULL, which maps into the shim
here onto checking err == NULL and calling the appropriate old
function.
Note that xenforeignmemory_map() takes the number of pages before the
arrays themselves, in order to support potentially future use of
variable-length-arrays in the prototype (in the future, when Xen's
baseline toolchain requirements are new enough to ensure VLAs are
supported).
In preparation for adding support for libxenforeignmemory add support
to the <=4.0 and <=4.6 compat code in xen_common.h to allow us to
switch to using the new API. These shims will disappear for versions
of Xen which include libxenforeignmemory.
Since libxenforeignmemory will have its own handle type but for <= 4.6
the functionality is provided by using a libxenctrl handle we
introduce a new global xen_fmem alongside the existing xen_xc. In fact
we make xen_fmem a pointer to the existing xen_xc, which then works
correctly with both <=4.0 (xc handle is an int) and <=4.6 (xc handle
is a pointer). In the latter case xen_fmem is actually a double
indirect pointer, but it all falls out in the wash.
Unlike libxenctrl libxenforeignmemory has an explicit unmap function,
rather than just specifying that munmap should be used, so the unmap
paths are updated to use xenforeignmemory_unmap, which is a shim for
munmap on these versions of xen. The mappings in xen-hvm.c do not
appear to be unmapped (which makes sense for a qemu-dm process)
In fb_disconnect this results in a change from simply mmap over the
existing mapping (with an implicit munmap) to expliclty unmapping with
xenforeignmemory_unmap and then mapping the required anonymous memory
in the same hole. I don't think this is a problem since any other
thread which was racily touching this region would already be running
the risk of hitting the mapping halfway through the call. If this is
thought to be a problem then we could consider adding an extra API to
the libxenforeignmemory interface to replace a foreign mapping with
anonymous shared memory, but I'd prefer not to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
2016-01-15 21:23:41 +08:00
|
|
|
typedef int xenforeignmemory_handle;
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
# define XC_INTERFACE_FMT "%i"
|
|
|
|
# define XC_HANDLER_INITIAL_VALUE -1
|
|
|
|
|
2016-01-15 21:23:38 +08:00
|
|
|
static inline xenevtchn_handle *xenevtchn_open(void *logger,
|
|
|
|
unsigned int open_flags)
|
|
|
|
{
|
|
|
|
xenevtchn_handle *h = malloc(sizeof(*h));
|
|
|
|
if (!h) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*h = xc_evtchn_open();
|
|
|
|
if (*h == -1) {
|
|
|
|
free(h);
|
|
|
|
h = NULL;
|
|
|
|
}
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
static inline int xenevtchn_close(xenevtchn_handle *h)
|
2011-02-26 00:20:34 +08:00
|
|
|
{
|
2016-01-15 21:23:38 +08:00
|
|
|
int rc = xc_evtchn_close(*h);
|
|
|
|
free(h);
|
|
|
|
return rc;
|
2011-02-26 00:20:34 +08:00
|
|
|
}
|
2016-01-15 21:23:38 +08:00
|
|
|
#define xenevtchn_fd(h) xc_evtchn_fd(*h)
|
|
|
|
#define xenevtchn_pending(h) xc_evtchn_pending(*h)
|
|
|
|
#define xenevtchn_notify(h, p) xc_evtchn_notify(*h, p)
|
|
|
|
#define xenevtchn_bind_interdomain(h, d, p) xc_evtchn_bind_interdomain(*h, d, p)
|
|
|
|
#define xenevtchn_unmask(h, p) xc_evtchn_unmask(*h, p)
|
|
|
|
#define xenevtchn_unbind(h, p) xc_evtchn_unmask(*h, p)
|
2011-02-26 00:20:34 +08:00
|
|
|
|
2016-01-15 21:23:39 +08:00
|
|
|
static inline xengnttab_handle *xengnttab_open(void *logger,
|
|
|
|
unsigned int open_flags)
|
2011-02-26 00:20:34 +08:00
|
|
|
{
|
2016-01-15 21:23:39 +08:00
|
|
|
xengnttab_handle *h = malloc(sizeof(*h));
|
|
|
|
if (!h) {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
*h = xc_gnttab_open();
|
|
|
|
if (*h == -1) {
|
|
|
|
free(h);
|
|
|
|
h = NULL;
|
|
|
|
}
|
|
|
|
return h;
|
2011-02-26 00:20:34 +08:00
|
|
|
}
|
2016-01-15 21:23:39 +08:00
|
|
|
static inline int xengnttab_close(xengnttab_handle *h)
|
|
|
|
{
|
|
|
|
int rc = xc_gnttab_close(*h);
|
|
|
|
free(h);
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#define xengnttab_set_max_grants(h, n) xc_gnttab_set_max_grants(*h, n)
|
|
|
|
#define xengnttab_map_grant_ref(h, d, r, p) xc_gnttab_map_grant_ref(*h, d, r, p)
|
|
|
|
#define xengnttab_map_grant_refs(h, c, d, r, p) \
|
|
|
|
xc_gnttab_map_grant_refs(*h, c, d, r, p)
|
|
|
|
#define xengnttab_unmap(h, a, n) xc_gnttab_munmap(*h, a, n)
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
static inline XenXC xen_xc_interface_open(void *logger, void *dombuild_logger,
|
|
|
|
unsigned int open_flags)
|
|
|
|
{
|
|
|
|
return xc_interface_open();
|
|
|
|
}
|
|
|
|
|
xen: Switch uses of xc_map_foreign_{pages,bulk} to use libxenforeignmemory API.
In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.
One such library will be libxenforeignmemory which provides access to
privileged foreign mappings and which will provide an interface
equivalent to xc_map_foreign_{pages,bulk}.
The new xenforeignmemory_map() function behaves like
xc_map_foreign_pages() when the err argument is NULL and like
xc_map_foreign_bulk() when err is non-NULL, which maps into the shim
here onto checking err == NULL and calling the appropriate old
function.
Note that xenforeignmemory_map() takes the number of pages before the
arrays themselves, in order to support potentially future use of
variable-length-arrays in the prototype (in the future, when Xen's
baseline toolchain requirements are new enough to ensure VLAs are
supported).
In preparation for adding support for libxenforeignmemory add support
to the <=4.0 and <=4.6 compat code in xen_common.h to allow us to
switch to using the new API. These shims will disappear for versions
of Xen which include libxenforeignmemory.
Since libxenforeignmemory will have its own handle type but for <= 4.6
the functionality is provided by using a libxenctrl handle we
introduce a new global xen_fmem alongside the existing xen_xc. In fact
we make xen_fmem a pointer to the existing xen_xc, which then works
correctly with both <=4.0 (xc handle is an int) and <=4.6 (xc handle
is a pointer). In the latter case xen_fmem is actually a double
indirect pointer, but it all falls out in the wash.
Unlike libxenctrl libxenforeignmemory has an explicit unmap function,
rather than just specifying that munmap should be used, so the unmap
paths are updated to use xenforeignmemory_unmap, which is a shim for
munmap on these versions of xen. The mappings in xen-hvm.c do not
appear to be unmapped (which makes sense for a qemu-dm process)
In fb_disconnect this results in a change from simply mmap over the
existing mapping (with an implicit munmap) to expliclty unmapping with
xenforeignmemory_unmap and then mapping the required anonymous memory
in the same hole. I don't think this is a problem since any other
thread which was racily touching this region would already be running
the risk of hitting the mapping halfway through the call. If this is
thought to be a problem then we could consider adding an extra API to
the libxenforeignmemory interface to replace a foreign mapping with
anonymous shared memory, but I'd prefer not to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
2016-01-15 21:23:41 +08:00
|
|
|
/* See below for xenforeignmemory_* APIs */
|
|
|
|
|
2010-08-31 23:41:25 +08:00
|
|
|
static inline int xc_domain_populate_physmap_exact
|
|
|
|
(XenXC xc_handle, uint32_t domid, unsigned long nr_extents,
|
|
|
|
unsigned int extent_order, unsigned int mem_flags, xen_pfn_t *extent_start)
|
|
|
|
{
|
|
|
|
return xc_domain_memory_populate_physmap
|
|
|
|
(xc_handle, domid, nr_extents, extent_order, mem_flags, extent_start);
|
|
|
|
}
|
|
|
|
|
2011-05-24 21:34:20 +08:00
|
|
|
static inline int xc_domain_add_to_physmap(int xc_handle, uint32_t domid,
|
|
|
|
unsigned int space, unsigned long idx,
|
|
|
|
xen_pfn_t gpfn)
|
|
|
|
{
|
|
|
|
struct xen_add_to_physmap xatp = {
|
|
|
|
.domid = domid,
|
|
|
|
.space = space,
|
|
|
|
.idx = idx,
|
|
|
|
.gpfn = gpfn,
|
|
|
|
};
|
|
|
|
|
|
|
|
return xc_memory_op(xc_handle, XENMEM_add_to_physmap, &xatp);
|
|
|
|
}
|
|
|
|
|
2011-07-01 01:26:29 +08:00
|
|
|
static inline struct xs_handle *xs_open(unsigned long flags)
|
|
|
|
{
|
|
|
|
return xs_daemon_open();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xs_close(struct xs_handle *xsh)
|
|
|
|
{
|
|
|
|
if (xsh != NULL) {
|
|
|
|
xs_daemon_close(xsh);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-31 23:41:25 +08:00
|
|
|
|
2016-01-15 21:23:42 +08:00
|
|
|
/* Xen 4.1 thru 4.6 */
|
|
|
|
#elif CONFIG_XEN_CTRL_INTERFACE_VERSION < 471
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
typedef xc_interface *XenXC;
|
xen: Switch uses of xc_map_foreign_{pages,bulk} to use libxenforeignmemory API.
In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.
One such library will be libxenforeignmemory which provides access to
privileged foreign mappings and which will provide an interface
equivalent to xc_map_foreign_{pages,bulk}.
The new xenforeignmemory_map() function behaves like
xc_map_foreign_pages() when the err argument is NULL and like
xc_map_foreign_bulk() when err is non-NULL, which maps into the shim
here onto checking err == NULL and calling the appropriate old
function.
Note that xenforeignmemory_map() takes the number of pages before the
arrays themselves, in order to support potentially future use of
variable-length-arrays in the prototype (in the future, when Xen's
baseline toolchain requirements are new enough to ensure VLAs are
supported).
In preparation for adding support for libxenforeignmemory add support
to the <=4.0 and <=4.6 compat code in xen_common.h to allow us to
switch to using the new API. These shims will disappear for versions
of Xen which include libxenforeignmemory.
Since libxenforeignmemory will have its own handle type but for <= 4.6
the functionality is provided by using a libxenctrl handle we
introduce a new global xen_fmem alongside the existing xen_xc. In fact
we make xen_fmem a pointer to the existing xen_xc, which then works
correctly with both <=4.0 (xc handle is an int) and <=4.6 (xc handle
is a pointer). In the latter case xen_fmem is actually a double
indirect pointer, but it all falls out in the wash.
Unlike libxenctrl libxenforeignmemory has an explicit unmap function,
rather than just specifying that munmap should be used, so the unmap
paths are updated to use xenforeignmemory_unmap, which is a shim for
munmap on these versions of xen. The mappings in xen-hvm.c do not
appear to be unmapped (which makes sense for a qemu-dm process)
In fb_disconnect this results in a change from simply mmap over the
existing mapping (with an implicit munmap) to expliclty unmapping with
xenforeignmemory_unmap and then mapping the required anonymous memory
in the same hole. I don't think this is a problem since any other
thread which was racily touching this region would already be running
the risk of hitting the mapping halfway through the call. If this is
thought to be a problem then we could consider adding an extra API to
the libxenforeignmemory interface to replace a foreign mapping with
anonymous shared memory, but I'd prefer not to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
2016-01-15 21:23:41 +08:00
|
|
|
typedef xc_interface *xenforeignmemory_handle;
|
2016-01-15 21:23:38 +08:00
|
|
|
typedef xc_evtchn xenevtchn_handle;
|
2016-01-15 21:23:39 +08:00
|
|
|
typedef xc_gnttab xengnttab_handle;
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
# define XC_INTERFACE_FMT "%p"
|
|
|
|
# define XC_HANDLER_INITIAL_VALUE NULL
|
|
|
|
|
2016-01-15 21:23:38 +08:00
|
|
|
#define xenevtchn_open(l, f) xc_evtchn_open(l, f);
|
|
|
|
#define xenevtchn_close(h) xc_evtchn_close(h)
|
|
|
|
#define xenevtchn_fd(h) xc_evtchn_fd(h)
|
|
|
|
#define xenevtchn_pending(h) xc_evtchn_pending(h)
|
|
|
|
#define xenevtchn_notify(h, p) xc_evtchn_notify(h, p)
|
|
|
|
#define xenevtchn_bind_interdomain(h, d, p) xc_evtchn_bind_interdomain(h, d, p)
|
|
|
|
#define xenevtchn_unmask(h, p) xc_evtchn_unmask(h, p)
|
|
|
|
#define xenevtchn_unbind(h, p) xc_evtchn_unbind(h, p)
|
2011-02-26 00:20:34 +08:00
|
|
|
|
2016-01-15 21:23:39 +08:00
|
|
|
#define xengnttab_open(l, f) xc_gnttab_open(l, f)
|
|
|
|
#define xengnttab_close(h) xc_gnttab_close(h)
|
|
|
|
#define xengnttab_set_max_grants(h, n) xc_gnttab_set_max_grants(h, n)
|
|
|
|
#define xengnttab_map_grant_ref(h, d, r, p) xc_gnttab_map_grant_ref(h, d, r, p)
|
|
|
|
#define xengnttab_unmap(h, a, n) xc_gnttab_munmap(h, a, n)
|
|
|
|
#define xengnttab_map_grant_refs(h, c, d, r, p) \
|
|
|
|
xc_gnttab_map_grant_refs(h, c, d, r, p)
|
2011-02-26 00:20:34 +08:00
|
|
|
|
|
|
|
static inline XenXC xen_xc_interface_open(void *logger, void *dombuild_logger,
|
|
|
|
unsigned int open_flags)
|
|
|
|
{
|
|
|
|
return xc_interface_open(logger, dombuild_logger, open_flags);
|
|
|
|
}
|
|
|
|
|
xen: Switch uses of xc_map_foreign_{pages,bulk} to use libxenforeignmemory API.
In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.
One such library will be libxenforeignmemory which provides access to
privileged foreign mappings and which will provide an interface
equivalent to xc_map_foreign_{pages,bulk}.
The new xenforeignmemory_map() function behaves like
xc_map_foreign_pages() when the err argument is NULL and like
xc_map_foreign_bulk() when err is non-NULL, which maps into the shim
here onto checking err == NULL and calling the appropriate old
function.
Note that xenforeignmemory_map() takes the number of pages before the
arrays themselves, in order to support potentially future use of
variable-length-arrays in the prototype (in the future, when Xen's
baseline toolchain requirements are new enough to ensure VLAs are
supported).
In preparation for adding support for libxenforeignmemory add support
to the <=4.0 and <=4.6 compat code in xen_common.h to allow us to
switch to using the new API. These shims will disappear for versions
of Xen which include libxenforeignmemory.
Since libxenforeignmemory will have its own handle type but for <= 4.6
the functionality is provided by using a libxenctrl handle we
introduce a new global xen_fmem alongside the existing xen_xc. In fact
we make xen_fmem a pointer to the existing xen_xc, which then works
correctly with both <=4.0 (xc handle is an int) and <=4.6 (xc handle
is a pointer). In the latter case xen_fmem is actually a double
indirect pointer, but it all falls out in the wash.
Unlike libxenctrl libxenforeignmemory has an explicit unmap function,
rather than just specifying that munmap should be used, so the unmap
paths are updated to use xenforeignmemory_unmap, which is a shim for
munmap on these versions of xen. The mappings in xen-hvm.c do not
appear to be unmapped (which makes sense for a qemu-dm process)
In fb_disconnect this results in a change from simply mmap over the
existing mapping (with an implicit munmap) to expliclty unmapping with
xenforeignmemory_unmap and then mapping the required anonymous memory
in the same hole. I don't think this is a problem since any other
thread which was racily touching this region would already be running
the risk of hitting the mapping halfway through the call. If this is
thought to be a problem then we could consider adding an extra API to
the libxenforeignmemory interface to replace a foreign mapping with
anonymous shared memory, but I'd prefer not to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
2016-01-15 21:23:41 +08:00
|
|
|
/* See below for xenforeignmemory_* APIs */
|
|
|
|
|
2016-01-15 21:23:42 +08:00
|
|
|
#else /* CONFIG_XEN_CTRL_INTERFACE_VERSION >= 471 */
|
|
|
|
|
|
|
|
typedef xc_interface *XenXC;
|
|
|
|
|
|
|
|
# define XC_INTERFACE_FMT "%p"
|
|
|
|
# define XC_HANDLER_INITIAL_VALUE NULL
|
|
|
|
|
|
|
|
#include <xenevtchn.h>
|
|
|
|
#include <xengnttab.h>
|
|
|
|
#include <xenforeignmemory.h>
|
|
|
|
|
|
|
|
static inline XenXC xen_xc_interface_open(void *logger, void *dombuild_logger,
|
|
|
|
unsigned int open_flags)
|
|
|
|
{
|
|
|
|
return xc_interface_open(logger, dombuild_logger, open_flags);
|
|
|
|
}
|
2009-04-22 23:19:15 +08:00
|
|
|
#endif
|
|
|
|
|
2012-04-18 00:56:51 +08:00
|
|
|
/* Xen before 4.2 */
|
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 420
|
|
|
|
static inline int xen_xc_hvm_inject_msi(XenXC xen_xc, domid_t dom,
|
|
|
|
uint64_t addr, uint32_t data)
|
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
2014-05-07 21:40:04 +08:00
|
|
|
/* The followings are only to compile op_discard related code on older
|
|
|
|
* Xen releases. */
|
|
|
|
#define BLKIF_OP_DISCARD 5
|
|
|
|
struct blkif_request_discard {
|
|
|
|
uint64_t nr_sectors;
|
|
|
|
uint64_t sector_number;
|
|
|
|
};
|
2012-04-18 00:56:51 +08:00
|
|
|
#else
|
|
|
|
static inline int xen_xc_hvm_inject_msi(XenXC xen_xc, domid_t dom,
|
|
|
|
uint64_t addr, uint32_t data)
|
|
|
|
{
|
|
|
|
return xc_hvm_inject_msi(xen_xc, dom, addr, data);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-05-17 18:33:09 +08:00
|
|
|
void destroy_hvm_domain(bool reboot);
|
2010-09-07 03:07:14 +08:00
|
|
|
|
2012-06-21 23:40:09 +08:00
|
|
|
/* shutdown/destroy current domain because of an error */
|
|
|
|
void xen_shutdown_fatal_error(const char *fmt, ...) GCC_FMT_ATTR(1, 2);
|
|
|
|
|
2014-10-21 03:49:12 +08:00
|
|
|
#ifdef HVM_PARAM_VMPORT_REGS_PFN
|
|
|
|
static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
|
2015-01-23 20:09:47 +08:00
|
|
|
xen_pfn_t *vmport_regs_pfn)
|
2014-10-21 03:49:12 +08:00
|
|
|
{
|
2015-01-23 20:09:47 +08:00
|
|
|
int rc;
|
|
|
|
uint64_t value;
|
|
|
|
rc = xc_hvm_param_get(xc, dom, HVM_PARAM_VMPORT_REGS_PFN, &value);
|
|
|
|
if (rc >= 0) {
|
|
|
|
*vmport_regs_pfn = (xen_pfn_t) value;
|
|
|
|
}
|
|
|
|
return rc;
|
2014-10-21 03:49:12 +08:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int xen_get_vmport_regs_pfn(XenXC xc, domid_t dom,
|
2015-01-23 20:09:47 +08:00
|
|
|
xen_pfn_t *vmport_regs_pfn)
|
2014-10-21 03:49:12 +08:00
|
|
|
{
|
|
|
|
return -ENOSYS;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-07-24 17:38:28 +08:00
|
|
|
/* Xen before 4.6 */
|
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 460
|
|
|
|
|
|
|
|
#ifndef HVM_IOREQSRV_BUFIOREQ_ATOMIC
|
|
|
|
#define HVM_IOREQSRV_BUFIOREQ_ATOMIC 2
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-01-20 19:06:19 +08:00
|
|
|
/* Xen before 4.5 */
|
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 450
|
|
|
|
|
|
|
|
#ifndef HVM_PARAM_BUFIOREQ_EVTCHN
|
|
|
|
#define HVM_PARAM_BUFIOREQ_EVTCHN 26
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define IOREQ_TYPE_PCI_CONFIG 2
|
|
|
|
|
2015-07-07 21:32:38 +08:00
|
|
|
typedef uint16_t ioservid_t;
|
2015-01-20 19:06:19 +08:00
|
|
|
|
|
|
|
static inline void xen_map_memory_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_memory_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_map_io_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_io_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_map_pcidev(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
PCIDevice *pci_dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_pcidev(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
PCIDevice *pci_dev)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_create_ioreq_server(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t *ioservid)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_destroy_ioreq_server(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_get_ioreq_server_info(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
xen_pfn_t *ioreq_pfn,
|
|
|
|
xen_pfn_t *bufioreq_pfn,
|
|
|
|
evtchn_port_t *bufioreq_evtchn)
|
|
|
|
{
|
|
|
|
unsigned long param;
|
|
|
|
int rc;
|
|
|
|
|
|
|
|
rc = xc_get_hvm_param(xc, dom, HVM_PARAM_IOREQ_PFN, ¶m);
|
|
|
|
if (rc < 0) {
|
|
|
|
fprintf(stderr, "failed to get HVM_PARAM_IOREQ_PFN\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*ioreq_pfn = param;
|
|
|
|
|
|
|
|
rc = xc_get_hvm_param(xc, dom, HVM_PARAM_BUFIOREQ_PFN, ¶m);
|
|
|
|
if (rc < 0) {
|
|
|
|
fprintf(stderr, "failed to get HVM_PARAM_BUFIOREQ_PFN\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bufioreq_pfn = param;
|
|
|
|
|
|
|
|
rc = xc_get_hvm_param(xc, dom, HVM_PARAM_BUFIOREQ_EVTCHN,
|
|
|
|
¶m);
|
|
|
|
if (rc < 0) {
|
|
|
|
fprintf(stderr, "failed to get HVM_PARAM_BUFIOREQ_EVTCHN\n");
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
*bufioreq_evtchn = param;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_set_ioreq_server_state(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
bool enable)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Xen 4.5 */
|
|
|
|
#else
|
|
|
|
|
|
|
|
static inline void xen_map_memory_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
hwaddr start_addr = section->offset_within_address_space;
|
|
|
|
ram_addr_t size = int128_get64(section->size);
|
|
|
|
hwaddr end_addr = start_addr + size - 1;
|
|
|
|
|
|
|
|
trace_xen_map_mmio_range(ioservid, start_addr, end_addr);
|
|
|
|
xc_hvm_map_io_range_to_ioreq_server(xc, dom, ioservid, 1,
|
|
|
|
start_addr, end_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_memory_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
hwaddr start_addr = section->offset_within_address_space;
|
|
|
|
ram_addr_t size = int128_get64(section->size);
|
|
|
|
hwaddr end_addr = start_addr + size - 1;
|
|
|
|
|
|
|
|
trace_xen_unmap_mmio_range(ioservid, start_addr, end_addr);
|
|
|
|
xc_hvm_unmap_io_range_from_ioreq_server(xc, dom, ioservid, 1,
|
|
|
|
start_addr, end_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_map_io_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
hwaddr start_addr = section->offset_within_address_space;
|
|
|
|
ram_addr_t size = int128_get64(section->size);
|
|
|
|
hwaddr end_addr = start_addr + size - 1;
|
|
|
|
|
|
|
|
trace_xen_map_portio_range(ioservid, start_addr, end_addr);
|
|
|
|
xc_hvm_map_io_range_to_ioreq_server(xc, dom, ioservid, 0,
|
|
|
|
start_addr, end_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_io_section(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
MemoryRegionSection *section)
|
|
|
|
{
|
|
|
|
hwaddr start_addr = section->offset_within_address_space;
|
|
|
|
ram_addr_t size = int128_get64(section->size);
|
|
|
|
hwaddr end_addr = start_addr + size - 1;
|
|
|
|
|
|
|
|
trace_xen_unmap_portio_range(ioservid, start_addr, end_addr);
|
|
|
|
xc_hvm_unmap_io_range_from_ioreq_server(xc, dom, ioservid, 0,
|
|
|
|
start_addr, end_addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_map_pcidev(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
PCIDevice *pci_dev)
|
|
|
|
{
|
|
|
|
trace_xen_map_pcidev(ioservid, pci_bus_num(pci_dev->bus),
|
|
|
|
PCI_SLOT(pci_dev->devfn), PCI_FUNC(pci_dev->devfn));
|
|
|
|
xc_hvm_map_pcidev_to_ioreq_server(xc, dom, ioservid,
|
|
|
|
0, pci_bus_num(pci_dev->bus),
|
|
|
|
PCI_SLOT(pci_dev->devfn),
|
|
|
|
PCI_FUNC(pci_dev->devfn));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_unmap_pcidev(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
PCIDevice *pci_dev)
|
|
|
|
{
|
|
|
|
trace_xen_unmap_pcidev(ioservid, pci_bus_num(pci_dev->bus),
|
|
|
|
PCI_SLOT(pci_dev->devfn), PCI_FUNC(pci_dev->devfn));
|
|
|
|
xc_hvm_unmap_pcidev_from_ioreq_server(xc, dom, ioservid,
|
|
|
|
0, pci_bus_num(pci_dev->bus),
|
|
|
|
PCI_SLOT(pci_dev->devfn),
|
|
|
|
PCI_FUNC(pci_dev->devfn));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_create_ioreq_server(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t *ioservid)
|
|
|
|
{
|
2015-07-24 17:38:28 +08:00
|
|
|
int rc = xc_hvm_create_ioreq_server(xc, dom, HVM_IOREQSRV_BUFIOREQ_ATOMIC,
|
|
|
|
ioservid);
|
2015-01-20 19:06:19 +08:00
|
|
|
|
|
|
|
if (rc == 0) {
|
|
|
|
trace_xen_ioreq_server_create(*ioservid);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void xen_destroy_ioreq_server(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid)
|
|
|
|
{
|
|
|
|
trace_xen_ioreq_server_destroy(ioservid);
|
|
|
|
xc_hvm_destroy_ioreq_server(xc, dom, ioservid);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_get_ioreq_server_info(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
xen_pfn_t *ioreq_pfn,
|
|
|
|
xen_pfn_t *bufioreq_pfn,
|
|
|
|
evtchn_port_t *bufioreq_evtchn)
|
|
|
|
{
|
|
|
|
return xc_hvm_get_ioreq_server_info(xc, dom, ioservid,
|
|
|
|
ioreq_pfn, bufioreq_pfn,
|
|
|
|
bufioreq_evtchn);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int xen_set_ioreq_server_state(XenXC xc, domid_t dom,
|
|
|
|
ioservid_t ioservid,
|
|
|
|
bool enable)
|
|
|
|
{
|
|
|
|
trace_xen_ioreq_server_state(ioservid, enable);
|
|
|
|
return xc_hvm_set_ioreq_server_state(xc, dom, ioservid, enable);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2015-06-30 00:51:05 +08:00
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 460
|
|
|
|
static inline int xen_xc_domain_add_to_physmap(XenXC xch, uint32_t domid,
|
|
|
|
unsigned int space,
|
|
|
|
unsigned long idx,
|
|
|
|
xen_pfn_t gpfn)
|
|
|
|
{
|
|
|
|
return xc_domain_add_to_physmap(xch, domid, space, idx, gpfn);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int xen_xc_domain_add_to_physmap(XenXC xch, uint32_t domid,
|
|
|
|
unsigned int space,
|
|
|
|
unsigned long idx,
|
|
|
|
xen_pfn_t gpfn)
|
|
|
|
{
|
|
|
|
/* In Xen 4.6 rc is -1 and errno contains the error value. */
|
|
|
|
int rc = xc_domain_add_to_physmap(xch, domid, space, idx, gpfn);
|
|
|
|
if (rc == -1)
|
|
|
|
return errno;
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2016-01-15 21:23:44 +08:00
|
|
|
#ifdef CONFIG_XEN_PV_DOMAIN_BUILD
|
2015-11-14 01:38:06 +08:00
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 470
|
|
|
|
static inline int xen_domain_create(XenXC xc, uint32_t ssidref,
|
|
|
|
xen_domain_handle_t handle, uint32_t flags,
|
|
|
|
uint32_t *pdomid)
|
|
|
|
{
|
|
|
|
return xc_domain_create(xc, ssidref, handle, flags, pdomid);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline int xen_domain_create(XenXC xc, uint32_t ssidref,
|
|
|
|
xen_domain_handle_t handle, uint32_t flags,
|
|
|
|
uint32_t *pdomid)
|
|
|
|
{
|
|
|
|
return xc_domain_create(xc, ssidref, handle, flags, pdomid, NULL);
|
|
|
|
}
|
|
|
|
#endif
|
2016-01-15 21:23:44 +08:00
|
|
|
#endif
|
2015-11-14 01:38:06 +08:00
|
|
|
|
xen: Switch uses of xc_map_foreign_{pages,bulk} to use libxenforeignmemory API.
In Xen 4.7 we are refactoring parts libxenctrl into a number of
separate libraries which will provide backward and forward API and ABI
compatiblity.
One such library will be libxenforeignmemory which provides access to
privileged foreign mappings and which will provide an interface
equivalent to xc_map_foreign_{pages,bulk}.
The new xenforeignmemory_map() function behaves like
xc_map_foreign_pages() when the err argument is NULL and like
xc_map_foreign_bulk() when err is non-NULL, which maps into the shim
here onto checking err == NULL and calling the appropriate old
function.
Note that xenforeignmemory_map() takes the number of pages before the
arrays themselves, in order to support potentially future use of
variable-length-arrays in the prototype (in the future, when Xen's
baseline toolchain requirements are new enough to ensure VLAs are
supported).
In preparation for adding support for libxenforeignmemory add support
to the <=4.0 and <=4.6 compat code in xen_common.h to allow us to
switch to using the new API. These shims will disappear for versions
of Xen which include libxenforeignmemory.
Since libxenforeignmemory will have its own handle type but for <= 4.6
the functionality is provided by using a libxenctrl handle we
introduce a new global xen_fmem alongside the existing xen_xc. In fact
we make xen_fmem a pointer to the existing xen_xc, which then works
correctly with both <=4.0 (xc handle is an int) and <=4.6 (xc handle
is a pointer). In the latter case xen_fmem is actually a double
indirect pointer, but it all falls out in the wash.
Unlike libxenctrl libxenforeignmemory has an explicit unmap function,
rather than just specifying that munmap should be used, so the unmap
paths are updated to use xenforeignmemory_unmap, which is a shim for
munmap on these versions of xen. The mappings in xen-hvm.c do not
appear to be unmapped (which makes sense for a qemu-dm process)
In fb_disconnect this results in a change from simply mmap over the
existing mapping (with an implicit munmap) to expliclty unmapping with
xenforeignmemory_unmap and then mapping the required anonymous memory
in the same hole. I don't think this is a problem since any other
thread which was racily touching this region would already be running
the risk of hitting the mapping halfway through the call. If this is
thought to be a problem then we could consider adding an extra API to
the libxenforeignmemory interface to replace a foreign mapping with
anonymous shared memory, but I'd prefer not to.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Reviewed-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
Signed-off-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
2016-01-15 21:23:41 +08:00
|
|
|
#if CONFIG_XEN_CTRL_INTERFACE_VERSION < 471
|
|
|
|
|
|
|
|
#define xenforeignmemory_open(l, f) &xen_xc
|
|
|
|
|
|
|
|
static inline void *xenforeignmemory_map(XenXC *h, uint32_t dom,
|
|
|
|
int prot, size_t pages,
|
|
|
|
const xen_pfn_t arr[/*pages*/],
|
|
|
|
int err[/*pages*/])
|
|
|
|
{
|
|
|
|
if (err)
|
|
|
|
return xc_map_foreign_bulk(*h, dom, prot, arr, err, pages);
|
|
|
|
else
|
|
|
|
return xc_map_foreign_pages(*h, dom, prot, arr, pages);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define xenforeignmemory_unmap(h, p, s) munmap(p, s * XC_PAGE_SIZE)
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2009-04-22 23:19:15 +08:00
|
|
|
#endif /* QEMU_HW_XEN_COMMON_H */
|