2007-07-17 13:27:26 +00:00
|
|
|
/*
|
|
|
|
* openvz_driver.c: core driver methods for managing OpenVZ VEs
|
|
|
|
*
|
2012-03-02 20:27:39 +00:00
|
|
|
* Copyright (C) 2010-2012 Red Hat, Inc.
|
2007-07-17 13:27:26 +00:00
|
|
|
* Copyright (C) 2006, 2007 Binary Karma
|
|
|
|
* Copyright (C) 2006 Shuveb Hussain
|
2007-09-03 15:37:07 +00:00
|
|
|
* Copyright (C) 2007 Anoop Joe Cyriac
|
2007-07-17 13:27:26 +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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*
|
2008-02-05 19:27:37 +00:00
|
|
|
* Authors:
|
2007-09-03 15:37:07 +00:00
|
|
|
* Shuveb Hussain <shuveb@binarykarma.com>
|
|
|
|
* Anoop Joe Cyriac <anoop@binarykarma.com>
|
|
|
|
*
|
2007-07-17 13:27:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/poll.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <sys/utsname.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
2008-11-04 22:30:33 +00:00
|
|
|
#include "virterror_internal.h"
|
2008-11-04 23:22:06 +00:00
|
|
|
#include "datatypes.h"
|
2007-09-03 15:37:07 +00:00
|
|
|
#include "openvz_driver.h"
|
2012-05-07 21:00:28 +00:00
|
|
|
#include "openvz_util.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
#include "buf.h"
|
2007-07-19 16:22:40 +00:00
|
|
|
#include "util.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
#include "openvz_conf.h"
|
2007-07-25 23:16:30 +00:00
|
|
|
#include "nodeinfo.h"
|
2008-07-16 14:45:55 +00:00
|
|
|
#include "memory.h"
|
2011-07-19 18:32:58 +00:00
|
|
|
#include "virfile.h"
|
2012-04-25 19:18:16 +00:00
|
|
|
#include "virtypedparam.h"
|
2010-11-29 09:23:15 +00:00
|
|
|
#include "logging.h"
|
2011-05-06 20:21:58 +00:00
|
|
|
#include "command.h"
|
2012-02-24 18:48:55 +00:00
|
|
|
#include "viruri.h"
|
2012-04-19 21:51:31 +00:00
|
|
|
#include "stats_linux.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2009-01-29 12:10:32 +00:00
|
|
|
#define VIR_FROM_THIS VIR_FROM_OPENVZ
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
#define OPENVZ_MAX_ARG 28
|
|
|
|
#define CMDBUF_LEN 1488
|
|
|
|
#define CMDOP_LEN 288
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2012-04-25 19:18:16 +00:00
|
|
|
#define OPENVZ_NB_MEM_PARAM 3
|
|
|
|
|
2008-07-21 08:08:25 +00:00
|
|
|
static int openvzGetProcessInfo(unsigned long long *cpuTime, int vpsid);
|
2008-08-20 13:44:03 +00:00
|
|
|
static int openvzGetMaxVCPUs(virConnectPtr conn, const char *type);
|
|
|
|
static int openvzDomainGetMaxVcpus(virDomainPtr dom);
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzDomainSetVcpusInternal(virDomainObjPtr vm,
|
2009-11-02 16:39:46 +00:00
|
|
|
unsigned int nvcpus);
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzDomainSetMemoryInternal(virDomainObjPtr vm,
|
2012-03-02 20:27:39 +00:00
|
|
|
unsigned long long memory);
|
2011-07-29 08:41:32 +00:00
|
|
|
static int openvzGetVEStatus(virDomainObjPtr vm, int *status, int *reason);
|
2008-07-21 08:08:25 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
static void openvzDriverLock(struct openvz_driver *driver)
|
|
|
|
{
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexLock(&driver->lock);
|
2008-12-04 21:44:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void openvzDriverUnlock(struct openvz_driver *driver)
|
|
|
|
{
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutexUnlock(&driver->lock);
|
2008-12-04 21:44:55 +00:00
|
|
|
}
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
struct openvz_driver ovz_driver;
|
|
|
|
|
2008-08-08 15:43:38 +00:00
|
|
|
static void cmdExecFree(const char *cmdExec[])
|
2007-09-03 15:37:07 +00:00
|
|
|
{
|
|
|
|
int i=-1;
|
2010-08-31 22:43:18 +00:00
|
|
|
while (cmdExec[++i]) {
|
2008-07-16 14:45:55 +00:00
|
|
|
VIR_FREE(cmdExec[i]);
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-16 14:45:55 +00:00
|
|
|
/* generate arguments to create OpenVZ container
|
|
|
|
return -1 - error
|
|
|
|
0 - OK
|
2012-05-05 06:47:05 +00:00
|
|
|
Caller has to free the cmd
|
2008-07-16 14:45:55 +00:00
|
|
|
*/
|
2012-05-05 06:47:05 +00:00
|
|
|
static virCommandPtr
|
|
|
|
openvzDomainDefineCmd(virDomainDefPtr vmdef)
|
2008-07-16 14:45:55 +00:00
|
|
|
{
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZCTL,
|
|
|
|
"--quiet",
|
|
|
|
"create",
|
|
|
|
NULL);
|
2008-07-16 14:45:55 +00:00
|
|
|
|
2009-09-22 10:19:09 +00:00
|
|
|
if (vmdef == NULL) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Container is not defined"));
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandFree(cmd);
|
|
|
|
return NULL;
|
2008-07-16 14:45:55 +00:00
|
|
|
}
|
2010-11-28 21:52:44 +00:00
|
|
|
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandAddArgList(cmd, vmdef->name, "--name", vmdef->name, NULL);
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2009-03-24 10:59:13 +00:00
|
|
|
if (vmdef->nfss == 1 &&
|
2009-09-22 10:19:09 +00:00
|
|
|
vmdef->fss[0]->type == VIR_DOMAIN_FS_TYPE_TEMPLATE) {
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandAddArgList(cmd, "--ostemplate", vmdef->fss[0]->src, NULL);
|
2008-07-16 14:45:55 +00:00
|
|
|
}
|
2009-09-22 10:19:09 +00:00
|
|
|
|
2012-05-05 06:47:05 +00:00
|
|
|
return cmd;
|
2008-07-16 14:45:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzSetInitialConfig(virDomainDefPtr vmdef)
|
2009-03-24 10:59:13 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
int vpsid;
|
|
|
|
char * confdir = NULL;
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandPtr cmd = NULL;
|
2009-03-24 10:59:13 +00:00
|
|
|
|
|
|
|
if (vmdef->nfss > 1) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("only one filesystem supported"));
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vmdef->nfss == 1 &&
|
|
|
|
vmdef->fss[0]->type != VIR_DOMAIN_FS_TYPE_TEMPLATE &&
|
|
|
|
vmdef->fss[0]->type != VIR_DOMAIN_FS_TYPE_MOUNT)
|
|
|
|
{
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("filesystem is not of type 'template' or 'mount'"));
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (vmdef->nfss == 1 &&
|
|
|
|
vmdef->fss[0]->type == VIR_DOMAIN_FS_TYPE_MOUNT)
|
|
|
|
{
|
|
|
|
|
2010-08-31 22:43:18 +00:00
|
|
|
if (virStrToLong_i(vmdef->name, NULL, 10, &vpsid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not convert domain name to VEID"));
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (openvzCopyDefaultConfig(vpsid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not copy default config"));
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (openvzWriteVPSConfigParam(vpsid, "VE_PRIVATE", vmdef->fss[0]->src) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set the source dir for the filesystem"));
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
2012-05-05 06:47:05 +00:00
|
|
|
} else {
|
|
|
|
cmd = openvzDomainDefineCmd(vmdef);
|
|
|
|
if (virCommandRun(cmd, NULL) < 0)
|
2009-03-24 10:59:13 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
VIR_FREE(confdir);
|
2012-05-05 06:47:05 +00:00
|
|
|
virCommandFree(cmd);
|
|
|
|
|
2009-03-24 10:59:13 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-05 06:52:23 +00:00
|
|
|
static int
|
|
|
|
openvzSetDiskQuota(virDomainDefPtr vmdef,
|
2012-05-25 17:48:33 +00:00
|
|
|
virDomainFSDefPtr fss,
|
|
|
|
bool persist)
|
2012-05-05 06:52:23 +00:00
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
unsigned long long sl, hl;
|
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZCTL,
|
|
|
|
"--quiet",
|
|
|
|
"set",
|
|
|
|
vmdef->name,
|
|
|
|
NULL);
|
2012-05-25 17:48:33 +00:00
|
|
|
if (persist)
|
|
|
|
virCommandAddArg(cmd, "--save");
|
2012-05-05 06:52:23 +00:00
|
|
|
|
|
|
|
if (fss->type == VIR_DOMAIN_FS_TYPE_TEMPLATE) {
|
|
|
|
if (fss->space_hard_limit) {
|
|
|
|
hl = VIR_DIV_UP(fss->space_hard_limit, 1024);
|
|
|
|
virCommandAddArg(cmd, "--diskspace");
|
|
|
|
|
|
|
|
if (fss->space_soft_limit) {
|
|
|
|
sl = VIR_DIV_UP(fss->space_soft_limit, 1024);
|
|
|
|
virCommandAddArgFormat(cmd, "%lld:%lld", sl, hl);
|
|
|
|
} else {
|
|
|
|
virCommandAddArgFormat(cmd, "%lld", hl);
|
|
|
|
}
|
|
|
|
} else if (fss->space_soft_limit) {
|
|
|
|
openvzError(VIR_ERR_INVALID_ARG, "%s",
|
|
|
|
_("Can't set soft limit without hard limit"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virCommandRun(cmd, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
virCommandFree(cmd);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
static virDomainPtr openvzDomainLookupByID(virConnectPtr conn,
|
2008-09-05 14:10:58 +00:00
|
|
|
int id) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-09-05 14:10:58 +00:00
|
|
|
virDomainObjPtr vm;
|
2008-12-04 21:41:51 +00:00
|
|
|
virDomainPtr dom = NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-10-10 14:20:37 +00:00
|
|
|
vm = virDomainFindByID(&driver->domains, id);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
2008-12-04 21:41:51 +00:00
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2007-07-17 13:27:26 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
2008-10-24 11:32:48 +00:00
|
|
|
static int openvzGetVersion(virConnectPtr conn, unsigned long *version) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-10-24 11:32:48 +00:00
|
|
|
*version = driver->version;
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
2008-10-24 11:32:48 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
static char *openvzGetOSType(virDomainPtr dom)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
char *ret = NULL;
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
if (!vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-09-05 14:10:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (!(ret = strdup(vm->def->os.type)))
|
2010-02-04 18:19:08 +00:00
|
|
|
virReportOOMError();
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-09-05 14:10:58 +00:00
|
|
|
return ret;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static virDomainPtr openvzDomainLookupByUUID(virConnectPtr conn,
|
2008-09-05 14:10:58 +00:00
|
|
|
const unsigned char *uuid) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virDomainPtr dom = NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
2008-12-04 21:41:51 +00:00
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2007-07-17 13:27:26 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr openvzDomainLookupByName(virConnectPtr conn,
|
2008-12-04 21:41:51 +00:00
|
|
|
const char *name) {
|
|
|
|
struct openvz_driver *driver = conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
virDomainPtr dom = NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByName(&driver->domains, name);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
2008-12-04 21:41:51 +00:00
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2007-07-17 13:27:26 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int openvzDomainGetInfo(virDomainPtr dom,
|
2008-09-05 14:10:58 +00:00
|
|
|
virDomainInfoPtr info) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
2011-07-29 08:41:32 +00:00
|
|
|
int state;
|
2008-12-04 21:41:51 +00:00
|
|
|
int ret = -1;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (openvzGetVEStatus(vm, &state, NULL) == -1)
|
|
|
|
goto cleanup;
|
|
|
|
info->state = state;
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (info->state != VIR_DOMAIN_RUNNING) {
|
2008-07-21 08:08:25 +00:00
|
|
|
info->cpuTime = 0;
|
|
|
|
} else {
|
|
|
|
if (openvzGetProcessInfo(&(info->cpuTime), dom->id) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
2008-09-05 14:10:58 +00:00
|
|
|
_("cannot read cputime for domain %d"), dom->id);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-07-21 08:08:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-12 14:43:39 +00:00
|
|
|
info->maxMem = vm->def->mem.max_balloon;
|
|
|
|
info->memory = vm->def->mem.cur_balloon;
|
2008-09-05 14:10:58 +00:00
|
|
|
info->nrVirtCpu = vm->def->vcpus;
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-05-02 09:35:29 +00:00
|
|
|
static int
|
|
|
|
openvzDomainGetState(virDomainPtr dom,
|
|
|
|
int *state,
|
|
|
|
int *reason,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
|
|
|
_("no domain with matching uuid"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
ret = openvzGetVEStatus(vm, state, reason);
|
2011-05-02 09:35:29 +00:00
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
static int openvzDomainIsActive(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr obj;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
obj = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
if (!obj) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
ret = virDomainObjIsActive(obj);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (obj)
|
|
|
|
virDomainObjUnlock(obj);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int openvzDomainIsPersistent(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr obj;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
obj = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
if (!obj) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, NULL);
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
ret = obj->persistent;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (obj)
|
|
|
|
virDomainObjUnlock(obj);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2010-11-24 07:43:15 +00:00
|
|
|
static int openvzDomainIsUpdated(virDomainPtr dom ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
|
2011-07-06 20:40:19 +00:00
|
|
|
static char *openvzDomainGetXMLDesc(virDomainPtr dom, unsigned int flags) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
char *ret = NULL;
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2011-07-13 22:24:38 +00:00
|
|
|
/* Flags checked by virDomainDefFormat */
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2010-02-09 18:58:01 +00:00
|
|
|
ret = virDomainDefFormat(vm->def, flags);
|
2008-12-04 21:41:51 +00:00
|
|
|
|
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2008-09-05 14:10:58 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
/*
|
|
|
|
* Convenient helper to target a command line argv
|
|
|
|
* and fill in an empty slot with the supplied
|
|
|
|
* key value. This lets us declare the argv on the
|
|
|
|
* stack and just splice in the domain name after
|
|
|
|
*/
|
|
|
|
#define PROGRAM_SENTINAL ((char *)0x1)
|
|
|
|
static void openvzSetProgramSentinal(const char **prog, const char *key)
|
|
|
|
{
|
|
|
|
const char **tmp = prog;
|
|
|
|
while (tmp && *tmp) {
|
|
|
|
if (*tmp == PROGRAM_SENTINAL) {
|
|
|
|
*tmp = key;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
tmp++;
|
|
|
|
}
|
|
|
|
}
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2010-08-04 12:00:07 +00:00
|
|
|
static int openvzDomainSuspend(virDomainPtr dom) {
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = {VZCTL, "--quiet", "chkpnt", PROGRAM_SENTINAL, "--suspend", NULL};
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-08-04 12:00:07 +00:00
|
|
|
_("no domain with matching uuid"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!virDomainObjIsActive(vm)) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_INVALID, "%s",
|
|
|
|
_("Domain is not running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-05-04 09:07:01 +00:00
|
|
|
if (virDomainObjGetState(vm, NULL) != VIR_DOMAIN_PAUSED) {
|
2010-08-04 12:00:07 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
|
|
|
if (virRun(prog, NULL) < 0) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_PAUSED, VIR_DOMAIN_PAUSED_USER);
|
2010-08-04 12:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int openvzDomainResume(virDomainPtr dom) {
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = {VZCTL, "--quiet", "chkpnt", PROGRAM_SENTINAL, "--resume", NULL};
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-08-04 12:00:07 +00:00
|
|
|
_("no domain with matching uuid"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!virDomainObjIsActive(vm)) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_INVALID, "%s",
|
|
|
|
_("Domain is not running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
2011-05-04 09:07:01 +00:00
|
|
|
if (virDomainObjGetState(vm, NULL) == VIR_DOMAIN_PAUSED) {
|
2010-08-04 12:00:07 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
|
|
|
if (virRun(prog, NULL) < 0) {
|
|
|
|
goto cleanup;
|
|
|
|
}
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_UNPAUSED);
|
2010-08-04 12:00:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2011-07-21 07:49:02 +00:00
|
|
|
static int
|
|
|
|
openvzDomainShutdownFlags(virDomainPtr dom,
|
|
|
|
unsigned int flags) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = {VZCTL, "--quiet", "stop", PROGRAM_SENTINAL, NULL};
|
|
|
|
int ret = -1;
|
2011-07-29 08:41:32 +00:00
|
|
|
int status;
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2011-07-21 07:49:02 +00:00
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (openvzGetVEStatus(vm, &status, NULL) == -1)
|
|
|
|
goto cleanup;
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2011-07-29 08:41:32 +00:00
|
|
|
if (status != VIR_DOMAIN_RUNNING) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("domain is not in running state"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0)
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
vm->def->id = -1;
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_SHUTOFF, VIR_DOMAIN_SHUTOFF_SHUTDOWN);
|
2010-07-30 17:50:12 +00:00
|
|
|
dom->id = -1;
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-07-21 07:49:02 +00:00
|
|
|
static int
|
|
|
|
openvzDomainShutdown(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
return openvzDomainShutdownFlags(dom, 0);
|
|
|
|
}
|
|
|
|
|
2007-09-03 16:30:00 +00:00
|
|
|
static int openvzDomainReboot(virDomainPtr dom,
|
2011-07-06 22:34:58 +00:00
|
|
|
unsigned int flags)
|
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = {VZCTL, "--quiet", "restart", PROGRAM_SENTINAL, NULL};
|
|
|
|
int ret = -1;
|
2011-07-29 08:41:32 +00:00
|
|
|
int status;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2011-07-06 22:34:58 +00:00
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (openvzGetVEStatus(vm, &status, NULL) == -1)
|
|
|
|
goto cleanup;
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2011-07-29 08:41:32 +00:00
|
|
|
if (status != VIR_DOMAIN_RUNNING) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("domain is not in running state"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0)
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
|
|
|
ret = 0;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_BOOTED);
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-11-12 16:35:47 +00:00
|
|
|
static char *
|
|
|
|
openvzGenerateVethName(int veid, char *dev_name_ve)
|
|
|
|
{
|
|
|
|
char dev_name[32];
|
|
|
|
int ifNo = 0;
|
|
|
|
|
|
|
|
if (sscanf(dev_name_ve, "%*[^0-9]%d", &ifNo) != 1)
|
|
|
|
return NULL;
|
|
|
|
if (snprintf(dev_name, sizeof(dev_name), "veth%d.%d", veid, ifNo) < 7)
|
|
|
|
return NULL;
|
|
|
|
return strdup(dev_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *
|
|
|
|
openvzGenerateContainerVethName(int veid)
|
|
|
|
{
|
2011-04-03 09:21:26 +00:00
|
|
|
char *temp = NULL;
|
|
|
|
char *name = NULL;
|
2008-11-12 16:35:47 +00:00
|
|
|
|
|
|
|
/* try to get line "^NETIF=..." from config */
|
2011-04-03 09:21:26 +00:00
|
|
|
if (openvzReadVPSConfigParam(veid, "NETIF", &temp) <= 0) {
|
|
|
|
name = strdup("eth0");
|
2008-11-12 16:35:47 +00:00
|
|
|
} else {
|
2011-04-05 09:54:59 +00:00
|
|
|
char *saveptr = NULL;
|
2011-04-03 09:21:26 +00:00
|
|
|
char *s;
|
|
|
|
int max = 0;
|
2008-11-12 16:35:47 +00:00
|
|
|
|
|
|
|
/* get maximum interface number (actually, it is the last one) */
|
2009-01-22 19:41:48 +00:00
|
|
|
for (s=strtok_r(temp, ";", &saveptr); s; s=strtok_r(NULL, ";", &saveptr)) {
|
2008-11-12 16:35:47 +00:00
|
|
|
int x;
|
|
|
|
|
|
|
|
if (sscanf(s, "ifname=eth%d", &x) != 1) return NULL;
|
|
|
|
if (x > max) max = x;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* set new name */
|
2011-08-02 20:26:17 +00:00
|
|
|
ignore_value(virAsprintf(&name, "eth%d", max + 1));
|
2008-11-12 16:35:47 +00:00
|
|
|
}
|
2011-04-03 09:21:26 +00:00
|
|
|
|
|
|
|
VIR_FREE(temp);
|
|
|
|
|
|
|
|
if (name == NULL) {
|
|
|
|
virReportOOMError();
|
|
|
|
}
|
|
|
|
|
|
|
|
return name;
|
2008-11-12 16:35:47 +00:00
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
static int
|
|
|
|
openvzDomainSetNetwork(virConnectPtr conn, const char *vpsid,
|
2008-11-12 16:35:47 +00:00
|
|
|
virDomainNetDefPtr net,
|
|
|
|
virBufferPtr configBuf)
|
2008-07-28 14:06:54 +00:00
|
|
|
{
|
|
|
|
int rc = 0, narg;
|
2008-08-08 15:43:38 +00:00
|
|
|
const char *prog[OPENVZ_MAX_ARG];
|
2008-11-12 16:35:47 +00:00
|
|
|
char macaddr[VIR_MAC_STRING_BUFLEN];
|
2009-01-07 10:55:54 +00:00
|
|
|
unsigned char host_mac[VIR_MAC_BUFLEN];
|
|
|
|
char host_macaddr[VIR_MAC_STRING_BUFLEN];
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-11-12 16:35:47 +00:00
|
|
|
char *opt = NULL;
|
2008-07-28 14:06:54 +00:00
|
|
|
|
|
|
|
#define ADD_ARG_LIT(thisarg) \
|
|
|
|
do { \
|
|
|
|
if (narg >= OPENVZ_MAX_ARG) \
|
|
|
|
goto no_memory; \
|
|
|
|
if ((prog[narg++] = strdup(thisarg)) == NULL) \
|
|
|
|
goto no_memory; \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
|
|
|
|
if (net == NULL)
|
|
|
|
return 0;
|
|
|
|
if (vpsid == NULL) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Container ID is not specified"));
|
2008-07-28 14:06:54 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (narg = 0; narg < OPENVZ_MAX_ARG; narg++)
|
|
|
|
prog[narg] = NULL;
|
|
|
|
|
|
|
|
narg = 0;
|
|
|
|
|
|
|
|
if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE ||
|
|
|
|
net->type == VIR_DOMAIN_NET_TYPE_ETHERNET) {
|
|
|
|
ADD_ARG_LIT(VZCTL);
|
|
|
|
ADD_ARG_LIT("--quiet");
|
|
|
|
ADD_ARG_LIT("set");
|
|
|
|
ADD_ARG_LIT(vpsid);
|
|
|
|
}
|
|
|
|
|
2012-01-27 16:48:38 +00:00
|
|
|
virMacAddrFormat(net->mac, macaddr);
|
2009-01-07 10:55:54 +00:00
|
|
|
virCapabilitiesGenerateMac(driver->caps, host_mac);
|
2012-01-27 16:48:38 +00:00
|
|
|
virMacAddrFormat(host_mac, host_macaddr);
|
2008-11-12 16:35:47 +00:00
|
|
|
|
2010-08-18 15:05:02 +00:00
|
|
|
if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE ||
|
|
|
|
(net->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
|
|
|
|
net->data.ethernet.ipaddr == NULL)) {
|
2008-11-12 16:35:47 +00:00
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
2010-02-19 15:49:56 +00:00
|
|
|
int veid = openvzGetVEID(vpsid);
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2011-01-28 21:38:06 +00:00
|
|
|
/* --netif_add ifname[,mac,host_ifname,host_mac] */
|
2008-07-28 14:06:54 +00:00
|
|
|
ADD_ARG_LIT("--netif_add") ;
|
2008-11-12 16:35:47 +00:00
|
|
|
|
2010-08-18 15:05:02 +00:00
|
|
|
/* if user doesn't specify guest interface name,
|
|
|
|
* then we need to generate it */
|
|
|
|
if (net->data.ethernet.dev == NULL) {
|
|
|
|
net->data.ethernet.dev = openvzGenerateContainerVethName(veid);
|
|
|
|
if (net->data.ethernet.dev == NULL) {
|
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not generate eth name for container"));
|
|
|
|
rc = -1;
|
|
|
|
goto exit;
|
|
|
|
}
|
2008-11-12 16:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* if user doesn't specified host interface name,
|
|
|
|
* than we need to generate it */
|
|
|
|
if (net->ifname == NULL) {
|
2010-08-18 15:05:02 +00:00
|
|
|
net->ifname = openvzGenerateVethName(veid, net->data.ethernet.dev);
|
2008-11-12 16:35:47 +00:00
|
|
|
if (net->ifname == NULL) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not generate veth name"));
|
2008-11-12 16:35:47 +00:00
|
|
|
rc = -1;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-08-18 15:05:02 +00:00
|
|
|
virBufferAdd(&buf, net->data.ethernet.dev, -1); /* Guest dev */
|
2011-04-30 16:34:49 +00:00
|
|
|
virBufferAsprintf(&buf, ",%s", macaddr); /* Guest dev mac */
|
|
|
|
virBufferAsprintf(&buf, ",%s", net->ifname); /* Host dev */
|
|
|
|
virBufferAsprintf(&buf, ",%s", host_macaddr); /* Host dev mac */
|
2008-11-12 16:35:47 +00:00
|
|
|
|
2010-08-18 15:05:02 +00:00
|
|
|
if (net->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
|
|
|
|
if (driver->version >= VZCTL_BRIDGE_MIN_VERSION) {
|
2011-04-30 16:34:49 +00:00
|
|
|
virBufferAsprintf(&buf, ",%s", net->data.bridge.brname); /* Host bridge */
|
2010-08-18 15:05:02 +00:00
|
|
|
} else {
|
2011-04-30 16:34:49 +00:00
|
|
|
virBufferAsprintf(configBuf, "ifname=%s", net->data.ethernet.dev);
|
|
|
|
virBufferAsprintf(configBuf, ",mac=%s", macaddr); /* Guest dev mac */
|
|
|
|
virBufferAsprintf(configBuf, ",host_ifname=%s", net->ifname); /* Host dev */
|
|
|
|
virBufferAsprintf(configBuf, ",host_mac=%s", host_macaddr); /* Host dev mac */
|
|
|
|
virBufferAsprintf(configBuf, ",bridge=%s", net->data.bridge.brname); /* Host bridge */
|
2010-08-18 15:05:02 +00:00
|
|
|
}
|
2008-07-28 14:06:54 +00:00
|
|
|
}
|
2008-11-12 16:35:47 +00:00
|
|
|
|
|
|
|
if (!(opt = virBufferContentAndReset(&buf)))
|
|
|
|
goto no_memory;
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
ADD_ARG_LIT(opt) ;
|
2008-11-12 16:35:47 +00:00
|
|
|
VIR_FREE(opt);
|
|
|
|
} else if (net->type == VIR_DOMAIN_NET_TYPE_ETHERNET &&
|
2008-07-28 14:06:54 +00:00
|
|
|
net->data.ethernet.ipaddr != NULL) {
|
2011-01-28 21:38:06 +00:00
|
|
|
/* --ipadd ip */
|
2008-07-28 14:06:54 +00:00
|
|
|
ADD_ARG_LIT("--ipadd") ;
|
|
|
|
ADD_ARG_LIT(net->data.ethernet.ipaddr) ;
|
|
|
|
}
|
|
|
|
|
2011-01-28 21:38:06 +00:00
|
|
|
/* TODO: processing NAT and physical device */
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2010-08-31 22:43:18 +00:00
|
|
|
if (prog[0] != NULL) {
|
2008-07-28 14:06:54 +00:00
|
|
|
ADD_ARG_LIT("--save");
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2008-07-28 14:06:54 +00:00
|
|
|
rc = -1;
|
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
exit:
|
|
|
|
cmdExecFree(prog);
|
|
|
|
return rc;
|
|
|
|
|
|
|
|
no_memory:
|
2008-11-12 16:35:47 +00:00
|
|
|
VIR_FREE(opt);
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
2008-07-28 14:06:54 +00:00
|
|
|
_("Could not put argument to %s"), VZCTL);
|
|
|
|
cmdExecFree(prog);
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
#undef ADD_ARG_LIT
|
|
|
|
}
|
|
|
|
|
2008-11-12 16:35:47 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainSetNetworkConfig(virConnectPtr conn,
|
|
|
|
virDomainDefPtr def)
|
|
|
|
{
|
|
|
|
unsigned int i;
|
|
|
|
virBuffer buf = VIR_BUFFER_INITIALIZER;
|
|
|
|
char *param;
|
|
|
|
int first = 1;
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-11-12 16:35:47 +00:00
|
|
|
|
|
|
|
for (i = 0 ; i < def->nnets ; i++) {
|
|
|
|
if (driver->version < VZCTL_BRIDGE_MIN_VERSION &&
|
|
|
|
def->nets[i]->type == VIR_DOMAIN_NET_TYPE_BRIDGE) {
|
|
|
|
if (first)
|
|
|
|
first = 0;
|
|
|
|
else
|
|
|
|
virBufferAddLit(&buf, ";");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (openvzDomainSetNetwork(conn, def->name, def->nets[i], &buf) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not configure network"));
|
2008-11-12 16:35:47 +00:00
|
|
|
goto exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (driver->version < VZCTL_BRIDGE_MIN_VERSION && def->nnets) {
|
|
|
|
param = virBufferContentAndReset(&buf);
|
|
|
|
if (param) {
|
2009-03-24 10:59:13 +00:00
|
|
|
if (openvzWriteVPSConfigParam(strtoI(def->name), "NETIF", param) < 0) {
|
2008-11-12 16:35:47 +00:00
|
|
|
VIR_FREE(param);
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("cannot replace NETIF config"));
|
2008-11-12 16:35:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
VIR_FREE(param);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
exit:
|
2009-12-09 23:00:50 +00:00
|
|
|
virBufferFreeAndReset(&buf);
|
2008-11-12 16:35:47 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
static virDomainPtr
|
|
|
|
openvzDomainDefineXML(virConnectPtr conn, const char *xml)
|
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-09-05 14:10:58 +00:00
|
|
|
virDomainDefPtr vmdef = NULL;
|
|
|
|
virDomainObjPtr vm = NULL;
|
2008-07-16 14:45:55 +00:00
|
|
|
virDomainPtr dom = NULL;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2010-02-09 18:58:01 +00:00
|
|
|
if ((vmdef = virDomainDefParseString(driver->caps, xml,
|
2011-07-11 17:29:09 +00:00
|
|
|
1 << VIR_DOMAIN_VIRT_OPENVZ,
|
2009-01-08 13:54:20 +00:00
|
|
|
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2008-10-10 14:20:37 +00:00
|
|
|
vm = virDomainFindByName(&driver->domains, vmdef->name);
|
2007-09-03 15:37:07 +00:00
|
|
|
if (vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Already an OPENVZ VM active with the id '%s'"),
|
|
|
|
vmdef->name);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2010-02-09 18:58:01 +00:00
|
|
|
if (!(vm = virDomainAssignDef(driver->caps,
|
2010-03-24 14:31:21 +00:00
|
|
|
&driver->domains, vmdef, false)))
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
|
|
|
vmdef = NULL;
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
vm->persistent = 1;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
if (openvzSetInitialConfig(vm->def) < 0) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("Error creating initial configuration"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
|
2012-05-05 06:52:23 +00:00
|
|
|
if (vm->def->nfss == 1) {
|
2012-05-25 17:48:33 +00:00
|
|
|
if (openvzSetDiskQuota(vm->def, vm->def->fss[0], true) < 0) {
|
2012-05-05 06:52:23 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set disk quota"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
if (openvzSetDefinedUUID(strtoI(vm->def->name), vm->def->uuid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set UUID"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-08-05 10:53:05 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
if (openvzDomainSetNetworkConfig(conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2010-09-29 16:20:07 +00:00
|
|
|
if (vm->def->vcpus != vm->def->maxvcpus) {
|
|
|
|
openvzError(VIR_ERR_CONFIG_UNSUPPORTED, "%s",
|
|
|
|
_("current vcpu count must equal maximum"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
if (vm->def->maxvcpus > 0) {
|
|
|
|
if (openvzDomainSetVcpusInternal(vm, vm->def->maxvcpus) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set number of virtual cpu"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-08-20 13:44:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-12 14:43:39 +00:00
|
|
|
if (vm->def->mem.cur_balloon > 0) {
|
|
|
|
if (openvzDomainSetMemoryInternal(vm, vm->def->mem.cur_balloon) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set memory size"));
|
2009-11-02 16:39:46 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = -1;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virDomainDefFree(vmdef);
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
openvzDriverUnlock(driver);
|
2007-09-03 15:37:07 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static virDomainPtr
|
2008-10-10 09:32:27 +00:00
|
|
|
openvzDomainCreateXML(virConnectPtr conn, const char *xml,
|
2010-05-25 17:13:13 +00:00
|
|
|
unsigned int flags)
|
2007-09-03 15:37:07 +00:00
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-09-05 14:10:58 +00:00
|
|
|
virDomainDefPtr vmdef = NULL;
|
|
|
|
virDomainObjPtr vm = NULL;
|
2008-07-16 14:45:55 +00:00
|
|
|
virDomainPtr dom = NULL;
|
2008-12-04 21:41:51 +00:00
|
|
|
const char *progstart[] = {VZCTL, "--quiet", "start", PROGRAM_SENTINAL, NULL};
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2010-05-25 17:13:13 +00:00
|
|
|
virCheckFlags(0, NULL);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2010-02-09 18:58:01 +00:00
|
|
|
if ((vmdef = virDomainDefParseString(driver->caps, xml,
|
2011-07-11 17:29:09 +00:00
|
|
|
1 << VIR_DOMAIN_VIRT_OPENVZ,
|
2009-01-08 13:54:20 +00:00
|
|
|
VIR_DOMAIN_XML_INACTIVE)) == NULL)
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-10-10 14:20:37 +00:00
|
|
|
vm = virDomainFindByName(&driver->domains, vmdef->name);
|
2007-09-03 15:37:07 +00:00
|
|
|
if (vm) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Already an OPENVZ VM defined with the id '%s'"),
|
|
|
|
vmdef->name);
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2010-02-09 18:58:01 +00:00
|
|
|
if (!(vm = virDomainAssignDef(driver->caps,
|
2010-03-24 14:31:21 +00:00
|
|
|
&driver->domains, vmdef, false)))
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
|
|
|
vmdef = NULL;
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
/* All OpenVZ domains seem to be persistent - this is a bit of a violation
|
|
|
|
* of this libvirt API which is intended for transient domain creation */
|
|
|
|
vm->persistent = 1;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
if (openvzSetInitialConfig(vm->def) < 0) {
|
2011-05-09 09:24:09 +00:00
|
|
|
VIR_ERROR(_("Error creating initial configuration"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2012-05-05 06:52:23 +00:00
|
|
|
if (vm->def->nfss == 1) {
|
2012-05-25 17:48:33 +00:00
|
|
|
if (openvzSetDiskQuota(vm->def, vm->def->fss[0], true) < 0) {
|
2012-05-05 06:52:23 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set disk quota"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
if (openvzSetDefinedUUID(strtoI(vm->def->name), vm->def->uuid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set UUID"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-08-05 10:53:05 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
if (openvzDomainSetNetworkConfig(conn, vm->def) < 0)
|
|
|
|
goto cleanup;
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(progstart, vm->def->name);
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(progstart, NULL) < 0) {
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
vm->pid = strtoI(vm->def->name);
|
2008-09-05 14:10:58 +00:00
|
|
|
vm->def->id = vm->pid;
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_BOOTED);
|
2008-09-05 15:00:14 +00:00
|
|
|
|
2010-09-29 16:20:07 +00:00
|
|
|
if (vm->def->maxvcpus > 0) {
|
|
|
|
if (openvzDomainSetVcpusInternal(vm, vm->def->maxvcpus) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not set number of virtual cpu"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-08-20 13:44:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
dom = virGetDomain(conn, vm->def->name, vm->def->uuid);
|
|
|
|
if (dom)
|
|
|
|
dom->id = vm->def->id;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virDomainDefFree(vmdef);
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
openvzDriverUnlock(driver);
|
2007-09-03 15:37:07 +00:00
|
|
|
return dom;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2010-06-10 15:55:36 +00:00
|
|
|
openvzDomainCreateWithFlags(virDomainPtr dom, unsigned int flags)
|
2007-09-03 15:37:07 +00:00
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = {VZCTL, "--quiet", "start", PROGRAM_SENTINAL, NULL };
|
|
|
|
int ret = -1;
|
2011-07-29 08:41:32 +00:00
|
|
|
int status;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-06-10 15:55:36 +00:00
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByName(&driver->domains, dom->name);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching id"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (openvzGetVEStatus(vm, &status, NULL) == -1)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (status != VIR_DOMAIN_SHUTOFF) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_OPERATION_DENIED, "%s",
|
|
|
|
_("domain is not in shutoff state"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
vm->pid = strtoI(vm->def->name);
|
|
|
|
vm->def->id = vm->pid;
|
2010-07-30 08:36:06 +00:00
|
|
|
dom->id = vm->pid;
|
2011-05-04 09:07:01 +00:00
|
|
|
virDomainObjSetState(vm, VIR_DOMAIN_RUNNING, VIR_DOMAIN_RUNNING_BOOTED);
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
|
2010-06-10 15:55:36 +00:00
|
|
|
static int
|
|
|
|
openvzDomainCreate(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
return openvzDomainCreateWithFlags(dom, 0);
|
|
|
|
}
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
static int
|
2011-07-20 03:08:21 +00:00
|
|
|
openvzDomainUndefineFlags(virDomainPtr dom,
|
|
|
|
unsigned int flags)
|
2007-09-03 15:37:07 +00:00
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = { VZCTL, "--quiet", "destroy", PROGRAM_SENTINAL, NULL };
|
|
|
|
int ret = -1;
|
2011-07-29 08:41:32 +00:00
|
|
|
int status;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2011-07-20 03:08:21 +00:00
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2007-09-03 15:37:07 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
if (openvzGetVEStatus(vm, &status, NULL) == -1)
|
|
|
|
goto cleanup;
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2011-08-19 13:48:47 +00:00
|
|
|
if (virDomainObjIsActive(vm)) {
|
|
|
|
vm->persistent = 0;
|
|
|
|
} else {
|
|
|
|
virDomainRemoveInactive(&driver->domains, vm);
|
|
|
|
vm = NULL;
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
openvzDriverUnlock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-07-20 03:08:21 +00:00
|
|
|
static int
|
|
|
|
openvzDomainUndefine(virDomainPtr dom)
|
|
|
|
{
|
|
|
|
return openvzDomainUndefineFlags(dom, 0);
|
|
|
|
}
|
2008-07-10 07:52:14 +00:00
|
|
|
static int
|
|
|
|
openvzDomainSetAutostart(virDomainPtr dom, int autostart)
|
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
const char *prog[] = { VZCTL, "--quiet", "set", PROGRAM_SENTINAL,
|
2008-07-10 12:21:09 +00:00
|
|
|
"--onboot", autostart ? "yes" : "no",
|
2008-07-10 07:52:14 +00:00
|
|
|
"--save", NULL };
|
2008-12-04 21:41:51 +00:00
|
|
|
int ret = -1;
|
2008-07-10 07:52:14 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2008-07-10 07:52:14 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
2008-07-10 07:52:14 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainGetAutostart(virDomainPtr dom, int *autostart)
|
|
|
|
{
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
2011-04-03 09:21:26 +00:00
|
|
|
char *value = NULL;
|
2008-12-04 21:41:51 +00:00
|
|
|
int ret = -1;
|
2008-07-10 07:52:14 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2008-07-10 07:52:14 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
2011-04-03 09:21:26 +00:00
|
|
|
if (openvzReadVPSConfigParam(strtoI(vm->def->name), "ONBOOT", &value) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not read container config"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
*autostart = 0;
|
|
|
|
if (STREQ(value,"yes"))
|
2008-07-10 12:21:09 +00:00
|
|
|
*autostart = 1;
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
2008-07-10 07:52:14 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
cleanup:
|
2011-04-03 09:21:26 +00:00
|
|
|
VIR_FREE(value);
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzGetMaxVCPUs(virConnectPtr conn ATTRIBUTE_UNUSED,
|
|
|
|
const char *type)
|
2009-08-17 12:24:27 +00:00
|
|
|
{
|
|
|
|
if (type == NULL || STRCASEEQ(type, "openvz"))
|
|
|
|
return 1028; /* OpenVZ has no limitation */
|
2008-08-20 13:44:03 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INVALID_ARG,
|
|
|
|
_("unknown type '%s'"), type);
|
2008-08-20 13:44:03 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
static int
|
|
|
|
openvzDomainGetVcpusFlags(virDomainPtr dom ATTRIBUTE_UNUSED,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
2011-06-08 06:33:33 +00:00
|
|
|
if (flags != (VIR_DOMAIN_AFFECT_LIVE | VIR_DOMAIN_VCPU_MAXIMUM)) {
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
openvzError(VIR_ERR_INVALID_ARG, _("unsupported flags (0x%x)"), flags);
|
|
|
|
return -1;
|
|
|
|
}
|
2008-08-20 13:44:03 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
return openvzGetMaxVCPUs(NULL, "openvz");
|
2008-08-20 13:44:03 +00:00
|
|
|
}
|
|
|
|
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
static int openvzDomainGetMaxVcpus(virDomainPtr dom)
|
|
|
|
{
|
2011-06-08 06:33:33 +00:00
|
|
|
return openvzDomainGetVcpusFlags(dom, (VIR_DOMAIN_AFFECT_LIVE |
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
VIR_DOMAIN_VCPU_MAXIMUM));
|
|
|
|
}
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzDomainSetVcpusInternal(virDomainObjPtr vm,
|
|
|
|
unsigned int nvcpus)
|
2008-12-17 21:13:19 +00:00
|
|
|
{
|
|
|
|
char str_vcpus[32];
|
2008-12-04 21:41:51 +00:00
|
|
|
const char *prog[] = { VZCTL, "--quiet", "set", PROGRAM_SENTINAL,
|
2008-08-20 13:44:03 +00:00
|
|
|
"--cpus", str_vcpus, "--save", NULL };
|
2008-11-24 19:34:21 +00:00
|
|
|
unsigned int pcpus;
|
2008-12-17 21:13:19 +00:00
|
|
|
pcpus = openvzGetNodeCPUs();
|
|
|
|
if (pcpus > 0 && pcpus < nvcpus)
|
|
|
|
nvcpus = pcpus;
|
|
|
|
|
|
|
|
snprintf(str_vcpus, 31, "%d", nvcpus);
|
|
|
|
str_vcpus[31] = '\0';
|
|
|
|
|
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2008-12-17 21:13:19 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2010-09-29 16:20:07 +00:00
|
|
|
vm->def->maxvcpus = vm->def->vcpus = nvcpus;
|
2008-12-17 21:13:19 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
static int openvzDomainSetVcpusFlags(virDomainPtr dom, unsigned int nvcpus,
|
|
|
|
unsigned int flags)
|
2008-12-17 21:13:19 +00:00
|
|
|
{
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
int ret = -1;
|
2008-08-20 13:44:03 +00:00
|
|
|
|
2011-06-08 06:33:33 +00:00
|
|
|
if (flags != VIR_DOMAIN_AFFECT_LIVE) {
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
openvzError(VIR_ERR_INVALID_ARG, _("unsupported flags (0x%x)"), flags);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
2008-08-20 13:44:03 +00:00
|
|
|
if (!vm) {
|
2010-12-23 22:21:27 +00:00
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
2010-04-03 14:23:45 +00:00
|
|
|
_("no domain with matching uuid"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-08-20 13:44:03 +00:00
|
|
|
}
|
|
|
|
|
2008-09-08 12:15:33 +00:00
|
|
|
if (nvcpus <= 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("VCPUs should be >= 1"));
|
2008-12-04 21:41:51 +00:00
|
|
|
goto cleanup;
|
2008-09-08 12:15:33 +00:00
|
|
|
}
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzDomainSetVcpusInternal(vm, nvcpus);
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
2008-12-04 21:44:55 +00:00
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2008-08-20 13:44:03 +00:00
|
|
|
}
|
|
|
|
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
static int
|
|
|
|
openvzDomainSetVcpus(virDomainPtr dom, unsigned int nvcpus)
|
|
|
|
{
|
2011-06-08 06:33:33 +00:00
|
|
|
return openvzDomainSetVcpusFlags(dom, nvcpus, VIR_DOMAIN_AFFECT_LIVE);
|
vcpu: make old API trivially wrap to new API
Note - this wrapping is completely mechanical; the old API will
function identically, since the new API validates that the exact
same flags are provided by the old API. On a per-driver basis,
it may make sense to have the old API pass a different set of flags,
but that should be done in the per-driver patch that implements
the full range of flag support in the new API.
* src/esx/esx_driver.c (esxDomainSetVcpus, escDomainGetMaxVpcus):
Move guts...
(esxDomainSetVcpusFlags, esxDomainGetVcpusFlags): ...to new
functions.
(esxDriver): Trivially support the new API.
* src/openvz/openvz_driver.c (openvzDomainSetVcpus)
(openvzDomainSetVcpusFlags, openvzDomainGetMaxVcpus)
(openvzDomainGetVcpusFlags, openvzDriver): Likewise.
* src/phyp/phyp_driver.c (phypDomainSetCPU)
(phypDomainSetVcpusFlags, phypGetLparCPUMAX)
(phypDomainGetVcpusFlags, phypDriver): Likewise.
* src/qemu/qemu_driver.c (qemudDomainSetVcpus)
(qemudDomainSetVcpusFlags, qemudDomainGetMaxVcpus)
(qemudDomainGetVcpusFlags, qemuDriver): Likewise.
* src/test/test_driver.c (testSetVcpus, testDomainSetVcpusFlags)
(testDomainGetMaxVcpus, testDomainGetVcpusFlags, testDriver):
Likewise.
* src/vbox/vbox_tmpl.c (vboxDomainSetVcpus)
(vboxDomainSetVcpusFlags, virDomainGetMaxVcpus)
(virDomainGetVcpusFlags, virDriver): Likewise.
* src/xen/xen_driver.c (xenUnifiedDomainSetVcpus)
(xenUnifiedDomainSetVcpusFlags, xenUnifiedDomainGetMaxVcpus)
(xenUnifiedDomainGetVcpusFlags, xenUnifiedDriver): Likewise.
* src/xenapi/xenapi_driver.c (xenapiDomainSetVcpus)
(xenapiDomainSetVcpusFlags, xenapiDomainGetMaxVcpus)
(xenapiDomainGetVcpusFlags, xenapiDriver): Likewise.
(xenapiError): New helper macro.
2010-09-27 22:37:53 +00:00
|
|
|
}
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
static virDrvOpenStatus openvzOpen(virConnectPtr conn,
|
2008-11-17 11:44:51 +00:00
|
|
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
2011-07-06 22:34:58 +00:00
|
|
|
unsigned int flags)
|
2007-12-26 05:41:05 +00:00
|
|
|
{
|
2008-09-05 14:10:58 +00:00
|
|
|
struct openvz_driver *driver;
|
2008-11-17 11:44:51 +00:00
|
|
|
|
2011-07-06 22:34:58 +00:00
|
|
|
virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
|
|
|
|
|
2008-11-17 11:44:51 +00:00
|
|
|
if (conn->uri == NULL) {
|
2009-06-12 12:06:15 +00:00
|
|
|
if (!virFileExists("/proc/vz"))
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
if (access("/proc/vz", W_OK) < 0)
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
Centralize error reporting for URI parsing/formatting problems
Move error reporting out of the callers, into virURIParse
and virURIFormat, to get consistency.
* include/libvirt/virterror.h, src/util/virterror.c: Add VIR_FROM_URI
* src/util/viruri.c, src/util/viruri.h: Add error reporting
* src/esx/esx_driver.c, src/libvirt.c, src/libxl/libxl_driver.c,
src/lxc/lxc_driver.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/qemu/qemu_migration.c,
src/remote/remote_driver.c, src/uml/uml_driver.c,
src/vbox/vbox_tmpl.c, src/vmx/vmx.c, src/xen/xen_driver.c,
src/xen/xend_internal.c, tests/viruritest.c: Remove error
reporting
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2012-03-20 12:16:54 +00:00
|
|
|
if (!(conn->uri = virURIParse("openvz:///system")))
|
2009-06-12 12:06:15 +00:00
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
} else {
|
|
|
|
/* If scheme isn't 'openvz', then its for another driver */
|
|
|
|
if (conn->uri->scheme == NULL ||
|
|
|
|
STRNEQ (conn->uri->scheme, "openvz"))
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
/* If server name is given, its for remote driver */
|
|
|
|
if (conn->uri->server != NULL)
|
|
|
|
return VIR_DRV_OPEN_DECLINED;
|
|
|
|
|
|
|
|
/* If path isn't /system, then they typoed, so tell them correct path */
|
|
|
|
if (conn->uri->path == NULL ||
|
|
|
|
STRNEQ (conn->uri->path, "/system")) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
2009-06-12 12:06:15 +00:00
|
|
|
_("unexpected OpenVZ URI path '%s', try openvz:///system"),
|
|
|
|
conn->uri->path);
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!virFileExists("/proc/vz")) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
2009-06-12 12:06:15 +00:00
|
|
|
_("OpenVZ control file /proc/vz does not exist"));
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (access("/proc/vz", W_OK) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
2009-06-12 12:06:15 +00:00
|
|
|
_("OpenVZ control file /proc/vz is not accessible"));
|
2008-11-17 11:44:51 +00:00
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
2008-09-05 14:10:58 +00:00
|
|
|
}
|
|
|
|
|
2009-06-12 12:06:15 +00:00
|
|
|
/* We now know the URI is definitely for this driver, so beyond
|
|
|
|
* here, don't return DECLINED, always use ERROR */
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
if (VIR_ALLOC(driver) < 0) {
|
2010-02-04 18:19:08 +00:00
|
|
|
virReportOOMError();
|
2008-09-05 14:10:58 +00:00
|
|
|
return VIR_DRV_OPEN_ERROR;
|
|
|
|
}
|
|
|
|
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
if (virDomainObjListInit(&driver->domains) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
if (!(driver->caps = openvzCapsInit()))
|
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
if (openvzLoadDomains(driver) < 0)
|
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
if (openvzExtractVersion(driver) < 0)
|
2008-10-24 11:32:48 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
conn->privateData = driver;
|
2008-08-27 11:19:45 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
return VIR_DRV_OPEN_SUCCESS;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
cleanup:
|
|
|
|
openvzFreeDriver(driver);
|
|
|
|
return VIR_DRV_OPEN_ERROR;
|
2007-12-26 05:41:05 +00:00
|
|
|
};
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
static int openvzClose(virConnectPtr conn) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
openvzFreeDriver(driver);
|
2007-07-17 13:27:26 +00:00
|
|
|
conn->privateData = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *openvzGetType(virConnectPtr conn ATTRIBUTE_UNUSED) {
|
2009-08-03 10:42:39 +00:00
|
|
|
return "OpenVZ";
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
Implmentation of new APIs to checking state/persistence of objects
This implements the virConnectIsSecure, virConnectIsEncrypted,
virDomainIsPersistent, virDomainIsActive, virNetworkIsActive,
virNetworkIsPersistent, virStoragePoolIsActive,
virStoragePoolIsPersistent, virInterfaceIsActive APIs in
(nearly) all drivers. Exceptions are:
phyp: missing domainIsActive/Persistent
esx: missing domainIsPersistent
opennebula: missing domainIsActive/Persistent
* src/remote/remote_protocol.x: Define remote wire ABI for newly
added APIs.
* daemon/remote_dispatch*.h: Re-generated from remote_protocol.x
* src/esx/esx_driver.c, src/lxc/lxc_driver.c, src/network/bridge_driver.c,
src/opennebula/one_driver.c, src/openvz/openvz_conf.c,
src/openvz/openvz_driver.c, src/phyp/phyp_driver.c,
src/remote/remote_driver.c, src/storage/storage_driver.c,
src/test/test_driver.c, src/uml/uml_driver.c, src/vbox/vbox_tmpl.c,
src/xen/xen_driver.c, src/xen/xen_driver.h, src/xen/xen_inotify.c,
src/xen/xen_inotify.h: Implement all the new APIs where possible
2009-10-20 14:12:03 +00:00
|
|
|
static int openvzIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED) {
|
|
|
|
/* Encryption is not relevant / applicable to way we talk to openvz */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int openvzIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED) {
|
|
|
|
/* We run CLI tools directly so this is secure */
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-09-23 06:56:13 +00:00
|
|
|
static int
|
|
|
|
openvzIsAlive(virConnectPtr conn ATTRIBUTE_UNUSED)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
static char *openvzGetCapabilities(virConnectPtr conn) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
|
|
|
char *ret;
|
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
2008-12-04 21:41:51 +00:00
|
|
|
ret = virCapabilitiesFormatXML(driver->caps);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2008-12-04 21:41:51 +00:00
|
|
|
return ret;
|
2008-09-05 14:10:58 +00:00
|
|
|
}
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzListDomains(virConnectPtr conn ATTRIBUTE_UNUSED,
|
|
|
|
int *ids, int nids) {
|
2007-07-17 13:27:26 +00:00
|
|
|
int got = 0;
|
2008-12-18 11:58:28 +00:00
|
|
|
int veid;
|
2008-08-20 09:08:17 +00:00
|
|
|
int outfd = -1;
|
2011-05-06 20:21:58 +00:00
|
|
|
int rc = -1;
|
2007-07-19 16:22:40 +00:00
|
|
|
int ret;
|
|
|
|
char buf[32];
|
2008-07-21 13:34:19 +00:00
|
|
|
char *endptr;
|
2011-05-06 20:21:58 +00:00
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZLIST, "-ovpsid", "-H" , NULL);
|
|
|
|
|
|
|
|
virCommandSetOutputFD(cmd, &outfd);
|
|
|
|
if (virCommandRunAsync(cmd, NULL) < 0)
|
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-08-31 22:43:18 +00:00
|
|
|
while (got < nids) {
|
2007-07-19 16:22:40 +00:00
|
|
|
ret = openvz_readline(outfd, buf, 32);
|
2010-08-31 22:43:18 +00:00
|
|
|
if (!ret)
|
|
|
|
break;
|
2008-07-21 13:34:19 +00:00
|
|
|
if (virStrToLong_i(buf, &endptr, 10, &veid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Could not parse VPS ID %s"), buf);
|
2008-07-21 13:34:19 +00:00
|
|
|
continue;
|
|
|
|
}
|
2007-07-17 13:27:26 +00:00
|
|
|
ids[got] = veid;
|
|
|
|
got ++;
|
|
|
|
}
|
2011-05-06 20:21:58 +00:00
|
|
|
|
|
|
|
if (virCommandWait(cmd, NULL) < 0)
|
|
|
|
goto cleanup;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-12-01 16:43:46 +00:00
|
|
|
if (VIR_CLOSE(outfd) < 0) {
|
|
|
|
virReportSystemError(errno, "%s", _("failed to close file"));
|
2011-05-06 20:21:58 +00:00
|
|
|
goto cleanup;
|
2010-12-01 16:43:46 +00:00
|
|
|
}
|
2011-05-06 20:21:58 +00:00
|
|
|
|
|
|
|
rc = got;
|
|
|
|
cleanup:
|
|
|
|
VIR_FORCE_CLOSE(outfd);
|
|
|
|
virCommandFree(cmd);
|
|
|
|
return rc;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-10-10 14:20:37 +00:00
|
|
|
static int openvzNumDomains(virConnectPtr conn) {
|
2008-09-05 14:10:58 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
int n;
|
2008-10-10 14:20:37 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
n = virDomainObjListNumOfDomains(&driver->domains, 1);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
2008-10-10 14:20:37 +00:00
|
|
|
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
return n;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
static int openvzListDefinedDomains(virConnectPtr conn ATTRIBUTE_UNUSED,
|
2008-09-05 14:10:58 +00:00
|
|
|
char **const names, int nnames) {
|
2007-07-17 13:27:26 +00:00
|
|
|
int got = 0;
|
2010-12-01 16:43:46 +00:00
|
|
|
int veid, outfd = -1, ret;
|
2011-05-06 20:21:58 +00:00
|
|
|
int rc = -1;
|
2008-09-05 14:10:58 +00:00
|
|
|
char vpsname[32];
|
2007-07-19 16:22:40 +00:00
|
|
|
char buf[32];
|
2008-07-21 13:34:19 +00:00
|
|
|
char *endptr;
|
2011-05-06 20:21:58 +00:00
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZLIST,
|
|
|
|
"-ovpsid", "-H", "-S", NULL);
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
/* the -S options lists only stopped domains */
|
2011-05-06 20:21:58 +00:00
|
|
|
virCommandSetOutputFD(cmd, &outfd);
|
|
|
|
if (virCommandRunAsync(cmd, NULL) < 0)
|
2010-12-01 16:43:46 +00:00
|
|
|
goto out;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-08-31 22:43:18 +00:00
|
|
|
while (got < nnames) {
|
2007-07-19 16:22:40 +00:00
|
|
|
ret = openvz_readline(outfd, buf, 32);
|
2010-08-31 22:43:18 +00:00
|
|
|
if (!ret)
|
|
|
|
break;
|
2008-07-21 13:34:19 +00:00
|
|
|
if (virStrToLong_i(buf, &endptr, 10, &veid) < 0) {
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Could not parse VPS ID %s"), buf);
|
2008-07-21 13:34:19 +00:00
|
|
|
continue;
|
|
|
|
}
|
2008-09-05 14:10:58 +00:00
|
|
|
snprintf(vpsname, sizeof(vpsname), "%d", veid);
|
2011-03-18 14:59:26 +00:00
|
|
|
if (!(names[got] = strdup(vpsname))) {
|
2010-12-01 16:43:46 +00:00
|
|
|
virReportOOMError();
|
|
|
|
goto out;
|
2011-03-18 14:59:26 +00:00
|
|
|
}
|
2007-07-17 13:27:26 +00:00
|
|
|
got ++;
|
|
|
|
}
|
2011-05-06 20:21:58 +00:00
|
|
|
|
|
|
|
if (virCommandWait(cmd, NULL) < 0)
|
|
|
|
goto out;
|
|
|
|
|
2010-12-01 16:43:46 +00:00
|
|
|
if (VIR_CLOSE(outfd) < 0) {
|
|
|
|
virReportSystemError(errno, "%s", _("failed to close file"));
|
|
|
|
goto out;
|
|
|
|
}
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2011-05-06 20:21:58 +00:00
|
|
|
rc = got;
|
2010-12-01 16:43:46 +00:00
|
|
|
out:
|
|
|
|
VIR_FORCE_CLOSE(outfd);
|
2011-05-06 20:21:58 +00:00
|
|
|
virCommandFree(cmd);
|
2011-05-17 15:12:16 +00:00
|
|
|
if (rc < 0) {
|
2011-05-06 20:21:58 +00:00
|
|
|
for ( ; got >= 0 ; got--)
|
|
|
|
VIR_FREE(names[got]);
|
|
|
|
}
|
|
|
|
return rc;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2011-04-03 09:21:26 +00:00
|
|
|
static int openvzGetProcessInfo(unsigned long long *cpuTime, int vpsid)
|
|
|
|
{
|
|
|
|
FILE *fp;
|
|
|
|
char *line = NULL;
|
|
|
|
size_t line_size = 0;
|
2008-07-21 08:08:25 +00:00
|
|
|
unsigned long long usertime, systime, nicetime;
|
2010-04-14 07:09:57 +00:00
|
|
|
int readvps = vpsid + 1; /* ensure readvps is initially different */
|
2011-04-03 09:21:26 +00:00
|
|
|
ssize_t ret;
|
2011-05-27 15:13:58 +00:00
|
|
|
int err = 0;
|
2008-07-21 08:08:25 +00:00
|
|
|
|
|
|
|
/* read statistic from /proc/vz/vestat.
|
|
|
|
sample:
|
|
|
|
Version: 2.2
|
2010-04-14 07:09:57 +00:00
|
|
|
VEID user nice system uptime idle other..
|
|
|
|
33 78 0 1330 59454597 142650441835148 other..
|
|
|
|
55 178 0 5340 59424597 542650441835148 other..
|
2008-07-21 08:08:25 +00:00
|
|
|
*/
|
|
|
|
|
2011-04-03 09:21:26 +00:00
|
|
|
if ((fp = fopen("/proc/vz/vestat", "r")) == NULL)
|
2008-07-21 08:08:25 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
/*search line with VEID=vpsid*/
|
2010-08-31 22:43:18 +00:00
|
|
|
while (1) {
|
2011-04-03 09:21:26 +00:00
|
|
|
ret = getline(&line, &line_size, fp);
|
2011-05-27 15:13:58 +00:00
|
|
|
if (ret < 0) {
|
|
|
|
err = !feof(fp);
|
2008-07-21 08:08:25 +00:00
|
|
|
break;
|
2011-05-27 15:13:58 +00:00
|
|
|
}
|
2008-07-21 08:08:25 +00:00
|
|
|
|
2010-04-14 07:09:57 +00:00
|
|
|
if (sscanf (line, "%d %llu %llu %llu",
|
|
|
|
&readvps, &usertime, &nicetime, &systime) == 4
|
|
|
|
&& readvps == vpsid) { /*found vpsid*/
|
|
|
|
/* convert jiffies to nanoseconds */
|
|
|
|
*cpuTime = (1000ull * 1000ull * 1000ull
|
|
|
|
* (usertime + nicetime + systime)
|
|
|
|
/ (unsigned long long)sysconf(_SC_CLK_TCK));
|
|
|
|
break;
|
|
|
|
}
|
2008-07-21 08:08:25 +00:00
|
|
|
}
|
|
|
|
|
2011-04-03 09:21:26 +00:00
|
|
|
VIR_FREE(line);
|
|
|
|
VIR_FORCE_FCLOSE(fp);
|
2011-05-27 15:13:58 +00:00
|
|
|
if (err)
|
2008-07-21 08:08:25 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (readvps != vpsid) /*not found*/
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
static int openvzNumDefinedDomains(virConnectPtr conn) {
|
2008-12-04 21:41:51 +00:00
|
|
|
struct openvz_driver *driver = conn->privateData;
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
int n;
|
2008-10-10 14:20:37 +00:00
|
|
|
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverLock(driver);
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
n = virDomainObjListNumOfDomains(&driver->domains, 0);
|
2008-12-04 21:44:55 +00:00
|
|
|
openvzDriverUnlock(driver);
|
2008-10-10 14:20:37 +00:00
|
|
|
|
Convert virDomainObjListPtr to use a hash of domain objects
The current virDomainObjListPtr object stores domain objects in
an array. This means that to find a particular objects requires
O(n) time, and more critically acquiring O(n) mutex locks.
The new impl replaces the array with a virHashTable, keyed off
UUID. Finding a object based on UUID is now O(1) time, and only
requires a single mutex lock. Finding by name/id is unchanged
in complexity.
In changing this, all code which iterates over the array had
to be updated to use a hash table iterator function callback.
Several of the functions which were identically duplicating
across all drivers were pulled into domain_conf.c
* src/conf/domain_conf.h, src/conf/domain_conf.c: Change
virDomainObjListPtr to use virHashTable. Add a initializer
method virDomainObjListInit, and rename virDomainObjListFree
to virDomainObjListDeinit, since its not actually freeing
the container, only its contents. Also add some convenient
methods virDomainObjListGetInactiveNames,
virDomainObjListGetActiveIDs and virDomainObjListNumOfDomains
which can be used to implement the correspondingly named
public API entry points in drivers
* src/libvirt_private.syms: Export new methods from domain_conf.h
* src/lxc/lxc_driver.c, src/opennebula/one_driver.c,
src/openvz/openvz_conf.c, src/openvz/openvz_driver.c,
src/qemu/qemu_driver.c, src/test/test_driver.c,
src/uml/uml_driver.c, src/vbox/vbox_tmpl.c: Update all code
to deal with hash tables instead of arrays for domains
2009-10-09 11:33:51 +00:00
|
|
|
return n;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2009-11-02 16:39:46 +00:00
|
|
|
static int
|
2010-04-03 14:23:45 +00:00
|
|
|
openvzDomainSetMemoryInternal(virDomainObjPtr vm,
|
2012-03-02 20:27:39 +00:00
|
|
|
unsigned long long mem)
|
2009-11-02 16:39:46 +00:00
|
|
|
{
|
|
|
|
char str_mem[16];
|
|
|
|
const char *prog[] = { VZCTL, "--quiet", "set", PROGRAM_SENTINAL,
|
|
|
|
"--kmemsize", str_mem, "--save", NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
/* memory has to be changed its format from kbyte to byte */
|
2012-03-02 20:27:39 +00:00
|
|
|
snprintf(str_mem, sizeof(str_mem), "%llu", mem * 1024);
|
2009-11-02 16:39:46 +00:00
|
|
|
|
|
|
|
openvzSetProgramSentinal(prog, vm->def->name);
|
2010-02-04 22:41:52 +00:00
|
|
|
if (virRun(prog, NULL) < 0) {
|
2009-11-02 16:39:46 +00:00
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2012-04-25 19:18:16 +00:00
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainGetBarrierLimit(virDomainPtr domain,
|
|
|
|
const char *param,
|
|
|
|
unsigned long long *barrier,
|
|
|
|
unsigned long long *limit)
|
|
|
|
{
|
|
|
|
int status, ret = -1;
|
|
|
|
char *endp, *output = NULL;
|
|
|
|
const char *tmp;
|
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZLIST, "--no-header", NULL);
|
|
|
|
|
|
|
|
virCommandSetOutputBuffer(cmd, &output);
|
|
|
|
virCommandAddArgFormat(cmd, "-o%s.b,%s.l", param, param);
|
|
|
|
virCommandAddArg(cmd, domain->name);
|
|
|
|
if (virCommandRun(cmd, &status)) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Failed to get %s for %s: %d"), param, domain->name,
|
|
|
|
status);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
tmp = output;
|
|
|
|
virSkipSpaces(&tmp);
|
|
|
|
if (virStrToLong_ull(tmp, &endp, 10, barrier) < 0) {
|
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Can't parse limit from "VZLIST" output '%s'"), output);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
tmp = endp;
|
|
|
|
virSkipSpaces(&tmp);
|
|
|
|
if (virStrToLong_ull(tmp, &endp, 10, limit) < 0) {
|
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Can't parse barrier from "VZLIST" output '%s'"), output);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
VIR_FREE(output);
|
|
|
|
virCommandFree(cmd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainSetBarrierLimit(virDomainPtr domain,
|
|
|
|
const char *param,
|
|
|
|
unsigned long long barrier,
|
|
|
|
unsigned long long limit)
|
|
|
|
{
|
|
|
|
int status, ret = -1;
|
|
|
|
virCommandPtr cmd = virCommandNewArgList(VZCTL, "--quiet", "set", NULL);
|
|
|
|
|
|
|
|
/* LONG_MAX indicates unlimited so reject larger values */
|
|
|
|
if (barrier > LONG_MAX || limit > LONG_MAX) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Failed to set %s for %s: value too large"), param,
|
|
|
|
domain->name);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
virCommandAddArg(cmd, domain->name);
|
|
|
|
virCommandAddArgFormat(cmd, "--%s", param);
|
|
|
|
virCommandAddArgFormat(cmd, "%llu:%llu", barrier, limit);
|
|
|
|
virCommandAddArg(cmd, "--save");
|
|
|
|
if (virCommandRun(cmd, &status)) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_FAILED,
|
|
|
|
_("Failed to set %s for %s: %d"), param, domain->name,
|
|
|
|
status);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
cleanup:
|
|
|
|
virCommandFree(cmd);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainGetMemoryParameters(virDomainPtr domain,
|
|
|
|
virTypedParameterPtr params,
|
|
|
|
int *nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
int i, result = -1;
|
|
|
|
const char *name;
|
|
|
|
long kb_per_pages;
|
|
|
|
unsigned long long barrier, limit, val;
|
|
|
|
|
|
|
|
virCheckFlags(0, -1);
|
|
|
|
|
2012-05-07 21:00:28 +00:00
|
|
|
kb_per_pages = openvzKBPerPages();
|
|
|
|
if (kb_per_pages < 0)
|
2012-04-25 19:18:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (*nparams == 0) {
|
|
|
|
*nparams = OPENVZ_NB_MEM_PARAM;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i <= *nparams; i++) {
|
|
|
|
virMemoryParameterPtr param = ¶ms[i];
|
|
|
|
|
|
|
|
switch (i) {
|
|
|
|
case 0:
|
|
|
|
name = "privvmpages";
|
|
|
|
if (openvzDomainGetBarrierLimit(domain, name, &barrier, &limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
val = (limit == LONG_MAX) ? 0ull : limit * kb_per_pages;
|
|
|
|
if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_HARD_LIMIT,
|
|
|
|
VIR_TYPED_PARAM_ULLONG, val) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 1:
|
|
|
|
name = "privvmpages";
|
|
|
|
if (openvzDomainGetBarrierLimit(domain, name, &barrier, &limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
val = (barrier == LONG_MAX) ? 0ull : barrier * kb_per_pages;
|
|
|
|
if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_SOFT_LIMIT,
|
|
|
|
VIR_TYPED_PARAM_ULLONG, val) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
name = "vmguarpages";
|
|
|
|
if (openvzDomainGetBarrierLimit(domain, name, &barrier, &limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
val = (barrier == LONG_MAX) ? 0ull : barrier * kb_per_pages;
|
|
|
|
if (virTypedParameterAssign(param, VIR_DOMAIN_MEMORY_MIN_GUARANTEE,
|
|
|
|
VIR_TYPED_PARAM_ULLONG, val) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (*nparams > OPENVZ_NB_MEM_PARAM)
|
|
|
|
*nparams = OPENVZ_NB_MEM_PARAM;
|
|
|
|
result = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainSetMemoryParameters(virDomainPtr domain,
|
|
|
|
virTypedParameterPtr params,
|
|
|
|
int nparams,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
int i, result = -1;
|
|
|
|
long kb_per_pages;
|
|
|
|
|
2012-05-07 21:00:28 +00:00
|
|
|
kb_per_pages = openvzKBPerPages();
|
|
|
|
if (kb_per_pages < 0)
|
2012-04-25 19:18:16 +00:00
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
virCheckFlags(0, -1);
|
|
|
|
if (virTypedParameterArrayValidate(params, nparams,
|
|
|
|
VIR_DOMAIN_MEMORY_HARD_LIMIT,
|
|
|
|
VIR_TYPED_PARAM_ULLONG,
|
|
|
|
VIR_DOMAIN_MEMORY_SOFT_LIMIT,
|
|
|
|
VIR_TYPED_PARAM_ULLONG,
|
|
|
|
VIR_DOMAIN_MEMORY_MIN_GUARANTEE,
|
|
|
|
VIR_TYPED_PARAM_ULLONG,
|
|
|
|
NULL) < 0)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
for (i = 0; i < nparams; i++) {
|
|
|
|
virTypedParameterPtr param = ¶ms[i];
|
|
|
|
unsigned long long barrier, limit;
|
|
|
|
|
|
|
|
if (STREQ(param->field, VIR_DOMAIN_MEMORY_HARD_LIMIT)) {
|
|
|
|
if (openvzDomainGetBarrierLimit(domain, "privvmpages",
|
|
|
|
&barrier, &limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
limit = params[i].value.ul / kb_per_pages;
|
|
|
|
if (openvzDomainSetBarrierLimit(domain, "privvmpages",
|
|
|
|
barrier, limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
} else if (STREQ(param->field, VIR_DOMAIN_MEMORY_SOFT_LIMIT)) {
|
|
|
|
if (openvzDomainGetBarrierLimit(domain, "privvmpages",
|
|
|
|
&barrier, &limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
barrier = params[i].value.ul / kb_per_pages;
|
|
|
|
if (openvzDomainSetBarrierLimit(domain, "privvmpages",
|
|
|
|
barrier, limit) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
} else if (STREQ(param->field, VIR_DOMAIN_MEMORY_MIN_GUARANTEE)) {
|
|
|
|
barrier = params[i].value.ul / kb_per_pages;
|
|
|
|
if (openvzDomainSetBarrierLimit(domain, "vmguarpages",
|
|
|
|
barrier, LONG_MAX) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = 0;
|
|
|
|
cleanup:
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-07-29 08:41:32 +00:00
|
|
|
static int
|
|
|
|
openvzGetVEStatus(virDomainObjPtr vm, int *status, int *reason)
|
|
|
|
{
|
|
|
|
virCommandPtr cmd;
|
|
|
|
char *outbuf;
|
|
|
|
char *line;
|
|
|
|
int state;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
cmd = virCommandNewArgList(VZLIST, vm->def->name, "-ostatus", "-H", NULL);
|
|
|
|
virCommandSetOutputBuffer(cmd, &outbuf);
|
|
|
|
if (virCommandRun(cmd, NULL) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if ((line = strchr(outbuf, '\n')) == NULL) {
|
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Failed to parse vzlist output"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
*line++ = '\0';
|
|
|
|
|
|
|
|
state = virDomainObjGetState(vm, reason);
|
|
|
|
|
|
|
|
if (STREQ(outbuf, "running")) {
|
|
|
|
/* There is no way to detect whether a domain is paused or not
|
|
|
|
* with vzlist */
|
|
|
|
if (state == VIR_DOMAIN_PAUSED)
|
|
|
|
*status = state;
|
|
|
|
else
|
|
|
|
*status = VIR_DOMAIN_RUNNING;
|
|
|
|
} else {
|
|
|
|
*status = VIR_DOMAIN_SHUTOFF;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
virCommandFree(cmd);
|
|
|
|
VIR_FREE(outbuf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2012-04-19 21:51:31 +00:00
|
|
|
static int
|
|
|
|
openvzDomainInterfaceStats (virDomainPtr dom,
|
|
|
|
const char *path,
|
|
|
|
struct _virDomainInterfaceStats *stats)
|
|
|
|
{
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainObjPtr vm;
|
|
|
|
int i;
|
|
|
|
int ret = -1;
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
virUUIDFormat(dom->uuid, uuidstr);
|
|
|
|
openvzError(VIR_ERR_NO_DOMAIN,
|
|
|
|
_("no domain with matching uuid '%s'"), uuidstr);
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!virDomainObjIsActive(vm)) {
|
|
|
|
openvzError(VIR_ERR_OPERATION_INVALID,
|
|
|
|
"%s", _("domain is not running"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check the path is one of the domain's network interfaces. */
|
|
|
|
for (i = 0 ; i < vm->def->nnets ; i++) {
|
|
|
|
if (vm->def->nets[i]->ifname &&
|
|
|
|
STREQ (vm->def->nets[i]->ifname, path)) {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ret == 0)
|
|
|
|
ret = linuxDomainInterfaceStats(path, stats);
|
|
|
|
else
|
|
|
|
openvzError(VIR_ERR_INVALID_ARG,
|
|
|
|
_("invalid path, '%s' is not a known interface"), path);
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-05-25 17:49:32 +00:00
|
|
|
static int
|
|
|
|
openvzUpdateDevice(virDomainDefPtr vmdef,
|
|
|
|
virDomainDeviceDefPtr dev,
|
|
|
|
bool persist)
|
|
|
|
{
|
|
|
|
virDomainFSDefPtr fs, cur;
|
|
|
|
int pos;
|
|
|
|
|
|
|
|
if (dev->type == VIR_DOMAIN_DEVICE_FS) {
|
|
|
|
fs = dev->data.fs;
|
|
|
|
pos = virDomainFSIndexByName(vmdef, fs->dst);
|
|
|
|
|
|
|
|
if (pos < 0) {
|
|
|
|
openvzError(VIR_ERR_INVALID_ARG,
|
|
|
|
_("target %s doesn't exist."), fs->dst);
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
cur = vmdef->fss[pos];
|
|
|
|
|
|
|
|
/* We only allow updating the quota */
|
|
|
|
if (!STREQ(cur->src, fs->src)
|
|
|
|
|| cur->type != fs->type
|
|
|
|
|| cur->accessmode != fs->accessmode
|
|
|
|
|| cur->wrpolicy != fs->wrpolicy
|
|
|
|
|| cur->readonly != fs->readonly) {
|
|
|
|
openvzError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
|
|
_("Can only modify disk quota"));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (openvzSetDiskQuota(vmdef, fs, persist) < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
cur->space_hard_limit = fs->space_hard_limit;
|
|
|
|
cur->space_soft_limit = fs->space_soft_limit;
|
|
|
|
} else {
|
|
|
|
openvzError(VIR_ERR_CONFIG_UNSUPPORTED,
|
|
|
|
_("Can't modify device type '%s'"),
|
|
|
|
virDomainDeviceTypeToString(dev->type));
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static int
|
|
|
|
openvzDomainUpdateDeviceFlags(virDomainPtr dom, const char *xml,
|
|
|
|
unsigned int flags)
|
|
|
|
{
|
|
|
|
int ret = -1;
|
|
|
|
int veid;
|
|
|
|
struct openvz_driver *driver = dom->conn->privateData;
|
|
|
|
virDomainDeviceDefPtr dev = NULL;
|
|
|
|
virDomainObjPtr vm = NULL;
|
|
|
|
virDomainDefPtr vmdef = NULL;
|
|
|
|
bool persist = false;
|
|
|
|
|
|
|
|
virCheckFlags(VIR_DOMAIN_DEVICE_MODIFY_LIVE |
|
|
|
|
VIR_DOMAIN_DEVICE_MODIFY_CONFIG, -1);
|
|
|
|
|
|
|
|
openvzDriverLock(driver);
|
|
|
|
vm = virDomainFindByUUID(&driver->domains, dom->uuid);
|
|
|
|
vmdef = vm->def;
|
|
|
|
|
|
|
|
if (!vm) {
|
|
|
|
openvzError(VIR_ERR_NO_DOMAIN, "%s",
|
|
|
|
_("no domain with matching uuid"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virStrToLong_i(vmdef->name, NULL, 10, &veid) < 0) {
|
|
|
|
openvzError(VIR_ERR_INTERNAL_ERROR, "%s",
|
|
|
|
_("Could not convert domain name to VEID"));
|
|
|
|
goto cleanup;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virDomainLiveConfigHelperMethod(driver->caps,
|
|
|
|
vm,
|
|
|
|
&flags,
|
|
|
|
&vmdef) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
dev = virDomainDeviceDefParse(driver->caps, vmdef, xml,
|
|
|
|
VIR_DOMAIN_XML_INACTIVE);
|
|
|
|
if (!dev)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
if (flags & VIR_DOMAIN_AFFECT_CONFIG)
|
|
|
|
persist = true;
|
|
|
|
|
|
|
|
if (openvzUpdateDevice(vmdef, dev, persist) < 0)
|
|
|
|
goto cleanup;
|
|
|
|
|
|
|
|
ret = 0;
|
|
|
|
|
|
|
|
cleanup:
|
|
|
|
openvzDriverUnlock(driver);
|
|
|
|
virDomainDeviceDefFree(dev);
|
|
|
|
if (vm)
|
|
|
|
virDomainObjUnlock(vm);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
static virDriver openvzDriver = {
|
Convert all driver struct intializers to C99 style
Change all the driver struct initializers to use the
C99 style, leaving out unused fields. This will make
it possible to add new APIs without changing every
driver. eg change:
qemudDomainResume, /* domainResume */
qemudDomainShutdown, /* domainShutdown */
NULL, /* domainReboot */
qemudDomainDestroy, /* domainDestroy */
to
.domainResume = qemudDomainResume,
.domainShutdown = qemudDomainShutdown,
.domainDestroy = qemudDomainDestroy,
And get rid of any existing C99 style initializersr which
set NULL, eg change
.listPools = vboxStorageListPools,
.numOfDefinedPools = NULL,
.listDefinedPools = NULL,
.findPoolSources = NULL,
.poolLookupByName = vboxStoragePoolLookupByName,
to
.listPools = vboxStorageListPools,
.poolLookupByName = vboxStoragePoolLookupByName,
2011-05-13 10:16:31 +00:00
|
|
|
.no = VIR_DRV_OPENVZ,
|
|
|
|
.name = "OPENVZ",
|
2011-05-13 13:35:01 +00:00
|
|
|
.open = openvzOpen, /* 0.3.1 */
|
|
|
|
.close = openvzClose, /* 0.3.1 */
|
|
|
|
.type = openvzGetType, /* 0.3.1 */
|
|
|
|
.version = openvzGetVersion, /* 0.5.0 */
|
2012-04-16 08:50:33 +00:00
|
|
|
.getHostname = virGetHostname, /* 0.9.12 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.getMaxVcpus = openvzGetMaxVCPUs, /* 0.4.6 */
|
|
|
|
.nodeGetInfo = nodeGetInfo, /* 0.3.2 */
|
2012-04-17 02:08:53 +00:00
|
|
|
.nodeGetCPUStats = nodeGetCPUStats, /* 0.9.12 */
|
|
|
|
.nodeGetMemoryStats = nodeGetMemoryStats, /* 0.9.12 */
|
|
|
|
.nodeGetCellsFreeMemory = nodeGetCellsFreeMemory, /* 0.9.12 */
|
|
|
|
.nodeGetFreeMemory = nodeGetFreeMemory, /* 0.9.12 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.getCapabilities = openvzGetCapabilities, /* 0.4.6 */
|
|
|
|
.listDomains = openvzListDomains, /* 0.3.1 */
|
|
|
|
.numOfDomains = openvzNumDomains, /* 0.3.1 */
|
|
|
|
.domainCreateXML = openvzDomainCreateXML, /* 0.3.3 */
|
|
|
|
.domainLookupByID = openvzDomainLookupByID, /* 0.3.1 */
|
|
|
|
.domainLookupByUUID = openvzDomainLookupByUUID, /* 0.3.1 */
|
|
|
|
.domainLookupByName = openvzDomainLookupByName, /* 0.3.1 */
|
|
|
|
.domainSuspend = openvzDomainSuspend, /* 0.8.3 */
|
|
|
|
.domainResume = openvzDomainResume, /* 0.8.3 */
|
|
|
|
.domainShutdown = openvzDomainShutdown, /* 0.3.1 */
|
2011-10-05 17:31:55 +00:00
|
|
|
.domainShutdownFlags = openvzDomainShutdownFlags, /* 0.9.10 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.domainReboot = openvzDomainReboot, /* 0.3.1 */
|
|
|
|
.domainDestroy = openvzDomainShutdown, /* 0.3.1 */
|
2011-07-21 07:49:02 +00:00
|
|
|
.domainDestroyFlags = openvzDomainShutdownFlags, /* 0.9.4 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.domainGetOSType = openvzGetOSType, /* 0.3.1 */
|
2012-04-25 19:18:16 +00:00
|
|
|
.domainGetMemoryParameters = openvzDomainGetMemoryParameters, /* 0.9.12 */
|
|
|
|
.domainSetMemoryParameters = openvzDomainSetMemoryParameters, /* 0.9.12 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.domainGetInfo = openvzDomainGetInfo, /* 0.3.1 */
|
|
|
|
.domainGetState = openvzDomainGetState, /* 0.9.2 */
|
|
|
|
.domainSetVcpus = openvzDomainSetVcpus, /* 0.4.6 */
|
|
|
|
.domainSetVcpusFlags = openvzDomainSetVcpusFlags, /* 0.8.5 */
|
|
|
|
.domainGetVcpusFlags = openvzDomainGetVcpusFlags, /* 0.8.5 */
|
|
|
|
.domainGetMaxVcpus = openvzDomainGetMaxVcpus, /* 0.4.6 */
|
|
|
|
.domainGetXMLDesc = openvzDomainGetXMLDesc, /* 0.4.6 */
|
|
|
|
.listDefinedDomains = openvzListDefinedDomains, /* 0.3.1 */
|
|
|
|
.numOfDefinedDomains = openvzNumDefinedDomains, /* 0.3.1 */
|
|
|
|
.domainCreate = openvzDomainCreate, /* 0.3.1 */
|
|
|
|
.domainCreateWithFlags = openvzDomainCreateWithFlags, /* 0.8.2 */
|
|
|
|
.domainDefineXML = openvzDomainDefineXML, /* 0.3.3 */
|
|
|
|
.domainUndefine = openvzDomainUndefine, /* 0.3.3 */
|
2011-07-20 03:08:21 +00:00
|
|
|
.domainUndefineFlags = openvzDomainUndefineFlags, /* 0.9.4 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.domainGetAutostart = openvzDomainGetAutostart, /* 0.4.6 */
|
|
|
|
.domainSetAutostart = openvzDomainSetAutostart, /* 0.4.6 */
|
2012-04-19 21:51:31 +00:00
|
|
|
.domainInterfaceStats = openvzDomainInterfaceStats, /* 0.9.12 */
|
2011-05-13 13:35:01 +00:00
|
|
|
.isEncrypted = openvzIsEncrypted, /* 0.7.3 */
|
|
|
|
.isSecure = openvzIsSecure, /* 0.7.3 */
|
|
|
|
.domainIsActive = openvzDomainIsActive, /* 0.7.3 */
|
|
|
|
.domainIsPersistent = openvzDomainIsPersistent, /* 0.7.3 */
|
|
|
|
.domainIsUpdated = openvzDomainIsUpdated, /* 0.8.6 */
|
2011-11-24 13:44:59 +00:00
|
|
|
.isAlive = openvzIsAlive, /* 0.9.8 */
|
2012-05-25 17:49:32 +00:00
|
|
|
.domainUpdateDeviceFlags = openvzDomainUpdateDeviceFlags, /* 0.9.13 */
|
2007-07-17 13:27:26 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
int openvzRegister(void) {
|
|
|
|
virRegisterDriver(&openvzDriver);
|
|
|
|
return 0;
|
|
|
|
}
|