]> git.eshelyaron.com Git - emacs.git/commitdiff
Dissociate controlling tty better on Darwin
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 10 Nov 2018 17:00:43 +0000 (09:00 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sat, 10 Nov 2018 17:04:42 +0000 (09:04 -0800)
* src/process.c (dissociate_controlling_tty): New function.
(create_process): Use it to dissociate controlling tty if setsid
fails, which happens on Darwin after a vfork (Bug#33154).
Do this on all platforms, not just on Darwin, as a similar
problem is plausible elsewhere.
* src/callproc.c (call_process): Use the new function here, too,
for consistency and to avoid duplicate code.

src/callproc.c
src/process.c
src/process.h

index a2cfd2e94daa5da0e088c1d6bc46dc0a008084a1..9f47c79b81ae20401e13ba5c52ed4cfd58f295d3 100644 (file)
@@ -643,19 +643,7 @@ call_process (ptrdiff_t nargs, Lisp_Object *args, int filefd,
 #endif
 
       unblock_child_signal (&oldset);
-
-#ifdef DARWIN_OS
-      /* Darwin doesn't let us run setsid after a vfork, so use
-         TIOCNOTTY when necessary. */
-      int j = emacs_open (DEV_TTY, O_RDWR, 0);
-      if (j >= 0)
-        {
-          ioctl (j, TIOCNOTTY, 0);
-          emacs_close (j);
-        }
-#else
-      setsid ();
-#endif
+      dissociate_controlling_tty ();
 
       /* Emacs ignores SIGPIPE, but the child should not.  */
       signal (SIGPIPE, SIG_DFL);
index 6cda4f27acc144abbc4baf8a19768923b0ec9f5e..7e78e172d3649a13b9439dd2cfdedae9f55ae987 100644 (file)
@@ -1949,6 +1949,26 @@ close_process_fd (int *fd_addr)
     }
 }
 
+void
+dissociate_controlling_tty (void)
+{
+  if (setsid () < 0)
+    {
+#ifdef TIOCNOTTY
+      /* Needed on Darwin after vfork, since setsid fails in a vforked
+        child that has not execed.
+        I wonder: would just ioctl (fd, TIOCNOTTY, 0) work here, for
+        some fd that the caller already has?  */
+      int ttyfd = emacs_open (DEV_TTY, O_RDWR, 0);
+      if (0 <= ttyfd)
+       {
+         ioctl (ttyfd, TIOCNOTTY, 0);
+         emacs_close (ttyfd);
+       }
+#endif
+    }
+}
+
 /* Indexes of file descriptors in open_fds.  */
 enum
   {
@@ -2097,9 +2117,8 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
     {
       /* Make the pty be the controlling terminal of the process.  */
 #ifdef HAVE_PTYS
-      /* First, disconnect its current controlling terminal.
-        Do this even if !PTY_FLAG; see Bug#30762.  */
-      setsid ();
+      dissociate_controlling_tty ();
+
       /* Make the pty's terminal the controlling terminal.  */
       if (pty_flag && forkin >= 0)
        {
@@ -2128,21 +2147,6 @@ create_process (Lisp_Object process, char **new_argv, Lisp_Object current_dir)
        }
 #endif
 #endif
-#ifdef TIOCNOTTY
-      /* In 4.3BSD, the TIOCSPGRP bug has been fixed, and now you
-        can do TIOCSPGRP only to the process's controlling tty.  */
-      if (pty_flag)
-       {
-         /* I wonder: would just ioctl (0, TIOCNOTTY, 0) work here?
-            I can't test it since I don't have 4.3.  */
-         int j = emacs_open (DEV_TTY, O_RDWR, 0);
-         if (j >= 0)
-           {
-             ioctl (j, TIOCNOTTY, 0);
-             emacs_close (j);
-           }
-       }
-#endif /* TIOCNOTTY */
 
 #if !defined (DONT_REOPEN_PTY)
 /*** There is a suggestion that this ought to be a
index 3c6dd7b91f4c28078a722e2da2377284da17cfd7..67b783400d882ee082e2266161ac17763a2114d3 100644 (file)
@@ -300,6 +300,7 @@ extern Lisp_Object network_interface_info (Lisp_Object);
 extern Lisp_Object remove_slash_colon (Lisp_Object);
 
 extern void update_processes_for_thread_death (Lisp_Object);
+extern void dissociate_controlling_tty (void);
 
 INLINE_HEADER_END