diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2017-09-20 18:46:55 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2017-09-20 18:46:55 -0400 |
commit | ecc7b3249050c17e089d6a812472d2923d572bcc (patch) | |
tree | de926cbba87c789549c85a8b1a389d09a155f995 /util.c | |
parent | bbbf8f6e296e3d80775d0ee0c41c445bbb721402 (diff) | |
download | bfs-ecc7b3249050c17e089d6a812472d2923d572bcc.tar.xz |
util: Wrap faccessat() to fix some portability issues
Diffstat (limited to 'util.c')
-rw-r--r-- | util.c | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -226,6 +226,20 @@ const char *xbasename(const char *path) { return i; } +int xfaccessat(int fd, const char *path, int amode) { + int ret = faccessat(fd, path, amode, 0); + +#ifdef AT_EACCESS + // Some platforms, like Hurd, only support AT_EACCESS. Other platforms, + // like Android, don't support AT_EACCESS at all. + if (ret != 0 && (errno == EINVAL || errno == ENOTSUP)) { + ret = faccessat(fd, path, amode, AT_EACCESS); + } +#endif + + return ret; +} + bool is_nonexistence_error(int error) { return error == ENOENT || errno == ENOTDIR; } |