]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/conf.h
conf, confile: add parsing of a shmounts config parameter
[mirror_lxc.git] / src / lxc / conf.h
CommitLineData
0ad19a3f 1/*
2 * lxc: linux Container library
3 *
4 * (C) Copyright IBM Corp. 2007, 2008
5 *
6 * Authors:
9afe19d6 7 * Daniel Lezcano <daniel.lezcano at free.fr>
0ad19a3f 8 *
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
250b1eec 21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
0ad19a3f 22 */
f1a4a029
ÇO
23#ifndef __LXC_CONF_H
24#define __LXC_CONF_H
0ad19a3f 25
f424fa8f
SG
26#include "config.h"
27
9fc7f8c0 28#include <stdio.h>
74a2b586 29#include <net/if.h>
1a0e70ac 30#include <netinet/in.h>
b0a33c1e 31#include <sys/param.h>
8173e600 32#include <sys/types.h>
c6d09e15
WB
33#if HAVE_SYS_RESOURCE_H
34#include <sys/resource.h>
35#endif
19a26f82 36#include <stdbool.h>
0ad19a3f 37
f2363e38 38#include "list.h"
732375f5 39#include "ringbuf.h"
f2363e38 40#include "start.h" /* for lxc_handler */
0ed9b1bc 41#include "terminal.h"
e3b4c4c4 42
769872f9
SH
43#if HAVE_SCMP_FILTER_CTX
44typedef void * scmp_filter_ctx;
45#endif
46
97e9cfa0
SH
47/* worth moving to configure.ac? */
48#define subuidfile "/etc/subuid"
49#define subgidfile "/etc/subgid"
50
0ad19a3f 51/*
43654d34
CB
52 * Defines a generic struct to configure the control group. It is up to the
53 * programmer to specify the right subsystem.
ec64264d 54 * @subsystem : the targeted subsystem
576f946d 55 * @value : the value to set
54860ed0
CB
56 * @version : The version of the cgroup filesystem on which the controller
57 * resides.
43654d34
CB
58 *
59 * @controllers : The controllers to use for this container.
60 * @dir : The name of the directory containing the container's cgroup.
61 * Not that this is a per-container setting.
0ad19a3f 62 */
63struct lxc_cgroup {
43654d34
CB
64 union {
65 /* information about a specific controller */
66 struct /* controller */ {
54860ed0 67 int version;
43654d34
CB
68 char *subsystem;
69 char *value;
70 };
71
72 /* meta information about cgroup configuration */
73 struct /* meta */ {
74 char *controllers;
75 char *dir;
76 };
77 };
0ad19a3f 78};
79
c6d09e15 80#if !HAVE_SYS_RESOURCE_H
3a0e314d 81#define RLIM_INFINITY ((unsigned long)-1)
c6d09e15
WB
82struct rlimit {
83 unsigned long rlim_cur;
84 unsigned long rlim_max;
85};
86#endif
3a0e314d 87
c6d09e15
WB
88/*
89 * Defines a structure to configure resource limits to set via setrlimit().
90 * @resource : the resource name in lowercase without the RLIMIT_ prefix
91 * @limit : the limit to set
92 */
93struct lxc_limit {
94 char *resource;
95 struct rlimit limit;
96};
97
f6d3e3e4
SH
98enum idtype {
99 ID_TYPE_UID,
100 ID_TYPE_GID
101};
102
7edd0540
L
103/*
104 * Defines a structure to configure kernel parameters at runtime.
105 * @key : the kernel parameters will be configured without the "lxc.sysctl" prefix
106 * @value : the value to set
107 */
108struct lxc_sysctl {
109 char *key;
110 char *value;
111};
112
61d7a733
YT
113/*
114 * Defines a structure to configure proc filesystem at runtime.
115 * @filename : the proc filesystem will be configured without the "lxc.proc" prefix
116 * @value : the value to set
117 */
118struct lxc_proc {
119 char *filename;
120 char *value;
121};
122
f6d3e3e4
SH
123/*
124 * id_map is an id map entry. Form in confile is:
bdcbb6b3
CB
125 * lxc.idmap = u 0 9800 100
126 * lxc.idmap = u 1000 9900 100
127 * lxc.idmap = g 0 9800 100
128 * lxc.idmap = g 1000 9900 100
251d0d2a
DE
129 * meaning the container can use uids and gids 0-99 and 1000-1099,
130 * with [ug]id 0 mapping to [ug]id 9800 on the host, and [ug]id 1000 to
131 * [ug]id 9900 on the host.
f6d3e3e4
SH
132 */
133struct id_map {
134 enum idtype idtype;
251d0d2a 135 unsigned long hostid, nsid, range;
f6d3e3e4
SH
136};
137
0e4be3cf 138/* Defines the number of tty configured and contains the
a589434e 139 * instantiated ptys
885766f5 140 * @max = number of configured ttys
b0a33c1e 141 */
142struct lxc_tty_info {
885766f5
CB
143 size_t max;
144 char *dir;
145 char *tty_names;
2520facd 146 struct lxc_terminal_info *tty;
b0a33c1e 147};
148
13bb312d 149/* Defines a structure to store the rootfs location, the
33fcb7a0 150 * optionals pivot_root, rootfs mount paths
59bb8698
SH
151 * @path : the rootfs source (directory or device)
152 * @mount : where it is mounted
153 * @options : mount options
b3b8c97f 154 * @bev_type : optional backing store type
33fcb7a0
DL
155 */
156struct lxc_rootfs {
157 char *path;
23b7ea69 158 char *mount;
a17b1e65 159 char *options;
b3b8c97f 160 char *bdev_type;
33fcb7a0
DL
161};
162
368bbc02
CS
163/*
164 * Automatic mounts for LXC to perform inside the container
165 */
166enum {
3a0e314d
CB
167 LXC_AUTO_PROC_RW = 0x001, /* /proc read-write */
168 LXC_AUTO_PROC_MIXED = 0x002, /* /proc/sys and /proc/sysrq-trigger read-only */
b06b8511
CS
169 LXC_AUTO_PROC_MASK = 0x003,
170
3a0e314d
CB
171 LXC_AUTO_SYS_RW = 0x004, /* /sys */
172 LXC_AUTO_SYS_RO = 0x008, /* /sys read-only */
173 LXC_AUTO_SYS_MIXED = 0x00C, /* /sys read-only and /sys/class/net read-write */
b06b8511
CS
174 LXC_AUTO_SYS_MASK = 0x00C,
175
3a0e314d
CB
176 LXC_AUTO_CGROUP_RO = 0x010, /* /sys/fs/cgroup (partial mount, read-only) */
177 LXC_AUTO_CGROUP_RW = 0x020, /* /sys/fs/cgroup (partial mount, read-write) */
178 LXC_AUTO_CGROUP_MIXED = 0x030, /* /sys/fs/cgroup (partial mount, paths r/o, cgroup r/w) */
179 LXC_AUTO_CGROUP_FULL_RO = 0x040, /* /sys/fs/cgroup (full mount, read-only) */
180 LXC_AUTO_CGROUP_FULL_RW = 0x050, /* /sys/fs/cgroup (full mount, read-write) */
181 LXC_AUTO_CGROUP_FULL_MIXED = 0x060, /* /sys/fs/cgroup (full mount, parent r/o, own r/w) */
182 /*
183 * These are defined in such a way as to retain binary compatibility
184 * with earlier versions of this code. If the previous mask is applied,
185 * both of these will default back to the _MIXED variants, which is
186 * safe.
187 */
188 LXC_AUTO_CGROUP_NOSPEC = 0x0B0, /* /sys/fs/cgroup (partial mount, r/w or mixed, depending on caps) */
189 LXC_AUTO_CGROUP_FULL_NOSPEC = 0x0E0, /* /sys/fs/cgroup (full mount, r/w or mixed, depending on caps) */
190 LXC_AUTO_CGROUP_FORCE = 0x100, /* mount cgroups even when cgroup namespaces are supported */
191 LXC_AUTO_CGROUP_MASK = 0x1F0, /* all known cgroup options, doe not contain LXC_AUTO_CGROUP_FORCE */
adf0ba1f
LT
192
193 LXC_AUTO_SHMOUNTS = 0x200, /* shared mount point */
194 LXC_AUTO_SHMOUNTS_MASK = 0x200, /* shared mount point mask */
3a0e314d 195 LXC_AUTO_ALL_MASK = 0x1FF, /* all known settings */
368bbc02
CS
196};
197
26ddeedd 198enum lxchooks {
1a0e70ac
CB
199 LXCHOOK_PRESTART,
200 LXCHOOK_PREMOUNT,
201 LXCHOOK_MOUNT,
202 LXCHOOK_AUTODEV,
203 LXCHOOK_START,
204 LXCHOOK_STOP,
205 LXCHOOK_POSTSTOP,
206 LXCHOOK_CLONE,
207 LXCHOOK_DESTROY,
08dd2805 208 LXCHOOK_START_HOST,
1a0e70ac
CB
209 NUM_LXC_HOOKS
210};
72d0e1cb 211
811ef482 212extern char *lxchook_names[NUM_LXC_HOOKS];
7b35f3d6 213
d39b10eb
CB
214struct lxc_state_client {
215 int clientfd;
216 lxc_state_t states[MAX_STATE];
217};
218
571e6ec8 219struct lxc_conf {
c7b17051
CB
220 /* Pointer to the name of the container. Do not free! */
221 const char *name;
07c4ea31 222 bool is_execute;
91480a0f 223 int reboot;
9b8e3c96 224 signed long personality;
571e6ec8 225 struct utsname *utsname;
edd64e17 226
54860ed0
CB
227 struct {
228 struct lxc_list cgroup;
229 struct lxc_list cgroup2;
230 };
edd64e17 231
46ad64ab
CB
232 struct {
233 struct lxc_list id_map;
c7e345ae 234
edd64e17
CB
235 /*
236 * Pointer to the idmap entry for the container's root uid in
237 * the id_map list. Do not free!
238 */
5173b710 239 const struct id_map *root_nsuid_map;
c7e345ae 240
edd64e17
CB
241 /*
242 * Pointer to the idmap entry for the container's root gid in
243 * the id_map list. Do not free!
244 */
5173b710 245 const struct id_map *root_nsgid_map;
46ad64ab 246 };
edd64e17 247
5f4535a3 248 struct lxc_list network;
448d7b0c
CB
249
250 struct {
251 char *fstab;
252 int auto_mounts;
253 struct lxc_list mount_list;
254 };
255
81810dd1 256 struct lxc_list caps;
1fb86a7c 257 struct lxc_list keepcaps;
885766f5 258
a2db71c0 259 /* /dev/tty<idx> devices */
885766f5 260 struct lxc_tty_info ttys;
a2db71c0
CB
261 /* /dev/console device */
262 struct lxc_terminal console;
263 /* maximum pty devices allowed by devpts mount */
e528c735 264 size_t pty_max;
885766f5 265
32fd6cf3
CB
266 /* set to true when rootfs has been setup */
267 bool rootfs_setup;
33fcb7a0 268 struct lxc_rootfs rootfs;
32fd6cf3 269
b3187a81 270 bool close_all_fds;
44ae0fb6
CB
271
272 struct {
273 unsigned int hooks_version;
274 struct lxc_list hooks[NUM_LXC_HOOKS];
275 };
4a85ce2a 276
fe4de9a6 277 char *lsm_aa_profile;
a56e2df9 278 unsigned int lsm_aa_allow_incomplete;
fe4de9a6 279 char *lsm_se_context;
7a0bcca3 280 bool tmp_umount_proc;
1a0e70ac 281 char *seccomp; /* filename with the seccomp rules */
769872f9 282#if HAVE_SCMP_FILTER_CTX
d58c6ad0 283 scmp_filter_ctx seccomp_ctx;
769872f9 284#endif
72d0e1cb 285 int maincmd_fd;
1a0e70ac
CB
286 unsigned int autodev; /* if 1, mount and fill a /dev at start */
287 int haltsignal; /* signal used to halt container */
288 int rebootsignal; /* signal used to reboot container */
289 int stopsignal; /* signal used to hard stop container */
290 char *rcfile; /* Copy of the top level rcfile we read */
291
292 /* Logfile and logleve can be set in a container config file. Those
293 * function as defaults. The defaults can be overriden by command line.
294 * However we don't want the command line specified values to be saved
295 * on c->save_config(). So we store the config file specified values
296 * here. */
297 char *logfile; /* the logfile as specifed in config */
298 int loglevel; /* loglevel as specifed in config (if any) */
858377e4 299 int logfd;
9f30a190 300
3590152f
CB
301 unsigned int start_auto;
302 unsigned int start_delay;
ee1e7aa0
SG
303 int start_order;
304 struct lxc_list groups;
76a26f55 305 int nbd_idx;
35120d9c 306
a8dfe4e0 307 /* unshare the mount namespace in the monitor */
226dc30e 308 unsigned int monitor_unshare;
258f8051 309 unsigned int monitor_signal_pdeath;
a8dfe4e0 310
f979ac15
SH
311 /* list of included files */
312 struct lxc_list includes;
4184c3e1
SH
313 /* config entries which are not "lxc.*" are aliens */
314 struct lxc_list aliens;
7c661726
MP
315
316 /* list of environment variables we'll add to the container when
317 * started */
318 struct lxc_list environment;
6b0d5538
SH
319
320 /* text representation of the config file */
321 char *unexpanded_config;
32fd6cf3
CB
322 size_t unexpanded_len;
323 size_t unexpanded_alloced;
67c660d0 324
5cda27c1
SH
325 /* default command for lxc-execute */
326 char *execute_cmd;
327
67c660d0
SG
328 /* init command */
329 char *init_cmd;
56f8ff00 330
72bb04e4
PT
331 /* if running in a new user namespace, the UID/GID that init and COMMAND
332 * should run under when using lxc-execute */
c5cd20ce
PT
333 uid_t init_uid;
334 gid_t init_gid;
8796becf
CB
335
336 /* indicator if the container will be destroyed on shutdown */
66ffdb1a 337 unsigned int ephemeral;
76d0127f
CB
338
339 /* The facility to pass to syslog. Let's users establish as what type of
340 * program liblxc is supposed to write to the syslog. */
341 char *syslog;
5a46f283
CB
342
343 /* Whether PR_SET_NO_NEW_PRIVS will be set for the container. */
344 bool no_new_privs;
c6d09e15
WB
345
346 /* RLIMIT_* limits */
347 struct lxc_list limits;
7ec2e32a 348
43654d34
CB
349 /* Contains generic info about the cgroup configuration for this
350 * container. Note that struct lxc_cgroup contains a union. It is only
351 * valid to access the members of the anonymous "meta" struct within
352 * that union.
353 */
354 struct lxc_cgroup cgroup_meta;
28d9e29e 355
b074bbf1 356 struct {
1d8d3676 357 int ns_clone;
abeb5bba 358 int ns_keep;
b074bbf1
CB
359 char *ns_share[LXC_NS_MAX];
360 };
3c491553
L
361
362 /* init working directory */
9e132956 363 char *init_cwd;
3c491553 364
d39b10eb
CB
365 /* A list of clients registered to be informed about a container state. */
366 struct lxc_list state_clients;
7edd0540
L
367
368 /* sysctls */
369 struct lxc_list sysctls;
61d7a733
YT
370
371 /* procs */
372 struct lxc_list procs;
adf0ba1f
LT
373
374 struct lxc_shmount {
375 /* Absolute path to the shared mount point on the host */
376 char *path_host;
377 /* Absolute path (in the container) to the shared mount point */
378 char *path_cont;
379 } lxc_shmount;
571e6ec8
DL
380};
381
a19b974f 382extern int write_id_mapping(enum idtype idtype, pid_t pid, const char *buf,
344c9d81
MPS
383 size_t buf_size);
384
858377e4
SH
385#ifdef HAVE_TLS
386extern __thread struct lxc_conf *current_config;
387#else
388extern struct lxc_conf *current_config;
389#endif
390
1a0e70ac 391extern int run_lxc_hooks(const char *name, char *hook, struct lxc_conf *conf,
14a7b0f9 392 char *argv[]);
cc28d0b0 393extern int detect_shared_rootfs(void);
7b379ab3 394extern struct lxc_conf *lxc_conf_init(void);
8eb5694b 395extern void lxc_conf_free(struct lxc_conf *conf);
0c547523 396extern int pin_rootfs(const char *rootfs);
f6d3e3e4 397extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid);
5e4a62bf 398extern int lxc_create_tty(const char *name, struct lxc_conf *conf);
0e4be3cf 399extern void lxc_delete_tty(struct lxc_tty_info *ttys);
72d0e1cb 400extern int lxc_clear_config_caps(struct lxc_conf *c);
1fb86a7c 401extern int lxc_clear_config_keepcaps(struct lxc_conf *c);
54860ed0 402extern int lxc_clear_cgroups(struct lxc_conf *c, const char *key, int version);
72d0e1cb 403extern int lxc_clear_mount_entries(struct lxc_conf *c);
b099e9e9 404extern int lxc_clear_automounts(struct lxc_conf *c);
12a50cc6 405extern int lxc_clear_hooks(struct lxc_conf *c, const char *key);
7d0eb87e 406extern int lxc_clear_idmaps(struct lxc_conf *c);
ee1e7aa0 407extern int lxc_clear_groups(struct lxc_conf *c);
ab799c0b 408extern int lxc_clear_environment(struct lxc_conf *c);
c6d09e15 409extern int lxc_clear_limits(struct lxc_conf *c, const char *key);
f0d02950 410extern int lxc_delete_autodev(struct lxc_handler *handler);
c7b15d1e 411extern void lxc_clear_includes(struct lxc_conf *conf);
35120d9c
SH
412extern int do_rootfs_setup(struct lxc_conf *conf, const char *name,
413 const char *lxcpath);
3b988b33 414extern int lxc_setup(struct lxc_handler *handler);
732375f5 415extern int lxc_setup_parent(struct lxc_handler *handler);
c6d09e15 416extern int setup_resource_limits(struct lxc_list *limits, pid_t pid);
339efad9 417extern int find_unmapped_nsid(struct lxc_conf *conf, enum idtype idtype);
1a0e70ac
CB
418extern int mapped_hostid(unsigned id, struct lxc_conf *conf,
419 enum idtype idtype);
41dc7155 420extern int chown_mapped_root(const char *path, struct lxc_conf *conf);
c9b7c33e
CB
421extern int userns_exec_1(struct lxc_conf *conf, int (*fn)(void *), void *data,
422 const char *fn_name);
415a8851
CB
423extern int userns_exec_full(struct lxc_conf *conf, int (*fn)(void *),
424 void *data, const char *fn_name);
a17b1e65
SG
425extern int parse_mntopts(const char *mntopts, unsigned long *mntflags,
426 char **mntdata);
5112cd70 427extern void tmp_proc_unmount(struct lxc_conf *lxc_conf);
1a0e70ac 428extern void remount_all_slave(void);
97e9cfa0 429extern void suggest_default_idmap(void);
1a0e70ac
CB
430extern FILE *make_anonymous_mount_file(struct lxc_list *mount);
431extern struct lxc_list *sort_cgroup_settings(struct lxc_list *cgroup_settings);
432extern unsigned long add_required_remount_flags(const char *s, const char *d,
433 unsigned long flags);
811ef482
CB
434extern int run_script(const char *name, const char *section, const char *script,
435 ...);
14a7b0f9
CB
436extern int run_script_argv(const char *name, unsigned int hook_version,
437 const char *section, const char *script,
438 const char *hookname, char **argsin);
b635e92d 439extern int in_caplist(int cap, struct lxc_list *caps);
7edd0540
L
440extern int setup_sysctl_parameters(struct lxc_list *sysctls);
441extern int lxc_clear_sysctls(struct lxc_conf *c, const char *key);
61d7a733
YT
442extern int setup_proc_filesystem(struct lxc_list *procs, pid_t pid);
443extern int lxc_clear_procs(struct lxc_conf *c, const char *key);
5ae72b98 444
1a0e70ac 445#endif /* __LXC_CONF_H */