1994-05-26 06:18:55 +00:00
|
|
|
/*-
|
|
|
|
* Copyright (c) 1991, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to Berkeley by
|
|
|
|
* Kenneth Almquist.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef lint
|
1998-05-18 06:44:24 +00:00
|
|
|
#if 0
|
|
|
|
static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
|
|
|
|
#endif
|
1994-05-26 06:18:55 +00:00
|
|
|
#endif /* not lint */
|
2002-06-30 05:15:05 +00:00
|
|
|
#include <sys/cdefs.h>
|
|
|
|
__FBSDID("$FreeBSD$");
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1996-09-01 10:22:36 +00:00
|
|
|
#include <stdlib.h>
|
2005-08-13 08:26:58 +00:00
|
|
|
#include <unistd.h>
|
2010-06-19 10:33:04 +00:00
|
|
|
#include <stdio.h>
|
1996-09-01 10:22:36 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
#include "shell.h"
|
|
|
|
#include "parser.h"
|
|
|
|
#include "nodes.h"
|
|
|
|
#include "expand.h" /* defines rmescapes() */
|
|
|
|
#include "syntax.h"
|
|
|
|
#include "options.h"
|
|
|
|
#include "input.h"
|
|
|
|
#include "output.h"
|
|
|
|
#include "var.h"
|
|
|
|
#include "error.h"
|
|
|
|
#include "memalloc.h"
|
|
|
|
#include "mystring.h"
|
|
|
|
#include "alias.h"
|
1996-09-01 10:22:36 +00:00
|
|
|
#include "show.h"
|
2000-04-20 09:49:16 +00:00
|
|
|
#include "eval.h"
|
1996-09-01 10:22:36 +00:00
|
|
|
#ifndef NO_HISTORY
|
1994-05-26 06:18:55 +00:00
|
|
|
#include "myhistedit.h"
|
1996-09-01 10:22:36 +00:00
|
|
|
#endif
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Shell command parser.
|
|
|
|
*/
|
|
|
|
|
2005-03-01 03:35:58 +00:00
|
|
|
#define EOFMARKLEN 79
|
|
|
|
#define PROMPTLEN 128
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/* values returned by readtoken */
|
1996-09-01 10:22:36 +00:00
|
|
|
#include "token.h"
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct heredoc {
|
|
|
|
struct heredoc *next; /* next here document in list */
|
|
|
|
union node *here; /* redirection node */
|
|
|
|
char *eofmark; /* string indicating end of input */
|
|
|
|
int striptabs; /* if set, strip leading tabs */
|
|
|
|
};
|
|
|
|
|
2010-04-03 20:55:56 +00:00
|
|
|
struct parser_temp {
|
|
|
|
struct parser_temp *next;
|
|
|
|
void *data;
|
|
|
|
};
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
|
2010-10-13 04:01:01 +00:00
|
|
|
static struct heredoc *heredoclist; /* list of here documents to read */
|
|
|
|
static int doprompt; /* if set, prompt the user */
|
|
|
|
static int needprompt; /* true if interactive and at start of line */
|
|
|
|
static int lasttoken; /* last token read */
|
1994-05-26 06:18:55 +00:00
|
|
|
MKINIT int tokpushback; /* last token pushed back */
|
2010-10-13 04:01:01 +00:00
|
|
|
static char *wordtext; /* text of last word returned by readtoken */
|
1994-05-26 06:18:55 +00:00
|
|
|
MKINIT int checkkwd; /* 1 == check for kwds, 2 == also eat newlines */
|
2010-10-13 04:01:01 +00:00
|
|
|
static struct nodelist *backquotelist;
|
|
|
|
static union node *redirnode;
|
|
|
|
static struct heredoc *heredoc;
|
|
|
|
static int quoteflag; /* set if (part of) last token was quoted */
|
|
|
|
static int startlinno; /* line # where last token started */
|
|
|
|
static int funclinno; /* line # where the current function started */
|
|
|
|
static struct parser_temp *parser_temp;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
1996-09-03 14:16:06 +00:00
|
|
|
/* XXX When 'noaliases' is set to one, no alias expansion takes place. */
|
|
|
|
static int noaliases = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *list(int);
|
|
|
|
static union node *andor(void);
|
|
|
|
static union node *pipeline(void);
|
|
|
|
static union node *command(void);
|
|
|
|
static union node *simplecmd(union node **, union node *);
|
|
|
|
static union node *makename(void);
|
|
|
|
static void parsefname(void);
|
|
|
|
static void parseheredoc(void);
|
|
|
|
static int peektoken(void);
|
|
|
|
static int readtoken(void);
|
|
|
|
static int xxreadtoken(void);
|
|
|
|
static int readtoken1(int, char const *, char *, int);
|
|
|
|
static int noexpand(char *);
|
|
|
|
static void synexpect(int) __dead2;
|
|
|
|
static void synerror(const char *) __dead2;
|
|
|
|
static void setprompt(int);
|
|
|
|
|
|
|
|
|
|
|
|
static void *
|
2010-04-03 20:55:56 +00:00
|
|
|
parser_temp_alloc(size_t len)
|
|
|
|
{
|
|
|
|
struct parser_temp *t;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
t = ckmalloc(sizeof(*t));
|
|
|
|
t->data = NULL;
|
|
|
|
t->next = parser_temp;
|
|
|
|
parser_temp = t;
|
|
|
|
t->data = ckmalloc(len);
|
|
|
|
INTON;
|
|
|
|
return t->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void *
|
2010-04-03 20:55:56 +00:00
|
|
|
parser_temp_realloc(void *ptr, size_t len)
|
|
|
|
{
|
|
|
|
struct parser_temp *t;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
t = parser_temp;
|
|
|
|
if (ptr != t->data)
|
|
|
|
error("bug: parser_temp_realloc misused");
|
|
|
|
t->data = ckrealloc(t->data, len);
|
|
|
|
INTON;
|
|
|
|
return t->data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2010-04-03 20:55:56 +00:00
|
|
|
parser_temp_free_upto(void *ptr)
|
|
|
|
{
|
|
|
|
struct parser_temp *t;
|
|
|
|
int done = 0;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
while (parser_temp != NULL && !done) {
|
|
|
|
t = parser_temp;
|
|
|
|
parser_temp = t->next;
|
|
|
|
done = t->data == ptr;
|
|
|
|
ckfree(t->data);
|
|
|
|
ckfree(t);
|
|
|
|
}
|
|
|
|
INTON;
|
|
|
|
if (!done)
|
|
|
|
error("bug: parser_temp_free_upto misused");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2010-04-03 20:55:56 +00:00
|
|
|
parser_temp_free_all(void)
|
|
|
|
{
|
|
|
|
struct parser_temp *t;
|
|
|
|
|
|
|
|
INTOFF;
|
|
|
|
while (parser_temp != NULL) {
|
|
|
|
t = parser_temp;
|
|
|
|
parser_temp = t->next;
|
|
|
|
ckfree(t->data);
|
|
|
|
ckfree(t);
|
|
|
|
}
|
|
|
|
INTON;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/*
|
|
|
|
* Read and parse a command. Returns NEOF on end of file. (NULL is a
|
|
|
|
* valid parse tree indicating a blank line.)
|
|
|
|
*/
|
|
|
|
|
|
|
|
union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
parsecmd(int interact)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
int t;
|
|
|
|
|
2010-04-03 20:55:56 +00:00
|
|
|
/* This assumes the parser is not re-entered,
|
|
|
|
* which could happen if we add command substitution on PS1/PS2.
|
|
|
|
*/
|
|
|
|
parser_temp_free_all();
|
2010-05-30 14:20:32 +00:00
|
|
|
heredoclist = NULL;
|
2010-04-03 20:55:56 +00:00
|
|
|
|
2000-05-15 13:02:07 +00:00
|
|
|
tokpushback = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
doprompt = interact;
|
|
|
|
if (doprompt)
|
|
|
|
setprompt(1);
|
|
|
|
else
|
|
|
|
setprompt(0);
|
|
|
|
needprompt = 0;
|
|
|
|
t = readtoken();
|
|
|
|
if (t == TEOF)
|
|
|
|
return NEOF;
|
|
|
|
if (t == TNL)
|
|
|
|
return NULL;
|
|
|
|
tokpushback++;
|
|
|
|
return list(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
list(int nlflag)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
union node *n1, *n2, *n3;
|
1996-09-01 10:22:36 +00:00
|
|
|
int tok;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
checkkwd = 2;
|
|
|
|
if (nlflag == 0 && tokendlist[peektoken()])
|
|
|
|
return NULL;
|
1996-09-01 10:22:36 +00:00
|
|
|
n1 = NULL;
|
1994-05-26 06:18:55 +00:00
|
|
|
for (;;) {
|
1996-09-01 10:22:36 +00:00
|
|
|
n2 = andor();
|
|
|
|
tok = readtoken();
|
|
|
|
if (tok == TBACKGND) {
|
|
|
|
if (n2->type == NCMD || n2->type == NPIPE) {
|
|
|
|
n2->ncmd.backgnd = 1;
|
|
|
|
} else if (n2->type == NREDIR) {
|
|
|
|
n2->type = NBACKGND;
|
|
|
|
} else {
|
|
|
|
n3 = (union node *)stalloc(sizeof (struct nredir));
|
|
|
|
n3->type = NBACKGND;
|
|
|
|
n3->nredir.n = n2;
|
|
|
|
n3->nredir.redirect = NULL;
|
|
|
|
n2 = n3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (n1 == NULL) {
|
|
|
|
n1 = n2;
|
|
|
|
}
|
|
|
|
else {
|
1994-05-26 06:18:55 +00:00
|
|
|
n3 = (union node *)stalloc(sizeof (struct nbinary));
|
|
|
|
n3->type = NSEMI;
|
|
|
|
n3->nbinary.ch1 = n1;
|
|
|
|
n3->nbinary.ch2 = n2;
|
|
|
|
n1 = n3;
|
1996-09-01 10:22:36 +00:00
|
|
|
}
|
|
|
|
switch (tok) {
|
|
|
|
case TBACKGND:
|
|
|
|
case TSEMI:
|
|
|
|
tok = readtoken();
|
2002-08-25 13:01:47 +00:00
|
|
|
/* FALLTHROUGH */
|
1996-09-01 10:22:36 +00:00
|
|
|
case TNL:
|
|
|
|
if (tok == TNL) {
|
|
|
|
parseheredoc();
|
|
|
|
if (nlflag)
|
|
|
|
return n1;
|
2010-07-25 22:25:52 +00:00
|
|
|
} else if (tok == TEOF && nlflag) {
|
|
|
|
parseheredoc();
|
|
|
|
return n1;
|
1996-09-01 10:22:36 +00:00
|
|
|
} else {
|
|
|
|
tokpushback++;
|
|
|
|
}
|
|
|
|
checkkwd = 2;
|
|
|
|
if (tokendlist[peektoken()])
|
|
|
|
return n1;
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
|
|
|
case TEOF:
|
|
|
|
if (heredoclist)
|
|
|
|
parseheredoc();
|
|
|
|
else
|
|
|
|
pungetc(); /* push back EOF on input */
|
|
|
|
return n1;
|
|
|
|
default:
|
|
|
|
if (nlflag)
|
|
|
|
synexpect(-1);
|
|
|
|
tokpushback++;
|
|
|
|
return n1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
andor(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
union node *n1, *n2, *n3;
|
|
|
|
int t;
|
|
|
|
|
|
|
|
n1 = pipeline();
|
|
|
|
for (;;) {
|
|
|
|
if ((t = readtoken()) == TAND) {
|
|
|
|
t = NAND;
|
|
|
|
} else if (t == TOR) {
|
|
|
|
t = NOR;
|
|
|
|
} else {
|
|
|
|
tokpushback++;
|
|
|
|
return n1;
|
|
|
|
}
|
|
|
|
n2 = pipeline();
|
|
|
|
n3 = (union node *)stalloc(sizeof (struct nbinary));
|
|
|
|
n3->type = t;
|
|
|
|
n3->nbinary.ch1 = n1;
|
|
|
|
n3->nbinary.ch2 = n2;
|
|
|
|
n1 = n3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
pipeline(void)
|
|
|
|
{
|
2001-04-09 12:46:19 +00:00
|
|
|
union node *n1, *n2, *pipenode;
|
1994-05-26 06:18:55 +00:00
|
|
|
struct nodelist *lp, *prev;
|
2010-10-24 17:06:49 +00:00
|
|
|
int negate, t;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2001-04-09 12:46:19 +00:00
|
|
|
negate = 0;
|
2009-04-13 19:10:56 +00:00
|
|
|
checkkwd = 2;
|
1994-05-26 06:18:55 +00:00
|
|
|
TRACE(("pipeline: entered\n"));
|
2001-04-09 12:46:19 +00:00
|
|
|
while (readtoken() == TNOT)
|
|
|
|
negate = !negate;
|
|
|
|
tokpushback++;
|
1994-05-26 06:18:55 +00:00
|
|
|
n1 = command();
|
|
|
|
if (readtoken() == TPIPE) {
|
|
|
|
pipenode = (union node *)stalloc(sizeof (struct npipe));
|
|
|
|
pipenode->type = NPIPE;
|
|
|
|
pipenode->npipe.backgnd = 0;
|
|
|
|
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
|
|
|
|
pipenode->npipe.cmdlist = lp;
|
|
|
|
lp->n = n1;
|
|
|
|
do {
|
|
|
|
prev = lp;
|
|
|
|
lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
|
2010-10-24 17:06:49 +00:00
|
|
|
checkkwd = 2;
|
|
|
|
t = readtoken();
|
|
|
|
tokpushback++;
|
|
|
|
if (t == TNOT)
|
|
|
|
lp->n = pipeline();
|
|
|
|
else
|
|
|
|
lp->n = command();
|
1994-05-26 06:18:55 +00:00
|
|
|
prev->next = lp;
|
|
|
|
} while (readtoken() == TPIPE);
|
|
|
|
lp->next = NULL;
|
|
|
|
n1 = pipenode;
|
|
|
|
}
|
|
|
|
tokpushback++;
|
2001-04-09 12:46:19 +00:00
|
|
|
if (negate) {
|
|
|
|
n2 = (union node *)stalloc(sizeof (struct nnot));
|
|
|
|
n2->type = NNOT;
|
|
|
|
n2->nnot.com = n1;
|
|
|
|
return n2;
|
|
|
|
} else
|
|
|
|
return n1;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
command(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
union node *n1, *n2;
|
|
|
|
union node *ap, **app;
|
|
|
|
union node *cp, **cpp;
|
|
|
|
union node *redir, **rpp;
|
2010-10-24 17:06:49 +00:00
|
|
|
int t;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
checkkwd = 2;
|
1996-09-01 10:22:36 +00:00
|
|
|
redir = NULL;
|
|
|
|
n1 = NULL;
|
1994-05-26 06:18:55 +00:00
|
|
|
rpp = &redir;
|
1996-12-14 06:20:03 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
/* Check for redirection which may precede command */
|
|
|
|
while (readtoken() == TREDIR) {
|
|
|
|
*rpp = n2 = redirnode;
|
|
|
|
rpp = &n2->nfile.next;
|
|
|
|
parsefname();
|
|
|
|
}
|
|
|
|
tokpushback++;
|
|
|
|
|
|
|
|
switch (readtoken()) {
|
|
|
|
case TIF:
|
|
|
|
n1 = (union node *)stalloc(sizeof (struct nif));
|
|
|
|
n1->type = NIF;
|
2002-10-06 06:35:51 +00:00
|
|
|
if ((n1->nif.test = list(0)) == NULL)
|
|
|
|
synexpect(-1);
|
1994-05-26 06:18:55 +00:00
|
|
|
if (readtoken() != TTHEN)
|
|
|
|
synexpect(TTHEN);
|
|
|
|
n1->nif.ifpart = list(0);
|
|
|
|
n2 = n1;
|
|
|
|
while (readtoken() == TELIF) {
|
|
|
|
n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
|
|
|
|
n2 = n2->nif.elsepart;
|
|
|
|
n2->type = NIF;
|
2002-10-06 06:35:51 +00:00
|
|
|
if ((n2->nif.test = list(0)) == NULL)
|
|
|
|
synexpect(-1);
|
1994-05-26 06:18:55 +00:00
|
|
|
if (readtoken() != TTHEN)
|
|
|
|
synexpect(TTHEN);
|
|
|
|
n2->nif.ifpart = list(0);
|
|
|
|
}
|
|
|
|
if (lasttoken == TELSE)
|
|
|
|
n2->nif.elsepart = list(0);
|
|
|
|
else {
|
|
|
|
n2->nif.elsepart = NULL;
|
|
|
|
tokpushback++;
|
|
|
|
}
|
|
|
|
if (readtoken() != TFI)
|
|
|
|
synexpect(TFI);
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
case TWHILE:
|
|
|
|
case TUNTIL: {
|
|
|
|
int got;
|
|
|
|
n1 = (union node *)stalloc(sizeof (struct nbinary));
|
|
|
|
n1->type = (lasttoken == TWHILE)? NWHILE : NUNTIL;
|
2002-10-06 06:35:51 +00:00
|
|
|
if ((n1->nbinary.ch1 = list(0)) == NULL)
|
|
|
|
synexpect(-1);
|
1994-05-26 06:18:55 +00:00
|
|
|
if ((got=readtoken()) != TDO) {
|
|
|
|
TRACE(("expecting DO got %s %s\n", tokname[got], got == TWORD ? wordtext : ""));
|
|
|
|
synexpect(TDO);
|
|
|
|
}
|
|
|
|
n1->nbinary.ch2 = list(0);
|
|
|
|
if (readtoken() != TDONE)
|
|
|
|
synexpect(TDONE);
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TFOR:
|
|
|
|
if (readtoken() != TWORD || quoteflag || ! goodname(wordtext))
|
|
|
|
synerror("Bad for loop variable");
|
|
|
|
n1 = (union node *)stalloc(sizeof (struct nfor));
|
|
|
|
n1->type = NFOR;
|
|
|
|
n1->nfor.var = wordtext;
|
2009-11-14 22:08:32 +00:00
|
|
|
while (readtoken() == TNL)
|
|
|
|
;
|
|
|
|
if (lasttoken == TWORD && ! quoteflag && equal(wordtext, "in")) {
|
1994-05-26 06:18:55 +00:00
|
|
|
app = ≈
|
|
|
|
while (readtoken() == TWORD) {
|
|
|
|
n2 = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n2->type = NARG;
|
|
|
|
n2->narg.text = wordtext;
|
|
|
|
n2->narg.backquote = backquotelist;
|
|
|
|
*app = n2;
|
|
|
|
app = &n2->narg.next;
|
|
|
|
}
|
|
|
|
*app = NULL;
|
|
|
|
n1->nfor.args = ap;
|
|
|
|
if (lasttoken != TNL && lasttoken != TSEMI)
|
|
|
|
synexpect(-1);
|
|
|
|
} else {
|
2005-08-15 17:49:38 +00:00
|
|
|
static char argvars[5] = {
|
|
|
|
CTLVAR, VSNORMAL|VSQUOTE, '@', '=', '\0'
|
|
|
|
};
|
1994-05-26 06:18:55 +00:00
|
|
|
n2 = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n2->type = NARG;
|
2005-08-15 17:49:38 +00:00
|
|
|
n2->narg.text = argvars;
|
1994-05-26 06:18:55 +00:00
|
|
|
n2->narg.backquote = NULL;
|
|
|
|
n2->narg.next = NULL;
|
|
|
|
n1->nfor.args = n2;
|
|
|
|
/*
|
|
|
|
* Newline or semicolon here is optional (but note
|
|
|
|
* that the original Bourne shell only allowed NL).
|
|
|
|
*/
|
|
|
|
if (lasttoken != TNL && lasttoken != TSEMI)
|
|
|
|
tokpushback++;
|
|
|
|
}
|
|
|
|
checkkwd = 2;
|
|
|
|
if ((t = readtoken()) == TDO)
|
|
|
|
t = TDONE;
|
|
|
|
else if (t == TBEGIN)
|
|
|
|
t = TEND;
|
|
|
|
else
|
|
|
|
synexpect(-1);
|
|
|
|
n1->nfor.body = list(0);
|
|
|
|
if (readtoken() != t)
|
|
|
|
synexpect(t);
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
case TCASE:
|
|
|
|
n1 = (union node *)stalloc(sizeof (struct ncase));
|
|
|
|
n1->type = NCASE;
|
|
|
|
if (readtoken() != TWORD)
|
|
|
|
synexpect(TWORD);
|
|
|
|
n1->ncase.expr = n2 = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n2->type = NARG;
|
|
|
|
n2->narg.text = wordtext;
|
|
|
|
n2->narg.backquote = backquotelist;
|
|
|
|
n2->narg.next = NULL;
|
|
|
|
while (readtoken() == TNL);
|
|
|
|
if (lasttoken != TWORD || ! equal(wordtext, "in"))
|
|
|
|
synerror("expecting \"in\"");
|
|
|
|
cpp = &n1->ncase.cases;
|
1996-09-03 14:16:06 +00:00
|
|
|
noaliases = 1; /* turn off alias expansion */
|
1994-09-14 17:41:32 +00:00
|
|
|
checkkwd = 2, readtoken();
|
2002-09-30 10:57:44 +00:00
|
|
|
while (lasttoken != TESAC) {
|
1994-05-26 06:18:55 +00:00
|
|
|
*cpp = cp = (union node *)stalloc(sizeof (struct nclist));
|
|
|
|
cp->type = NCLIST;
|
|
|
|
app = &cp->nclist.pattern;
|
2002-09-30 13:25:00 +00:00
|
|
|
if (lasttoken == TLP)
|
|
|
|
readtoken();
|
1994-05-26 06:18:55 +00:00
|
|
|
for (;;) {
|
|
|
|
*app = ap = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
ap->type = NARG;
|
|
|
|
ap->narg.text = wordtext;
|
|
|
|
ap->narg.backquote = backquotelist;
|
1994-09-14 17:41:32 +00:00
|
|
|
if (checkkwd = 2, readtoken() != TPIPE)
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
|
|
|
app = &ap->narg.next;
|
1994-09-14 17:41:32 +00:00
|
|
|
readtoken();
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
ap->narg.next = NULL;
|
|
|
|
if (lasttoken != TRP)
|
1996-09-03 14:16:06 +00:00
|
|
|
noaliases = 0, synexpect(TRP);
|
1994-05-26 06:18:55 +00:00
|
|
|
cp->nclist.body = list(0);
|
1994-09-14 17:41:32 +00:00
|
|
|
|
|
|
|
checkkwd = 2;
|
|
|
|
if ((t = readtoken()) != TESAC) {
|
|
|
|
if (t != TENDCASE)
|
1996-09-03 14:16:06 +00:00
|
|
|
noaliases = 0, synexpect(TENDCASE);
|
1994-09-14 17:41:32 +00:00
|
|
|
else
|
|
|
|
checkkwd = 2, readtoken();
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
cpp = &cp->nclist.next;
|
2002-09-30 10:57:44 +00:00
|
|
|
}
|
1996-09-03 14:16:06 +00:00
|
|
|
noaliases = 0; /* reset alias expansion */
|
1994-05-26 06:18:55 +00:00
|
|
|
*cpp = NULL;
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
case TLP:
|
|
|
|
n1 = (union node *)stalloc(sizeof (struct nredir));
|
|
|
|
n1->type = NSUBSHELL;
|
|
|
|
n1->nredir.n = list(0);
|
|
|
|
n1->nredir.redirect = NULL;
|
|
|
|
if (readtoken() != TRP)
|
|
|
|
synexpect(TRP);
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
case TBEGIN:
|
|
|
|
n1 = list(0);
|
|
|
|
if (readtoken() != TEND)
|
|
|
|
synexpect(TEND);
|
|
|
|
checkkwd = 1;
|
|
|
|
break;
|
|
|
|
/* Handle an empty command like other simple commands. */
|
2010-07-18 12:45:31 +00:00
|
|
|
case TBACKGND:
|
1995-08-28 19:24:35 +00:00
|
|
|
case TSEMI:
|
2002-08-11 03:04:23 +00:00
|
|
|
case TAND:
|
|
|
|
case TOR:
|
1996-09-01 10:22:36 +00:00
|
|
|
/*
|
|
|
|
* An empty command before a ; doesn't make much sense, and
|
|
|
|
* should certainly be disallowed in the case of `if ;'.
|
|
|
|
*/
|
|
|
|
if (!redir)
|
|
|
|
synexpect(-1);
|
|
|
|
case TNL:
|
1995-08-28 19:24:35 +00:00
|
|
|
case TEOF:
|
1994-05-26 06:18:55 +00:00
|
|
|
case TWORD:
|
1996-09-01 10:22:36 +00:00
|
|
|
case TRP:
|
1994-05-26 06:18:55 +00:00
|
|
|
tokpushback++;
|
2001-04-04 10:11:43 +00:00
|
|
|
n1 = simplecmd(rpp, redir);
|
2010-10-24 17:06:49 +00:00
|
|
|
return n1;
|
1994-05-26 06:18:55 +00:00
|
|
|
default:
|
|
|
|
synexpect(-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now check for redirection which may follow command */
|
|
|
|
while (readtoken() == TREDIR) {
|
|
|
|
*rpp = n2 = redirnode;
|
|
|
|
rpp = &n2->nfile.next;
|
|
|
|
parsefname();
|
|
|
|
}
|
|
|
|
tokpushback++;
|
|
|
|
*rpp = NULL;
|
|
|
|
if (redir) {
|
|
|
|
if (n1->type != NSUBSHELL) {
|
|
|
|
n2 = (union node *)stalloc(sizeof (struct nredir));
|
|
|
|
n2->type = NREDIR;
|
|
|
|
n2->nredir.n = n1;
|
|
|
|
n1 = n2;
|
|
|
|
}
|
|
|
|
n1->nredir.redirect = redir;
|
|
|
|
}
|
2001-04-04 10:11:43 +00:00
|
|
|
|
2010-10-24 17:06:49 +00:00
|
|
|
return n1;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
simplecmd(union node **rpp, union node *redir)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
union node *args, **app;
|
|
|
|
union node **orig_rpp = rpp;
|
2010-07-14 22:31:45 +00:00
|
|
|
union node *n = NULL;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/* If we don't have any redirections already, then we must reset */
|
|
|
|
/* rpp to be the address of the local redir variable. */
|
|
|
|
if (redir == 0)
|
|
|
|
rpp = &redir;
|
|
|
|
|
|
|
|
args = NULL;
|
|
|
|
app = &args;
|
1995-05-30 00:07:29 +00:00
|
|
|
/*
|
1994-05-26 06:18:55 +00:00
|
|
|
* We save the incoming value, because we need this for shell
|
|
|
|
* functions. There can not be a redirect or an argument between
|
1995-05-30 00:07:29 +00:00
|
|
|
* the function name and the open parenthesis.
|
1994-05-26 06:18:55 +00:00
|
|
|
*/
|
|
|
|
orig_rpp = rpp;
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
if (readtoken() == TWORD) {
|
|
|
|
n = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n->type = NARG;
|
|
|
|
n->narg.text = wordtext;
|
|
|
|
n->narg.backquote = backquotelist;
|
|
|
|
*app = n;
|
|
|
|
app = &n->narg.next;
|
|
|
|
} else if (lasttoken == TREDIR) {
|
|
|
|
*rpp = n = redirnode;
|
|
|
|
rpp = &n->nfile.next;
|
|
|
|
parsefname(); /* read name of redirection file */
|
|
|
|
} else if (lasttoken == TLP && app == &args->narg.next
|
|
|
|
&& rpp == orig_rpp) {
|
|
|
|
/* We have a function */
|
|
|
|
if (readtoken() != TRP)
|
|
|
|
synexpect(TRP);
|
2008-05-15 19:55:27 +00:00
|
|
|
funclinno = plinno;
|
2010-10-24 20:45:13 +00:00
|
|
|
/*
|
|
|
|
* - Require plain text.
|
|
|
|
* - Functions with '/' cannot be called.
|
|
|
|
*/
|
|
|
|
if (!noexpand(n->narg.text) || quoteflag ||
|
|
|
|
strchr(n->narg.text, '/'))
|
1994-05-26 06:18:55 +00:00
|
|
|
synerror("Bad function name");
|
2010-10-24 20:45:13 +00:00
|
|
|
rmescapes(n->narg.text);
|
1994-05-26 06:18:55 +00:00
|
|
|
n->type = NDEFUN;
|
|
|
|
n->narg.next = command();
|
2008-05-15 19:55:27 +00:00
|
|
|
funclinno = 0;
|
2010-07-14 22:31:45 +00:00
|
|
|
return n;
|
1994-05-26 06:18:55 +00:00
|
|
|
} else {
|
|
|
|
tokpushback++;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
*app = NULL;
|
|
|
|
*rpp = NULL;
|
|
|
|
n = (union node *)stalloc(sizeof (struct ncmd));
|
|
|
|
n->type = NCMD;
|
|
|
|
n->ncmd.backgnd = 0;
|
|
|
|
n->ncmd.args = args;
|
|
|
|
n->ncmd.redirect = redir;
|
2010-07-14 22:31:45 +00:00
|
|
|
return n;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static union node *
|
2002-02-02 06:50:57 +00:00
|
|
|
makename(void)
|
|
|
|
{
|
1996-09-01 10:22:36 +00:00
|
|
|
union node *n;
|
|
|
|
|
|
|
|
n = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n->type = NARG;
|
|
|
|
n->narg.next = NULL;
|
|
|
|
n->narg.text = wordtext;
|
|
|
|
n->narg.backquote = backquotelist;
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
2010-10-13 04:01:01 +00:00
|
|
|
void
|
|
|
|
fixredir(union node *n, const char *text, int err)
|
2002-02-02 06:50:57 +00:00
|
|
|
{
|
1996-09-01 10:22:36 +00:00
|
|
|
TRACE(("Fix redir %s %d\n", text, err));
|
|
|
|
if (!err)
|
|
|
|
n->ndup.vname = NULL;
|
|
|
|
|
|
|
|
if (is_digit(text[0]) && text[1] == '\0')
|
|
|
|
n->ndup.dupfd = digit_val(text[0]);
|
|
|
|
else if (text[0] == '-' && text[1] == '\0')
|
|
|
|
n->ndup.dupfd = -1;
|
|
|
|
else {
|
1996-12-14 06:20:03 +00:00
|
|
|
|
1996-09-01 10:22:36 +00:00
|
|
|
if (err)
|
|
|
|
synerror("Bad fd number");
|
|
|
|
else
|
|
|
|
n->ndup.vname = makename();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2002-02-02 06:50:57 +00:00
|
|
|
parsefname(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
union node *n = redirnode;
|
|
|
|
|
|
|
|
if (readtoken() != TWORD)
|
|
|
|
synexpect(-1);
|
|
|
|
if (n->type == NHERE) {
|
|
|
|
struct heredoc *here = heredoc;
|
|
|
|
struct heredoc *p;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
if (quoteflag == 0)
|
|
|
|
n->type = NXHERE;
|
|
|
|
TRACE(("Here document %d\n", n->type));
|
|
|
|
if (here->striptabs) {
|
|
|
|
while (*wordtext == '\t')
|
|
|
|
wordtext++;
|
|
|
|
}
|
|
|
|
if (! noexpand(wordtext) || (i = strlen(wordtext)) == 0 || i > EOFMARKLEN)
|
|
|
|
synerror("Illegal eof marker for << redirection");
|
|
|
|
rmescapes(wordtext);
|
|
|
|
here->eofmark = wordtext;
|
|
|
|
here->next = NULL;
|
|
|
|
if (heredoclist == NULL)
|
|
|
|
heredoclist = here;
|
|
|
|
else {
|
|
|
|
for (p = heredoclist ; p->next ; p = p->next);
|
|
|
|
p->next = here;
|
|
|
|
}
|
|
|
|
} else if (n->type == NTOFD || n->type == NFROMFD) {
|
1996-09-01 10:22:36 +00:00
|
|
|
fixredir(n, wordtext, 0);
|
1994-05-26 06:18:55 +00:00
|
|
|
} else {
|
1996-09-01 10:22:36 +00:00
|
|
|
n->nfile.fname = makename();
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Input any here documents.
|
|
|
|
*/
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2002-02-02 06:50:57 +00:00
|
|
|
parseheredoc(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
struct heredoc *here;
|
|
|
|
union node *n;
|
|
|
|
|
|
|
|
while (heredoclist) {
|
|
|
|
here = heredoclist;
|
|
|
|
heredoclist = here->next;
|
|
|
|
if (needprompt) {
|
|
|
|
setprompt(2);
|
|
|
|
needprompt = 0;
|
|
|
|
}
|
|
|
|
readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
|
|
|
|
here->eofmark, here->striptabs);
|
|
|
|
n = (union node *)stalloc(sizeof (struct narg));
|
|
|
|
n->narg.type = NARG;
|
|
|
|
n->narg.next = NULL;
|
|
|
|
n->narg.text = wordtext;
|
|
|
|
n->narg.backquote = backquotelist;
|
|
|
|
here->here->nhere.doc = n;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-02-02 06:50:57 +00:00
|
|
|
peektoken(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
int t;
|
|
|
|
|
|
|
|
t = readtoken();
|
|
|
|
tokpushback++;
|
|
|
|
return (t);
|
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-02-02 06:50:57 +00:00
|
|
|
readtoken(void)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
int t;
|
|
|
|
int savecheckkwd = checkkwd;
|
|
|
|
struct alias *ap;
|
|
|
|
#ifdef DEBUG
|
|
|
|
int alreadyseen = tokpushback;
|
|
|
|
#endif
|
1995-05-30 00:07:29 +00:00
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
top:
|
|
|
|
t = xxreadtoken();
|
|
|
|
|
|
|
|
if (checkkwd) {
|
|
|
|
/*
|
|
|
|
* eat newlines
|
|
|
|
*/
|
|
|
|
if (checkkwd == 2) {
|
|
|
|
checkkwd = 0;
|
|
|
|
while (t == TNL) {
|
|
|
|
parseheredoc();
|
|
|
|
t = xxreadtoken();
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
checkkwd = 0;
|
|
|
|
/*
|
|
|
|
* check for keywords and aliases
|
|
|
|
*/
|
1996-12-14 06:20:03 +00:00
|
|
|
if (t == TWORD && !quoteflag)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
2002-06-20 05:20:50 +00:00
|
|
|
const char * const *pp;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
2002-06-20 05:20:50 +00:00
|
|
|
for (pp = parsekwd; *pp; pp++) {
|
1996-12-14 06:20:03 +00:00
|
|
|
if (**pp == *wordtext && equal(*pp, wordtext))
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
lasttoken = t = pp - parsekwd + KWDOFFSET;
|
|
|
|
TRACE(("keyword %s recognized\n", tokname[t]));
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
}
|
1996-09-03 14:16:06 +00:00
|
|
|
if (noaliases == 0 &&
|
|
|
|
(ap = lookupalias(wordtext, 1)) != NULL) {
|
1994-05-26 06:18:55 +00:00
|
|
|
pushstring(ap->val, strlen(ap->val), ap);
|
|
|
|
checkkwd = savecheckkwd;
|
|
|
|
goto top;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
out:
|
2001-04-04 10:11:43 +00:00
|
|
|
checkkwd = (t == TNOT) ? savecheckkwd : 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
#ifdef DEBUG
|
|
|
|
if (!alreadyseen)
|
|
|
|
TRACE(("token %s %s\n", tokname[t], t == TWORD ? wordtext : ""));
|
|
|
|
else
|
|
|
|
TRACE(("reread token %s %s\n", tokname[t], t == TWORD ? wordtext : ""));
|
|
|
|
#endif
|
|
|
|
return (t);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read the next input token.
|
|
|
|
* If the token is a word, we set backquotelist to the list of cmds in
|
|
|
|
* backquotes. We set quoteflag to true if any part of the word was
|
|
|
|
* quoted.
|
|
|
|
* If the token is TREDIR, then we set redirnode to a structure containing
|
|
|
|
* the redirection.
|
|
|
|
* In all cases, the variable startlinno is set to the number of the line
|
|
|
|
* on which the token starts.
|
|
|
|
*
|
|
|
|
* [Change comment: here documents and internal procedures]
|
|
|
|
* [Readtoken shouldn't have any arguments. Perhaps we should make the
|
|
|
|
* word parsing code into a separate routine. In this case, readtoken
|
|
|
|
* doesn't need to have any internal procedures, but parseword does.
|
|
|
|
* We could also make parseoperator in essence the main routine, and
|
|
|
|
* have parseword (readtoken1?) handle both words and redirection.]
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define RETURN(token) return lasttoken = token
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-02-02 06:50:57 +00:00
|
|
|
xxreadtoken(void)
|
|
|
|
{
|
1997-04-28 03:22:09 +00:00
|
|
|
int c;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
if (tokpushback) {
|
|
|
|
tokpushback = 0;
|
|
|
|
return lasttoken;
|
|
|
|
}
|
|
|
|
if (needprompt) {
|
|
|
|
setprompt(2);
|
|
|
|
needprompt = 0;
|
|
|
|
}
|
|
|
|
startlinno = plinno;
|
|
|
|
for (;;) { /* until token or start of word found */
|
|
|
|
c = pgetc_macro();
|
|
|
|
if (c == ' ' || c == '\t')
|
|
|
|
continue; /* quick check for white space first */
|
|
|
|
switch (c) {
|
|
|
|
case ' ': case '\t':
|
|
|
|
continue;
|
|
|
|
case '#':
|
|
|
|
while ((c = pgetc()) != '\n' && c != PEOF);
|
|
|
|
pungetc();
|
|
|
|
continue;
|
|
|
|
case '\\':
|
|
|
|
if (pgetc() == '\n') {
|
|
|
|
startlinno = ++plinno;
|
|
|
|
if (doprompt)
|
|
|
|
setprompt(2);
|
|
|
|
else
|
|
|
|
setprompt(0);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
pungetc();
|
|
|
|
goto breakloop;
|
|
|
|
case '\n':
|
|
|
|
plinno++;
|
|
|
|
needprompt = doprompt;
|
|
|
|
RETURN(TNL);
|
|
|
|
case PEOF:
|
|
|
|
RETURN(TEOF);
|
|
|
|
case '&':
|
|
|
|
if (pgetc() == '&')
|
|
|
|
RETURN(TAND);
|
|
|
|
pungetc();
|
|
|
|
RETURN(TBACKGND);
|
|
|
|
case '|':
|
|
|
|
if (pgetc() == '|')
|
|
|
|
RETURN(TOR);
|
|
|
|
pungetc();
|
|
|
|
RETURN(TPIPE);
|
|
|
|
case ';':
|
|
|
|
if (pgetc() == ';')
|
|
|
|
RETURN(TENDCASE);
|
|
|
|
pungetc();
|
|
|
|
RETURN(TSEMI);
|
|
|
|
case '(':
|
|
|
|
RETURN(TLP);
|
|
|
|
case ')':
|
|
|
|
RETURN(TRP);
|
|
|
|
default:
|
|
|
|
goto breakloop;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
breakloop:
|
|
|
|
return readtoken1(c, BASESYNTAX, (char *)NULL, 0);
|
|
|
|
#undef RETURN
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
#define MAXNEST_static 8
|
2010-04-03 20:55:56 +00:00
|
|
|
struct tokenstate
|
|
|
|
{
|
|
|
|
const char *syntax; /* *SYNTAX */
|
|
|
|
int parenlevel; /* levels of parentheses in arithmetic */
|
|
|
|
enum tokenstate_category
|
|
|
|
{
|
|
|
|
TSTATE_TOP,
|
|
|
|
TSTATE_VAR_OLD, /* ${var+-=?}, inherits dquotes */
|
|
|
|
TSTATE_VAR_NEW, /* other ${var...}, own dquote state */
|
|
|
|
TSTATE_ARITH
|
|
|
|
} category;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2010-03-13 20:43:11 +00:00
|
|
|
/*
|
|
|
|
* Called to parse command substitutions.
|
|
|
|
*/
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static char *
|
2010-03-13 20:43:11 +00:00
|
|
|
parsebackq(char *out, struct nodelist **pbqlist,
|
|
|
|
int oldstyle, int dblquote, int quoted)
|
|
|
|
{
|
|
|
|
struct nodelist **nlpp;
|
|
|
|
union node *n;
|
|
|
|
char *volatile str;
|
|
|
|
struct jmploc jmploc;
|
|
|
|
struct jmploc *const savehandler = handler;
|
|
|
|
int savelen;
|
|
|
|
int saveprompt;
|
|
|
|
const int bq_startlinno = plinno;
|
|
|
|
char *volatile ostr = NULL;
|
|
|
|
struct parsefile *const savetopfile = getcurrentfile();
|
2010-05-30 14:11:27 +00:00
|
|
|
struct heredoc *const saveheredoclist = heredoclist;
|
|
|
|
struct heredoc *here;
|
2010-03-13 20:43:11 +00:00
|
|
|
|
|
|
|
str = NULL;
|
|
|
|
if (setjmp(jmploc.loc)) {
|
|
|
|
popfilesupto(savetopfile);
|
|
|
|
if (str)
|
|
|
|
ckfree(str);
|
|
|
|
if (ostr)
|
|
|
|
ckfree(ostr);
|
2010-05-30 14:11:27 +00:00
|
|
|
heredoclist = saveheredoclist;
|
2010-03-13 20:43:11 +00:00
|
|
|
handler = savehandler;
|
|
|
|
if (exception == EXERROR) {
|
|
|
|
startlinno = bq_startlinno;
|
|
|
|
synerror("Error in command substitution");
|
|
|
|
}
|
|
|
|
longjmp(handler->loc, 1);
|
|
|
|
}
|
|
|
|
INTOFF;
|
|
|
|
savelen = out - stackblock();
|
|
|
|
if (savelen > 0) {
|
|
|
|
str = ckmalloc(savelen);
|
|
|
|
memcpy(str, stackblock(), savelen);
|
|
|
|
}
|
|
|
|
handler = &jmploc;
|
2010-05-30 14:11:27 +00:00
|
|
|
heredoclist = NULL;
|
2010-03-13 20:43:11 +00:00
|
|
|
INTON;
|
|
|
|
if (oldstyle) {
|
|
|
|
/* We must read until the closing backquote, giving special
|
|
|
|
treatment to some slashes, and then push the string and
|
|
|
|
reread it as input, interpreting it normally. */
|
|
|
|
char *oout;
|
|
|
|
int c;
|
|
|
|
int olen;
|
|
|
|
|
|
|
|
|
|
|
|
STARTSTACKSTR(oout);
|
|
|
|
for (;;) {
|
|
|
|
if (needprompt) {
|
|
|
|
setprompt(2);
|
|
|
|
needprompt = 0;
|
|
|
|
}
|
|
|
|
switch (c = pgetc()) {
|
|
|
|
case '`':
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
case '\\':
|
|
|
|
if ((c = pgetc()) == '\n') {
|
|
|
|
plinno++;
|
|
|
|
if (doprompt)
|
|
|
|
setprompt(2);
|
|
|
|
else
|
|
|
|
setprompt(0);
|
|
|
|
/*
|
|
|
|
* If eating a newline, avoid putting
|
|
|
|
* the newline into the new character
|
|
|
|
* stream (via the STPUTC after the
|
|
|
|
* switch).
|
|
|
|
*/
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (c != '\\' && c != '`' && c != '$'
|
|
|
|
&& (!dblquote || c != '"'))
|
|
|
|
STPUTC('\\', oout);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case '\n':
|
|
|
|
plinno++;
|
|
|
|
needprompt = doprompt;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PEOF:
|
|
|
|
startlinno = plinno;
|
|
|
|
synerror("EOF in backquote substitution");
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
STPUTC(c, oout);
|
|
|
|
}
|
|
|
|
done:
|
|
|
|
STPUTC('\0', oout);
|
|
|
|
olen = oout - stackblock();
|
|
|
|
INTOFF;
|
|
|
|
ostr = ckmalloc(olen);
|
|
|
|
memcpy(ostr, stackblock(), olen);
|
|
|
|
setinputstring(ostr, 1);
|
|
|
|
INTON;
|
|
|
|
}
|
|
|
|
nlpp = pbqlist;
|
|
|
|
while (*nlpp)
|
|
|
|
nlpp = &(*nlpp)->next;
|
|
|
|
*nlpp = (struct nodelist *)stalloc(sizeof (struct nodelist));
|
|
|
|
(*nlpp)->next = NULL;
|
|
|
|
|
|
|
|
if (oldstyle) {
|
|
|
|
saveprompt = doprompt;
|
|
|
|
doprompt = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
n = list(0);
|
|
|
|
|
|
|
|
if (oldstyle)
|
|
|
|
doprompt = saveprompt;
|
|
|
|
else {
|
|
|
|
if (readtoken() != TRP)
|
|
|
|
synexpect(TRP);
|
|
|
|
}
|
|
|
|
|
|
|
|
(*nlpp)->n = n;
|
|
|
|
if (oldstyle) {
|
|
|
|
/*
|
|
|
|
* Start reading from old file again, ignoring any pushed back
|
|
|
|
* tokens left from the backquote parsing
|
|
|
|
*/
|
|
|
|
popfile();
|
|
|
|
tokpushback = 0;
|
|
|
|
}
|
|
|
|
while (stackblocksize() <= savelen)
|
|
|
|
growstackblock();
|
|
|
|
STARTSTACKSTR(out);
|
2010-05-30 14:11:27 +00:00
|
|
|
INTOFF;
|
2010-03-13 20:43:11 +00:00
|
|
|
if (str) {
|
|
|
|
memcpy(out, str, savelen);
|
|
|
|
STADJUST(savelen, out);
|
|
|
|
ckfree(str);
|
|
|
|
str = NULL;
|
|
|
|
}
|
|
|
|
if (ostr) {
|
|
|
|
ckfree(ostr);
|
|
|
|
ostr = NULL;
|
2010-05-30 14:11:27 +00:00
|
|
|
}
|
|
|
|
here = saveheredoclist;
|
|
|
|
if (here != NULL) {
|
|
|
|
while (here->next != NULL)
|
|
|
|
here = here->next;
|
|
|
|
here->next = heredoclist;
|
|
|
|
heredoclist = saveheredoclist;
|
2010-03-13 20:43:11 +00:00
|
|
|
}
|
|
|
|
handler = savehandler;
|
2010-05-30 14:11:27 +00:00
|
|
|
INTON;
|
2010-03-13 20:43:11 +00:00
|
|
|
if (quoted)
|
|
|
|
USTPUTC(CTLBACKQ | CTLQUOTE, out);
|
|
|
|
else
|
|
|
|
USTPUTC(CTLBACKQ, out);
|
|
|
|
return out;
|
|
|
|
}
|
|
|
|
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If eofmark is NULL, read a word or a redirection symbol. If eofmark
|
|
|
|
* is not NULL, read a here document. In the latter case, eofmark is the
|
|
|
|
* word which marks the end of the document and striptabs is true if
|
|
|
|
* leading tabs should be stripped from the document. The argument firstc
|
|
|
|
* is the first character of the input token or document.
|
|
|
|
*
|
|
|
|
* Because C does not have internal subroutines, I have simulated them
|
|
|
|
* using goto's to implement the subroutine linkage. The following macros
|
|
|
|
* will run code that appears at the end of readtoken1.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define CHECKEND() {goto checkend; checkend_return:;}
|
|
|
|
#define PARSEREDIR() {goto parseredir; parseredir_return:;}
|
|
|
|
#define PARSESUB() {goto parsesub; parsesub_return:;}
|
|
|
|
#define PARSEARITH() {goto parsearith; parsearith_return:;}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2010-04-03 20:55:56 +00:00
|
|
|
readtoken1(int firstc, char const *initialsyntax, char *eofmark, int striptabs)
|
2002-02-02 06:50:57 +00:00
|
|
|
{
|
1996-09-01 10:22:36 +00:00
|
|
|
int c = firstc;
|
|
|
|
char *out;
|
1994-05-26 06:18:55 +00:00
|
|
|
int len;
|
|
|
|
char line[EOFMARKLEN + 1];
|
|
|
|
struct nodelist *bqlist;
|
|
|
|
int quotef;
|
2010-04-03 20:55:56 +00:00
|
|
|
int newvarnest;
|
|
|
|
int level;
|
1999-12-16 12:03:46 +00:00
|
|
|
int synentry;
|
2010-10-13 22:18:03 +00:00
|
|
|
struct tokenstate state_static[MAXNEST_static];
|
|
|
|
int maxnest = MAXNEST_static;
|
2010-04-03 20:55:56 +00:00
|
|
|
struct tokenstate *state = state_static;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
startlinno = plinno;
|
|
|
|
quotef = 0;
|
|
|
|
bqlist = NULL;
|
2010-04-03 20:55:56 +00:00
|
|
|
newvarnest = 0;
|
|
|
|
level = 0;
|
|
|
|
state[level].syntax = initialsyntax;
|
|
|
|
state[level].parenlevel = 0;
|
|
|
|
state[level].category = TSTATE_TOP;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
STARTSTACKSTR(out);
|
|
|
|
loop: { /* for each line, until end of word */
|
|
|
|
CHECKEND(); /* set c to PEOF if at end of here document */
|
|
|
|
for (;;) { /* until end of line or end of word */
|
|
|
|
CHECKSTRSPACE(3, out); /* permit 3 calls to USTPUTC */
|
1999-12-16 12:03:46 +00:00
|
|
|
|
2010-04-03 20:55:56 +00:00
|
|
|
synentry = state[level].syntax[c];
|
1999-12-16 12:03:46 +00:00
|
|
|
|
|
|
|
switch(synentry) {
|
1994-05-26 06:18:55 +00:00
|
|
|
case CNL: /* '\n' */
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].syntax == BASESYNTAX)
|
1994-05-26 06:18:55 +00:00
|
|
|
goto endword; /* exit outer loop */
|
|
|
|
USTPUTC(c, out);
|
|
|
|
plinno++;
|
|
|
|
if (doprompt)
|
|
|
|
setprompt(2);
|
|
|
|
else
|
|
|
|
setprompt(0);
|
|
|
|
c = pgetc();
|
|
|
|
goto loop; /* continue outer loop */
|
|
|
|
case CWORD:
|
|
|
|
USTPUTC(c, out);
|
|
|
|
break;
|
|
|
|
case CCTL:
|
2010-04-03 20:55:56 +00:00
|
|
|
if (eofmark == NULL || initialsyntax != SQSYNTAX)
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(CTLESC, out);
|
|
|
|
USTPUTC(c, out);
|
|
|
|
break;
|
|
|
|
case CBACK: /* backslash */
|
|
|
|
c = pgetc();
|
|
|
|
if (c == PEOF) {
|
|
|
|
USTPUTC('\\', out);
|
|
|
|
pungetc();
|
|
|
|
} else if (c == '\n') {
|
2006-07-31 11:32:12 +00:00
|
|
|
plinno++;
|
1994-05-26 06:18:55 +00:00
|
|
|
if (doprompt)
|
|
|
|
setprompt(2);
|
|
|
|
else
|
|
|
|
setprompt(0);
|
|
|
|
} else {
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].syntax == DQSYNTAX &&
|
|
|
|
c != '\\' && c != '`' && c != '$' &&
|
|
|
|
(c != '"' || (eofmark != NULL &&
|
|
|
|
newvarnest == 0)) &&
|
|
|
|
(c != '}' || state[level].category != TSTATE_VAR_OLD))
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC('\\', out);
|
2001-09-19 20:07:47 +00:00
|
|
|
if (SQSYNTAX[c] == CCTL)
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(CTLESC, out);
|
2010-04-03 20:55:56 +00:00
|
|
|
else if (eofmark == NULL ||
|
|
|
|
newvarnest > 0)
|
1998-09-06 21:13:09 +00:00
|
|
|
USTPUTC(CTLQUOTEMARK, out);
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(c, out);
|
|
|
|
quotef++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CSQUOTE:
|
2010-04-03 20:55:56 +00:00
|
|
|
USTPUTC(CTLQUOTEMARK, out);
|
|
|
|
state[level].syntax = SQSYNTAX;
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
|
|
|
case CDQUOTE:
|
2010-04-03 20:55:56 +00:00
|
|
|
USTPUTC(CTLQUOTEMARK, out);
|
|
|
|
state[level].syntax = DQSYNTAX;
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
|
|
|
case CENDQUOTE:
|
2010-04-03 20:55:56 +00:00
|
|
|
if (eofmark != NULL && newvarnest == 0)
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(c, out);
|
2010-04-03 20:55:56 +00:00
|
|
|
else {
|
2010-04-11 12:24:47 +00:00
|
|
|
if (state[level].category == TSTATE_ARITH)
|
|
|
|
state[level].syntax = ARISYNTAX;
|
|
|
|
else
|
|
|
|
state[level].syntax = BASESYNTAX;
|
1994-05-26 06:18:55 +00:00
|
|
|
quotef++;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CVAR: /* '$' */
|
|
|
|
PARSESUB(); /* parse substitution */
|
|
|
|
break;
|
|
|
|
case CENDVAR: /* '}' */
|
2010-04-03 20:55:56 +00:00
|
|
|
if (level > 0 &&
|
|
|
|
(state[level].category == TSTATE_VAR_OLD ||
|
|
|
|
state[level].category == TSTATE_VAR_NEW)) {
|
|
|
|
if (state[level].category == TSTATE_VAR_OLD)
|
|
|
|
state[level - 1].syntax = state[level].syntax;
|
|
|
|
else
|
|
|
|
newvarnest--;
|
|
|
|
level--;
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(CTLENDVAR, out);
|
|
|
|
} else {
|
|
|
|
USTPUTC(c, out);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CLP: /* '(' in arithmetic */
|
2010-04-03 20:55:56 +00:00
|
|
|
state[level].parenlevel++;
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(c, out);
|
|
|
|
break;
|
|
|
|
case CRP: /* ')' in arithmetic */
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].parenlevel > 0) {
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(c, out);
|
2010-04-03 20:55:56 +00:00
|
|
|
--state[level].parenlevel;
|
1994-05-26 06:18:55 +00:00
|
|
|
} else {
|
|
|
|
if (pgetc() == ')') {
|
2010-04-03 20:55:56 +00:00
|
|
|
if (level > 0 &&
|
|
|
|
state[level].category == TSTATE_ARITH) {
|
|
|
|
level--;
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC(CTLENDARI, out);
|
|
|
|
} else
|
|
|
|
USTPUTC(')', out);
|
|
|
|
} else {
|
1995-05-30 00:07:29 +00:00
|
|
|
/*
|
1994-05-26 06:18:55 +00:00
|
|
|
* unbalanced parens
|
|
|
|
* (don't 2nd guess - no error)
|
|
|
|
*/
|
|
|
|
pungetc();
|
|
|
|
USTPUTC(')', out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CBQUOTE: /* '`' */
|
2010-04-03 20:55:56 +00:00
|
|
|
out = parsebackq(out, &bqlist, 1,
|
|
|
|
state[level].syntax == DQSYNTAX &&
|
|
|
|
(eofmark == NULL || newvarnest > 0),
|
|
|
|
state[level].syntax == DQSYNTAX || state[level].syntax == ARISYNTAX);
|
1994-05-26 06:18:55 +00:00
|
|
|
break;
|
|
|
|
case CEOF:
|
|
|
|
goto endword; /* exit outer loop */
|
|
|
|
default:
|
2010-04-03 20:55:56 +00:00
|
|
|
if (level == 0)
|
1994-05-26 06:18:55 +00:00
|
|
|
goto endword; /* exit outer loop */
|
|
|
|
USTPUTC(c, out);
|
|
|
|
}
|
|
|
|
c = pgetc_macro();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endword:
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].syntax == ARISYNTAX)
|
1994-05-26 06:18:55 +00:00
|
|
|
synerror("Missing '))'");
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].syntax != BASESYNTAX && eofmark == NULL)
|
1994-05-26 06:18:55 +00:00
|
|
|
synerror("Unterminated quoted string");
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state[level].category == TSTATE_VAR_OLD ||
|
|
|
|
state[level].category == TSTATE_VAR_NEW) {
|
1994-05-26 06:18:55 +00:00
|
|
|
startlinno = plinno;
|
|
|
|
synerror("Missing '}'");
|
|
|
|
}
|
2010-04-03 20:55:56 +00:00
|
|
|
if (state != state_static)
|
|
|
|
parser_temp_free_upto(state);
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC('\0', out);
|
|
|
|
len = out - stackblock();
|
|
|
|
out = stackblock();
|
|
|
|
if (eofmark == NULL) {
|
|
|
|
if ((c == '>' || c == '<')
|
|
|
|
&& quotef == 0
|
|
|
|
&& len <= 2
|
|
|
|
&& (*out == '\0' || is_digit(*out))) {
|
|
|
|
PARSEREDIR();
|
|
|
|
return lasttoken = TREDIR;
|
|
|
|
} else {
|
|
|
|
pungetc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
quoteflag = quotef;
|
|
|
|
backquotelist = bqlist;
|
|
|
|
grabstackblock(len);
|
|
|
|
wordtext = out;
|
|
|
|
return lasttoken = TWORD;
|
|
|
|
/* end of readtoken routine */
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check to see whether we are at the end of the here document. When this
|
|
|
|
* is called, c is set to the first character of the next input line. If
|
|
|
|
* we are at the end of the here document, this routine sets the c to PEOF.
|
|
|
|
*/
|
|
|
|
|
|
|
|
checkend: {
|
|
|
|
if (eofmark) {
|
|
|
|
if (striptabs) {
|
|
|
|
while (c == '\t')
|
|
|
|
c = pgetc();
|
|
|
|
}
|
|
|
|
if (c == *eofmark) {
|
|
|
|
if (pfgets(line, sizeof line) != NULL) {
|
1997-04-28 03:22:09 +00:00
|
|
|
char *p, *q;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
p = line;
|
|
|
|
for (q = eofmark + 1 ; *q && *p == *q ; p++, q++);
|
|
|
|
if (*p == '\n' && *q == '\0') {
|
|
|
|
c = PEOF;
|
|
|
|
plinno++;
|
|
|
|
needprompt = doprompt;
|
|
|
|
} else {
|
|
|
|
pushstring(line, strlen(line), NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto checkend_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a redirection operator. The variable "out" points to a string
|
|
|
|
* specifying the fd to be redirected. The variable "c" contains the
|
|
|
|
* first character of the redirection operator.
|
|
|
|
*/
|
|
|
|
|
|
|
|
parseredir: {
|
|
|
|
char fd = *out;
|
|
|
|
union node *np;
|
|
|
|
|
|
|
|
np = (union node *)stalloc(sizeof (struct nfile));
|
|
|
|
if (c == '>') {
|
|
|
|
np->nfile.fd = 1;
|
|
|
|
c = pgetc();
|
|
|
|
if (c == '>')
|
|
|
|
np->type = NAPPEND;
|
|
|
|
else if (c == '&')
|
|
|
|
np->type = NTOFD;
|
2002-05-19 06:03:05 +00:00
|
|
|
else if (c == '|')
|
|
|
|
np->type = NCLOBBER;
|
1994-05-26 06:18:55 +00:00
|
|
|
else {
|
|
|
|
np->type = NTO;
|
|
|
|
pungetc();
|
|
|
|
}
|
|
|
|
} else { /* c == '<' */
|
|
|
|
np->nfile.fd = 0;
|
|
|
|
c = pgetc();
|
|
|
|
if (c == '<') {
|
|
|
|
if (sizeof (struct nfile) != sizeof (struct nhere)) {
|
|
|
|
np = (union node *)stalloc(sizeof (struct nhere));
|
|
|
|
np->nfile.fd = 0;
|
|
|
|
}
|
|
|
|
np->type = NHERE;
|
|
|
|
heredoc = (struct heredoc *)stalloc(sizeof (struct heredoc));
|
|
|
|
heredoc->here = np;
|
|
|
|
if ((c = pgetc()) == '-') {
|
|
|
|
heredoc->striptabs = 1;
|
|
|
|
} else {
|
|
|
|
heredoc->striptabs = 0;
|
|
|
|
pungetc();
|
|
|
|
}
|
|
|
|
} else if (c == '&')
|
|
|
|
np->type = NFROMFD;
|
2000-10-03 23:13:14 +00:00
|
|
|
else if (c == '>')
|
|
|
|
np->type = NFROMTO;
|
1994-05-26 06:18:55 +00:00
|
|
|
else {
|
|
|
|
np->type = NFROM;
|
|
|
|
pungetc();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fd != '\0')
|
|
|
|
np->nfile.fd = digit_val(fd);
|
|
|
|
redirnode = np;
|
|
|
|
goto parseredir_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse a substitution. At this point, we have read the dollar sign
|
|
|
|
* and nothing else.
|
|
|
|
*/
|
|
|
|
|
|
|
|
parsesub: {
|
2008-05-15 19:55:27 +00:00
|
|
|
char buf[10];
|
1994-05-26 06:18:55 +00:00
|
|
|
int subtype;
|
|
|
|
int typeloc;
|
|
|
|
int flags;
|
|
|
|
char *p;
|
|
|
|
static const char types[] = "}-+?=";
|
2008-05-15 19:55:27 +00:00
|
|
|
int bracketed_name = 0; /* used to handle ${[0-9]*} variables */
|
|
|
|
int i;
|
|
|
|
int linno;
|
2008-05-28 21:44:32 +00:00
|
|
|
int length;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
c = pgetc();
|
2005-08-13 15:47:13 +00:00
|
|
|
if (c != '(' && c != '{' && (is_eof(c) || !is_name(c)) &&
|
|
|
|
!is_special(c)) {
|
1994-05-26 06:18:55 +00:00
|
|
|
USTPUTC('$', out);
|
|
|
|
pungetc();
|
|
|
|
} else if (c == '(') { /* $(command) or $((arith)) */
|
|
|
|
if (pgetc() == '(') {
|
|
|
|
PARSEARITH();
|
|
|
|
} else {
|
|
|
|
pungetc();
|
2010-04-03 20:55:56 +00:00
|
|
|
out = parsebackq(out, &bqlist, 0,
|
|
|
|
state[level].syntax == DQSYNTAX &&
|
|
|
|
(eofmark == NULL || newvarnest > 0),
|
|
|
|
state[level].syntax == DQSYNTAX ||
|
|
|
|
state[level].syntax == ARISYNTAX);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
USTPUTC(CTLVAR, out);
|
|
|
|
typeloc = out - stackblock();
|
|
|
|
USTPUTC(VSNORMAL, out);
|
|
|
|
subtype = VSNORMAL;
|
2008-05-15 19:55:27 +00:00
|
|
|
flags = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
if (c == '{') {
|
1996-09-10 02:42:33 +00:00
|
|
|
bracketed_name = 1;
|
1994-05-26 06:18:55 +00:00
|
|
|
c = pgetc();
|
1996-09-01 10:22:36 +00:00
|
|
|
if (c == '#') {
|
|
|
|
if ((c = pgetc()) == '}')
|
|
|
|
c = '#';
|
|
|
|
else
|
|
|
|
subtype = VSLENGTH;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
subtype = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2005-08-13 15:47:13 +00:00
|
|
|
if (!is_eof(c) && is_name(c)) {
|
2008-05-28 21:44:32 +00:00
|
|
|
length = 0;
|
1994-05-26 06:18:55 +00:00
|
|
|
do {
|
|
|
|
STPUTC(c, out);
|
|
|
|
c = pgetc();
|
2008-05-28 21:44:32 +00:00
|
|
|
length++;
|
2005-08-13 15:47:13 +00:00
|
|
|
} while (!is_eof(c) && is_in_name(c));
|
2008-05-28 21:44:32 +00:00
|
|
|
if (length == 6 &&
|
|
|
|
strncmp(out - length, "LINENO", length) == 0) {
|
2008-05-15 19:55:27 +00:00
|
|
|
/* Replace the variable name with the
|
|
|
|
* current line number. */
|
|
|
|
linno = plinno;
|
|
|
|
if (funclinno != 0)
|
|
|
|
linno -= funclinno - 1;
|
|
|
|
snprintf(buf, sizeof(buf), "%d", linno);
|
|
|
|
STADJUST(-6, out);
|
|
|
|
for (i = 0; buf[i] != '\0'; i++)
|
|
|
|
STPUTC(buf[i], out);
|
|
|
|
flags |= VSLINENO;
|
|
|
|
}
|
1996-09-10 02:42:33 +00:00
|
|
|
} else if (is_digit(c)) {
|
|
|
|
if (bracketed_name) {
|
|
|
|
do {
|
|
|
|
STPUTC(c, out);
|
|
|
|
c = pgetc();
|
|
|
|
} while (is_digit(c));
|
|
|
|
} else {
|
|
|
|
STPUTC(c, out);
|
|
|
|
c = pgetc();
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
} else {
|
2006-11-05 18:36:05 +00:00
|
|
|
if (! is_special(c)) {
|
|
|
|
subtype = VSERROR;
|
|
|
|
if (c == '}')
|
|
|
|
pungetc();
|
2010-04-03 20:35:39 +00:00
|
|
|
else if (c == '\n' || c == PEOF)
|
|
|
|
synerror("Unexpected end of line in substitution");
|
2006-11-05 18:36:05 +00:00
|
|
|
else
|
|
|
|
USTPUTC(c, out);
|
|
|
|
} else {
|
|
|
|
USTPUTC(c, out);
|
|
|
|
c = pgetc();
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
if (subtype == 0) {
|
1996-09-01 10:22:36 +00:00
|
|
|
switch (c) {
|
|
|
|
case ':':
|
2008-05-15 19:55:27 +00:00
|
|
|
flags |= VSNUL;
|
1994-05-26 06:18:55 +00:00
|
|
|
c = pgetc();
|
1996-09-01 10:22:36 +00:00
|
|
|
/*FALLTHROUGH*/
|
|
|
|
default:
|
|
|
|
p = strchr(types, c);
|
2006-11-05 18:36:05 +00:00
|
|
|
if (p == NULL) {
|
2010-04-03 20:35:39 +00:00
|
|
|
if (c == '\n' || c == PEOF)
|
|
|
|
synerror("Unexpected end of line in substitution");
|
2006-11-05 18:36:05 +00:00
|
|
|
if (flags == VSNUL)
|
|
|
|
STPUTC(':', out);
|
|
|
|
STPUTC(c, out);
|
|
|
|
subtype = VSERROR;
|
|
|
|
} else
|
|
|
|
subtype = p - types + VSNORMAL;
|
1996-09-01 10:22:36 +00:00
|
|
|
break;
|
|
|
|
case '%':
|
1996-12-14 06:20:03 +00:00
|
|
|
case '#':
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
|
|
|
int cc = c;
|
|
|
|
subtype = c == '#' ? VSTRIMLEFT :
|
|
|
|
VSTRIMRIGHT;
|
|
|
|
c = pgetc();
|
|
|
|
if (c == cc)
|
|
|
|
subtype++;
|
|
|
|
else
|
|
|
|
pungetc();
|
|
|
|
break;
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2006-11-05 18:36:05 +00:00
|
|
|
} else if (subtype != VSERROR) {
|
1994-05-26 06:18:55 +00:00
|
|
|
pungetc();
|
|
|
|
}
|
2006-11-05 18:36:05 +00:00
|
|
|
STPUTC('=', out);
|
2010-04-03 20:55:56 +00:00
|
|
|
if (subtype != VSLENGTH && (state[level].syntax == DQSYNTAX ||
|
|
|
|
state[level].syntax == ARISYNTAX))
|
1994-05-26 06:18:55 +00:00
|
|
|
flags |= VSQUOTE;
|
|
|
|
*(stackblock() + typeloc) = subtype | flags;
|
2010-04-03 20:55:56 +00:00
|
|
|
if (subtype != VSNORMAL) {
|
|
|
|
if (level + 1 >= maxnest) {
|
|
|
|
maxnest *= 2;
|
|
|
|
if (state == state_static) {
|
|
|
|
state = parser_temp_alloc(
|
|
|
|
maxnest * sizeof(*state));
|
|
|
|
memcpy(state, state_static,
|
2010-10-13 22:18:03 +00:00
|
|
|
MAXNEST_static * sizeof(*state));
|
2010-04-03 20:55:56 +00:00
|
|
|
} else
|
|
|
|
state = parser_temp_realloc(state,
|
|
|
|
maxnest * sizeof(*state));
|
|
|
|
}
|
|
|
|
level++;
|
|
|
|
state[level].parenlevel = 0;
|
|
|
|
if (subtype == VSMINUS || subtype == VSPLUS ||
|
|
|
|
subtype == VSQUESTION || subtype == VSASSIGN) {
|
|
|
|
/*
|
|
|
|
* For operators that were in the Bourne shell,
|
|
|
|
* inherit the double-quote state.
|
|
|
|
*/
|
|
|
|
state[level].syntax = state[level - 1].syntax;
|
|
|
|
state[level].category = TSTATE_VAR_OLD;
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* The other operators take a pattern,
|
|
|
|
* so go to BASESYNTAX.
|
|
|
|
* Also, ' and " are now special, even
|
|
|
|
* in here documents.
|
|
|
|
*/
|
|
|
|
state[level].syntax = BASESYNTAX;
|
|
|
|
state[level].category = TSTATE_VAR_NEW;
|
|
|
|
newvarnest++;
|
|
|
|
}
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
goto parsesub_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Parse an arithmetic expansion (indicate start of one and set state)
|
|
|
|
*/
|
|
|
|
parsearith: {
|
|
|
|
|
2010-04-03 20:55:56 +00:00
|
|
|
if (level + 1 >= maxnest) {
|
|
|
|
maxnest *= 2;
|
|
|
|
if (state == state_static) {
|
|
|
|
state = parser_temp_alloc(
|
|
|
|
maxnest * sizeof(*state));
|
|
|
|
memcpy(state, state_static,
|
2010-10-13 22:18:03 +00:00
|
|
|
MAXNEST_static * sizeof(*state));
|
2010-04-03 20:55:56 +00:00
|
|
|
} else
|
|
|
|
state = parser_temp_realloc(state,
|
|
|
|
maxnest * sizeof(*state));
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2010-04-03 20:55:56 +00:00
|
|
|
level++;
|
|
|
|
state[level].syntax = ARISYNTAX;
|
|
|
|
state[level].parenlevel = 0;
|
|
|
|
state[level].category = TSTATE_ARITH;
|
|
|
|
USTPUTC(CTLARI, out);
|
|
|
|
if (state[level - 1].syntax == DQSYNTAX)
|
|
|
|
USTPUTC('"',out);
|
|
|
|
else
|
|
|
|
USTPUTC(' ',out);
|
1994-05-26 06:18:55 +00:00
|
|
|
goto parsearith_return;
|
|
|
|
}
|
|
|
|
|
|
|
|
} /* end of readtoken */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef mkinit
|
|
|
|
RESET {
|
|
|
|
tokpushback = 0;
|
|
|
|
checkkwd = 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Returns true if the text contains nothing to expand (no dollar signs
|
|
|
|
* or backquotes).
|
|
|
|
*/
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static int
|
2002-02-02 06:50:57 +00:00
|
|
|
noexpand(char *text)
|
|
|
|
{
|
1997-04-28 03:22:09 +00:00
|
|
|
char *p;
|
|
|
|
char c;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
p = text;
|
|
|
|
while ((c = *p++) != '\0') {
|
1998-09-13 19:24:57 +00:00
|
|
|
if ( c == CTLQUOTEMARK)
|
|
|
|
continue;
|
1994-05-26 06:18:55 +00:00
|
|
|
if (c == CTLESC)
|
|
|
|
p++;
|
2001-09-19 20:07:47 +00:00
|
|
|
else if (BASESYNTAX[(int)c] == CCTL)
|
1994-05-26 06:18:55 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Return true if the argument is a legal variable name (a letter or
|
|
|
|
* underscore followed by zero or more letters, underscores, and digits).
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2009-12-24 18:41:14 +00:00
|
|
|
goodname(const char *name)
|
2002-02-02 06:50:57 +00:00
|
|
|
{
|
2009-12-24 18:41:14 +00:00
|
|
|
const char *p;
|
1994-05-26 06:18:55 +00:00
|
|
|
|
|
|
|
p = name;
|
|
|
|
if (! is_name(*p))
|
|
|
|
return 0;
|
|
|
|
while (*++p) {
|
|
|
|
if (! is_in_name(*p))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called when an unexpected token is read during the parse. The argument
|
|
|
|
* is the token that is expected, or -1 if more than one type of token can
|
|
|
|
* occur at this point.
|
|
|
|
*/
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2002-02-02 06:50:57 +00:00
|
|
|
synexpect(int token)
|
1996-09-01 10:22:36 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
char msg[64];
|
|
|
|
|
|
|
|
if (token >= 0) {
|
|
|
|
fmtstr(msg, 64, "%s unexpected (expecting %s)",
|
|
|
|
tokname[lasttoken], tokname[token]);
|
|
|
|
} else {
|
|
|
|
fmtstr(msg, 64, "%s unexpected", tokname[lasttoken]);
|
|
|
|
}
|
|
|
|
synerror(msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2009-12-27 18:04:05 +00:00
|
|
|
synerror(const char *msg)
|
2002-02-02 06:50:57 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
if (commandname)
|
2010-01-01 18:17:46 +00:00
|
|
|
outfmt(out2, "%s: %d: ", commandname, startlinno);
|
|
|
|
outfmt(out2, "Syntax error: %s\n", msg);
|
1994-05-26 06:18:55 +00:00
|
|
|
error((char *)NULL);
|
|
|
|
}
|
|
|
|
|
2010-10-13 22:18:03 +00:00
|
|
|
static void
|
2002-02-02 06:50:57 +00:00
|
|
|
setprompt(int which)
|
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
whichprompt = which;
|
|
|
|
|
1996-09-01 10:22:36 +00:00
|
|
|
#ifndef NO_HISTORY
|
1994-05-26 06:18:55 +00:00
|
|
|
if (!el)
|
1996-09-01 10:22:36 +00:00
|
|
|
#endif
|
2009-11-21 14:28:32 +00:00
|
|
|
{
|
1994-05-26 06:18:55 +00:00
|
|
|
out2str(getprompt(NULL));
|
2009-11-21 14:28:32 +00:00
|
|
|
flushout(out2);
|
|
|
|
}
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* called by editline -- any expansions to the prompt
|
|
|
|
* should be added here.
|
|
|
|
*/
|
|
|
|
char *
|
2002-02-02 06:50:57 +00:00
|
|
|
getprompt(void *unused __unused)
|
1997-05-19 00:18:52 +00:00
|
|
|
{
|
2005-03-01 03:35:58 +00:00
|
|
|
static char ps[PROMPTLEN];
|
|
|
|
char *fmt;
|
2010-07-02 22:17:13 +00:00
|
|
|
const char *pwd;
|
|
|
|
int i, trim;
|
2009-12-27 18:04:05 +00:00
|
|
|
static char internal_error[] = "<internal prompt error>";
|
2005-03-01 03:35:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Select prompt format.
|
|
|
|
*/
|
1994-05-26 06:18:55 +00:00
|
|
|
switch (whichprompt) {
|
|
|
|
case 0:
|
2009-12-27 18:04:05 +00:00
|
|
|
fmt = nullstr;
|
2005-03-01 03:35:58 +00:00
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case 1:
|
2005-03-01 03:35:58 +00:00
|
|
|
fmt = ps1val();
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
case 2:
|
2005-03-01 03:35:58 +00:00
|
|
|
fmt = ps2val();
|
|
|
|
break;
|
1994-05-26 06:18:55 +00:00
|
|
|
default:
|
2009-12-27 18:04:05 +00:00
|
|
|
return internal_error;
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|
2005-03-01 03:35:58 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Format prompt string.
|
|
|
|
*/
|
|
|
|
for (i = 0; (i < 127) && (*fmt != '\0'); i++, fmt++)
|
|
|
|
if (*fmt == '\\')
|
|
|
|
switch (*++fmt) {
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Hostname.
|
|
|
|
*
|
|
|
|
* \h specifies just the local hostname,
|
|
|
|
* \H specifies fully-qualified hostname.
|
|
|
|
*/
|
|
|
|
case 'h':
|
|
|
|
case 'H':
|
2005-08-13 15:00:54 +00:00
|
|
|
ps[i] = '\0';
|
2005-03-01 03:35:58 +00:00
|
|
|
gethostname(&ps[i], PROMPTLEN - i);
|
|
|
|
/* Skip to end of hostname. */
|
|
|
|
trim = (*fmt == 'h') ? '.' : '\0';
|
|
|
|
while ((ps[i+1] != '\0') && (ps[i+1] != trim))
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Working directory.
|
|
|
|
*
|
|
|
|
* \W specifies just the final component,
|
|
|
|
* \w specifies the entire path.
|
|
|
|
*/
|
|
|
|
case 'W':
|
|
|
|
case 'w':
|
2010-07-02 22:17:13 +00:00
|
|
|
pwd = lookupvar("PWD");
|
|
|
|
if (pwd == NULL)
|
|
|
|
pwd = "?";
|
|
|
|
if (*fmt == 'W' &&
|
|
|
|
*pwd == '/' && pwd[1] != '\0')
|
|
|
|
strlcpy(&ps[i], strrchr(pwd, '/') + 1,
|
|
|
|
PROMPTLEN - i);
|
|
|
|
else
|
|
|
|
strlcpy(&ps[i], pwd, PROMPTLEN - i);
|
2005-03-01 03:35:58 +00:00
|
|
|
/* Skip to end of path. */
|
|
|
|
while (ps[i + 1] != '\0')
|
|
|
|
i++;
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Superuser status.
|
|
|
|
*
|
|
|
|
* '$' for normal users, '#' for root.
|
|
|
|
*/
|
|
|
|
case '$':
|
|
|
|
ps[i] = (geteuid() != 0) ? '$' : '#';
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A literal \.
|
|
|
|
*/
|
|
|
|
case '\\':
|
|
|
|
ps[i] = '\\';
|
|
|
|
break;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Emit unrecognized formats verbatim.
|
|
|
|
*/
|
|
|
|
default:
|
|
|
|
ps[i++] = '\\';
|
|
|
|
ps[i] = *fmt;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
ps[i] = *fmt;
|
|
|
|
ps[i] = '\0';
|
|
|
|
return (ps);
|
1994-05-26 06:18:55 +00:00
|
|
|
}
|