diff options
author | Ken Brown <kbrown@cornell.edu> | 2021-01-25 21:05:37 -0500 |
---|---|---|
committer | Ken Brown <kbrown@cornell.edu> | 2021-01-25 21:07:53 -0500 |
commit | b32f6dd40a2764aed1baec35da0a7512f3fbceb3 (patch) | |
tree | 3a2b1ae626759c0d1b62ed0bd3635a5e91a2fd05 | |
parent | f4cac1217e76b30afb55e680a909fa8a62b6088e (diff) | |
download | newlib-b32f6dd40a2764aed1baec35da0a7512f3fbceb3.zip newlib-b32f6dd40a2764aed1baec35da0a7512f3fbceb3.tar.gz newlib-b32f6dd40a2764aed1baec35da0a7512f3fbceb3.tar.bz2 |
Cygwin: chown: make sure ctime gets updated when necessary
Following POSIX, ensure that ctime is updated if chown succeeds,
unless the new owner is specified as (uid_t)-1 and the new group is
specified as (gid_t)-1. Previously, ctime was unchanged whenever the
owner and group were both unchanged.
Aside from POSIX compliance, this fix makes gnulib report that chown
works on Cygwin. This improves the efficiency of packages like GNU
tar that use gnulib's chown module. Previously such packages would
use a gnulib replacement for chown on Cygwin.
-rw-r--r-- | winsup/cygwin/fhandler_disk_file.cc | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/winsup/cygwin/fhandler_disk_file.cc b/winsup/cygwin/fhandler_disk_file.cc index 07f9c51..5e58688 100644 --- a/winsup/cygwin/fhandler_disk_file.cc +++ b/winsup/cygwin/fhandler_disk_file.cc @@ -887,15 +887,18 @@ fhandler_disk_file::fchown (uid_t uid, gid_t gid) aclp, MAX_ACL_ENTRIES)) < 0) goto out; - if (uid == ILLEGAL_UID) - uid = old_uid; - if (gid == ILLEGAL_GID) - gid = old_gid; - if (uid == old_uid && gid == old_gid) + /* According to POSIX, chown can be a no-op if uid is (uid_t)-1 and + gid is (gid_t)-1. Otherwise, even if uid and gid are unchanged, + we must ensure that ctime is updated. */ + if (uid == ILLEGAL_UID && gid == ILLEGAL_GID) { ret = 0; goto out; } + if (uid == ILLEGAL_UID) + uid = old_uid; + else if (gid == ILLEGAL_GID) + gid = old_gid; /* Windows ACLs can contain permissions for one group, while being owned by another user/group. The permission bits returned above are pretty much |