mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-08 14:05:19 +00:00
c8238579fb
Historically, we declared pointer type to our types: typedef struct _virXXX virXXX; typedef virXXX *virXXXPtr; But usefulness of such declaration is questionable, at best. Unfortunately, we can't drop every such declaration - we have to carry some over, because they are part of public API (e.g. virDomainPtr). But for internal types - we can do drop them and use what every other C project uses 'virXXX *'. This change was generated by a very ugly shell script that generated sed script which was then called over each file in the repository. For the shell script refer to the cover letter: https://listman.redhat.com/archives/libvir-list/2021-March/msg00537.html Signed-off-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Peter Krempa <pkrempa@redhat.com>
123 lines
3.5 KiB
C
123 lines
3.5 KiB
C
/*
|
|
* Copyright (C) 2010, 2013 Red Hat, Inc.
|
|
* Copyright IBM Corp. 2008
|
|
*
|
|
* lxc_conf.h: header file for linux container config functions
|
|
*
|
|
* 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/>.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "internal.h"
|
|
#include "libvirt_internal.h"
|
|
#include "domain_conf.h"
|
|
#include "domain_event.h"
|
|
#include "capabilities.h"
|
|
#include "virthread.h"
|
|
#include "security/security_manager.h"
|
|
#include "configmake.h"
|
|
#include "vircgroup.h"
|
|
#include "virsysinfo.h"
|
|
#include "virusb.h"
|
|
#include "virclosecallbacks.h"
|
|
#include "virhostdev.h"
|
|
|
|
#define LXC_DRIVER_NAME "LXC"
|
|
|
|
#define LXC_CONFIG_DIR SYSCONFDIR "/libvirt/lxc"
|
|
#define LXC_STATE_DIR RUNSTATEDIR "/libvirt/lxc"
|
|
#define LXC_LOG_DIR LOCALSTATEDIR "/log/libvirt/lxc"
|
|
#define LXC_AUTOSTART_DIR LXC_CONFIG_DIR "/autostart"
|
|
|
|
typedef struct _virLXCDriver virLXCDriver;
|
|
|
|
typedef struct _virLXCDriverConfig virLXCDriverConfig;
|
|
struct _virLXCDriverConfig {
|
|
virObject parent;
|
|
|
|
char *configDir;
|
|
char *autostartDir;
|
|
char *stateDir;
|
|
char *logDir;
|
|
bool log_libvirtd;
|
|
int have_netns;
|
|
|
|
char *securityDriverName;
|
|
bool securityDefaultConfined;
|
|
bool securityRequireConfined;
|
|
};
|
|
|
|
struct _virLXCDriver {
|
|
virMutex lock;
|
|
|
|
/* Require lock to get reference on 'config',
|
|
* then lockless thereafter */
|
|
virLXCDriverConfig *config;
|
|
|
|
/* pid file FD, ensures two copies of the driver can't use the same root */
|
|
int lockFD;
|
|
|
|
/* Require lock to get a reference on the object,
|
|
* lockless access thereafter */
|
|
virCaps *caps;
|
|
|
|
/* Immutable pointer, Immutable object */
|
|
virDomainXMLOption *xmlopt;
|
|
|
|
/* Immutable pointer, lockless APIs */
|
|
virSysinfoDef *hostsysinfo;
|
|
|
|
/* Atomic inc/dec only */
|
|
unsigned int nactive;
|
|
|
|
/* Immutable pointers. Caller must provide locking */
|
|
virStateInhibitCallback inhibitCallback;
|
|
void *inhibitOpaque;
|
|
|
|
/* Immutable pointer, self-locking APIs */
|
|
virDomainObjList *domains;
|
|
|
|
virHostdevManager *hostdevMgr;
|
|
|
|
/* Immutable pointer, self-locking APIs */
|
|
virObjectEventState *domainEventState;
|
|
|
|
/* Immutable pointer. self-locking APIs */
|
|
virSecurityManager *securityManager;
|
|
|
|
/* Immutable pointer, self-locking APIs */
|
|
virCloseCallbacks *closeCallbacks;
|
|
};
|
|
|
|
virLXCDriverConfig *virLXCDriverConfigNew(void);
|
|
virLXCDriverConfig *virLXCDriverGetConfig(virLXCDriver *driver);
|
|
int virLXCLoadDriverConfig(virLXCDriverConfig *cfg,
|
|
const char *filename);
|
|
virCaps *virLXCDriverCapsInit(virLXCDriver *driver);
|
|
virCaps *virLXCDriverGetCapabilities(virLXCDriver *driver,
|
|
bool refresh);
|
|
virDomainXMLOption *lxcDomainXMLConfInit(virLXCDriver *driver,
|
|
const char *defsecmodel);
|
|
|
|
static inline void lxcDriverLock(virLXCDriver *driver)
|
|
{
|
|
virMutexLock(&driver->lock);
|
|
}
|
|
static inline void lxcDriverUnlock(virLXCDriver *driver)
|
|
{
|
|
virMutexUnlock(&driver->lock);
|
|
}
|