2007-07-17 13:27:26 +00:00
|
|
|
/*
|
|
|
|
* openvz_conf.c: config functions for managing OpenVZ VEs
|
|
|
|
*
|
|
|
|
* 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef WITH_OPENVZ
|
|
|
|
|
2008-01-29 18:15:54 +00:00
|
|
|
#include <config.h>
|
2007-12-05 21:40:15 +00:00
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <strings.h>
|
|
|
|
#include <time.h>
|
2007-09-03 15:37:07 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <errno.h>
|
2008-06-12 13:48:29 +00:00
|
|
|
#include <string.h>
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
#include <libxml/parser.h>
|
|
|
|
#include <libxml/tree.h>
|
|
|
|
#include <libxml/xpath.h>
|
|
|
|
#include <libxml/uri.h>
|
|
|
|
|
2008-06-12 13:48:29 +00:00
|
|
|
#include "internal.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
#include "openvz_driver.h"
|
2007-09-03 15:37:07 +00:00
|
|
|
#include "openvz_conf.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
#include "uuid.h"
|
|
|
|
#include "buf.h"
|
2008-06-06 11:09:57 +00:00
|
|
|
#include "memory.h"
|
2008-07-21 13:34:19 +00:00
|
|
|
#include "util.h"
|
2008-07-28 14:06:54 +00:00
|
|
|
#include "xml.h"
|
|
|
|
#include "domain_conf.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
static char *openvzLocateConfDir(void);
|
|
|
|
static struct openvz_vm_def *openvzParseXML(virConnectPtr conn, xmlDocPtr xml);
|
|
|
|
static int openvzGetVPSUUID(int vpsid, char *uuidstr);
|
|
|
|
static int openvzSetUUID(int vpsid);
|
2008-07-11 08:56:16 +00:00
|
|
|
static int openvzLocateConfFile(int vpsid, char *conffile, int maxlen);
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-07-09 11:55:27 +00:00
|
|
|
void
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError (virConnectPtr conn, virErrorNumber code, const char *fmt, ...)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
2008-07-09 11:55:27 +00:00
|
|
|
va_list args;
|
|
|
|
char errorMessage[OPENVZ_MAX_ERROR_LEN];
|
2007-07-17 13:27:26 +00:00
|
|
|
const char *errmsg;
|
|
|
|
|
2008-07-09 11:55:27 +00:00
|
|
|
if (fmt) {
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(errorMessage, OPENVZ_MAX_ERROR_LEN-1, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
} else {
|
|
|
|
errorMessage[0] = '\0';
|
|
|
|
}
|
|
|
|
|
|
|
|
errmsg = __virErrorMsg(code, (errorMessage[0] ? errorMessage : NULL));
|
2007-11-20 10:15:38 +00:00
|
|
|
__virRaiseError (conn, NULL, NULL, VIR_FROM_OPENVZ,
|
2008-07-09 11:55:27 +00:00
|
|
|
code, VIR_ERR_ERROR, errmsg, errorMessage, NULL, 0, 0,
|
|
|
|
errmsg, errorMessage);
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
struct openvz_vm
|
2007-07-19 16:22:40 +00:00
|
|
|
*openvzFindVMByID(const struct openvz_driver *driver, int id) {
|
2007-07-17 13:27:26 +00:00
|
|
|
struct openvz_vm *vm = driver->vms;
|
|
|
|
|
|
|
|
while (vm) {
|
|
|
|
if (vm->vpsid == id)
|
|
|
|
return vm;
|
|
|
|
vm = vm->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
struct openvz_vm
|
2007-07-19 16:22:40 +00:00
|
|
|
*openvzFindVMByUUID(const struct openvz_driver *driver,
|
2007-07-17 13:27:26 +00:00
|
|
|
const unsigned char *uuid) {
|
|
|
|
struct openvz_vm *vm = driver->vms;
|
|
|
|
|
|
|
|
while (vm) {
|
2007-08-09 20:19:12 +00:00
|
|
|
if (!memcmp(vm->vmdef->uuid, uuid, VIR_UUID_BUFLEN))
|
2007-07-17 13:27:26 +00:00
|
|
|
return vm;
|
|
|
|
vm = vm->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
struct openvz_vm
|
2007-07-19 16:22:40 +00:00
|
|
|
*openvzFindVMByName(const struct openvz_driver *driver,
|
2007-07-17 13:27:26 +00:00
|
|
|
const char *name) {
|
|
|
|
struct openvz_vm *vm = driver->vms;
|
|
|
|
|
|
|
|
while (vm) {
|
2008-05-14 19:51:24 +00:00
|
|
|
if (STREQ(vm->vmdef->name, name))
|
2007-07-17 13:27:26 +00:00
|
|
|
return vm;
|
|
|
|
vm = vm->next;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
int
|
2007-09-03 16:30:00 +00:00
|
|
|
strtoI(const char *str)
|
2007-09-03 15:37:07 +00:00
|
|
|
{
|
|
|
|
int val;
|
|
|
|
|
2008-07-21 13:34:19 +00:00
|
|
|
if (virStrToLong_i(str, NULL, 10, &val) < 0)
|
|
|
|
return 0 ;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
/* function checks MAC address is empty
|
|
|
|
return 0 - empty
|
|
|
|
1 - not
|
|
|
|
*/
|
|
|
|
int openvzCheckEmptyMac(const unsigned char *mac)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < VIR_DOMAIN_NET_MAC_SIZE; i++)
|
|
|
|
if (mac[i] != 0x00)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* convert mac address to string
|
|
|
|
return pointer to string or NULL
|
|
|
|
*/
|
|
|
|
char *openvzMacToString(const unsigned char *mac)
|
|
|
|
{
|
|
|
|
char str[20];
|
|
|
|
if (snprintf(str, 18, "%02X:%02X:%02X:%02X:%02X:%02X",
|
|
|
|
mac[0], mac[1], mac[2],
|
|
|
|
mac[3], mac[4], mac[5]) >= 18)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
return strdup(str);
|
|
|
|
}
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
void
|
|
|
|
openvzRemoveInactiveVM(struct openvz_driver *driver, struct openvz_vm *vm)
|
|
|
|
{
|
|
|
|
driver->num_inactive--;
|
|
|
|
openvzFreeVM(driver, vm, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free all memory associated with a openvz_vm_def structure */
|
|
|
|
void
|
|
|
|
openvzFreeVMDef(struct openvz_vm_def *def)
|
|
|
|
{
|
|
|
|
if (def) {
|
2008-07-28 14:06:54 +00:00
|
|
|
virDomainNetDefFree(def->net);
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
/* Free all memory associated with a openvz_vm structure
|
2007-09-03 15:37:07 +00:00
|
|
|
* @checkCallee == 0 then openvzFreeDriver() is callee else some other function
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
openvzFreeVM(struct openvz_driver *driver, struct openvz_vm *vm,
|
|
|
|
int checkCallee)
|
|
|
|
{
|
|
|
|
struct openvz_vm *vms;
|
|
|
|
|
|
|
|
if (!vm && !driver)
|
|
|
|
return;
|
|
|
|
vms = driver->vms;
|
|
|
|
if (checkCallee) {
|
|
|
|
if (vms == vm)
|
|
|
|
driver->vms = vm->next;
|
|
|
|
else {
|
|
|
|
while (vms) {
|
|
|
|
struct openvz_vm *prev = vms;
|
|
|
|
|
|
|
|
vms = vms->next;
|
|
|
|
if (vms == vm) {
|
|
|
|
prev->next = vms->next;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2007-09-03 15:37:07 +00:00
|
|
|
if (vms) {
|
|
|
|
openvzFreeVMDef(vm->vmdef);
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(vm);
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
/* Free all memory associated with a openvz_driver structure */
|
|
|
|
void
|
|
|
|
openvzFreeDriver(struct openvz_driver *driver)
|
|
|
|
{
|
|
|
|
struct openvz_vm *next;
|
|
|
|
|
|
|
|
if (!driver)
|
|
|
|
return;
|
|
|
|
if (driver->vms)
|
|
|
|
for(next = driver->vms->next; driver->vms; driver->vms = next)
|
|
|
|
openvzFreeVM(driver, driver->vms, 0);
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(driver);
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct openvz_vm *
|
|
|
|
openvzAssignVMDef(virConnectPtr conn,
|
|
|
|
struct openvz_driver *driver, struct openvz_vm_def *def)
|
|
|
|
{
|
|
|
|
struct openvz_vm *vm = NULL;
|
|
|
|
|
|
|
|
if (!driver || !def)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
if ((vm = openvzFindVMByName(driver, def->name))) {
|
|
|
|
if (!openvzIsActiveVM(vm)) {
|
|
|
|
openvzFreeVMDef(vm->vmdef);
|
|
|
|
vm->vmdef = def;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-03-27 14:00:28 +00:00
|
|
|
openvzLog(OPENVZ_ERR,
|
2008-04-10 16:54:54 +00:00
|
|
|
_("Error already an active OPENVZ VM having id '%s'"),
|
|
|
|
def->name);
|
2007-09-03 15:37:07 +00:00
|
|
|
openvzFreeVMDef(def);
|
|
|
|
return NULL; /* can't redefine an active domain */
|
|
|
|
}
|
|
|
|
|
|
|
|
return vm;
|
|
|
|
}
|
|
|
|
|
2008-06-06 11:09:57 +00:00
|
|
|
if (VIR_ALLOC(vm) < 0) {
|
2008-02-05 19:27:37 +00:00
|
|
|
openvzFreeVMDef(def);
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_NO_MEMORY, _("vm"));
|
2007-09-03 15:37:07 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
vm->vpsid = -1; /* -1 needed for to represent inactiveness of domain before 'start' */
|
|
|
|
vm->status = VIR_DOMAIN_SHUTOFF;
|
|
|
|
vm->vmdef = def;
|
|
|
|
vm->next = driver->vms;
|
|
|
|
|
|
|
|
driver->vms = vm;
|
|
|
|
driver->num_inactive++;
|
|
|
|
|
|
|
|
return vm;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
struct openvz_vm_def
|
2007-09-03 15:37:07 +00:00
|
|
|
*openvzParseVMDef(virConnectPtr conn,
|
|
|
|
const char *xmlStr, const char *displayName)
|
|
|
|
{
|
|
|
|
xmlDocPtr xml;
|
|
|
|
struct openvz_vm_def *def = NULL;
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
xml = xmlReadDoc(BAD_CAST xmlStr, displayName ? displayName : "domain.xml", NULL,
|
2007-09-03 15:37:07 +00:00
|
|
|
XML_PARSE_NOENT | XML_PARSE_NONET | XML_PARSE_NOERROR | XML_PARSE_NOWARNING);
|
|
|
|
if (!xml) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_XML_ERROR, NULL);
|
2007-09-03 15:37:07 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
def = openvzParseXML(conn, xml);
|
|
|
|
xmlFreeDoc(xml);
|
|
|
|
|
|
|
|
return def;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
/* Parse filesystem section
|
|
|
|
Sample:
|
|
|
|
<filesystem type="template">
|
|
|
|
<source name="fedora-core-5-i386"/>
|
|
|
|
<quota type="size" max="10000"/>
|
|
|
|
<quota type="inodes" max="100"/>
|
|
|
|
</filesystem>
|
|
|
|
*/
|
|
|
|
static int openvzParseDomainFS(virConnectPtr conn,
|
|
|
|
struct openvz_fs_def *fs,
|
|
|
|
xmlXPathContextPtr ctxt)
|
|
|
|
{
|
|
|
|
xmlNodePtr cur, obj;
|
|
|
|
char *type = NULL;
|
|
|
|
int n;
|
|
|
|
xmlNodePtr *nodes = NULL;
|
|
|
|
|
|
|
|
|
2008-07-29 08:42:56 +00:00
|
|
|
if ((n = virXPathNodeSet(conn, "/domain/devices/filesystem",
|
|
|
|
ctxt, &nodes)) < 0) {
|
2008-07-28 14:06:54 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("missing filesystem tag"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n > 1) {
|
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("There should be only one filesystem tag"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
obj = nodes[0];
|
|
|
|
|
|
|
|
/*check template type*/
|
|
|
|
type = virXMLPropString(obj, "type");
|
|
|
|
if (type == NULL) {
|
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("missing type attribute"));
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (STRNEQ(type, "template")) {
|
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Unknown type attribute %s"), type);
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
VIR_FREE(type);
|
|
|
|
|
|
|
|
cur = obj->children;
|
|
|
|
while(cur != NULL)
|
|
|
|
{
|
|
|
|
if (cur->type == XML_ELEMENT_NODE) {
|
|
|
|
if (xmlStrEqual(cur->name, BAD_CAST "source")) {
|
|
|
|
char * name = virXMLPropString(cur, "name");
|
|
|
|
|
|
|
|
if (name != NULL) {
|
|
|
|
strncpy(fs->tmpl, name,sizeof(fs->tmpl));
|
|
|
|
fs->tmpl[sizeof(fs->tmpl) - 1] = '\0';
|
|
|
|
}
|
|
|
|
VIR_FREE(name);
|
|
|
|
} else if (xmlStrEqual(cur->name, BAD_CAST "quota")) {
|
|
|
|
char * qtype = virXMLPropString(cur, "type");
|
|
|
|
char * max = virXMLPropString(cur, "max");
|
|
|
|
|
|
|
|
if (qtype != NULL && STREQ(qtype, "size") && max != NULL)
|
|
|
|
fs->disksize = strtoI(max);
|
|
|
|
else if (qtype != NULL && STREQ(qtype, "inodes") && max != NULL)
|
|
|
|
fs->diskinodes = strtoI(max);
|
|
|
|
VIR_FREE(qtype);
|
|
|
|
VIR_FREE(max);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
cur = cur->next;
|
|
|
|
}
|
|
|
|
VIR_FREE(nodes);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
error:
|
|
|
|
VIR_FREE(nodes);
|
|
|
|
VIR_FREE(type);
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
/*
|
|
|
|
* Parses a libvirt XML definition of a guest, and populates the
|
|
|
|
* the openvz_vm struct with matching data about the guests config
|
|
|
|
*/
|
2008-02-05 19:27:37 +00:00
|
|
|
static struct openvz_vm_def
|
2007-07-19 16:22:40 +00:00
|
|
|
*openvzParseXML(virConnectPtr conn,
|
|
|
|
xmlDocPtr xml) {
|
2007-07-17 13:27:26 +00:00
|
|
|
xmlNodePtr root = NULL;
|
2008-07-28 14:06:54 +00:00
|
|
|
char *prop = NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
xmlXPathContextPtr ctxt = NULL;
|
|
|
|
xmlXPathObjectPtr obj = NULL;
|
2008-07-28 14:06:54 +00:00
|
|
|
struct openvz_vm_def *def = NULL;
|
|
|
|
xmlNodePtr *nodes = NULL;
|
|
|
|
int i, n;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-06-06 11:09:57 +00:00
|
|
|
if (VIR_ALLOC(def) < 0) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_NO_MEMORY, _("xmlXPathContext"));
|
2007-07-17 13:27:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Prepare parser / xpath context */
|
|
|
|
root = xmlDocGetRootElement(xml);
|
|
|
|
if ((root == NULL) || (!xmlStrEqual(root->name, BAD_CAST "domain"))) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("incorrect root element"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ctxt = xmlXPathNewContext(xml);
|
|
|
|
if (ctxt == NULL) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_NO_MEMORY, _("xmlXPathContext"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2008-07-28 14:06:54 +00:00
|
|
|
ctxt->node = root;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
/* Find out what type of OPENVZ virtualization to use */
|
2008-07-28 14:06:54 +00:00
|
|
|
if (!(prop = virXMLPropString(root, "type"))) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("missing domain type attribute"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
if (STRNEQ(prop, "openvz")){
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("invalid domain type attribute"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(prop);
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
/* Extract domain name */
|
|
|
|
obj = xmlXPathEval(BAD_CAST "string(/domain/name[1])", ctxt);
|
2007-09-03 15:37:07 +00:00
|
|
|
if ((obj == NULL) || (obj->type != XPATH_STRING) ||
|
2007-07-17 13:27:26 +00:00
|
|
|
(obj->stringval == NULL) || (obj->stringval[0] == 0)) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("invalid domain name"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
/* rejecting VPS ID <= OPENVZ_RSRV_VM_LIMIT for they are reserved */
|
2007-09-03 16:30:00 +00:00
|
|
|
if (strtoI((const char *) obj->stringval) <= OPENVZ_RSRV_VM_LIMIT) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
2008-04-10 16:54:54 +00:00
|
|
|
_("VPS ID Error (must be an integer greater than 100"));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2007-09-03 15:37:07 +00:00
|
|
|
strncpy(def->name, (const char *) obj->stringval, OPENVZ_NAME_MAX);
|
2007-07-17 13:27:26 +00:00
|
|
|
xmlXPathFreeObject(obj);
|
2008-07-28 14:06:54 +00:00
|
|
|
obj = NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
/* Extract domain uuid */
|
2008-07-29 08:42:56 +00:00
|
|
|
prop = virXPathString(conn, "string(./uuid[1])", ctxt);
|
2008-07-28 14:06:54 +00:00
|
|
|
if (!prop) {
|
2007-07-17 13:27:26 +00:00
|
|
|
int err;
|
|
|
|
if ((err = virUUIDGenerate(def->uuid))) {
|
2008-07-28 14:06:54 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("Failed to generate UUID: %s"),
|
|
|
|
strerror(err));
|
2007-07-17 13:27:26 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2008-07-28 14:06:54 +00:00
|
|
|
} else {
|
|
|
|
if (virUUIDParse(prop, def->uuid) < 0) {
|
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
|
|
|
_("malformed uuid element"));
|
|
|
|
goto bail_out;
|
|
|
|
}
|
|
|
|
VIR_FREE(prop);
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
/* extract virtual CPUs */
|
2008-07-29 08:42:56 +00:00
|
|
|
if (virXPathULong(conn, "string(./vcpu[1])", ctxt, &def->vcpus) < 0)
|
2008-07-28 14:06:54 +00:00
|
|
|
def->vcpus = 0; //use default CPUs count
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
/* Extract filesystem info */
|
|
|
|
if (openvzParseDomainFS(conn, &(def->fs), ctxt)) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
2008-07-28 14:06:54 +00:00
|
|
|
_("malformed filesystem tag"));
|
2007-09-03 15:37:07 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
/* analysis of the network devices */
|
2008-07-29 08:42:56 +00:00
|
|
|
if ((n = virXPathNodeSet(conn, "/domain/devices/interface",
|
|
|
|
ctxt, &nodes)) < 0) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
2008-07-28 14:06:54 +00:00
|
|
|
"%s", _("cannot extract network devices"));
|
2007-09-03 15:37:07 +00:00
|
|
|
goto bail_out;
|
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
for (i = n - 1 ; i >= 0 ; i--) {
|
|
|
|
virDomainNetDefPtr net = virDomainNetDefParseXML(conn,
|
|
|
|
nodes[i]);
|
|
|
|
if (!net)
|
|
|
|
goto bail_out;
|
2007-09-03 15:37:07 +00:00
|
|
|
|
2008-07-28 14:06:54 +00:00
|
|
|
net->next = def->net;
|
|
|
|
def->net = net;
|
2007-09-03 15:37:07 +00:00
|
|
|
}
|
2008-07-28 14:06:54 +00:00
|
|
|
VIR_FREE(nodes);
|
2007-09-03 15:37:07 +00:00
|
|
|
|
|
|
|
xmlXPathFreeContext(ctxt);
|
2007-07-17 13:27:26 +00:00
|
|
|
return def;
|
|
|
|
|
|
|
|
bail_out:
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(prop);
|
2008-02-07 16:49:29 +00:00
|
|
|
xmlXPathFreeObject(obj);
|
2008-01-29 18:23:43 +00:00
|
|
|
xmlXPathFreeContext(ctxt);
|
2007-07-17 13:27:26 +00:00
|
|
|
openvzFreeVMDef(def);
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
return NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct openvz_vm *
|
|
|
|
openvzGetVPSInfo(virConnectPtr conn) {
|
|
|
|
FILE *fp;
|
|
|
|
int veid, ret;
|
|
|
|
char status[16];
|
2007-07-19 16:22:40 +00:00
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
2007-07-17 13:27:26 +00:00
|
|
|
struct openvz_vm *vm;
|
|
|
|
struct openvz_vm **pnext;
|
|
|
|
struct openvz_driver *driver;
|
|
|
|
struct openvz_vm_def *vmdef;
|
|
|
|
|
|
|
|
vm = NULL;
|
|
|
|
driver = conn->privateData;
|
|
|
|
driver->num_active = 0;
|
|
|
|
driver->num_inactive = 0;
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if((fp = popen(VZLIST " -a -ovpsid,status -H 2>/dev/null", "r")) == NULL) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("popen failed"));
|
2007-07-17 13:27:26 +00:00
|
|
|
return NULL;
|
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
pnext = &vm;
|
|
|
|
while(!feof(fp)) {
|
2008-06-06 11:09:57 +00:00
|
|
|
if (VIR_ALLOC(*pnext) < 0) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("calloc failed"));
|
2007-09-03 16:30:00 +00:00
|
|
|
goto error;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
if(!vm)
|
|
|
|
vm = *pnext;
|
|
|
|
|
2007-09-03 16:30:00 +00:00
|
|
|
if (fscanf(fp, "%d %s\n", &veid, status) != 2) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
2008-04-10 16:54:54 +00:00
|
|
|
_("Failed to parse vzlist output"));
|
|
|
|
goto error;
|
|
|
|
}
|
2008-05-14 19:51:24 +00:00
|
|
|
if(STRNEQ(status, "stopped")) {
|
2007-07-17 13:27:26 +00:00
|
|
|
(*pnext)->status = VIR_DOMAIN_RUNNING;
|
|
|
|
driver->num_active ++;
|
|
|
|
(*pnext)->vpsid = veid;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
(*pnext)->status = VIR_DOMAIN_SHUTOFF;
|
|
|
|
driver->num_inactive ++;
|
2008-04-10 16:54:54 +00:00
|
|
|
/*
|
|
|
|
* inactive domains don't have their ID set in libvirt,
|
|
|
|
* thought this doesn't make sense for OpenVZ
|
|
|
|
*/
|
2008-02-05 19:27:37 +00:00
|
|
|
(*pnext)->vpsid = -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-06-06 11:09:57 +00:00
|
|
|
if (VIR_ALLOC(vmdef) < 0) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR, _("calloc failed"));
|
2008-04-10 16:54:54 +00:00
|
|
|
goto error;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
2008-02-05 19:27:37 +00:00
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
snprintf(vmdef->name, OPENVZ_NAME_MAX, "%i", veid);
|
|
|
|
openvzGetVPSUUID(veid, uuidstr);
|
2007-07-19 16:22:40 +00:00
|
|
|
ret = virUUIDParse(uuidstr, vmdef->uuid);
|
|
|
|
|
|
|
|
if(ret == -1) {
|
2008-07-10 12:21:09 +00:00
|
|
|
openvzError(conn, VIR_ERR_INTERNAL_ERROR,
|
2008-04-10 16:54:54 +00:00
|
|
|
_("UUID in config file malformed"));
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(vmdef);
|
2007-09-03 16:30:00 +00:00
|
|
|
goto error;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
(*pnext)->vmdef = vmdef;
|
|
|
|
pnext = &(*pnext)->next;
|
|
|
|
}
|
|
|
|
return vm;
|
2007-09-03 16:30:00 +00:00
|
|
|
error:
|
|
|
|
while (vm != NULL) {
|
|
|
|
struct openvz_vm *next;
|
|
|
|
|
2008-04-10 16:54:54 +00:00
|
|
|
next = vm->next;
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(vm->vmdef);
|
|
|
|
VIR_FREE(vm);
|
2008-04-10 16:54:54 +00:00
|
|
|
vm = next;
|
2007-09-03 16:30:00 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
2008-07-10 07:52:14 +00:00
|
|
|
/*
|
|
|
|
* Read parameter from container config
|
|
|
|
* sample: 133, "OSTEMPLATE", value, 1024
|
|
|
|
* return: -1 - error
|
|
|
|
* 0 - don't found
|
|
|
|
* 1 - OK
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
openvzReadConfigParam(int vpsid ,const char * param, char *value, int maxlen)
|
|
|
|
{
|
|
|
|
char conf_file[PATH_MAX] ;
|
|
|
|
char line[PATH_MAX] ;
|
|
|
|
int ret, found = 0;
|
|
|
|
int fd ;
|
|
|
|
char * sf, * token;
|
|
|
|
char *saveptr = NULL;
|
|
|
|
|
2008-07-11 08:56:16 +00:00
|
|
|
if (openvzLocateConfFile(vpsid, conf_file, PATH_MAX)<0)
|
2008-07-10 07:52:14 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
value[0] = 0;
|
|
|
|
|
|
|
|
fd = open(conf_file, O_RDONLY);
|
2008-07-10 12:21:09 +00:00
|
|
|
if (fd == -1)
|
2008-07-10 07:52:14 +00:00
|
|
|
return -1;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
ret = openvz_readline(fd, line, sizeof(line));
|
|
|
|
if(ret <= 0)
|
|
|
|
break;
|
|
|
|
saveptr = NULL;
|
2008-07-10 12:21:09 +00:00
|
|
|
if (STREQLEN(line, param, strlen(param))) {
|
2008-07-10 07:52:14 +00:00
|
|
|
sf = line;
|
|
|
|
sf += strlen(param);
|
|
|
|
if (sf[0] == '=' && (token = strtok_r(sf,"\"\t=\n", &saveptr)) != NULL) {
|
|
|
|
strncpy(value, token, maxlen) ;
|
|
|
|
value[maxlen-1] = '\0';
|
|
|
|
found = 1;
|
|
|
|
}
|
2008-07-10 12:21:09 +00:00
|
|
|
}
|
2008-07-10 07:52:14 +00:00
|
|
|
}
|
|
|
|
close(fd);
|
|
|
|
|
|
|
|
if (ret == 0 && found)
|
|
|
|
ret = 1;
|
|
|
|
|
|
|
|
return ret ;
|
|
|
|
}
|
|
|
|
|
2008-07-11 08:56:16 +00:00
|
|
|
/* Locate config file of container
|
|
|
|
* return -1 - error
|
|
|
|
* 0 - OK
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
openvzLocateConfFile(int vpsid, char *conffile, int maxlen)
|
|
|
|
{
|
|
|
|
char * confdir;
|
|
|
|
int ret = 0;
|
|
|
|
|
|
|
|
confdir = openvzLocateConfDir();
|
|
|
|
if (confdir == NULL)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if (snprintf(conffile, maxlen, "%s/%d.conf", confdir, vpsid) >= maxlen)
|
|
|
|
ret = -1;
|
|
|
|
|
|
|
|
VIR_FREE(confdir);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
static char
|
2007-07-19 16:22:40 +00:00
|
|
|
*openvzLocateConfDir(void)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
|
|
|
const char *conf_dir_list[] = {"/etc/vz/conf", "/usr/local/etc/conf", NULL};
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
while(conf_dir_list[i]) {
|
|
|
|
if(!access(conf_dir_list[i], F_OK))
|
2008-04-10 16:54:54 +00:00
|
|
|
return strdup(conf_dir_list[i]);
|
2007-07-17 13:27:26 +00:00
|
|
|
i ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Richard Steven's classic readline() function */
|
2008-02-05 19:27:37 +00:00
|
|
|
int
|
2007-07-19 16:22:40 +00:00
|
|
|
openvz_readline(int fd, char *ptr, int maxlen)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
|
|
|
int n, rc;
|
|
|
|
char c;
|
|
|
|
|
|
|
|
for(n = 1; n < maxlen; n ++) {
|
|
|
|
if( (rc = read(fd, &c, 1)) == 1) {
|
|
|
|
*ptr++ = c;
|
|
|
|
if(c == '\n')
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if(rc == 0) {
|
|
|
|
if(n == 1)
|
|
|
|
return 0; /* EOF condition */
|
|
|
|
else
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return -1; /* error */
|
|
|
|
}
|
|
|
|
*ptr = 0;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
static int
|
2007-09-03 15:37:07 +00:00
|
|
|
openvzGetVPSUUID(int vpsid, char *uuidstr)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
|
|
|
char conf_file[PATH_MAX];
|
|
|
|
char line[1024];
|
2007-09-03 15:37:07 +00:00
|
|
|
char uuidbuf[1024];
|
2007-07-17 13:27:26 +00:00
|
|
|
char iden[1024];
|
|
|
|
int fd, ret;
|
|
|
|
|
2008-07-11 08:56:16 +00:00
|
|
|
if (openvzLocateConfFile(vpsid, conf_file, PATH_MAX)<0)
|
|
|
|
return -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-07-11 08:56:16 +00:00
|
|
|
fd = open(conf_file, O_RDONLY);
|
2007-07-17 13:27:26 +00:00
|
|
|
if(fd == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
while(1) {
|
|
|
|
ret = openvz_readline(fd, line, sizeof(line));
|
|
|
|
if(ret == -1)
|
|
|
|
return -1;
|
|
|
|
|
|
|
|
if(ret == 0) { /* EoF, UUID was not found */
|
2007-09-03 15:37:07 +00:00
|
|
|
uuidstr[0] = 0;
|
2007-07-17 13:27:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2007-09-03 15:37:07 +00:00
|
|
|
sscanf(line, "%s %s\n", iden, uuidbuf);
|
2008-05-14 19:51:24 +00:00
|
|
|
if(STREQ(iden, "#UUID:")) {
|
2007-09-03 15:37:07 +00:00
|
|
|
strncpy(uuidstr, uuidbuf, VIR_UUID_STRING_BUFLEN);
|
2007-07-17 13:27:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2008-07-10 07:52:14 +00:00
|
|
|
close(fd);
|
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Do actual checking for UUID presence in conf file,
|
|
|
|
* assign if not present.
|
|
|
|
*/
|
|
|
|
|
2008-02-05 19:27:37 +00:00
|
|
|
static int
|
2007-07-19 16:22:40 +00:00
|
|
|
openvzSetUUID(int vpsid)
|
2007-07-17 13:27:26 +00:00
|
|
|
{
|
|
|
|
char conf_file[PATH_MAX];
|
2007-08-09 20:19:12 +00:00
|
|
|
char uuidstr[VIR_UUID_STRING_BUFLEN];
|
|
|
|
unsigned char uuid[VIR_UUID_BUFLEN];
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-07-11 08:56:16 +00:00
|
|
|
if (openvzLocateConfFile(vpsid, conf_file, PATH_MAX)<0)
|
|
|
|
return -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2008-02-21 18:48:06 +00:00
|
|
|
if (openvzGetVPSUUID(vpsid, uuidstr))
|
2007-07-17 13:27:26 +00:00
|
|
|
return -1;
|
|
|
|
|
2008-02-21 18:48:06 +00:00
|
|
|
if (uuidstr[0] == 0) {
|
2008-04-10 16:54:54 +00:00
|
|
|
FILE *fp = fopen(conf_file, "a"); /* append */
|
|
|
|
if (fp == NULL)
|
|
|
|
return -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2007-08-09 20:19:12 +00:00
|
|
|
virUUIDGenerate(uuid);
|
|
|
|
virUUIDFormat(uuid, uuidstr);
|
|
|
|
|
2008-04-10 16:54:54 +00:00
|
|
|
/* Record failure if fprintf or fclose fails,
|
|
|
|
and be careful always to close the stream. */
|
|
|
|
if ((fprintf(fp, "\n#UUID: %s\n", uuidstr) < 0)
|
|
|
|
+ (fclose(fp) == EOF))
|
|
|
|
return -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Scan VPS config files and see if they have a UUID.
|
|
|
|
* If not, assign one. Just append one to the config
|
|
|
|
* file as comment so that the OpenVZ tools ignore it.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
int openvzAssignUUIDs(void)
|
|
|
|
{
|
|
|
|
DIR *dp;
|
|
|
|
struct dirent *dent;
|
|
|
|
char *conf_dir;
|
|
|
|
int vpsid, res;
|
|
|
|
char ext[8];
|
|
|
|
|
|
|
|
conf_dir = openvzLocateConfDir();
|
2008-02-21 18:22:45 +00:00
|
|
|
if (conf_dir == NULL)
|
|
|
|
return -1;
|
2007-07-17 13:27:26 +00:00
|
|
|
|
|
|
|
dp = opendir(conf_dir);
|
|
|
|
if(dp == NULL) {
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(conf_dir);
|
2007-07-17 13:27:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
while((dent = readdir(dp))) {
|
|
|
|
res = sscanf(dent->d_name, "%d.%5s", &vpsid, ext);
|
2008-05-14 19:51:24 +00:00
|
|
|
if(!(res == 2 && STREQ(ext, "conf")))
|
2007-07-17 13:27:26 +00:00
|
|
|
continue;
|
|
|
|
if(vpsid > 0) /* '0.conf' belongs to the host, ignore it */
|
|
|
|
openvzSetUUID(vpsid);
|
|
|
|
}
|
|
|
|
closedir(dp);
|
2008-06-06 11:09:57 +00:00
|
|
|
VIR_FREE(conf_dir);
|
2007-07-17 13:27:26 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|