Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-08-11 20:43:26 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-08-11 20:43:26 +0400
commit6e2c582323d667fec9b1859757515f932c6f8db2 (patch)
tree4ac291c9d61de0592dd49636f0dc9272bd9e9a89 /winsup/cygwin/fhandler_proc.cc
parent3b7cd74bfdf5632be8d4af1fe28c774f96f1a4fd (diff)
* fhandler_proc.cc (fhandler_proc::get_proc_fhandler): Don't allow to
access process info by using the Windows PID. * fhandler_process.cc (fhandler_process::fstat): Ditto. (fhandler_process::fill_filebuf): Ditto.
Diffstat (limited to 'winsup/cygwin/fhandler_proc.cc')
-rw-r--r--winsup/cygwin/fhandler_proc.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler_proc.cc b/winsup/cygwin/fhandler_proc.cc
index 9310696bc..63178a003 100644
--- a/winsup/cygwin/fhandler_proc.cc
+++ b/winsup/cygwin/fhandler_proc.cc
@@ -128,7 +128,13 @@ fhandler_proc::get_proc_fhandler (const char *path)
if (entry)
return entry->fhandler;
- if (pinfo (atoi (path)))
+ int pid = atoi (path);
+ pinfo p (pid);
+ /* If p->pid != pid, then pid is actually the Windows PID for an execed
+ Cygwin process, and the pinfo entry is the additional entry created
+ at exec time. We don't want to enable the user to access a process
+ entry by using the Win32 PID, though. */
+ if (p && p->pid == pid)
return FH_PROCESS;
bool has_subdir = false;