2013-09-04 05:43:00 +00:00
|
|
|
/*
|
|
|
|
* libxl_conf.h: libxl configuration management
|
|
|
|
*
|
2014-02-01 01:09:53 +00:00
|
|
|
* Copyright (C) 2011-2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2013-09-04 05:43:00 +00:00
|
|
|
* Copyright (C) 2011 Univention GmbH.
|
2011-02-10 22:42:34 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2011-02-10 22:42:34 +00:00
|
|
|
*/
|
|
|
|
|
2019-06-07 20:20:29 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <libxl.h>
|
|
|
|
|
|
|
|
#include "internal.h"
|
|
|
|
#include "libvirt_internal.h"
|
|
|
|
#include "virdomainobjlist.h"
|
|
|
|
#include "domain_event.h"
|
|
|
|
#include "capabilities.h"
|
|
|
|
#include "configmake.h"
|
|
|
|
#include "virportallocator.h"
|
|
|
|
#include "virobject.h"
|
|
|
|
#include "virchrdev.h"
|
|
|
|
#include "virhostdev.h"
|
|
|
|
#include "locking/lock_manager.h"
|
|
|
|
#include "virfirmware.h"
|
|
|
|
#include "libxl_capabilities.h"
|
|
|
|
#include "libxl_logger.h"
|
|
|
|
|
|
|
|
#define LIBXL_DRIVER_NAME "xenlight"
|
|
|
|
#define LIBXL_VNC_PORT_MIN 5900
|
|
|
|
#define LIBXL_VNC_PORT_MAX 65535
|
|
|
|
|
|
|
|
#define LIBXL_MIGRATION_PORT_MIN 49152
|
|
|
|
#define LIBXL_MIGRATION_PORT_MAX 49216
|
|
|
|
|
|
|
|
#define LIBXL_CONFIG_BASE_DIR SYSCONFDIR "/libvirt"
|
|
|
|
#define LIBXL_CONFIG_DIR SYSCONFDIR "/libvirt/libxl"
|
|
|
|
#define LIBXL_AUTOSTART_DIR LIBXL_CONFIG_DIR "/autostart"
|
2019-08-20 15:05:12 +00:00
|
|
|
#define LIBXL_STATE_DIR RUNSTATEDIR "/libvirt/libxl"
|
2019-06-07 20:20:29 +00:00
|
|
|
#define LIBXL_LOG_DIR LOCALSTATEDIR "/log/libvirt/libxl"
|
|
|
|
#define LIBXL_LIB_DIR LOCALSTATEDIR "/lib/libvirt/libxl"
|
|
|
|
#define LIBXL_SAVE_DIR LIBXL_LIB_DIR "/save"
|
|
|
|
#define LIBXL_DUMP_DIR LIBXL_LIB_DIR "/dump"
|
|
|
|
#define LIBXL_CHANNEL_DIR LIBXL_LIB_DIR "/channel/target"
|
|
|
|
#define LIBXL_BOOTLOADER_PATH "pygrub"
|
2011-02-10 22:42:34 +00:00
|
|
|
|
2015-03-17 20:10:28 +00:00
|
|
|
|
2011-02-10 22:42:34 +00:00
|
|
|
typedef struct _libxlDriverPrivate libxlDriverPrivate;
|
|
|
|
typedef libxlDriverPrivate *libxlDriverPrivatePtr;
|
2013-08-30 20:52:14 +00:00
|
|
|
|
|
|
|
typedef struct _libxlDriverConfig libxlDriverConfig;
|
|
|
|
typedef libxlDriverConfig *libxlDriverConfigPtr;
|
|
|
|
|
|
|
|
struct _libxlDriverConfig {
|
|
|
|
virObject parent;
|
|
|
|
|
2013-08-30 20:32:10 +00:00
|
|
|
const libxl_version_info *verInfo;
|
2011-02-10 22:42:34 +00:00
|
|
|
unsigned int version;
|
|
|
|
|
2013-08-09 23:41:46 +00:00
|
|
|
/* log stream for driver-wide libxl ctx */
|
2017-01-09 15:20:50 +00:00
|
|
|
libxlLoggerPtr logger;
|
2011-02-10 22:42:34 +00:00
|
|
|
/* libxl ctx for driver wide ops; getVersion, getNodeInfo, ... */
|
2012-11-26 16:28:56 +00:00
|
|
|
libxl_ctx *ctx;
|
2011-02-10 22:42:34 +00:00
|
|
|
|
2013-06-19 02:46:26 +00:00
|
|
|
/* Controls automatic ballooning of domain0. If true, attempt to get
|
|
|
|
* memory for new domains from domain0. */
|
|
|
|
bool autoballoon;
|
|
|
|
|
2015-04-14 20:38:46 +00:00
|
|
|
char *lockManagerName;
|
|
|
|
|
2016-02-05 20:45:03 +00:00
|
|
|
int keepAliveInterval;
|
|
|
|
unsigned int keepAliveCount;
|
|
|
|
|
2018-04-12 01:03:22 +00:00
|
|
|
bool nested_hvm;
|
|
|
|
|
2013-08-30 20:52:14 +00:00
|
|
|
/* Once created, caps are immutable */
|
|
|
|
virCapsPtr caps;
|
|
|
|
|
2013-09-09 15:15:15 +00:00
|
|
|
char *configBaseDir;
|
2013-08-30 20:52:14 +00:00
|
|
|
char *configDir;
|
|
|
|
char *autostartDir;
|
|
|
|
char *logDir;
|
|
|
|
char *stateDir;
|
|
|
|
char *libDir;
|
|
|
|
char *saveDir;
|
2014-02-19 23:09:36 +00:00
|
|
|
char *autoDumpDir;
|
libxl: channels support
And allow libxl to handle channel element which creates a Xen
console visible to the guest as a low-bandwitdh communication
channel. If type is PTY we also fetch the tty after boot using
libxl_channel_getinfo to fetch the tty path. On socket case,
we autogenerate a path if not specified in the XML. Path autogenerated
is slightly different from qemu driver: qemu stores also on
"channels/target" but it creates then a directory per domain with
each channel target name. libxl doesn't appear to have a clear
definition of private files associated with each domain, so for
simplicity we do it slightly different. On qemu each autogenerated
channel goes like:
channels/target/<domain-name>/<target name>
Whereas for libxl:
channels/target/<domain-name>-<target name>
Should note that if path is not specified it won't persist,
existing only on live XML, unless user had initially specified it.
Since support for libxl channels only came on Xen >= 4.5 we therefore
need to conditionally compile it with LIBXL_HAVE_DEVICE_CHANNEL.
After this patch and having a qemu guest agent:
$ cat domain.xml | grep -a1 channel | head -n 5 | tail -n 4
<channel type='unix'>
<source mode='bind' path='/tmp/channel'/>
<target type='xen' name='org.qemu.guest_agent.0'/>
</channel>
$ virsh create domain.xml
$ echo '{"execute":"guest-network-get-interfaces"}' | socat
stdio,ignoreeof unix-connect:/tmp/channel
{"execute":"guest-network-get-interfaces"}
{"return": [{"name": "lo", "ip-addresses": [{"ip-address-type": "ipv4",
"ip-address": "127.0.0.1", "prefix": 8}, {"ip-address-type": "ipv6",
"ip-address": "::1", "prefix": 128}], "hardware-address":
"00:00:00:00:00:00"}, {"name": "eth0", "ip-addresses":
[{"ip-address-type": "ipv4", "ip-address": "10.100.0.6", "prefix": 24},
{"ip-address-type": "ipv6", "ip-address": "fe80::216:3eff:fe40:88eb",
"prefix": 64}], "hardware-address": "00:16:3e:40:88:eb"}, {"name":
"sit0"}]}
Signed-off-by: Joao Martins <joao.m.martins@oracle.com>
Signed-off-by: Jim Fehlig <jfehlig@suse.com>
2016-09-26 17:33:16 +00:00
|
|
|
char *channelDir;
|
2016-05-18 14:24:37 +00:00
|
|
|
|
|
|
|
virFirmwarePtr *firmwares;
|
|
|
|
size_t nfirmwares;
|
2013-08-30 20:52:14 +00:00
|
|
|
};
|
|
|
|
|
2019-10-04 16:14:10 +00:00
|
|
|
G_DEFINE_AUTOPTR_CLEANUP_FUNC(libxlDriverConfig, virObjectUnref);
|
|
|
|
|
2013-08-30 20:52:14 +00:00
|
|
|
|
|
|
|
struct _libxlDriverPrivate {
|
|
|
|
virMutex lock;
|
|
|
|
|
2014-03-06 09:46:11 +00:00
|
|
|
virHostdevManagerPtr hostdevMgr;
|
2013-08-30 20:52:14 +00:00
|
|
|
/* Require lock to get reference on 'config',
|
|
|
|
* then lockless thereafter */
|
|
|
|
libxlDriverConfigPtr config;
|
|
|
|
|
2019-05-23 10:34:08 +00:00
|
|
|
/* pid file FD, ensures two copies of the driver can't use the same root */
|
|
|
|
int lockFD;
|
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Atomic inc/dec only */
|
2013-08-30 20:54:50 +00:00
|
|
|
unsigned int nactive;
|
2013-08-30 20:52:14 +00:00
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Immutable pointers. Caller must provide locking */
|
2012-10-31 19:03:55 +00:00
|
|
|
virStateInhibitCallback inhibitCallback;
|
|
|
|
void *inhibitOpaque;
|
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Immutable pointer, self-locking APIs */
|
2013-01-11 16:04:47 +00:00
|
|
|
virDomainObjListPtr domains;
|
2011-02-10 22:42:34 +00:00
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Immutable pointer, immutable object */
|
2013-08-30 20:52:14 +00:00
|
|
|
virDomainXMLOptionPtr xmlopt;
|
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Immutable pointer, self-locking APIs */
|
2013-11-21 10:43:10 +00:00
|
|
|
virObjectEventStatePtr domainEventState;
|
2011-03-29 12:18:24 +00:00
|
|
|
|
2018-02-06 09:09:11 +00:00
|
|
|
/* Immutable pointer, immutable object */
|
2018-02-06 09:09:06 +00:00
|
|
|
virPortAllocatorRangePtr reservedGraphicsPorts;
|
2013-08-30 20:52:14 +00:00
|
|
|
|
2018-02-06 09:09:11 +00:00
|
|
|
/* Immutable pointer, immutable object */
|
2018-02-06 09:09:06 +00:00
|
|
|
virPortAllocatorRangePtr migrationPorts;
|
2014-05-08 21:56:51 +00:00
|
|
|
|
2013-08-30 20:55:52 +00:00
|
|
|
/* Immutable pointer, lockless APIs*/
|
2013-08-30 20:52:14 +00:00
|
|
|
virSysinfoDefPtr hostsysinfo;
|
2015-04-14 20:38:46 +00:00
|
|
|
|
|
|
|
/* Immutable pointer. lockless access */
|
|
|
|
virLockManagerPluginPtr lockManager;
|
2011-02-10 22:42:34 +00:00
|
|
|
};
|
|
|
|
|
2019-06-07 20:20:29 +00:00
|
|
|
#define LIBXL_SAVE_MAGIC "libvirt-xml\n \0 \r"
|
|
|
|
#ifdef LIBXL_HAVE_SRM_V2
|
|
|
|
# define LIBXL_SAVE_VERSION 2
|
|
|
|
#else
|
|
|
|
# define LIBXL_SAVE_VERSION 1
|
|
|
|
#endif
|
2011-05-30 09:53:02 +00:00
|
|
|
|
|
|
|
typedef struct _libxlSavefileHeader libxlSavefileHeader;
|
|
|
|
typedef libxlSavefileHeader *libxlSavefileHeaderPtr;
|
|
|
|
struct _libxlSavefileHeader {
|
|
|
|
char magic[sizeof(LIBXL_SAVE_MAGIC)-1];
|
|
|
|
uint32_t version;
|
|
|
|
uint32_t xmlLen;
|
|
|
|
/* 24 bytes used, pad up to 64 bytes */
|
|
|
|
uint32_t unused[10];
|
|
|
|
};
|
2011-02-10 22:42:34 +00:00
|
|
|
|
2013-08-30 20:52:14 +00:00
|
|
|
libxlDriverConfigPtr
|
|
|
|
libxlDriverConfigNew(void);
|
|
|
|
|
|
|
|
libxlDriverConfigPtr
|
|
|
|
libxlDriverConfigGet(libxlDriverPrivatePtr driver);
|
2013-08-30 17:11:08 +00:00
|
|
|
|
2014-02-26 20:44:09 +00:00
|
|
|
int
|
|
|
|
libxlDriverNodeGetInfo(libxlDriverPrivatePtr driver,
|
|
|
|
virNodeInfoPtr info);
|
|
|
|
|
2013-09-09 15:15:15 +00:00
|
|
|
int libxlDriverConfigLoadFile(libxlDriverConfigPtr cfg,
|
|
|
|
const char *filename);
|
|
|
|
|
2017-02-01 00:10:34 +00:00
|
|
|
int
|
|
|
|
libxlDriverGetDom0MaxmemConf(libxlDriverConfigPtr cfg,
|
|
|
|
unsigned long long *maxmem);
|
|
|
|
|
2011-05-26 15:09:01 +00:00
|
|
|
int
|
2012-11-26 16:28:56 +00:00
|
|
|
libxlMakeDisk(virDomainDiskDefPtr l_dev, libxl_device_disk *x_dev);
|
2017-02-07 19:05:15 +00:00
|
|
|
|
|
|
|
void
|
|
|
|
libxlUpdateDiskDef(virDomainDiskDefPtr l_dev, libxl_device_disk *x_dev);
|
|
|
|
|
2011-05-26 15:09:01 +00:00
|
|
|
int
|
2014-01-06 18:37:20 +00:00
|
|
|
libxlMakeNic(virDomainDefPtr def,
|
|
|
|
virDomainNetDefPtr l_nic,
|
2016-12-14 10:53:32 +00:00
|
|
|
libxl_device_nic *x_nic,
|
|
|
|
bool attach);
|
2011-05-26 15:09:01 +00:00
|
|
|
int
|
2018-02-06 09:09:06 +00:00
|
|
|
libxlMakeVfb(virPortAllocatorRangePtr graphicsports,
|
2011-05-30 09:53:00 +00:00
|
|
|
virDomainGraphicsDefPtr l_vfb, libxl_device_vfb *x_vfb);
|
2011-05-26 15:09:01 +00:00
|
|
|
|
2014-03-06 09:46:11 +00:00
|
|
|
int
|
2014-03-13 11:59:32 +00:00
|
|
|
libxlMakePCI(virDomainHostdevDefPtr hostdev, libxl_device_pci *pcidev);
|
2014-03-06 09:46:11 +00:00
|
|
|
|
2019-06-07 20:20:29 +00:00
|
|
|
#ifdef LIBXL_HAVE_PVUSB
|
2016-06-15 06:00:09 +00:00
|
|
|
int
|
|
|
|
libxlMakeUSBController(virDomainControllerDefPtr controller,
|
|
|
|
libxl_device_usbctrl *usbctrl);
|
|
|
|
|
2016-05-19 08:14:33 +00:00
|
|
|
int
|
|
|
|
libxlMakeUSB(virDomainHostdevDefPtr hostdev, libxl_device_usbdev *usbdev);
|
2019-06-07 20:20:29 +00:00
|
|
|
#endif
|
2016-05-19 08:14:33 +00:00
|
|
|
|
2014-05-30 14:53:12 +00:00
|
|
|
virDomainXMLOptionPtr
|
2019-12-03 10:49:49 +00:00
|
|
|
libxlCreateXMLConf(libxlDriverPrivatePtr driver);
|
2014-05-30 14:53:12 +00:00
|
|
|
|
2019-06-07 20:20:29 +00:00
|
|
|
#ifdef LIBXL_HAVE_DEVICE_CHANNEL
|
|
|
|
# define LIBXL_ATTR_UNUSED
|
|
|
|
#else
|
2019-10-14 12:45:33 +00:00
|
|
|
# define LIBXL_ATTR_UNUSED G_GNUC_UNUSED
|
2019-06-07 20:20:29 +00:00
|
|
|
#endif
|
2011-02-10 22:42:34 +00:00
|
|
|
int
|
2018-02-06 09:09:06 +00:00
|
|
|
libxlBuildDomainConfig(virPortAllocatorRangePtr graphicsports,
|
2014-05-30 13:46:35 +00:00
|
|
|
virDomainDefPtr def,
|
2018-04-12 01:03:20 +00:00
|
|
|
libxlDriverConfigPtr cfg,
|
2014-05-30 13:46:35 +00:00
|
|
|
libxl_domain_config *d_config);
|
2011-02-10 22:42:34 +00:00
|
|
|
|
2013-08-30 20:56:40 +00:00
|
|
|
static inline void
|
|
|
|
libxlDriverLock(libxlDriverPrivatePtr driver)
|
|
|
|
{
|
|
|
|
virMutexLock(&driver->lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
libxlDriverUnlock(libxlDriverPrivatePtr driver)
|
|
|
|
{
|
|
|
|
virMutexUnlock(&driver->lock);
|
|
|
|
}
|