Home | History | Annotate | Line # | Download | only in csh
dol.c revision 1.12
      1  1.12   mycroft /*	$NetBSD: dol.c,v 1.12 1998/07/28 11:41:42 mycroft Exp $	*/
      2   1.7       cgd 
      3   1.1       cgd /*-
      4   1.5   mycroft  * Copyright (c) 1980, 1991, 1993
      5   1.5   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.10  christos #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38   1.7       cgd #if 0
     39   1.7       cgd static char sccsid[] = "@(#)dol.c	8.1 (Berkeley) 5/31/93";
     40   1.7       cgd #else
     41  1.12   mycroft __RCSID("$NetBSD: dol.c,v 1.12 1998/07/28 11:41:42 mycroft Exp $");
     42   1.7       cgd #endif
     43   1.1       cgd #endif /* not lint */
     44   1.1       cgd 
     45   1.1       cgd #include <sys/types.h>
     46   1.1       cgd #include <fcntl.h>
     47   1.1       cgd #include <errno.h>
     48   1.1       cgd #include <stdlib.h>
     49   1.1       cgd #include <string.h>
     50   1.1       cgd #include <unistd.h>
     51   1.1       cgd #if __STDC__
     52   1.1       cgd # include <stdarg.h>
     53   1.1       cgd #else
     54   1.1       cgd # include <varargs.h>
     55   1.1       cgd #endif
     56   1.1       cgd 
     57   1.1       cgd #include "csh.h"
     58   1.1       cgd #include "extern.h"
     59   1.1       cgd 
     60   1.1       cgd /*
     61   1.1       cgd  * These routines perform variable substitution and quoting via ' and ".
     62   1.1       cgd  * To this point these constructs have been preserved in the divided
     63   1.1       cgd  * input words.  Here we expand variables and turn quoting via ' and " into
     64   1.1       cgd  * QUOTE bits on characters (which prevent further interpretation).
     65   1.1       cgd  * If the `:q' modifier was applied during history expansion, then
     66   1.1       cgd  * some QUOTEing may have occurred already, so we dont "trim()" here.
     67   1.1       cgd  */
     68   1.1       cgd 
     69   1.1       cgd static int Dpeekc, Dpeekrd;	/* Peeks for DgetC and Dreadc */
     70   1.1       cgd static Char *Dcp, **Dvp;	/* Input vector for Dreadc */
     71   1.1       cgd 
     72   1.1       cgd #define	DEOF	-1
     73   1.1       cgd 
     74   1.1       cgd #define	unDgetC(c)	Dpeekc = c
     75   1.1       cgd 
     76   1.5   mycroft #define QUOTES		(_QF|_QB|_ESC)	/* \ ' " ` */
     77   1.1       cgd 
     78   1.1       cgd /*
     79   1.1       cgd  * The following variables give the information about the current
     80   1.1       cgd  * $ expansion, recording the current word position, the remaining
     81   1.1       cgd  * words within this expansion, the count of remaining words, and the
     82   1.1       cgd  * information about any : modifier which is being applied.
     83   1.1       cgd  */
     84   1.5   mycroft #define MAXWLEN (BUFSIZ - 4)
     85   1.5   mycroft #define MAXMOD MAXWLEN		/* This cannot overflow	*/
     86   1.1       cgd static Char *dolp;		/* Remaining chars from this word */
     87   1.1       cgd static Char **dolnxt;		/* Further words */
     88   1.1       cgd static int dolcnt;		/* Count of further words */
     89   1.5   mycroft static Char dolmod[MAXMOD];	/* : modifier character */
     90   1.5   mycroft static int dolnmod;		/* Number of modifiers */
     91   1.1       cgd static int dolmcnt;		/* :gx -> 10000, else 1 */
     92   1.5   mycroft static int dolwcnt;		/* :wx -> 10000, else 1 */
     93   1.1       cgd 
     94   1.1       cgd static void	 Dfix2 __P((Char **));
     95   1.5   mycroft static Char	*Dpack __P((Char *, Char *));
     96   1.1       cgd static int	 Dword __P((void));
     97   1.1       cgd static void	 dolerror __P((Char *));
     98   1.1       cgd static int	 DgetC __P((int));
     99   1.1       cgd static void	 Dgetdol __P((void));
    100   1.1       cgd static void	 fixDolMod __P((void));
    101   1.1       cgd static void	 setDolp __P((Char *));
    102   1.1       cgd static void	 unDredc __P((int));
    103   1.1       cgd static int	 Dredc __P((void));
    104   1.1       cgd static void	 Dtestq __P((int));
    105   1.1       cgd 
    106   1.1       cgd 
    107   1.1       cgd /*
    108   1.1       cgd  * Fix up the $ expansions and quotations in the
    109   1.1       cgd  * argument list to command t.
    110   1.1       cgd  */
    111   1.1       cgd void
    112   1.1       cgd Dfix(t)
    113   1.9       tls     struct command *t;
    114   1.1       cgd {
    115   1.9       tls     Char **pp;
    116   1.9       tls     Char *p;
    117   1.1       cgd 
    118   1.1       cgd     if (noexec)
    119   1.1       cgd 	return;
    120   1.1       cgd     /* Note that t_dcom isn't trimmed thus !...:q's aren't lost */
    121   1.5   mycroft     for (pp = t->t_dcom; (p = *pp++) != NULL;)
    122   1.1       cgd 	for (; *p; p++) {
    123   1.1       cgd 	    if (cmap(*p, _DOL | QUOTES)) {	/* $, \, ', ", ` */
    124   1.1       cgd 		Dfix2(t->t_dcom);	/* found one */
    125   1.1       cgd 		blkfree(t->t_dcom);
    126   1.1       cgd 		t->t_dcom = gargv;
    127   1.1       cgd 		gargv = 0;
    128   1.1       cgd 		return;
    129   1.1       cgd 	    }
    130   1.1       cgd 	}
    131   1.1       cgd }
    132   1.1       cgd 
    133   1.1       cgd /*
    134   1.1       cgd  * $ substitute one word, for i/o redirection
    135   1.1       cgd  */
    136   1.1       cgd Char   *
    137   1.1       cgd Dfix1(cp)
    138   1.9       tls     Char *cp;
    139   1.1       cgd {
    140   1.1       cgd     Char   *Dv[2];
    141   1.1       cgd 
    142   1.1       cgd     if (noexec)
    143   1.1       cgd 	return (0);
    144   1.1       cgd     Dv[0] = cp;
    145   1.1       cgd     Dv[1] = NULL;
    146   1.1       cgd     Dfix2(Dv);
    147   1.1       cgd     if (gargc != 1) {
    148   1.5   mycroft 	setname(vis_str(cp));
    149   1.1       cgd 	stderror(ERR_NAME | ERR_AMBIG);
    150   1.1       cgd     }
    151   1.1       cgd     cp = Strsave(gargv[0]);
    152   1.1       cgd     blkfree(gargv), gargv = 0;
    153   1.1       cgd     return (cp);
    154   1.1       cgd }
    155   1.1       cgd 
    156   1.1       cgd /*
    157   1.1       cgd  * Subroutine to do actual fixing after state initialization.
    158   1.1       cgd  */
    159   1.1       cgd static void
    160   1.1       cgd Dfix2(v)
    161   1.1       cgd     Char  **v;
    162   1.1       cgd {
    163   1.1       cgd     ginit();			/* Initialize glob's area pointers */
    164   1.1       cgd     Dvp = v;
    165   1.1       cgd     Dcp = STRNULL;		/* Setup input vector for Dreadc */
    166   1.1       cgd     unDgetC(0);
    167   1.1       cgd     unDredc(0);			/* Clear out any old peeks (at error) */
    168   1.1       cgd     dolp = 0;
    169   1.1       cgd     dolcnt = 0;			/* Clear out residual $ expands (...) */
    170   1.1       cgd     while (Dword())
    171   1.1       cgd 	continue;
    172   1.1       cgd }
    173   1.1       cgd 
    174   1.1       cgd /*
    175   1.1       cgd  * Pack up more characters in this word
    176   1.1       cgd  */
    177   1.1       cgd static Char *
    178   1.1       cgd Dpack(wbuf, wp)
    179   1.1       cgd     Char   *wbuf, *wp;
    180   1.1       cgd {
    181   1.9       tls     int c;
    182   1.9       tls     int i = MAXWLEN - (wp - wbuf);
    183   1.1       cgd 
    184   1.1       cgd     for (;;) {
    185   1.1       cgd 	c = DgetC(DODOL);
    186   1.1       cgd 	if (c == '\\') {
    187   1.1       cgd 	    c = DgetC(0);
    188   1.1       cgd 	    if (c == DEOF) {
    189   1.1       cgd 		unDredc(c);
    190   1.1       cgd 		*wp = 0;
    191   1.1       cgd 		Gcat(STRNULL, wbuf);
    192   1.1       cgd 		return (NULL);
    193   1.1       cgd 	    }
    194   1.1       cgd 	    if (c == '\n')
    195   1.1       cgd 		c = ' ';
    196   1.1       cgd 	    else
    197   1.1       cgd 		c |= QUOTE;
    198   1.1       cgd 	}
    199   1.1       cgd 	if (c == DEOF) {
    200   1.1       cgd 	    unDredc(c);
    201   1.1       cgd 	    *wp = 0;
    202   1.1       cgd 	    Gcat(STRNULL, wbuf);
    203   1.1       cgd 	    return (NULL);
    204   1.1       cgd 	}
    205   1.5   mycroft 	if (cmap(c, _SP | _NL | _QF | _QB)) {	/* sp \t\n'"` */
    206   1.1       cgd 	    unDgetC(c);
    207   1.1       cgd 	    if (cmap(c, QUOTES))
    208   1.1       cgd 		return (wp);
    209   1.1       cgd 	    *wp++ = 0;
    210   1.1       cgd 	    Gcat(STRNULL, wbuf);
    211   1.1       cgd 	    return (NULL);
    212   1.1       cgd 	}
    213  1.12   mycroft 	if (--i <= 0)
    214   1.1       cgd 	    stderror(ERR_WTOOLONG);
    215   1.1       cgd 	*wp++ = c;
    216   1.1       cgd     }
    217   1.1       cgd }
    218   1.1       cgd 
    219   1.1       cgd /*
    220   1.1       cgd  * Get a word.  This routine is analogous to the routine
    221   1.1       cgd  * word() in sh.lex.c for the main lexical input.  One difference
    222   1.1       cgd  * here is that we don't get a newline to terminate our expansion.
    223   1.1       cgd  * Rather, DgetC will return a DEOF when we hit the end-of-input.
    224   1.1       cgd  */
    225   1.1       cgd static int
    226   1.1       cgd Dword()
    227   1.1       cgd {
    228   1.9       tls     int c, c1;
    229   1.1       cgd     Char    wbuf[BUFSIZ];
    230   1.9       tls     Char *wp = wbuf;
    231   1.9       tls     int i = MAXWLEN;
    232   1.9       tls     bool dolflg;
    233   1.1       cgd     bool    sofar = 0, done = 0;
    234   1.1       cgd 
    235   1.1       cgd     while (!done) {
    236   1.1       cgd 	done = 1;
    237   1.1       cgd 	c = DgetC(DODOL);
    238   1.1       cgd 	switch (c) {
    239   1.1       cgd 
    240   1.1       cgd 	case DEOF:
    241   1.1       cgd 	    if (sofar == 0)
    242   1.1       cgd 		return (0);
    243   1.1       cgd 	    /* finish this word and catch the code above the next time */
    244   1.1       cgd 	    unDredc(c);
    245  1.11   mycroft 	    /* FALLTHROUGH */
    246   1.1       cgd 
    247   1.1       cgd 	case '\n':
    248   1.1       cgd 	    *wp = 0;
    249   1.1       cgd 	    Gcat(STRNULL, wbuf);
    250   1.1       cgd 	    return (1);
    251   1.1       cgd 
    252   1.1       cgd 	case ' ':
    253   1.1       cgd 	case '\t':
    254   1.1       cgd 	    done = 0;
    255   1.1       cgd 	    break;
    256   1.1       cgd 
    257   1.1       cgd 	case '`':
    258   1.1       cgd 	    /* We preserve ` quotations which are done yet later */
    259   1.1       cgd 	    *wp++ = c, --i;
    260  1.11   mycroft 	    /* FALLTHROUGH */
    261   1.1       cgd 	case '\'':
    262   1.1       cgd 	case '"':
    263   1.1       cgd 	    /*
    264   1.1       cgd 	     * Note that DgetC never returns a QUOTES character from an
    265   1.1       cgd 	     * expansion, so only true input quotes will get us here or out.
    266   1.1       cgd 	     */
    267   1.1       cgd 	    c1 = c;
    268   1.1       cgd 	    dolflg = c1 == '"' ? DODOL : 0;
    269   1.1       cgd 	    for (;;) {
    270   1.1       cgd 		c = DgetC(dolflg);
    271   1.1       cgd 		if (c == c1)
    272   1.1       cgd 		    break;
    273  1.12   mycroft 		if (c == '\n' || c == DEOF)
    274   1.1       cgd 		    stderror(ERR_UNMATCHED, c1);
    275   1.1       cgd 		if ((c & (QUOTE | TRIM)) == ('\n' | QUOTE))
    276   1.1       cgd 		    --wp, ++i;
    277  1.12   mycroft 		if (--i <= 0)
    278   1.1       cgd 		    stderror(ERR_WTOOLONG);
    279   1.1       cgd 		switch (c1) {
    280   1.1       cgd 
    281   1.1       cgd 		case '"':
    282   1.1       cgd 		    /*
    283   1.1       cgd 		     * Leave any `s alone for later. Other chars are all
    284   1.1       cgd 		     * quoted, thus `...` can tell it was within "...".
    285   1.1       cgd 		     */
    286   1.1       cgd 		    *wp++ = c == '`' ? '`' : c | QUOTE;
    287   1.1       cgd 		    break;
    288   1.1       cgd 
    289   1.1       cgd 		case '\'':
    290   1.1       cgd 		    /* Prevent all further interpretation */
    291   1.1       cgd 		    *wp++ = c | QUOTE;
    292   1.1       cgd 		    break;
    293   1.1       cgd 
    294   1.1       cgd 		case '`':
    295   1.1       cgd 		    /* Leave all text alone for later */
    296   1.1       cgd 		    *wp++ = c;
    297   1.1       cgd 		    break;
    298   1.5   mycroft 
    299   1.5   mycroft 		default:
    300   1.5   mycroft 		    break;
    301   1.1       cgd 		}
    302   1.1       cgd 	    }
    303   1.1       cgd 	    if (c1 == '`')
    304   1.5   mycroft 		*wp++ = '`' /* i--; eliminated */;
    305   1.1       cgd 	    sofar = 1;
    306   1.1       cgd 	    if ((wp = Dpack(wbuf, wp)) == NULL)
    307   1.1       cgd 		return (1);
    308   1.1       cgd 	    else {
    309   1.1       cgd 		i = MAXWLEN - (wp - wbuf);
    310   1.1       cgd 		done = 0;
    311   1.1       cgd 	    }
    312   1.1       cgd 	    break;
    313   1.1       cgd 
    314   1.1       cgd 	case '\\':
    315   1.1       cgd 	    c = DgetC(0);	/* No $ subst! */
    316   1.1       cgd 	    if (c == '\n' || c == DEOF) {
    317   1.1       cgd 		done = 0;
    318   1.1       cgd 		break;
    319   1.1       cgd 	    }
    320   1.1       cgd 	    c |= QUOTE;
    321   1.1       cgd 	    break;
    322   1.5   mycroft 
    323   1.5   mycroft 	default:
    324   1.5   mycroft 	    break;
    325   1.1       cgd 	}
    326   1.1       cgd 	if (done) {
    327   1.1       cgd 	    unDgetC(c);
    328   1.1       cgd 	    sofar = 1;
    329   1.1       cgd 	    if ((wp = Dpack(wbuf, wp)) == NULL)
    330   1.1       cgd 		return (1);
    331   1.1       cgd 	    else {
    332   1.1       cgd 		i = MAXWLEN - (wp - wbuf);
    333   1.1       cgd 		done = 0;
    334   1.1       cgd 	    }
    335   1.1       cgd 	}
    336   1.1       cgd     }
    337   1.1       cgd     /* Really NOTREACHED */
    338   1.1       cgd     return (0);
    339   1.1       cgd }
    340   1.1       cgd 
    341   1.1       cgd 
    342   1.1       cgd /*
    343   1.1       cgd  * Get a character, performing $ substitution unless flag is 0.
    344   1.1       cgd  * Any QUOTES character which is returned from a $ expansion is
    345   1.1       cgd  * QUOTEd so that it will not be recognized above.
    346   1.1       cgd  */
    347   1.1       cgd static int
    348   1.1       cgd DgetC(flag)
    349   1.9       tls     int flag;
    350   1.1       cgd {
    351   1.9       tls     int c;
    352   1.1       cgd 
    353   1.1       cgd top:
    354   1.5   mycroft     if ((c = Dpeekc) != '\0') {
    355   1.1       cgd 	Dpeekc = 0;
    356   1.1       cgd 	return (c);
    357   1.1       cgd     }
    358   1.1       cgd     if (lap) {
    359   1.1       cgd 	c = *lap++ & (QUOTE | TRIM);
    360   1.1       cgd 	if (c == 0) {
    361   1.1       cgd 	    lap = 0;
    362   1.1       cgd 	    goto top;
    363   1.1       cgd 	}
    364   1.1       cgd quotspec:
    365   1.1       cgd 	if (cmap(c, QUOTES))
    366   1.1       cgd 	    return (c | QUOTE);
    367   1.1       cgd 	return (c);
    368   1.1       cgd     }
    369   1.1       cgd     if (dolp) {
    370   1.5   mycroft 	if ((c = *dolp++ & (QUOTE | TRIM)) != '\0')
    371   1.1       cgd 	    goto quotspec;
    372   1.1       cgd 	if (dolcnt > 0) {
    373   1.1       cgd 	    setDolp(*dolnxt++);
    374   1.1       cgd 	    --dolcnt;
    375   1.1       cgd 	    return (' ');
    376   1.1       cgd 	}
    377   1.1       cgd 	dolp = 0;
    378   1.1       cgd     }
    379   1.1       cgd     if (dolcnt > 0) {
    380   1.1       cgd 	setDolp(*dolnxt++);
    381   1.1       cgd 	--dolcnt;
    382   1.1       cgd 	goto top;
    383   1.1       cgd     }
    384   1.1       cgd     c = Dredc();
    385   1.1       cgd     if (c == '$' && flag) {
    386   1.1       cgd 	Dgetdol();
    387   1.1       cgd 	goto top;
    388   1.1       cgd     }
    389   1.1       cgd     return (c);
    390   1.1       cgd }
    391   1.1       cgd 
    392   1.1       cgd static Char *nulvec[] = {0};
    393   1.5   mycroft static struct varent nulargv = {nulvec, STRargv, { NULL, NULL, NULL }, 0};
    394   1.1       cgd 
    395   1.1       cgd static void
    396   1.1       cgd dolerror(s)
    397   1.1       cgd     Char   *s;
    398   1.1       cgd {
    399   1.5   mycroft     setname(vis_str(s));
    400   1.1       cgd     stderror(ERR_NAME | ERR_RANGE);
    401  1.11   mycroft     /* NOTREACHED */
    402   1.1       cgd }
    403   1.1       cgd 
    404   1.1       cgd /*
    405   1.1       cgd  * Handle the multitudinous $ expansion forms.
    406   1.1       cgd  * Ugh.
    407   1.1       cgd  */
    408   1.1       cgd static void
    409   1.1       cgd Dgetdol()
    410   1.1       cgd {
    411   1.9       tls     Char *np;
    412   1.9       tls     struct varent *vp = NULL;
    413   1.1       cgd     Char    name[4 * MAXVARLEN + 1];
    414   1.1       cgd     int     c, sc;
    415   1.1       cgd     int     subscr = 0, lwb = 1, upb = 0;
    416   1.1       cgd     bool    dimen = 0, bitset = 0;
    417   1.1       cgd     char    tnp;
    418   1.1       cgd     Char    wbuf[BUFSIZ];
    419   1.5   mycroft     static Char *dolbang = NULL;
    420   1.1       cgd 
    421   1.5   mycroft     dolnmod = dolmcnt = dolwcnt = 0;
    422   1.1       cgd     c = sc = DgetC(0);
    423   1.1       cgd     if (c == '{')
    424   1.1       cgd 	c = DgetC(0);		/* sc is { to take } later */
    425   1.1       cgd     if ((c & TRIM) == '#')
    426   1.1       cgd 	dimen++, c = DgetC(0);	/* $# takes dimension */
    427   1.1       cgd     else if (c == '?')
    428   1.1       cgd 	bitset++, c = DgetC(0);	/* $? tests existence */
    429   1.1       cgd     switch (c) {
    430   1.1       cgd 
    431   1.5   mycroft     case '!':
    432  1.12   mycroft 	if (dimen || bitset)
    433   1.5   mycroft 	    stderror(ERR_SYNTAX);
    434   1.5   mycroft 	if (backpid != 0) {
    435   1.5   mycroft 	    if (dolbang)
    436   1.5   mycroft 		xfree((ptr_t) dolbang);
    437   1.5   mycroft 	    setDolp(dolbang = putn(backpid));
    438   1.5   mycroft 	}
    439   1.5   mycroft 	goto eatbrac;
    440   1.5   mycroft 
    441   1.1       cgd     case '$':
    442  1.12   mycroft 	if (dimen || bitset)
    443   1.1       cgd 	    stderror(ERR_SYNTAX);
    444   1.1       cgd 	setDolp(doldol);
    445   1.1       cgd 	goto eatbrac;
    446   1.1       cgd 
    447   1.1       cgd     case '<' | QUOTE:
    448  1.12   mycroft 	if (bitset)
    449   1.1       cgd 	    stderror(ERR_NOTALLOWED, "$?<");
    450  1.12   mycroft 	if (dimen)
    451   1.1       cgd 	    stderror(ERR_NOTALLOWED, "$?#");
    452   1.1       cgd 	for (np = wbuf; read(OLDSTD, &tnp, 1) == 1; np++) {
    453   1.5   mycroft 	    *np = (unsigned char) tnp;
    454  1.12   mycroft 	    if (np >= &wbuf[BUFSIZ - 1])
    455   1.1       cgd 		stderror(ERR_LTOOLONG);
    456   1.5   mycroft 	    if (tnp == '\n')
    457   1.1       cgd 		break;
    458   1.1       cgd 	}
    459   1.1       cgd 	*np = 0;
    460   1.1       cgd 	/*
    461   1.1       cgd 	 * KLUDGE: dolmod is set here because it will cause setDolp to call
    462   1.1       cgd 	 * domod and thus to copy wbuf. Otherwise setDolp would use it
    463   1.1       cgd 	 * directly. If we saved it ourselves, no one would know when to free
    464   1.1       cgd 	 * it. The actual function of the 'q' causes filename expansion not to
    465   1.1       cgd 	 * be done on the interpolated value.
    466   1.1       cgd 	 */
    467   1.5   mycroft 	dolmod[dolnmod++] = 'q';
    468   1.1       cgd 	dolmcnt = 10000;
    469   1.1       cgd 	setDolp(wbuf);
    470   1.1       cgd 	goto eatbrac;
    471   1.1       cgd 
    472   1.1       cgd     case DEOF:
    473   1.1       cgd     case '\n':
    474   1.1       cgd 	stderror(ERR_SYNTAX);
    475   1.1       cgd 	/* NOTREACHED */
    476   1.1       cgd 
    477   1.1       cgd     case '*':
    478   1.1       cgd 	(void) Strcpy(name, STRargv);
    479   1.1       cgd 	vp = adrof(STRargv);
    480   1.1       cgd 	subscr = -1;		/* Prevent eating [...] */
    481   1.1       cgd 	break;
    482   1.1       cgd 
    483   1.1       cgd     default:
    484   1.1       cgd 	np = name;
    485   1.1       cgd 	if (Isdigit(c)) {
    486  1.12   mycroft 	    if (dimen)
    487   1.1       cgd 		stderror(ERR_NOTALLOWED, "$#<num>");
    488   1.1       cgd 	    subscr = 0;
    489   1.1       cgd 	    do {
    490   1.1       cgd 		subscr = subscr * 10 + c - '0';
    491   1.1       cgd 		c = DgetC(0);
    492   1.1       cgd 	    } while (Isdigit(c));
    493   1.1       cgd 	    unDredc(c);
    494   1.1       cgd 	    if (subscr < 0) {
    495   1.1       cgd 		dolerror(vp->v_name);
    496   1.1       cgd 		return;
    497   1.1       cgd 	    }
    498   1.1       cgd 	    if (subscr == 0) {
    499   1.1       cgd 		if (bitset) {
    500   1.1       cgd 		    dolp = ffile ? STR1 : STR0;
    501   1.1       cgd 		    goto eatbrac;
    502   1.1       cgd 		}
    503  1.12   mycroft 		if (ffile == 0)
    504   1.1       cgd 		    stderror(ERR_DOLZERO);
    505   1.1       cgd 		fixDolMod();
    506   1.1       cgd 		setDolp(ffile);
    507   1.1       cgd 		goto eatbrac;
    508   1.1       cgd 	    }
    509  1.12   mycroft 	    if (bitset)
    510   1.1       cgd 		stderror(ERR_DOLQUEST);
    511   1.1       cgd 	    vp = adrof(STRargv);
    512   1.1       cgd 	    if (vp == 0) {
    513   1.1       cgd 		vp = &nulargv;
    514   1.1       cgd 		goto eatmod;
    515   1.1       cgd 	    }
    516   1.1       cgd 	    break;
    517   1.1       cgd 	}
    518  1.12   mycroft 	if (!alnum(c))
    519   1.1       cgd 	    stderror(ERR_VARALNUM);
    520   1.1       cgd 	for (;;) {
    521   1.1       cgd 	    *np++ = c;
    522   1.1       cgd 	    c = DgetC(0);
    523   1.1       cgd 	    if (!alnum(c))
    524   1.1       cgd 		break;
    525  1.12   mycroft 	    if (np >= &name[MAXVARLEN])
    526   1.1       cgd 		stderror(ERR_VARTOOLONG);
    527   1.1       cgd 	}
    528   1.1       cgd 	*np++ = 0;
    529   1.1       cgd 	unDredc(c);
    530   1.1       cgd 	vp = adrof(name);
    531   1.1       cgd     }
    532   1.1       cgd     if (bitset) {
    533   1.1       cgd 	dolp = (vp || getenv(short2str(name))) ? STR1 : STR0;
    534   1.1       cgd 	goto eatbrac;
    535   1.1       cgd     }
    536   1.1       cgd     if (vp == 0) {
    537   1.1       cgd 	np = str2short(getenv(short2str(name)));
    538   1.1       cgd 	if (np) {
    539   1.1       cgd 	    fixDolMod();
    540   1.1       cgd 	    setDolp(np);
    541   1.1       cgd 	    goto eatbrac;
    542   1.1       cgd 	}
    543   1.1       cgd 	udvar(name);
    544   1.1       cgd     }
    545   1.1       cgd     c = DgetC(0);
    546   1.1       cgd     upb = blklen(vp->vec);
    547   1.1       cgd     if (dimen == 0 && subscr == 0 && c == '[') {
    548   1.1       cgd 	np = name;
    549   1.1       cgd 	for (;;) {
    550   1.1       cgd 	    c = DgetC(DODOL);	/* Allow $ expand within [ ] */
    551   1.1       cgd 	    if (c == ']')
    552   1.1       cgd 		break;
    553  1.12   mycroft 	    if (c == '\n' || c == DEOF)
    554   1.1       cgd 		stderror(ERR_INCBR);
    555  1.12   mycroft 	    if (np >= &name[sizeof(name) / sizeof(Char) - 2])
    556   1.1       cgd 		stderror(ERR_VARTOOLONG);
    557   1.1       cgd 	    *np++ = c;
    558   1.1       cgd 	}
    559   1.1       cgd 	*np = 0, np = name;
    560  1.12   mycroft 	if (dolp || dolcnt)	/* $ exp must end before ] */
    561   1.1       cgd 	    stderror(ERR_EXPORD);
    562  1.12   mycroft 	if (!*np)
    563   1.1       cgd 	    stderror(ERR_SYNTAX);
    564   1.1       cgd 	if (Isdigit(*np)) {
    565   1.1       cgd 	    int     i;
    566   1.1       cgd 
    567   1.5   mycroft 	    for (i = 0; Isdigit(*np); i = i * 10 + *np++ - '0')
    568   1.5   mycroft 		continue;
    569   1.1       cgd 	    if ((i < 0 || i > upb) && !any("-*", *np)) {
    570   1.1       cgd 		dolerror(vp->v_name);
    571   1.1       cgd 		return;
    572   1.1       cgd 	    }
    573   1.1       cgd 	    lwb = i;
    574   1.1       cgd 	    if (!*np)
    575   1.1       cgd 		upb = lwb, np = STRstar;
    576   1.1       cgd 	}
    577   1.1       cgd 	if (*np == '*')
    578   1.1       cgd 	    np++;
    579  1.12   mycroft 	else if (*np != '-')
    580   1.1       cgd 	    stderror(ERR_MISSING, '-');
    581  1.12   mycroft 	else {
    582   1.9       tls 	    int i = upb;
    583   1.1       cgd 
    584   1.1       cgd 	    np++;
    585   1.1       cgd 	    if (Isdigit(*np)) {
    586   1.1       cgd 		i = 0;
    587   1.1       cgd 		while (Isdigit(*np))
    588   1.1       cgd 		    i = i * 10 + *np++ - '0';
    589   1.1       cgd 		if (i < 0 || i > upb) {
    590   1.1       cgd 		    dolerror(vp->v_name);
    591   1.1       cgd 		    return;
    592   1.1       cgd 		}
    593   1.1       cgd 	    }
    594   1.1       cgd 	    if (i < lwb)
    595   1.1       cgd 		upb = lwb - 1;
    596   1.1       cgd 	    else
    597   1.1       cgd 		upb = i;
    598   1.1       cgd 	}
    599   1.1       cgd 	if (lwb == 0) {
    600   1.1       cgd 	    if (upb != 0) {
    601   1.1       cgd 		dolerror(vp->v_name);
    602   1.1       cgd 		return;
    603   1.1       cgd 	    }
    604   1.1       cgd 	    upb = -1;
    605   1.1       cgd 	}
    606  1.12   mycroft 	if (*np)
    607   1.1       cgd 	    stderror(ERR_SYNTAX);
    608   1.1       cgd     }
    609   1.1       cgd     else {
    610   1.1       cgd 	if (subscr > 0)
    611   1.1       cgd 	    if (subscr > upb)
    612   1.1       cgd 		lwb = 1, upb = 0;
    613   1.1       cgd 	    else
    614   1.1       cgd 		lwb = upb = subscr;
    615   1.1       cgd 	unDredc(c);
    616   1.1       cgd     }
    617   1.1       cgd     if (dimen) {
    618   1.1       cgd 	Char   *cp = putn(upb - lwb + 1);
    619   1.1       cgd 
    620   1.1       cgd 	addla(cp);
    621   1.1       cgd 	xfree((ptr_t) cp);
    622   1.1       cgd     }
    623   1.1       cgd     else {
    624   1.1       cgd eatmod:
    625   1.1       cgd 	fixDolMod();
    626   1.1       cgd 	dolnxt = &vp->vec[lwb - 1];
    627   1.1       cgd 	dolcnt = upb - lwb + 1;
    628   1.1       cgd     }
    629   1.1       cgd eatbrac:
    630   1.1       cgd     if (sc == '{') {
    631   1.1       cgd 	c = Dredc();
    632  1.12   mycroft 	if (c != '}')
    633   1.1       cgd 	    stderror(ERR_MISSING, '}');
    634   1.1       cgd     }
    635   1.1       cgd }
    636   1.1       cgd 
    637   1.1       cgd static void
    638   1.1       cgd fixDolMod()
    639   1.1       cgd {
    640   1.9       tls     int c;
    641   1.1       cgd 
    642   1.1       cgd     c = DgetC(0);
    643   1.1       cgd     if (c == ':') {
    644   1.5   mycroft 	do {
    645   1.5   mycroft 	    c = DgetC(0), dolmcnt = 1, dolwcnt = 1;
    646   1.5   mycroft 	    if (c == 'g' || c == 'a') {
    647   1.5   mycroft 		if (c == 'g')
    648   1.5   mycroft 		    dolmcnt = 10000;
    649   1.5   mycroft 		else
    650   1.5   mycroft 		    dolwcnt = 10000;
    651   1.5   mycroft 		c = DgetC(0);
    652   1.5   mycroft 	    }
    653   1.5   mycroft 	    if ((c == 'g' && dolmcnt != 10000) ||
    654   1.5   mycroft 		(c == 'a' && dolwcnt != 10000)) {
    655   1.5   mycroft 		if (c == 'g')
    656   1.5   mycroft 		    dolmcnt = 10000;
    657   1.5   mycroft 		else
    658   1.5   mycroft 		    dolwcnt = 10000;
    659   1.5   mycroft 		c = DgetC(0);
    660   1.5   mycroft 	    }
    661   1.5   mycroft 
    662   1.5   mycroft 	    if (c == 's') {	/* [eichin:19910926.0755EST] */
    663   1.5   mycroft 		int delimcnt = 2;
    664   1.5   mycroft 		int delim = DgetC(0);
    665   1.5   mycroft 		dolmod[dolnmod++] = c;
    666   1.5   mycroft 		dolmod[dolnmod++] = delim;
    667   1.5   mycroft 
    668   1.5   mycroft 		if (!delim || letter(delim)
    669   1.5   mycroft 		    || Isdigit(delim) || any(" \t\n", delim)) {
    670   1.5   mycroft 		    seterror(ERR_BADSUBST);
    671   1.5   mycroft 		    break;
    672   1.5   mycroft 		}
    673   1.5   mycroft 		while ((c = DgetC(0)) != (-1)) {
    674   1.5   mycroft 		    dolmod[dolnmod++] = c;
    675   1.5   mycroft 		    if(c == delim) delimcnt--;
    676   1.5   mycroft 		    if(!delimcnt) break;
    677   1.5   mycroft 		}
    678   1.5   mycroft 		if(delimcnt) {
    679   1.5   mycroft 		    seterror(ERR_BADSUBST);
    680   1.5   mycroft 		    break;
    681   1.5   mycroft 		}
    682   1.5   mycroft 		continue;
    683   1.5   mycroft 	    }
    684  1.12   mycroft 	    if (!any("htrqxes", c))
    685   1.5   mycroft 		stderror(ERR_BADMOD, c);
    686   1.5   mycroft 	    dolmod[dolnmod++] = c;
    687   1.5   mycroft 	    if (c == 'q')
    688   1.5   mycroft 		dolmcnt = 10000;
    689   1.5   mycroft 	}
    690   1.5   mycroft 	while ((c = DgetC(0)) == ':');
    691   1.5   mycroft 	unDredc(c);
    692   1.1       cgd     }
    693   1.1       cgd     else
    694   1.1       cgd 	unDredc(c);
    695   1.1       cgd }
    696   1.1       cgd 
    697   1.1       cgd static void
    698   1.1       cgd setDolp(cp)
    699   1.9       tls     Char *cp;
    700   1.1       cgd {
    701   1.9       tls     Char *dp;
    702   1.5   mycroft     int i;
    703   1.1       cgd 
    704   1.5   mycroft     if (dolnmod == 0 || dolmcnt == 0) {
    705   1.1       cgd 	dolp = cp;
    706   1.1       cgd 	return;
    707   1.1       cgd     }
    708   1.5   mycroft     dp = cp = Strsave(cp);
    709   1.5   mycroft     for (i = 0; i < dolnmod; i++) {
    710   1.5   mycroft 	/* handle s// [eichin:19910926.0510EST] */
    711   1.5   mycroft 	if(dolmod[i] == 's') {
    712   1.5   mycroft 	    int delim;
    713   1.5   mycroft 	    Char *lhsub, *rhsub, *np;
    714   1.5   mycroft 	    size_t lhlen = 0, rhlen = 0;
    715   1.5   mycroft 	    int didmod = 0;
    716   1.5   mycroft 
    717   1.5   mycroft 	    delim = dolmod[++i];
    718   1.5   mycroft 	    if (!delim || letter(delim)
    719   1.5   mycroft 		|| Isdigit(delim) || any(" \t\n", delim)) {
    720   1.5   mycroft 		seterror(ERR_BADSUBST);
    721   1.5   mycroft 		break;
    722   1.5   mycroft 	    }
    723   1.5   mycroft 	    lhsub = &dolmod[++i];
    724   1.5   mycroft 	    while(dolmod[i] != delim && dolmod[++i]) {
    725   1.5   mycroft 		lhlen++;
    726   1.5   mycroft 	    }
    727   1.5   mycroft 	    dolmod[i] = 0;
    728   1.5   mycroft 	    rhsub = &dolmod[++i];
    729   1.5   mycroft 	    while(dolmod[i] != delim && dolmod[++i]) {
    730   1.5   mycroft 		rhlen++;
    731   1.5   mycroft 	    }
    732   1.5   mycroft 	    dolmod[i] = 0;
    733   1.5   mycroft 
    734   1.5   mycroft 	    do {
    735   1.5   mycroft 		dp = Strstr(cp, lhsub);
    736   1.5   mycroft 		if (dp) {
    737   1.5   mycroft 		    np = (Char *) xmalloc((size_t)
    738   1.5   mycroft 					  ((Strlen(cp) + 1 - lhlen + rhlen) *
    739   1.5   mycroft 					  sizeof(Char)));
    740   1.5   mycroft 		    (void) Strncpy(np, cp, dp - cp);
    741   1.5   mycroft 		    (void) Strcpy(np + (dp - cp), rhsub);
    742   1.5   mycroft 		    (void) Strcpy(np + (dp - cp) + rhlen, dp + lhlen);
    743   1.5   mycroft 
    744   1.5   mycroft 		    xfree((ptr_t) cp);
    745   1.5   mycroft 		    dp = cp = np;
    746   1.5   mycroft 		    didmod = 1;
    747   1.5   mycroft 		} else {
    748   1.5   mycroft 		    /* should this do a seterror? */
    749   1.5   mycroft 		    break;
    750   1.5   mycroft 		}
    751   1.5   mycroft 	    }
    752   1.5   mycroft 	    while (dolwcnt == 10000);
    753   1.5   mycroft 	    /*
    754   1.5   mycroft 	     * restore dolmod for additional words
    755   1.5   mycroft 	     */
    756   1.5   mycroft 	    dolmod[i] = rhsub[-1] = delim;
    757   1.5   mycroft 	    if (didmod)
    758   1.5   mycroft 		dolmcnt--;
    759   1.5   mycroft 	    else
    760   1.5   mycroft 		break;
    761   1.5   mycroft         } else {
    762   1.5   mycroft 	    int didmod = 0;
    763   1.5   mycroft 
    764   1.5   mycroft 	    do {
    765   1.5   mycroft 		if ((dp = domod(cp, dolmod[i]))) {
    766   1.5   mycroft 		    didmod = 1;
    767   1.5   mycroft 		    if (Strcmp(cp, dp) == 0) {
    768   1.5   mycroft 			xfree((ptr_t) cp);
    769   1.5   mycroft 			cp = dp;
    770   1.5   mycroft 			break;
    771   1.5   mycroft 		    }
    772   1.5   mycroft 		    else {
    773   1.5   mycroft 			xfree((ptr_t) cp);
    774   1.5   mycroft 			cp = dp;
    775   1.5   mycroft 		    }
    776   1.5   mycroft 		}
    777   1.5   mycroft 		else
    778   1.5   mycroft 		    break;
    779   1.5   mycroft 	    }
    780   1.5   mycroft 	    while (dolwcnt == 10000);
    781   1.5   mycroft 	    dp = cp;
    782   1.5   mycroft 	    if (didmod)
    783   1.5   mycroft 		dolmcnt--;
    784   1.5   mycroft 	    else
    785   1.5   mycroft 		break;
    786   1.5   mycroft 	}
    787   1.5   mycroft     }
    788   1.5   mycroft 
    789   1.1       cgd     if (dp) {
    790   1.1       cgd 	addla(dp);
    791   1.1       cgd 	xfree((ptr_t) dp);
    792   1.1       cgd     }
    793   1.1       cgd     else
    794   1.1       cgd 	addla(cp);
    795   1.5   mycroft 
    796   1.1       cgd     dolp = STRNULL;
    797  1.12   mycroft     if (seterr)
    798   1.1       cgd 	stderror(ERR_OLD);
    799   1.1       cgd }
    800   1.1       cgd 
    801   1.1       cgd static void
    802   1.1       cgd unDredc(c)
    803   1.1       cgd     int     c;
    804   1.1       cgd {
    805   1.1       cgd 
    806   1.1       cgd     Dpeekrd = c;
    807   1.1       cgd }
    808   1.1       cgd 
    809   1.1       cgd static int
    810   1.1       cgd Dredc()
    811   1.1       cgd {
    812   1.9       tls     int c;
    813   1.1       cgd 
    814   1.5   mycroft     if ((c = Dpeekrd) != '\0') {
    815   1.1       cgd 	Dpeekrd = 0;
    816   1.1       cgd 	return (c);
    817   1.1       cgd     }
    818   1.1       cgd     if (Dcp && (c = *Dcp++))
    819   1.1       cgd 	return (c & (QUOTE | TRIM));
    820   1.1       cgd     if (*Dvp == 0) {
    821   1.1       cgd 	Dcp = 0;
    822   1.1       cgd 	return (DEOF);
    823   1.1       cgd     }
    824   1.1       cgd     Dcp = *Dvp++;
    825   1.1       cgd     return (' ');
    826   1.1       cgd }
    827   1.1       cgd 
    828   1.1       cgd static void
    829   1.1       cgd Dtestq(c)
    830   1.9       tls     int c;
    831   1.1       cgd {
    832   1.1       cgd 
    833   1.1       cgd     if (cmap(c, QUOTES))
    834   1.1       cgd 	gflag = 1;
    835   1.1       cgd }
    836   1.1       cgd 
    837   1.1       cgd /*
    838   1.1       cgd  * Form a shell temporary file (in unit 0) from the words
    839   1.1       cgd  * of the shell input up to EOF or a line the same as "term".
    840   1.1       cgd  * Unit 0 should have been closed before this call.
    841   1.1       cgd  */
    842   1.1       cgd void
    843   1.5   mycroft /*ARGSUSED*/
    844   1.1       cgd heredoc(term)
    845   1.5   mycroft     Char *term;
    846   1.1       cgd {
    847   1.9       tls     int c;
    848   1.1       cgd     Char   *Dv[2];
    849   1.1       cgd     Char    obuf[BUFSIZ], lbuf[BUFSIZ], mbuf[BUFSIZ];
    850   1.1       cgd     int     ocnt, lcnt, mcnt;
    851   1.9       tls     Char   *lbp, *obp, *mbp;
    852   1.1       cgd     Char  **vp;
    853   1.1       cgd     bool    quoted;
    854   1.1       cgd     char   *tmp;
    855   1.1       cgd 
    856   1.6   mycroft     tmp = short2str(shtemp);
    857  1.12   mycroft     if (open(tmp, O_RDWR | O_CREAT | O_TRUNC, 0600) < 0)
    858   1.1       cgd 	stderror(ERR_SYSTEM, tmp, strerror(errno));
    859   1.1       cgd     (void) unlink(tmp);		/* 0 0 inode! */
    860   1.1       cgd     Dv[0] = term;
    861   1.1       cgd     Dv[1] = NULL;
    862   1.1       cgd     gflag = 0;
    863   1.1       cgd     trim(Dv);
    864   1.1       cgd     rscan(Dv, Dtestq);
    865   1.1       cgd     quoted = gflag;
    866   1.1       cgd     ocnt = BUFSIZ;
    867   1.1       cgd     obp = obuf;
    868   1.1       cgd     for (;;) {
    869   1.1       cgd 	/*
    870   1.1       cgd 	 * Read up a line
    871   1.1       cgd 	 */
    872   1.1       cgd 	lbp = lbuf;
    873   1.1       cgd 	lcnt = BUFSIZ - 4;
    874   1.1       cgd 	for (;;) {
    875   1.1       cgd 	    c = readc(1);	/* 1 -> Want EOF returns */
    876   1.1       cgd 	    if (c < 0 || c == '\n')
    877   1.1       cgd 		break;
    878   1.5   mycroft 	    if ((c &= TRIM) != '\0') {
    879   1.1       cgd 		*lbp++ = c;
    880   1.1       cgd 		if (--lcnt < 0) {
    881   1.1       cgd 		    setname("<<");
    882   1.1       cgd 		    stderror(ERR_NAME | ERR_OVERFLOW);
    883   1.1       cgd 		}
    884   1.1       cgd 	    }
    885   1.1       cgd 	}
    886   1.1       cgd 	*lbp = 0;
    887   1.1       cgd 
    888   1.1       cgd 	/*
    889   1.1       cgd 	 * Check for EOF or compare to terminator -- before expansion
    890   1.1       cgd 	 */
    891   1.1       cgd 	if (c < 0 || eq(lbuf, term)) {
    892   1.1       cgd 	    (void) write(0, short2str(obuf), (size_t) (BUFSIZ - ocnt));
    893   1.8       jtc 	    (void) lseek(0, (off_t) 0, SEEK_SET);
    894   1.1       cgd 	    return;
    895   1.1       cgd 	}
    896   1.1       cgd 
    897   1.1       cgd 	/*
    898   1.1       cgd 	 * If term was quoted or -n just pass it on
    899   1.1       cgd 	 */
    900   1.1       cgd 	if (quoted || noexec) {
    901   1.1       cgd 	    *lbp++ = '\n';
    902   1.1       cgd 	    *lbp = 0;
    903   1.5   mycroft 	    for (lbp = lbuf; (c = *lbp++) != '\0';) {
    904   1.1       cgd 		*obp++ = c;
    905   1.1       cgd 		if (--ocnt == 0) {
    906   1.1       cgd 		    (void) write(0, short2str(obuf), BUFSIZ);
    907   1.1       cgd 		    obp = obuf;
    908   1.1       cgd 		    ocnt = BUFSIZ;
    909   1.1       cgd 		}
    910   1.1       cgd 	    }
    911   1.1       cgd 	    continue;
    912   1.1       cgd 	}
    913   1.1       cgd 
    914   1.1       cgd 	/*
    915   1.1       cgd 	 * Term wasn't quoted so variable and then command expand the input
    916   1.1       cgd 	 * line
    917   1.1       cgd 	 */
    918   1.1       cgd 	Dcp = lbuf;
    919   1.1       cgd 	Dvp = Dv + 1;
    920   1.1       cgd 	mbp = mbuf;
    921   1.1       cgd 	mcnt = BUFSIZ - 4;
    922   1.1       cgd 	for (;;) {
    923   1.1       cgd 	    c = DgetC(DODOL);
    924   1.1       cgd 	    if (c == DEOF)
    925   1.1       cgd 		break;
    926   1.1       cgd 	    if ((c &= TRIM) == 0)
    927   1.1       cgd 		continue;
    928   1.1       cgd 	    /* \ quotes \ $ ` here */
    929   1.1       cgd 	    if (c == '\\') {
    930   1.1       cgd 		c = DgetC(0);
    931   1.1       cgd 		if (!any("$\\`", c))
    932   1.1       cgd 		    unDgetC(c | QUOTE), c = '\\';
    933   1.1       cgd 		else
    934   1.1       cgd 		    c |= QUOTE;
    935   1.1       cgd 	    }
    936   1.1       cgd 	    *mbp++ = c;
    937   1.1       cgd 	    if (--mcnt == 0) {
    938   1.1       cgd 		setname("<<");
    939   1.1       cgd 		stderror(ERR_NAME | ERR_OVERFLOW);
    940   1.1       cgd 	    }
    941   1.1       cgd 	}
    942   1.1       cgd 	*mbp++ = 0;
    943   1.1       cgd 
    944   1.1       cgd 	/*
    945   1.1       cgd 	 * If any ` in line do command substitution
    946   1.1       cgd 	 */
    947   1.1       cgd 	mbp = mbuf;
    948   1.1       cgd 	if (any(short2str(mbp), '`')) {
    949   1.1       cgd 	    /*
    950   1.1       cgd 	     * 1 arg to dobackp causes substitution to be literal. Words are
    951   1.1       cgd 	     * broken only at newlines so that all blanks and tabs are
    952   1.1       cgd 	     * preserved.  Blank lines (null words) are not discarded.
    953   1.1       cgd 	     */
    954   1.1       cgd 	    vp = dobackp(mbuf, 1);
    955   1.1       cgd 	}
    956   1.1       cgd 	else
    957   1.1       cgd 	    /* Setup trivial vector similar to return of dobackp */
    958   1.1       cgd 	    Dv[0] = mbp, Dv[1] = NULL, vp = Dv;
    959   1.1       cgd 
    960   1.1       cgd 	/*
    961   1.1       cgd 	 * Resurrect the words from the command substitution each separated by
    962   1.1       cgd 	 * a newline.  Note that the last newline of a command substitution
    963   1.1       cgd 	 * will have been discarded, but we put a newline after the last word
    964   1.1       cgd 	 * because this represents the newline after the last input line!
    965   1.1       cgd 	 */
    966   1.1       cgd 	for (; *vp; vp++) {
    967   1.1       cgd 	    for (mbp = *vp; *mbp; mbp++) {
    968   1.1       cgd 		*obp++ = *mbp & TRIM;
    969   1.1       cgd 		if (--ocnt == 0) {
    970   1.1       cgd 		    (void) write(0, short2str(obuf), BUFSIZ);
    971   1.1       cgd 		    obp = obuf;
    972   1.1       cgd 		    ocnt = BUFSIZ;
    973   1.1       cgd 		}
    974   1.1       cgd 	    }
    975   1.1       cgd 	    *obp++ = '\n';
    976   1.1       cgd 	    if (--ocnt == 0) {
    977   1.1       cgd 		(void) write(0, short2str(obuf), BUFSIZ);
    978   1.1       cgd 		obp = obuf;
    979   1.1       cgd 		ocnt = BUFSIZ;
    980   1.1       cgd 	    }
    981   1.1       cgd 	}
    982   1.1       cgd 	if (pargv)
    983   1.1       cgd 	    blkfree(pargv), pargv = 0;
    984   1.1       cgd     }
    985   1.1       cgd }
    986