2007-07-17 13:27:26 +00:00
|
|
|
/*
|
|
|
|
* openvz_config.h: config information for OpenVZ VPSs
|
|
|
|
*
|
2010-03-01 23:38:28 +00:00
|
|
|
* Copyright (C) 2010 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
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef OPENVZ_CONF_H
|
2010-03-09 18:22:22 +00:00
|
|
|
# define OPENVZ_CONF_H
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
|
|
|
# include "domain_conf.h"
|
|
|
|
# include "threads.h"
|
2007-07-17 13:27:26 +00:00
|
|
|
|
2010-04-03 14:23:45 +00:00
|
|
|
# define openvzError(code, ...) \
|
|
|
|
virReportErrorHelper(NULL, VIR_FROM_OPENVZ, code, __FILE__, \
|
2010-03-01 23:38:28 +00:00
|
|
|
__FUNCTION__, __LINE__, __VA_ARGS__)
|
2008-10-09 15:38:31 +00:00
|
|
|
|
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
/* OpenVZ commands - Replace with wrapper scripts later? */
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VZLIST "/usr/sbin/vzlist"
|
|
|
|
# define VZCTL "/usr/sbin/vzctl"
|
|
|
|
# define VZ_CONF_FILE "/etc/vz/vz.conf"
|
2008-09-05 14:10:58 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define VZCTL_BRIDGE_MIN_VERSION ((3 * 1000 * 1000) + (0 * 1000) + 22 + 1)
|
2008-11-12 16:35:47 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
struct openvz_driver {
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutex lock;
|
2008-12-04 21:44:55 +00:00
|
|
|
|
2008-09-05 14:10:58 +00:00
|
|
|
virCapsPtr caps;
|
2008-10-10 14:20:37 +00:00
|
|
|
virDomainObjList domains;
|
2008-10-24 11:32:48 +00:00
|
|
|
int version;
|
2007-07-17 13:27:26 +00:00
|
|
|
};
|
|
|
|
|
2007-07-19 16:22:40 +00:00
|
|
|
int openvz_readline(int fd, char *ptr, int maxlen);
|
2010-04-03 14:23:45 +00:00
|
|
|
int openvzExtractVersion(struct openvz_driver *driver);
|
2009-03-24 10:59:13 +00:00
|
|
|
int openvzReadVPSConfigParam(int vpsid ,const char * param, char *value, int maxlen);
|
|
|
|
int openvzWriteVPSConfigParam(int vpsid, const char *param, const char *value);
|
|
|
|
int openvzCopyDefaultConfig(int vpsid);
|
2008-09-05 14:10:58 +00:00
|
|
|
virCapsPtr openvzCapsInit(void);
|
|
|
|
int openvzLoadDomains(struct openvz_driver *driver);
|
2007-09-03 15:37:07 +00:00
|
|
|
void openvzFreeDriver(struct openvz_driver *driver);
|
2007-09-03 16:30:00 +00:00
|
|
|
int strtoI(const char *str);
|
2008-08-05 10:53:05 +00:00
|
|
|
int openvzSetDefinedUUID(int vpsid, unsigned char *uuid);
|
2008-11-24 19:34:21 +00:00
|
|
|
unsigned int openvzGetNodeCPUs(void);
|
2010-02-19 15:49:56 +00:00
|
|
|
int openvzGetVEID(const char *name);
|
2008-07-28 14:06:54 +00:00
|
|
|
|
2007-07-17 13:27:26 +00:00
|
|
|
#endif /* OPENVZ_CONF_H */
|