diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-08-12 18:12:13 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-08-12 18:12:13 -0400 |
commit | acd7f7ed437793e7c67ecd869cfac32a87c1ec52 (patch) | |
tree | abfb1561c90aca00362fb0f99b8a8da4a70fe08a /util.h | |
parent | 01a754bc5572103f9a49242d756dc04b0e86bb6e (diff) | |
download | bfs-acd7f7ed437793e7c67ecd869cfac32a87c1ec52.tar.xz |
Unify broken symlink handling
Rather than open-code the fallback logic for broken symlinks everywhere
it's needed, introduce a new xfstatat() utility function that performs
the fallback automatically.
Using xfstatat() consistently fixes a few bugs, including cases where
broken symlinks are given as arguments to predicates like -samefile.
Diffstat (limited to 'util.h')
-rw-r--r-- | util.h | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -143,6 +143,21 @@ void format_mode(mode_t mode, char str[11]); const char *xbasename(const char *path); /** + * stat() a file, falling back on the link itself for broken symbolic links. + * + * @param fd + * The base directory descriptor. + * @param path + * The path to the file, relative to fd. + * @param buf + * The stat buffer to fill. + * @param flags + * AT_* flags for this call. Will be updated if a fallback happens. + * @return 0 on success, -1 on failure. + */ +int xfstatat(int fd, const char *path, struct stat *buf, int *flags); + +/** * Convert a stat() st_mode to a bftw() typeflag. */ enum bftw_typeflag mode_to_typeflag(mode_t mode); |