lxc_conf.h 2.0 KB
Newer Older
D
Daniel Veillard 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
/*
 * 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
#define LXC_CONF_H

#include <config.h>

#include "internal.h"
30
#include "domain_conf.h"
31
#include "domain_event.h"
32
#include "capabilities.h"
33
#include "threads.h"
34
#include "cgroup.h"
D
Daniel Veillard 已提交
35

36 37 38 39
#define LXC_CONFIG_DIR SYSCONF_DIR "/libvirt/lxc"
#define LXC_STATE_DIR LOCAL_STATE_DIR "/run/libvirt/lxc"
#define LXC_LOG_DIR LOCAL_STATE_DIR "/log/libvirt/lxc"

D
Daniel Veillard 已提交
40 41
typedef struct __lxc_driver lxc_driver_t;
struct __lxc_driver {
42
    virMutex lock;
43

44 45
    virCapsPtr caps;

46
    virCgroupPtr cgroup;
47
    virDomainObjList domains;
48
    char *configDir;
49
    char *autostartDir;
50 51
    char *stateDir;
    char *logDir;
52
    int have_netns;
53 54 55 56 57 58

    /* An array of callbacks */
    virDomainEventCallbackListPtr domainEventCallbacks;
    virDomainEventQueuePtr domainEventQueue;
    int domainEventTimer;
    int domainEventDispatching;
D
Daniel Veillard 已提交
59 60
};

61
int lxcLoadDriverConfig(lxc_driver_t *driver);
62
virCapsPtr lxcCapsInit(void);
D
Daniel Veillard 已提交
63

64
#define lxcError(conn, dom, code, fmt...)                                    \
65
        virReportErrorHelper(conn, VIR_FROM_LXC, code, __FILE__,           \
66
                               __FUNCTION__, __LINE__, fmt)
D
Daniel Veillard 已提交
67 68

#endif /* LXC_CONF_H */