1 /* Concurrent shell support for the Midnight Commander
2 Copyright (C) 1994, 1995, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
3 2005, 2006, 2007 Free Software Foundation, Inc.
5 This program is free software; you can redistribute it and/or
6 modify it under the terms of Version 2 of the GNU General Public
7 License, as published by the Free Software Foundation.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * \brief Source: concurrent shell support
25 #ifdef HAVE_SUBSHELL_SUPPORT
38 #include <sys/types.h>
40 #ifdef HAVE_SYS_IOCTL_H
41 #include <sys/ioctl.h>
47 #include <stropts.h> /* For I_PUSH */
48 #endif /* HAVE_STROPTS_H */
50 #include "lib/global.h"
52 #include "lib/tty/tty.h" /* LINES */
53 #include "lib/tty/key.h" /* XCTRL */
54 #include "lib/vfs/mc-vfs/vfs.h"
55 #include "lib/strutil.h"
56 #include "lib/mcconfig.h"
58 #include "lib/widget.h"
60 #include "filemanager/midnight.h" /* current_panel */
62 #include "main.h" /* home_dir */
63 #include "consaver/cons.saver.h" /* handle_console() */
66 /*** global variables ****************************************************************************/
68 /* If using a subshell for evaluating commands this is true */
70 #ifdef SUBSHELL_OPTIONAL
76 /* File descriptors of the pseudoterminal used by the subshell */
79 /* State of the subshell:
80 * INACTIVE: the default state; awaiting a command
81 * ACTIVE: remain in the shell until the user hits `subshell_switch_key'
82 * RUNNING_COMMAND: return to MC when the current command finishes */
83 enum subshell_state_enum subshell_state
;
85 /* Holds the latest prompt captured from the subshell */
86 char *subshell_prompt
= NULL
;
88 /* Subshell: if set, then the prompt was not saved on CONSOLE_SAVE */
89 /* We need to paint it after CONSOLE_RESTORE, see: load_prompt */
90 gboolean update_subshell_prompt
= FALSE
;
92 /*** file scope macro definitions ****************************************************************/
95 #define WEXITSTATUS(stat_val) ((unsigned)(stat_val) >> 8)
99 #define WIFEXITED(stat_val) (((stat_val) & 255) == 0)
103 #define STDIN_FILENO 0
106 #ifndef STDOUT_FILENO
107 #define STDOUT_FILENO 1
110 #ifndef STDERR_FILENO
111 #define STDERR_FILENO 2
114 /* Initial length of the buffer for the subshell's prompt */
115 #define INITIAL_PROMPT_SIZE 10
117 /* Used by the child process to indicate failure to start the subshell */
118 #define FORK_FAILURE 69 /* Arbitrary */
120 /* Length of the buffer for all I/O with the subshell */
121 #define PTY_BUFFER_SIZE BUF_SMALL /* Arbitrary; but keep it >= 80 */
123 /*** file scope type declarations ****************************************************************/
132 /* Subshell type (gleaned from the SHELL environment variable, if available) */
141 /*** file scope variables ************************************************************************/
143 /* tcsh closes all non-standard file descriptors, so we have to use a pipe */
144 static char tcsh_fifo
[128];
146 static int subshell_pty_slave
= -1;
148 /* The key for switching back to MC from the subshell */
150 static const char subshell_switch_key
= XCTRL ('o') & 255;
153 /* For reading/writing on the subshell's pty */
154 static char pty_buffer
[PTY_BUFFER_SIZE
] = "\0";
156 /* To pass CWD info from the subshell to MC */
157 static int subshell_pipe
[2];
159 /* The subshell's process ID */
160 static pid_t subshell_pid
= 1;
162 /* One extra char for final '\n' */
163 static char subshell_cwd
[MC_MAXPATHLEN
+ 1];
165 /* Flag to indicate whether the subshell is ready for next command */
166 static int subshell_ready
;
168 /* The following two flags can be changed by the SIGCHLD handler. This is */
169 /* OK, because the `int' type is updated atomically on all known machines */
170 static volatile int subshell_alive
, subshell_stopped
;
172 /* We store the terminal's initial mode here so that we can configure
173 the pty similarly, and also so we can restore the real terminal to
174 sanity if we have to exit abruptly */
175 static struct termios shell_mode
;
177 /* This is a transparent mode for the terminal where MC is running on */
178 /* It is used when the shell is active, so that the control signals */
179 /* are delivered to the shell pty */
180 static struct termios raw_mode
;
182 /* This counter indicates how many characters of prompt we have read */
183 /* FIXME: try to figure out why this had to become global */
184 static int prompt_pos
;
187 /*** file scope functions ************************************************************************/
188 /* --------------------------------------------------------------------------------------------- */
190 static void init_raw_mode (void);
191 static gboolean
feed_subshell (int how
, int fail_on_error
);
192 static void synchronize (void);
193 static int pty_open_master (char *pty_name
);
194 static int pty_open_slave (const char *pty_name
);
195 static int resize_tty (int fd
);
197 /* --------------------------------------------------------------------------------------------- */
199 * Write all data, even if the write() call is interrupted.
203 write_all (int fd
, const void *buf
, size_t count
)
209 ret
= write (fd
, (const unsigned char *) buf
+ written
, count
);
218 return written
> 0 ? written
: ret
;
227 /* --------------------------------------------------------------------------------------------- */
229 * Prepare child process to running the shell and run it.
231 * Modifies the global variables (in the child process only):
238 init_subshell_child (const char *pty_name
)
240 char *init_file
= NULL
;
244 setsid (); /* Get a fresh terminal session */
246 /* Make sure that it has become our controlling terminal */
248 /* Redundant on Linux and probably most systems, but just in case: */
251 ioctl (subshell_pty_slave
, TIOCSCTTY
, 0);
254 /* Configure its terminal modes and window size */
256 /* Set up the pty with the same termios flags as our own tty */
257 if (tcsetattr (subshell_pty_slave
, TCSANOW
, &shell_mode
))
259 fprintf (stderr
, "Cannot set pty terminal modes: %s\r\n", unix_error_string (errno
));
260 _exit (FORK_FAILURE
);
263 /* Set the pty's size (80x25 by default on Linux) according to the */
264 /* size of the real terminal as calculated by ncurses, if possible */
265 resize_tty (subshell_pty_slave
);
267 /* Set up the subshell's environment and init file name */
269 /* It simplifies things to change to our home directory here, */
270 /* and the user's startup file may do a `cd' command anyway */
273 ret
= chdir (mc_config_get_home_dir ()); /* FIXME? What about when we re-run the subshell? */
276 /* Set MC_SID to prevent running one mc from another */
280 char sid_str
[BUF_SMALL
];
281 g_snprintf (sid_str
, sizeof (sid_str
), "MC_SID=%ld", (long) mc_sid
);
282 putenv (g_strdup (sid_str
));
285 switch (subshell_type
)
288 init_file
= g_build_filename (mc_config_get_path (), "bashrc", NULL
);
290 if (access (init_file
, R_OK
) == -1)
293 init_file
= g_strdup (".bashrc");
296 /* Make MC's special commands not show up in bash's history */
297 putenv ((char *) "HISTCONTROL=ignorespace");
299 /* Allow alternative readline settings for MC */
301 char *input_file
= g_build_filename (mc_config_get_path (), "inputrc", NULL
);
302 if (access (input_file
, R_OK
) == 0)
304 char *putenv_str
= g_strconcat ("INPUTRC=", input_file
, NULL
);
313 /* TODO: Find a way to pass initfile to TCSH and ZSH */
320 fprintf (stderr
, __FILE__
": unimplemented subshell type %d\r\n", subshell_type
);
321 _exit (FORK_FAILURE
);
324 /* Attach all our standard file descriptors to the pty */
326 /* This is done just before the fork, because stderr must still */
327 /* be connected to the real tty during the above error messages; */
328 /* otherwise the user will never see them. */
330 dup2 (subshell_pty_slave
, STDIN_FILENO
);
331 dup2 (subshell_pty_slave
, STDOUT_FILENO
);
332 dup2 (subshell_pty_slave
, STDERR_FILENO
);
334 close (subshell_pipe
[READ
]);
335 close (subshell_pty_slave
); /* These may be FD_CLOEXEC, but just in case... */
336 /* Close master side of pty. This is important; apart from */
337 /* freeing up the descriptor for use in the subshell, it also */
338 /* means that when MC exits, the subshell will get a SIGHUP and */
339 /* exit too, because there will be no more descriptors pointing */
340 /* at the master side of the pty and so it will disappear. */
341 close (subshell_pty
);
343 /* Execute the subshell at last */
345 switch (subshell_type
)
348 execl (shell
, "bash", "-rcfile", init_file
, (char *) NULL
);
352 execl (shell
, "tcsh", (char *) NULL
);
356 /* Use -g to exclude cmds beginning with space from history
357 * and -Z to use the line editor on non-interactive term */
358 execl (shell
, "zsh", "-Z", "-g", (char *) NULL
);
363 execl (shell
, "fish", (char *) NULL
);
367 /* If we get this far, everything failed miserably */
369 _exit (FORK_FAILURE
);
373 /* --------------------------------------------------------------------------------------------- */
375 * Check MC_SID to prevent running one mc from another.
377 * 0 if no parent mc in our session was found,
378 * 1 if parent mc was found and the user wants to continue,
379 * 2 if parent mc was found and the user wants to quit mc.
385 pid_t my_sid
, old_sid
;
389 sid_str
= getenv ("MC_SID");
393 old_sid
= (pid_t
) strtol (sid_str
, NULL
, 0);
401 /* The parent mc is in a different session, it's OK */
402 if (old_sid
!= my_sid
)
405 r
= query_dialog (_("Warning"),
406 _("GNU Midnight Commander is already\n"
407 "running on this terminal.\n"
408 "Subshell support will be disabled."), D_ERROR
, 2, _("&OK"), _("&Quit"));
417 /* --------------------------------------------------------------------------------------------- */
422 static int initialized
= 0;
424 /* MC calls tty_reset_shell_mode() in pre_exec() to set the real tty to its */
425 /* original settings. However, here we need to make this tty very raw, */
426 /* so that all keyboard signals, XON/XOFF, etc. will get through to the */
427 /* pty. So, instead of changing the code for execute(), pre_exec(), */
428 /* etc, we just set up the modes we need here, before each command. */
430 if (initialized
== 0) /* First time: initialise `raw_mode' */
432 tcgetattr (STDOUT_FILENO
, &raw_mode
);
433 raw_mode
.c_lflag
&= ~ICANON
; /* Disable line-editing chars, etc. */
434 raw_mode
.c_lflag
&= ~ISIG
; /* Disable intr, quit & suspend chars */
435 raw_mode
.c_lflag
&= ~ECHO
; /* Disable input echoing */
436 raw_mode
.c_iflag
&= ~IXON
; /* Pass ^S/^Q to subshell undisturbed */
437 raw_mode
.c_iflag
&= ~ICRNL
; /* Don't translate CRs into LFs */
438 raw_mode
.c_oflag
&= ~OPOST
; /* Don't postprocess output */
439 raw_mode
.c_cc
[VTIME
] = 0; /* IE: wait forever, and return as */
440 raw_mode
.c_cc
[VMIN
] = 1; /* soon as a character is available */
445 /* --------------------------------------------------------------------------------------------- */
446 /** Feed the subshell our keyboard input until it says it's finished */
449 feed_subshell (int how
, int fail_on_error
)
451 fd_set read_set
; /* For `select' */
453 int bytes
; /* For the return value from `read' */
454 int i
; /* Loop counter */
456 struct timeval wtime
; /* Maximum time we wait for the subshell */
457 struct timeval
*wptr
;
459 /* we wait up to 10 seconds if fail_on_error, forever otherwise */
462 wptr
= fail_on_error
? &wtime
: NULL
;
469 /* Prepare the file-descriptor set and call `select' */
472 FD_SET (subshell_pty
, &read_set
);
473 FD_SET (subshell_pipe
[READ
], &read_set
);
474 maxfdp
= max (subshell_pty
, subshell_pipe
[READ
]);
477 FD_SET (STDIN_FILENO
, &read_set
);
478 maxfdp
= max (maxfdp
, STDIN_FILENO
);
481 if (select (maxfdp
+ 1, &read_set
, NULL
, NULL
, wptr
) == -1)
484 /* Despite using SA_RESTART, we still have to check for this */
486 continue; /* try all over again */
487 tcsetattr (STDOUT_FILENO
, TCSANOW
, &shell_mode
);
488 fprintf (stderr
, "select (FD_SETSIZE, &read_set...): %s\r\n",
489 unix_error_string (errno
));
493 if (FD_ISSET (subshell_pty
, &read_set
))
494 /* Read from the subshell, write to stdout */
496 /* This loop improves performance by reducing context switches
497 by a factor of 20 or so... unfortunately, it also hangs MC
498 randomly, because of an apparent Linux bug. Investigate. */
499 /* for (i=0; i<5; ++i) * FIXME -- experimental */
501 bytes
= read (subshell_pty
, pty_buffer
, sizeof (pty_buffer
));
503 /* The subshell has died */
504 if (bytes
== -1 && errno
== EIO
&& !subshell_alive
)
509 tcsetattr (STDOUT_FILENO
, TCSANOW
, &shell_mode
);
510 fprintf (stderr
, "read (subshell_pty...): %s\r\n", unix_error_string (errno
));
515 write_all (STDOUT_FILENO
, pty_buffer
, bytes
);
518 else if (FD_ISSET (subshell_pipe
[READ
], &read_set
))
519 /* Read the subshell's CWD and capture its prompt */
521 bytes
= read (subshell_pipe
[READ
], subshell_cwd
, MC_MAXPATHLEN
+ 1);
524 tcsetattr (STDOUT_FILENO
, TCSANOW
, &shell_mode
);
525 fprintf (stderr
, "read (subshell_pipe[READ]...): %s\r\n",
526 unix_error_string (errno
));
530 subshell_cwd
[bytes
- 1] = 0; /* Squash the final '\n' */
534 subshell_ready
= TRUE
;
535 if (subshell_state
== RUNNING_COMMAND
)
537 subshell_state
= INACTIVE
;
542 else if (FD_ISSET (STDIN_FILENO
, &read_set
))
543 /* Read from stdin, write to the subshell */
545 bytes
= read (STDIN_FILENO
, pty_buffer
, sizeof (pty_buffer
));
548 tcsetattr (STDOUT_FILENO
, TCSANOW
, &shell_mode
);
550 "read (STDIN_FILENO, pty_buffer...): %s\r\n", unix_error_string (errno
));
554 for (i
= 0; i
< bytes
; ++i
)
555 if (pty_buffer
[i
] == subshell_switch_key
)
557 write_all (subshell_pty
, pty_buffer
, i
);
559 subshell_state
= INACTIVE
;
563 write_all (subshell_pty
, pty_buffer
, bytes
);
565 if (pty_buffer
[bytes
- 1] == '\n' || pty_buffer
[bytes
- 1] == '\r')
566 subshell_ready
= FALSE
;
573 /* --------------------------------------------------------------------------------------------- */
575 * Wait until the subshell dies or stops. If it stops, make it resume.
576 * Possibly modifies the globals `subshell_alive' and `subshell_stopped'
582 sigset_t sigchld_mask
, old_mask
;
584 sigemptyset (&sigchld_mask
);
585 sigaddset (&sigchld_mask
, SIGCHLD
);
586 sigprocmask (SIG_BLOCK
, &sigchld_mask
, &old_mask
);
589 * SIGCHLD should not be blocked, but we unblock it just in case.
590 * This is known to be useful for cygwin 1.3.12 and older.
592 sigdelset (&old_mask
, SIGCHLD
);
594 /* Wait until the subshell has stopped */
595 while (subshell_alive
&& !subshell_stopped
)
596 sigsuspend (&old_mask
);
598 if (subshell_state
!= ACTIVE
)
600 /* Discard all remaining data from stdin to the subshell */
601 tcflush (subshell_pty_slave
, TCIFLUSH
);
604 subshell_stopped
= FALSE
;
605 kill (subshell_pid
, SIGCONT
);
607 sigprocmask (SIG_SETMASK
, &old_mask
, NULL
);
608 /* We can't do any better without modifying the shell(s) */
611 /* pty opening functions */
615 /* System V version of pty_open_master */
618 pty_open_master (char *pty_name
)
623 #ifdef HAVE_POSIX_OPENPT
624 pty_master
= posix_openpt (O_RDWR
);
626 /* getpt () is a GNU extension (glibc 2.1.x) */
627 pty_master
= getpt ();
629 strcpy (pty_name
, "/dev/ptc");
630 pty_master
= open (pty_name
, O_RDWR
);
632 strcpy (pty_name
, "/dev/ptmx");
633 pty_master
= open (pty_name
, O_RDWR
);
636 if (pty_master
== -1)
639 if (grantpt (pty_master
) == -1 /* Grant access to slave */
640 || unlockpt (pty_master
) == -1 /* Clear slave's lock flag */
641 || !(slave_name
= ptsname (pty_master
))) /* Get slave's name */
646 strcpy (pty_name
, slave_name
);
650 /* --------------------------------------------------------------------------------------------- */
651 /** System V version of pty_open_slave */
654 pty_open_slave (const char *pty_name
)
656 int pty_slave
= open (pty_name
, O_RDWR
);
660 fprintf (stderr
, "open (%s, O_RDWR): %s\r\n", pty_name
, unix_error_string (errno
));
663 #if !defined(__osf__) && !defined(__linux__)
664 #if defined (I_FIND) && defined (I_PUSH)
665 if (!ioctl (pty_slave
, I_FIND
, "ptem"))
666 if (ioctl (pty_slave
, I_PUSH
, "ptem") == -1)
668 fprintf (stderr
, "ioctl (%d, I_PUSH, \"ptem\") failed: %s\r\n",
669 pty_slave
, unix_error_string (errno
));
674 if (!ioctl (pty_slave
, I_FIND
, "ldterm"))
675 if (ioctl (pty_slave
, I_PUSH
, "ldterm") == -1)
678 "ioctl (%d, I_PUSH, \"ldterm\") failed: %s\r\n",
679 pty_slave
, unix_error_string (errno
));
683 #if !defined(sgi) && !defined(__sgi)
684 if (!ioctl (pty_slave
, I_FIND
, "ttcompat"))
685 if (ioctl (pty_slave
, I_PUSH
, "ttcompat") == -1)
688 "ioctl (%d, I_PUSH, \"ttcompat\") failed: %s\r\n",
689 pty_slave
, unix_error_string (errno
));
693 #endif /* sgi || __sgi */
694 #endif /* I_FIND && I_PUSH */
695 #endif /* __osf__ || __linux__ */
697 fcntl (pty_slave
, F_SETFD
, FD_CLOEXEC
);
701 #else /* !HAVE_GRANTPT */
703 /* --------------------------------------------------------------------------------------------- */
704 /** BSD version of pty_open_master */
706 pty_open_master (char *pty_name
)
709 const char *ptr1
, *ptr2
;
711 strcpy (pty_name
, "/dev/ptyXX");
712 for (ptr1
= "pqrstuvwxyzPQRST"; *ptr1
; ++ptr1
)
715 for (ptr2
= "0123456789abcdef"; *ptr2
!= '\0'; ++ptr2
)
719 /* Try to open master */
720 pty_master
= open (pty_name
, O_RDWR
);
721 if (pty_master
== -1)
723 if (errno
== ENOENT
) /* Different from EIO */
724 return -1; /* Out of pty devices */
725 continue; /* Try next pty device */
727 pty_name
[5] = 't'; /* Change "pty" to "tty" */
728 if (access (pty_name
, 6) != 0)
737 return -1; /* Ran out of pty devices */
740 /* --------------------------------------------------------------------------------------------- */
741 /** BSD version of pty_open_slave */
744 pty_open_slave (const char *pty_name
)
747 struct group
*group_info
= getgrnam ("tty");
749 if (group_info
!= NULL
)
751 /* The following two calls will only succeed if we are root */
752 /* [Commented out while permissions problem is investigated] */
753 /* chown (pty_name, getuid (), group_info->gr_gid); FIXME */
754 /* chmod (pty_name, S_IRUSR | S_IWUSR | S_IWGRP); FIXME */
756 pty_slave
= open (pty_name
, O_RDWR
);
758 fprintf (stderr
, "open (pty_name, O_RDWR): %s\r\n", pty_name
);
759 fcntl (pty_slave
, F_SETFD
, FD_CLOEXEC
);
762 #endif /* !HAVE_GRANTPT */
763 /* --------------------------------------------------------------------------------------------- */
764 /*** public functions ****************************************************************************/
765 /* --------------------------------------------------------------------------------------------- */
767 /* --------------------------------------------------------------------------------------------- */
769 * Fork the subshell, and set up many, many things.
771 * Possibly modifies the global variables:
772 * subshell_type, subshell_alive, subshell_stopped, subshell_pid
773 * use_subshell - Is set to FALSE if we can't run the subshell
774 * quit - Can be set to SUBSHELL_EXIT by the SIGCHLD handler
780 /* This must be remembered across calls to init_subshell() */
781 static char pty_name
[BUF_SMALL
];
782 char precmd
[BUF_SMALL
];
784 switch (check_sid ())
787 use_subshell
= FALSE
;
790 use_subshell
= FALSE
;
791 midnight_shutdown
= 1;
795 /* Take the current (hopefully pristine) tty mode and make */
796 /* a raw mode based on it now, before we do anything else with it */
799 if (subshell_pty
== 0)
800 { /* First time through */
801 /* Find out what type of shell we have */
803 if (strstr (shell
, "/zsh") || getenv ("ZSH_VERSION"))
805 else if (strstr (shell
, "/tcsh"))
806 subshell_type
= TCSH
;
807 else if (strstr (shell
, "/csh"))
808 subshell_type
= TCSH
;
809 else if (strstr (shell
, "/bash") || getenv ("BASH"))
810 subshell_type
= BASH
;
811 else if (strstr (shell
, "/fish"))
812 subshell_type
= FISH
;
815 use_subshell
= FALSE
;
819 /* Open a pty for talking to the subshell */
821 /* FIXME: We may need to open a fresh pty each time on SVR4 */
823 subshell_pty
= pty_open_master (pty_name
);
824 if (subshell_pty
== -1)
826 fprintf (stderr
, "Cannot open master side of pty: %s\r\n", unix_error_string (errno
));
827 use_subshell
= FALSE
;
830 subshell_pty_slave
= pty_open_slave (pty_name
);
831 if (subshell_pty_slave
== -1)
833 fprintf (stderr
, "Cannot open slave side of pty %s: %s\r\n",
834 pty_name
, unix_error_string (errno
));
835 use_subshell
= FALSE
;
839 /* Create a pipe for receiving the subshell's CWD */
841 if (subshell_type
== TCSH
)
843 g_snprintf (tcsh_fifo
, sizeof (tcsh_fifo
), "%s/mc.pipe.%d",
844 mc_tmpdir (), (int) getpid ());
845 if (mkfifo (tcsh_fifo
, 0600) == -1)
847 fprintf (stderr
, "mkfifo(%s) failed: %s\r\n", tcsh_fifo
, unix_error_string (errno
));
848 use_subshell
= FALSE
;
852 /* Opening the FIFO as O_RDONLY or O_WRONLY causes deadlock */
854 if ((subshell_pipe
[READ
] = open (tcsh_fifo
, O_RDWR
)) == -1
855 || (subshell_pipe
[WRITE
] = open (tcsh_fifo
, O_RDWR
)) == -1)
857 fprintf (stderr
, _("Cannot open named pipe %s\n"), tcsh_fifo
);
858 perror (__FILE__
": open");
859 use_subshell
= FALSE
;
863 else /* subshell_type is BASH or ZSH */ if (pipe (subshell_pipe
))
865 perror (__FILE__
": couldn't create pipe");
866 use_subshell
= FALSE
;
871 /* Fork the subshell */
873 subshell_alive
= TRUE
;
874 subshell_stopped
= FALSE
;
875 subshell_pid
= fork ();
877 if (subshell_pid
== -1)
879 fprintf (stderr
, "Cannot spawn the subshell process: %s\r\n", unix_error_string (errno
));
880 /* We exit here because, if the process table is full, the */
881 /* other method of running user commands won't work either */
885 if (subshell_pid
== 0)
887 /* We are in the child process */
888 init_subshell_child (pty_name
);
891 /* Set up `precmd' or equivalent for reading the subshell's CWD */
893 switch (subshell_type
)
896 g_snprintf (precmd
, sizeof (precmd
),
897 " PROMPT_COMMAND='pwd>&%d;kill -STOP $$'\n", subshell_pipe
[WRITE
]);
901 g_snprintf (precmd
, sizeof (precmd
),
902 " precmd(){ pwd>&%d;kill -STOP $$ }\n", subshell_pipe
[WRITE
]);
906 g_snprintf (precmd
, sizeof (precmd
),
907 "set echo_style=both;"
908 "alias precmd 'echo $cwd:q >>%s;kill -STOP $$'\n", tcsh_fifo
);
911 g_snprintf (precmd
, sizeof (precmd
),
912 "function fish_prompt ; pwd>&%d;kill -STOP %%self; end\n",
913 subshell_pipe
[WRITE
]);
917 write_all (subshell_pty
, precmd
, strlen (precmd
));
919 /* Wait until the subshell has started up and processed the command */
921 subshell_state
= RUNNING_COMMAND
;
922 tty_enable_interrupt_key ();
923 if (!feed_subshell (QUIETLY
, TRUE
))
925 use_subshell
= FALSE
;
927 tty_disable_interrupt_key ();
929 use_subshell
= FALSE
; /* Subshell died instantly, so don't use it */
932 /* --------------------------------------------------------------------------------------------- */
935 invoke_subshell (const char *command
, int how
, char **new_dir
)
939 /* Make the MC terminal transparent */
940 tcsetattr (STDOUT_FILENO
, TCSANOW
, &raw_mode
);
942 /* Make the subshell change to MC's working directory */
944 do_subshell_chdir (current_panel
->cwd
, TRUE
, TRUE
);
946 if (command
== NULL
) /* The user has done "C-o" from MC */
948 if (subshell_state
== INACTIVE
)
950 subshell_state
= ACTIVE
;
951 /* FIXME: possibly take out this hack; the user can
952 re-play it by hitting C-hyphen a few times! */
954 write_all (subshell_pty
, " \b", 2); /* Hack to make prompt reappear */
957 else /* MC has passed us a user command */
960 write_all (subshell_pty
, " ", 1);
961 /* FIXME: if command is long (>8KB ?) we go comma */
962 write_all (subshell_pty
, command
, strlen (command
));
963 write_all (subshell_pty
, "\n", 1);
964 subshell_state
= RUNNING_COMMAND
;
965 subshell_ready
= FALSE
;
968 feed_subshell (how
, FALSE
);
970 pcwd
= vfs_translate_path_n (current_panel
->cwd
);
971 if (new_dir
&& subshell_alive
&& strcmp (subshell_cwd
, pcwd
))
972 *new_dir
= subshell_cwd
; /* Make MC change to the subshell's CWD */
975 /* Restart the subshell if it has died by SIGHUP, SIGQUIT, etc. */
976 while (!subshell_alive
&& quit
== 0 && use_subshell
)
985 /* --------------------------------------------------------------------------------------------- */
988 read_subshell_prompt (void)
990 static int prompt_size
= INITIAL_PROMPT_SIZE
;
991 int bytes
= 0, i
, rc
= 0;
992 struct timeval timeleft
= { 0, 0 };
996 FD_SET (subshell_pty
, &tmp
);
998 if (subshell_prompt
== NULL
)
999 { /* First time through */
1000 subshell_prompt
= g_malloc (prompt_size
);
1001 *subshell_prompt
= '\0';
1005 while (subshell_alive
&& (rc
= select (subshell_pty
+ 1, &tmp
, NULL
, NULL
, &timeleft
)))
1007 /* Check for `select' errors */
1014 fprintf (stderr
, "select (FD_SETSIZE, &tmp...): %s\r\n", unix_error_string (errno
));
1015 exit (EXIT_FAILURE
);
1019 bytes
= read (subshell_pty
, pty_buffer
, sizeof (pty_buffer
));
1021 /* Extract the prompt from the shell output */
1023 for (i
= 0; i
< bytes
; ++i
)
1024 if (pty_buffer
[i
] == '\n' || pty_buffer
[i
] == '\r')
1033 subshell_prompt
[prompt_pos
++] = pty_buffer
[i
];
1034 if (prompt_pos
== prompt_size
)
1035 subshell_prompt
= g_realloc (subshell_prompt
, prompt_size
*= 2);
1038 subshell_prompt
[prompt_pos
] = '\0';
1040 if (rc
== 0 && bytes
== 0)
1045 /* --------------------------------------------------------------------------------------------- */
1048 do_update_prompt (void)
1050 if (update_subshell_prompt
)
1052 printf ("\r\n%s", subshell_prompt
);
1054 update_subshell_prompt
= FALSE
;
1058 /* --------------------------------------------------------------------------------------------- */
1060 /** Resize given terminal using TIOCSWINSZ, return ioctl() result */
1064 #if defined TIOCSWINSZ
1065 struct winsize tty_size
;
1067 tty_size
.ws_row
= LINES
;
1068 tty_size
.ws_col
= COLS
;
1069 tty_size
.ws_xpixel
= tty_size
.ws_ypixel
= 0;
1071 return ioctl (fd
, TIOCSWINSZ
, &tty_size
);
1077 /* --------------------------------------------------------------------------------------------- */
1078 /** Resize subshell_pty */
1081 resize_subshell (void)
1083 if (use_subshell
== 0)
1086 resize_tty (subshell_pty
);
1089 /* --------------------------------------------------------------------------------------------- */
1092 exit_subshell (void)
1094 int subshell_quit
= TRUE
;
1096 if (subshell_state
!= INACTIVE
&& subshell_alive
)
1098 !query_dialog (_("Warning"),
1099 _("The shell is still active. Quit anyway?"),
1100 D_NORMAL
, 2, _("&Yes"), _("&No"));
1104 if (subshell_type
== TCSH
)
1106 if (unlink (tcsh_fifo
) == -1)
1107 fprintf (stderr
, "Cannot remove named pipe %s: %s\r\n",
1108 tcsh_fifo
, unix_error_string (errno
));
1111 g_free (subshell_prompt
);
1112 subshell_prompt
= NULL
;
1113 pty_buffer
[0] = '\0';
1116 return subshell_quit
;
1120 /* --------------------------------------------------------------------------------------------- */
1122 * Carefully quote directory name to allow entering any directory safely,
1123 * no matter what weird characters it may contain in its name.
1124 * NOTE: Treat directory name an untrusted data, don't allow it to cause
1125 * executing any commands in the shell. Escape all control characters.
1126 * Use following technique:
1128 * printf(1) with format string containing a single conversion specifier,
1129 * "b", and an argument which contains a copy of the string passed to
1130 * subshell_name_quote() with all characters, except digits and letters,
1131 * replaced by the backslash-escape sequence \0nnn, where "nnn" is the
1132 * numeric value of the character converted to octal number.
1134 * cd "`printf "%b" 'ABC\0nnnDEF\0nnnXYZ'`"
1139 subshell_name_quote (const char *s
)
1143 const char *quote_cmd_start
, *quote_cmd_end
;
1146 if (subshell_type
== FISH
)
1148 quote_cmd_start
= "(printf \"%b\" '";
1149 quote_cmd_end
= "')";
1153 quote_cmd_start
= "\"`printf \"%b\" '";
1154 quote_cmd_end
= "'`\"";
1157 /* Factor 5 because we need \, 0 and 3 other digits per character. */
1158 d
= ret
= g_try_malloc (1 + (5 * strlen (s
)) + (strlen (quote_cmd_start
))
1159 + (strlen (quote_cmd_end
)));
1163 /* Prevent interpreting leading `-' as a switch for `cd' */
1170 /* Copy the beginning of the command to the buffer */
1171 strcpy (d
, quote_cmd_start
);
1172 d
+= strlen (quote_cmd_start
);
1175 * Print every character except digits and letters as a backslash-escape
1176 * sequence of the form \0nnn, where "nnn" is the numeric value of the
1177 * character converted to octal number.
1180 for (; su
[0] != '\0';)
1182 n
= str_cget_next_char_safe (su
);
1183 if (str_isalnum (su
))
1185 memcpy (d
, su
, n
- su
);
1190 for (c
= 0; c
< n
- su
; c
++)
1192 sprintf (d
, "\\0%03o", (unsigned char) su
[c
]);
1199 strcpy (d
, quote_cmd_end
);
1205 /* --------------------------------------------------------------------------------------------- */
1207 /** If it actually changed the directory it returns true */
1209 do_subshell_chdir (const char *directory
, gboolean update_prompt
, gboolean reset_prompt
)
1215 pcwd
= vfs_translate_path_n (current_panel
->cwd
);
1217 if (!(subshell_state
== INACTIVE
&& strcmp (subshell_cwd
, pcwd
) != 0))
1219 /* We have to repaint the subshell prompt if we read it from
1220 * the main program. Please note that in the code after this
1221 * if, the cd command that is sent will make the subshell
1222 * repaint the prompt, so we don't have to paint it. */
1224 do_update_prompt ();
1229 /* The initial space keeps this out of the command history (in bash
1230 because we set "HISTCONTROL=ignorespace") */
1231 write_all (subshell_pty
, " cd ", 4);
1234 translate
= vfs_translate_path_n (directory
);
1237 temp
= subshell_name_quote (translate
);
1240 write_all (subshell_pty
, temp
, strlen (temp
));
1245 /* Should not happen unless the directory name is so long
1246 that we don't have memory to quote it. */
1247 write_all (subshell_pty
, ".", 1);
1253 write_all (subshell_pty
, ".", 1);
1258 write_all (subshell_pty
, "/", 1);
1260 write_all (subshell_pty
, "\n", 1);
1262 subshell_state
= RUNNING_COMMAND
;
1263 feed_subshell (QUIETLY
, FALSE
);
1267 int bPathNotEq
= strcmp (subshell_cwd
, pcwd
);
1269 if (bPathNotEq
&& subshell_type
== TCSH
)
1271 char rp_subshell_cwd
[PATH_MAX
];
1272 char rp_current_panel_cwd
[PATH_MAX
];
1274 char *p_subshell_cwd
= mc_realpath (subshell_cwd
, rp_subshell_cwd
);
1275 char *p_current_panel_cwd
= mc_realpath (pcwd
, rp_current_panel_cwd
);
1277 if (p_subshell_cwd
== NULL
)
1278 p_subshell_cwd
= subshell_cwd
;
1279 if (p_current_panel_cwd
== NULL
)
1280 p_current_panel_cwd
= pcwd
;
1281 bPathNotEq
= strcmp (p_subshell_cwd
, p_current_panel_cwd
);
1284 if (bPathNotEq
&& strcmp (pcwd
, "."))
1286 char *cwd
= strip_password (g_strdup (pcwd
), 1);
1287 fprintf (stderr
, _("Warning: Cannot change to %s.\n"), cwd
);
1294 update_subshell_prompt
= FALSE
;
1297 /* Make sure that MC never stores the CWD in a silly format */
1298 /* like /usr////lib/../bin, or the strcmp() above will fail */
1301 /* --------------------------------------------------------------------------------------------- */
1304 subshell_get_console_attributes (void)
1306 /* Get our current terminal modes */
1308 if (tcgetattr (STDOUT_FILENO
, &shell_mode
))
1310 fprintf (stderr
, "Cannot get terminal settings: %s\r\n", unix_error_string (errno
));
1311 use_subshell
= FALSE
;
1316 /* --------------------------------------------------------------------------------------------- */
1318 * Figure out whether the subshell has stopped, exited or been killed
1319 * Possibly modifies: `subshell_alive', `subshell_stopped' and `quit' */
1322 sigchld_handler (int sig
)
1329 pid
= waitpid (subshell_pid
, &status
, WUNTRACED
| WNOHANG
);
1331 if (pid
== subshell_pid
)
1333 /* Figure out what has happened to the subshell */
1335 if (WIFSTOPPED (status
))
1337 if (WSTOPSIG (status
) == SIGSTOP
)
1339 /* The subshell has received a SIGSTOP signal */
1340 subshell_stopped
= TRUE
;
1344 /* The user has suspended the subshell. Revive it */
1345 kill (subshell_pid
, SIGCONT
);
1350 /* The subshell has either exited normally or been killed */
1351 subshell_alive
= FALSE
;
1352 delete_select_channel (subshell_pty
);
1353 if (WIFEXITED (status
) && WEXITSTATUS (status
) != FORK_FAILURE
)
1354 quit
|= SUBSHELL_EXIT
; /* Exited normally */
1358 pid
= waitpid (cons_saver_pid
, &status
, WUNTRACED
| WNOHANG
);
1360 if (pid
== cons_saver_pid
)
1363 if (WIFSTOPPED (status
))
1364 /* Someone has stopped cons.saver - restart it */
1365 kill (pid
, SIGCONT
);
1368 /* cons.saver has died - disable confole saving */
1369 handle_console (CONSOLE_DONE
);
1374 #endif /* __linux__ */
1376 /* If we got here, some other child exited; ignore it */
1379 /* --------------------------------------------------------------------------------------------- */
1381 #endif /* HAVE_SUBSHELL_SUPPORT */