2013-08-30 17:18:31 +00:00
|
|
|
/*
|
|
|
|
* libxl_domain.h: libxl domain object private state
|
|
|
|
*
|
2014-02-01 01:09:53 +00:00
|
|
|
* Copyright (C) 2011-2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
2013-08-30 17:18:31 +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
|
|
|
|
* License along with this library. If not, see
|
|
|
|
* <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Jim Fehlig <jfehlig@suse.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LIBXL_DOMAIN_H
|
|
|
|
# define LIBXL_DOMAIN_H
|
|
|
|
|
|
|
|
# include <libxl.h>
|
|
|
|
|
|
|
|
# include "domain_conf.h"
|
|
|
|
# include "libxl_conf.h"
|
|
|
|
# include "virchrdev.h"
|
|
|
|
|
2013-12-19 05:54:39 +00:00
|
|
|
# define JOB_MASK(job) (1 << (job - 1))
|
|
|
|
# define DEFAULT_JOB_MASK \
|
|
|
|
(JOB_MASK(LIBXL_JOB_DESTROY) | \
|
|
|
|
JOB_MASK(LIBXL_JOB_ABORT))
|
|
|
|
|
|
|
|
/* Only 1 job is allowed at any time
|
|
|
|
* A job includes *all* libxl.so api, even those just querying
|
|
|
|
* information, not merely actions */
|
|
|
|
enum libxlDomainJob {
|
|
|
|
LIBXL_JOB_NONE = 0, /* Always set to 0 for easy if (jobActive) conditions */
|
|
|
|
LIBXL_JOB_QUERY, /* Doesn't change any state */
|
|
|
|
LIBXL_JOB_DESTROY, /* Destroys the domain (cannot be masked out) */
|
|
|
|
LIBXL_JOB_MODIFY, /* May change state */
|
|
|
|
|
|
|
|
LIBXL_JOB_LAST
|
|
|
|
};
|
|
|
|
VIR_ENUM_DECL(libxlDomainJob)
|
|
|
|
|
|
|
|
|
|
|
|
struct libxlDomainJobObj {
|
|
|
|
virCond cond; /* Use to coordinate jobs */
|
|
|
|
enum libxlDomainJob active; /* Currently running job */
|
|
|
|
int owner; /* Thread which set current job */
|
2015-11-13 13:14:47 +00:00
|
|
|
unsigned long long started; /* When the job started */
|
|
|
|
virDomainJobInfoPtr current; /* Statistics for the current job */
|
2013-12-19 05:54:39 +00:00
|
|
|
};
|
|
|
|
|
2013-08-30 17:18:31 +00:00
|
|
|
typedef struct _libxlDomainObjPrivate libxlDomainObjPrivate;
|
|
|
|
typedef libxlDomainObjPrivate *libxlDomainObjPrivatePtr;
|
|
|
|
struct _libxlDomainObjPrivate {
|
|
|
|
virObjectLockable parent;
|
|
|
|
|
|
|
|
/* console */
|
|
|
|
virChrdevsPtr devs;
|
|
|
|
libxl_evgen_domain_death *deathW;
|
2014-05-08 21:56:51 +00:00
|
|
|
unsigned short migrationPort;
|
2015-04-14 20:38:46 +00:00
|
|
|
char *lockState;
|
2013-12-19 05:54:39 +00:00
|
|
|
|
|
|
|
struct libxlDomainJobObj job;
|
2016-07-11 13:54:31 +00:00
|
|
|
|
|
|
|
bool hookRun; /* true if there was a hook run over this domain */
|
2013-08-30 17:18:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
extern virDomainXMLPrivateDataCallbacks libxlDomainXMLPrivateDataCallbacks;
|
|
|
|
extern virDomainDefParserConfig libxlDomainDefParserConfig;
|
2014-02-26 19:28:44 +00:00
|
|
|
extern const struct libxl_event_hooks ev_hooks;
|
2013-08-30 17:18:31 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
libxlDomainObjPrivateInitCtx(virDomainObjPtr vm);
|
|
|
|
|
2013-12-19 05:54:39 +00:00
|
|
|
int
|
|
|
|
libxlDomainObjBeginJob(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr obj,
|
|
|
|
enum libxlDomainJob job)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2016-06-12 10:30:00 +00:00
|
|
|
void
|
2013-12-19 05:54:39 +00:00
|
|
|
libxlDomainObjEndJob(libxlDriverPrivatePtr driver,
|
2016-06-12 10:30:00 +00:00
|
|
|
virDomainObjPtr obj);
|
2013-12-19 05:54:39 +00:00
|
|
|
|
2015-11-13 13:14:47 +00:00
|
|
|
int
|
|
|
|
libxlDomainJobUpdateTime(struct libxlDomainJobObj *job)
|
|
|
|
ATTRIBUTE_RETURN_CHECK;
|
|
|
|
|
2014-02-26 01:51:52 +00:00
|
|
|
void
|
|
|
|
libxlDomainEventQueue(libxlDriverPrivatePtr driver,
|
|
|
|
virObjectEventPtr event);
|
|
|
|
|
2014-02-26 03:55:47 +00:00
|
|
|
char *
|
|
|
|
libxlDomainManagedSavePath(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2014-02-26 04:28:51 +00:00
|
|
|
int
|
|
|
|
libxlDomainSaveImageOpen(libxlDriverPrivatePtr driver,
|
|
|
|
libxlDriverConfigPtr cfg,
|
|
|
|
const char *from,
|
|
|
|
virDomainDefPtr *ret_def,
|
|
|
|
libxlSavefileHeaderPtr ret_hdr)
|
|
|
|
ATTRIBUTE_NONNULL(4) ATTRIBUTE_NONNULL(5);
|
|
|
|
|
2015-03-04 00:54:50 +00:00
|
|
|
int
|
|
|
|
libxlDomainDestroyInternal(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2014-02-26 19:04:34 +00:00
|
|
|
void
|
|
|
|
libxlDomainCleanup(libxlDriverPrivatePtr driver,
|
2015-07-07 18:29:24 +00:00
|
|
|
virDomainObjPtr vm);
|
2014-02-26 19:04:34 +00:00
|
|
|
|
2015-02-12 18:37:46 +00:00
|
|
|
/*
|
|
|
|
* Note: Xen 4.3 removed the const from the event handler signature.
|
|
|
|
* Detect which signature to use based on
|
|
|
|
* LIBXL_HAVE_NONCONST_EVENT_OCCURS_EVENT_ARG.
|
|
|
|
*/
|
|
|
|
# ifdef LIBXL_HAVE_NONCONST_EVENT_OCCURS_EVENT_ARG
|
|
|
|
# define VIR_LIBXL_EVENT_CONST /* empty */
|
|
|
|
# else
|
|
|
|
# define VIR_LIBXL_EVENT_CONST const
|
|
|
|
# endif
|
|
|
|
|
|
|
|
void
|
|
|
|
libxlDomainEventHandler(void *data,
|
|
|
|
VIR_LIBXL_EVENT_CONST libxl_event *event);
|
|
|
|
|
2014-02-26 19:33:46 +00:00
|
|
|
int
|
|
|
|
libxlDomainAutoCoreDump(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2014-02-26 20:48:11 +00:00
|
|
|
int
|
|
|
|
libxlDomainSetVcpuAffinities(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm);
|
|
|
|
|
2014-02-26 21:11:30 +00:00
|
|
|
int
|
libxl: support Xen migration stream V2 in save/restore
Xen 4.6 introduced a new migration stream commonly referred to as
"migration V2". Xen 4.6 and newer always produce this new stream,
whereas Xen 4.5 and older always produce the legacy stream.
Support for migration stream V2 can be detected at build time with
LIBXL_HAVE_SRM_V2 from libxl.h. The legacy and V2 streams are not
compatible, but a V2 host can accept and convert a legacy stream.
Commit e7440656 changed the libxl driver to use the lowest libxl
API version possible (version 0x040200) to ensure the driver
builds against older Xen releases. The old 4.2 restore API does
not support specifying a stream version and assumes a legacy
stream, even if the incoming stream is migration V2. Thinking it
has been given a legacy stream, libxl will fail to convert an
incoming stream that is already V2, which causes the entire
restore operation to fail. Xen's libvirt-related OSSTest has been
failing since commit e7440656 landed in libvirt.git master. One
of the more recent failures can be seen here
http://lists.xenproject.org/archives/html/xen-devel/2016-05/msg00071.html
This patch changes the call to libxl_domain_create_restore() to
include the stream version if LIBXL_HAVE_SRM_V2 is defined. The
version field of the libxlSavefileHeader struct is also updated
to '2' when LIBXL_HAVE_SRM_V2 is defined, ensuring the stream
version in the header matches the actual stream version produced
by Xen. Along with bumping the libxl API requirement to 0x040400,
this patch fixes save/restore on a migration V2 Xen host.
Oddly, migration has never used the libxlSavefileHeader. It
handles passing configuration in the Begin and Prepare phases,
and then calls libxl directly to transfer domain state/memory
in the Perform phase. A subsequent patch will add stream
version handling in the Begin and Prepare phase handshaking,
which will fix the migration related OSSTest failures.
Signed-off-by: Jim Fehlig <jfehlig@suse.com>
2016-05-02 18:00:39 +00:00
|
|
|
libxlDomainStartNew(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
bool start_paused);
|
|
|
|
|
|
|
|
int
|
|
|
|
libxlDomainStartRestore(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainObjPtr vm,
|
|
|
|
bool start_paused,
|
|
|
|
int restore_fd,
|
|
|
|
uint32_t restore_ver);
|
2014-02-26 21:11:30 +00:00
|
|
|
|
2014-06-04 20:02:27 +00:00
|
|
|
bool
|
|
|
|
libxlDomainDefCheckABIStability(libxlDriverPrivatePtr driver,
|
|
|
|
virDomainDefPtr src,
|
|
|
|
virDomainDefPtr dst);
|
|
|
|
|
2013-08-30 17:18:31 +00:00
|
|
|
#endif /* LIBXL_DOMAIN_H */
|