]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/core/namespace.h
Merge pull request #11827 from keszybz/pkgconfig-variables
[thirdparty/systemd.git] / src / core / namespace.h
CommitLineData
53e1b683 1/* SPDX-License-Identifier: LGPL-2.1+ */
c2f1db8f 2#pragma once
15ae422b
LP
3
4/***
96b2fb93 5 Copyright © 2016 Djalal Harouni
15ae422b
LP
6***/
7
bb0ff3fb 8typedef struct NamespaceInfo NamespaceInfo;
d2d6c096 9typedef struct BindMount BindMount;
2abd4e38 10typedef struct TemporaryFileSystem TemporaryFileSystem;
c575770b 11
15ae422b
LP
12#include <stdbool.h>
13
915e6d16 14#include "dissect-image.h"
417116f2
LP
15#include "macro.h"
16
1b8689f9
LP
17typedef enum ProtectHome {
18 PROTECT_HOME_NO,
19 PROTECT_HOME_YES,
20 PROTECT_HOME_READ_ONLY,
e4da7d8c 21 PROTECT_HOME_TMPFS,
1b8689f9
LP
22 _PROTECT_HOME_MAX,
23 _PROTECT_HOME_INVALID = -1
24} ProtectHome;
25
6e2d7c4f
MS
26typedef enum NamespaceType {
27 NAMESPACE_MOUNT,
28 NAMESPACE_CGROUP,
29 NAMESPACE_UTS,
30 NAMESPACE_IPC,
31 NAMESPACE_USER,
32 NAMESPACE_PID,
33 NAMESPACE_NET,
34 _NAMESPACE_TYPE_MAX,
35 _NAMESPACE_TYPE_INVALID = -1,
36} NamespaceType;
37
1b8689f9
LP
38typedef enum ProtectSystem {
39 PROTECT_SYSTEM_NO,
40 PROTECT_SYSTEM_YES,
41 PROTECT_SYSTEM_FULL,
3f815163 42 PROTECT_SYSTEM_STRICT,
1b8689f9
LP
43 _PROTECT_SYSTEM_MAX,
44 _PROTECT_SYSTEM_INVALID = -1
45} ProtectSystem;
417116f2 46
bb0ff3fb 47struct NamespaceInfo {
af964954 48 bool ignore_protect_paths:1;
c575770b 49 bool private_dev:1;
228af36f 50 bool private_mounts:1;
c575770b
DH
51 bool protect_control_groups:1;
52 bool protect_kernel_tunables:1;
53 bool protect_kernel_modules:1;
5d997827 54 bool mount_apivfs:1;
aecd5ac6 55 bool protect_hostname:1;
c575770b
DH
56};
57
d2d6c096
LP
58struct BindMount {
59 char *source;
60 char *destination;
61 bool read_only:1;
62 bool recursive:1;
63 bool ignore_enoent:1;
64};
65
2abd4e38
YW
66struct TemporaryFileSystem {
67 char *path;
68 char *options;
69};
70
d2d6c096
LP
71int setup_namespace(
72 const char *root_directory,
915e6d16 73 const char *root_image,
bb0ff3fb 74 const NamespaceInfo *ns_info,
d2d6c096
LP
75 char **read_write_paths,
76 char **read_only_paths,
77 char **inaccessible_paths,
6c47cd7d 78 char **empty_directories,
d2d6c096 79 const BindMount *bind_mounts,
da6053d0 80 size_t n_bind_mounts,
2abd4e38 81 const TemporaryFileSystem *temporary_filesystems,
da6053d0 82 size_t n_temporary_filesystems,
d2d6c096
LP
83 const char *tmp_dir,
84 const char *var_tmp_dir,
85 ProtectHome protect_home,
86 ProtectSystem protect_system,
915e6d16
LP
87 unsigned long mount_flags,
88 DissectImageFlags dissected_image_flags);
d2d6c096
LP
89
90int setup_tmp_dirs(
91 const char *id,
92 char **tmp_dir,
93 char **var_tmp_dir);
613b411c 94
3042bbeb 95int setup_netns(int netns_storage_socket[static 2]);
417116f2 96
1b8689f9
LP
97const char* protect_home_to_string(ProtectHome p) _const_;
98ProtectHome protect_home_from_string(const char *s) _pure_;
99
100const char* protect_system_to_string(ProtectSystem p) _const_;
101ProtectSystem protect_system_from_string(const char *s) _pure_;
d2d6c096 102
da6053d0
LP
103void bind_mount_free_many(BindMount *b, size_t n);
104int bind_mount_add(BindMount **b, size_t *n, const BindMount *item);
6e2d7c4f 105
da6053d0
LP
106void temporary_filesystem_free_many(TemporaryFileSystem *t, size_t n);
107int temporary_filesystem_add(TemporaryFileSystem **t, size_t *n,
2abd4e38
YW
108 const char *path, const char *options);
109
6e2d7c4f
MS
110const char* namespace_type_to_string(NamespaceType t) _const_;
111NamespaceType namespace_type_from_string(const char *s) _pure_;
112
113bool ns_type_supported(NamespaceType type);