From: Lennart Poettering Date: Wed, 18 Apr 2018 14:19:46 +0000 (+0200) Subject: path-lookup: properly chase paths when reducing with root dir (#8750) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=a30b675e8c958eb54b1af8162a400a27ffc647f0;p=elogind.git path-lookup: properly chase paths when reducing with root dir (#8750) Let's make this correct. --- diff --git a/src/basic/fs-util.c b/src/basic/fs-util.c index 5bf1413c1..44185b16b 100644 --- a/src/basic/fs-util.c +++ b/src/basic/fs-util.c @@ -966,6 +966,46 @@ int chase_symlinks_and_opendir( return 0; } +int chase_symlinks_and_stat( + const char *path, + const char *root, + unsigned chase_flags, + char **ret_path, + struct stat *ret_stat) { + + _cleanup_close_ int path_fd = -1; + _cleanup_free_ char *p = NULL; + + assert(path); + assert(ret_stat); + + if (chase_flags & CHASE_NONEXISTENT) + return -EINVAL; + + if (empty_or_root(root) && !ret_path && (chase_flags & (CHASE_NO_AUTOFS|CHASE_SAFE)) == 0) { + /* Shortcut this call if none of the special features of this call are requested */ + if (stat(path, ret_stat) < 0) + return -errno; + + return 1; + } + + path_fd = chase_symlinks(path, root, chase_flags|CHASE_OPEN, ret_path ? &p : NULL); + if (path_fd < 0) + return path_fd; + + if (fstat(path_fd, ret_stat) < 0) + return -errno; + + if (ret_path) + *ret_path = TAKE_PTR(p); + + if (chase_flags & CHASE_OPEN) + return TAKE_FD(path_fd); + + return 1; +} + int access_fd(int fd, int mode) { char p[STRLEN("/proc/self/fd/") + DECIMAL_STR_MAX(fd) + 1]; int r; diff --git a/src/basic/fs-util.h b/src/basic/fs-util.h index 83de65083..4c5286390 100644 --- a/src/basic/fs-util.h +++ b/src/basic/fs-util.h @@ -97,6 +97,7 @@ int chase_symlinks(const char *path_with_prefix, const char *root, unsigned flag int chase_symlinks_and_open(const char *path, const char *root, unsigned chase_flags, int open_flags, char **ret_path); int chase_symlinks_and_opendir(const char *path, const char *root, unsigned chase_flags, char **ret_path, DIR **ret_dir); +int chase_symlinks_and_stat(const char *path, const char *root, unsigned chase_flags, char **ret_path, struct stat *ret_stat); /* Useful for usage with _cleanup_(), removes a directory and frees the pointer */ static inline void rmdir_and_free(char *p) {