security_driver.h 9.9 KB
Newer Older
1
/*
2
 * Copyright (C) 2008, 2010-2013 Red Hat, Inc.
3 4 5 6 7 8
 *
 * 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.
 *
O
Osier Yang 已提交
9 10 11 12 13 14
 * 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
15
 * License along with this library.  If not, see
O
Osier Yang 已提交
16 17
 * <http://www.gnu.org/licenses/>.
 *
18 19 20 21 22
 * Authors:
 *     James Morris <jmorris@namei.org>
 *
 */
#ifndef __VIR_SECURITY_H__
23
# define __VIR_SECURITY_H__
24

25 26
# include "internal.h"
# include "domain_conf.h"
27

28 29
# include "security_manager.h"

30 31 32 33 34 35 36 37 38 39 40 41
/*
 * Return values for security driver probing: the driver will determine
 * whether it should be enabled or disabled.
 */
typedef enum {
    SECURITY_DRIVER_ENABLE      = 0,
    SECURITY_DRIVER_ERROR       = -1,
    SECURITY_DRIVER_DISABLE     = -2,
} virSecurityDriverStatus;

typedef struct _virSecurityDriver virSecurityDriver;
typedef virSecurityDriver *virSecurityDriverPtr;
42

43
typedef virSecurityDriverStatus (*virSecurityDriverProbe) (const char *virtDriver);
44 45 46 47 48
typedef int (*virSecurityDriverOpen) (virSecurityManagerPtr mgr);
typedef int (*virSecurityDriverClose) (virSecurityManagerPtr mgr);

typedef const char *(*virSecurityDriverGetModel) (virSecurityManagerPtr mgr);
typedef const char *(*virSecurityDriverGetDOI) (virSecurityManagerPtr mgr);
49 50
typedef const char *(*virSecurityDriverGetBaseLabel) (virSecurityManagerPtr mgr,
                                                      int virtType);
51

52 53
typedef int (*virSecurityDriverPreFork) (virSecurityManagerPtr mgr);

54 55 56 57 58
typedef int (*virSecurityDriverTransactionStart) (virSecurityManagerPtr mgr);
typedef int (*virSecurityDriverTransactionCommit) (virSecurityManagerPtr mgr,
                                                   pid_t pid);
typedef void (*virSecurityDriverTransactionAbort) (virSecurityManagerPtr mgr);

59 60 61
typedef int (*virSecurityDomainRestoreDiskLabel) (virSecurityManagerPtr mgr,
                                                  virDomainDefPtr def,
                                                  virDomainDiskDefPtr disk);
62
typedef int (*virSecurityDomainSetDaemonSocketLabel)(virSecurityManagerPtr mgr,
63
                                                     virDomainDefPtr vm);
64
typedef int (*virSecurityDomainSetSocketLabel) (virSecurityManagerPtr mgr,
65
                                                virDomainDefPtr def);
66
typedef int (*virSecurityDomainClearSocketLabel)(virSecurityManagerPtr mgr,
67
                                                virDomainDefPtr def);
68 69 70
typedef int (*virSecurityDomainSetDiskLabel) (virSecurityManagerPtr mgr,
                                              virDomainDefPtr def,
                                              virDomainDiskDefPtr disk);
71
typedef int (*virSecurityDomainRestoreHostdevLabel) (virSecurityManagerPtr mgr,
72
                                                     virDomainDefPtr def,
73 74
                                                     virDomainHostdevDefPtr dev,
                                                     const char *vroot);
75
typedef int (*virSecurityDomainSetHostdevLabel) (virSecurityManagerPtr mgr,
76
                                                 virDomainDefPtr def,
77 78
                                                 virDomainHostdevDefPtr dev,
                                                 const char *vroot);
79
typedef int (*virSecurityDomainSetSavedStateLabel) (virSecurityManagerPtr mgr,
80
                                                    virDomainDefPtr def,
81
                                                    const char *savefile);
82
typedef int (*virSecurityDomainRestoreSavedStateLabel) (virSecurityManagerPtr mgr,
83
                                                        virDomainDefPtr def,
84
                                                        const char *savefile);
85
typedef int (*virSecurityDomainGenLabel) (virSecurityManagerPtr mgr,
86
                                          virDomainDefPtr sec);
87
typedef int (*virSecurityDomainReserveLabel) (virSecurityManagerPtr mgr,
88 89
                                              virDomainDefPtr sec,
                                              pid_t pid);
90
typedef int (*virSecurityDomainReleaseLabel) (virSecurityManagerPtr mgr,
91
                                              virDomainDefPtr sec);
92
typedef int (*virSecurityDomainSetAllLabel) (virSecurityManagerPtr mgr,
93
                                             virDomainDefPtr sec,
94
                                             const char *stdin_path);
95
typedef int (*virSecurityDomainRestoreAllLabel) (virSecurityManagerPtr mgr,
96
                                                 virDomainDefPtr def,
97
                                                 bool migrated);
98
typedef int (*virSecurityDomainGetProcessLabel) (virSecurityManagerPtr mgr,
99 100
                                                 virDomainDefPtr def,
                                                 pid_t pid,
101
                                                 virSecurityLabelPtr sec);
102
typedef int (*virSecurityDomainSetProcessLabel) (virSecurityManagerPtr mgr,
103
                                                 virDomainDefPtr def);
