xref: /freebsd/bin/sh/input.c (revision aa9caaf65748ace0f3cd08c2deaf3ef3048d6e4d)
14b88c807SRodney W. Grimes /*-
24b88c807SRodney W. Grimes  * Copyright (c) 1991, 1993
34b88c807SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
44b88c807SRodney W. Grimes  *
54b88c807SRodney W. Grimes  * This code is derived from software contributed to Berkeley by
64b88c807SRodney W. Grimes  * Kenneth Almquist.
74b88c807SRodney W. Grimes  *
84b88c807SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
94b88c807SRodney W. Grimes  * modification, are permitted provided that the following conditions
104b88c807SRodney W. Grimes  * are met:
114b88c807SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
124b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
134b88c807SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
144b88c807SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
154b88c807SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
164b88c807SRodney W. Grimes  * 3. All advertising materials mentioning features or use of this software
174b88c807SRodney W. Grimes  *    must display the following acknowledgement:
184b88c807SRodney W. Grimes  *	This product includes software developed by the University of
194b88c807SRodney W. Grimes  *	California, Berkeley and its contributors.
204b88c807SRodney W. Grimes  * 4. Neither the name of the University nor the names of its contributors
214b88c807SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
224b88c807SRodney W. Grimes  *    without specific prior written permission.
234b88c807SRodney W. Grimes  *
244b88c807SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
254b88c807SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
264b88c807SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
274b88c807SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
284b88c807SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
294b88c807SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
304b88c807SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
314b88c807SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
324b88c807SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
334b88c807SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
344b88c807SRodney W. Grimes  * SUCH DAMAGE.
3589730b29SDavid Greenman  *
36aa9caaf6SPeter Wemm  *	$Id: input.c,v 1.4 1995/11/03 18:50:14 peter Exp $
374b88c807SRodney W. Grimes  */
384b88c807SRodney W. Grimes 
394b88c807SRodney W. Grimes #ifndef lint
40aa9caaf6SPeter Wemm static char sccsid[] = "@(#)input.c	8.3 (Berkeley) 6/9/95";
414b88c807SRodney W. Grimes #endif /* not lint */
424b88c807SRodney W. Grimes 
43aa9caaf6SPeter Wemm #include <stdio.h>	/* defines BUFSIZ */
44aa9caaf6SPeter Wemm #include <fcntl.h>
45aa9caaf6SPeter Wemm #include <errno.h>
46aa9caaf6SPeter Wemm #include <unistd.h>
47aa9caaf6SPeter Wemm #include <stdlib.h>
48aa9caaf6SPeter Wemm #include <string.h>
49aa9caaf6SPeter Wemm 
504b88c807SRodney W. Grimes /*
514b88c807SRodney W. Grimes  * This file implements the input routines used by the parser.
524b88c807SRodney W. Grimes  */
534b88c807SRodney W. Grimes 
544b88c807SRodney W. Grimes #include "shell.h"
55aa9caaf6SPeter Wemm #include "redir.h"
564b88c807SRodney W. Grimes #include "syntax.h"
574b88c807SRodney W. Grimes #include "input.h"
584b88c807SRodney W. Grimes #include "output.h"
594b88c807SRodney W. Grimes #include "options.h"
604b88c807SRodney W. Grimes #include "memalloc.h"
614b88c807SRodney W. Grimes #include "error.h"
624b88c807SRodney W. Grimes #include "alias.h"
634b88c807SRodney W. Grimes #include "parser.h"
644b88c807SRodney W. Grimes #include "myhistedit.h"
654b88c807SRodney W. Grimes 
664b88c807SRodney W. Grimes #define EOF_NLEFT -99		/* value of parsenleft when EOF pushed back */
674b88c807SRodney W. Grimes 
684b88c807SRodney W. Grimes MKINIT
694b88c807SRodney W. Grimes struct strpush {
704b88c807SRodney W. Grimes 	struct strpush *prev;	/* preceding string on stack */
714b88c807SRodney W. Grimes 	char *prevstring;
724b88c807SRodney W. Grimes 	int prevnleft;
738f08f33eSPeter Wemm 	int prevlleft;
744b88c807SRodney W. Grimes 	struct alias *ap;	/* if push was associated with an alias */
754b88c807SRodney W. Grimes };
764b88c807SRodney W. Grimes 
774b88c807SRodney W. Grimes /*
784b88c807SRodney W. Grimes  * The parsefile structure pointed to by the global variable parsefile
794b88c807SRodney W. Grimes  * contains information about the current file being read.
804b88c807SRodney W. Grimes  */
814b88c807SRodney W. Grimes 
824b88c807SRodney W. Grimes MKINIT
834b88c807SRodney W. Grimes struct parsefile {
844b88c807SRodney W. Grimes 	struct parsefile *prev;	/* preceding file on stack */
854b88c807SRodney W. Grimes 	int linno;		/* current line */
864b88c807SRodney W. Grimes 	int fd;			/* file descriptor (or -1 if string) */
878f08f33eSPeter Wemm 	int nleft;		/* number of chars left in line */
888f08f33eSPeter Wemm 	int lleft;		/* number of lines left in buffer */
894b88c807SRodney W. Grimes 	char *nextc;		/* next char in buffer */
904b88c807SRodney W. Grimes 	char *buf;		/* input buffer */
914b88c807SRodney W. Grimes 	struct strpush *strpush; /* for pushing strings at this level */
924b88c807SRodney W. Grimes 	struct strpush basestrpush; /* so pushing one is fast */
934b88c807SRodney W. Grimes };
944b88c807SRodney W. Grimes 
954b88c807SRodney W. Grimes 
964b88c807SRodney W. Grimes int plinno = 1;			/* input line number */
974b88c807SRodney W. Grimes MKINIT int parsenleft;		/* copy of parsefile->nleft */
988f08f33eSPeter Wemm MKINIT int parselleft;		/* copy of parsefile->lleft */
994b88c807SRodney W. Grimes char *parsenextc;		/* copy of parsefile->nextc */
1004b88c807SRodney W. Grimes MKINIT struct parsefile basepf;	/* top level input file */
1014b88c807SRodney W. Grimes char basebuf[BUFSIZ];		/* buffer for top level input file */
1024b88c807SRodney W. Grimes struct parsefile *parsefile = &basepf;	/* current input file */
1034b88c807SRodney W. Grimes int init_editline = 0;		/* editline library initialized? */
1044b88c807SRodney W. Grimes int whichprompt;		/* 1 == PS1, 2 == PS2 */
1054b88c807SRodney W. Grimes 
1064b88c807SRodney W. Grimes EditLine *el;			/* cookie for editline package */
1074b88c807SRodney W. Grimes 
108aa9caaf6SPeter Wemm STATIC void pushfile __P((void));
1094b88c807SRodney W. Grimes 
1104b88c807SRodney W. Grimes #ifdef mkinit
1114b88c807SRodney W. Grimes INCLUDE "input.h"
1124b88c807SRodney W. Grimes INCLUDE "error.h"
1134b88c807SRodney W. Grimes 
1144b88c807SRodney W. Grimes INIT {
1154b88c807SRodney W. Grimes 	extern char basebuf[];
1164b88c807SRodney W. Grimes 
1174b88c807SRodney W. Grimes 	basepf.nextc = basepf.buf = basebuf;
1184b88c807SRodney W. Grimes }
1194b88c807SRodney W. Grimes 
1204b88c807SRodney W. Grimes RESET {
1214b88c807SRodney W. Grimes 	if (exception != EXSHELLPROC)
1228f08f33eSPeter Wemm 		parselleft = parsenleft = 0;	/* clear input buffer */
1234b88c807SRodney W. Grimes 	popallfiles();
1244b88c807SRodney W. Grimes }
1254b88c807SRodney W. Grimes 
1264b88c807SRodney W. Grimes SHELLPROC {
1274b88c807SRodney W. Grimes 	popallfiles();
1284b88c807SRodney W. Grimes }
1294b88c807SRodney W. Grimes #endif
1304b88c807SRodney W. Grimes 
1314b88c807SRodney W. Grimes 
1324b88c807SRodney W. Grimes /*
1334b88c807SRodney W. Grimes  * Read a line from the script.
1344b88c807SRodney W. Grimes  */
1354b88c807SRodney W. Grimes 
1364b88c807SRodney W. Grimes char *
1374b88c807SRodney W. Grimes pfgets(line, len)
1384b88c807SRodney W. Grimes 	char *line;
139aa9caaf6SPeter Wemm 	int len;
1404b88c807SRodney W. Grimes {
1414b88c807SRodney W. Grimes 	register char *p = line;
1424b88c807SRodney W. Grimes 	int nleft = len;
1434b88c807SRodney W. Grimes 	int c;
1444b88c807SRodney W. Grimes 
1454b88c807SRodney W. Grimes 	while (--nleft > 0) {
1464b88c807SRodney W. Grimes 		c = pgetc_macro();
1474b88c807SRodney W. Grimes 		if (c == PEOF) {
1484b88c807SRodney W. Grimes 			if (p == line)
1494b88c807SRodney W. Grimes 				return NULL;
1504b88c807SRodney W. Grimes 			break;
1514b88c807SRodney W. Grimes 		}
1524b88c807SRodney W. Grimes 		*p++ = c;
1534b88c807SRodney W. Grimes 		if (c == '\n')
1544b88c807SRodney W. Grimes 			break;
1554b88c807SRodney W. Grimes 	}
1564b88c807SRodney W. Grimes 	*p = '\0';
1574b88c807SRodney W. Grimes 	return line;
1584b88c807SRodney W. Grimes }
1594b88c807SRodney W. Grimes 
1604b88c807SRodney W. Grimes 
1614b88c807SRodney W. Grimes 
1624b88c807SRodney W. Grimes /*
1634b88c807SRodney W. Grimes  * Read a character from the script, returning PEOF on end of file.
1644b88c807SRodney W. Grimes  * Nul characters in the input are silently discarded.
1654b88c807SRodney W. Grimes  */
1664b88c807SRodney W. Grimes 
1674b88c807SRodney W. Grimes int
1684b88c807SRodney W. Grimes pgetc() {
1694b88c807SRodney W. Grimes 	return pgetc_macro();
1704b88c807SRodney W. Grimes }
1714b88c807SRodney W. Grimes 
1728f08f33eSPeter Wemm static int
1738f08f33eSPeter Wemm pread()
1748f08f33eSPeter Wemm {
1758f08f33eSPeter Wemm 	int nr;
1764b88c807SRodney W. Grimes 
1778f08f33eSPeter Wemm 	parsenextc = parsefile->buf;
1784b88c807SRodney W. Grimes retry:
1794b88c807SRodney W. Grimes 	if (parsefile->fd == 0 && el) {
1804b88c807SRodney W. Grimes 		const char *rl_cp;
1814b88c807SRodney W. Grimes 		int len;
1824b88c807SRodney W. Grimes 
1838f08f33eSPeter Wemm 		rl_cp = el_gets(el, &nr);
1848f08f33eSPeter Wemm 		if (rl_cp == NULL)
1858f08f33eSPeter Wemm 			nr = 0;
1868f08f33eSPeter Wemm 		else {
1878f08f33eSPeter Wemm 			/* XXX - BUFSIZE should redesign so not necessary */
1888f08f33eSPeter Wemm 			strcpy(parsenextc, rl_cp);
1894b88c807SRodney W. Grimes 		}
1904b88c807SRodney W. Grimes 
1914b88c807SRodney W. Grimes 	} else {
1928f08f33eSPeter Wemm 		nr = read(parsefile->fd, parsenextc, BUFSIZ - 1);
1934b88c807SRodney W. Grimes 	}
1948f08f33eSPeter Wemm 
1958f08f33eSPeter Wemm 	if (nr <= 0) {
1968f08f33eSPeter Wemm                 if (nr < 0) {
1974b88c807SRodney W. Grimes                         if (errno == EINTR)
1984b88c807SRodney W. Grimes                                 goto retry;
1994b88c807SRodney W. Grimes                         if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
2004b88c807SRodney W. Grimes                                 int flags = fcntl(0, F_GETFL, 0);
2014b88c807SRodney W. Grimes                                 if (flags >= 0 && flags & O_NONBLOCK) {
2024b88c807SRodney W. Grimes                                         flags &=~ O_NONBLOCK;
2034b88c807SRodney W. Grimes                                         if (fcntl(0, F_SETFL, flags) >= 0) {
2044b88c807SRodney W. Grimes 						out2str("sh: turning off NDELAY mode\n");
2054b88c807SRodney W. Grimes                                                 goto retry;
2064b88c807SRodney W. Grimes                                         }
2074b88c807SRodney W. Grimes                                 }
2084b88c807SRodney W. Grimes                         }
2094b88c807SRodney W. Grimes                 }
2108f08f33eSPeter Wemm 		nr = -1;
2118f08f33eSPeter Wemm 	}
2128f08f33eSPeter Wemm 	return nr;
2138f08f33eSPeter Wemm }
2148f08f33eSPeter Wemm 
2158f08f33eSPeter Wemm /*
2168f08f33eSPeter Wemm  * Refill the input buffer and return the next input character:
2178f08f33eSPeter Wemm  *
2188f08f33eSPeter Wemm  * 1) If a string was pushed back on the input, pop it;
2198f08f33eSPeter Wemm  * 2) If an EOF was pushed back (parsenleft == EOF_NLEFT) or we are reading
2208f08f33eSPeter Wemm  *    from a string so we can't refill the buffer, return EOF.
2218f08f33eSPeter Wemm  * 3) If there is more in the buffer, use it; else call read to fill it.
2228f08f33eSPeter Wemm  * 4) Process input up to next newline, deleting nul characters.
2238f08f33eSPeter Wemm  */
2248f08f33eSPeter Wemm 
2258f08f33eSPeter Wemm int
2268f08f33eSPeter Wemm preadbuffer() {
2278f08f33eSPeter Wemm 	char *p, *q;
2288f08f33eSPeter Wemm 	int more;
2298f08f33eSPeter Wemm 	int something;
2308f08f33eSPeter Wemm 	extern EditLine *el;
2318f08f33eSPeter Wemm 	char savec;
2328f08f33eSPeter Wemm 
2338f08f33eSPeter Wemm 	if (parsefile->strpush) {
2348f08f33eSPeter Wemm 		popstring();
2358f08f33eSPeter Wemm 		if (--parsenleft >= 0)
2368f08f33eSPeter Wemm 			return (*parsenextc++);
2378f08f33eSPeter Wemm 	}
2388f08f33eSPeter Wemm 	if (parsenleft == EOF_NLEFT || parsefile->buf == NULL)
2398f08f33eSPeter Wemm 		return PEOF;
2408f08f33eSPeter Wemm 	flushout(&output);
2418f08f33eSPeter Wemm 	flushout(&errout);
2428f08f33eSPeter Wemm 
2438f08f33eSPeter Wemm again:
2448f08f33eSPeter Wemm 	if (parselleft <= 0) {
2458f08f33eSPeter Wemm 		if ((parselleft = pread()) == -1) {
2468f08f33eSPeter Wemm 			parselleft = parsenleft = EOF_NLEFT;
2474b88c807SRodney W. Grimes 			return PEOF;
2484b88c807SRodney W. Grimes 		}
2498f08f33eSPeter Wemm 	}
2508f08f33eSPeter Wemm 
2518f08f33eSPeter Wemm 	q = p = parsenextc;
2524b88c807SRodney W. Grimes 
2534b88c807SRodney W. Grimes 	/* delete nul characters */
2544b88c807SRodney W. Grimes 	something = 0;
2558f08f33eSPeter Wemm 	for (more = 1; more;) {
2568f08f33eSPeter Wemm 		switch (*p) {
2578f08f33eSPeter Wemm 		case '\0':
2588f08f33eSPeter Wemm 			p++;	/* Skip nul */
2598f08f33eSPeter Wemm 			goto check;
2604b88c807SRodney W. Grimes 
2618f08f33eSPeter Wemm 		case '\t':
2628f08f33eSPeter Wemm 		case ' ':
2638f08f33eSPeter Wemm 			break;
2648f08f33eSPeter Wemm 
2658f08f33eSPeter Wemm 		case '\n':
2668f08f33eSPeter Wemm 			parsenleft = q - parsenextc;
2678f08f33eSPeter Wemm 			more = 0; /* Stop processing here */
2688f08f33eSPeter Wemm 			break;
2698f08f33eSPeter Wemm 
2708f08f33eSPeter Wemm 		default:
2718f08f33eSPeter Wemm 			something = 1;
2728f08f33eSPeter Wemm 			break;
2738f08f33eSPeter Wemm 		}
2748f08f33eSPeter Wemm 
2758f08f33eSPeter Wemm 		*q++ = *p++;
2768f08f33eSPeter Wemm check:
2778f08f33eSPeter Wemm 		if (--parselleft <= 0) {
2788f08f33eSPeter Wemm 			parsenleft = q - parsenextc - 1;
2798f08f33eSPeter Wemm 			if (parsenleft < 0)
2808f08f33eSPeter Wemm 				goto again;
2818f08f33eSPeter Wemm 			*q = '\0';
2828f08f33eSPeter Wemm 			more = 0;
2838f08f33eSPeter Wemm 		}
2848f08f33eSPeter Wemm 	}
2858f08f33eSPeter Wemm 
2868f08f33eSPeter Wemm 	savec = *q;
2878f08f33eSPeter Wemm 	*q = '\0';
2888f08f33eSPeter Wemm 
2898f08f33eSPeter Wemm 
2904b88c807SRodney W. Grimes 	if (parsefile->fd == 0 && hist && something) {
2914b88c807SRodney W. Grimes 		INTOFF;
2928f08f33eSPeter Wemm 		history(hist, whichprompt == 1 ? H_ENTER : H_ADD, parsenextc);
2934b88c807SRodney W. Grimes 		INTON;
2944b88c807SRodney W. Grimes 	}
2958f08f33eSPeter Wemm 
2968f08f33eSPeter Wemm 
2974b88c807SRodney W. Grimes 	if (vflag) {
2988f08f33eSPeter Wemm 		out2str(parsenextc);
2994b88c807SRodney W. Grimes 		flushout(out2);
3004b88c807SRodney W. Grimes 	}
3018f08f33eSPeter Wemm 
3028f08f33eSPeter Wemm 	*q = savec;
3038f08f33eSPeter Wemm 
3044b88c807SRodney W. Grimes 	return *parsenextc++;
3054b88c807SRodney W. Grimes }
3064b88c807SRodney W. Grimes 
3074b88c807SRodney W. Grimes /*
3084b88c807SRodney W. Grimes  * Undo the last call to pgetc.  Only one character may be pushed back.
3094b88c807SRodney W. Grimes  * PEOF may be pushed back.
3104b88c807SRodney W. Grimes  */
3114b88c807SRodney W. Grimes 
3124b88c807SRodney W. Grimes void
3134b88c807SRodney W. Grimes pungetc() {
3144b88c807SRodney W. Grimes 	parsenleft++;
3154b88c807SRodney W. Grimes 	parsenextc--;
3164b88c807SRodney W. Grimes }
3174b88c807SRodney W. Grimes 
3184b88c807SRodney W. Grimes /*
3194b88c807SRodney W. Grimes  * Push a string back onto the input at this current parsefile level.
3204b88c807SRodney W. Grimes  * We handle aliases this way.
3214b88c807SRodney W. Grimes  */
3224b88c807SRodney W. Grimes void
3234b88c807SRodney W. Grimes pushstring(s, len, ap)
3244b88c807SRodney W. Grimes 	char *s;
3254b88c807SRodney W. Grimes 	int len;
3264b88c807SRodney W. Grimes 	void *ap;
3274b88c807SRodney W. Grimes 	{
3284b88c807SRodney W. Grimes 	struct strpush *sp;
3294b88c807SRodney W. Grimes 
3304b88c807SRodney W. Grimes 	INTOFF;
3314b88c807SRodney W. Grimes /*dprintf("*** calling pushstring: %s, %d\n", s, len);*/
3324b88c807SRodney W. Grimes 	if (parsefile->strpush) {
3334b88c807SRodney W. Grimes 		sp = ckmalloc(sizeof (struct strpush));
3344b88c807SRodney W. Grimes 		sp->prev = parsefile->strpush;
3354b88c807SRodney W. Grimes 		parsefile->strpush = sp;
3364b88c807SRodney W. Grimes 	} else
3374b88c807SRodney W. Grimes 		sp = parsefile->strpush = &(parsefile->basestrpush);
3384b88c807SRodney W. Grimes 	sp->prevstring = parsenextc;
3394b88c807SRodney W. Grimes 	sp->prevnleft = parsenleft;
3408f08f33eSPeter Wemm 	sp->prevlleft = parselleft;
3414b88c807SRodney W. Grimes 	sp->ap = (struct alias *)ap;
3424b88c807SRodney W. Grimes 	if (ap)
3434b88c807SRodney W. Grimes 		((struct alias *)ap)->flag |= ALIASINUSE;
3444b88c807SRodney W. Grimes 	parsenextc = s;
3454b88c807SRodney W. Grimes 	parsenleft = len;
3464b88c807SRodney W. Grimes 	INTON;
3474b88c807SRodney W. Grimes }
3484b88c807SRodney W. Grimes 
349aa9caaf6SPeter Wemm void
3504b88c807SRodney W. Grimes popstring()
3514b88c807SRodney W. Grimes {
3524b88c807SRodney W. Grimes 	struct strpush *sp = parsefile->strpush;
3534b88c807SRodney W. Grimes 
3544b88c807SRodney W. Grimes 	INTOFF;
3554b88c807SRodney W. Grimes 	parsenextc = sp->prevstring;
3564b88c807SRodney W. Grimes 	parsenleft = sp->prevnleft;
3578f08f33eSPeter Wemm 	parselleft = sp->prevlleft;
3584b88c807SRodney W. Grimes /*dprintf("*** calling popstring: restoring to '%s'\n", parsenextc);*/
3594b88c807SRodney W. Grimes 	if (sp->ap)
3604b88c807SRodney W. Grimes 		sp->ap->flag &= ~ALIASINUSE;
3614b88c807SRodney W. Grimes 	parsefile->strpush = sp->prev;
3624b88c807SRodney W. Grimes 	if (sp != &(parsefile->basestrpush))
3634b88c807SRodney W. Grimes 		ckfree(sp);
3644b88c807SRodney W. Grimes 	INTON;
3654b88c807SRodney W. Grimes }
3664b88c807SRodney W. Grimes 
3674b88c807SRodney W. Grimes /*
3684b88c807SRodney W. Grimes  * Set the input to take input from a file.  If push is set, push the
3694b88c807SRodney W. Grimes  * old input onto the stack first.
3704b88c807SRodney W. Grimes  */
3714b88c807SRodney W. Grimes 
3724b88c807SRodney W. Grimes void
3734b88c807SRodney W. Grimes setinputfile(fname, push)
3744b88c807SRodney W. Grimes 	char *fname;
375aa9caaf6SPeter Wemm 	int push;
3764b88c807SRodney W. Grimes {
3774b88c807SRodney W. Grimes 	int fd;
3784b88c807SRodney W. Grimes 	int fd2;
3794b88c807SRodney W. Grimes 
3804b88c807SRodney W. Grimes 	INTOFF;
3814b88c807SRodney W. Grimes 	if ((fd = open(fname, O_RDONLY)) < 0)
3824b88c807SRodney W. Grimes 		error("Can't open %s", fname);
3834b88c807SRodney W. Grimes 	if (fd < 10) {
3844b88c807SRodney W. Grimes 		fd2 = copyfd(fd, 10);
3854b88c807SRodney W. Grimes 		close(fd);
3864b88c807SRodney W. Grimes 		if (fd2 < 0)
3874b88c807SRodney W. Grimes 			error("Out of file descriptors");
3884b88c807SRodney W. Grimes 		fd = fd2;
3894b88c807SRodney W. Grimes 	}
3904b88c807SRodney W. Grimes 	setinputfd(fd, push);
3914b88c807SRodney W. Grimes 	INTON;
3924b88c807SRodney W. Grimes }
3934b88c807SRodney W. Grimes 
3944b88c807SRodney W. Grimes 
3954b88c807SRodney W. Grimes /*
3964b88c807SRodney W. Grimes  * Like setinputfile, but takes an open file descriptor.  Call this with
3974b88c807SRodney W. Grimes  * interrupts off.
3984b88c807SRodney W. Grimes  */
3994b88c807SRodney W. Grimes 
4004b88c807SRodney W. Grimes void
401aa9caaf6SPeter Wemm setinputfd(fd, push)
402aa9caaf6SPeter Wemm 	int fd, push;
403aa9caaf6SPeter Wemm {
4044b88c807SRodney W. Grimes 	if (push) {
4054b88c807SRodney W. Grimes 		pushfile();
4064b88c807SRodney W. Grimes 		parsefile->buf = ckmalloc(BUFSIZ);
4074b88c807SRodney W. Grimes 	}
4084b88c807SRodney W. Grimes 	if (parsefile->fd > 0)
4094b88c807SRodney W. Grimes 		close(parsefile->fd);
4104b88c807SRodney W. Grimes 	parsefile->fd = fd;
4114b88c807SRodney W. Grimes 	if (parsefile->buf == NULL)
4124b88c807SRodney W. Grimes 		parsefile->buf = ckmalloc(BUFSIZ);
4138f08f33eSPeter Wemm 	parselleft = parsenleft = 0;
4144b88c807SRodney W. Grimes 	plinno = 1;
4154b88c807SRodney W. Grimes }
4164b88c807SRodney W. Grimes 
4174b88c807SRodney W. Grimes 
4184b88c807SRodney W. Grimes /*
4194b88c807SRodney W. Grimes  * Like setinputfile, but takes input from a string.
4204b88c807SRodney W. Grimes  */
4214b88c807SRodney W. Grimes 
4224b88c807SRodney W. Grimes void
4234b88c807SRodney W. Grimes setinputstring(string, push)
4244b88c807SRodney W. Grimes 	char *string;
425aa9caaf6SPeter Wemm 	int push;
4264b88c807SRodney W. Grimes 	{
4274b88c807SRodney W. Grimes 	INTOFF;
4284b88c807SRodney W. Grimes 	if (push)
4294b88c807SRodney W. Grimes 		pushfile();
4304b88c807SRodney W. Grimes 	parsenextc = string;
4318f08f33eSPeter Wemm 	parselleft = parsenleft = strlen(string);
4324b88c807SRodney W. Grimes 	parsefile->buf = NULL;
4334b88c807SRodney W. Grimes 	plinno = 1;
4344b88c807SRodney W. Grimes 	INTON;
4354b88c807SRodney W. Grimes }
4364b88c807SRodney W. Grimes 
4374b88c807SRodney W. Grimes 
4384b88c807SRodney W. Grimes 
4394b88c807SRodney W. Grimes /*
4404b88c807SRodney W. Grimes  * To handle the "." command, a stack of input files is used.  Pushfile
4414b88c807SRodney W. Grimes  * adds a new entry to the stack and popfile restores the previous level.
4424b88c807SRodney W. Grimes  */
4434b88c807SRodney W. Grimes 
4444b88c807SRodney W. Grimes STATIC void
4454b88c807SRodney W. Grimes pushfile() {
4464b88c807SRodney W. Grimes 	struct parsefile *pf;
4474b88c807SRodney W. Grimes 
4484b88c807SRodney W. Grimes 	parsefile->nleft = parsenleft;
4498f08f33eSPeter Wemm 	parsefile->lleft = parselleft;
4504b88c807SRodney W. Grimes 	parsefile->nextc = parsenextc;
4514b88c807SRodney W. Grimes 	parsefile->linno = plinno;
4524b88c807SRodney W. Grimes 	pf = (struct parsefile *)ckmalloc(sizeof (struct parsefile));
4534b88c807SRodney W. Grimes 	pf->prev = parsefile;
4544b88c807SRodney W. Grimes 	pf->fd = -1;
4554b88c807SRodney W. Grimes 	pf->strpush = NULL;
4564b88c807SRodney W. Grimes 	pf->basestrpush.prev = NULL;
4574b88c807SRodney W. Grimes 	parsefile = pf;
4584b88c807SRodney W. Grimes }
4594b88c807SRodney W. Grimes 
4604b88c807SRodney W. Grimes 
4614b88c807SRodney W. Grimes void
4624b88c807SRodney W. Grimes popfile() {
4634b88c807SRodney W. Grimes 	struct parsefile *pf = parsefile;
4644b88c807SRodney W. Grimes 
4654b88c807SRodney W. Grimes 	INTOFF;
4664b88c807SRodney W. Grimes 	if (pf->fd >= 0)
4674b88c807SRodney W. Grimes 		close(pf->fd);
4684b88c807SRodney W. Grimes 	if (pf->buf)
4694b88c807SRodney W. Grimes 		ckfree(pf->buf);
4704b88c807SRodney W. Grimes 	while (pf->strpush)
4714b88c807SRodney W. Grimes 		popstring();
4724b88c807SRodney W. Grimes 	parsefile = pf->prev;
4734b88c807SRodney W. Grimes 	ckfree(pf);
4744b88c807SRodney W. Grimes 	parsenleft = parsefile->nleft;
4758f08f33eSPeter Wemm 	parselleft = parsefile->lleft;
4764b88c807SRodney W. Grimes 	parsenextc = parsefile->nextc;
4774b88c807SRodney W. Grimes 	plinno = parsefile->linno;
4784b88c807SRodney W. Grimes 	INTON;
4794b88c807SRodney W. Grimes }
4804b88c807SRodney W. Grimes 
4814b88c807SRodney W. Grimes 
4824b88c807SRodney W. Grimes /*
4834b88c807SRodney W. Grimes  * Return to top level.
4844b88c807SRodney W. Grimes  */
4854b88c807SRodney W. Grimes 
4864b88c807SRodney W. Grimes void
4874b88c807SRodney W. Grimes popallfiles() {
4884b88c807SRodney W. Grimes 	while (parsefile != &basepf)
4894b88c807SRodney W. Grimes 		popfile();
4904b88c807SRodney W. Grimes }
4914b88c807SRodney W. Grimes 
4924b88c807SRodney W. Grimes 
4934b88c807SRodney W. Grimes 
4944b88c807SRodney W. Grimes /*
4954b88c807SRodney W. Grimes  * Close the file(s) that the shell is reading commands from.  Called
4964b88c807SRodney W. Grimes  * after a fork is done.
4974b88c807SRodney W. Grimes  */
4984b88c807SRodney W. Grimes 
4994b88c807SRodney W. Grimes void
5004b88c807SRodney W. Grimes closescript() {
5014b88c807SRodney W. Grimes 	popallfiles();
5024b88c807SRodney W. Grimes 	if (parsefile->fd > 0) {
5034b88c807SRodney W. Grimes 		close(parsefile->fd);
5044b88c807SRodney W. Grimes 		parsefile->fd = 0;
5054b88c807SRodney W. Grimes 	}
5064b88c807SRodney W. Grimes }
507