anitazha / rpms / systemd

Forked from rpms/systemd 3 years ago
Clone

Blame SOURCES/0723-fs-util-add-new-CHASE_SAFE-flag-to-chase_symlinks.patch

923a60
From 0e64363bb21a07fa318017ea8c90597db63a9545 Mon Sep 17 00:00:00 2001
923a60
From: David Tardon <dtardon@redhat.com>
923a60
Date: Thu, 3 Jan 2019 14:37:34 +0100
923a60
Subject: [PATCH] fs-util: add new CHASE_SAFE flag to chase_symlinks()
923a60
923a60
When the flag is specified we won't transition to a privilege-owned
923a60
file or directory from an unprivileged-owned one. This is useful when
923a60
privileged code wants to load data from a file unprivileged users have
923a60
write access to, and validates the ownership, but want's to make sure
923a60
that no symlink games are played to read a root-owned system file
923a60
belonging to a different context.
923a60
923a60
(cherry picked from commit f14f1806e329fe92d01f15c22a384702f0cb4ae0)
923a60
923a60
Related: #1663143
923a60
---
923a60
 src/shared/util.c    | 43 +++++++++++++++++++++++++++++++++++++++++++
923a60
 src/shared/util.h    |  7 ++++---
923a60
 src/test/test-util.c | 26 ++++++++++++++++++++++++++
923a60
 3 files changed, 73 insertions(+), 3 deletions(-)
923a60
923a60
diff --git a/src/shared/util.c b/src/shared/util.c
923a60
index 385551f2b3..fc4887920f 100644
923a60
--- a/src/shared/util.c
923a60
+++ b/src/shared/util.c
923a60
@@ -9203,10 +9203,22 @@ int fd_is_fs_type(int fd, statfs_f_type_t magic_value) {
923a60
         return is_fs_type(&s, magic_value);
923a60
 }
923a60
 