104 105 106
typedef int (*virSecurityDomainSetChildProcessLabel) (virSecurityManagerPtr mgr,
                                                      virDomainDefPtr def,
                                                      virCommandPtr cmd);
107 108
typedef int (*virSecurityDomainSecurityVerify) (virSecurityManagerPtr mgr,
                                                virDomainDefPtr def);
109
typedef int (*virSecurityDomainSetImageFDLabel) (virSecurityManagerPtr mgr,
110
                                                 virDomainDefPtr def,
111
                                                 int fd);
112 113 114
typedef int (*virSecurityDomainSetTapFDLabel) (virSecurityManagerPtr mgr,
                                               virDomainDefPtr def,
                                               int fd);
115
typedef char *(*virSecurityDomainGetMountOptions) (virSecurityManagerPtr mgr,
116
                                                   virDomainDefPtr def);
117
typedef int (*virSecurityDomainSetHugepages) (virSecurityManagerPtr mgr,
118 119
                                              virDomainDefPtr def,
                                              const char *path);
120 121 122 123 124 125
typedef int (*virSecurityDomainSetImageLabel) (virSecurityManagerPtr mgr,
                                               virDomainDefPtr def,
                                               virStorageSourcePtr src);
typedef int (*virSecurityDomainRestoreImageLabel) (virSecurityManagerPtr mgr,
                                                   virDomainDefPtr def,
                                                   virStorageSourcePtr src);
126 127 128 129 130 131
typedef int (*virSecurityDomainSetMemoryLabel) (virSecurityManagerPtr mgr,
                                                virDomainDefPtr def,
                                                virDomainMemoryDefPtr mem);
typedef int (*virSecurityDomainRestoreMemoryLabel) (virSecurityManagerPtr mgr,
                                                    virDomainDefPtr def,
                                                    virDomainMemoryDefPtr mem);
132 133 134
typedef int (*virSecurityDomainSetPathLabel) (virSecurityManagerPtr mgr,
                                              virDomainDefPtr def,
                                              const char *path);
135

136 137

struct _virSecurityDriver {
138
    size_t privateDataLen;
139 140 141
    const char *name;
    virSecurityDriverProbe probe;
    virSecurityDriverOpen open;
142 143 144 145 146
    virSecurityDriverClose close;

    virSecurityDriverGetModel getModel;
    virSecurityDriverGetDOI getDOI;

147 148
    virSecurityDriverPreFork preFork;

149 150 151 152
    virSecurityDriverTransactionStart transactionStart;
    virSecurityDriverTransactionCommit transactionCommit;
    virSecurityDriverTransactionAbort transactionAbort;

153
    virSecurityDomainSecurityVerify domainSecurityVerify;
154

155
    virSecurityDomainSetDiskLabel domainSetSecurityDiskLabel;
156
    virSecurityDomainRestoreDiskLabel domainRestoreSecurityDiskLabel;
157

158 159 160
    virSecurityDomainSetImageLabel domainSetSecurityImageLabel;
    virSecurityDomainRestoreImageLabel domainRestoreSecurityImageLabel;

161 162 163
    virSecurityDomainSetMemoryLabel domainSetSecurityMemoryLabel;
    virSecurityDomainRestoreMemoryLabel domainRestoreSecurityMemoryLabel;

164
    virSecurityDomainSetDaemonSocketLabel domainSetSecurityDaemonSocketLabel;
165
    virSecurityDomainSetSocketLabel domainSetSecuritySocketLabel;
166
    virSecurityDomainClearSocketLabel domainClearSecuritySocketLabel;
167

168
    virSecurityDomainGenLabel domainGenSecurityLabel;
169
    virSecurityDomainReserveLabel domainReserveSecurityLabel;
170
    virSecurityDomainReleaseLabel domainReleaseSecurityLabel;
171

172 173
    virSecurityDomainGetProcessLabel domainGetSecurityProcessLabel;
    virSecurityDomainSetProcessLabel domainSetSecurityProcessLabel;
174
    virSecurityDomainSetChildProcessLabel domainSetSecurityChildProcessLabel;
175

176 177
    virSecurityDomainSetAllLabel domainSetSecurityAllLabel;
    virSecurityDomainRestoreAllLabel domainRestoreSecurityAllLabel;
178

179
    virSecurityDomainSetHostdevLabel domainSetSecurityHostdevLabel;
180 181
    virSecurityDomainRestoreHostdevLabel domainRestoreSecurityHostdevLabel;

182 183
    virSecurityDomainSetSavedStateLabel domainSetSavedStateLabel;
    virSecurityDomainRestoreSavedStateLabel domainRestoreSavedStateLabel;
184

185
    virSecurityDomainSetImageFDLabel domainSetSecurityImageFDLabel;
186
    virSecurityDomainSetTapFDLabel domainSetSecurityTapFDLabel;
187 188

    virSecurityDomainGetMountOptions domainGetSecurityMountOptions;
189 190

    virSecurityDriverGetBaseLabel getBaseLabel;
191

192
    virSecurityDomainSetPathLabel domainSetPathLabel;
193 194
};

195 196
virSecurityDriverPtr virSecurityDriverLookup(const char *name,
                                             const char *virtDriver);
197 198

#endif /* __VIR_SECURITY_H__ */