mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
Merge remote-tracking branch 'remotes/sstabellini/tags/xen-20170421-v2-tag' into staging
Xen 2017/04/21 + fix # gpg: Signature made Tue 25 Apr 2017 19:10:37 BST # gpg: using RSA key 0x894F8F4870E1AE90 # gpg: Good signature from "Stefano Stabellini <stefano.stabellini@eu.citrix.com>" # gpg: aka "Stefano Stabellini <sstabellini@kernel.org>" # Primary key fingerprint: D04E 33AB A51F 67BA 07D3 0AEA 894F 8F48 70E1 AE90 * remotes/sstabellini/tags/xen-20170421-v2-tag: (21 commits) move xen-mapcache.c to hw/i386/xen/ move xen-hvm.c to hw/i386/xen/ move xen-common.c to hw/xen/ add xen-9p-backend to MAINTAINERS under Xen xen/9pfs: build and register Xen 9pfs backend xen/9pfs: send responses back to the frontend xen/9pfs: implement in/out_iov_from_pdu and vmarshal/vunmarshal xen/9pfs: receive requests from the frontend xen/9pfs: connect to the frontend xen/9pfs: introduce Xen 9pfs backend 9p: introduce a type for the 9p header xen: import ring.h from xen configure: use pkg-config for obtaining xen version xen: additionally restrict xenforeignmemory operations xen: use libxendevice model to restrict operations xen: use 5 digit xen versions xen: use libxendevicemodel when available configure: detect presence of libxendevicemodel xen: create wrappers for all other uses of xc_hvm_XXX() functions xen: rename xen_modified_memory() to xen_hvm_modified_memory() ... Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
@@ -327,6 +327,7 @@ L: xen-devel@lists.xenproject.org
|
||||
S: Supported
|
||||
F: xen-*
|
||||
F: */xen*
|
||||
F: hw/9pfs/xen-9p-backend.c
|
||||
F: hw/char/xen_console.c
|
||||
F: hw/display/xenfb.c
|
||||
F: hw/net/xen_nic.c
|
||||
|
||||
@@ -149,12 +149,6 @@ obj-y += dump.o
|
||||
obj-y += migration/ram.o migration/savevm.o
|
||||
LIBS := $(libs_softmmu) $(LIBS)
|
||||
|
||||
# xen support
|
||||
obj-$(CONFIG_XEN) += xen-common.o
|
||||
obj-$(CONFIG_XEN_I386) += xen-hvm.o xen-mapcache.o
|
||||
obj-$(call lnot,$(CONFIG_XEN)) += xen-common-stub.o
|
||||
obj-$(call lnot,$(CONFIG_XEN_I386)) += xen-hvm-stub.o
|
||||
|
||||
# Hardware support
|
||||
ifeq ($(TARGET_NAME), sparc64)
|
||||
obj-y += hw/sparc64/
|
||||
|
||||
@@ -1997,30 +1997,65 @@ fi
|
||||
# xen probe
|
||||
|
||||
if test "$xen" != "no" ; then
|
||||
xen_libs="-lxenstore -lxenctrl -lxenguest"
|
||||
xen_stable_libs="-lxenforeignmemory -lxengnttab -lxenevtchn"
|
||||
# Check whether Xen library path is specified via --extra-ldflags to avoid
|
||||
# overriding this setting with pkg-config output. If not, try pkg-config
|
||||
# to obtain all needed flags.
|
||||
|
||||
# First we test whether Xen headers and libraries are available.
|
||||
# If no, we are done and there is no Xen support.
|
||||
# If yes, more tests are run to detect the Xen version.
|
||||
if ! echo $EXTRA_LDFLAGS | grep tools/libxc > /dev/null && \
|
||||
$pkg_config --exists xencontrol ; then
|
||||
xen_ctrl_version="$(printf '%d%02d%02d' \
|
||||
$($pkg_config --modversion xencontrol | sed 's/\./ /g') )"
|
||||
xen=yes
|
||||
xen_pc="xencontrol xenstore xenguest xenforeignmemory xengnttab"
|
||||
xen_pc="$xen_pc xenevtchn xendevicemodel"
|
||||
QEMU_CFLAGS="$QEMU_CFLAGS $($pkg_config --cflags $xen_pc)"
|
||||
libs_softmmu="$($pkg_config --libs $xen_pc) $libs_softmmu"
|
||||
LDFLAGS="$($pkg_config --libs $xen_pc) $LDFLAGS"
|
||||
else
|
||||
|
||||
# Xen (any)
|
||||
cat > $TMPC <<EOF
|
||||
xen_libs="-lxenstore -lxenctrl -lxenguest"
|
||||
xen_stable_libs="-lxencall -lxenforeignmemory -lxengnttab -lxenevtchn"
|
||||
|
||||
# First we test whether Xen headers and libraries are available.
|
||||
# If no, we are done and there is no Xen support.
|
||||
# If yes, more tests are run to detect the Xen version.
|
||||
|
||||
# Xen (any)
|
||||
cat > $TMPC <<EOF
|
||||
#include <xenctrl.h>
|
||||
int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
if ! compile_prog "" "$xen_libs" ; then
|
||||
# Xen not found
|
||||
if test "$xen" = "yes" ; then
|
||||
feature_not_found "xen" "Install xen devel"
|
||||
fi
|
||||
xen=no
|
||||
if ! compile_prog "" "$xen_libs" ; then
|
||||
# Xen not found
|
||||
if test "$xen" = "yes" ; then
|
||||
feature_not_found "xen" "Install xen devel"
|
||||
fi
|
||||
xen=no
|
||||
|
||||
# Xen unstable
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
# Xen unstable
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
#undef XC_WANT_COMPAT_DEVICEMODEL_API
|
||||
#define __XEN_TOOLS__
|
||||
#include <xendevicemodel.h>
|
||||
int main(void) {
|
||||
xendevicemodel_handle *xd;
|
||||
|
||||
xd = xendevicemodel_open(0, 0);
|
||||
xendevicemodel_close(xd);
|
||||
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs -lxendevicemodel $xen_stable_libs"
|
||||
then
|
||||
xen_stable_libs="-lxendevicemodel $xen_stable_libs"
|
||||
xen_ctrl_version=40900
|
||||
xen=yes
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
/*
|
||||
* If we have stable libs the we don't want the libxc compat
|
||||
* layers, regardless of what CFLAGS we may have been given.
|
||||
@@ -2070,12 +2105,12 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs $xen_stable_libs"
|
||||
then
|
||||
xen_ctrl_version=480
|
||||
xen=yes
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
compile_prog "" "$xen_libs $xen_stable_libs"
|
||||
then
|
||||
xen_ctrl_version=40800
|
||||
xen=yes
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
/*
|
||||
* If we have stable libs the we don't want the libxc compat
|
||||
* layers, regardless of what CFLAGS we may have been given.
|
||||
@@ -2121,12 +2156,12 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs $xen_stable_libs"
|
||||
then
|
||||
xen_ctrl_version=471
|
||||
xen=yes
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
compile_prog "" "$xen_libs $xen_stable_libs"
|
||||
then
|
||||
xen_ctrl_version=40701
|
||||
xen=yes
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
#include <xenctrl.h>
|
||||
#include <stdint.h>
|
||||
int main(void) {
|
||||
@@ -2136,14 +2171,14 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=470
|
||||
xen=yes
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=40700
|
||||
xen=yes
|
||||
|
||||
# Xen 4.6
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
# Xen 4.6
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
#include <xenctrl.h>
|
||||
#include <xenstore.h>
|
||||
#include <stdint.h>
|
||||
@@ -2164,14 +2199,14 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=460
|
||||
xen=yes
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=40600
|
||||
xen=yes
|
||||
|
||||
# Xen 4.5
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
# Xen 4.5
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
#include <xenctrl.h>
|
||||
#include <xenstore.h>
|
||||
#include <stdint.h>
|
||||
@@ -2191,13 +2226,13 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=450
|
||||
xen=yes
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=40500
|
||||
xen=yes
|
||||
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
elif
|
||||
cat > $TMPC <<EOF &&
|
||||
#include <xenctrl.h>
|
||||
#include <xenstore.h>
|
||||
#include <stdint.h>
|
||||
@@ -2216,24 +2251,25 @@ int main(void) {
|
||||
return 0;
|
||||
}
|
||||
EOF
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=420
|
||||
xen=yes
|
||||
compile_prog "" "$xen_libs"
|
||||
then
|
||||
xen_ctrl_version=40200
|
||||
xen=yes
|
||||
|
||||
else
|
||||
if test "$xen" = "yes" ; then
|
||||
feature_not_found "xen (unsupported version)" \
|
||||
"Install a supported xen (xen 4.2 or newer)"
|
||||
else
|
||||
if test "$xen" = "yes" ; then
|
||||
feature_not_found "xen (unsupported version)" \
|
||||
"Install a supported xen (xen 4.2 or newer)"
|
||||
fi
|
||||
xen=no
|
||||
fi
|
||||
xen=no
|
||||
fi
|
||||
|
||||
if test "$xen" = yes; then
|
||||
if test $xen_ctrl_version -ge 471 ; then
|
||||
libs_softmmu="$xen_stable_libs $libs_softmmu"
|
||||
if test "$xen" = yes; then
|
||||
if test $xen_ctrl_version -ge 40701 ; then
|
||||
libs_softmmu="$xen_stable_libs $libs_softmmu"
|
||||
fi
|
||||
libs_softmmu="$xen_libs $libs_softmmu"
|
||||
fi
|
||||
libs_softmmu="$xen_libs $libs_softmmu"
|
||||
fi
|
||||
fi
|
||||
|
||||
|
||||
@@ -39,7 +39,6 @@ CONFIG_TPM_TIS=$(CONFIG_TPM)
|
||||
CONFIG_MC146818RTC=y
|
||||
CONFIG_PCI_PIIX=y
|
||||
CONFIG_WDT_IB700=y
|
||||
CONFIG_XEN_I386=$(CONFIG_XEN)
|
||||
CONFIG_ISA_DEBUG=y
|
||||
CONFIG_ISA_TESTDEV=y
|
||||
CONFIG_VMPORT=y
|
||||
|
||||
@@ -39,7 +39,6 @@ CONFIG_TPM_TIS=$(CONFIG_TPM)
|
||||
CONFIG_MC146818RTC=y
|
||||
CONFIG_PCI_PIIX=y
|
||||
CONFIG_WDT_IB700=y
|
||||
CONFIG_XEN_I386=$(CONFIG_XEN)
|
||||
CONFIG_ISA_DEBUG=y
|
||||
CONFIG_ISA_TESTDEV=y
|
||||
CONFIG_VMPORT=y
|
||||
|
||||
@@ -119,6 +119,12 @@ static inline char *rpath(FsContext *ctx, const char *path)
|
||||
typedef struct V9fsPDU V9fsPDU;
|
||||
struct V9fsState;
|
||||
|
||||
typedef struct {
|
||||
uint32_t size_le;
|
||||
uint8_t id;
|
||||
uint16_t tag_le;
|
||||
} QEMU_PACKED P9MsgHeader;
|
||||
|
||||
struct V9fsPDU
|
||||
{
|
||||
uint32_t size;
|
||||
|
||||
@@ -5,5 +5,6 @@ common-obj-y += coth.o cofs.o codir.o cofile.o
|
||||
common-obj-y += coxattr.o 9p-synth.o
|
||||
common-obj-$(CONFIG_OPEN_BY_HANDLE) += 9p-handle.o
|
||||
common-obj-y += 9p-proxy.o
|
||||
common-obj-$(CONFIG_XEN) += xen-9p-backend.o
|
||||
|
||||
obj-y += virtio-9p-device.o
|
||||
|
||||
@@ -46,11 +46,7 @@ static void handle_9p_output(VirtIODevice *vdev, VirtQueue *vq)
|
||||
VirtQueueElement *elem;
|
||||
|
||||
while ((pdu = pdu_alloc(s))) {
|
||||
struct {
|
||||
uint32_t size_le;
|
||||
uint8_t id;
|
||||
uint16_t tag_le;
|
||||
} QEMU_PACKED out;
|
||||
P9MsgHeader out;
|
||||
|
||||
elem = virtqueue_pop(vq, sizeof(VirtQueueElement));
|
||||
if (!elem) {
|
||||
|
||||
@@ -0,0 +1,440 @@
|
||||
/*
|
||||
* Xen 9p backend
|
||||
*
|
||||
* Copyright Aporeto 2017
|
||||
*
|
||||
* Authors:
|
||||
* Stefano Stabellini <stefano@aporeto.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include "qemu/osdep.h"
|
||||
|
||||
#include "hw/hw.h"
|
||||
#include "hw/9pfs/9p.h"
|
||||
#include "hw/xen/xen_backend.h"
|
||||
#include "hw/9pfs/xen-9pfs.h"
|
||||
#include "qemu/config-file.h"
|
||||
#include "fsdev/qemu-fsdev.h"
|
||||
|
||||
#define VERSIONS "1"
|
||||
#define MAX_RINGS 8
|
||||
#define MAX_RING_ORDER 8
|
||||
|
||||
typedef struct Xen9pfsRing {
|
||||
struct Xen9pfsDev *priv;
|
||||
|
||||
int ref;
|
||||
xenevtchn_handle *evtchndev;
|
||||
int evtchn;
|
||||
int local_port;
|
||||
int ring_order;
|
||||
struct xen_9pfs_data_intf *intf;
|
||||
unsigned char *data;
|
||||
struct xen_9pfs_data ring;
|
||||
|
||||
struct iovec *sg;
|
||||
QEMUBH *bh;
|
||||
|
||||
/* local copies, so that we can read/write PDU data directly from
|
||||
* the ring */
|
||||
RING_IDX out_cons, out_size, in_cons;
|
||||
bool inprogress;
|
||||
} Xen9pfsRing;
|
||||
|
||||
typedef struct Xen9pfsDev {
|
||||
struct XenDevice xendev; /* must be first */
|
||||
V9fsState state;
|
||||
char *path;
|
||||
char *security_model;
|
||||
char *tag;
|
||||
char *id;
|
||||
|
||||
int num_rings;
|
||||
Xen9pfsRing *rings;
|
||||
} Xen9pfsDev;
|
||||
|
||||
static void xen_9pfs_in_sg(Xen9pfsRing *ring,
|
||||
struct iovec *in_sg,
|
||||
int *num,
|
||||
uint32_t idx,
|
||||
uint32_t size)
|
||||
{
|
||||
RING_IDX cons, prod, masked_prod, masked_cons;
|
||||
|
||||
cons = ring->intf->in_cons;
|
||||
prod = ring->intf->in_prod;
|
||||
xen_rmb();
|
||||
masked_prod = xen_9pfs_mask(prod, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
masked_cons = xen_9pfs_mask(cons, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
|
||||
if (masked_prod < masked_cons) {
|
||||
in_sg[0].iov_base = ring->ring.in + masked_prod;
|
||||
in_sg[0].iov_len = masked_cons - masked_prod;
|
||||
*num = 1;
|
||||
} else {
|
||||
in_sg[0].iov_base = ring->ring.in + masked_prod;
|
||||
in_sg[0].iov_len = XEN_FLEX_RING_SIZE(ring->ring_order) - masked_prod;
|
||||
in_sg[1].iov_base = ring->ring.in;
|
||||
in_sg[1].iov_len = masked_cons;
|
||||
*num = 2;
|
||||
}
|
||||
}
|
||||
|
||||
static void xen_9pfs_out_sg(Xen9pfsRing *ring,
|
||||
struct iovec *out_sg,
|
||||
int *num,
|
||||
uint32_t idx)
|
||||
{
|
||||
RING_IDX cons, prod, masked_prod, masked_cons;
|
||||
|
||||
cons = ring->intf->out_cons;
|
||||
prod = ring->intf->out_prod;
|
||||
xen_rmb();
|
||||
masked_prod = xen_9pfs_mask(prod, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
masked_cons = xen_9pfs_mask(cons, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
|
||||
if (masked_cons < masked_prod) {
|
||||
out_sg[0].iov_base = ring->ring.out + masked_cons;
|
||||
out_sg[0].iov_len = ring->out_size;
|
||||
*num = 1;
|
||||
} else {
|
||||
if (ring->out_size >
|
||||
(XEN_FLEX_RING_SIZE(ring->ring_order) - masked_cons)) {
|
||||
out_sg[0].iov_base = ring->ring.out + masked_cons;
|
||||
out_sg[0].iov_len = XEN_FLEX_RING_SIZE(ring->ring_order) -
|
||||
masked_cons;
|
||||
out_sg[1].iov_base = ring->ring.out;
|
||||
out_sg[1].iov_len = ring->out_size -
|
||||
(XEN_FLEX_RING_SIZE(ring->ring_order) -
|
||||
masked_cons);
|
||||
*num = 2;
|
||||
} else {
|
||||
out_sg[0].iov_base = ring->ring.out + masked_cons;
|
||||
out_sg[0].iov_len = ring->out_size;
|
||||
*num = 1;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static ssize_t xen_9pfs_pdu_vmarshal(V9fsPDU *pdu,
|
||||
size_t offset,
|
||||
const char *fmt,
|
||||
va_list ap)
|
||||
{
|
||||
Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
|
||||
struct iovec in_sg[2];
|
||||
int num;
|
||||
|
||||
xen_9pfs_in_sg(&xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings],
|
||||
in_sg, &num, pdu->idx, ROUND_UP(offset + 128, 512));
|
||||
return v9fs_iov_vmarshal(in_sg, num, offset, 0, fmt, ap);
|
||||
}
|
||||
|
||||
static ssize_t xen_9pfs_pdu_vunmarshal(V9fsPDU *pdu,
|
||||
size_t offset,
|
||||
const char *fmt,
|
||||
va_list ap)
|
||||
{
|
||||
Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
|
||||
struct iovec out_sg[2];
|
||||
int num;
|
||||
|
||||
xen_9pfs_out_sg(&xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings],
|
||||
out_sg, &num, pdu->idx);
|
||||
return v9fs_iov_vunmarshal(out_sg, num, offset, 0, fmt, ap);
|
||||
}
|
||||
|
||||
static void xen_9pfs_init_out_iov_from_pdu(V9fsPDU *pdu,
|
||||
struct iovec **piov,
|
||||
unsigned int *pniov)
|
||||
{
|
||||
Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
|
||||
Xen9pfsRing *ring = &xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings];
|
||||
int num;
|
||||
|
||||
g_free(ring->sg);
|
||||
|
||||
ring->sg = g_malloc0(sizeof(*ring->sg) * 2);
|
||||
xen_9pfs_out_sg(ring, ring->sg, &num, pdu->idx);
|
||||
*piov = ring->sg;
|
||||
*pniov = num;
|
||||
}
|
||||
|
||||
static void xen_9pfs_init_in_iov_from_pdu(V9fsPDU *pdu,
|
||||
struct iovec **piov,
|
||||
unsigned int *pniov,
|
||||
size_t size)
|
||||
{
|
||||
Xen9pfsDev *xen_9pfs = container_of(pdu->s, Xen9pfsDev, state);
|
||||
Xen9pfsRing *ring = &xen_9pfs->rings[pdu->tag % xen_9pfs->num_rings];
|
||||
int num;
|
||||
|
||||
g_free(ring->sg);
|
||||
|
||||
ring->sg = g_malloc0(sizeof(*ring->sg) * 2);
|
||||
xen_9pfs_in_sg(ring, ring->sg, &num, pdu->idx, size);
|
||||
*piov = ring->sg;
|
||||
*pniov = num;
|
||||
}
|
||||
|
||||
static void xen_9pfs_push_and_notify(V9fsPDU *pdu)
|
||||
{
|
||||
RING_IDX prod;
|
||||
Xen9pfsDev *priv = container_of(pdu->s, Xen9pfsDev, state);
|
||||
Xen9pfsRing *ring = &priv->rings[pdu->tag % priv->num_rings];
|
||||
|
||||
g_free(ring->sg);
|
||||
ring->sg = NULL;
|
||||
|
||||
ring->intf->out_cons = ring->out_cons;
|
||||
xen_wmb();
|
||||
|
||||
prod = ring->intf->in_prod;
|
||||
xen_rmb();
|
||||
ring->intf->in_prod = prod + pdu->size;
|
||||
xen_wmb();
|
||||
|
||||
ring->inprogress = false;
|
||||
xenevtchn_notify(ring->evtchndev, ring->local_port);
|
||||
|
||||
qemu_bh_schedule(ring->bh);
|
||||
}
|
||||
|
||||
static const struct V9fsTransport xen_9p_transport = {
|
||||
.pdu_vmarshal = xen_9pfs_pdu_vmarshal,
|
||||
.pdu_vunmarshal = xen_9pfs_pdu_vunmarshal,
|
||||
.init_in_iov_from_pdu = xen_9pfs_init_in_iov_from_pdu,
|
||||
.init_out_iov_from_pdu = xen_9pfs_init_out_iov_from_pdu,
|
||||
.push_and_notify = xen_9pfs_push_and_notify,
|
||||
};
|
||||
|
||||
static int xen_9pfs_init(struct XenDevice *xendev)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int xen_9pfs_receive(Xen9pfsRing *ring)
|
||||
{
|
||||
P9MsgHeader h;
|
||||
RING_IDX cons, prod, masked_prod, masked_cons;
|
||||
V9fsPDU *pdu;
|
||||
|
||||
if (ring->inprogress) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
cons = ring->intf->out_cons;
|
||||
prod = ring->intf->out_prod;
|
||||
xen_rmb();
|
||||
|
||||
if (xen_9pfs_queued(prod, cons, XEN_FLEX_RING_SIZE(ring->ring_order)) <
|
||||
sizeof(h)) {
|
||||
return 0;
|
||||
}
|
||||
ring->inprogress = true;
|
||||
|
||||
masked_prod = xen_9pfs_mask(prod, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
masked_cons = xen_9pfs_mask(cons, XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
|
||||
xen_9pfs_read_packet((uint8_t *) &h, ring->ring.out, sizeof(h),
|
||||
masked_prod, &masked_cons,
|
||||
XEN_FLEX_RING_SIZE(ring->ring_order));
|
||||
|
||||
/* cannot fail, because we only handle one request per ring at a time */
|
||||
pdu = pdu_alloc(&ring->priv->state);
|
||||
pdu->size = le32_to_cpu(h.size_le);
|
||||
pdu->id = h.id;
|
||||
pdu->tag = le32_to_cpu(h.tag_le);
|
||||
ring->out_size = le32_to_cpu(h.size_le);
|
||||
ring->out_cons = cons + le32_to_cpu(h.size_le);
|
||||
|
||||
qemu_co_queue_init(&pdu->complete);
|
||||
pdu_submit(pdu);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void xen_9pfs_bh(void *opaque)
|
||||
{
|
||||
Xen9pfsRing *ring = opaque;
|
||||
xen_9pfs_receive(ring);
|
||||
}
|
||||
|
||||
static void xen_9pfs_evtchn_event(void *opaque)
|
||||
{
|
||||
Xen9pfsRing *ring = opaque;
|
||||
evtchn_port_t port;
|
||||
|
||||
port = xenevtchn_pending(ring->evtchndev);
|
||||
xenevtchn_unmask(ring->evtchndev, port);
|
||||
|
||||
qemu_bh_schedule(ring->bh);
|
||||
}
|
||||
|
||||
static int xen_9pfs_free(struct XenDevice *xendev)
|
||||
{
|
||||
int i;
|
||||
Xen9pfsDev *xen_9pdev = container_of(xendev, Xen9pfsDev, xendev);
|
||||
|
||||
g_free(xen_9pdev->id);
|
||||
g_free(xen_9pdev->tag);
|
||||
g_free(xen_9pdev->path);
|
||||
g_free(xen_9pdev->security_model);
|
||||
|
||||
for (i = 0; i < xen_9pdev->num_rings; i++) {
|
||||
if (xen_9pdev->rings[i].data != NULL) {
|
||||
xengnttab_unmap(xen_9pdev->xendev.gnttabdev,
|
||||
xen_9pdev->rings[i].data,
|
||||
(1 << xen_9pdev->rings[i].ring_order));
|
||||
}
|
||||
if (xen_9pdev->rings[i].intf != NULL) {
|
||||
xengnttab_unmap(xen_9pdev->xendev.gnttabdev,
|
||||
xen_9pdev->rings[i].intf,
|
||||
1);
|
||||
}
|
||||
if (xen_9pdev->rings[i].evtchndev > 0) {
|
||||
qemu_set_fd_handler(xenevtchn_fd(xen_9pdev->rings[i].evtchndev),
|
||||
NULL, NULL, NULL);
|
||||
xenevtchn_unbind(xen_9pdev->rings[i].evtchndev,
|
||||
xen_9pdev->rings[i].local_port);
|
||||
}
|
||||
if (xen_9pdev->rings[i].bh != NULL) {
|
||||
qemu_bh_delete(xen_9pdev->rings[i].bh);
|
||||
}
|
||||
}
|
||||
g_free(xen_9pdev->rings);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int xen_9pfs_connect(struct XenDevice *xendev)
|
||||
{
|
||||
int i;
|
||||
Xen9pfsDev *xen_9pdev = container_of(xendev, Xen9pfsDev, xendev);
|
||||
V9fsState *s = &xen_9pdev->state;
|
||||
QemuOpts *fsdev;
|
||||
|
||||
if (xenstore_read_fe_int(&xen_9pdev->xendev, "num-rings",
|
||||
&xen_9pdev->num_rings) == -1 ||
|
||||
xen_9pdev->num_rings > MAX_RINGS || xen_9pdev->num_rings < 1) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
xen_9pdev->rings = g_malloc0(xen_9pdev->num_rings * sizeof(Xen9pfsRing));
|
||||
for (i = 0; i < xen_9pdev->num_rings; i++) {
|
||||
char *str;
|
||||
int ring_order;
|
||||
|
||||
xen_9pdev->rings[i].priv = xen_9pdev;
|
||||
xen_9pdev->rings[i].evtchn = -1;
|
||||
xen_9pdev->rings[i].local_port = -1;
|
||||
|
||||
str = g_strdup_printf("ring-ref%u", i);
|
||||
if (xenstore_read_fe_int(&xen_9pdev->xendev, str,
|
||||
&xen_9pdev->rings[i].ref) == -1) {
|
||||
goto out;
|
||||
}
|
||||
g_free(str);
|
||||
str = g_strdup_printf("event-channel-%u", i);
|
||||
if (xenstore_read_fe_int(&xen_9pdev->xendev, str,
|
||||
&xen_9pdev->rings[i].evtchn) == -1) {
|
||||
goto out;
|
||||
}
|
||||
g_free(str);
|
||||
|
||||
xen_9pdev->rings[i].intf = xengnttab_map_grant_ref(
|
||||
xen_9pdev->xendev.gnttabdev,
|
||||
xen_9pdev->xendev.dom,
|
||||
xen_9pdev->rings[i].ref,
|
||||
PROT_READ | PROT_WRITE);
|
||||
if (!xen_9pdev->rings[i].intf) {
|
||||
goto out;
|
||||
}
|
||||
ring_order = xen_9pdev->rings[i].intf->ring_order;
|
||||
if (ring_order > MAX_RING_ORDER) {
|
||||
goto out;
|
||||
}
|
||||
xen_9pdev->rings[i].ring_order = ring_order;
|
||||
xen_9pdev->rings[i].data = xengnttab_map_domain_grant_refs(
|
||||
xen_9pdev->xendev.gnttabdev,
|
||||
(1 << ring_order),
|
||||
xen_9pdev->xendev.dom,
|
||||
xen_9pdev->rings[i].intf->ref,
|
||||
PROT_READ | PROT_WRITE);
|
||||
if (!xen_9pdev->rings[i].data) {
|
||||
goto out;
|
||||
}
|
||||
xen_9pdev->rings[i].ring.in = xen_9pdev->rings[i].data;
|
||||
xen_9pdev->rings[i].ring.out = xen_9pdev->rings[i].data +
|
||||
XEN_FLEX_RING_SIZE(ring_order);
|
||||
|
||||
xen_9pdev->rings[i].bh = qemu_bh_new(xen_9pfs_bh, &xen_9pdev->rings[i]);
|
||||
xen_9pdev->rings[i].out_cons = 0;
|
||||
xen_9pdev->rings[i].out_size = 0;
|
||||
xen_9pdev->rings[i].inprogress = false;
|
||||
|
||||
|
||||
xen_9pdev->rings[i].evtchndev = xenevtchn_open(NULL, 0);
|
||||
if (xen_9pdev->rings[i].evtchndev == NULL) {
|
||||
goto out;
|
||||
}
|
||||
fcntl(xenevtchn_fd(xen_9pdev->rings[i].evtchndev), F_SETFD, FD_CLOEXEC);
|
||||
xen_9pdev->rings[i].local_port = xenevtchn_bind_interdomain
|
||||
(xen_9pdev->rings[i].evtchndev,
|
||||
xendev->dom,
|
||||
xen_9pdev->rings[i].evtchn);
|
||||
if (xen_9pdev->rings[i].local_port == -1) {
|
||||
xen_pv_printf(xendev, 0,
|
||||
"xenevtchn_bind_interdomain failed port=%d\n",
|
||||
xen_9pdev->rings[i].evtchn);
|
||||
goto out;
|
||||
}
|
||||
xen_pv_printf(xendev, 2, "bind evtchn port %d\n", xendev->local_port);
|
||||
qemu_set_fd_handler(xenevtchn_fd(xen_9pdev->rings[i].evtchndev),
|
||||
xen_9pfs_evtchn_event, NULL, &xen_9pdev->rings[i]);
|
||||
}
|
||||
|
||||
xen_9pdev->security_model = xenstore_read_be_str(xendev, "security_model");
|
||||
xen_9pdev->path = xenstore_read_be_str(xendev, "path");
|
||||
xen_9pdev->id = s->fsconf.fsdev_id =
|
||||
g_strdup_printf("xen9p%d", xendev->dev);
|
||||
xen_9pdev->tag = s->fsconf.tag = xenstore_read_fe_str(xendev, "tag");
|
||||
v9fs_register_transport(s, &xen_9p_transport);
|
||||
fsdev = qemu_opts_create(qemu_find_opts("fsdev"),
|
||||
s->fsconf.tag,
|
||||
1, NULL);
|
||||
qemu_opt_set(fsdev, "fsdriver", "local", NULL);
|
||||
qemu_opt_set(fsdev, "path", xen_9pdev->path, NULL);
|
||||
qemu_opt_set(fsdev, "security_model", xen_9pdev->security_model, NULL);
|
||||
qemu_opts_set_id(fsdev, s->fsconf.fsdev_id);
|
||||
qemu_fsdev_add(fsdev);
|
||||
v9fs_device_realize_common(s, NULL);
|
||||
|
||||
return 0;
|
||||
|
||||
out:
|
||||
xen_9pfs_free(xendev);
|
||||
return -1;
|
||||
}
|
||||
|
||||
static void xen_9pfs_alloc(struct XenDevice *xendev)
|
||||
{
|
||||
xenstore_write_be_str(xendev, "versions", VERSIONS);
|
||||
xenstore_write_be_int(xendev, "max-rings", MAX_RINGS);
|
||||
xenstore_write_be_int(xendev, "max-ring-page-order", MAX_RING_ORDER);
|
||||
}
|
||||
|
||||
static void xen_9pfs_disconnect(struct XenDevice *xendev)
|
||||
{
|
||||
/* Dynamic hotplug of PV filesystems at runtime is not supported. */
|
||||
}
|
||||
|
||||
struct XenDevOps xen_9pfs_ops = {
|
||||
.size = sizeof(Xen9pfsDev),
|
||||
.flags = DEVOPS_FLAG_NEED_GNTDEV,
|
||||
.alloc = xen_9pfs_alloc,
|
||||
.init = xen_9pfs_init,
|
||||
.initialise = xen_9pfs_connect,
|
||||
.disconnect = xen_9pfs_disconnect,
|
||||
.free = xen_9pfs_free,
|
||||
};
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Xen 9p backend
|
||||
*
|
||||
* Copyright Aporeto 2017
|
||||
*
|
||||
* Authors:
|
||||
* Stefano Stabellini <stefano@aporeto.com>
|
||||
*
|
||||
* This work is licensed under the terms of the GNU GPL version 2 or
|
||||
* later. See the COPYING file in the top-level directory.
|
||||
*
|
||||
*/
|
||||
|
||||
#include <xen/io/protocols.h>
|
||||
#include "hw/xen/io/ring.h"
|
||||
|
||||
/*
|
||||
* Do not merge into xen-9p-backend.c: clang doesn't allow unused static
|
||||
* inline functions in c files.
|
||||
*/
|
||||
DEFINE_XEN_FLEX_RING_AND_INTF(xen_9pfs);
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef XEN_BLKIF_H
|
||||
#define XEN_BLKIF_H
|
||||
|
||||
#include <xen/io/ring.h>
|
||||
#include "hw/xen/io/ring.h"
|
||||
#include <xen/io/blkif.h>
|
||||
#include <xen/io/protocols.h>
|
||||
|
||||
|
||||
+1
-1
@@ -492,7 +492,7 @@ static int ioreq_map(struct ioreq *ioreq)
|
||||
return 0;
|
||||
}
|
||||
|
||||
#if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 480
|
||||
#if CONFIG_XEN_CTRL_INTERFACE_VERSION >= 40800
|
||||
|
||||
static void ioreq_free_copy_buffers(struct ioreq *ioreq)
|
||||
{
|
||||
|
||||
@@ -1 +1 @@
|
||||
obj-y += xen_platform.o xen_apic.o xen_pvdevice.o
|
||||
obj-y += xen_platform.o xen_apic.o xen_pvdevice.o xen-hvm.o xen-mapcache.o
|
||||
|
||||
@@ -4,3 +4,20 @@ xen_platform_log(char *s) "xen platform: %s"
|
||||
# hw/i386/xen/xen_pvdevice.c
|
||||
xen_pv_mmio_read(uint64_t addr) "WARNING: read from Xen PV Device MMIO space (address %"PRIx64")"
|
||||
xen_pv_mmio_write(uint64_t addr) "WARNING: write to Xen PV Device MMIO space (address %"PRIx64")"
|
||||
|
||||
# xen-hvm.c
|
||||
xen_ram_alloc(unsigned long ram_addr, unsigned long size) "requested: %#lx, size %#lx"
|
||||
xen_client_set_memory(uint64_t start_addr, unsigned long size, bool log_dirty) "%#"PRIx64" size %#lx, log_dirty %i"
|
||||
handle_ioreq(void *req, uint32_t type, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p type=%d dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d"
|
||||
handle_ioreq_read(void *req, uint32_t type, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p read type=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d"
|
||||
handle_ioreq_write(void *req, uint32_t type, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p write type=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d"
|
||||
cpu_ioreq_pio(void *req, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p pio dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d"
|
||||
cpu_ioreq_pio_read_reg(void *req, uint64_t data, uint64_t addr, uint32_t size) "I/O=%p pio read reg data=%#"PRIx64" port=%#"PRIx64" size=%d"
|
||||
cpu_ioreq_pio_write_reg(void *req, uint64_t data, uint64_t addr, uint32_t size) "I/O=%p pio write reg data=%#"PRIx64" port=%#"PRIx64" size=%d"
|
||||
cpu_ioreq_move(void *req, uint32_t dir, uint32_t df, uint32_t data_is_ptr, uint64_t addr, uint64_t data, uint32_t count, uint32_t size) "I/O=%p copy dir=%d df=%d ptr=%d port=%#"PRIx64" data=%#"PRIx64" count=%d size=%d"
|
||||
|
||||
# xen-mapcache.c
|
||||
xen_map_cache(uint64_t phys_addr) "want %#"PRIx64
|
||||
xen_remap_bucket(uint64_t index) "index %#"PRIx64
|
||||
xen_map_cache_return(void* ptr) "%p"
|
||||
|
||||
|
||||
@@ -22,7 +22,7 @@
|
||||
#include "qemu/error-report.h"
|
||||
#include "qemu/range.h"
|
||||
#include "sysemu/xen-mapcache.h"
|
||||
#include "trace-root.h"
|
||||
#include "trace.h"
|
||||
#include "exec/address-spaces.h"
|
||||
|
||||
#include <xen/hvm/ioreq.h>
|
||||
@@ -125,8 +125,8 @@ int xen_pci_slot_get_pirq(PCIDevice *pci_dev, int irq_num)
|
||||
|
||||
void xen_piix3_set_irq(void *opaque, int irq_num, int level)
|
||||
{
|
||||
xc_hvm_set_pci_intx_level(xen_xc, xen_domid, 0, 0, irq_num >> 2,
|
||||
irq_num & 3, level);
|
||||
xen_set_pci_intx_level(xen_domid, 0, 0, irq_num >> 2,
|
||||
irq_num & 3, level);
|
||||
}
|
||||
|
||||
void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
|
||||
@@ -141,7 +141,7 @@ void xen_piix_pci_write_config_client(uint32_t address, uint32_t val, int len)
|
||||
}
|
||||
v &= 0xf;
|
||||
if (((address + i) >= 0x60) && ((address + i) <= 0x63)) {
|
||||
xc_hvm_set_pci_link_route(xen_xc, xen_domid, address + i - 0x60, v);
|
||||
xen_set_pci_link_route(xen_domid, address + i - 0x60, v);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -156,7 +156,7 @@ int xen_is_pirq_msi(uint32_t msi_data)
|
||||
|
||||
void xen_hvm_inject_msi(uint64_t addr, uint32_t data)
|
||||
{
|
||||
xc_hvm_inject_msi(xen_xc, xen_domid, addr, data);
|
||||
xen_inject_msi(xen_domid, addr, data);
|
||||
}
|
||||
|
||||
static void xen_suspend_notifier(Notifier *notifier, void *data)
|
||||
@@ -168,7 +168,7 @@ static void xen_suspend_notifier(Notifier *notifier, void *data)
|
||||
|
||||
static void xen_set_irq(void *opaque, int irq, int level)
|
||||
{
|
||||
xc_hvm_set_isa_irq_level(xen_xc, xen_domid, irq, level);
|
||||
xen_set_isa_irq_level(xen_domid, irq, level);
|
||||
}
|
||||
|
||||
qemu_irq *xen_interrupt_controller_init(void)
|
||||
@@ -454,10 +454,10 @@ static void xen_set_memory(struct MemoryListener *listener,
|
||||
return;
|
||||
} else {
|
||||
if (add) {
|
||||
xen_map_memory_section(xen_xc, xen_domid, state->ioservid,
|
||||
xen_map_memory_section(xen_domid, state->ioservid,
|
||||
section);
|
||||
} else {
|
||||
xen_unmap_memory_section(xen_xc, xen_domid, state->ioservid,
|
||||
xen_unmap_memory_section(xen_domid, state->ioservid,
|
||||
section);
|
||||
}
|
||||
}
|
||||
@@ -481,10 +481,10 @@ static void xen_set_memory(struct MemoryListener *listener,
|
||||
section->mr, section->offset_within_region);
|
||||
} else {
|
||||
mem_type = HVMMEM_ram_ro;
|
||||
if (xc_hvm_set_mem_type(xen_xc, xen_domid, mem_type,
|
||||
start_addr >> TARGET_PAGE_BITS,
|
||||
size >> TARGET_PAGE_BITS)) {
|
||||
DPRINTF("xc_hvm_set_mem_type error, addr: "TARGET_FMT_plx"\n",
|
||||
if (xen_set_mem_type(xen_domid, mem_type,
|
||||
start_addr >> TARGET_PAGE_BITS,
|
||||
size >> TARGET_PAGE_BITS)) {
|
||||
DPRINTF("xen_set_mem_type error, addr: "TARGET_FMT_plx"\n",
|
||||
start_addr);
|
||||
}
|
||||
}
|
||||
@@ -521,7 +521,7 @@ static void xen_io_add(MemoryListener *listener,
|
||||
|
||||
memory_region_ref(mr);
|
||||
|
||||
xen_map_io_section(xen_xc, xen_domid, state->ioservid, section);
|
||||
xen_map_io_section(xen_domid, state->ioservid, section);
|
||||
}
|
||||
|
||||
static void xen_io_del(MemoryListener *listener,
|
||||
@@ -534,7 +534,7 @@ static void xen_io_del(MemoryListener *listener,
|
||||
return;
|
||||
}
|
||||
|
||||
xen_unmap_io_section(xen_xc, xen_domid, state->ioservid, section);
|
||||
xen_unmap_io_section(xen_domid, state->ioservid, section);
|
||||
|
||||
memory_region_unref(mr);
|
||||
}
|
||||
@@ -547,7 +547,7 @@ static void xen_device_realize(DeviceListener *listener,
|
||||
if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
||||
PCIDevice *pci_dev = PCI_DEVICE(dev);
|
||||
|
||||
xen_map_pcidev(xen_xc, xen_domid, state->ioservid, pci_dev);
|
||||
xen_map_pcidev(xen_domid, state->ioservid, pci_dev);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -559,7 +559,7 @@ static void xen_device_unrealize(DeviceListener *listener,
|
||||
if (object_dynamic_cast(OBJECT(dev), TYPE_PCI_DEVICE)) {
|
||||
PCIDevice *pci_dev = PCI_DEVICE(dev);
|
||||
|
||||
xen_unmap_pcidev(xen_xc, xen_domid, state->ioservid, pci_dev);
|
||||
xen_unmap_pcidev(xen_domid, state->ioservid, pci_dev);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -586,9 +586,8 @@ static void xen_sync_dirty_bitmap(XenIOState *state,
|
||||
return;
|
||||
}
|
||||
|
||||
rc = xc_hvm_track_dirty_vram(xen_xc, xen_domid,
|
||||
start_addr >> TARGET_PAGE_BITS, npages,
|
||||
bitmap);
|
||||
rc = xen_track_dirty_vram(xen_domid, start_addr >> TARGET_PAGE_BITS,
|
||||
npages, bitmap);
|
||||
if (rc < 0) {
|
||||
#ifndef ENODATA
|
||||
#define ENODATA ENOENT
|
||||
@@ -634,7 +633,7 @@ static void xen_log_stop(MemoryListener *listener, MemoryRegionSection *section,
|
||||
if (old & ~new & (1 << DIRTY_MEMORY_VGA)) {
|
||||
state->log_for_dirtybit = NULL;
|
||||
/* Disable dirty bit tracking */
|
||||
xc_hvm_track_dirty_vram(xen_xc, xen_domid, 0, 0, NULL);
|
||||
xen_track_dirty_vram(xen_domid, 0, 0, NULL);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1139,7 +1138,7 @@ static void xen_hvm_change_state_handler(void *opaque, int running,
|
||||
xen_main_loop_prepare(state);
|
||||
}
|
||||
|
||||
xen_set_ioreq_server_state(xen_xc, xen_domid,
|
||||
xen_set_ioreq_server_state(xen_domid,
|
||||
state->ioservid,
|
||||
(rstate == RUN_STATE_RUNNING));
|
||||
}
|
||||
@@ -1227,7 +1226,15 @@ void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
|
||||
goto err;
|
||||
}
|
||||
|
||||
xen_create_ioreq_server(xen_xc, xen_domid, &state->ioservid);
|
||||
if (xen_domid_restrict) {
|
||||
rc = xen_restrict(xen_domid);
|
||||
if (rc < 0) {
|
||||
error_report("failed to restrict: error %d", errno);
|
||||
goto err;
|
||||
}
|
||||
}
|
||||
|
||||
xen_create_ioreq_server(xen_domid, &state->ioservid);
|
||||
|
||||
state->exit.notify = xen_exit_notifier;
|
||||
qemu_add_exit_notifier(&state->exit);
|
||||
@@ -1238,7 +1245,7 @@ void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
|
||||
state->wakeup.notify = xen_wakeup_notifier;
|
||||
qemu_register_wakeup_notifier(&state->wakeup);
|
||||
|
||||
rc = xen_get_ioreq_server_info(xen_xc, xen_domid, state->ioservid,
|
||||
rc = xen_get_ioreq_server_info(xen_domid, state->ioservid,
|
||||
&ioreq_pfn, &bufioreq_pfn,
|
||||
&bufioreq_evtchn);
|
||||
if (rc < 0) {
|
||||
@@ -1288,7 +1295,7 @@ void xen_hvm_init(PCMachineState *pcms, MemoryRegion **ram_memory)
|
||||
/* Note: cpus is empty at this point in init */
|
||||
state->cpu_by_vcpu_id = g_malloc0(max_cpus * sizeof(CPUState *));
|
||||
|
||||
rc = xen_set_ioreq_server_state(xen_xc, xen_domid, state->ioservid, true);
|
||||
rc = xen_set_ioreq_server_state(xen_domid, state->ioservid, true);
|
||||
if (rc < 0) {
|
||||
error_report("failed to enable ioreq server info: error %d handle=%p",
|
||||
errno, xen_xc);
|
||||
@@ -1391,7 +1398,7 @@ void xen_shutdown_fatal_error(const char *fmt, ...)
|
||||
qemu_system_shutdown_request();
|
||||
}
|
||||
|
||||
void xen_modified_memory(ram_addr_t start, ram_addr_t length)
|
||||
void xen_hvm_modified_memory(ram_addr_t start, ram_addr_t length)
|
||||
{
|
||||
if (unlikely(xen_in_migration)) {
|
||||
int rc;
|
||||
@@ -1403,7 +1410,7 @@ void xen_modified_memory(ram_addr_t start, ram_addr_t length)
|
||||
start_pfn = start >> TARGET_PAGE_BITS;
|
||||
nb_pages = ((start + length + TARGET_PAGE_SIZE - 1) >> TARGET_PAGE_BITS)
|
||||
- start_pfn;
|
||||
rc = xc_hvm_modified_memory(xen_xc, xen_domid, start_pfn, nb_pages);
|
||||
rc = xen_modified_memory(xen_domid, start_pfn, nb_pages);
|
||||
if (rc) {
|
||||
fprintf(stderr,
|
||||
"%s failed for "RAM_ADDR_FMT" ("RAM_ADDR_FMT"): %i, %s\n",
|
||||
@@ -19,7 +19,7 @@
|
||||
#include <xen/hvm/params.h>
|
||||
|
||||
#include "sysemu/xen-mapcache.h"
|
||||
#include "trace-root.h"
|
||||
#include "trace.h"
|
||||
|
||||
|
||||
//#define MAPCACHE_DEBUG
|
||||
@@ -195,7 +195,7 @@ static void platform_fixed_ioport_writeb(void *opaque, uint32_t addr, uint32_t v
|
||||
case 0: /* Platform flags */ {
|
||||
hvmmem_type_t mem_type = (val & PFFLAG_ROM_LOCK) ?
|
||||
HVMMEM_ram_ro : HVMMEM_ram_rw;
|
||||
if (xc_hvm_set_mem_type(xen_xc, xen_domid, mem_type, 0xc0, 0x40)) {
|
||||
if (xen_set_mem_type(xen_domid, mem_type, 0xc0, 0x40)) {
|
||||
DPRINTF("unable to change ro/rw state of ROM memory area!\n");
|
||||
} else {
|
||||
s->flags = val & PFFLAG_ROM_LOCK;
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@
|
||||
#include "qapi/qmp/qint.h"
|
||||
#include "qapi/qmp/qstring.h"
|
||||
|
||||
#include <xen/io/ring.h>
|
||||
#include "hw/xen/io/ring.h"
|
||||
#include <xen/io/usbif.h>
|
||||
|
||||
/*
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
# xen backend driver support
|
||||
common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o xen_pvdev.o
|
||||
common-obj-$(CONFIG_XEN) += xen_backend.o xen_devconfig.o xen_pvdev.o xen-common.o
|
||||
|
||||
obj-$(CONFIG_XEN_PCI_PASSTHROUGH) += xen-host-pci-device.o
|
||||
obj-$(CONFIG_XEN_PCI_PASSTHROUGH) += xen_pt.o xen_pt_config_init.o xen_pt_graphics.o xen_pt_msi.o
|
||||
|
||||
@@ -11,3 +11,4 @@ xen_map_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %
|
||||
xen_unmap_portio_range(uint32_t id, uint64_t start_addr, uint64_t end_addr) "id: %u start: %#"PRIx64" end: %#"PRIx64
|
||||
xen_map_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x"
|
||||
xen_unmap_pcidev(uint32_t id, uint8_t bus, uint8_t dev, uint8_t func) "id: %u bdf: %02x.%02x.%02x"
|
||||
xen_domid_restrict(int err) "err: %u"
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user