]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: fstat_helper: always use handle in call to get_file_attribute
authorKen Brown <kbrown@cornell.edu>
Thu, 30 Jan 2020 15:08:21 +0000 (10:08 -0500)
committerKen Brown <kbrown@cornell.edu>
Fri, 31 Jan 2020 12:45:11 +0000 (07:45 -0500)
When fhandler_base::fstat_helper is called, the handle h returned by
get_stat_handle() should be pc.handle() and should be safe to use for
getting the file information.  Previously, the call to
get_file_attribute() for FIFOs set the first argument to NULL instead
of h, thereby forcing the file to be opened for fetching the security
descriptor in get_file_sd().

winsup/cygwin/fhandler_disk_file.cc

index f362e31e376ece6285b2ea5b2af7e56b8c12a0e6..bc5967e18fe09f2ffe31f867087a709bb091882a 100644 (file)
@@ -394,12 +394,13 @@ fhandler_base::fstat_fs (struct stat *buf)
   return res;
 }
 
+/* Called by fstat_by_handle and fstat_by_name. */
 int __reg2
 fhandler_base::fstat_helper (struct stat *buf)
 {
   IO_STATUS_BLOCK st;
   FILE_COMPRESSION_INFORMATION fci;
-  HANDLE h = get_stat_handle ();
+  HANDLE h = get_stat_handle ();      /* Should always be pc.handle(). */
   PFILE_ALL_INFORMATION pfai = pc.fai ();
   ULONG attributes = pc.file_attributes ();
 
@@ -475,8 +476,8 @@ fhandler_base::fstat_helper (struct stat *buf)
   else if (pc.issocket ())
     buf->st_mode = S_IFSOCK;
 
-  if (!get_file_attribute (is_fs_special () && !pc.issocket () ? NULL : h, pc,
-                          &buf->st_mode, &buf->st_uid, &buf->st_gid))
+  if (!get_file_attribute (h, pc, &buf->st_mode, &buf->st_uid,
+                          &buf->st_gid))
     {
       /* If read-only attribute is set, modify ntsec return value */
       if (::has_attribute (attributes, FILE_ATTRIBUTE_READONLY)
This page took 0.032822 seconds and 5 git commands to generate.