2008-03-21 15:03:37 +00:00
|
|
|
/*
|
2010-03-01 23:38:28 +00:00
|
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
2008-03-21 15:03:37 +00:00
|
|
|
* Copyright IBM Corp. 2008
|
|
|
|
*
|
|
|
|
* lxc_conf.h: header file for linux container config functions
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* David L. Leskovec <dlesko at linux.vnet.ibm.com>
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LXC_CONF_H
|
2010-03-09 18:22:22 +00:00
|
|
|
# define LXC_CONF_H
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include <config.h>
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
|
|
|
# include "domain_conf.h"
|
|
|
|
# include "domain_event.h"
|
|
|
|
# include "capabilities.h"
|
|
|
|
# include "threads.h"
|
|
|
|
# include "cgroup.h"
|
2010-11-16 14:54:17 +00:00
|
|
|
# include "configmake.h"
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2010-11-16 14:54:17 +00:00
|
|
|
# define LXC_CONFIG_DIR SYSCONFDIR "/libvirt/lxc"
|
|
|
|
# define LXC_STATE_DIR LOCALSTATEDIR "/run/libvirt/lxc"
|
|
|
|
# define LXC_LOG_DIR LOCALSTATEDIR "/log/libvirt/lxc"
|
2010-03-09 18:22:22 +00:00
|
|
|
# define LXC_AUTOSTART_DIR LXC_CONFIG_DIR "/autostart"
|
2008-08-20 20:55:32 +00:00
|
|
|
|
2008-03-21 15:03:37 +00:00
|
|
|
typedef struct __lxc_driver lxc_driver_t;
|
|
|
|
struct __lxc_driver {
|
2009-01-15 19:56:05 +00:00
|
|
|
virMutex lock;
|
2008-12-04 21:12:41 +00:00
|
|
|
|
2008-08-13 12:50:55 +00:00
|
|
|
virCapsPtr caps;
|
|
|
|
|
2009-07-10 10:40:04 +00:00
|
|
|
virCgroupPtr cgroup;
|
2008-10-10 14:20:37 +00:00
|
|
|
virDomainObjList domains;
|
2008-08-13 10:52:15 +00:00
|
|
|
char *configDir;
|
2008-08-13 12:50:55 +00:00
|
|
|
char *autostartDir;
|
2008-08-13 10:52:15 +00:00
|
|
|
char *stateDir;
|
|
|
|
char *logDir;
|
2009-10-08 15:40:14 +00:00
|
|
|
int log_libvirtd;
|
2008-06-26 16:05:02 +00:00
|
|
|
int have_netns;
|
2009-07-06 15:04:36 +00:00
|
|
|
|
|
|
|
/* An array of callbacks */
|
|
|
|
virDomainEventCallbackListPtr domainEventCallbacks;
|
|
|
|
virDomainEventQueuePtr domainEventQueue;
|
|
|
|
int domainEventTimer;
|
|
|
|
int domainEventDispatching;
|
2008-03-21 15:03:37 +00:00
|
|
|
};
|
|
|
|
|
2008-03-27 09:34:06 +00:00
|
|
|
int lxcLoadDriverConfig(lxc_driver_t *driver);
|
2008-08-13 12:50:55 +00:00
|
|
|
virCapsPtr lxcCapsInit(void);
|
2008-03-21 15:03:37 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# define lxcError(code, ...) \
|
2010-02-09 18:22:56 +00:00
|
|
|
virReportErrorHelper(NULL, VIR_FROM_LXC, code, __FILE__, \
|
2010-03-01 23:38:28 +00:00
|
|
|
__FUNCTION__, __LINE__, __VA_ARGS__)
|
2008-03-21 15:03:37 +00:00
|
|
|
|
|
|
|
#endif /* LXC_CONF_H */
|