1 /* $Header: /p/tcsh/cvsroot/tcsh/sh.c,v 3.185 2015/05/10 13:28:54 christos Exp $ */
3 * sh.c: Main shell routines
6 * Copyright (c) 1980, 1991 The Regents of the University of California.
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 #define EXTERN /* Intern */
38 "@(#) Copyright (c) 1991 The Regents of the University of California.\n\
39 All rights reserved.\n";
42 RCSID("$tcsh: sh.c,v 3.185 2015/05/10 13:28:54 christos Exp $")
48 extern int MapsAreInited
;
49 extern int NLSMapsAreInited
;
54 * Bill Joy, UC Berkeley, California, USA
55 * October 1978, May 1980
57 * Jim Kulp, IIASA, Laxenburg, Austria
60 * Filename recognition added:
61 * Ken Greer, Ind. Consultant, Palo Alto CA
64 * Karl Kleinpaste, Computer Consoles, Inc.
65 * Added precmd, periodic/tperiod, prompt changes,
66 * directory stack hack, and login watch.
67 * Sometime March 1983 - Feb 1984.
69 * Added scheduled commands, including the "sched" command,
70 * plus the call to sched_run near the precmd et al
72 * Upgraded scheduled events for running events while
73 * sitting idle at command input.
75 * Paul Placeway, Ohio State
76 * added stuff for running with twenex/inputl 9 Oct 1984.
78 * ported to Apple Unix (TM) (OREO) 26 -- 29 Jun 1987
81 jmp_buf_t reslab IZERO_STRUCT
;
82 struct wordent paraml IZERO_STRUCT
;
84 static const char tcshstr
[] = "tcsh";
86 struct sigaction parintr
; /* Parents interrupt catch */
87 struct sigaction parterm
; /* Parents terminate catch */
94 int use_fork
= 0; /* use fork() instead of vfork()? */
97 * Magic pointer values. Used to specify other invalid conditions aside
101 Char
*INVPTR
= &INVCHAR
;
102 Char
**INVPPTR
= &INVPTR
;
105 static int mflag
= 0;
106 static int prompt
= 1;
114 static time_t chktim
; /* Time mail last checked */
119 * This preserves the input state of the shell. It is used by
120 * st_save and st_restore to manupulate shell state.
129 struct whyle
*whyles
;
146 static int srccat (Char
*, Char
*);
148 static int srcfile (const char *, int, int, Char
**);
150 int srcfile (const char *, int, int, Char
**);
151 #endif /*WINNT_NATIVE*/
152 static void srcunit (int, int, int, Char
**);
153 static void mailchk (void);
154 #ifndef _PATH_DEFPATH
155 static Char
**defaultpath (void);
157 static void record (void);
158 static void st_save (struct saved_state
*, int, int,
160 static void st_restore (void *);
162 int main (int, char **);
165 #define LOCALEDIR "/usr/share/locale"
170 add_localedir_to_nlspath(const char *path
)
172 static const char msgs_LOC
[] = "/%L/LC_MESSAGES/%N.cat";
173 static const char msgs_lang
[] = "/%l/LC_MESSAGES/%N.cat";
179 char trypath
[MAXPATHLEN
];
185 (void) xsnprintf(trypath
, sizeof(trypath
), "%s/en/LC_MESSAGES/tcsh.cat",
187 if (stat(trypath
, &st
) == -1)
190 if ((old
= getenv("NLSPATH")) != NULL
)
191 len
= strlen(old
) + 1; /* don't forget the colon. */
195 len
+= 2 * strlen(path
) +
196 sizeof(msgs_LOC
) + sizeof(msgs_lang
); /* includes the extra colon */
198 new = new_p
= xcalloc(len
, 1);
201 size_t pathlen
= strlen(path
);
204 (void) xsnprintf(new_p
, len
, "%s", old
);
205 new_p
+= strlen(new_p
);
208 /* Check if the paths we try to add are already present in NLSPATH.
209 If so, note it by setting the appropriate flag to 0. */
210 for (old_p
= old
; old_p
; old_p
= strchr(old_p
, ':'),
211 old_p
= old_p
? old_p
+ 1 : NULL
) {
212 if (strncmp(old_p
, path
, pathlen
) != 0)
214 if (strncmp(old_p
+ pathlen
, msgs_LOC
, sizeof(msgs_LOC
) - 1) == 0)
216 else if (strncmp(old_p
+ pathlen
, msgs_lang
,
217 sizeof(msgs_lang
) - 1) == 0)
222 /* Add the message catalog paths not already present to NLSPATH. */
223 if (add_LOC
|| add_lang
)
224 (void) xsnprintf(new_p
, len
, "%s%s%s%s%s%s",
226 add_LOC
? path
: "", add_LOC
? msgs_LOC
: "",
227 add_LOC
&& add_lang
? ":" : "",
228 add_lang
? path
: "", add_lang
? msgs_lang
: "");
230 tsetenv(STRNLSPATH
, str2short(new));
236 main(int argc
, char **argv
)
239 volatile int nexececho
= 0;
241 volatile int nverbose
= 0;
242 volatile int rdirs
= 0;
252 struct sigaction oparintr
;
256 #endif /* WINNT_NATIVE */
258 (void)memset(&reslab
, 0, sizeof(reslab
));
259 #if defined(NLS_CATALOGS) && defined(LC_MESSAGES)
260 (void) setlocale(LC_MESSAGES
, "");
261 #endif /* NLS_CATALOGS && LC_MESSAGES */
265 (void) setlocale(LC_CTYPE
, ""); /* for iscntrl */
266 # endif /* LC_CTYPE */
269 STR_environ
= blk2short(environ
);
270 environ
= short2blk(STR_environ
); /* So that we can free it */
273 add_localedir_to_nlspath(LOCALEDIR
);
279 mal_setstatsfile(fdopen(dmove(xopen("/tmp/tcsh.trace",
280 O_WRONLY
|O_CREAT
|O_LARGEFILE
, 0666), 25), "w"));
282 #endif /* MALLOC_TRACE */
284 #if !(defined(BSDTIMES) || defined(_SEQUENT_)) && defined(POSIX)
286 clk_tck
= (clock_t) sysconf(_SC_CLK_TCK
);
287 # else /* ! _SC_CLK_TCK */
290 # else /* !CLK_TCK */
292 # endif /* CLK_TCK */
293 # endif /* _SC_CLK_TCK */
294 #endif /* !BSDTIMES && POSIX */
296 settimes(); /* Immed. estab. timing base */
302 * Make sure we have 0, 1, 2 open
303 * Otherwise `` jobs will not work... (From knaff@poly.polytechnique.fr)
307 if ((f
= xopen(_PATH_DEVNULL
, O_RDONLY
|O_LARGEFILE
)) == -1 &&
308 (f
= xopen("/", O_RDONLY
|O_LARGEFILE
)) == -1)
314 osinit(); /* Os dependent initialization */
320 t
= strrchr(argv
[0], '/');
323 char *s
= strrchr(argv
[0], '\\');
327 #endif /* WINNT_NATIVE */
328 t
= t
? t
+ 1 : argv
[0];
330 progname
= strsave((t
&& *t
) ? t
: tcshstr
); /* never want a null */
331 tcsh
= strncmp(progname
, tcshstr
, sizeof(tcshstr
) - 1) == 0;
335 * Initialize non constant strings
338 STR_BSHELL
= SAVE(_PATH_BSHELL
);
341 STR_SHELLPATH
= SAVE(_PATH_TCSHELL
);
344 STR_SHELLPATH
= SAVE(_PATH_CSHELL
);
347 STR_WORD_CHARS
= SAVE(WORD_CHARS
);
351 PRCH
= tcsh
? '>' : '%'; /* to replace %# in $prompt for normal users */
352 PRCHROOT
= '#'; /* likewise for root */
353 word_chars
= STR_WORD_CHARS
;
354 bslash_quote
= 0; /* PWP: do tcsh-style backslash quoting? */
355 anyerror
= 1; /* for compatibility */
356 setcopy(STRanyerror
, STRNULL
, VAR_READWRITE
);
358 /* Default history size to 100 */
359 setcopy(STRhistory
, str2short("100"), VAR_READWRITE
);
363 ffile
= SAVE(tempv
[0]);
365 if (eq(ffile
, STRaout
)) /* A.out's are quittable */
372 * We are a login shell if: 1. we were invoked as -<something> with
373 * optional arguments 2. or we were invoked only with the -l flag
375 loginsh
= (**tempv
== '-') || (argc
== 2 &&
376 tempv
[1][0] == '-' && tempv
[1][1] == 'l' &&
377 tempv
[1][2] == '\0');
379 /* No better way to find if we are a login shell */
381 loginsh
= (argc
== 1 && getppid() == 1);
382 **tempv
= '-'; /* Avoid giving VMS an acidic stomach */
384 #endif /* _VMS_POSIX */
386 if (loginsh
&& **tempv
!= '-') {
390 * Mangle the argv space
395 argv0
= strspl("-", *tempv
);
400 (void) time(&chktim
);
404 NoNLSRebind
= getenv("NOREBIND") != NULL
;
408 # endif /* SETLOCALEBUG */
409 (void) setlocale(LC_ALL
, "");
411 (void) setlocale(LC_COLLATE
, "");
415 # endif /* SETLOCALEBUG */
418 # endif /* STRCOLLBUG */
421 * On solaris ISO8859-1 contains no printable characters in the upper half
422 * so we need to test only for MB_CUR_MAX == 1, otherwise for multi-byte
423 * locales we are always AsciiOnly == 0.
425 if (MB_CUR_MAX
== 1) {
428 for (k
= 0200; k
<= 0377 && !isprint(CTL_ESC(k
)); k
++)
430 AsciiOnly
= k
> 0377;
434 AsciiOnly
= getenv("LANG") == NULL
&& getenv("LC_CTYPE") == NULL
;
436 if (MapsAreInited
&& !NLSMapsAreInited
)
441 * Initialize for periodic command intervals. Also, initialize the dummy
442 * tty list for login-watch.
444 (void) time(&t_period
);
447 #endif /* !HAVENOUTMP */
451 * From: Jim Pace <jdp@research.att.com>
452 * tcsh does not work properly on the alliants through an rlogin session.
453 * The shell generally hangs. Also, reference to the controlling terminal
454 * does not work ( ie: echo foo > /dev/tty ).
456 * A security feature was added to rlogind affecting FX/80's Concentrix
457 * from revision 5.5.xx upwards (through 5.7 where this fix was implemented)
458 * This security change also affects the FX/2800 series.
459 * The security change to rlogind requires the process group of an rlogin
460 * session become disassociated with the tty in rlogind.
462 * The changes needed are:
463 * 1. set the process group
464 * 2. reenable the control terminal
466 if (loginsh
&& isatty(SHIN
)) {
467 ttyn
= ttyname(SHIN
);
469 SHIN
= xopen(ttyn
, O_RDWR
|O_LARGEFILE
);
471 (void) ioctl (SHIN
, TIOCSPGRP
, (ioctl_t
) &shpgrp
);
472 (void) setpgid(0, shpgrp
);
477 * Move the descriptors to safe places. The variable didfds is 0 while we
478 * have only FSH* to work with. When didfds is true, we have 0,1,2 and
479 * prefer to use these.
484 setv(STRcdtohome
, SAVE(""), VAR_READWRITE
);
487 * Get and set the tty now
489 if ((ttyn
= ttyname(SHIN
)) != NULL
) {
491 * Could use rindex to get rid of other possible path components, but
492 * hpux preserves the subdirectory /pty/ when storing the tty name in
493 * utmp, so we keep it too.
495 if (strncmp(ttyn
, "/dev/", 5) == 0)
496 setv(STRtty
, cp
= SAVE(ttyn
+ 5), VAR_READWRITE
);
498 setv(STRtty
, cp
= SAVE(ttyn
), VAR_READWRITE
);
501 setv(STRtty
, cp
= SAVE(""), VAR_READWRITE
);
504 * Initialize the shell variables. ARGV and PROMPT are initialized later.
505 * STATUS is also munged in several places. CHILD is munged when
510 * 7-10-87 Paul Placeway autologout should be set ONLY on login shells and
511 * on shells running as root. Out of these, autologout should NOT be set
512 * for any psudo-terminals (this catches most window systems) and not for
513 * any terminal running X windows.
515 * At Ohio State, we have had problems with a user having his X session
516 * drop out from under him (on a Sun) because the shell in his master
517 * xterm timed out and exited.
519 * Really, this should be done with a program external to the shell, that
520 * watches for no activity (and NO running programs, such as dump) on a
521 * terminal for a long peroid of time, and then SIGHUPS the shell on that
524 * bugfix by Rich Salz <rsalz@PINEAPPLE.BBN.COM>: For root rsh things
525 * allways first check to see if loginsh or really root, then do things
528 * Also by Jean-Francois Lamy <lamy%ai.toronto.edu@RELAY.CS.NET>: check the
529 * value of cp before using it! ("root can rsh too")
531 * PWP: keep the nested ifs; the order of the tests matters and a good
532 * (smart) C compiler might re-arange things wrong.
537 /* root always has a 15 minute autologout */
538 setcopy(STRautologout
, STRrootdefautologout
, VAR_READWRITE
);
541 /* users get autologout set to 0 */
542 setcopy(STRautologout
, STR0
, VAR_READWRITE
);
544 if (loginsh
|| (uid
== 0)) {
546 /* only for login shells or root and we must have a tty */
547 if (((cp2
= Strrchr(cp
, (Char
) '/')) != NULL
) &&
548 (Strncmp(cp
, STRptssl
, 3) != 0)) {
553 if (!(((Strncmp(cp2
, STRtty
, 3) == 0) && Isalpha(cp2
[3])) ||
554 Strstr(cp
, STRptssl
) != NULL
)) {
555 if (getenv("DISPLAY") == NULL
) {
556 /* NOT on X window shells */
557 setcopy(STRautologout
, STRdefautologout
, VAR_READWRITE
);
563 #endif /* AUTOLOGOUT */
565 sigset_interrupting(SIGALRM
, queue_alrmcatch
);
567 setcopy(STRstatus
, STR0
, VAR_READWRITE
);
570 * get and set machine specific environment variables
576 * Publish the selected echo style
578 #if ECHO_STYLE != BSD_ECHO
580 # if ECHO_STYLE == NONE_ECHO
581 setcopy(STRecho_style
, STRnone
, VAR_READWRITE
);
582 # endif /* ECHO_STYLE == NONE_ECHO */
583 # if ECHO_STYLE == SYSV_ECHO
584 setcopy(STRecho_style
, STRsysv
, VAR_READWRITE
);
585 # endif /* ECHO_STYLE == SYSV_ECHO */
586 # if ECHO_STYLE == BOTH_ECHO
587 setcopy(STRecho_style
, STRboth
, VAR_READWRITE
);
588 # endif /* ECHO_STYLE == BOTH_ECHO */
590 #endif /* ECHO_STYLE != BSD_ECHO */
591 setcopy(STRecho_style
, STRbsd
, VAR_READWRITE
);
594 * increment the shell level.
598 if ((tcp
= getenv("HOME")) != NULL
)
599 cp
= quote(SAVE(tcp
));
602 /* On Android, $HOME usually isn't set, so we can't load user RC files.
603 Check for the environment variable EXTERNAL_STORAGE, which contains
604 the mount point of the external storage (SD card, mostly). If
605 EXTERNAL_STORAGE isn't set fall back to "/sdcard". */
606 if ((tcp
= getenv("EXTERNAL_STORAGE")) != NULL
)
607 cp
= quote(SAVE(tcp
));
609 cp
= quote(SAVE("/sdcard"));
615 fast
= 1; /* No home -> can't read scripts */
617 setv(STRhome
, cp
, VAR_READWRITE
);
619 dinit(cp
); /* dinit thinks that HOME == cwd in a login
622 * Grab other useful things from the environment. Should we grab
626 char *cln
, *cus
, *cgr
;
634 setv(STRoid
, Itoa(oid
, 0, 0), VAR_READWRITE
);
637 setv(STReuid
, Itoa(euid
, 0, 0), VAR_READWRITE
);
638 if ((pw
= xgetpwuid(euid
)) == NULL
)
639 setcopy(STReuser
, STRunknown
, VAR_READWRITE
);
641 setcopy(STReuser
, str2short(pw
->pw_name
), VAR_READWRITE
);
643 setv(STRuid
, Itoa(uid
, 0, 0), VAR_READWRITE
);
645 setv(STRgid
, Itoa(gid
, 0, 0), VAR_READWRITE
);
647 cln
= getenv("LOGNAME");
648 cus
= getenv("USER");
650 setv(STRuser
, quote(SAVE(cus
)), VAR_READWRITE
);
651 else if (cln
!= NULL
)
652 setv(STRuser
, quote(SAVE(cln
)), VAR_READWRITE
);
653 else if ((pw
= xgetpwuid(uid
)) == NULL
)
654 setcopy(STRuser
, STRunknown
, VAR_READWRITE
);
656 setcopy(STRuser
, str2short(pw
->pw_name
), VAR_READWRITE
);
658 tsetenv(STRLOGNAME
, varval(STRuser
));
660 tsetenv(STRKUSER
, varval(STRuser
));
662 cgr
= getenv("GROUP");
664 setv(STRgroup
, quote(SAVE(cgr
)), VAR_READWRITE
);
665 else if ((gr
= xgetgrgid(gid
)) == NULL
)
666 setcopy(STRgroup
, STRunknown
, VAR_READWRITE
);
668 setcopy(STRgroup
, str2short(gr
->gr_name
), VAR_READWRITE
);
670 tsetenv(STRKGROUP
, varval(STRgroup
));
674 * HOST may be wrong, since rexd transports the entire environment on sun
675 * 3.x Just set it again
678 char cbuff
[MAXHOSTNAMELEN
];
680 if (gethostname(cbuff
, sizeof(cbuff
)) >= 0) {
681 cbuff
[sizeof(cbuff
) - 1] = '\0'; /* just in case */
682 tsetenv(STRHOST
, str2short(cbuff
));
685 tsetenv(STRHOST
, STRunknown
);
691 * Try to determine the remote host we were logged in from.
694 #endif /* REMOTEHOST */
697 if ((tcp
= getenv("SYSTYPE")) == NULL
)
699 tsetenv(STRSYSTYPE
, quote(str2short(tcp
)));
703 * set editing on by default, unless running under Emacs as an inferior
705 * We try to do this intelligently. If $TERM is available, then it
706 * should determine if we should edit or not. $TERM is preserved
707 * across rlogin sessions, so we will not get confused if we rlogin
708 * under an emacs shell. Another advantage is that if we run an
709 * xterm under an emacs shell, then the $TERM will be set to
710 * xterm, so we are going to want to edit. Unfortunately emacs
711 * does not restore all the tty modes, so xterm is not very well
712 * set up. But this is not the shell's fault.
713 * Also don't edit if $TERM == wm, for when we're running under an ATK app.
714 * Finally, emacs compiled under terminfo, sets the terminal to dumb,
715 * so disable editing for that too.
717 * Unfortunately, in some cases the initial $TERM setting is "unknown",
718 * "dumb", or "network" which is then changed in the user's startup files.
719 * We fix this by setting noediting here if $TERM is unknown/dumb and
720 * if noediting is set, we switch on editing if $TERM is changed.
722 if ((tcp
= getenv("TERM")) != NULL
) {
723 setv(STRterm
, quote(SAVE(tcp
)), VAR_READWRITE
);
724 noediting
= strcmp(tcp
, "unknown") == 0 || strcmp(tcp
, "dumb") == 0 ||
725 strcmp(tcp
, "network") == 0;
726 editing
= strcmp(tcp
, "emacs") != 0 && strcmp(tcp
, "wm") != 0 &&
731 editing
= ((tcp
= getenv("EMACS")) == NULL
|| strcmp(tcp
, "t") != 0);
735 * The 'edit' variable is either set or unset. It doesn't
736 * need a value. Making it 'emacs' might be confusing.
743 * still more mutability: make the complete routine automatically add the
744 * suffix of file names...
749 * Compatibility with tcsh >= 6.12 by default
751 setNS(STRcsubstnonl
);
754 * Random default kill ring size
756 setcopy(STRkillring
, str2short("30"), VAR_READWRITE
);
759 * Re-initialize path if set in environment
761 if ((tcp
= getenv("PATH")) == NULL
) {
763 importpath(str2short(_PATH_DEFPATH
));
764 #else /* !_PATH_DEFPATH */
765 setq(STRpath
, defaultpath(), &shvhed
, VAR_READWRITE
);
766 #endif /* _PATH_DEFPATH */
768 * Export the path setting so that subsequent processes use the same path as we do.
770 exportpath(adrof(STRpath
)->vec
);
772 /* Importpath() allocates memory for the path, and the
773 * returned pointer from SAVE() was discarded, so
774 * this was a memory leak.. (sg)
776 * importpath(SAVE(tcp));
778 importpath(str2short(tcp
));
782 /* If the SHELL environment variable ends with "tcsh", set
783 * STRshell to the same path. This is to facilitate using
784 * the executable in environments where the compiled-in
785 * default isn't appropriate (sg).
790 if ((tcp
= getenv("SHELL")) != NULL
) {
791 sh_len
= strlen(tcp
);
792 if ((sh_len
>= 5 && strcmp(tcp
+ (sh_len
- 5), "/tcsh") == 0) ||
793 (!tcsh
&& sh_len
>= 4 && strcmp(tcp
+ (sh_len
- 4), "/csh") == 0))
794 setv(STRshell
, quote(SAVE(tcp
)), VAR_READWRITE
);
799 setcopy(STRshell
, STR_SHELLPATH
, VAR_READWRITE
);
802 #ifdef _OSD_POSIX /* BS2000 needs this variable set to "SHELL" */
803 if ((tcp
= getenv("PROGRAM_ENVIRONMENT")) == NULL
)
805 tsetenv(STRPROGRAM_ENVIRONMENT
, quote(str2short(tcp
)));
806 #endif /* _OSD_POSIX */
809 if ((tcp
= getenv("LS_COLORS")) != NULL
)
810 parseLS_COLORS(str2short(tcp
));
811 if ((tcp
= getenv("LSCOLORS")) != NULL
)
812 parseLSCOLORS(str2short(tcp
));
813 #endif /* COLOR_LS_F */
815 doldol
= putn((tcsh_number_t
)getpid()); /* For $$ */
820 if ((tmp
= getenv("TMP")) != NULL
) {
821 tmp
= xasprintf("%s/%s", tmp
, "sh");
828 shtemp
= Strspl(tmp2
, doldol
); /* For << */
831 #else /* !WINNT_NATIVE */
834 const char *tmpdir
= getenv ("TMPDIR");
837 shtemp
= Strspl(SAVE(tmpdir
), SAVE("/sh" TMP_TEMPLATE
)); /* For << */
839 #else /* !HAVE_MKSTEMP */
840 shtemp
= Strspl(STRtmpsh
, doldol
); /* For << */
841 #endif /* HAVE_MKSTEMP */
842 #endif /* WINNT_NATIVE */
845 * Record the interrupt states from the parent process. If the parent is
846 * non-interruptible our hand must be forced or we (and our children) won't
847 * be either. Our children inherit termination from our parent. We catch it
848 * only if we are the login shell.
850 sigaction(SIGINT
, NULL
, &parintr
);
851 sigaction(SIGTERM
, NULL
, &parterm
);
855 /* Enable process migration on ourselves and our progeny */
856 (void) signal(SIGMIGRATE
, SIG_DFL
);
860 * dspkanji/dspmbyte autosetting
862 /* PATCH IDEA FROM Issei.Suzuki VERY THANKS */
863 #if defined(DSPMBYTE)
864 #if defined(NLS) && defined(LC_CTYPE)
865 if (((tcp
= setlocale(LC_CTYPE
, NULL
)) != NULL
|| (tcp
= getenv("LANG")) != NULL
) && !adrof(CHECK_MBYTEVAR
))
867 if ((tcp
= getenv("LANG")) != NULL
&& !adrof(CHECK_MBYTEVAR
))
870 autoset_dspmbyte(str2short(tcp
));
872 #if defined(WINNT_NATIVE)
873 else if (!adrof(CHECK_MBYTEVAR
))
874 nt_autoset_dspmbyte();
875 #endif /* WINNT_NATIVE */
877 #if defined(AUTOSET_KANJI)
878 # if defined(NLS) && defined(LC_CTYPE)
879 if (setlocale(LC_CTYPE
, NULL
) != NULL
|| getenv("LANG") != NULL
)
881 if (getenv("LANG") != NULL
)
884 #endif /* AUTOSET_KANJI */
885 fix_version(); /* publish the shell version */
887 if (argc
> 1 && strcmp(argv
[1], "--version") == 0) {
888 xprintf("%S\n", varval(STRversion
));
891 if (argc
> 1 && strcmp(argv
[1], "--help") == 0) {
892 xprintf("%S\n\n", varval(STRversion
));
893 xprintf("%s", CGETS(11, 8, HELP_STRING
));
897 * Process the arguments.
899 * Note that processing of -v/-x is actually delayed till after script
902 * We set the first character of our name to be '-' if we are a shell
903 * running interruptible commands. Many programs which examine ps'es
904 * use this to filter such shells out.
907 while (argc
> 0 && (tcp
= tempv
[0])[0] == '-' &&
908 *++tcp
!= '\0' && !batch
) {
912 case 0: /* - Interruptible, no prompt */
918 case 'b': /* -b Next arg is input file */
922 case 'c': /* -c Command input from arg */
928 it relies on a 7 bit environment (/bin/sh), so it
929 pass ascii arguments with the 8th bit set */
930 if (!strcmp(argv
[0], "sh"))
934 for (p
= tempv
[0]; *p
; ++p
)
938 arginp
= SAVE(tempv
[0]);
941 * we put the command into a variable
944 setv(STRcommand
, quote(Strsave(arginp
)), VAR_READWRITE
);
947 * * Give an error on -c arguments that end in * backslash to
948 * ensure that you don't make * nonportable csh scripts.
955 while (cp
> arginp
&& *--cp
== '\\')
957 if ((count
& 1) != 0) {
965 case 'd': /* -d Load directory stack from file */
970 case 'D': /* -D Define environment variable */
975 if (dp
= Strchr(cp
, '=')) {
980 tsetenv(cp
, STRNULL
);
982 *tcp
= '\0'; /* done with this argument */
986 case 'e': /* -e Exit on any error */
990 case 'f': /* -f Fast start */
994 case 'i': /* -i Interactive, even if !intty */
999 case 'm': /* -m read .cshrc (from su) */
1003 case 'n': /* -n Don't execute */
1007 case 'q': /* -q (Undoc'd) ... die on quit */
1011 case 's': /* -s Read from std input */
1015 case 't': /* -t Read one line from input */
1021 case 'v': /* -v Echo hist expanded input */
1022 nverbose
= 1; /* ... later */
1025 case 'x': /* -x Echo just before execution */
1026 nexececho
= 1; /* ... later */
1029 case 'V': /* -V Echo hist expanded input */
1030 setNS(STRverbose
); /* NOW! */
1033 case 'X': /* -X Echo just before execution */
1034 setNS(STRecho
); /* NOW! */
1039 * This will cause children to be created using fork instead of
1050 * for O/S's that don't do the argument parsing right in
1051 * "#!/foo -f " scripts
1055 default: /* Unknown command option */
1057 stderror(ERR_TCSHUSAGE
, tcp
-1, progname
);
1064 if (quitit
) /* With all due haste, for debugging */
1065 (void) signal(SIGQUIT
, SIG_DFL
);
1068 * Unless prevented by -, -c, -i, -s, or -t, if there are remaining
1069 * arguments the first of them is the name of a shell file from which to
1072 if (nofile
== 0 && argc
> 0) {
1073 nofile
= xopen(tempv
[0], O_RDONLY
|O_LARGEFILE
);
1075 child
= 1; /* So this ... */
1076 /* ... doesn't return */
1077 stderror(ERR_SYSTEM
, tempv
[0], strerror(errno
));
1081 ffile
= SAVE(tempv
[0]);
1083 * Replace FSHIN. Handle /dev/std{in,out,err} specially
1084 * since once they are closed we cannot open them again.
1085 * In that case we use our own saved descriptors
1087 if ((SHIN
= dmove(nofile
, FSHIN
)) < 0)
1099 stderror(ERR_SYSTEM
, tempv
[0], strerror(errno
));
1102 (void) close_on_exec(SHIN
, 1);
1104 /* argc not used any more */ tempv
++;
1108 * Call to closem() used to be part of initdesc(). Now called below where
1109 * the script name argument has become stdin. Kernel may have used a file
1110 * descriptor to hold the name of the script (setuid case) and this name
1111 * mustn't be lost by closing the fd too soon.
1116 * Consider input a tty if it really is or we are interactive. but not for
1117 * editing (christos)
1119 if (!(intty
= isatty(SHIN
))) {
1126 if (intty
|| (intact
&& isatty(SHOUT
))) {
1127 if (!batch
&& (uid
!= euid
|| gid
!= egid
)) {
1129 child
= 1; /* So this ... */
1130 /* ... doesn't return */
1131 stderror(ERR_SYSTEM
, progname
, strerror(errno
));
1135 isoutatty
= isatty(SHOUT
);
1136 isdiagatty
= isatty(SHDIAG
);
1138 * Decide whether we should play with signals or not. If we are explicitly
1139 * told (via -i, or -) or we are a login shell (arg0 starts with -) or the
1140 * input and output are both the ttys("csh", or "csh</dev/ttyx>/dev/ttyx")
1141 * Note that in only the login shell is it likely that parent may have set
1142 * signals to be ignored
1144 if (loginsh
|| intact
|| (intty
&& isatty(SHOUT
)))
1148 * Save the remaining arguments in argv.
1150 setq(STRargv
, blk2short(tempv
), &shvhed
, VAR_READWRITE
);
1153 * Set up the prompt.
1156 setcopy(STRprompt
, STRdefprompt
, VAR_READWRITE
);
1157 /* that's a meta-questionmark */
1158 setcopy(STRprompt2
, STRmquestion
, VAR_READWRITE
);
1159 setcopy(STRprompt3
, STRKCORRECT
, VAR_READWRITE
);
1163 * If we are an interactive shell, then start fiddling with the signals;
1164 * this is a tricky game.
1166 shpgrp
= mygetpgrp();
1169 struct sigaction osig
;
1172 if (!quitit
) /* Wary! */
1173 (void) signal(SIGQUIT
, SIG_IGN
);
1175 sigset_interrupting(SIGINT
, queue_pintr
);
1176 (void) signal(SIGTERM
, SIG_IGN
);
1179 * No reason I can see not to save history on all these events..
1180 * Most usual occurrence is in a window system, where we're not a login
1181 * shell, but might as well be... (sg)
1182 * But there might be races when lots of shells exit together...
1183 * [this is also incompatible].
1184 * We have to be mre careful here. If the parent wants to
1185 * ignore the signals then we leave them untouched...
1186 * We also only setup the handlers for shells that are trully
1189 sigaction(SIGHUP
, NULL
, &osig
);
1190 if (loginsh
|| osig
.sa_handler
!= SIG_IGN
)
1191 /* exit processing on HUP */
1192 sigset_interrupting(SIGHUP
, queue_phup
);
1194 sigaction(SIGXCPU
, NULL
, &osig
);
1195 if (loginsh
|| osig
.sa_handler
!= SIG_IGN
)
1196 /* exit processing on XCPU */
1197 sigset_interrupting(SIGXCPU
, queue_phup
);
1200 sigaction(SIGXFSZ
, NULL
, &osig
);
1201 if (loginsh
|| osig
.sa_handler
!= SIG_IGN
)
1202 /* exit processing on XFSZ */
1203 sigset_interrupting(SIGXFSZ
, queue_phup
);
1206 if (quitit
== 0 && arginp
== 0) {
1208 (void) signal(SIGTSTP
, SIG_IGN
);
1211 (void) signal(SIGTTIN
, SIG_IGN
);
1214 (void) signal(SIGTTOU
, SIG_IGN
);
1217 * Wait till in foreground, in case someone stupidly runs csh &
1218 * dont want to try to grab away the tty.
1220 if (isatty(FSHDIAG
))
1222 else if (isatty(FSHOUT
))
1224 else if (isatty(OLDSTD
))
1230 /* NeXT 2.0 /usr/etc/rlogind, does not set our process group! */
1231 if (f
!= -1 && shpgrp
== 0) {
1233 (void) setpgid(0, shpgrp
);
1234 (void) tcsetpgrp(f
, shpgrp
);
1237 #ifdef BSDJOBS /* if we have tty job control */
1238 if (f
!= -1 && grabpgrp(f
, shpgrp
) != -1) {
1240 * Thanks to Matt Day for the POSIX references, and to
1241 * Paul Close for the SGI clarification.
1243 if (setdisc(f
) != -1) {
1247 if (tcsetpgrp(f
, shpgrp
) == -1) {
1249 * On hpux 7.03 this fails with EPERM. This happens on
1250 * the 800 when opgrp != shpgrp at this point. (we were
1251 * forked from a non job control shell)
1252 * POSIX 7.2.4, says we failed because the process
1253 * group specified did not belong to a process
1254 * in the same session with the tty. So we set our
1255 * process group and try again.
1257 if (setpgid(0, shpgrp
) == -1) {
1258 xprintf("setpgid:");
1261 if (tcsetpgrp(f
, shpgrp
) == -1) {
1262 xprintf("tcsetpgrp:");
1267 * We check the process group now. If it is the same, then
1268 * we don't need to set it again. On hpux 7.0 on the 300's
1269 * if we set it again it fails with EPERM. This is the
1270 * correct behavior according to POSIX 4.3.3 if the process
1271 * was a session leader .
1273 else if (shpgrp
!= mygetpgrp()) {
1274 if(setpgid(0, shpgrp
) == -1) {
1275 xprintf("setpgid:");
1281 * But on irix 3.3 we need to set it again, even if it is
1282 * the same. We do that to tell the system that we
1283 * need BSD process group compatibility.
1286 (void) setpgid(0, shpgrp
);
1288 (void) close_on_exec(dcopy(f
, FSHTTY
), 1);
1295 xprintf(CGETS(11, 1, "Warning: no access to tty (%s).\n"),
1298 CGETS(11, 2, "Thus no job control in this shell.\n"));
1300 * Fix from:Sakari Jalovaara <sja@sirius.hut.fi> if we don't
1301 * have access to tty, disable editing too
1307 #else /* BSDJOBS */ /* don't have job control, so frotz it */
1309 #endif /* BSDJOBS */
1312 if (setintr
== 0 && parintr
.sa_handler
== SIG_DFL
)
1316 * SVR4 doesn't send a SIGCHLD when a child is stopped or continued if the
1317 * handler is installed with signal(2) or sigset(2). sigaction(2) must
1320 * David Dawes (dawes@physics.su.oz.au) Sept 1991
1322 sigset_interrupting(SIGCHLD
, queue_pchild
);
1324 if (intty
&& !arginp
)
1325 (void) ed_Setup(editing
);/* Get the tty state, and set defaults */
1326 /* Only alter the tty state if editing */
1329 * Set an exit here in case of an interrupt or error reading the shell
1334 (void)cleanup_push_mark(); /* There is no outer handler */
1335 if (setexit() != 0) /* PWP */
1340 haderr
= 0; /* In case second time through */
1341 if (!fast
&& reenter
== 0) {
1342 /* Will have varval(STRhome) here because set fast if don't */
1345 cleanup_push(&pintr_disabled
, disabled_cleanup
);
1346 setintr
= 0;/*FIXRESET:cleanup*/
1347 /* onintr in /etc/ files has no effect */
1348 parintr
.sa_handler
= SIG_IGN
;/*FIXRESET: cleanup*/
1350 #ifdef _PATH_DOTLOGIN
1352 (void) srcfile(_PATH_DOTLOGIN
, 0, 0, NULL
);
1356 #ifdef _PATH_DOTCSHRC
1357 (void) srcfile(_PATH_DOTCSHRC
, 0, 0, NULL
);
1359 if (!arginp
&& !onelflg
&& !havhash
)
1362 #ifdef _PATH_DOTLOGIN
1364 (void) srcfile(_PATH_DOTLOGIN
, 0, 0, NULL
);
1367 cleanup_until(&pintr_disabled
);
1373 (void) srccat(varval(STRhome
), STRsldotlogin
);
1375 /* upward compat. */
1376 if (!srccat(varval(STRhome
), STRsldottcshrc
))
1377 (void) srccat(varval(STRhome
), STRsldotcshrc
);
1379 if (!arginp
&& !onelflg
&& !havhash
)
1383 * Source history before .login so that it is available in .login
1388 (void) srccat(varval(STRhome
), STRsldotlogin
);
1390 if (loginsh
|| rdirs
)
1393 /* Reset interrupt flag */
1398 /* Initing AFTER .cshrc is the Right Way */
1399 if (intty
&& !arginp
) { /* PWP setup stuff */
1400 ed_Init(); /* init the new line editor */
1402 check_window_size(1); /* mung environment */
1403 #endif /* SIG_WINDOW */
1407 * Now are ready for the -v and -x flags
1415 * All the rest of the world is inside this call. The argument to process
1416 * indicates whether it should catch "error unwinds". Thus if we are a
1417 * interactive shell our call here will never return by being blown past on
1425 /* Take care of these (especially HUP) here instead of inside flush. */
1426 handle_pending_signals();
1429 xprintf("logout\n");
1435 goodbye(NULL
, NULL
);
1450 if (tpgrp
> 0 && opgrp
!= shpgrp
) {
1451 (void) setpgid(0, opgrp
);
1452 (void) tcsetpgrp(FSHTTY
, opgrp
);
1453 (void) resetdisc(FSHTTY
);
1455 #endif /* BSDJOBS */
1459 importpath(Char
*cp
)
1466 for (dp
= cp
; *dp
; dp
++)
1470 * i+2 where i is the number of colons in the path. There are i+1
1471 * directories in the path plus we need room for a zero terminator.
1473 pv
= xcalloc(i
+ 2, sizeof(Char
*));
1478 if ((c
= *dp
) == PATHSEP
|| c
== 0) {
1480 pv
[i
++] = Strsave(*cp
? cp
: STRdot
);
1489 else if (*dp
== '\\')
1491 #endif /* WINNT_NATIVE */
1495 cleanup_push(pv
, blk_cleanup
);
1496 setq(STRpath
, pv
, &shvhed
, VAR_READWRITE
);
1502 * Source to the file which is the catenation of the argument names.
1505 srccat(Char
*cp
, Char
*dp
)
1507 if (cp
[0] == '/' && cp
[1] == '\0')
1508 return srcfile(short2str(dp
), (mflag
? 0 : 1), 0, NULL
);
1516 if (ep
!= cp
&& ep
[-1] == '/' && dp
[0] == '/') /* silly win95 */
1518 #endif /* WINNT_NATIVE */
1520 ep
= Strspl(cp
, dp
);
1521 cleanup_push(ep
, xfree
);
1522 ptr
= short2str(ep
);
1524 rv
= srcfile(ptr
, (mflag
? 0 : 1), 0, NULL
);
1531 * Source to a file putting the file descriptor in a safe place (> 2).
1533 #ifndef WINNT_NATIVE
1537 #endif /*WINNT_NATIVE*/
1538 srcfile(const char *f
, int onlyown
, int flag
, Char
**av
)
1542 if ((unit
= xopen(f
, O_RDONLY
|O_LARGEFILE
)) == -1)
1544 cleanup_push(&unit
, open_cleanup
);
1545 unit
= dmove(unit
, -1);
1546 cleanup_ignore(&unit
);
1547 cleanup_until(&unit
);
1549 (void) close_on_exec(unit
, 1);
1550 srcunit(unit
, onlyown
, flag
, av
);
1556 * Save the shell state, and establish new argument vector, and new input
1560 st_save(struct saved_state
*st
, int unit
, int hflg
, Char
**al
, Char
**av
)
1562 st
->insource
= insource
;
1564 /* Want to preserve the meaning of "source file >output".
1565 * Save old descriptors, move new 0,1,2 to safe places and assign
1566 * them to SH* and let process() redo 0,1,2 from them.
1568 * The macro returns true if d1 and d2 are good and they point to
1569 * different things. If you don't avoid saving duplicate
1570 * descriptors, you really limit the depth of "source" recursion
1571 * you can do because of all the open file descriptors. -IAN!
1573 #define NEED_SAVE_FD(d1,d2) \
1574 (fstat(d1, &s1) != -1 && fstat(d2, &s2) != -1 \
1575 && (s1.st_ino != s2.st_ino || s1.st_dev != s2.st_dev) )
1577 st
->OLDSTD
= st
->SHOUT
= st
->SHDIAG
= -1;/* test later to restore these */
1580 if (NEED_SAVE_FD(0,OLDSTD
)) {
1581 st
->OLDSTD
= OLDSTD
;
1582 OLDSTD
= dmove(0, -1);
1583 (void)close_on_exec(OLDSTD
, 1);
1585 if (NEED_SAVE_FD(1,SHOUT
)) {
1587 SHOUT
= dmove(1, -1);
1588 (void)close_on_exec(SHOUT
, 1);
1590 if (NEED_SAVE_FD(2,SHDIAG
)) {
1591 st
->SHDIAG
= SHDIAG
;
1592 SHDIAG
= dmove(2, -1);
1593 (void)close_on_exec(SHDIAG
, 1);
1599 st
->whyles
= whyles
;
1600 st
->gointr
= gointr
;
1601 st
->arginp
= arginp
;
1603 st
->evalvec
= evalvec
;
1604 st
->alvecp
= alvecp
;
1606 st
->onelflg
= onelflg
;
1607 st
->enterhist
= enterhist
;
1608 st
->justpr
= justpr
;
1613 st
->cantell
= cantell
;
1617 * we can now pass arguments to source.
1618 * For compatibility we do that only if arguments were really
1619 * passed, otherwise we keep the old, global $argv like before.
1621 if (av
!= NULL
&& *av
!= NULL
) {
1623 if ((vp
= adrof(STRargv
)) != NULL
&& vp
->vec
!= NULL
)
1624 st
->argv
= saveblk(vp
->vec
);
1627 setq(STRargv
, saveblk(av
), &shvhed
, VAR_READWRITE
);
1633 SHIN
= unit
; /* Do this first */
1635 /* Establish new input arena */
1638 fseekp
= feobp
= fblocks
= 0;
1644 intty
= isatty(SHIN
);
1659 * Restore the shell to a saved state
1662 st_restore(void *xst
)
1664 struct saved_state
*st
;
1670 /* Reset input arena */
1673 Char
** nfbuf
= fbuf
;
1674 int nfblocks
= fblocks
;
1678 for (i
= 0; i
< nfblocks
; i
++)
1686 insource
= st
->insource
;
1688 if (st
->OLDSTD
!= -1)
1689 xclose(OLDSTD
), OLDSTD
= st
->OLDSTD
;
1690 if (st
->SHOUT
!= -1)
1691 xclose(SHOUT
), SHOUT
= st
->SHOUT
;
1692 if (st
->SHDIAG
!= -1)
1693 xclose(SHDIAG
), SHDIAG
= st
->SHDIAG
;
1694 arginp
= st
->arginp
;
1695 onelflg
= st
->onelflg
;
1697 evalvec
= st
->evalvec
;
1698 alvecp
= st
->alvecp
;
1701 whyles
= st
->whyles
;
1702 gointr
= st
->gointr
;
1703 if (st
->HIST
!= '\0')
1705 enterhist
= st
->enterhist
;
1706 cantell
= st
->cantell
;
1707 justpr
= st
->justpr
;
1709 if (st
->argv
!= NULL
)
1710 setq(STRargv
, st
->argv
, &shvhed
, VAR_READWRITE
);
1711 else if (st
->av
!= NULL
&& *st
->av
!= NULL
&& adrof(STRargv
) != NULL
)
1716 * Source to a unit. If onlyown it must be our file or our group or
1717 * we don't chance it. This occurs on ".cshrc"s and the like.
1720 srcunit(int unit
, int onlyown
, int hflg
, Char
**av
)
1722 struct saved_state st
;
1724 st
.SHIN
= -1; /* st_restore checks this */
1732 if (fstat(unit
, &stb
) < 0) {
1738 /* Does nothing before st_save() because st.SHIN == -1 */
1739 cleanup_push(&st
, st_restore
);
1742 cleanup_push(&pintr_disabled
, disabled_cleanup
);
1745 /* Save the current state and move us to a new state */
1746 st_save(&st
, unit
, hflg
, NULL
, av
);
1749 * Now if we are allowing commands to be interrupted, we let ourselves be
1753 cleanup_until(&pintr_disabled
);
1755 cleanup_push(&pintr_disabled
, disabled_cleanup
);
1758 process(0); /* 0 -> blow away on errors */
1760 /* Restore the old state */
1767 goodbye(Char
**v
, struct command
*c
)
1778 signal(SIGQUIT
, SIG_IGN
);
1779 sigaddset(&set
, SIGQUIT
);
1780 sigprocmask(SIG_UNBLOCK
, &set
, NULL
);
1781 signal(SIGINT
, SIG_IGN
);
1782 sigaddset(&set
, SIGINT
);
1783 signal(SIGTERM
, SIG_IGN
);
1784 sigaddset(&set
, SIGTERM
);
1785 signal(SIGHUP
, SIG_IGN
);
1786 sigaddset(&set
, SIGHUP
);
1787 sigprocmask(SIG_UNBLOCK
, &set
, NULL
);
1789 setintr
= 0; /* No interrupts after "logout" */
1790 /* Trap errors inside .logout */
1791 omark
= cleanup_push_mark();
1792 if (setexit() == 0) {
1793 if (!(adrof(STRlogout
)))
1794 setcopy(STRlogout
, STRnormal
, VAR_READWRITE
);
1795 #ifdef _PATH_DOTLOGOUT
1796 (void) srcfile(_PATH_DOTLOGOUT
, 0, 0, NULL
);
1799 (void) srccat(varval(STRhome
), STRsldtlogout
);
1804 cleanup_pop_mark(omark
);
1816 * Note that if STATUS is corrupted (i.e. getn bombs) then error will exit
1817 * directly because we poke child here. Otherwise we might continue
1818 * unwarrantedly (sic).
1822 xexit(getn(varval(STRstatus
)));
1826 * in the event of a HUP we want to save the history
1832 setcopy(STRlogout
, STRhangup
, VAR_READWRITE
);
1833 #ifdef _PATH_DOTLOGOUT
1834 (void) srcfile(_PATH_DOTLOGOUT
, 0, 0, NULL
);
1837 (void) srccat(varval(STRhome
), STRsldtlogout
);
1844 * We kill the last foreground process group. It then becomes
1845 * responsible to propagate the SIGHUP to its progeny.
1848 struct process
*pp
, *np
;
1850 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
) {
1853 * Find if this job is in the foreground. It could be that
1854 * the process leader has exited and the foreground flag
1855 * is cleared for it.
1859 * If a process is in the foreground we try to kill
1860 * it's process group. If we succeed, then the
1861 * whole job is gone. Otherwise we keep going...
1862 * But avoid sending HUP to the shell again.
1864 if (((np
->p_flags
& PFOREGND
) != 0) && np
->p_jobid
!= shpgrp
) {
1865 np
->p_flags
&= ~PHUP
;
1866 if (killpg(np
->p_jobid
, SIGHUP
) != -1) {
1867 /* In case the job was suspended... */
1869 (void) killpg(np
->p_jobid
, SIGCONT
);
1874 while ((np
= np
->p_friends
) != pp
);
1877 #endif /* POSIXJOBS */
1882 static Char
*jobargv
[2] = {STRjobs
, 0};
1885 * Catch an interrupt, e.g. during lexical input.
1886 * If we are an interactive shell, we reset the interrupt catch
1887 * immediately. In any case we drain the shell output,
1888 * and finally go through the normal error mechanism, which
1889 * gets a chance to make the shell go away.
1891 int just_signaled
; /* bugfix by Michael Bloom (mg@ttidca.TTI.COM) */
1907 dojobs(jobargv
, NULL
);
1908 stderror(ERR_NAME
| ERR_INTR
);
1911 /* MH - handle interrupted completions specially */
1913 if (InsideCompletion
)
1914 stderror(ERR_SILENT
);
1916 /* JV - Make sure we shut off inputl */
1918 (void) Cookedmode();
1924 #ifdef HAVE_GETPWENT
1929 * If we have an active "onintr" then we search for the label. Note that if
1930 * one does "onintr -" then we shan't be interruptible so we needn't worry
1937 else if (intty
&& wantnl
) {
1940 * If we are editing a multi-line input command, and move to
1941 * the beginning of the line, we don't want to trash it when
1949 /* xputchar('\n'); *//* Some like this, others don't */
1950 (void) putraw('\r');
1951 (void) putraw('\n');
1954 stderror(ERR_SILENT
);
1958 * Process is the main driving routine for the shell.
1959 * It runs all command processing, except for those within { ... }
1960 * in expressions (which is run by a routine evalav in sh.exp.c which
1961 * is a stripped down process), and `...` evaluation which is run
1962 * also by a subset of this code in sh.glob.c in the routine backeval.
1964 * The code here is a little strange because part of it is interruptible
1965 * and hence freeing of structures appears to occur when none is necessary
1966 * if this is ignored.
1968 * Note that if catch is not set then we will unwind on any error.
1969 * If an end-of-file occurs, we return.
1975 /* PWP: This might get nuked by longjmp so don't make it a register var */
1977 volatile int didexitset
= 0;
1980 omark
= cleanup_push_mark();
1983 int hadhist
, old_pintr_disabled
;
1986 if (didexitset
== 0) {
1992 justpr
= enterhist
; /* execute if not entering history */
1998 cleanup_pop_mark(omark
);
2004 * Every error is eventually caught here or the shell dies. It is
2005 * at this point that we clean up any left-over open files, by
2006 * closing all but a fixed number of pre-defined files. Thus
2007 * routines don't have to worry about leaving files open due to
2008 * deeper errors... they will get closed here.
2021 if (intty
&& prompt
&& evalvec
== 0) {
2025 * Watch for logins/logouts. Next is scheduled commands stored
2026 * previously using "sched." Then execute periodic commands.
2027 * Following that, the prompt precmd is run.
2031 #endif /* !HAVENOUTMP */
2036 * If we are at the end of the input buffer then we are going to
2037 * read fresh stuff. Otherwise, we are rereading input and don't
2038 * need or want to prompt.
2040 if (fseekp
== feobp
&& aret
== TCSH_F_SEEK
)
2041 printprompt(0, NULL
);
2051 * Interruptible during interactive reads
2054 pintr_push_enable(&old_pintr_disabled
);
2055 hadhist
= lex(¶ml
);
2057 cleanup_until(&old_pintr_disabled
);
2058 cleanup_push(¶ml
, lex_cleanup
);
2061 * Echo not only on VERBOSE, but also with history expansion. If there
2062 * is a lexical error then we forego history echo.
2063 * Do not echo if we're only entering history (source -h).
2065 if ((hadhist
&& !seterr
&& intty
&& !tellwhat
&& !Expand
&& !whyles
) ||
2066 (!enterhist
&& adrof(STRverbose
)))
2068 int odidfds
= didfds
;
2076 (void) alarm(0); /* Autologout OFF */
2077 alrmcatch_disabled
= 1;
2080 * Save input text on the history list if reading in old history, or it
2081 * is from the terminal at the top level and not in a loop.
2083 * PWP: entry of items in the history list while in a while loop is done
2086 if (enterhist
|| (catch && intty
&& !whyles
&& !tellwhat
&& !arun
))
2087 savehist(¶ml
, enterhist
> 1);
2089 if (Expand
&& seterr
)
2093 * Print lexical error messages, except when sourcing history lists.
2095 if (!enterhist
&& seterr
)
2099 * If had a history command :p modifier then this is as far as we
2106 * If had a tellwhat from twenex() then do
2109 (void) tellmewhat(¶ml
, NULL
);
2117 * If we are interactive, try to continue jobs that we have stopped
2120 continue_jobs(¶ml
);
2121 #endif /* BSDJOBS */
2124 * Check to see if the user typed "rm * .o" or something
2129 * Parse the words of the input into a parse tree.
2131 t
= syntax(paraml
.next
, ¶ml
, 0);
2133 * We cannot cleanup push here, because cd /blah; echo foo
2134 * would rewind t on the chdir error, and free the rest of the command
2143 * Execute the parse tree From: Michael Schroeder
2144 * <mlschroe@immd4.informatik.uni-erlangen.de> was execute(t, tpgrp);
2146 execute(t
, (tpgrp
> 0 ? tpgrp
: -1), NULL
, NULL
, TRUE
);
2153 if (windowchg
|| (catch && intty
&& !whyles
&& !tellwhat
)) {
2154 (void) check_window_size(0); /* for window systems */
2156 #endif /* SIG_WINDOW */
2157 setcopy(STR_
, InputBuf
, VAR_READWRITE
| VAR_NOGLOB
);
2159 if (cleanup_reset())
2160 cleanup_until(¶ml
);
2164 cleanup_pop_mark(omark
);
2167 handle_pending_signals();
2172 dosource(Char
**t
, struct command
*c
)
2180 if (*t
&& eq(*t
, STRmh
)) {
2182 stderror(ERR_NAME
| ERR_HFLAG
);
2185 else if (*t
&& eq(*t
, STRmm
)) {
2187 stderror(ERR_NAME
| ERR_MFLAG
);
2191 f
= globone(*t
++, G_ERROR
);
2192 file
= strsave(short2str(f
));
2193 cleanup_push(file
, xfree
);
2195 t
= glob_all_or_error(t
);
2196 cleanup_push(t
, blk_cleanup
);
2197 if ((!srcfile(file
, 0, hflg
, t
)) && (!hflg
) && (!bequiet
))
2198 stderror(ERR_SYSTEM
, file
, strerror(errno
));
2199 cleanup_until(file
);
2204 * If we are a login shell, then we don't want to tell
2205 * about any mail file unless its been modified
2206 * after the time we started.
2207 * This prevents us from telling the user things he already
2208 * knows, since the login program insists on saying
2214 * This version checks if the file is a directory, and if so,
2215 * tells you the number of files in it, otherwise do the old thang.
2216 * The magic "+1" in the time calculation is to compensate for
2217 * an AFS bug where directory mtimes are set to 1 second in
2232 if (v
== NULL
|| v
->vec
== NULL
)
2237 intvl
= (cnt
&& number(*vp
)) ? (--cnt
, getn(*vp
++)) : MAILINTVL
;
2240 if (chktim
+ intvl
> t
)
2243 char *filename
= short2str(*vp
);
2244 char *mboxdir
= filename
;
2246 if (stat(filename
, &stb
) < 0)
2248 #if defined(BSDTIMES) || defined(_SEQUENT_)
2249 new = stb
.st_mtime
> time0
.tv_sec
;
2251 new = stb
.st_mtime
> seconds0
;
2253 if (S_ISDIR(stb
.st_mode
)) {
2259 tempfilename
= xasprintf("%s/new", filename
);
2261 if (stat(tempfilename
, &stc
) != -1 && S_ISDIR(stc
.st_mode
)) {
2263 * "filename/new" exists and is a directory; you are
2267 #if defined(BSDTIMES) || defined(_SEQUENT_)
2268 new = stb
.st_mtime
> time0
.tv_sec
;
2270 new = stb
.st_mtime
> seconds0
;
2272 mboxdir
= tempfilename
;
2275 if (stb
.st_mtime
<= chktim
+ 1 || (loginsh
&& !new)) {
2276 xfree(tempfilename
);
2280 mailbox
= opendir(mboxdir
);
2281 xfree(tempfilename
);
2282 if (mailbox
== NULL
)
2286 if (!readdir(mailbox
) || !readdir(mailbox
)) {
2287 (void)closedir(mailbox
);
2291 while (readdir(mailbox
))
2294 (void)closedir(mailbox
);
2299 xprintf(CGETS(11, 3, "You have %d mail messages.\n"),
2302 xprintf(CGETS(11, 4, "You have %d mail messages in %s.\n"),
2303 mailcount
, filename
);
2308 if (stb
.st_size
== 0 || stb
.st_atime
>= stb
.st_mtime
||
2309 (stb
.st_atime
<= chktim
&& stb
.st_mtime
<= chktim
) ||
2312 type
= strsave(new ? CGETS(11, 6, "new ") : "");
2313 cleanup_push(type
, xfree
);
2315 xprintf(CGETS(11, 5, "You have %smail.\n"), type
);
2317 xprintf(CGETS(11, 7, "You have %smail in %s.\n"), type
, filename
);
2318 cleanup_until(type
);
2325 * Extract a home directory from the password file
2326 * The argument points to a buffer where the name of the
2327 * user whose home directory is sought is currently.
2328 * We return home directory of the user, or NULL.
2331 gethdir(const Char
*home
)
2338 if (*home
== '\0') {
2339 if ((h
= varval(STRhome
)) != STRNULL
)
2348 if ((h
= gettilde(home
)) == NULL
)
2355 * Move the initial descriptors to their eventual
2356 * resting places, closing all other units.
2364 #endif /* NLS_CATALOGS */
2365 #endif /* NLS_BUGS */
2368 didfds
= 0; /* 0, 1, 2 aren't set up */
2369 (void) close_on_exec(SHIN
= dcopy(0, FSHIN
), 1);
2370 (void) close_on_exec(SHOUT
= dcopy(1, FSHOUT
), 1);
2371 (void) close_on_exec(SHDIAG
= dcopy(2, FSHDIAG
), 1);
2372 (void) close_on_exec(OLDSTD
= dcopy(SHIN
, FOLDSTD
), 1);
2373 #ifndef CLOSE_ON_EXEC
2374 didcch
= 0; /* Havent closed for child */
2375 #endif /* CLOSE_ON_EXEC */
2377 isdiagatty
= isatty(SHDIAG
);
2381 isoutatty
= isatty(SHOUT
);
2387 #endif /* NLS_CATALOGS */
2388 #endif /* NLS_BUGS */
2400 if (loginsh
&& do_logout
) {
2401 /* this is to send hangup signal to the develcon */
2402 /* we toggle DTR. clear dtr - sleep 1 - set dtr */
2403 /* ioctl will return ENOTTY for pty's but we ignore it */
2404 /* exitstat will run after disconnect */
2405 /* we sleep for 2 seconds to let things happen in */
2406 /* .logout and rechist() */
2409 (void) ioctl(FSHTTY
, TIOCCDTR
, NULL
);
2411 (void) ioctl(FSHTTY
, TIOCSDTR
, NULL
);
2412 #endif /* TIOCCDTR */
2417 struct process
*pp
, *np
;
2418 pid_t mypid
= getpid();
2419 /* Kill all processes marked for hup'ing */
2420 for (pp
= proclist
.p_next
; pp
; pp
= pp
->p_next
) {
2423 if ((np
->p_flags
& PHUP
) && np
->p_jobid
!= shpgrp
&&
2424 np
->p_parentid
== mypid
) {
2425 if (killpg(np
->p_jobid
, SIGHUP
) != -1) {
2426 /* In case the job was suspended... */
2428 (void) killpg(np
->p_jobid
, SIGCONT
);
2433 while ((np
= np
->p_friends
) != pp
);
2439 * We need to call catclose, because SVR4 leaves symlinks behind otherwise
2440 * in the catalog directories. We cannot close on a vforked() child,
2441 * because messages will stop working on the parent too.
2445 #endif /* NLS_CATALOGS */
2448 #endif /* WINNT_NATIVE */
2452 #ifndef _PATH_DEFPATH
2460 blkp
= blk
= xmalloc(sizeof(Char
*) * 10);
2464 *blkp
++ = Strsave(STRdot
);
2468 #define DIRAPPEND(a) \
2469 if (stat(ptr = a, &stb) == 0 && S_ISDIR(stb.st_mode)) \
2473 DIRAPPEND(_PATH_LOCAL
);
2477 DIRAPPEND(_PATH_USRUCB
);
2481 DIRAPPEND(_PATH_USRBSD
);
2485 DIRAPPEND(_PATH_BIN
);
2489 DIRAPPEND(_PATH_USRBIN
);
2496 *blkp
++ = Strsave(STRdot
);
2508 recdirs(NULL
, adrof(STRsavedirs
) != NULL
);
2509 rechist(NULL
, adrof(STRsavehist
) != NULL
);
2511 displayHistStats("Exiting"); /* no-op unless DEBUG_HIST */
2515 * Grab the tty repeatedly, and give up if we are not in the correct
2516 * tty process group.
2519 grabpgrp(int fd
, pid_t desired
)
2521 struct sigaction old
;
2525 for (i
= 0; i
< 100; i
++) {
2526 if ((pgrp
= tcgetpgrp(fd
)) == -1)
2528 if (pgrp
== desired
)
2530 (void)sigaction(SIGTTIN
, NULL
, &old
);
2531 (void)signal(SIGTTIN
, SIG_DFL
);
2532 (void)kill(0, SIGTTIN
);
2533 (void)sigaction(SIGTTIN
, &old
, NULL
);