17c478bd9Sstevel@tonic-gate /* 21de7ff79Sjonb * Copyright 2006 Sun Microsystems, Inc. All rights reserved. 37c478bd9Sstevel@tonic-gate * Use is subject to license terms. 47c478bd9Sstevel@tonic-gate */ 57c478bd9Sstevel@tonic-gate 67c478bd9Sstevel@tonic-gate /* Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T */ 77c478bd9Sstevel@tonic-gate /* All Rights Reserved */ 87c478bd9Sstevel@tonic-gate 97c478bd9Sstevel@tonic-gate /* 107c478bd9Sstevel@tonic-gate * Copyright (c) 1980 Regents of the University of California. 117c478bd9Sstevel@tonic-gate * All rights reserved. The Berkeley Software License Agreement 127c478bd9Sstevel@tonic-gate * specifies the terms and conditions for redistribution. 137c478bd9Sstevel@tonic-gate */ 147c478bd9Sstevel@tonic-gate 157c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 167c478bd9Sstevel@tonic-gate 177c478bd9Sstevel@tonic-gate #include <stdlib.h> /* MB_xxx, mbxxx(), wcxxx() etc. */ 187c478bd9Sstevel@tonic-gate #include <limits.h> 197c478bd9Sstevel@tonic-gate #include <sys/time.h> 207c478bd9Sstevel@tonic-gate #include <sys/types.h> 217c478bd9Sstevel@tonic-gate #include <sys/siginfo.h> 227c478bd9Sstevel@tonic-gate #include <sys/ucontext.h> 237c478bd9Sstevel@tonic-gate #include <sys/param.h> 247c478bd9Sstevel@tonic-gate #include <sys/stat.h> 257c478bd9Sstevel@tonic-gate #include <sys/termios.h> 267c478bd9Sstevel@tonic-gate #include <sys/ttold.h> 277c478bd9Sstevel@tonic-gate #include <errno.h> 287c478bd9Sstevel@tonic-gate #include <signal.h> /* std sysV signal.h */ 297c478bd9Sstevel@tonic-gate #include <setjmp.h> 307c478bd9Sstevel@tonic-gate #include <sys/resource.h> 31*70a587ddSchin #include <netdb.h> /* for MAXHOSTNAMELEN */ 327c478bd9Sstevel@tonic-gate #include "signal.h" /* mainly BSD related signal.h */ 337c478bd9Sstevel@tonic-gate #include "sh.local.h" 347c478bd9Sstevel@tonic-gate #include "sh.char.h" 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gate #ifdef MBCHAR 387c478bd9Sstevel@tonic-gate #if !defined(MB_LEN_MAX) || !defined(MB_CUR_MAX) 397c478bd9Sstevel@tonic-gate Error: I need both ANSI macros! 407c478bd9Sstevel@tonic-gate #endif 417c478bd9Sstevel@tonic-gate #else 427c478bd9Sstevel@tonic-gate #if !defined(MB_LEN_MAX) 437c478bd9Sstevel@tonic-gate #define MB_LEN_MAX 1 447c478bd9Sstevel@tonic-gate #endif 457c478bd9Sstevel@tonic-gate #if !defined(MB_CUR_MAX) 467c478bd9Sstevel@tonic-gate #define MB_CUR_MAX 1 477c478bd9Sstevel@tonic-gate #endif 487c478bd9Sstevel@tonic-gate #endif 497c478bd9Sstevel@tonic-gate 507c478bd9Sstevel@tonic-gate #ifndef MBCHAR /* Let's replace the ANSI functions with our own macro 517c478bd9Sstevel@tonic-gate * for efficiency! 527c478bd9Sstevel@tonic-gate */ 537c478bd9Sstevel@tonic-gate #define mbtowc(pwc, pmb, n_is_ignored) ((*(pwc) = *(pmb)), 1) 547c478bd9Sstevel@tonic-gate #define wctomb(pmb, wc) ((*(pmb) = ((char)wc)), 1) 557c478bd9Sstevel@tonic-gate #endif /* !MBCHAR */ 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate /* 587c478bd9Sstevel@tonic-gate * C shell 597c478bd9Sstevel@tonic-gate * 607c478bd9Sstevel@tonic-gate * Bill Joy, UC Berkeley 617c478bd9Sstevel@tonic-gate * October, 1978; May 1980 627c478bd9Sstevel@tonic-gate * 637c478bd9Sstevel@tonic-gate * Jim Kulp, IIASA, Laxenburg Austria 647c478bd9Sstevel@tonic-gate * April, 1980 657c478bd9Sstevel@tonic-gate */ 667c478bd9Sstevel@tonic-gate 6765b0c20eSnakanon /* 6865b0c20eSnakanon * If we are setting the $cwd variable becuz we did a 6965b0c20eSnakanon * cd, chdir, pushd, popd command, then set didchdir to 7065b0c20eSnakanon * 1. This prevents globbing down when setting $cwd. 7165b0c20eSnakanon * However, if the user set $cwd, we want the globbing 7265b0c20eSnakanon * done; so, didchdir would be equal to 0 in that case. 737c478bd9Sstevel@tonic-gate */ 747c478bd9Sstevel@tonic-gate int didchdir; 757c478bd9Sstevel@tonic-gate 767c478bd9Sstevel@tonic-gate #define isdir(d) ((d.st_mode & S_IFMT) == S_IFDIR) 777c478bd9Sstevel@tonic-gate 787c478bd9Sstevel@tonic-gate typedef char bool; 797c478bd9Sstevel@tonic-gate 8065b0c20eSnakanon /* 8165b0c20eSnakanon * tchar (Tagged CHARacter) is a place holder to keep a QUOTE bit and 827c478bd9Sstevel@tonic-gate * a character. 837c478bd9Sstevel@tonic-gate * For European language handling, lower 8 bits of tchar is used 847c478bd9Sstevel@tonic-gate * to store a character. For other languages, especially Asian, 16 bits 857c478bd9Sstevel@tonic-gate * are used to store a character. 867c478bd9Sstevel@tonic-gate * Following typedef's assume short int is a 16-bit entity and long int is 877c478bd9Sstevel@tonic-gate * a 32-bit entity. 887c478bd9Sstevel@tonic-gate * The QUOTE bit tells whether the character is subject to further 897c478bd9Sstevel@tonic-gate * interpretation such as history substitution, file mathing, command 907c478bd9Sstevel@tonic-gate * subsitution. TRIM is a mask to strip off the QUOTE bit. 917c478bd9Sstevel@tonic-gate */ 927c478bd9Sstevel@tonic-gate #ifdef MBCHAR /* For multibyte character handling. */ 937c478bd9Sstevel@tonic-gate typedef long int tchar; 947c478bd9Sstevel@tonic-gate #define QUOTE 0x80000000 957c478bd9Sstevel@tonic-gate #define TRIM 0x7fffffff 967c478bd9Sstevel@tonic-gate #else /* !MBCHAR */ /* European language requires only 8 bits. */ 977c478bd9Sstevel@tonic-gate typedef unsigned short int tchar; 987c478bd9Sstevel@tonic-gate #define QUOTE 0x8000 997c478bd9Sstevel@tonic-gate #define TRIM 0x00ff 1007c478bd9Sstevel@tonic-gate #endif /* !MBCHAR */ 1017c478bd9Sstevel@tonic-gate #define eq(a, b) (strcmp_(a, b) == 0) 1027c478bd9Sstevel@tonic-gate 1037c478bd9Sstevel@tonic-gate 1047c478bd9Sstevel@tonic-gate /* 1057c478bd9Sstevel@tonic-gate * Global flags 1067c478bd9Sstevel@tonic-gate */ 1077c478bd9Sstevel@tonic-gate bool chkstop; /* Warned of stopped jobs... allow exit */ 1087c478bd9Sstevel@tonic-gate bool didfds; /* Have setup i/o fd's for child */ 1097c478bd9Sstevel@tonic-gate bool doneinp; /* EOF indicator after reset from readc */ 1107c478bd9Sstevel@tonic-gate bool exiterr; /* Exit if error or non-zero exit status */ 1117c478bd9Sstevel@tonic-gate bool child; /* Child shell ... errors cause exit */ 1127c478bd9Sstevel@tonic-gate bool haderr; /* Reset was because of an error */ 1137c478bd9Sstevel@tonic-gate bool intty; /* Input is a tty */ 1147c478bd9Sstevel@tonic-gate bool cflg; /* invoked with -c option */ 1157c478bd9Sstevel@tonic-gate bool intact; /* We are interactive... therefore prompt */ 1167c478bd9Sstevel@tonic-gate bool justpr; /* Just print because of :p hist mod */ 1177c478bd9Sstevel@tonic-gate bool loginsh; /* We are a loginsh -> .login/.logout */ 1187c478bd9Sstevel@tonic-gate bool neednote; /* Need to pnotify() */ 1197c478bd9Sstevel@tonic-gate bool noexec; /* Don't execute, just syntax check */ 1207c478bd9Sstevel@tonic-gate bool pjobs; /* want to print jobs if interrupted */ 1217c478bd9Sstevel@tonic-gate bool pfcshflag; /* set to 0 for pfcsh */ 1227c478bd9Sstevel@tonic-gate bool setintr; /* Set interrupts on/off -> Wait intr... */ 1237c478bd9Sstevel@tonic-gate bool timflg; /* Time the next waited for command */ 1247c478bd9Sstevel@tonic-gate bool havhash; /* path hashing is available */ 1257c478bd9Sstevel@tonic-gate bool havhash2; /* cdpath hashing is available */ 1267c478bd9Sstevel@tonic-gate #ifdef FILEC 1277c478bd9Sstevel@tonic-gate bool filec; /* doing filename expansion */ 1287c478bd9Sstevel@tonic-gate #endif 1297c478bd9Sstevel@tonic-gate 1307c478bd9Sstevel@tonic-gate /* 1317c478bd9Sstevel@tonic-gate * Global i/o info 1327c478bd9Sstevel@tonic-gate */ 1337c478bd9Sstevel@tonic-gate tchar *arginp; /* Argument input for sh -c and internal `xx` */ 1347c478bd9Sstevel@tonic-gate int onelflg; /* 2 -> need line for -t, 1 -> exit on read */ 1357c478bd9Sstevel@tonic-gate tchar *file; /* Name of shell file for $0 */ 1367c478bd9Sstevel@tonic-gate 1377c478bd9Sstevel@tonic-gate char *err; /* Error message from scanner/parser */ 1387c478bd9Sstevel@tonic-gate struct timeval time0; /* Time at which the shell started */ 1397c478bd9Sstevel@tonic-gate struct rusage ru0; 1407c478bd9Sstevel@tonic-gate 1417c478bd9Sstevel@tonic-gate /* 1427c478bd9Sstevel@tonic-gate * Miscellany 1437c478bd9Sstevel@tonic-gate */ 1447c478bd9Sstevel@tonic-gate tchar *doldol; /* Character pid for $$ */ 1457c478bd9Sstevel@tonic-gate int uid; /* Invokers uid */ 1467c478bd9Sstevel@tonic-gate time_t chktim; /* Time mail last checked */ 1477c478bd9Sstevel@tonic-gate int shpgrp; /* Pgrp of shell */ 1487c478bd9Sstevel@tonic-gate int tpgrp; /* Terminal process group */ 1497c478bd9Sstevel@tonic-gate /* If tpgrp is -1, leave tty alone! */ 1507c478bd9Sstevel@tonic-gate int opgrp; /* Initial pgrp and tty pgrp */ 1517c478bd9Sstevel@tonic-gate int oldisc; /* Initial line discipline or -1 */ 1527c478bd9Sstevel@tonic-gate 1537c478bd9Sstevel@tonic-gate /* 1547c478bd9Sstevel@tonic-gate * These are declared here because they want to be 1557c478bd9Sstevel@tonic-gate * initialized in sh.init.c (to allow them to be made readonly) 1567c478bd9Sstevel@tonic-gate */ 1577c478bd9Sstevel@tonic-gate 1587c478bd9Sstevel@tonic-gate extern struct biltins { 1597c478bd9Sstevel@tonic-gate tchar *bname; 1607c478bd9Sstevel@tonic-gate int (*bfunct)(); 1617c478bd9Sstevel@tonic-gate short minargs, maxargs; 1627c478bd9Sstevel@tonic-gate } bfunc[]; 1637c478bd9Sstevel@tonic-gate extern int nbfunc; 1647c478bd9Sstevel@tonic-gate 1657c478bd9Sstevel@tonic-gate extern struct srch { 1667c478bd9Sstevel@tonic-gate tchar *s_name; 1677c478bd9Sstevel@tonic-gate short s_value; 1687c478bd9Sstevel@tonic-gate } srchn[]; 1697c478bd9Sstevel@tonic-gate extern int nsrchn; 1707c478bd9Sstevel@tonic-gate 1717c478bd9Sstevel@tonic-gate /* 1727c478bd9Sstevel@tonic-gate * To be able to redirect i/o for builtins easily, the shell moves the i/o 1737c478bd9Sstevel@tonic-gate * descriptors it uses away from 0,1,2. 1747c478bd9Sstevel@tonic-gate * Ideally these should be in units which are closed across exec's 1757c478bd9Sstevel@tonic-gate * (this saves work) but for version 6, this is not usually possible. 1767c478bd9Sstevel@tonic-gate * The desired initial values for these descriptors are defined in 1777c478bd9Sstevel@tonic-gate * sh.local.h. 1787c478bd9Sstevel@tonic-gate */ 1797c478bd9Sstevel@tonic-gate short SHIN; /* Current shell input (script) */ 1807c478bd9Sstevel@tonic-gate short SHOUT; /* Shell output */ 1817c478bd9Sstevel@tonic-gate short SHDIAG; /* Diagnostic output... shell errs go here */ 1827c478bd9Sstevel@tonic-gate short OLDSTD; /* Old standard input (def for cmds) */ 1837c478bd9Sstevel@tonic-gate 1847c478bd9Sstevel@tonic-gate /* 1857c478bd9Sstevel@tonic-gate * Error control 1867c478bd9Sstevel@tonic-gate * 1877c478bd9Sstevel@tonic-gate * Errors in scanning and parsing set up an error message to be printed 1887c478bd9Sstevel@tonic-gate * at the end and complete. Other errors always cause a reset. 1897c478bd9Sstevel@tonic-gate * Because of source commands and .cshrc we need nested error catches. 1907c478bd9Sstevel@tonic-gate */ 1917c478bd9Sstevel@tonic-gate 1927c478bd9Sstevel@tonic-gate jmp_buf reslab; 1937c478bd9Sstevel@tonic-gate 1947c478bd9Sstevel@tonic-gate #define setexit() ((void) setjmp(reslab)) 1957c478bd9Sstevel@tonic-gate #define reset() longjmp(reslab, 0) 1967c478bd9Sstevel@tonic-gate /* Should use structure assignment here */ 1977c478bd9Sstevel@tonic-gate #define getexit(a) copy((void *)(a), (void *)reslab, sizeof reslab) 1987c478bd9Sstevel@tonic-gate #define resexit(a) copy((void *)reslab, ((void *)(a)), sizeof reslab) 1997c478bd9Sstevel@tonic-gate 2007c478bd9Sstevel@tonic-gate tchar *gointr; /* Label for an onintr transfer */ 2017c478bd9Sstevel@tonic-gate void (*parintr)(); /* Parents interrupt catch */ 2027c478bd9Sstevel@tonic-gate void (*parterm)(); /* Parents terminate catch */ 2037c478bd9Sstevel@tonic-gate 2047c478bd9Sstevel@tonic-gate 2057c478bd9Sstevel@tonic-gate /* 2067c478bd9Sstevel@tonic-gate * Each level of input has a buffered input structure. 2077c478bd9Sstevel@tonic-gate * There are one or more blocks of buffered input for each level, 2087c478bd9Sstevel@tonic-gate * exactly one if the input is seekable and tell is available. 2097c478bd9Sstevel@tonic-gate * In other cases, the shell buffers enough blocks to keep all loops 2107c478bd9Sstevel@tonic-gate * in the buffer. 2117c478bd9Sstevel@tonic-gate */ 2127c478bd9Sstevel@tonic-gate struct Bin { 2137c478bd9Sstevel@tonic-gate off_t Bfseekp; /* Seek pointer */ 2147c478bd9Sstevel@tonic-gate off_t Bfbobp; /* Seekp of beginning of buffers */ 2157c478bd9Sstevel@tonic-gate off_t Bfeobp; /* Seekp of end of buffers */ 2167c478bd9Sstevel@tonic-gate short Bfblocks; /* Number of buffer blocks */ 2177c478bd9Sstevel@tonic-gate tchar **Bfbuf; /* The array of buffer blocks */ 2187c478bd9Sstevel@tonic-gate } B; 2197c478bd9Sstevel@tonic-gate 2207c478bd9Sstevel@tonic-gate #define fseekp B.Bfseekp 2217c478bd9Sstevel@tonic-gate #define fbobp B.Bfbobp 2227c478bd9Sstevel@tonic-gate #define feobp B.Bfeobp 2237c478bd9Sstevel@tonic-gate #define fblocks B.Bfblocks 2247c478bd9Sstevel@tonic-gate #define fbuf B.Bfbuf 2257c478bd9Sstevel@tonic-gate 2267c478bd9Sstevel@tonic-gate #define btell() fseekp 2277c478bd9Sstevel@tonic-gate 2287c478bd9Sstevel@tonic-gate #ifndef btell 2296c02b4a4Smuffin off_t btell(void); 2307c478bd9Sstevel@tonic-gate #endif 2317c478bd9Sstevel@tonic-gate 2327c478bd9Sstevel@tonic-gate /* 2337c478bd9Sstevel@tonic-gate * The shell finds commands in loops by reseeking the input 2347c478bd9Sstevel@tonic-gate * For whiles, in particular, it reseeks to the beginning of the 2357c478bd9Sstevel@tonic-gate * line the while was on; hence the while placement restrictions. 2367c478bd9Sstevel@tonic-gate */ 2377c478bd9Sstevel@tonic-gate off_t lineloc; 2387c478bd9Sstevel@tonic-gate 2397c478bd9Sstevel@tonic-gate #ifdef TELL 2407c478bd9Sstevel@tonic-gate bool cantell; /* Is current source tellable ? */ 2417c478bd9Sstevel@tonic-gate #endif 2427c478bd9Sstevel@tonic-gate 2437c478bd9Sstevel@tonic-gate /* 2447c478bd9Sstevel@tonic-gate * Input lines are parsed into doubly linked circular 2457c478bd9Sstevel@tonic-gate * lists of words of the following form. 2467c478bd9Sstevel@tonic-gate */ 2477c478bd9Sstevel@tonic-gate struct wordent { 2487c478bd9Sstevel@tonic-gate tchar *word; 2497c478bd9Sstevel@tonic-gate struct wordent *prev; 2507c478bd9Sstevel@tonic-gate struct wordent *next; 2517c478bd9Sstevel@tonic-gate }; 2527c478bd9Sstevel@tonic-gate 2537c478bd9Sstevel@tonic-gate /* 2547c478bd9Sstevel@tonic-gate * During word building, both in the initial lexical phase and 2557c478bd9Sstevel@tonic-gate * when expanding $ variable substitutions, expansion by `!' and `$' 2567c478bd9Sstevel@tonic-gate * must be inhibited when reading ahead in routines which are themselves 2577c478bd9Sstevel@tonic-gate * processing `!' and `$' expansion or after characters such as `\' or in 2587c478bd9Sstevel@tonic-gate * quotations. The following flags are passed to the getC routines 2597c478bd9Sstevel@tonic-gate * telling them which of these substitutions are appropriate for the 2607c478bd9Sstevel@tonic-gate * next character to be returned. 2617c478bd9Sstevel@tonic-gate */ 2627c478bd9Sstevel@tonic-gate #define DODOL 1 2637c478bd9Sstevel@tonic-gate #define DOEXCL 2 2647c478bd9Sstevel@tonic-gate #define DOALL DODOL|DOEXCL 2657c478bd9Sstevel@tonic-gate 2667c478bd9Sstevel@tonic-gate /* 2677c478bd9Sstevel@tonic-gate * Labuf implements a general buffer for lookahead during lexical operations. 2687c478bd9Sstevel@tonic-gate * Text which is to be placed in the input stream can be stuck here. 2697c478bd9Sstevel@tonic-gate * We stick parsed ahead $ constructs during initial input, 2707c478bd9Sstevel@tonic-gate * process id's from `$$', and modified variable values (from qualifiers 2717c478bd9Sstevel@tonic-gate * during expansion in sh.dol.c) here. 2727c478bd9Sstevel@tonic-gate */ 2737c478bd9Sstevel@tonic-gate tchar *labuf; 2747c478bd9Sstevel@tonic-gate 2757c478bd9Sstevel@tonic-gate tchar *lap; 2767c478bd9Sstevel@tonic-gate 2777c478bd9Sstevel@tonic-gate /* 2787c478bd9Sstevel@tonic-gate * Parser structure 2797c478bd9Sstevel@tonic-gate * 2807c478bd9Sstevel@tonic-gate * Each command is parsed to a tree of command structures and 2817c478bd9Sstevel@tonic-gate * flags are set bottom up during this process, to be propagated down 2827c478bd9Sstevel@tonic-gate * as needed during the semantics/exeuction pass (sh.sem.c). 2837c478bd9Sstevel@tonic-gate */ 2847c478bd9Sstevel@tonic-gate struct command { 2857c478bd9Sstevel@tonic-gate short t_dtyp; /* Type of node */ 2867c478bd9Sstevel@tonic-gate short t_dflg; /* Flags, e.g. FAND|... */ 2877c478bd9Sstevel@tonic-gate union { 2887c478bd9Sstevel@tonic-gate tchar *T_dlef; /* Input redirect word */ 2897c478bd9Sstevel@tonic-gate struct command *T_dcar; /* Left part of list/pipe */ 2907c478bd9Sstevel@tonic-gate } L; 2917c478bd9Sstevel@tonic-gate union { 2927c478bd9Sstevel@tonic-gate tchar *T_drit; /* Output redirect word */ 2937c478bd9Sstevel@tonic-gate struct command *T_dcdr; /* Right part of list/pipe */ 2947c478bd9Sstevel@tonic-gate } R; 2957c478bd9Sstevel@tonic-gate #define t_dlef L.T_dlef 2967c478bd9Sstevel@tonic-gate #define t_dcar L.T_dcar 2977c478bd9Sstevel@tonic-gate #define t_drit R.T_drit 2987c478bd9Sstevel@tonic-gate #define t_dcdr R.T_dcdr 2997c478bd9Sstevel@tonic-gate tchar **t_dcom; /* Command/argument vector */ 3007c478bd9Sstevel@tonic-gate char *cfname; /* char pathname for execv */ 3017c478bd9Sstevel@tonic-gate char **cargs; /* char arg vec for execv */ 3027c478bd9Sstevel@tonic-gate struct command *t_dspr; /* Pointer to ()'d subtree */ 3037c478bd9Sstevel@tonic-gate short t_nice; 3047c478bd9Sstevel@tonic-gate }; 3057c478bd9Sstevel@tonic-gate 3067c478bd9Sstevel@tonic-gate #define TCOM 1 /* t_dcom <t_dlef >t_drit */ 3077c478bd9Sstevel@tonic-gate #define TPAR 2 /* ( t_dspr ) <t_dlef >t_drit */ 3087c478bd9Sstevel@tonic-gate #define TFIL 3 /* t_dlef | t_drit */ 3097c478bd9Sstevel@tonic-gate #define TLST 4 /* t_dlef ; t_drit */ 3107c478bd9Sstevel@tonic-gate #define TOR 5 /* t_dlef || t_drit */ 3117c478bd9Sstevel@tonic-gate #define TAND 6 /* t_dlef && t_drit */ 3127c478bd9Sstevel@tonic-gate 3137c478bd9Sstevel@tonic-gate #define FSAVE (FNICE|FTIME|FNOHUP) /* save these when re-doing */ 3147c478bd9Sstevel@tonic-gate 3157c478bd9Sstevel@tonic-gate #define FAND (1<<0) /* executes in background */ 3167c478bd9Sstevel@tonic-gate #define FCAT (1<<1) /* output is redirected >> */ 3177c478bd9Sstevel@tonic-gate #define FPIN (1<<2) /* input is a pipe */ 3187c478bd9Sstevel@tonic-gate #define FPOU (1<<3) /* output is a pipe */ 3197c478bd9Sstevel@tonic-gate #define FPAR (1<<4) /* don't fork, last ()ized cmd */ 3207c478bd9Sstevel@tonic-gate #define FINT (1<<5) /* should be immune from intr's */ 3217c478bd9Sstevel@tonic-gate /* spare */ 3227c478bd9Sstevel@tonic-gate #define FDIAG (1<<7) /* redirect unit 2 with unit 1 */ 3237c478bd9Sstevel@tonic-gate #define FANY (1<<8) /* output was ! */ 3247c478bd9Sstevel@tonic-gate #define FHERE (1<<9) /* input redirection is << */ 3257c478bd9Sstevel@tonic-gate #define FREDO (1<<10) /* reexec aft if, repeat,... */ 3267c478bd9Sstevel@tonic-gate #define FNICE (1<<11) /* t_nice is meaningful */ 3277c478bd9Sstevel@tonic-gate #define FNOHUP (1<<12) /* nohup this command */ 3287c478bd9Sstevel@tonic-gate #define FTIME (1<<13) /* time this command */ 3297c478bd9Sstevel@tonic-gate 3307c478bd9Sstevel@tonic-gate /* 3317c478bd9Sstevel@tonic-gate * The keywords for the parser 3327c478bd9Sstevel@tonic-gate */ 3337c478bd9Sstevel@tonic-gate #define ZBREAK 0 3347c478bd9Sstevel@tonic-gate #define ZBRKSW 1 3357c478bd9Sstevel@tonic-gate #define ZCASE 2 3367c478bd9Sstevel@tonic-gate #define ZDEFAULT 3 3377c478bd9Sstevel@tonic-gate #define ZELSE 4 3387c478bd9Sstevel@tonic-gate #define ZEND 5 3397c478bd9Sstevel@tonic-gate #define ZENDIF 6 3407c478bd9Sstevel@tonic-gate #define ZENDSW 7 3417c478bd9Sstevel@tonic-gate #define ZEXIT 8 3427c478bd9Sstevel@tonic-gate #define ZFOREACH 9 3437c478bd9Sstevel@tonic-gate #define ZGOTO 10 3447c478bd9Sstevel@tonic-gate #define ZIF 11 3457c478bd9Sstevel@tonic-gate #define ZLABEL 12 3467c478bd9Sstevel@tonic-gate #define ZLET 13 3477c478bd9Sstevel@tonic-gate #define ZSET 14 3487c478bd9Sstevel@tonic-gate #define ZSWITCH 15 3497c478bd9Sstevel@tonic-gate #define ZTEST 16 3507c478bd9Sstevel@tonic-gate #define ZTHEN 17 3517c478bd9Sstevel@tonic-gate #define ZWHILE 18 3527c478bd9Sstevel@tonic-gate 3537c478bd9Sstevel@tonic-gate /* 3547c478bd9Sstevel@tonic-gate * Structure defining the existing while/foreach loops at this 3557c478bd9Sstevel@tonic-gate * source level. Loops are implemented by seeking back in the 3567c478bd9Sstevel@tonic-gate * input. For foreach (fe), the word list is attached here. 3577c478bd9Sstevel@tonic-gate */ 3587c478bd9Sstevel@tonic-gate struct whyle { 3597c478bd9Sstevel@tonic-gate off_t w_start; /* Point to restart loop */ 3607c478bd9Sstevel@tonic-gate off_t w_end; /* End of loop (0 if unknown) */ 3617c478bd9Sstevel@tonic-gate tchar **w_fe, **w_fe0; /* Current/initial wordlist for fe */ 3627c478bd9Sstevel@tonic-gate tchar *w_fename; /* Name for fe */ 3637c478bd9Sstevel@tonic-gate struct whyle *w_next; /* Next (more outer) loop */ 3647c478bd9Sstevel@tonic-gate } *whyles; 3657c478bd9Sstevel@tonic-gate 3667c478bd9Sstevel@tonic-gate /* 3677c478bd9Sstevel@tonic-gate * Variable structure 3687c478bd9Sstevel@tonic-gate * 3697c478bd9Sstevel@tonic-gate * Aliases and variables are stored in AVL balanced binary trees. 3707c478bd9Sstevel@tonic-gate */ 3717c478bd9Sstevel@tonic-gate struct varent { 3727c478bd9Sstevel@tonic-gate tchar **vec; /* Array of words which is the value */ 3737c478bd9Sstevel@tonic-gate tchar *v_name; /* Name of variable/alias */ 3747c478bd9Sstevel@tonic-gate struct varent *v_link[3]; /* The links, see below */ 3757c478bd9Sstevel@tonic-gate int v_bal; /* Balance factor */ 3767c478bd9Sstevel@tonic-gate } shvhed, aliases; 3777c478bd9Sstevel@tonic-gate #define v_left v_link[0] 3787c478bd9Sstevel@tonic-gate #define v_right v_link[1] 3797c478bd9Sstevel@tonic-gate #define v_parent v_link[2] 3807c478bd9Sstevel@tonic-gate 3817c478bd9Sstevel@tonic-gate struct varent *adrof1(); 3827c478bd9Sstevel@tonic-gate #define adrof(v) adrof1(v, &shvhed) 3837c478bd9Sstevel@tonic-gate #define value(v) value1(v, &shvhed) 3847c478bd9Sstevel@tonic-gate 3857c478bd9Sstevel@tonic-gate /* 3861de7ff79Sjonb * MAX_VAR_LEN - maximum variable name defined by csh man page to be 128 3877c478bd9Sstevel@tonic-gate */ 3881de7ff79Sjonb #define MAX_VAR_LEN 128 3897c478bd9Sstevel@tonic-gate 3907c478bd9Sstevel@tonic-gate /* 3917c478bd9Sstevel@tonic-gate * MAX_VREF_LEN - maximum variable reference $name[...] 3927c478bd9Sstevel@tonic-gate * it can be as big as a csh word, which is 1024 3937c478bd9Sstevel@tonic-gate */ 3947c478bd9Sstevel@tonic-gate #define MAX_VREF_LEN 1024 3957c478bd9Sstevel@tonic-gate 3967c478bd9Sstevel@tonic-gate 3977c478bd9Sstevel@tonic-gate /* 3987c478bd9Sstevel@tonic-gate * The following are for interfacing redo substitution in 3997c478bd9Sstevel@tonic-gate * aliases to the lexical routines. 4007c478bd9Sstevel@tonic-gate */ 4017c478bd9Sstevel@tonic-gate struct wordent *alhistp; /* Argument list (first) */ 4027c478bd9Sstevel@tonic-gate struct wordent *alhistt; /* Node after last in arg list */ 4037c478bd9Sstevel@tonic-gate tchar **alvec; /* The (remnants of) alias vector */ 4047c478bd9Sstevel@tonic-gate 4057c478bd9Sstevel@tonic-gate /* 4067c478bd9Sstevel@tonic-gate * Filename/command name expansion variables 4077c478bd9Sstevel@tonic-gate */ 4087c478bd9Sstevel@tonic-gate short gflag; /* After tglob -> is globbing needed? */ 4097c478bd9Sstevel@tonic-gate 4107c478bd9Sstevel@tonic-gate /* 4117c478bd9Sstevel@tonic-gate * A reasonable limit on number of arguments would seem to be 4127c478bd9Sstevel@tonic-gate * the maximum number of characters in an arg list / 6. 4137c478bd9Sstevel@tonic-gate * 4147c478bd9Sstevel@tonic-gate * XXX: With the new VM system, NCARGS has become enormous, making 4157c478bd9Sstevel@tonic-gate * it impractical to allocate arrays with NCARGS / 6 entries on 4167c478bd9Sstevel@tonic-gate * the stack. The proper fix is to revamp code elsewhere (in 4177c478bd9Sstevel@tonic-gate * sh.dol.c and sh.glob.c) to use a different technique for handling 4187c478bd9Sstevel@tonic-gate * command line arguments. In the meantime, we simply fall back 4197c478bd9Sstevel@tonic-gate * on using the old value of NCARGS. 4207c478bd9Sstevel@tonic-gate */ 4217c478bd9Sstevel@tonic-gate #ifdef notyet 4227c478bd9Sstevel@tonic-gate #define GAVSIZ (NCARGS / 6) 4236c02b4a4Smuffin #else /* notyet */ 4247c478bd9Sstevel@tonic-gate #define GAVSIZ (10240 / 6) 4256c02b4a4Smuffin #endif /* notyet */ 4267c478bd9Sstevel@tonic-gate 4277c478bd9Sstevel@tonic-gate /* 4287c478bd9Sstevel@tonic-gate * Variables for filename expansion 4297c478bd9Sstevel@tonic-gate */ 4307c478bd9Sstevel@tonic-gate tchar **gargv; /* Pointer to the (stack) arglist */ 4317c478bd9Sstevel@tonic-gate long gargc; /* Number args in gargv */ 4327c478bd9Sstevel@tonic-gate long gnleft; 4337c478bd9Sstevel@tonic-gate 4347c478bd9Sstevel@tonic-gate /* 4357c478bd9Sstevel@tonic-gate * Variables for command expansion. 4367c478bd9Sstevel@tonic-gate */ 4377c478bd9Sstevel@tonic-gate tchar **pargv; /* Pointer to the argv list space */ 4387c478bd9Sstevel@tonic-gate tchar *pargs; /* Pointer to start current word */ 4397c478bd9Sstevel@tonic-gate long pargc; /* Count of arguments in pargv */ 4407c478bd9Sstevel@tonic-gate long pnleft; /* Number of chars left in pargs */ 4417c478bd9Sstevel@tonic-gate tchar *pargcp; /* Current index into pargs */ 4427c478bd9Sstevel@tonic-gate 4437c478bd9Sstevel@tonic-gate /* 4447c478bd9Sstevel@tonic-gate * History list 4457c478bd9Sstevel@tonic-gate * 4467c478bd9Sstevel@tonic-gate * Each history list entry contains an embedded wordlist 4477c478bd9Sstevel@tonic-gate * from the scanner, a number for the event, and a reference count 4487c478bd9Sstevel@tonic-gate * to aid in discarding old entries. 4497c478bd9Sstevel@tonic-gate * 4507c478bd9Sstevel@tonic-gate * Essentially "invisible" entries are put on the history list 4517c478bd9Sstevel@tonic-gate * when history substitution includes modifiers, and thrown away 4527c478bd9Sstevel@tonic-gate * at the next discarding since their event numbers are very negative. 4537c478bd9Sstevel@tonic-gate */ 4547c478bd9Sstevel@tonic-gate struct Hist { 4557c478bd9Sstevel@tonic-gate struct wordent Hlex; 4567c478bd9Sstevel@tonic-gate int Hnum; 4577c478bd9Sstevel@tonic-gate int Href; 4587c478bd9Sstevel@tonic-gate struct Hist *Hnext; 4597c478bd9Sstevel@tonic-gate } Histlist; 4607c478bd9Sstevel@tonic-gate 4617c478bd9Sstevel@tonic-gate struct wordent paraml; /* Current lexical word list */ 4627c478bd9Sstevel@tonic-gate int eventno; /* Next events number */ 4637c478bd9Sstevel@tonic-gate int lastev; /* Last event reference (default) */ 4647c478bd9Sstevel@tonic-gate 4657c478bd9Sstevel@tonic-gate tchar HIST; /* history invocation character */ 4667c478bd9Sstevel@tonic-gate tchar HISTSUB; /* auto-substitute character */ 4677c478bd9Sstevel@tonic-gate 46865b0c20eSnakanon extern void *xalloc(size_t); 46965b0c20eSnakanon extern void *xcalloc(size_t, size_t); 47065b0c20eSnakanon extern void *xrealloc(void *, size_t); 47165b0c20eSnakanon extern void xfree(void *); 47265b0c20eSnakanon 4736c02b4a4Smuffin extern void Putchar(tchar); 4746c02b4a4Smuffin extern void bferr(char *) __NORETURN; 4756c02b4a4Smuffin extern void error() __NORETURN; 4766c02b4a4Smuffin extern void exitstat(void) __NORETURN; 4776c02b4a4Smuffin extern tchar *Dfix1(tchar *); 4786c02b4a4Smuffin extern tchar **blkcpy(tchar **, tchar **); 4796c02b4a4Smuffin extern tchar **blkspl(tchar **, tchar **); 4806c02b4a4Smuffin extern char **blkspl_(char **, char **); 4816c02b4a4Smuffin extern tchar **copyblk(tchar **); 4826c02b4a4Smuffin extern tchar **dobackp(tchar *, bool); 4836c02b4a4Smuffin extern tchar *domod(tchar *, int); 4846c02b4a4Smuffin extern struct Hist *enthist(int, struct wordent *, bool); 4856c02b4a4Smuffin extern tchar *getenv_(tchar *); 4866c02b4a4Smuffin extern tchar *getenvs_(char *); 4876c02b4a4Smuffin extern tchar *getwd_(tchar *); 4886c02b4a4Smuffin extern tchar **glob(tchar **); 4896c02b4a4Smuffin extern tchar *globone(tchar *); 4906c02b4a4Smuffin extern tchar *index_(tchar *, tchar); 4916c02b4a4Smuffin extern struct biltins *isbfunc(struct command *); 4926c02b4a4Smuffin extern void pintr(void); 4936c02b4a4Smuffin extern void pchild(void); 4946c02b4a4Smuffin extern tchar *putn(int); 4956c02b4a4Smuffin extern tchar *rindex_(tchar *, tchar); 4966c02b4a4Smuffin extern tchar **saveblk(tchar **); 4976c02b4a4Smuffin extern tchar *savestr(tchar *); 4986c02b4a4Smuffin extern tchar *strcat_(tchar *, tchar *); 4996c02b4a4Smuffin extern int strlen_(tchar *); 5006c02b4a4Smuffin extern tchar *strcpy_(tchar *, tchar *); 5016c02b4a4Smuffin extern tchar *strend(tchar *); 5026c02b4a4Smuffin extern tchar *strip(tchar *); 5036c02b4a4Smuffin extern tchar *strspl(tchar *, tchar *); 5046c02b4a4Smuffin extern struct command *syntax(struct wordent *, struct wordent *, int); 5056c02b4a4Smuffin extern tchar *value1(tchar *, struct varent *); 5067c478bd9Sstevel@tonic-gate 5077c478bd9Sstevel@tonic-gate #define NOSTR ((tchar *) 0) 5087c478bd9Sstevel@tonic-gate 5097c478bd9Sstevel@tonic-gate /* 5107c478bd9Sstevel@tonic-gate * setname is a macro to copy the path in bname. (see sh.err.c) 5117c478bd9Sstevel@tonic-gate * Here we are dynamically reallocating the bname to the new length 5127c478bd9Sstevel@tonic-gate * to store the new path 5137c478bd9Sstevel@tonic-gate */ 5147c478bd9Sstevel@tonic-gate tchar *bname; 5157c478bd9Sstevel@tonic-gate #define setname(a) { \ 5167c478bd9Sstevel@tonic-gate bname = xrealloc(bname, (strlen_(a)+1) * sizeof (tchar)); \ 5177c478bd9Sstevel@tonic-gate strcpy_(bname, a); \ 5187c478bd9Sstevel@tonic-gate bname[strlen_(a)] = '\0'; \ 5197c478bd9Sstevel@tonic-gate } 5207c478bd9Sstevel@tonic-gate 5217c478bd9Sstevel@tonic-gate #ifdef VFORK 5227c478bd9Sstevel@tonic-gate tchar *Vsav; 5237c478bd9Sstevel@tonic-gate tchar **Vav; 5247c478bd9Sstevel@tonic-gate tchar *Vdp; 5257c478bd9Sstevel@tonic-gate #endif 5267c478bd9Sstevel@tonic-gate 5277c478bd9Sstevel@tonic-gate tchar **evalvec; 5287c478bd9Sstevel@tonic-gate tchar *evalp; 5297c478bd9Sstevel@tonic-gate 5307c478bd9Sstevel@tonic-gate /* Conversion functions between char and tchar strings. */ 5317c478bd9Sstevel@tonic-gate tchar *strtots(/* tchar * , char * */); 5327c478bd9Sstevel@tonic-gate char *tstostr(/* char * , tchar * */); 5337c478bd9Sstevel@tonic-gate 5347c478bd9Sstevel@tonic-gate #ifndef NULL 5357c478bd9Sstevel@tonic-gate #define NULL 0 5367c478bd9Sstevel@tonic-gate #endif 5377c478bd9Sstevel@tonic-gate 5387c478bd9Sstevel@tonic-gate 5397c478bd9Sstevel@tonic-gate /* 5407c478bd9Sstevel@tonic-gate * Xhash is an array of HSHSIZ bits (HSHSIZ / 8 chars), which are used 5417c478bd9Sstevel@tonic-gate * to hash execs. If it is allocated (havhash true), then to tell 5427c478bd9Sstevel@tonic-gate * whether ``name'' is (possibly) present in the i'th component 5437c478bd9Sstevel@tonic-gate * of the variable path, you look at the bit in xhash indexed by 5447c478bd9Sstevel@tonic-gate * hash(hashname("name"), i). This is setup automatically 5457c478bd9Sstevel@tonic-gate * after .login is executed, and recomputed whenever ``path'' is 5467c478bd9Sstevel@tonic-gate * changed. 5477c478bd9Sstevel@tonic-gate * The two part hash function is designed to let texec() call the 5487c478bd9Sstevel@tonic-gate * more expensive hashname() only once and the simple hash() several 5497c478bd9Sstevel@tonic-gate * times (once for each path component checked). 5507c478bd9Sstevel@tonic-gate * Byte size is assumed to be 8. 5517c478bd9Sstevel@tonic-gate */ 5527c478bd9Sstevel@tonic-gate #define HSHSIZ (32*1024) /* 4k bytes */ 5537c478bd9Sstevel@tonic-gate #define HSHMASK (HSHSIZ - 1) 5547c478bd9Sstevel@tonic-gate #define HSHMUL 243 5557c478bd9Sstevel@tonic-gate 5567c478bd9Sstevel@tonic-gate /* 5577c478bd9Sstevel@tonic-gate * The following two arrays are used for caching. xhash 5587c478bd9Sstevel@tonic-gate * is for caching path variable and xhash2 is for cdpath 5597c478bd9Sstevel@tonic-gate * variable. 5607c478bd9Sstevel@tonic-gate */ 5617c478bd9Sstevel@tonic-gate 5627c478bd9Sstevel@tonic-gate char xhash[HSHSIZ / 8]; 5637c478bd9Sstevel@tonic-gate char xhash2[HSHSIZ / 8]; 5647c478bd9Sstevel@tonic-gate #define hash(a, b) ((a) * HSHMUL + (b) & HSHMASK) 5657c478bd9Sstevel@tonic-gate #define bit(h, b) ((h)[(b) >> 3] & 1 << ((b) & 7)) /* bit test */ 5667c478bd9Sstevel@tonic-gate #define bis(h, b) ((h)[(b) >> 3] |= 1 << ((b) & 7)) /* bit set */ 5677c478bd9Sstevel@tonic-gate #ifdef VFORK 5687c478bd9Sstevel@tonic-gate int hits, misses; 5697c478bd9Sstevel@tonic-gate #endif 570