]> git.proxmox.com Git - mirror_lxc.git/blame - src/lxc/conf.h
conf: improve lxc_clear_cgroups()
[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
4822319f 18#include "attach_options.h"
d84b26bc 19#include "caps.h"
d7f19646 20#include "compiler.h"
d38dd64a 21#include "config.h"
f2363e38 22#include "list.h"
c3e3c21a 23#include "lxcseccomp.h"
ee91fa06 24#include "memory_utils.h"
732375f5 25#include "ringbuf.h"
d38dd64a 26#include "start.h"
02efd041 27#include "string_utils.h"
0ed9b1bc 28#include "terminal.h"
e3b4c4c4 29
d38dd64a
CB
30#if HAVE_SYS_RESOURCE_H
31#include <sys/resource.h>
32#endif
33
769872f9
SH
34#if HAVE_SCMP_FILTER_CTX
35typedef void * scmp_filter_ctx;
36#endif
37
97e9cfa0
SH
38/* worth moving to configure.ac? */
39#define subuidfile "/etc/subuid"
40#define subgidfile "/etc/subgid"
41
0ad19a3f 42/*
43654d34
CB
43 * Defines a generic struct to configure the control group. It is up to the
44 * programmer to specify the right subsystem.
ec64264d 45 * @subsystem : the targeted subsystem
576f946d 46 * @value : the value to set
54860ed0
CB
47 * @version : The version of the cgroup filesystem on which the controller
48 * resides.
43654d34
CB
49 *
50 * @controllers : The controllers to use for this container.
51 * @dir : The name of the directory containing the container's cgroup.
52 * Not that this is a per-container setting.
0ad19a3f 53 */
54struct lxc_cgroup {
43654d34
CB
55 union {
56 /* information about a specific controller */
57 struct /* controller */ {
54860ed0 58 int version;
43654d34
CB
59 char *subsystem;
60 char *value;
61 };
62
63 /* meta information about cgroup configuration */
64 struct /* meta */ {
65 char *controllers;
66 char *dir;
a900cbaf 67 char *monitor_dir;
7696c1f9 68 char *monitor_pivot_dir;
a900cbaf
WB
69 char *container_dir;
70 char *namespace_dir;
9caee129 71 bool relative;
43654d34
CB
72 };
73 };
0ad19a3f 74};
75
ee91fa06
CB
76static void free_lxc_cgroup(struct lxc_cgroup *ptr)
77{
78 if (ptr) {
79 free(ptr->subsystem);
80 free(ptr->value);
81 free_disarm(ptr);
82 }
83}
84define_cleanup_function(struct lxc_cgroup *, free_lxc_cgroup);
85
c6d09e15 86#if !HAVE_SYS_RESOURCE_H
3a0e314d 87#define RLIM_INFINITY ((unsigned long)-1)
c6d09e15
WB
88struct rlimit {
89 unsigned long rlim_cur;
90 unsigned long rlim_max;
91};
92#endif
3a0e314d 93
c6d09e15
WB
94/*
95 * Defines a structure to configure resource limits to set via setrlimit().
96 * @resource : the resource name in lowercase without the RLIMIT_ prefix
97 * @limit : the limit to set
98 */
99struct lxc_limit {
100 char *resource;
101 struct rlimit limit;
102};
103
8fa831e0
CB
104static void free_lxc_limit(struct lxc_limit *ptr)
105{
106 if (ptr) {
107 free(ptr->resource);
108 free_disarm(ptr);
109 }
110}
111define_cleanup_function(struct lxc_limit *, free_lxc_limit);
112
f6d3e3e4
SH
113enum idtype {
114 ID_TYPE_UID,
115 ID_TYPE_GID
116};
117
7edd0540
L
118/*
119 * Defines a structure to configure kernel parameters at runtime.
120 * @key : the kernel parameters will be configured without the "lxc.sysctl" prefix
121 * @value : the value to set
122 */
123struct lxc_sysctl {
124 char *key;
125 char *value;
126};
127
f10c80d2
CB
128static void free_lxc_sysctl(struct lxc_sysctl *ptr)
129{
130 if (ptr) {
131 free(ptr->key);
132 free(ptr->value);
133 free_disarm(ptr);
134 }
135}
136define_cleanup_function(struct lxc_sysctl *, free_lxc_sysctl);
137
61d7a733
YT
138/*
139 * Defines a structure to configure proc filesystem at runtime.
140 * @filename : the proc filesystem will be configured without the "lxc.proc" prefix
141 * @value : the value to set
142 */
143struct lxc_proc {
144 char *filename;
145 char *value;
146};
147
83332c24
CB
148static void free_lxc_proc(struct lxc_proc *ptr)
149{
150 if (ptr) {
151 free(ptr->filename);
152 free(ptr->value);
153 free_disarm(ptr);
154 }
155}
156define_cleanup_function(struct lxc_proc *, free_lxc_proc);
157
f6d3e3e4
SH
158/*
159 * id_map is an id map entry. Form in confile is:
bdcbb6b3
CB
160 * lxc.idmap = u 0 9800 100
161 * lxc.idmap = u 1000 9900 100
162 * lxc.idmap = g 0 9800 100
163 * lxc.idmap = g 1000 9900 100
251d0d2a
DE
164 * meaning the container can use uids and gids 0-99 and 1000-1099,
165 * with [ug]id 0 mapping to [ug]id 9800 on the host, and [ug]id 1000 to
166 * [ug]id 9900 on the host.
f6d3e3e4
SH
167 */
168struct id_map {
169 enum idtype idtype;
251d0d2a 170 unsigned long hostid, nsid, range;
f6d3e3e4
SH
171};
172
0e4be3cf 173/* Defines the number of tty configured and contains the
a589434e 174 * instantiated ptys
885766f5 175 * @max = number of configured ttys
b0a33c1e 176 */
177struct lxc_tty_info {
885766f5
CB
178 size_t max;
179 char *dir;
180 char *tty_names;
2520facd 181 struct lxc_terminal_info *tty;
b0a33c1e 182};
183
13bb312d 184/* Defines a structure to store the rootfs location, the
33fcb7a0 185 * optionals pivot_root, rootfs mount paths
953db219
CB
186 * @path : the rootfs source (directory or device)
187 * @mount : where it is mounted
952b5031 188 * @buf : static buffer to construct paths
953db219
CB
189 * @bev_type : optional backing store type
190 * @options : mount options
191 * @mountflags : the portion of @options that are flags
192 * @data : the portion of @options that are not flags
193 * @managed : whether it is managed by LXC
ea57e424 194 * @dfd_mnt : fd for @mount
a5a08920 195 * @dfd_dev : fd for /dev of the container
33fcb7a0
DL
196 */
197struct lxc_rootfs {
ea11a215 198 int dfd_host;
79ff643d 199
33fcb7a0 200 char *path;
79ff643d
CB
201 int fd_path_pin;
202
203 int dfd_mnt;
23b7ea69 204 char *mount;
79ff643d
CB
205
206 int dfd_dev;
207
952b5031 208 char buf[PATH_MAX];
b3b8c97f 209 char *bdev_type;
3437f95c
CB
210 char *options;
211 unsigned long mountflags;
212 char *data;
6e54330c 213 bool managed;
33fcb7a0
DL
214};
215
368bbc02
CS
216/*
217 * Automatic mounts for LXC to perform inside the container
218 */
219enum {
3a0e314d
CB
220 LXC_AUTO_PROC_RW = 0x001, /* /proc read-write */
221 LXC_AUTO_PROC_MIXED = 0x002, /* /proc/sys and /proc/sysrq-trigger read-only */
b06b8511
CS
222 LXC_AUTO_PROC_MASK = 0x003,
223
3a0e314d
CB
224 LXC_AUTO_SYS_RW = 0x004, /* /sys */
225 LXC_AUTO_SYS_RO = 0x008, /* /sys read-only */
226 LXC_AUTO_SYS_MIXED = 0x00C, /* /sys read-only and /sys/class/net read-write */
b06b8511
CS
227 LXC_AUTO_SYS_MASK = 0x00C,
228
3a0e314d
CB
229 LXC_AUTO_CGROUP_RO = 0x010, /* /sys/fs/cgroup (partial mount, read-only) */
230 LXC_AUTO_CGROUP_RW = 0x020, /* /sys/fs/cgroup (partial mount, read-write) */
231 LXC_AUTO_CGROUP_MIXED = 0x030, /* /sys/fs/cgroup (partial mount, paths r/o, cgroup r/w) */
232 LXC_AUTO_CGROUP_FULL_RO = 0x040, /* /sys/fs/cgroup (full mount, read-only) */
233 LXC_AUTO_CGROUP_FULL_RW = 0x050, /* /sys/fs/cgroup (full mount, read-write) */
234 LXC_AUTO_CGROUP_FULL_MIXED = 0x060, /* /sys/fs/cgroup (full mount, parent r/o, own r/w) */
235 /*
236 * These are defined in such a way as to retain binary compatibility
237 * with earlier versions of this code. If the previous mask is applied,
238 * both of these will default back to the _MIXED variants, which is
239 * safe.
240 */
241 LXC_AUTO_CGROUP_NOSPEC = 0x0B0, /* /sys/fs/cgroup (partial mount, r/w or mixed, depending on caps) */
242 LXC_AUTO_CGROUP_FULL_NOSPEC = 0x0E0, /* /sys/fs/cgroup (full mount, r/w or mixed, depending on caps) */
243 LXC_AUTO_CGROUP_FORCE = 0x100, /* mount cgroups even when cgroup namespaces are supported */
6cc501f3 244 LXC_AUTO_CGROUP_MASK = 0x1F0, /* all known cgroup options */
adf0ba1f
LT
245
246 LXC_AUTO_SHMOUNTS = 0x200, /* shared mount point */
247 LXC_AUTO_SHMOUNTS_MASK = 0x200, /* shared mount point mask */
3a0e314d 248 LXC_AUTO_ALL_MASK = 0x1FF, /* all known settings */
368bbc02
CS
249};
250
26ddeedd 251enum lxchooks {
1a0e70ac
CB
252 LXCHOOK_PRESTART,
253 LXCHOOK_PREMOUNT,
254 LXCHOOK_MOUNT,
255 LXCHOOK_AUTODEV,
256 LXCHOOK_START,
257 LXCHOOK_STOP,
258 LXCHOOK_POSTSTOP,
259 LXCHOOK_CLONE,
260 LXCHOOK_DESTROY,
08dd2805 261 LXCHOOK_START_HOST,
1a0e70ac
CB
262 NUM_LXC_HOOKS
263};
72d0e1cb 264
59eac805 265__hidden extern char *lxchook_names[NUM_LXC_HOOKS];
7b35f3d6 266
d39b10eb
CB
267struct lxc_state_client {
268 int clientfd;
269 lxc_state_t states[MAX_STATE];
270};
271
4b9dc703 272typedef enum lxc_bpf_devices_rule_t {
4b9dc703
CB
273 LXC_BPF_DEVICE_CGROUP_ALLOWLIST = 0,
274 LXC_BPF_DEVICE_CGROUP_DENYLIST = 1,
275} lxc_bpf_devices_rule_t;
fda39d45 276
4bfb655e
CB
277struct device_item {
278 char type;
279 int major;
280 int minor;
281 char access[4];
282 int allow;
a134099d
CB
283};
284
285struct bpf_devices {
286 lxc_bpf_devices_rule_t list_type;
287 struct lxc_list device_item;
4bfb655e
CB
288};
289
70fd7fc9
CB
290struct timens_offsets {
291 /* Currently, either s_boot or ns_boot is set, but not both. */
292 int64_t s_boot;
293 int64_t ns_boot;
294
295 /* Currently, either s_monotonic or ns_monotonic is set, but not both. */
296 int64_t s_monotonic;
297 int64_t ns_monotonic;
298};
299
571e6ec8 300struct lxc_conf {
c7b17051
CB
301 /* Pointer to the name of the container. Do not free! */
302 const char *name;
07c4ea31 303 bool is_execute;
91480a0f 304 int reboot;
9b8e3c96 305 signed long personality;
571e6ec8 306 struct utsname *utsname;
edd64e17 307
54860ed0
CB
308 struct {
309 struct lxc_list cgroup;
310 struct lxc_list cgroup2;
a134099d 311 struct bpf_devices bpf_devices;
54860ed0 312 };
edd64e17 313
46ad64ab
CB
314 struct {
315 struct lxc_list id_map;
c7e345ae 316
edd64e17
CB
317 /*
318 * Pointer to the idmap entry for the container's root uid in
319 * the id_map list. Do not free!
320 */
5173b710 321 const struct id_map *root_nsuid_map;
c7e345ae 322
edd64e17
CB
323 /*
324 * Pointer to the idmap entry for the container's root gid in
325 * the id_map list. Do not free!
326 */
5173b710 327 const struct id_map *root_nsgid_map;
46ad64ab 328 };
edd64e17 329
5f4535a3 330 struct lxc_list network;
448d7b0c
CB
331
332 struct {
333 char *fstab;
334 int auto_mounts;
335 struct lxc_list mount_list;
336 };
337
81810dd1 338 struct lxc_list caps;
1fb86a7c 339 struct lxc_list keepcaps;
885766f5 340
a2db71c0 341 /* /dev/tty<idx> devices */
885766f5 342 struct lxc_tty_info ttys;
a2db71c0
CB
343 /* /dev/console device */
344 struct lxc_terminal console;
345 /* maximum pty devices allowed by devpts mount */
e528c735 346 size_t pty_max;
f797f05e
CB
347 /* file descriptor for the container's /dev/pts mount */
348 int devpts_fd;
885766f5 349
32fd6cf3
CB
350 /* set to true when rootfs has been setup */
351 bool rootfs_setup;
33fcb7a0 352 struct lxc_rootfs rootfs;
32fd6cf3 353
b3187a81 354 bool close_all_fds;
44ae0fb6
CB
355
356 struct {
357 unsigned int hooks_version;
358 struct lxc_list hooks[NUM_LXC_HOOKS];
359 };
4a85ce2a 360
fe4de9a6 361 char *lsm_aa_profile;
1800f924
WB
362 char *lsm_aa_profile_computed;
363 bool lsm_aa_profile_created;
364 unsigned int lsm_aa_allow_nesting;
a56e2df9 365 unsigned int lsm_aa_allow_incomplete;
1800f924 366 struct lxc_list lsm_aa_raw;
fe4de9a6 367 char *lsm_se_context;
4fef78bc 368 char *lsm_se_keyring_context;
8f818a84 369 bool keyring_disable_session;
952b5031 370 bool transient_procfs_mnt;
c3e3c21a 371 struct lxc_seccomp seccomp;
72d0e1cb 372 int maincmd_fd;
1a0e70ac 373 unsigned int autodev; /* if 1, mount and fill a /dev at start */
63012bdd 374 int autodevtmpfssize; /* size of the /dev tmpfs */
1a0e70ac
CB
375 int haltsignal; /* signal used to halt container */
376 int rebootsignal; /* signal used to reboot container */
377 int stopsignal; /* signal used to hard stop container */
378 char *rcfile; /* Copy of the top level rcfile we read */
379
b9949538 380 /* Logfile and loglevel can be set in a container config file. Those
7b660465 381 * function as defaults. The defaults can be overridden by command line.
1a0e70ac
CB
382 * However we don't want the command line specified values to be saved
383 * on c->save_config(). So we store the config file specified values
384 * here. */
98020c31
JS
385 char *logfile; /* the logfile as specified in config */
386 int loglevel; /* loglevel as specified in config (if any) */
858377e4 387 int logfd;
9f30a190 388
3590152f
CB
389 unsigned int start_auto;
390 unsigned int start_delay;
ee1e7aa0
SG
391 int start_order;
392 struct lxc_list groups;
76a26f55 393 int nbd_idx;
35120d9c 394
a8dfe4e0 395 /* unshare the mount namespace in the monitor */
226dc30e 396 unsigned int monitor_unshare;
258f8051 397 unsigned int monitor_signal_pdeath;
a8dfe4e0 398
f979ac15
SH
399 /* list of included files */
400 struct lxc_list includes;
4184c3e1
SH
401 /* config entries which are not "lxc.*" are aliens */
402 struct lxc_list aliens;
7c661726
MP
403
404 /* list of environment variables we'll add to the container when
405 * started */
406 struct lxc_list environment;
6b0d5538
SH
407
408 /* text representation of the config file */
409 char *unexpanded_config;
32fd6cf3
CB
410 size_t unexpanded_len;
411 size_t unexpanded_alloced;
67c660d0 412
5cda27c1
SH
413 /* default command for lxc-execute */
414 char *execute_cmd;
415
67c660d0
SG
416 /* init command */
417 char *init_cmd;
56f8ff00 418
4822319f 419 /* The uid to use for the container. */
c5cd20ce 420 uid_t init_uid;
4822319f 421 /* The gid to use for the container. */
c5cd20ce 422 gid_t init_gid;
4822319f
CB
423 /* The groups to use for the container. */
424 lxc_groups_t init_groups;
8796becf
CB
425
426 /* indicator if the container will be destroyed on shutdown */
66ffdb1a 427 unsigned int ephemeral;
76d0127f
CB
428
429 /* The facility to pass to syslog. Let's users establish as what type of
430 * program liblxc is supposed to write to the syslog. */
431 char *syslog;
5a46f283
CB
432
433 /* Whether PR_SET_NO_NEW_PRIVS will be set for the container. */
434 bool no_new_privs;
c6d09e15
WB
435
436 /* RLIMIT_* limits */
437 struct lxc_list limits;
7ec2e32a 438
43654d34
CB
439 /* Contains generic info about the cgroup configuration for this
440 * container. Note that struct lxc_cgroup contains a union. It is only
441 * valid to access the members of the anonymous "meta" struct within
442 * that union.
443 */
444 struct lxc_cgroup cgroup_meta;
28d9e29e 445
b074bbf1 446 struct {
1d8d3676 447 int ns_clone;
abeb5bba 448 int ns_keep;
b074bbf1
CB
449 char *ns_share[LXC_NS_MAX];
450 };
3c491553
L
451
452 /* init working directory */
9e132956 453 char *init_cwd;
3c491553 454
d39b10eb
CB
455 /* A list of clients registered to be informed about a container state. */
456 struct lxc_list state_clients;
7edd0540
L
457
458 /* sysctls */
459 struct lxc_list sysctls;
61d7a733
YT
460
461 /* procs */
462 struct lxc_list procs;
adf0ba1f 463
7a41e857 464 struct shmount {
adf0ba1f
LT
465 /* Absolute path to the shared mount point on the host */
466 char *path_host;
467 /* Absolute path (in the container) to the shared mount point */
468 char *path_cont;
7a41e857 469 } shmount;
70fd7fc9
CB
470
471 struct timens_offsets timens;
571e6ec8
DL
472};
473
efb7e304
CB
474__hidden extern int write_id_mapping(enum idtype idtype, pid_t pid, const char *buf, size_t buf_size)
475 __access_r(3, 4);
344c9d81 476
858377e4 477#ifdef HAVE_TLS
d7f19646 478extern thread_local struct lxc_conf *current_config;
858377e4
SH
479#else
480extern struct lxc_conf *current_config;
481#endif
482
efb7e304
CB
483__hidden extern int run_lxc_hooks(const char *name, char *hook, struct lxc_conf *conf, char *argv[]);
484__hidden extern struct lxc_conf *lxc_conf_init(void);
485__hidden extern void lxc_conf_free(struct lxc_conf *conf);
79ff643d 486__hidden extern int lxc_rootfs_prepare(struct lxc_rootfs *rootfs, bool userns);
efb7e304
CB
487__hidden extern int lxc_map_ids(struct lxc_list *idmap, pid_t pid);
488__hidden extern int lxc_create_tty(const char *name, struct lxc_conf *conf);
489__hidden extern void lxc_delete_tty(struct lxc_tty_info *ttys);
490__hidden extern int lxc_clear_config_caps(struct lxc_conf *c);
491__hidden extern int lxc_clear_config_keepcaps(struct lxc_conf *c);
492__hidden extern int lxc_clear_cgroups(struct lxc_conf *c, const char *key, int version);
493__hidden extern int lxc_clear_mount_entries(struct lxc_conf *c);
494__hidden extern int lxc_clear_automounts(struct lxc_conf *c);
495__hidden extern int lxc_clear_hooks(struct lxc_conf *c, const char *key);
496__hidden extern int lxc_clear_idmaps(struct lxc_conf *c);
497__hidden extern int lxc_clear_groups(struct lxc_conf *c);
498__hidden extern int lxc_clear_environment(struct lxc_conf *c);
499__hidden extern int lxc_clear_limits(struct lxc_conf *c, const char *key);
500__hidden extern int lxc_delete_autodev(struct lxc_handler *handler);
501__hidden extern int lxc_clear_autodev_tmpfs_size(struct lxc_conf *c);
502__hidden extern void lxc_clear_includes(struct lxc_conf *conf);
503__hidden extern int lxc_setup_rootfs_prepare_root(struct lxc_conf *conf, const char *name,
504 const char *lxcpath);
505__hidden extern int lxc_setup(struct lxc_handler *handler);
506__hidden extern int lxc_setup_parent(struct lxc_handler *handler);
507__hidden extern int setup_resource_limits(struct lxc_list *limits, pid_t pid);
508__hidden extern int find_unmapped_nsid(const struct lxc_conf *conf, enum idtype idtype);
509__hidden extern int mapped_hostid(unsigned id, const struct lxc_conf *conf, enum idtype idtype);
510__hidden extern int userns_exec_1(const struct lxc_conf *conf, int (*fn)(void *), void *data,
511 const char *fn_name);
512__hidden extern int userns_exec_full(struct lxc_conf *conf, int (*fn)(void *), void *data,
513 const char *fn_name);
514__hidden extern int parse_mntopts(const char *mntopts, unsigned long *mntflags, char **mntdata);
515__hidden extern int parse_propagationopts(const char *mntopts, unsigned long *pflags);
516__hidden extern void tmp_proc_unmount(struct lxc_conf *lxc_conf);
517__hidden extern void turn_into_dependent_mounts(void);
518__hidden extern void suggest_default_idmap(void);
519__hidden extern FILE *make_anonymous_mount_file(struct lxc_list *mount, bool include_nesting_helpers);
520__hidden extern struct lxc_list *sort_cgroup_settings(struct lxc_list *cgroup_settings);
efb7e304
CB
521__hidden extern int run_script(const char *name, const char *section, const char *script, ...);
522__hidden extern int run_script_argv(const char *name, unsigned int hook_version, const char *section,
523 const char *script, const char *hookname, char **argsin);
524__hidden extern int in_caplist(int cap, struct lxc_list *caps);
309ae287 525
d84b26bc 526static inline bool lxc_wants_cap(int cap, struct lxc_conf *conf)
309ae287 527{
d84b26bc
CB
528 if (lxc_caps_last_cap() < cap)
529 return false;
530
309ae287 531 if (!lxc_list_empty(&conf->keepcaps))
5d1bf4c4 532 return in_caplist(cap, &conf->keepcaps);
309ae287 533
5d1bf4c4 534 return !in_caplist(cap, &conf->caps);
309ae287
CB
535}
536
efb7e304
CB
537__hidden extern int setup_sysctl_parameters(struct lxc_list *sysctls);
538__hidden extern int lxc_clear_sysctls(struct lxc_conf *c, const char *key);
539__hidden extern int setup_proc_filesystem(struct lxc_list *procs, pid_t pid);
540__hidden extern int lxc_clear_procs(struct lxc_conf *c, const char *key);
541__hidden extern int lxc_clear_apparmor_raw(struct lxc_conf *c);
542__hidden extern int lxc_clear_namespace(struct lxc_conf *c);
543__hidden extern int userns_exec_minimal(const struct lxc_conf *conf, int (*fn_parent)(void *),
544 void *fn_parent_data, int (*fn_child)(void *),
545 void *fn_child_data);
546__hidden extern int userns_exec_mapped_root(const char *path, int path_fd,
547 const struct lxc_conf *conf);
6e1a327a
CB
548static inline int chown_mapped_root(const char *path, const struct lxc_conf *conf)
549{
550 return userns_exec_mapped_root(path, -EBADF, conf);
551}
5ae72b98 552
68f3899e
CB
553__hidden int lxc_setup_devpts_parent(struct lxc_handler *handler);
554
02efd041
CB
555static inline const char *get_rootfs_mnt(const struct lxc_rootfs *rootfs)
556{
557 static const char *s = "/";
558
559 return !is_empty_string(rootfs->path) ? rootfs->mount : s;
560}
561
79ff643d
CB
562static inline void put_lxc_rootfs(struct lxc_rootfs *rootfs, bool unpin)
563{
564 if (rootfs) {
565 close_prot_errno_disarm(rootfs->dfd_host);
566 close_prot_errno_disarm(rootfs->dfd_mnt);
567 close_prot_errno_disarm(rootfs->dfd_dev);
568 if (unpin)
569 close_prot_errno_disarm(rootfs->fd_path_pin);
570 }
571}
572
1a0e70ac 573#endif /* __LXC_CONF_H */