mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-23 13:05:27 +00:00
4ecb723b9e
https://www.gnu.org/licenses/gpl-howto.html recommends that the 'If not, see <url>.' phrase be a separate sentence. * tests/securityselinuxhelper.c: Remove doubled line. * tests/securityselinuxtest.c: Likewise. * globally: s/; If/. If/
89 lines
2.4 KiB
C
89 lines
2.4 KiB
C
/*
|
|
* Copyright (C) 2010 Red Hat, Inc.
|
|
* 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, see
|
|
* <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#ifndef LXC_CONF_H
|
|
# define LXC_CONF_H
|
|
|
|
# include <config.h>
|
|
|
|
# include "internal.h"
|
|
# include "domain_conf.h"
|
|
# include "domain_event.h"
|
|
# include "capabilities.h"
|
|
# include "threads.h"
|
|
# include "cgroup.h"
|
|
# include "security/security_manager.h"
|
|
# include "configmake.h"
|
|
|
|
# define LXC_DRIVER_NAME "LXC"
|
|
|
|
# define LXC_CONFIG_DIR SYSCONFDIR "/libvirt/lxc"
|
|
# define LXC_STATE_DIR LOCALSTATEDIR "/run/libvirt/lxc"
|
|
# define LXC_LOG_DIR LOCALSTATEDIR "/log/libvirt/lxc"
|
|
# define LXC_AUTOSTART_DIR LXC_CONFIG_DIR "/autostart"
|
|
|
|
typedef struct _virLXCDriver virLXCDriver;
|
|
typedef virLXCDriver *virLXCDriverPtr;
|
|
|
|
struct _virLXCDriver {
|
|
virMutex lock;
|
|
|
|
virCapsPtr caps;
|
|
|
|
virCgroupPtr cgroup;
|
|
virDomainObjList domains;
|
|
char *configDir;
|
|
char *autostartDir;
|
|
char *stateDir;
|
|
char *logDir;
|
|
int log_libvirtd;
|
|
int have_netns;
|
|
|
|
virDomainEventStatePtr domainEventState;
|
|
|
|
char *securityDriverName;
|
|
bool securityDefaultConfined;
|
|
bool securityRequireConfined;
|
|
virSecurityManagerPtr securityManager;
|
|
|
|
/* Mapping of 'char *uuidstr' -> virConnectPtr
|
|
* of guests which will be automatically killed
|
|
* when the virConnectPtr is closed*/
|
|
virHashTablePtr autodestroy;
|
|
};
|
|
|
|
int lxcLoadDriverConfig(virLXCDriverPtr driver);
|
|
virCapsPtr lxcCapsInit(virLXCDriverPtr driver);
|
|
|
|
static inline void lxcDriverLock(virLXCDriverPtr driver)
|
|
{
|
|
virMutexLock(&driver->lock);
|
|
}
|
|
static inline void lxcDriverUnlock(virLXCDriverPtr driver)
|
|
{
|
|
virMutexUnlock(&driver->lock);
|
|
}
|
|
|
|
#endif /* LXC_CONF_H */
|