1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
3 * Landlock - User space API
5 * Copyright © 2017-2020 Mickaël Salaün <mic@digikod.net>
6 * Copyright © 2018-2020 ANSSI
9 #ifndef _UAPI_LINUX_LANDLOCK_H
10 #define _UAPI_LINUX_LANDLOCK_H
12 #include <linux/types.h>
15 * struct landlock_ruleset_attr - Ruleset definition
17 * Argument of sys_landlock_create_ruleset(). This structure can grow in
20 struct landlock_ruleset_attr {
22 * @handled_access_fs: Bitmask of actions (cf. `Filesystem flags`_)
23 * that is handled by this ruleset and should then be forbidden if no
24 * rule explicitly allow them: it is a deny-by-default list that should
25 * contain as much Landlock access rights as possible. Indeed, all
26 * Landlock filesystem access rights that are not part of
27 * handled_access_fs are allowed. This is needed for backward
28 * compatibility reasons. One exception is the
29 * %LANDLOCK_ACCESS_FS_REFER access right, which is always implicitly
30 * handled, but must still be explicitly handled to add new rules with
33 __u64 handled_access_fs;
35 * @handled_access_net: Bitmask of actions (cf. `Network flags`_)
36 * that is handled by this ruleset and should then be forbidden if no
37 * rule explicitly allow them.
39 __u64 handled_access_net;
43 * sys_landlock_create_ruleset() flags:
45 * - %LANDLOCK_CREATE_RULESET_VERSION: Get the highest supported Landlock ABI
48 /* clang-format off */
49 #define LANDLOCK_CREATE_RULESET_VERSION (1U << 0)
53 * enum landlock_rule_type - Landlock rule type
55 * Argument of sys_landlock_add_rule().
57 enum landlock_rule_type {
59 * @LANDLOCK_RULE_PATH_BENEATH: Type of a &struct
60 * landlock_path_beneath_attr .
62 LANDLOCK_RULE_PATH_BENEATH = 1,
64 * @LANDLOCK_RULE_NET_PORT: Type of a &struct
65 * landlock_net_port_attr .
67 LANDLOCK_RULE_NET_PORT,
71 * struct landlock_path_beneath_attr - Path hierarchy definition
73 * Argument of sys_landlock_add_rule().
75 struct landlock_path_beneath_attr {
77 * @allowed_access: Bitmask of allowed actions for this file hierarchy
78 * (cf. `Filesystem flags`_).
82 * @parent_fd: File descriptor, preferably opened with ``O_PATH``,
83 * which identifies the parent directory of a file hierarchy, or just a
88 * This struct is packed to avoid trailing reserved members.
89 * Cf. security/landlock/syscalls.c:build_check_abi()
91 } __attribute__((packed));
94 * struct landlock_net_port_attr - Network port definition
96 * Argument of sys_landlock_add_rule().
98 struct landlock_net_port_attr {
100 * @allowed_access: Bitmask of allowed access network for a port
101 * (cf. `Network flags`_).
103 __u64 allowed_access;
105 * @port: Network port in host endianness.
107 * It should be noted that port 0 passed to :manpage:`bind(2)` will
108 * bind to an available port from a specific port range. This can be
109 * configured thanks to the ``/proc/sys/net/ipv4/ip_local_port_range``
110 * sysctl (also used for IPv6). A Landlock rule with port 0 and the
111 * ``LANDLOCK_ACCESS_NET_BIND_TCP`` right means that requesting to bind
112 * on port 0 is allowed and it will automatically translate to binding
113 * on the related port range.
121 * A set of actions on kernel objects may be defined by an attribute (e.g.
122 * &struct landlock_path_beneath_attr) including a bitmask of access.
127 * These flags enable to restrict a sandboxed process to a set of actions on
128 * files and directories. Files or directories opened before the sandboxing
129 * are not subject to these restrictions.
131 * A file can only receive these access rights:
133 * - %LANDLOCK_ACCESS_FS_EXECUTE: Execute a file.
134 * - %LANDLOCK_ACCESS_FS_WRITE_FILE: Open a file with write access. Note that
135 * you might additionally need the %LANDLOCK_ACCESS_FS_TRUNCATE right in order
136 * to overwrite files with :manpage:`open(2)` using ``O_TRUNC`` or
137 * :manpage:`creat(2)`.
138 * - %LANDLOCK_ACCESS_FS_READ_FILE: Open a file with read access.
139 * - %LANDLOCK_ACCESS_FS_TRUNCATE: Truncate a file with :manpage:`truncate(2)`,
140 * :manpage:`ftruncate(2)`, :manpage:`creat(2)`, or :manpage:`open(2)` with
141 * ``O_TRUNC``. Whether an opened file can be truncated with
142 * :manpage:`ftruncate(2)` is determined during :manpage:`open(2)`, in the
143 * same way as read and write permissions are checked during
144 * :manpage:`open(2)` using %LANDLOCK_ACCESS_FS_READ_FILE and
145 * %LANDLOCK_ACCESS_FS_WRITE_FILE. This access right is available since the
146 * third version of the Landlock ABI.
148 * A directory can receive access rights related to files or directories. The
149 * following access right is applied to the directory itself, and the
150 * directories beneath it:
152 * - %LANDLOCK_ACCESS_FS_READ_DIR: Open a directory or list its content.
154 * However, the following access rights only apply to the content of a
155 * directory, not the directory itself:
157 * - %LANDLOCK_ACCESS_FS_REMOVE_DIR: Remove an empty directory or rename one.
158 * - %LANDLOCK_ACCESS_FS_REMOVE_FILE: Unlink (or rename) a file.
159 * - %LANDLOCK_ACCESS_FS_MAKE_CHAR: Create (or rename or link) a character
161 * - %LANDLOCK_ACCESS_FS_MAKE_DIR: Create (or rename) a directory.
162 * - %LANDLOCK_ACCESS_FS_MAKE_REG: Create (or rename or link) a regular file.
163 * - %LANDLOCK_ACCESS_FS_MAKE_SOCK: Create (or rename or link) a UNIX domain
165 * - %LANDLOCK_ACCESS_FS_MAKE_FIFO: Create (or rename or link) a named pipe.
166 * - %LANDLOCK_ACCESS_FS_MAKE_BLOCK: Create (or rename or link) a block device.
167 * - %LANDLOCK_ACCESS_FS_MAKE_SYM: Create (or rename or link) a symbolic link.
168 * - %LANDLOCK_ACCESS_FS_REFER: Link or rename a file from or to a different
169 * directory (i.e. reparent a file hierarchy).
171 * This access right is available since the second version of the Landlock
174 * This is the only access right which is denied by default by any ruleset,
175 * even if the right is not specified as handled at ruleset creation time.
176 * The only way to make a ruleset grant this right is to explicitly allow it
177 * for a specific directory by adding a matching rule to the ruleset.
179 * In particular, when using the first Landlock ABI version, Landlock will
180 * always deny attempts to reparent files between different directories.
182 * In addition to the source and destination directories having the
183 * %LANDLOCK_ACCESS_FS_REFER access right, the attempted link or rename
184 * operation must meet the following constraints:
186 * * The reparented file may not gain more access rights in the destination
187 * directory than it previously had in the source directory. If this is
188 * attempted, the operation results in an ``EXDEV`` error.
190 * * When linking or renaming, the ``LANDLOCK_ACCESS_FS_MAKE_*`` right for the
191 * respective file type must be granted for the destination directory.
192 * Otherwise, the operation results in an ``EACCES`` error.
194 * * When renaming, the ``LANDLOCK_ACCESS_FS_REMOVE_*`` right for the
195 * respective file type must be granted for the source directory. Otherwise,
196 * the operation results in an ``EACCES`` error.
198 * If multiple requirements are not met, the ``EACCES`` error code takes
199 * precedence over ``EXDEV``.
203 * It is currently not possible to restrict some file-related actions
204 * accessible through these syscall families: :manpage:`chdir(2)`,
205 * :manpage:`stat(2)`, :manpage:`flock(2)`, :manpage:`chmod(2)`,
206 * :manpage:`chown(2)`, :manpage:`setxattr(2)`, :manpage:`utime(2)`,
207 * :manpage:`ioctl(2)`, :manpage:`fcntl(2)`, :manpage:`access(2)`.
208 * Future Landlock evolutions will enable to restrict them.
210 /* clang-format off */
211 #define LANDLOCK_ACCESS_FS_EXECUTE (1ULL << 0)
212 #define LANDLOCK_ACCESS_FS_WRITE_FILE (1ULL << 1)
213 #define LANDLOCK_ACCESS_FS_READ_FILE (1ULL << 2)
214 #define LANDLOCK_ACCESS_FS_READ_DIR (1ULL << 3)
215 #define LANDLOCK_ACCESS_FS_REMOVE_DIR (1ULL << 4)
216 #define LANDLOCK_ACCESS_FS_REMOVE_FILE (1ULL << 5)
217 #define LANDLOCK_ACCESS_FS_MAKE_CHAR (1ULL << 6)
218 #define LANDLOCK_ACCESS_FS_MAKE_DIR (1ULL << 7)
219 #define LANDLOCK_ACCESS_FS_MAKE_REG (1ULL << 8)
220 #define LANDLOCK_ACCESS_FS_MAKE_SOCK (1ULL << 9)
221 #define LANDLOCK_ACCESS_FS_MAKE_FIFO (1ULL << 10)
222 #define LANDLOCK_ACCESS_FS_MAKE_BLOCK (1ULL << 11)
223 #define LANDLOCK_ACCESS_FS_MAKE_SYM (1ULL << 12)
224 #define LANDLOCK_ACCESS_FS_REFER (1ULL << 13)
225 #define LANDLOCK_ACCESS_FS_TRUNCATE (1ULL << 14)
226 /* clang-format on */
234 * These flags enable to restrict a sandboxed process to a set of network
235 * actions. This is supported since the Landlock ABI version 4.
237 * TCP sockets with allowed actions:
239 * - %LANDLOCK_ACCESS_NET_BIND_TCP: Bind a TCP socket to a local port.
240 * - %LANDLOCK_ACCESS_NET_CONNECT_TCP: Connect an active TCP socket to
243 /* clang-format off */
244 #define LANDLOCK_ACCESS_NET_BIND_TCP (1ULL << 0)
245 #define LANDLOCK_ACCESS_NET_CONNECT_TCP (1ULL << 1)
246 /* clang-format on */
247 #endif /* _UAPI_LINUX_LANDLOCK_H */