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:
authorChristopher Faylor <me@cgf.cx>2012-05-02 20:39:39 +0400
committerChristopher Faylor <me@cgf.cx>2012-05-02 20:39:39 +0400
commitb79c0094f8a9bee17aacd59fe7e0334228a8fae8 (patch)
treedc7c0159ce1942db8baef6665fd9d1da2dc3d965 /winsup/cygwin/DevNotes
parent03cd7bbbb161b2b3c163eadc7d42aa6f23e2a516 (diff)
* ChangeNotes: New file. Add entry cgf-000001.
* sigproc.cc (proc_terminate): Don't set parent pid of child to 1 if we've execed since the execed process is still considered the parent. * child_info.h: Bump copyright.
Diffstat (limited to 'winsup/cygwin/DevNotes')
-rw-r--r--winsup/cygwin/DevNotes26
1 files changed, 26 insertions, 0 deletions
diff --git a/winsup/cygwin/DevNotes b/winsup/cygwin/DevNotes
new file mode 100644
index 000000000..da3edb048
--- /dev/null
+++ b/winsup/cygwin/DevNotes
@@ -0,0 +1,26 @@
+2012-05-02 cgf-000001
+
+This fix was due to a bug report on the Cygwin mailing list:
+http://cygwin.com/ml/cygwin/2012-05/msg00009.html
+
+strace showed that ssh-agent was checking the parent pid and getting a 1
+when it shouldn't have. Other stuff looked ok so I chose to consider
+this a smoking gun.
+
+Going back to the version that the OP said did not have the problem, I
+worked forward until I found where the problem first occurred -
+somewhere around 2012-03-19. And, indeed, the getppid call returned the
+correct value in the working version. That means that this stopped
+working when I redid the way the process pipe was inherited around
+this time period.
+
+It isn't clear why (and I suspect I may have to debug this further at
+some poit) this hasn't always been a problem but I made the obvious fix.
+We shouldn't have been setting ppid = 1 when we're about to pass off to
+an execed process.
+
+As I was writing this, I realized that it was necessary to add some
+additional checks. Just checking for "have_execed" isn't enough. If
+we've execed a non-cygwin process then it won't know how to deal with
+any inherited children. So, always set ppid = 1 if we've execed a
+non-cygwin process.