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