]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: fchmodat: add limited support for AT_SYMLINK_NOFOLLOW
authorKen Brown <kbrown@cornell.edu>
Tue, 26 Jan 2021 20:54:05 +0000 (15:54 -0500)
committerKen Brown <kbrown@cornell.edu>
Fri, 29 Jan 2021 16:50:53 +0000 (11:50 -0500)
Allow fchmodat with the AT_SYMLINK_NOFOLLOW flag to succeed on
non-symlinks.  Previously it always failed, as it does on Linux.  But
POSIX permits it to succeed on non-symlinks even if it fails on
symlinks.

The reason for following POSIX rather than Linux is to make gnulib
report that fchmodat works on Cygwin.  This improves the efficiency of
packages like GNU tar that use gnulib's fchmodat module.  Previously
such packages would use a gnulib replacement for fchmodat on Cygwin.

winsup/cygwin/syscalls.cc

index 8bb6ebae72d5ff335b5cf94059a4b93da7436ca2..82ddad46d403e98f8149021f3d397b8136a41cb6 100644 (file)
@@ -4787,17 +4787,27 @@ fchmodat (int dirfd, const char *pathname, mode_t mode, int flags)
   tmp_pathbuf tp;
   __try
     {
-      if (flags)
+      if (flags & ~AT_SYMLINK_NOFOLLOW)
        {
-         /* BSD has lchmod, but Linux does not.  POSIX says
-            AT_SYMLINK_NOFOLLOW is allowed to fail on symlinks; but Linux
-            blindly fails even for non-symlinks.  */
-         set_errno ((flags & ~AT_SYMLINK_NOFOLLOW) ? EINVAL : EOPNOTSUPP);
+         set_errno (EINVAL);
          __leave;
        }
       char *path = tp.c_get ();
       if (gen_full_path_at (path, dirfd, pathname))
        __leave;
+      if (flags & AT_SYMLINK_NOFOLLOW)
+       {
+          /* BSD has lchmod, but Linux does not.  POSIX says
+            AT_SYMLINK_NOFOLLOW is allowed to fail on symlinks.
+            Linux blindly fails even for non-symlinks, but we allow
+            it to succeed. */
+         path_conv pc (path, PC_SYM_NOFOLLOW, stat_suffixes);
+         if (pc.issymlink ())
+           {
+             set_errno (EOPNOTSUPP);
+             __leave;
+           }
+       }
       return chmod (path, mode);
     }
   __except (EFAULT) {}
This page took 0.034212 seconds and 5 git commands to generate.