From 099734376dd5d303b5ec14de6531e3abea919843 Mon Sep 17 00:00:00 2001 From: June McEnroe Date: Mon, 9 Mar 2020 04:33:03 -0400 Subject: Replace eaccess with faccessat --- bin/1sh/exec.c | 2 +- bin/1sh/test.c | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) (limited to 'bin/1sh') diff --git a/bin/1sh/exec.c b/bin/1sh/exec.c index 3eea5afa..7897e024 100644 --- a/bin/1sh/exec.c +++ b/bin/1sh/exec.c @@ -725,7 +725,7 @@ typecmd_impl(int argc, char **argv, int cmd, const char *path) " a tracked alias for" : "", name); } else { - if (eaccess(argv[i], X_OK) == 0) { + if (faccessat(AT_FDCWD, argv[i], X_OK, AT_EACCESS) == 0) { if (cmd == TYPECMD_SMALLV) out1fmt("%s\n", argv[i]); else diff --git a/bin/1sh/test.c b/bin/1sh/test.c index 8e618cc7..fcebb292 100644 --- a/bin/1sh/test.c +++ b/bin/1sh/test.c @@ -23,6 +23,7 @@ __FBSDID("$FreeBSD: releng/12.1/bin/test/test.c 298232 2016-04-19 00:38:07Z arau #include #include #include +#include #include #include #include @@ -375,18 +376,18 @@ filstat(char *nm, enum token mode) switch (mode) { case FILRD: - return (eaccess(nm, R_OK) == 0); + return (faccessat(AT_FDCWD, nm, R_OK, AT_EACCESS) == 0); case FILWR: - return (eaccess(nm, W_OK) == 0); + return (faccessat(AT_FDCWD, nm, W_OK, AT_EACCESS) == 0); case FILEX: /* XXX work around eaccess(2) false positives for superuser */ - if (eaccess(nm, X_OK) != 0) + if (faccessat(AT_FDCWD, nm, X_OK, AT_EACCESS) != 0) return 0; if (S_ISDIR(s.st_mode) || geteuid() != 0) return 1; return (s.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH)) != 0; case FILEXIST: - return (eaccess(nm, F_OK) == 0); + return (faccessat(AT_FDCWD, nm, F_OK, AT_EACCESS) == 0); case FILREG: return S_ISREG(s.st_mode); case FILDIR: -- cgit 1.4.1 ef='/src/log/?id=e0673650ccfba6d508a1a8ec79f0139d6f6127aa&follow=1'>root/bin/pngo.c (unfollow)
Commit message (Expand)Author
2020-06-26Add password non-manager to planJune McEnroe
2020-06-26Tweak TF2 sensitivities once moreJune McEnroe
2020-06-19Add note about litterbox bot useJune McEnroe
2020-06-19Publish "IRC suite"June McEnroe
2020-06-17Add errors to link.shJune McEnroe