923a60
+static bool safe_transition(const struct stat *a, const struct stat *b) {
923a60
+        /* Returns true if the transition from a to b is safe, i.e. that we never transition from unprivileged to
923a60
+         * privileged files or directories. Why bother? So that unprivileged code can't symlink to privileged files
923a60
+         * making us believe we read something safe even though it isn't safe in the specific context we open it in. */
923a60
+
923a60
+        if (a->st_uid == 0) /* Transitioning from privileged to unprivileged is always fine */
923a60
+                return true;
923a60
+
923a60
+        return a->st_uid == b->st_uid; /* Otherwise we need to stay within the same UID */
923a60
+}
923a60
+
923a60
 int chase_symlinks(const char *path, const char *original_root, unsigned flags, char **ret) {
923a60
         _cleanup_free_ char *buffer = NULL, *done = NULL, *root = NULL;
923a60
         _cleanup_close_ int fd = -1;
923a60
         unsigned max_follow = 32; /* how many symlinks to follow before giving up and returning ELOOP */
923a60
+        struct stat previous_stat;
923a60
         bool exists = true;
923a60
         char *todo;
923a60
         int r;
923a60
@@ -9250,6 +9262,11 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
923a60
         if (fd < 0)
923a60
                 return -errno;
923a60
 
923a60
+        if (flags & CHASE_SAFE) {
923a60
+                if (fstat(fd, &previous_stat) < 0)
923a60
+                        return -errno;
923a60
+        }
923a60
+
923a60
         todo = buffer;
923a60
         for (;;) {
923a60
                 _cleanup_free_ char *first = NULL;
923a60
@@ -9313,6 +9330,16 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
923a60
                         if (fd_parent < 0)
923a60
                                 return -errno;
923a60
 
923a60
+                        if (flags & CHASE_SAFE) {
923a60
+                                if (fstat(fd_parent, &st) < 0)
923a60
+                                        return -errno;
923a60
+
923a60
+                                if (!safe_transition(&previous_stat, &st))
923a60
+                                        return -EPERM;
923a60
+
923a60
+                                previous_stat = st;
923a60
+                        }
923a60
+
923a60
                         safe_close(fd);
923a60
                         fd = fd_parent;
923a60
 
923a60
@@ -9347,6 +9374,12 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
923a60
 
923a60
                 if (fstat(child, &st) < 0)
923a60
                         return -errno;
923a60
+                if ((flags & CHASE_SAFE) &&
923a60
+                    !safe_transition(&previous_stat, &st))
923a60
+                        return -EPERM;
923a60
+
923a60
+                previous_stat = st;
923a60
+
923a60
                 if ((flags & CHASE_NO_AUTOFS) &&
923a60
                     fd_is_fs_type(child, AUTOFS_SUPER_MAGIC) > 0)
923a60
                         return -EREMOTE;
923a60
@@ -9379,6 +9412,16 @@ int chase_symlinks(const char *path, const char *original_root, unsigned flags,
923a60
 
923a60
                                 free(done);
923a60
 
923a60
+                                if (flags & CHASE_SAFE) {
923a60
+                                        if (fstat(fd, &st) < 0)
923a60
+                                                return -errno;
923a60
+
923a60
+                                        if (!safe_transition(&previous_stat, &st))
923a60
+                                                return -EPERM;
923a60
+
923a60
+                                        previous_stat = st;
923a60
+                                }
923a60
+
923a60
                                 /* Note that we do not revalidate the root, we take it as is. */
923a60
                                 if (isempty(root))
923a60
                                         done = NULL;
923a60
diff --git a/src/shared/util.h b/src/shared/util.h
923a60
index 915c7439e8..fa3e2e3009 100644
923a60
--- a/src/shared/util.h
923a60
+++ b/src/shared/util.h
923a60
@@ -1157,9 +1157,10 @@ bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) _pure_;
923a60
 int fd_is_fs_type(int fd, statfs_f_type_t magic_value);
923a60
 
923a60
 enum {
923a60
-        CHASE_PREFIX_ROOT = 1,   /* If set, the specified path will be prefixed by the specified root before beginning the iteration */
923a60
-        CHASE_NONEXISTENT = 2,   /* If set, it's OK if the path doesn't actually exist. */
923a60
-        CHASE_NO_AUTOFS = 4,     /* If set, return -EREMOTE if autofs mount point found */
923a60
+        CHASE_PREFIX_ROOT = 1U << 0,   /* If set, the specified path will be prefixed by the specified root before beginning the iteration */
923a60
+        CHASE_NONEXISTENT = 1U << 1,   /* If set, it's OK if the path doesn't actually exist. */
923a60
+        CHASE_NO_AUTOFS   = 1U << 2,   /* If set, return -EREMOTE if autofs mount point found */
923a60
+        CHASE_SAFE        = 1U << 3,   /* If set, return EPERM if we ever traverse from unprivileged to privileged files or directories */
923a60
 };
923a60
 
923a60
 int chase_symlinks(const char *path_with_prefix, const char *root, unsigned flags, char **ret);
923a60
diff --git a/src/test/test-util.c b/src/test/test-util.c
923a60
index 397c45a9f4..e5a646ec20 100644
923a60
--- a/src/test/test-util.c
923a60
+++ b/src/test/test-util.c
923a60
@@ -2113,6 +2113,32 @@ static void test_chase_symlinks(void) {
923a60
         r = chase_symlinks(p, NULL, 0, &result);
923a60
         assert_se(r == -ENOENT);
923a60
 
923a60
+        if (geteuid() == 0) {
923a60
+                p = strjoina(temp, "/priv1");
923a60
+                assert_se(mkdir(p, 0755) >= 0);
923a60
+
923a60
+                q = strjoina(p, "/priv2");
923a60
+                assert_se(mkdir(q, 0755) >= 0);
923a60
+
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) >= 0);
923a60
+
923a60
+                assert_se(chown(q, 65534, 65534) >= 0);
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) >= 0);
923a60
+
923a60
+                assert_se(chown(p, 65534, 65534) >= 0);
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) >= 0);
923a60
+
923a60
+                assert_se(chown(q, 0, 0) >= 0);
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) == -EPERM);
923a60
+
923a60
+                assert_se(rmdir(q) >= 0);
923a60
+                assert_se(symlink("/etc/passwd", q) >= 0);
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) == -EPERM);
923a60
+
923a60
+                assert_se(chown(p, 0, 0) >= 0);
923a60
+                assert_se(chase_symlinks(q, NULL, CHASE_SAFE, NULL) >= 0);
923a60
+        }
923a60
+
923a60
         assert_se(rm_rf_dangerous(temp, false, true, false) >= 0);
923a60
 }
923a60