summaryrefslogtreecommitdiff
path: root/src/udev/udev-node.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2022-07-08 10:05:57 +0200
committerLennart Poettering <lennart@poettering.net>2022-07-08 17:43:49 +0200
commit03bc11d1c491d6b8fed1e43c2929790d004d7367 (patch)
tree5021f0a3c79c7cfa44c174ab0dbaf947bbbd96e6 /src/udev/udev-node.c
parent05c4affe04b5592c5786e5313e3edd1f36b1aca8 (diff)
downloadsystemd-03bc11d1c491d6b8fed1e43c2929790d004d7367.tar.gz
mac: rework labelling code to be simpler, and less racy
This merges the various labelling calls into a single label_fix_full(), which can operate on paths, on inode fds, and in a dirfd/fname style (i.e. like openat()). It also systematically separates the path to look up in the db from the path we actually use to reference the inode to relabel. This then ports tmpfiles over to labelling by fd. This should make the code a bit less racy, as we'll try hard to always operate on the very same inode, pinning it via an fd. User-visibly the behaviour should not change.
Diffstat (limited to 'src/udev/udev-node.c')
-rw-r--r--src/udev/udev-node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udev/udev-node.c b/src/udev/udev-node.c
index c9f58e8c29..bb34977d97 100644
--- a/src/udev/udev-node.c
+++ b/src/udev/udev-node.c
@@ -677,7 +677,7 @@ static int udev_node_apply_permissions_impl(
/* set the defaults */
if (!selinux)
- (void) mac_selinux_fix_fd(node_fd, devnode, LABEL_IGNORE_ENOENT);
+ (void) mac_selinux_fix_full(node_fd, NULL, devnode, LABEL_IGNORE_ENOENT);
if (!smack)
(void) mac_smack_apply_fd(node_fd, SMACK_ATTR_ACCESS, NULL);
}