euidaccess(3) - Linux man page
Name
euidaccess, eaccess - check effective user's permissions for a fileSynopsis
#define _GNU_SOURCE /* See feature_test_macros(7) */#include <unistd.h> int euidaccess(const char *pathname, int mode);int eaccess(const char *pathname, int mode);
Description
mode is a mask consisting of one or more of R_OK, W_OK, X_OK and F_OK, with the same meanings as for access(2).
eaccess() is a synonym for euidaccess(), provided for compatibility with some other systems.
Return Value
On success (all requested permissions granted), zero is returned. On error (at least one bit in mode asked for a permission that is denied, or some other error occurred), -1 is returned, and errno is set appropriately.Errors
As for access(2).Versions
The eaccess() function was added to glibc in version 2.4.Conforming to
These functions are nonstandard. Some other systems have an eaccess() function.Notes
Warning: Using this function to check a process's permissions on a file before performing some operation based on that information leads to race conditions: the file permissions may change between the two steps. Generally, it is safer just to attempt the desired operation and handle any permission error that occurs.This function always dereferences symbolic links. If you need to check the permissions on a symbolic link, use faccessat(2) with the flags AT_EACCESS and AT_SYMLINK_NOFOLLOW.