]> sourceware.org Git - newlib-cygwin.git/commitdiff
Cygwin: proc fd: fix handling of pipes, sockets, etc
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 5 Feb 2019 14:32:08 +0000 (15:32 +0100)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 5 Feb 2019 14:32:08 +0000 (15:32 +0100)
The symlink target of /proc/PID/fd files pointing to pipes and
sockets are just artificial filenames referencing the object using
some internal number.  The pipe open code expects a path specifying
process pid and the internal number so it access the right process
and pipe.

- Set the posix path of the pipe to the simple pipe name only,
  as it shows up in /proc/PID/fd.  A /proc/self prefix is just
  as wrong as a /dev/fd prefix.

- Revert thinko in fhandler_pipe::open expecting the name as
  /proc/self/fd/...  In fact this should never happen.

- Fix up the path before re-opening the pipe instead.

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
winsup/cygwin/fhandler_pipe.cc
winsup/cygwin/fhandler_process_fd.cc
winsup/cygwin/syscalls.cc

index 3a70565de3963ad1bd2c5dbcb6672d5361ae8b67..31e73ceb0cc43a3c7972caa4f37ce29a328b8ac0 100644 (file)
@@ -73,11 +73,8 @@ fhandler_pipe::open (int flags, mode_t mode)
   bool inh;
   bool got_one = false;
 
-  if (sscanf (get_name (), "/proc/self/fd/pipe:[%llu]",
-             (long long *) &uniq_id) == 1)
-    pid = myself->pid;
-  else if (sscanf (get_name (), "/proc/%d/fd/pipe:[%llu]",
-                  &pid, (long long *) &uniq_id) < 2)
+  if (sscanf (get_name (), "/proc/%d/fd/pipe:[%llu]",
+             &pid, (long long *) &uniq_id) < 2)
     {
       set_errno (ENOENT);
       return 0;
index 4f326b69a6f089a7b7963278f7dcc45a968231f3..3bf8b74d89799f193ee6896a5d370f435bf65cc6 100644 (file)
@@ -13,6 +13,7 @@ details. */
 #include "pinfo.h"
 #include "dtable.h"
 #include "cygheap.h"
+#include "tls_pbuf.h"
 
 fhandler_base *
 fhandler_process_fd::fetch_fh (HANDLE &out_hdl, uint32_t flags)
@@ -86,6 +87,16 @@ fhandler_process_fd::fetch_fh (HANDLE &out_hdl, uint32_t flags)
       CloseHandle (hdl);
       return NULL;
     }
+  /* relative path?  This happens for special types like pipes and sockets. */
+  if (*pc.get_posix () != '/')
+    {
+      tmp_pathbuf tp;
+      char *fullpath = tp.c_get ();
+
+      stpcpy (stpncpy (fullpath, get_name (), path - get_name ()),
+             pc.get_posix ());
+      pc.set_posix (fullpath);
+    }
   fhandler_base *fh = build_fh_pc (pc);
   if (!fh)
     {
index d1a1312b1106d01d3c98619f0f9e355ee68e43e5..62b9638447abec335c0fc833bdb1bfddc3c4a881 100644 (file)
@@ -5061,8 +5061,8 @@ pipe_worker (int filedes[2], unsigned int psize, int mode)
     {
       cygheap_fdnew fdin;
       cygheap_fdnew fdout (fdin, false);
-      char buf[sizeof ("/proc/self/fd/pipe:[9223372036854775807]")];
-      __small_sprintf (buf, "/proc/self/fd/pipe:[%D]", fhs[0]->get_plain_ino ());
+      char buf[sizeof ("pipe:[9223372036854775807]")];
+      __small_sprintf (buf, "pipe:[%D]", fhs[0]->get_plain_ino ());
       fhs[0]->pc.set_posix (buf);
       __small_sprintf (buf, "pipe:[%D]", fhs[1]->get_plain_ino ());
       fhs[1]->pc.set_posix (buf);
This page took 0.037738 seconds and 5 git commands to generate.