blob: 6eecd3197cbeae809c01183bee9d50b71eacb01b [file] [log] [blame]
Andrew Geisslerd5838332022-05-27 11:33:10 -05001From 46fdc959257d60d9b32953cae0152ae118f8564b Mon Sep 17 00:00:00 2001
Brad Bishop19323692019-04-05 15:28:33 -04002From: Andre McCurdy <armccurdy@gmail.com>
3Date: Tue, 10 Oct 2017 14:33:30 -0700
William A. Kennington IIIac69b482021-06-02 12:28:27 -07004Subject: [PATCH] don't pass AT_SYMLINK_NOFOLLOW flag to faccessat()
Brad Bishop19323692019-04-05 15:28:33 -04005
6Avoid using AT_SYMLINK_NOFOLLOW flag. It doesn't seem like the right
7thing to do and it's not portable (not supported by musl). See:
8
9 http://lists.landley.net/pipermail/toybox-landley.net/2014-September/003610.html
10 http://www.openwall.com/lists/musl/2015/02/05/2
11
12Note that laccess() is never passing AT_EACCESS so a lot of the
13discussion in the links above doesn't apply. Note also that
14(currently) all systemd callers of laccess() pass mode as F_OK, so
15only check for existence of a file, not access permissions.
16Therefore, in this case, the only distiction between faccessat()
17with (flag == 0) and (flag == AT_SYMLINK_NOFOLLOW) is the behaviour
18for broken symlinks; laccess() on a broken symlink will succeed with
19(flag == AT_SYMLINK_NOFOLLOW) and fail (flag == 0).
20
21The laccess() macros was added to systemd some time ago and it's not
22clear if or why it needs to return success for broken symlinks. Maybe
23just historical and not actually necessary or desired behaviour?
24
25Upstream-Status: Inappropriate [musl specific]
26
27Signed-off-by: Andre McCurdy <armccurdy@gmail.com>
William A. Kennington IIIac69b482021-06-02 12:28:27 -070028
Brad Bishop19323692019-04-05 15:28:33 -040029---
Andrew Geisslerd5838332022-05-27 11:33:10 -050030 src/basic/fs-util.h | 21 ++++++++++++++++++++-
Brad Bishop19323692019-04-05 15:28:33 -040031 src/shared/base-filesystem.c | 6 +++---
Andrew Geisslerd5838332022-05-27 11:33:10 -050032 2 files changed, 23 insertions(+), 4 deletions(-)
Brad Bishop19323692019-04-05 15:28:33 -040033
Andrew Geisslerd5838332022-05-27 11:33:10 -050034diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h
35index 0bbb3f6298..3dc494dbfb 100644
Andrew Geisslerd1e89492021-02-12 15:35:20 -060036--- a/src/basic/fs-util.h
37+++ b/src/basic/fs-util.h
Andrew Geisslerd5838332022-05-27 11:33:10 -050038@@ -46,8 +46,27 @@ int futimens_opath(int fd, const struct timespec ts[2]);
Brad Bishop19323692019-04-05 15:28:33 -040039 int fd_warn_permissions(const char *path, int fd);
Andrew Geissler635e0e42020-08-21 15:58:33 -050040 int stat_warn_permissions(const char *path, const struct stat *st);
Brad Bishop19323692019-04-05 15:28:33 -040041
Brad Bishop19323692019-04-05 15:28:33 -040042+/*
43+ Avoid using AT_SYMLINK_NOFOLLOW flag. It doesn't seem like the right thing to
44+ do and it's not portable (not supported by musl). See:
45+
46+ http://lists.landley.net/pipermail/toybox-landley.net/2014-September/003610.html
47+ http://www.openwall.com/lists/musl/2015/02/05/2
48+
49+ Note that laccess() is never passing AT_EACCESS so a lot of the discussion in
50+ the links above doesn't apply. Note also that (currently) all systemd callers
51+ of laccess() pass mode as F_OK, so only check for existence of a file, not
52+ access permissions. Therefore, in this case, the only distiction between
53+ faccessat() with (flag == 0) and (flag == AT_SYMLINK_NOFOLLOW) is the
54+ behaviour for broken symlinks; laccess() on a broken symlink will succeed
55+ with (flag == AT_SYMLINK_NOFOLLOW) and fail (flag == 0).
56+
57+ The laccess() macros was added to systemd some time ago and it's not clear if
58+ or why it needs to return success for broken symlinks. Maybe just historical
59+ and not actually necessary or desired behaviour?
60+*/
Andrew Geissler7e0e3c02022-02-25 20:34:39 +000061 #define laccess(path, mode) \
62- RET_NERRNO(faccessat(AT_FDCWD, (path), (mode), AT_SYMLINK_NOFOLLOW))
63+ RET_NERRNO(faccessat(AT_FDCWD, (path), (mode), 0))
Brad Bishop19323692019-04-05 15:28:33 -040064
65 int touch_file(const char *path, bool parents, usec_t stamp, uid_t uid, gid_t gid, mode_t mode);
66 int touch(const char *path);
Andrew Geisslerd5838332022-05-27 11:33:10 -050067diff --git a/src/shared/base-filesystem.c b/src/shared/base-filesystem.c
68index 5f5328c8cf..d396bc99fe 100644
Andrew Geisslerd1e89492021-02-12 15:35:20 -060069--- a/src/shared/base-filesystem.c
70+++ b/src/shared/base-filesystem.c
Andrew Geisslerd5838332022-05-27 11:33:10 -050071@@ -117,7 +117,7 @@ int base_filesystem_create(const char *root, uid_t uid, gid_t gid) {
Brad Bishop19323692019-04-05 15:28:33 -040072 return log_error_errno(errno, "Failed to open root file system: %m");
73
Patrick Williams213cb262021-08-07 19:21:33 -050074 for (size_t i = 0; i < ELEMENTSOF(table); i++) {
Brad Bishop19323692019-04-05 15:28:33 -040075- if (faccessat(fd, table[i].dir, F_OK, AT_SYMLINK_NOFOLLOW) >= 0)
76+ if (faccessat(fd, table[i].dir, F_OK, 0) >= 0)
77 continue;
78
79 if (table[i].target) {
Andrew Geisslerd5838332022-05-27 11:33:10 -050080@@ -125,7 +125,7 @@ int base_filesystem_create(const char *root, uid_t uid, gid_t gid) {
Brad Bishop19323692019-04-05 15:28:33 -040081
82 /* check if one of the targets exists */
83 NULSTR_FOREACH(s, table[i].target) {
84- if (faccessat(fd, s, F_OK, AT_SYMLINK_NOFOLLOW) < 0)
85+ if (faccessat(fd, s, F_OK, 0) < 0)
86 continue;
87
88 /* check if a specific file exists at the target path */
Andrew Geisslerd5838332022-05-27 11:33:10 -050089@@ -136,7 +136,7 @@ int base_filesystem_create(const char *root, uid_t uid, gid_t gid) {
Brad Bishop19323692019-04-05 15:28:33 -040090 if (!p)
91 return log_oom();
92
93- if (faccessat(fd, p, F_OK, AT_SYMLINK_NOFOLLOW) < 0)
94+ if (faccessat(fd, p, F_OK, 0) < 0)
95 continue;
96 }
97