X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fchown.c;h=2a7bba1a6c09e1bfc4b21c4355a1e87960d62f7a;hb=da326536990b4518c6e067ef773321d2e3d20889;hp=2d97902e631a5ca42c0a11681b65c1ee5a5ad3a6;hpb=d1eb42bdbbaf00d38b2a479e9aa40207b79bd090;p=gnulib.git diff --git a/lib/chown.c b/lib/chown.c index 2d97902e6..2a7bba1a6 100644 --- a/lib/chown.c +++ b/lib/chown.c @@ -18,21 +18,24 @@ /* written by Jim Meyering */ -#include +#ifdef HAVE_CONFIG_H +# include +#endif /* Disable the definition of chown to rpl_chown (from config.h) in this file. Otherwise, we'd get conflicting prototypes for rpl_chown on most systems. */ #undef chown +#include #include #include -#if HAVE_UNISTD_H -# include -#endif +#include #include #include +#include "stat-macros.h" + /* Provide a more-closely POSIX-conforming version of chown on systems with one or both of the following problems: - chown doesn't treat an ID of -1 as meaning @@ -66,20 +69,34 @@ rpl_chown (const char *file, uid_t uid, gid_t gid) on the symlink itself. To work around that, we open the file (but this can fail due to lack of read or write permission) and use fchown on the resulting descriptor. */ - int fd = open (file, O_RDONLY | O_NONBLOCK | O_NOCTTY); - if (fd < 0 - && (fd = open (file, O_WRONLY | O_NONBLOCK | O_NOCTTY)) < 0) - return -1; - if (fchown (fd, uid, gid)) + int open_flags = O_NONBLOCK | O_NOCTTY; + int fd = open (file, O_RDONLY | open_flags); + if (0 <= fd + || (errno == EACCES + && 0 <= (fd = open (file, O_WRONLY | open_flags)))) { + int result = fchown (fd, uid, gid); int saved_errno = errno; + + /* POSIX says fchown can fail with errno == EINVAL on sockets, + so fall back on chown in that case. */ + struct stat sb; + bool fchown_socket_failure = + (result != 0 && saved_errno == EINVAL + && fstat (fd, &sb) == 0 && S_ISFIFO (sb.st_mode)); + close (fd); - errno = saved_errno; - return -1; + + if (! fchown_socket_failure) + { + errno = saved_errno; + return result; + } } - return close (fd); + else if (errno != EACCES) + return -1; } -#else - return chown (file, uid, gid); #endif + + return chown (file, uid, gid); }