parser.c revision 1.73 1 1.73 christos /* $NetBSD: parser.c,v 1.73 2008/11/08 00:14:05 christos Exp $ */
2 1.24 cgd
3 1.1 cgd /*-
4 1.11 jtc * Copyright (c) 1991, 1993
5 1.11 jtc * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * This code is derived from software contributed to Berkeley by
8 1.1 cgd * Kenneth Almquist.
9 1.1 cgd *
10 1.1 cgd * Redistribution and use in source and binary forms, with or without
11 1.1 cgd * modification, are permitted provided that the following conditions
12 1.1 cgd * are met:
13 1.1 cgd * 1. Redistributions of source code must retain the above copyright
14 1.1 cgd * notice, this list of conditions and the following disclaimer.
15 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 cgd * notice, this list of conditions and the following disclaimer in the
17 1.1 cgd * documentation and/or other materials provided with the distribution.
18 1.55 agc * 3. Neither the name of the University nor the names of its contributors
19 1.1 cgd * may be used to endorse or promote products derived from this software
20 1.1 cgd * without specific prior written permission.
21 1.1 cgd *
22 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 1.1 cgd * SUCH DAMAGE.
33 1.1 cgd */
34 1.1 cgd
35 1.36 christos #include <sys/cdefs.h>
36 1.1 cgd #ifndef lint
37 1.24 cgd #if 0
38 1.26 christos static char sccsid[] = "@(#)parser.c 8.7 (Berkeley) 5/16/95";
39 1.24 cgd #else
40 1.73 christos __RCSID("$NetBSD: parser.c,v 1.73 2008/11/08 00:14:05 christos Exp $");
41 1.24 cgd #endif
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.25 christos #include <stdlib.h>
45 1.25 christos
46 1.1 cgd #include "shell.h"
47 1.1 cgd #include "parser.h"
48 1.1 cgd #include "nodes.h"
49 1.1 cgd #include "expand.h" /* defines rmescapes() */
50 1.46 christos #include "eval.h" /* defines commandname */
51 1.1 cgd #include "redir.h" /* defines copyfd() */
52 1.1 cgd #include "syntax.h"
53 1.1 cgd #include "options.h"
54 1.1 cgd #include "input.h"
55 1.1 cgd #include "output.h"
56 1.1 cgd #include "var.h"
57 1.1 cgd #include "error.h"
58 1.1 cgd #include "memalloc.h"
59 1.1 cgd #include "mystring.h"
60 1.11 jtc #include "alias.h"
61 1.25 christos #include "show.h"
62 1.35 christos #ifndef SMALL
63 1.11 jtc #include "myhistedit.h"
64 1.14 cgd #endif
65 1.1 cgd
66 1.1 cgd /*
67 1.1 cgd * Shell command parser.
68 1.1 cgd */
69 1.1 cgd
70 1.1 cgd #define EOFMARKLEN 79
71 1.1 cgd
72 1.1 cgd /* values returned by readtoken */
73 1.30 christos #include "token.h"
74 1.1 cgd
75 1.51 christos #define OPENBRACE '{'
76 1.51 christos #define CLOSEBRACE '}'
77 1.1 cgd
78 1.1 cgd
79 1.1 cgd struct heredoc {
80 1.1 cgd struct heredoc *next; /* next here document in list */
81 1.1 cgd union node *here; /* redirection node */
82 1.1 cgd char *eofmark; /* string indicating end of input */
83 1.1 cgd int striptabs; /* if set, strip leading tabs */
84 1.1 cgd };
85 1.1 cgd
86 1.1 cgd
87 1.1 cgd
88 1.48 christos static int noalias = 0; /* when set, don't handle aliases */
89 1.1 cgd struct heredoc *heredoclist; /* list of here documents to read */
90 1.1 cgd int parsebackquote; /* nonzero if we are inside backquotes */
91 1.1 cgd int doprompt; /* if set, prompt the user */
92 1.1 cgd int needprompt; /* true if interactive and at start of line */
93 1.1 cgd int lasttoken; /* last token read */
94 1.1 cgd MKINIT int tokpushback; /* last token pushed back */
95 1.1 cgd char *wordtext; /* text of last word returned by readtoken */
96 1.67 dsl MKINIT int checkkwd; /* 1 == check for kwds, 2 == also eat newlines */
97 1.1 cgd struct nodelist *backquotelist;
98 1.1 cgd union node *redirnode;
99 1.1 cgd struct heredoc *heredoc;
100 1.1 cgd int quoteflag; /* set if (part of) last token was quoted */
101 1.1 cgd int startlinno; /* line # where last token started */
102 1.1 cgd
103 1.1 cgd
104 1.73 christos STATIC union node *list(int, int);
105 1.54 christos STATIC union node *andor(void);
106 1.54 christos STATIC union node *pipeline(void);
107 1.54 christos STATIC union node *command(void);
108 1.54 christos STATIC union node *simplecmd(union node **, union node *);
109 1.54 christos STATIC union node *makename(void);
110 1.54 christos STATIC void parsefname(void);
111 1.54 christos STATIC void parseheredoc(void);
112 1.54 christos STATIC int peektoken(void);
113 1.54 christos STATIC int readtoken(void);
114 1.54 christos STATIC int xxreadtoken(void);
115 1.54 christos STATIC int readtoken1(int, char const *, char *, int);
116 1.54 christos STATIC int noexpand(char *);
117 1.66 perry STATIC void synexpect(int) __dead;
118 1.66 perry STATIC void synerror(const char *) __dead;
119 1.54 christos STATIC void setprompt(int);
120 1.1 cgd
121 1.22 cgd
122 1.1 cgd /*
123 1.1 cgd * Read and parse a command. Returns NEOF on end of file. (NULL is a
124 1.1 cgd * valid parse tree indicating a blank line.)
125 1.1 cgd */
126 1.1 cgd
127 1.1 cgd union node *
128 1.45 cgd parsecmd(int interact)
129 1.22 cgd {
130 1.1 cgd int t;
131 1.1 cgd
132 1.47 christos tokpushback = 0;
133 1.1 cgd doprompt = interact;
134 1.1 cgd if (doprompt)
135 1.11 jtc setprompt(1);
136 1.11 jtc else
137 1.11 jtc setprompt(0);
138 1.1 cgd needprompt = 0;
139 1.11 jtc t = readtoken();
140 1.11 jtc if (t == TEOF)
141 1.1 cgd return NEOF;
142 1.1 cgd if (t == TNL)
143 1.1 cgd return NULL;
144 1.1 cgd tokpushback++;
145 1.73 christos return list(1, 0);
146 1.1 cgd }
147 1.1 cgd
148 1.1 cgd
149 1.1 cgd STATIC union node *
150 1.73 christos list(int nlflag, int erflag)
151 1.22 cgd {
152 1.1 cgd union node *n1, *n2, *n3;
153 1.12 jtc int tok;
154 1.65 dsl TRACE(("list: entered\n"));
155 1.1 cgd
156 1.1 cgd checkkwd = 2;
157 1.1 cgd if (nlflag == 0 && tokendlist[peektoken()])
158 1.1 cgd return NULL;
159 1.12 jtc n1 = NULL;
160 1.1 cgd for (;;) {
161 1.12 jtc n2 = andor();
162 1.12 jtc tok = readtoken();
163 1.12 jtc if (tok == TBACKGND) {
164 1.12 jtc if (n2->type == NCMD || n2->type == NPIPE) {
165 1.12 jtc n2->ncmd.backgnd = 1;
166 1.12 jtc } else if (n2->type == NREDIR) {
167 1.12 jtc n2->type = NBACKGND;
168 1.1 cgd } else {
169 1.1 cgd n3 = (union node *)stalloc(sizeof (struct nredir));
170 1.1 cgd n3->type = NBACKGND;
171 1.12 jtc n3->nredir.n = n2;
172 1.1 cgd n3->nredir.redirect = NULL;
173 1.12 jtc n2 = n3;
174 1.1 cgd }
175 1.12 jtc }
176 1.12 jtc if (n1 == NULL) {
177 1.12 jtc n1 = n2;
178 1.12 jtc }
179 1.12 jtc else {
180 1.12 jtc n3 = (union node *)stalloc(sizeof (struct nbinary));
181 1.12 jtc n3->type = NSEMI;
182 1.12 jtc n3->nbinary.ch1 = n1;
183 1.12 jtc n3->nbinary.ch2 = n2;
184 1.12 jtc n1 = n3;
185 1.12 jtc }
186 1.12 jtc switch (tok) {
187 1.12 jtc case TBACKGND:
188 1.12 jtc case TSEMI:
189 1.12 jtc tok = readtoken();
190 1.12 jtc /* fall through */
191 1.1 cgd case TNL:
192 1.12 jtc if (tok == TNL) {
193 1.1 cgd parseheredoc();
194 1.1 cgd if (nlflag)
195 1.1 cgd return n1;
196 1.1 cgd } else {
197 1.1 cgd tokpushback++;
198 1.1 cgd }
199 1.1 cgd checkkwd = 2;
200 1.1 cgd if (tokendlist[peektoken()])
201 1.1 cgd return n1;
202 1.1 cgd break;
203 1.1 cgd case TEOF:
204 1.1 cgd if (heredoclist)
205 1.1 cgd parseheredoc();
206 1.1 cgd else
207 1.1 cgd pungetc(); /* push back EOF on input */
208 1.1 cgd return n1;
209 1.1 cgd default:
210 1.73 christos if (nlflag || erflag)
211 1.1 cgd synexpect(-1);
212 1.1 cgd tokpushback++;
213 1.1 cgd return n1;
214 1.1 cgd }
215 1.1 cgd }
216 1.1 cgd }
217 1.1 cgd
218 1.1 cgd
219 1.1 cgd
220 1.1 cgd STATIC union node *
221 1.54 christos andor(void)
222 1.54 christos {
223 1.1 cgd union node *n1, *n2, *n3;
224 1.1 cgd int t;
225 1.1 cgd
226 1.65 dsl TRACE(("andor: entered\n"));
227 1.1 cgd n1 = pipeline();
228 1.1 cgd for (;;) {
229 1.1 cgd if ((t = readtoken()) == TAND) {
230 1.1 cgd t = NAND;
231 1.1 cgd } else if (t == TOR) {
232 1.1 cgd t = NOR;
233 1.1 cgd } else {
234 1.1 cgd tokpushback++;
235 1.1 cgd return n1;
236 1.1 cgd }
237 1.1 cgd n2 = pipeline();
238 1.1 cgd n3 = (union node *)stalloc(sizeof (struct nbinary));
239 1.1 cgd n3->type = t;
240 1.1 cgd n3->nbinary.ch1 = n1;
241 1.1 cgd n3->nbinary.ch2 = n2;
242 1.1 cgd n1 = n3;
243 1.1 cgd }
244 1.1 cgd }
245 1.1 cgd
246 1.1 cgd
247 1.1 cgd
248 1.1 cgd STATIC union node *
249 1.54 christos pipeline(void)
250 1.54 christos {
251 1.44 christos union node *n1, *n2, *pipenode;
252 1.1 cgd struct nodelist *lp, *prev;
253 1.44 christos int negate;
254 1.1 cgd
255 1.65 dsl TRACE(("pipeline: entered\n"));
256 1.65 dsl
257 1.44 christos negate = 0;
258 1.65 dsl checkkwd = 2;
259 1.65 dsl while (readtoken() == TNOT) {
260 1.65 dsl TRACE(("pipeline: TNOT recognized\n"));
261 1.44 christos negate = !negate;
262 1.65 dsl }
263 1.44 christos tokpushback++;
264 1.1 cgd n1 = command();
265 1.1 cgd if (readtoken() == TPIPE) {
266 1.1 cgd pipenode = (union node *)stalloc(sizeof (struct npipe));
267 1.1 cgd pipenode->type = NPIPE;
268 1.1 cgd pipenode->npipe.backgnd = 0;
269 1.1 cgd lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
270 1.1 cgd pipenode->npipe.cmdlist = lp;
271 1.1 cgd lp->n = n1;
272 1.1 cgd do {
273 1.1 cgd prev = lp;
274 1.1 cgd lp = (struct nodelist *)stalloc(sizeof (struct nodelist));
275 1.1 cgd lp->n = command();
276 1.1 cgd prev->next = lp;
277 1.1 cgd } while (readtoken() == TPIPE);
278 1.1 cgd lp->next = NULL;
279 1.1 cgd n1 = pipenode;
280 1.1 cgd }
281 1.1 cgd tokpushback++;
282 1.44 christos if (negate) {
283 1.65 dsl TRACE(("negate pipeline\n"));
284 1.44 christos n2 = (union node *)stalloc(sizeof (struct nnot));
285 1.44 christos n2->type = NNOT;
286 1.44 christos n2->nnot.com = n1;
287 1.44 christos return n2;
288 1.44 christos } else
289 1.44 christos return n1;
290 1.1 cgd }
291 1.1 cgd
292 1.1 cgd
293 1.1 cgd
294 1.1 cgd STATIC union node *
295 1.54 christos command(void)
296 1.54 christos {
297 1.1 cgd union node *n1, *n2;
298 1.1 cgd union node *ap, **app;
299 1.1 cgd union node *cp, **cpp;
300 1.1 cgd union node *redir, **rpp;
301 1.31 christos int t, negate = 0;
302 1.1 cgd
303 1.65 dsl TRACE(("command: entered\n"));
304 1.65 dsl
305 1.1 cgd checkkwd = 2;
306 1.25 christos redir = NULL;
307 1.25 christos n1 = NULL;
308 1.5 sef rpp = &redir;
309 1.31 christos
310 1.5 sef /* Check for redirection which may precede command */
311 1.5 sef while (readtoken() == TREDIR) {
312 1.5 sef *rpp = n2 = redirnode;
313 1.5 sef rpp = &n2->nfile.next;
314 1.5 sef parsefname();
315 1.5 sef }
316 1.5 sef tokpushback++;
317 1.5 sef
318 1.31 christos while (readtoken() == TNOT) {
319 1.31 christos TRACE(("command: TNOT recognized\n"));
320 1.31 christos negate = !negate;
321 1.31 christos }
322 1.31 christos tokpushback++;
323 1.31 christos
324 1.1 cgd switch (readtoken()) {
325 1.1 cgd case TIF:
326 1.1 cgd n1 = (union node *)stalloc(sizeof (struct nif));
327 1.1 cgd n1->type = NIF;
328 1.73 christos n1->nif.test = list(0, 0);
329 1.1 cgd if (readtoken() != TTHEN)
330 1.1 cgd synexpect(TTHEN);
331 1.73 christos n1->nif.ifpart = list(0, 0);
332 1.1 cgd n2 = n1;
333 1.1 cgd while (readtoken() == TELIF) {
334 1.1 cgd n2->nif.elsepart = (union node *)stalloc(sizeof (struct nif));
335 1.1 cgd n2 = n2->nif.elsepart;
336 1.1 cgd n2->type = NIF;
337 1.73 christos n2->nif.test = list(0, 0);
338 1.1 cgd if (readtoken() != TTHEN)
339 1.1 cgd synexpect(TTHEN);
340 1.73 christos n2->nif.ifpart = list(0, 0);
341 1.1 cgd }
342 1.1 cgd if (lasttoken == TELSE)
343 1.73 christos n2->nif.elsepart = list(0, 0);
344 1.1 cgd else {
345 1.1 cgd n2->nif.elsepart = NULL;
346 1.1 cgd tokpushback++;
347 1.1 cgd }
348 1.1 cgd if (readtoken() != TFI)
349 1.1 cgd synexpect(TFI);
350 1.1 cgd checkkwd = 1;
351 1.1 cgd break;
352 1.1 cgd case TWHILE:
353 1.1 cgd case TUNTIL: {
354 1.1 cgd int got;
355 1.1 cgd n1 = (union node *)stalloc(sizeof (struct nbinary));
356 1.1 cgd n1->type = (lasttoken == TWHILE)? NWHILE : NUNTIL;
357 1.73 christos n1->nbinary.ch1 = list(0, 0);
358 1.1 cgd if ((got=readtoken()) != TDO) {
359 1.1 cgd TRACE(("expecting DO got %s %s\n", tokname[got], got == TWORD ? wordtext : ""));
360 1.1 cgd synexpect(TDO);
361 1.1 cgd }
362 1.73 christos n1->nbinary.ch2 = list(0, 0);
363 1.1 cgd if (readtoken() != TDONE)
364 1.1 cgd synexpect(TDONE);
365 1.1 cgd checkkwd = 1;
366 1.1 cgd break;
367 1.1 cgd }
368 1.1 cgd case TFOR:
369 1.1 cgd if (readtoken() != TWORD || quoteflag || ! goodname(wordtext))
370 1.1 cgd synerror("Bad for loop variable");
371 1.1 cgd n1 = (union node *)stalloc(sizeof (struct nfor));
372 1.1 cgd n1->type = NFOR;
373 1.1 cgd n1->nfor.var = wordtext;
374 1.1 cgd if (readtoken() == TWORD && ! quoteflag && equal(wordtext, "in")) {
375 1.1 cgd app = ≈
376 1.1 cgd while (readtoken() == TWORD) {
377 1.1 cgd n2 = (union node *)stalloc(sizeof (struct narg));
378 1.1 cgd n2->type = NARG;
379 1.1 cgd n2->narg.text = wordtext;
380 1.1 cgd n2->narg.backquote = backquotelist;
381 1.1 cgd *app = n2;
382 1.1 cgd app = &n2->narg.next;
383 1.1 cgd }
384 1.1 cgd *app = NULL;
385 1.1 cgd n1->nfor.args = ap;
386 1.5 sef if (lasttoken != TNL && lasttoken != TSEMI)
387 1.5 sef synexpect(-1);
388 1.1 cgd } else {
389 1.43 christos static char argvars[5] = {CTLVAR, VSNORMAL|VSQUOTE,
390 1.1 cgd '@', '=', '\0'};
391 1.1 cgd n2 = (union node *)stalloc(sizeof (struct narg));
392 1.1 cgd n2->type = NARG;
393 1.43 christos n2->narg.text = argvars;
394 1.1 cgd n2->narg.backquote = NULL;
395 1.1 cgd n2->narg.next = NULL;
396 1.1 cgd n1->nfor.args = n2;
397 1.11 jtc /*
398 1.11 jtc * Newline or semicolon here is optional (but note
399 1.11 jtc * that the original Bourne shell only allowed NL).
400 1.11 jtc */
401 1.11 jtc if (lasttoken != TNL && lasttoken != TSEMI)
402 1.11 jtc tokpushback++;
403 1.1 cgd }
404 1.1 cgd checkkwd = 2;
405 1.1 cgd if ((t = readtoken()) == TDO)
406 1.1 cgd t = TDONE;
407 1.1 cgd else if (t == TBEGIN)
408 1.1 cgd t = TEND;
409 1.1 cgd else
410 1.1 cgd synexpect(-1);
411 1.73 christos n1->nfor.body = list(0, 0);
412 1.1 cgd if (readtoken() != t)
413 1.1 cgd synexpect(t);
414 1.1 cgd checkkwd = 1;
415 1.1 cgd break;
416 1.1 cgd case TCASE:
417 1.1 cgd n1 = (union node *)stalloc(sizeof (struct ncase));
418 1.1 cgd n1->type = NCASE;
419 1.1 cgd if (readtoken() != TWORD)
420 1.1 cgd synexpect(TWORD);
421 1.1 cgd n1->ncase.expr = n2 = (union node *)stalloc(sizeof (struct narg));
422 1.1 cgd n2->type = NARG;
423 1.1 cgd n2->narg.text = wordtext;
424 1.1 cgd n2->narg.backquote = backquotelist;
425 1.1 cgd n2->narg.next = NULL;
426 1.1 cgd while (readtoken() == TNL);
427 1.1 cgd if (lasttoken != TWORD || ! equal(wordtext, "in"))
428 1.1 cgd synerror("expecting \"in\"");
429 1.1 cgd cpp = &n1->ncase.cases;
430 1.48 christos noalias = 1;
431 1.15 jtc checkkwd = 2, readtoken();
432 1.15 jtc do {
433 1.1 cgd *cpp = cp = (union node *)stalloc(sizeof (struct nclist));
434 1.61 christos if (lasttoken == TLP)
435 1.61 christos readtoken();
436 1.1 cgd cp->type = NCLIST;
437 1.1 cgd app = &cp->nclist.pattern;
438 1.1 cgd for (;;) {
439 1.1 cgd *app = ap = (union node *)stalloc(sizeof (struct narg));
440 1.1 cgd ap->type = NARG;
441 1.1 cgd ap->narg.text = wordtext;
442 1.1 cgd ap->narg.backquote = backquotelist;
443 1.15 jtc if (checkkwd = 2, readtoken() != TPIPE)
444 1.1 cgd break;
445 1.1 cgd app = &ap->narg.next;
446 1.16 jtc readtoken();
447 1.1 cgd }
448 1.1 cgd ap->narg.next = NULL;
449 1.48 christos noalias = 0;
450 1.48 christos if (lasttoken != TRP) {
451 1.1 cgd synexpect(TRP);
452 1.48 christos }
453 1.73 christos cp->nclist.body = list(0, 0);
454 1.15 jtc
455 1.15 jtc checkkwd = 2;
456 1.15 jtc if ((t = readtoken()) != TESAC) {
457 1.48 christos if (t != TENDCASE) {
458 1.48 christos noalias = 0;
459 1.15 jtc synexpect(TENDCASE);
460 1.48 christos } else {
461 1.48 christos noalias = 1;
462 1.48 christos checkkwd = 2;
463 1.48 christos readtoken();
464 1.48 christos }
465 1.15 jtc }
466 1.1 cgd cpp = &cp->nclist.next;
467 1.15 jtc } while(lasttoken != TESAC);
468 1.48 christos noalias = 0;
469 1.1 cgd *cpp = NULL;
470 1.1 cgd checkkwd = 1;
471 1.1 cgd break;
472 1.1 cgd case TLP:
473 1.1 cgd n1 = (union node *)stalloc(sizeof (struct nredir));
474 1.1 cgd n1->type = NSUBSHELL;
475 1.73 christos n1->nredir.n = list(0, 0);
476 1.1 cgd n1->nredir.redirect = NULL;
477 1.1 cgd if (readtoken() != TRP)
478 1.1 cgd synexpect(TRP);
479 1.1 cgd checkkwd = 1;
480 1.1 cgd break;
481 1.1 cgd case TBEGIN:
482 1.73 christos n1 = list(0, 0);
483 1.1 cgd if (readtoken() != TEND)
484 1.1 cgd synexpect(TEND);
485 1.1 cgd checkkwd = 1;
486 1.1 cgd break;
487 1.5 sef /* Handle an empty command like other simple commands. */
488 1.19 mycroft case TSEMI:
489 1.19 mycroft /*
490 1.19 mycroft * An empty command before a ; doesn't make much sense, and
491 1.19 mycroft * should certainly be disallowed in the case of `if ;'.
492 1.19 mycroft */
493 1.19 mycroft if (!redir)
494 1.19 mycroft synexpect(-1);
495 1.30 christos case TAND:
496 1.30 christos case TOR:
497 1.5 sef case TNL:
498 1.20 mycroft case TEOF:
499 1.1 cgd case TWORD:
500 1.19 mycroft case TRP:
501 1.1 cgd tokpushback++;
502 1.31 christos n1 = simplecmd(rpp, redir);
503 1.31 christos goto checkneg;
504 1.1 cgd default:
505 1.1 cgd synexpect(-1);
506 1.39 mycroft /* NOTREACHED */
507 1.1 cgd }
508 1.1 cgd
509 1.1 cgd /* Now check for redirection which may follow command */
510 1.1 cgd while (readtoken() == TREDIR) {
511 1.1 cgd *rpp = n2 = redirnode;
512 1.1 cgd rpp = &n2->nfile.next;
513 1.1 cgd parsefname();
514 1.1 cgd }
515 1.1 cgd tokpushback++;
516 1.1 cgd *rpp = NULL;
517 1.1 cgd if (redir) {
518 1.1 cgd if (n1->type != NSUBSHELL) {
519 1.1 cgd n2 = (union node *)stalloc(sizeof (struct nredir));
520 1.1 cgd n2->type = NREDIR;
521 1.1 cgd n2->nredir.n = n1;
522 1.1 cgd n1 = n2;
523 1.1 cgd }
524 1.1 cgd n1->nredir.redirect = redir;
525 1.1 cgd }
526 1.31 christos
527 1.31 christos checkneg:
528 1.31 christos if (negate) {
529 1.65 dsl TRACE(("negate command\n"));
530 1.31 christos n2 = (union node *)stalloc(sizeof (struct nnot));
531 1.31 christos n2->type = NNOT;
532 1.31 christos n2->nnot.com = n1;
533 1.31 christos return n2;
534 1.31 christos }
535 1.31 christos else
536 1.31 christos return n1;
537 1.1 cgd }
538 1.1 cgd
539 1.1 cgd
540 1.1 cgd STATIC union node *
541 1.54 christos simplecmd(union node **rpp, union node *redir)
542 1.54 christos {
543 1.1 cgd union node *args, **app;
544 1.5 sef union node **orig_rpp = rpp;
545 1.31 christos union node *n = NULL, *n2;
546 1.31 christos int negate = 0;
547 1.1 cgd
548 1.11 jtc /* If we don't have any redirections already, then we must reset */
549 1.11 jtc /* rpp to be the address of the local redir variable. */
550 1.5 sef if (redir == 0)
551 1.5 sef rpp = &redir;
552 1.5 sef
553 1.1 cgd args = NULL;
554 1.1 cgd app = &args;
555 1.30 christos /*
556 1.11 jtc * We save the incoming value, because we need this for shell
557 1.11 jtc * functions. There can not be a redirect or an argument between
558 1.30 christos * the function name and the open parenthesis.
559 1.11 jtc */
560 1.5 sef orig_rpp = rpp;
561 1.11 jtc
562 1.31 christos while (readtoken() == TNOT) {
563 1.65 dsl TRACE(("simplcmd: TNOT recognized\n"));
564 1.31 christos negate = !negate;
565 1.31 christos }
566 1.31 christos tokpushback++;
567 1.31 christos
568 1.1 cgd for (;;) {
569 1.1 cgd if (readtoken() == TWORD) {
570 1.1 cgd n = (union node *)stalloc(sizeof (struct narg));
571 1.1 cgd n->type = NARG;
572 1.1 cgd n->narg.text = wordtext;
573 1.1 cgd n->narg.backquote = backquotelist;
574 1.1 cgd *app = n;
575 1.1 cgd app = &n->narg.next;
576 1.1 cgd } else if (lasttoken == TREDIR) {
577 1.1 cgd *rpp = n = redirnode;
578 1.1 cgd rpp = &n->nfile.next;
579 1.1 cgd parsefname(); /* read name of redirection file */
580 1.1 cgd } else if (lasttoken == TLP && app == &args->narg.next
581 1.5 sef && rpp == orig_rpp) {
582 1.1 cgd /* We have a function */
583 1.1 cgd if (readtoken() != TRP)
584 1.1 cgd synexpect(TRP);
585 1.64 christos rmescapes(n->narg.text);
586 1.64 christos if (!goodname(n->narg.text))
587 1.1 cgd synerror("Bad function name");
588 1.1 cgd n->type = NDEFUN;
589 1.1 cgd n->narg.next = command();
590 1.31 christos goto checkneg;
591 1.1 cgd } else {
592 1.1 cgd tokpushback++;
593 1.1 cgd break;
594 1.1 cgd }
595 1.1 cgd }
596 1.1 cgd *app = NULL;
597 1.1 cgd *rpp = NULL;
598 1.1 cgd n = (union node *)stalloc(sizeof (struct ncmd));
599 1.1 cgd n->type = NCMD;
600 1.1 cgd n->ncmd.backgnd = 0;
601 1.1 cgd n->ncmd.args = args;
602 1.1 cgd n->ncmd.redirect = redir;
603 1.31 christos
604 1.31 christos checkneg:
605 1.31 christos if (negate) {
606 1.65 dsl TRACE(("negate simplecmd\n"));
607 1.31 christos n2 = (union node *)stalloc(sizeof (struct nnot));
608 1.31 christos n2->type = NNOT;
609 1.31 christos n2->nnot.com = n;
610 1.31 christos return n2;
611 1.31 christos }
612 1.31 christos else
613 1.31 christos return n;
614 1.1 cgd }
615 1.1 cgd
616 1.18 jtc STATIC union node *
617 1.54 christos makename(void)
618 1.54 christos {
619 1.18 jtc union node *n;
620 1.18 jtc
621 1.18 jtc n = (union node *)stalloc(sizeof (struct narg));
622 1.18 jtc n->type = NARG;
623 1.18 jtc n->narg.next = NULL;
624 1.18 jtc n->narg.text = wordtext;
625 1.18 jtc n->narg.backquote = backquotelist;
626 1.18 jtc return n;
627 1.18 jtc }
628 1.18 jtc
629 1.45 cgd void fixredir(union node *n, const char *text, int err)
630 1.18 jtc {
631 1.18 jtc TRACE(("Fix redir %s %d\n", text, err));
632 1.18 jtc if (!err)
633 1.18 jtc n->ndup.vname = NULL;
634 1.18 jtc
635 1.18 jtc if (is_digit(text[0]) && text[1] == '\0')
636 1.18 jtc n->ndup.dupfd = digit_val(text[0]);
637 1.18 jtc else if (text[0] == '-' && text[1] == '\0')
638 1.18 jtc n->ndup.dupfd = -1;
639 1.18 jtc else {
640 1.30 christos
641 1.18 jtc if (err)
642 1.18 jtc synerror("Bad fd number");
643 1.18 jtc else
644 1.18 jtc n->ndup.vname = makename();
645 1.18 jtc }
646 1.18 jtc }
647 1.18 jtc
648 1.1 cgd
649 1.1 cgd STATIC void
650 1.54 christos parsefname(void)
651 1.54 christos {
652 1.1 cgd union node *n = redirnode;
653 1.1 cgd
654 1.1 cgd if (readtoken() != TWORD)
655 1.1 cgd synexpect(-1);
656 1.1 cgd if (n->type == NHERE) {
657 1.1 cgd struct heredoc *here = heredoc;
658 1.1 cgd struct heredoc *p;
659 1.1 cgd int i;
660 1.1 cgd
661 1.1 cgd if (quoteflag == 0)
662 1.1 cgd n->type = NXHERE;
663 1.1 cgd TRACE(("Here document %d\n", n->type));
664 1.1 cgd if (here->striptabs) {
665 1.1 cgd while (*wordtext == '\t')
666 1.1 cgd wordtext++;
667 1.1 cgd }
668 1.1 cgd if (! noexpand(wordtext) || (i = strlen(wordtext)) == 0 || i > EOFMARKLEN)
669 1.1 cgd synerror("Illegal eof marker for << redirection");
670 1.1 cgd rmescapes(wordtext);
671 1.1 cgd here->eofmark = wordtext;
672 1.1 cgd here->next = NULL;
673 1.1 cgd if (heredoclist == NULL)
674 1.1 cgd heredoclist = here;
675 1.1 cgd else {
676 1.1 cgd for (p = heredoclist ; p->next ; p = p->next);
677 1.1 cgd p->next = here;
678 1.1 cgd }
679 1.1 cgd } else if (n->type == NTOFD || n->type == NFROMFD) {
680 1.18 jtc fixredir(n, wordtext, 0);
681 1.1 cgd } else {
682 1.18 jtc n->nfile.fname = makename();
683 1.1 cgd }
684 1.1 cgd }
685 1.1 cgd
686 1.1 cgd
687 1.1 cgd /*
688 1.1 cgd * Input any here documents.
689 1.1 cgd */
690 1.1 cgd
691 1.1 cgd STATIC void
692 1.54 christos parseheredoc(void)
693 1.54 christos {
694 1.1 cgd struct heredoc *here;
695 1.1 cgd union node *n;
696 1.1 cgd
697 1.1 cgd while (heredoclist) {
698 1.1 cgd here = heredoclist;
699 1.1 cgd heredoclist = here->next;
700 1.1 cgd if (needprompt) {
701 1.11 jtc setprompt(2);
702 1.1 cgd needprompt = 0;
703 1.1 cgd }
704 1.1 cgd readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
705 1.1 cgd here->eofmark, here->striptabs);
706 1.1 cgd n = (union node *)stalloc(sizeof (struct narg));
707 1.1 cgd n->narg.type = NARG;
708 1.1 cgd n->narg.next = NULL;
709 1.1 cgd n->narg.text = wordtext;
710 1.1 cgd n->narg.backquote = backquotelist;
711 1.1 cgd here->here->nhere.doc = n;
712 1.1 cgd }
713 1.1 cgd }
714 1.1 cgd
715 1.1 cgd STATIC int
716 1.54 christos peektoken(void)
717 1.54 christos {
718 1.1 cgd int t;
719 1.1 cgd
720 1.1 cgd t = readtoken();
721 1.1 cgd tokpushback++;
722 1.1 cgd return (t);
723 1.1 cgd }
724 1.1 cgd
725 1.1 cgd STATIC int
726 1.54 christos readtoken(void)
727 1.54 christos {
728 1.1 cgd int t;
729 1.11 jtc int savecheckkwd = checkkwd;
730 1.1 cgd #ifdef DEBUG
731 1.1 cgd int alreadyseen = tokpushback;
732 1.1 cgd #endif
733 1.48 christos struct alias *ap;
734 1.30 christos
735 1.11 jtc top:
736 1.1 cgd t = xxreadtoken();
737 1.1 cgd
738 1.1 cgd if (checkkwd) {
739 1.1 cgd /*
740 1.1 cgd * eat newlines
741 1.1 cgd */
742 1.1 cgd if (checkkwd == 2) {
743 1.1 cgd checkkwd = 0;
744 1.1 cgd while (t == TNL) {
745 1.1 cgd parseheredoc();
746 1.1 cgd t = xxreadtoken();
747 1.1 cgd }
748 1.1 cgd } else
749 1.1 cgd checkkwd = 0;
750 1.1 cgd /*
751 1.11 jtc * check for keywords and aliases
752 1.1 cgd */
753 1.30 christos if (t == TWORD && !quoteflag)
754 1.22 cgd {
755 1.43 christos const char *const *pp;
756 1.1 cgd
757 1.43 christos for (pp = parsekwd; *pp; pp++) {
758 1.30 christos if (**pp == *wordtext && equal(*pp, wordtext))
759 1.22 cgd {
760 1.43 christos lasttoken = t = pp -
761 1.43 christos parsekwd + KWDOFFSET;
762 1.1 cgd TRACE(("keyword %s recognized\n", tokname[t]));
763 1.11 jtc goto out;
764 1.1 cgd }
765 1.1 cgd }
766 1.48 christos if(!noalias &&
767 1.48 christos (ap = lookupalias(wordtext, 1)) != NULL) {
768 1.11 jtc pushstring(ap->val, strlen(ap->val), ap);
769 1.11 jtc checkkwd = savecheckkwd;
770 1.11 jtc goto top;
771 1.11 jtc }
772 1.1 cgd }
773 1.11 jtc out:
774 1.31 christos checkkwd = (t == TNOT) ? savecheckkwd : 0;
775 1.1 cgd }
776 1.65 dsl TRACE(("%stoken %s %s\n", alreadyseen ? "reread " : "", tokname[t], t == TWORD ? wordtext : ""));
777 1.1 cgd return (t);
778 1.1 cgd }
779 1.1 cgd
780 1.1 cgd
781 1.1 cgd /*
782 1.1 cgd * Read the next input token.
783 1.1 cgd * If the token is a word, we set backquotelist to the list of cmds in
784 1.1 cgd * backquotes. We set quoteflag to true if any part of the word was
785 1.1 cgd * quoted.
786 1.1 cgd * If the token is TREDIR, then we set redirnode to a structure containing
787 1.1 cgd * the redirection.
788 1.1 cgd * In all cases, the variable startlinno is set to the number of the line
789 1.1 cgd * on which the token starts.
790 1.1 cgd *
791 1.1 cgd * [Change comment: here documents and internal procedures]
792 1.1 cgd * [Readtoken shouldn't have any arguments. Perhaps we should make the
793 1.1 cgd * word parsing code into a separate routine. In this case, readtoken
794 1.1 cgd * doesn't need to have any internal procedures, but parseword does.
795 1.1 cgd * We could also make parseoperator in essence the main routine, and
796 1.1 cgd * have parseword (readtoken1?) handle both words and redirection.]
797 1.1 cgd */
798 1.1 cgd
799 1.1 cgd #define RETURN(token) return lasttoken = token
800 1.1 cgd
801 1.1 cgd STATIC int
802 1.54 christos xxreadtoken(void)
803 1.54 christos {
804 1.32 tls int c;
805 1.1 cgd
806 1.1 cgd if (tokpushback) {
807 1.1 cgd tokpushback = 0;
808 1.1 cgd return lasttoken;
809 1.1 cgd }
810 1.1 cgd if (needprompt) {
811 1.11 jtc setprompt(2);
812 1.1 cgd needprompt = 0;
813 1.1 cgd }
814 1.1 cgd startlinno = plinno;
815 1.1 cgd for (;;) { /* until token or start of word found */
816 1.1 cgd c = pgetc_macro();
817 1.1 cgd if (c == ' ' || c == '\t')
818 1.1 cgd continue; /* quick check for white space first */
819 1.1 cgd switch (c) {
820 1.1 cgd case ' ': case '\t':
821 1.1 cgd continue;
822 1.1 cgd case '#':
823 1.1 cgd while ((c = pgetc()) != '\n' && c != PEOF);
824 1.1 cgd pungetc();
825 1.1 cgd continue;
826 1.1 cgd case '\\':
827 1.1 cgd if (pgetc() == '\n') {
828 1.1 cgd startlinno = ++plinno;
829 1.1 cgd if (doprompt)
830 1.11 jtc setprompt(2);
831 1.11 jtc else
832 1.11 jtc setprompt(0);
833 1.1 cgd continue;
834 1.1 cgd }
835 1.1 cgd pungetc();
836 1.1 cgd goto breakloop;
837 1.1 cgd case '\n':
838 1.1 cgd plinno++;
839 1.1 cgd needprompt = doprompt;
840 1.1 cgd RETURN(TNL);
841 1.1 cgd case PEOF:
842 1.1 cgd RETURN(TEOF);
843 1.1 cgd case '&':
844 1.1 cgd if (pgetc() == '&')
845 1.1 cgd RETURN(TAND);
846 1.1 cgd pungetc();
847 1.1 cgd RETURN(TBACKGND);
848 1.1 cgd case '|':
849 1.1 cgd if (pgetc() == '|')
850 1.1 cgd RETURN(TOR);
851 1.1 cgd pungetc();
852 1.1 cgd RETURN(TPIPE);
853 1.1 cgd case ';':
854 1.1 cgd if (pgetc() == ';')
855 1.1 cgd RETURN(TENDCASE);
856 1.1 cgd pungetc();
857 1.1 cgd RETURN(TSEMI);
858 1.1 cgd case '(':
859 1.1 cgd RETURN(TLP);
860 1.1 cgd case ')':
861 1.1 cgd RETURN(TRP);
862 1.1 cgd default:
863 1.1 cgd goto breakloop;
864 1.1 cgd }
865 1.1 cgd }
866 1.1 cgd breakloop:
867 1.1 cgd return readtoken1(c, BASESYNTAX, (char *)NULL, 0);
868 1.1 cgd #undef RETURN
869 1.1 cgd }
870 1.1 cgd
871 1.1 cgd
872 1.1 cgd
873 1.1 cgd /*
874 1.1 cgd * If eofmark is NULL, read a word or a redirection symbol. If eofmark
875 1.1 cgd * is not NULL, read a here document. In the latter case, eofmark is the
876 1.1 cgd * word which marks the end of the document and striptabs is true if
877 1.1 cgd * leading tabs should be stripped from the document. The argument firstc
878 1.1 cgd * is the first character of the input token or document.
879 1.1 cgd *
880 1.1 cgd * Because C does not have internal subroutines, I have simulated them
881 1.1 cgd * using goto's to implement the subroutine linkage. The following macros
882 1.1 cgd * will run code that appears at the end of readtoken1.
883 1.1 cgd */
884 1.1 cgd
885 1.1 cgd #define CHECKEND() {goto checkend; checkend_return:;}
886 1.1 cgd #define PARSEREDIR() {goto parseredir; parseredir_return:;}
887 1.1 cgd #define PARSESUB() {goto parsesub; parsesub_return:;}
888 1.1 cgd #define PARSEBACKQOLD() {oldstyle = 1; goto parsebackq; parsebackq_oldreturn:;}
889 1.1 cgd #define PARSEBACKQNEW() {oldstyle = 0; goto parsebackq; parsebackq_newreturn:;}
890 1.11 jtc #define PARSEARITH() {goto parsearith; parsearith_return:;}
891 1.1 cgd
892 1.52 christos /*
893 1.52 christos * Keep track of nested doublequotes in dblquote and doublequotep.
894 1.52 christos * We use dblquote for the first 32 levels, and we expand to a malloc'ed
895 1.52 christos * region for levels above that. Usually we never need to malloc.
896 1.52 christos * This code assumes that an int is 32 bits. We don't use uint32_t,
897 1.52 christos * because the rest of the code does not.
898 1.52 christos */
899 1.51 christos #define ISDBLQUOTE() ((varnest < 32) ? (dblquote & (1 << varnest)) : \
900 1.52 christos (dblquotep[(varnest / 32) - 1] & (1 << (varnest % 32))))
901 1.51 christos
902 1.51 christos #define SETDBLQUOTE() \
903 1.51 christos if (varnest < 32) \
904 1.51 christos dblquote |= (1 << varnest); \
905 1.51 christos else \
906 1.52 christos dblquotep[(varnest / 32) - 1] |= (1 << (varnest % 32))
907 1.51 christos
908 1.51 christos #define CLRDBLQUOTE() \
909 1.51 christos if (varnest < 32) \
910 1.51 christos dblquote &= ~(1 << varnest); \
911 1.51 christos else \
912 1.52 christos dblquotep[(varnest / 32) - 1] &= ~(1 << (varnest % 32))
913 1.51 christos
914 1.1 cgd STATIC int
915 1.63 christos readtoken1(int firstc, char const *syn, char *eofmark, int striptabs)
916 1.54 christos {
917 1.63 christos char const * volatile syntax = syn;
918 1.25 christos int c = firstc;
919 1.63 christos char * volatile out;
920 1.1 cgd int len;
921 1.1 cgd char line[EOFMARKLEN + 1];
922 1.1 cgd struct nodelist *bqlist;
923 1.63 christos volatile int quotef;
924 1.63 christos int * volatile dblquotep = NULL;
925 1.63 christos volatile size_t maxnest = 32;
926 1.63 christos volatile int dblquote;
927 1.63 christos volatile int varnest; /* levels of variables expansion */
928 1.63 christos volatile int arinest; /* levels of arithmetic expansion */
929 1.63 christos volatile int parenlevel; /* levels of parens in arithmetic */
930 1.63 christos volatile int oldstyle;
931 1.63 christos char const * volatile prevsyntax; /* syntax before arithmetic */
932 1.63 christos #ifdef __GNUC__
933 1.60 mrg prevsyntax = NULL; /* XXX gcc4 */
934 1.25 christos #endif
935 1.1 cgd
936 1.1 cgd startlinno = plinno;
937 1.1 cgd dblquote = 0;
938 1.51 christos varnest = 0;
939 1.51 christos if (syntax == DQSYNTAX) {
940 1.51 christos SETDBLQUOTE();
941 1.51 christos }
942 1.1 cgd quotef = 0;
943 1.1 cgd bqlist = NULL;
944 1.11 jtc arinest = 0;
945 1.11 jtc parenlevel = 0;
946 1.11 jtc
947 1.1 cgd STARTSTACKSTR(out);
948 1.1 cgd loop: { /* for each line, until end of word */
949 1.1 cgd #if ATTY
950 1.1 cgd if (c == '\034' && doprompt
951 1.1 cgd && attyset() && ! equal(termval(), "emacs")) {
952 1.1 cgd attyline();
953 1.1 cgd if (syntax == BASESYNTAX)
954 1.1 cgd return readtoken();
955 1.1 cgd c = pgetc();
956 1.1 cgd goto loop;
957 1.1 cgd }
958 1.1 cgd #endif
959 1.1 cgd CHECKEND(); /* set c to PEOF if at end of here document */
960 1.1 cgd for (;;) { /* until end of line or end of word */
961 1.56 dsl CHECKSTRSPACE(4, out); /* permit 4 calls to USTPUTC */
962 1.1 cgd switch(syntax[c]) {
963 1.1 cgd case CNL: /* '\n' */
964 1.1 cgd if (syntax == BASESYNTAX)
965 1.1 cgd goto endword; /* exit outer loop */
966 1.1 cgd USTPUTC(c, out);
967 1.1 cgd plinno++;
968 1.11 jtc if (doprompt)
969 1.11 jtc setprompt(2);
970 1.11 jtc else
971 1.11 jtc setprompt(0);
972 1.1 cgd c = pgetc();
973 1.1 cgd goto loop; /* continue outer loop */
974 1.59 dsl case CWORD:
975 1.59 dsl USTPUTC(c, out);
976 1.59 dsl break;
977 1.1 cgd case CCTL:
978 1.51 christos if (eofmark == NULL || ISDBLQUOTE())
979 1.1 cgd USTPUTC(CTLESC, out);
980 1.1 cgd USTPUTC(c, out);
981 1.1 cgd break;
982 1.1 cgd case CBACK: /* backslash */
983 1.1 cgd c = pgetc();
984 1.1 cgd if (c == PEOF) {
985 1.1 cgd USTPUTC('\\', out);
986 1.1 cgd pungetc();
987 1.56 dsl break;
988 1.56 dsl }
989 1.56 dsl if (c == '\n') {
990 1.1 cgd if (doprompt)
991 1.11 jtc setprompt(2);
992 1.11 jtc else
993 1.11 jtc setprompt(0);
994 1.56 dsl break;
995 1.56 dsl }
996 1.56 dsl quotef = 1;
997 1.56 dsl if (ISDBLQUOTE() && c != '\\' &&
998 1.56 dsl c != '`' && c != '$' &&
999 1.56 dsl (c != '"' || eofmark != NULL))
1000 1.56 dsl USTPUTC('\\', out);
1001 1.56 dsl if (SQSYNTAX[c] == CCTL)
1002 1.56 dsl USTPUTC(CTLESC, out);
1003 1.56 dsl else if (eofmark == NULL) {
1004 1.56 dsl USTPUTC(CTLQUOTEMARK, out);
1005 1.1 cgd USTPUTC(c, out);
1006 1.56 dsl if (varnest != 0)
1007 1.56 dsl USTPUTC(CTLQUOTEEND, out);
1008 1.56 dsl break;
1009 1.1 cgd }
1010 1.56 dsl USTPUTC(c, out);
1011 1.1 cgd break;
1012 1.1 cgd case CSQUOTE:
1013 1.51 christos if (syntax != SQSYNTAX) {
1014 1.56 dsl if (eofmark == NULL)
1015 1.56 dsl USTPUTC(CTLQUOTEMARK, out);
1016 1.56 dsl quotef = 1;
1017 1.56 dsl syntax = SQSYNTAX;
1018 1.56 dsl break;
1019 1.51 christos }
1020 1.57 dsl if (eofmark != NULL && arinest == 0 &&
1021 1.57 dsl varnest == 0) {
1022 1.57 dsl /* Ignore inside quoted here document */
1023 1.57 dsl USTPUTC(c, out);
1024 1.57 dsl break;
1025 1.57 dsl }
1026 1.56 dsl /* End of single quotes... */
1027 1.56 dsl if (arinest)
1028 1.56 dsl syntax = ARISYNTAX;
1029 1.56 dsl else {
1030 1.56 dsl syntax = BASESYNTAX;
1031 1.56 dsl if (varnest != 0)
1032 1.56 dsl USTPUTC(CTLQUOTEEND, out);
1033 1.56 dsl }
1034 1.56 dsl break;
1035 1.1 cgd case CDQUOTE:
1036 1.41 mycroft if (eofmark != NULL && arinest == 0 &&
1037 1.41 mycroft varnest == 0) {
1038 1.57 dsl /* Ignore inside here document */
1039 1.1 cgd USTPUTC(c, out);
1040 1.56 dsl break;
1041 1.56 dsl }
1042 1.56 dsl quotef = 1;
1043 1.56 dsl if (arinest) {
1044 1.56 dsl if (ISDBLQUOTE()) {
1045 1.56 dsl syntax = ARISYNTAX;
1046 1.56 dsl CLRDBLQUOTE();
1047 1.56 dsl } else {
1048 1.56 dsl syntax = DQSYNTAX;
1049 1.56 dsl SETDBLQUOTE();
1050 1.56 dsl USTPUTC(CTLQUOTEMARK, out);
1051 1.56 dsl }
1052 1.56 dsl break;
1053 1.56 dsl }
1054 1.56 dsl if (eofmark != NULL)
1055 1.56 dsl break;
1056 1.56 dsl if (ISDBLQUOTE()) {
1057 1.56 dsl if (varnest != 0)
1058 1.56 dsl USTPUTC(CTLQUOTEEND, out);
1059 1.56 dsl syntax = BASESYNTAX;
1060 1.56 dsl CLRDBLQUOTE();
1061 1.1 cgd } else {
1062 1.56 dsl syntax = DQSYNTAX;
1063 1.56 dsl SETDBLQUOTE();
1064 1.56 dsl USTPUTC(CTLQUOTEMARK, out);
1065 1.1 cgd }
1066 1.1 cgd break;
1067 1.1 cgd case CVAR: /* '$' */
1068 1.1 cgd PARSESUB(); /* parse substitution */
1069 1.1 cgd break;
1070 1.51 christos case CENDVAR: /* CLOSEBRACE */
1071 1.51 christos if (varnest > 0 && !ISDBLQUOTE()) {
1072 1.1 cgd varnest--;
1073 1.1 cgd USTPUTC(CTLENDVAR, out);
1074 1.1 cgd } else {
1075 1.1 cgd USTPUTC(c, out);
1076 1.1 cgd }
1077 1.1 cgd break;
1078 1.11 jtc case CLP: /* '(' in arithmetic */
1079 1.11 jtc parenlevel++;
1080 1.11 jtc USTPUTC(c, out);
1081 1.11 jtc break;
1082 1.11 jtc case CRP: /* ')' in arithmetic */
1083 1.11 jtc if (parenlevel > 0) {
1084 1.11 jtc USTPUTC(c, out);
1085 1.11 jtc --parenlevel;
1086 1.11 jtc } else {
1087 1.11 jtc if (pgetc() == ')') {
1088 1.11 jtc if (--arinest == 0) {
1089 1.11 jtc USTPUTC(CTLENDARI, out);
1090 1.11 jtc syntax = prevsyntax;
1091 1.41 mycroft if (syntax == DQSYNTAX)
1092 1.51 christos SETDBLQUOTE();
1093 1.41 mycroft else
1094 1.51 christos CLRDBLQUOTE();
1095 1.11 jtc } else
1096 1.11 jtc USTPUTC(')', out);
1097 1.11 jtc } else {
1098 1.30 christos /*
1099 1.11 jtc * unbalanced parens
1100 1.11 jtc * (don't 2nd guess - no error)
1101 1.11 jtc */
1102 1.11 jtc pungetc();
1103 1.11 jtc USTPUTC(')', out);
1104 1.11 jtc }
1105 1.11 jtc }
1106 1.11 jtc break;
1107 1.1 cgd case CBQUOTE: /* '`' */
1108 1.1 cgd PARSEBACKQOLD();
1109 1.1 cgd break;
1110 1.1 cgd case CEOF:
1111 1.1 cgd goto endword; /* exit outer loop */
1112 1.1 cgd default:
1113 1.1 cgd if (varnest == 0)
1114 1.1 cgd goto endword; /* exit outer loop */
1115 1.1 cgd USTPUTC(c, out);
1116 1.1 cgd }
1117 1.1 cgd c = pgetc_macro();
1118 1.1 cgd }
1119 1.1 cgd }
1120 1.1 cgd endword:
1121 1.11 jtc if (syntax == ARISYNTAX)
1122 1.11 jtc synerror("Missing '))'");
1123 1.68 christos if (syntax != BASESYNTAX && /* ! parsebackquote && */ eofmark == NULL)
1124 1.1 cgd synerror("Unterminated quoted string");
1125 1.1 cgd if (varnest != 0) {
1126 1.1 cgd startlinno = plinno;
1127 1.51 christos /* { */
1128 1.1 cgd synerror("Missing '}'");
1129 1.1 cgd }
1130 1.1 cgd USTPUTC('\0', out);
1131 1.1 cgd len = out - stackblock();
1132 1.1 cgd out = stackblock();
1133 1.1 cgd if (eofmark == NULL) {
1134 1.1 cgd if ((c == '>' || c == '<')
1135 1.1 cgd && quotef == 0
1136 1.1 cgd && len <= 2
1137 1.1 cgd && (*out == '\0' || is_digit(*out))) {
1138 1.1 cgd PARSEREDIR();
1139 1.1 cgd return lasttoken = TREDIR;
1140 1.1 cgd } else {
1141 1.1 cgd pungetc();
1142 1.1 cgd }
1143 1.1 cgd }
1144 1.1 cgd quoteflag = quotef;
1145 1.1 cgd backquotelist = bqlist;
1146 1.1 cgd grabstackblock(len);
1147 1.1 cgd wordtext = out;
1148 1.51 christos if (dblquotep != NULL)
1149 1.51 christos ckfree(dblquotep);
1150 1.1 cgd return lasttoken = TWORD;
1151 1.1 cgd /* end of readtoken routine */
1152 1.1 cgd
1153 1.1 cgd
1154 1.1 cgd
1155 1.1 cgd /*
1156 1.1 cgd * Check to see whether we are at the end of the here document. When this
1157 1.1 cgd * is called, c is set to the first character of the next input line. If
1158 1.1 cgd * we are at the end of the here document, this routine sets the c to PEOF.
1159 1.1 cgd */
1160 1.1 cgd
1161 1.1 cgd checkend: {
1162 1.1 cgd if (eofmark) {
1163 1.1 cgd if (striptabs) {
1164 1.1 cgd while (c == '\t')
1165 1.1 cgd c = pgetc();
1166 1.1 cgd }
1167 1.1 cgd if (c == *eofmark) {
1168 1.1 cgd if (pfgets(line, sizeof line) != NULL) {
1169 1.32 tls char *p, *q;
1170 1.1 cgd
1171 1.1 cgd p = line;
1172 1.1 cgd for (q = eofmark + 1 ; *q && *p == *q ; p++, q++);
1173 1.69 christos if ((*p == '\0' || *p == '\n') && *q == '\0') {
1174 1.1 cgd c = PEOF;
1175 1.1 cgd plinno++;
1176 1.1 cgd needprompt = doprompt;
1177 1.1 cgd } else {
1178 1.11 jtc pushstring(line, strlen(line), NULL);
1179 1.1 cgd }
1180 1.1 cgd }
1181 1.1 cgd }
1182 1.1 cgd }
1183 1.1 cgd goto checkend_return;
1184 1.1 cgd }
1185 1.1 cgd
1186 1.1 cgd
1187 1.1 cgd /*
1188 1.1 cgd * Parse a redirection operator. The variable "out" points to a string
1189 1.1 cgd * specifying the fd to be redirected. The variable "c" contains the
1190 1.1 cgd * first character of the redirection operator.
1191 1.1 cgd */
1192 1.1 cgd
1193 1.1 cgd parseredir: {
1194 1.1 cgd char fd = *out;
1195 1.1 cgd union node *np;
1196 1.1 cgd
1197 1.1 cgd np = (union node *)stalloc(sizeof (struct nfile));
1198 1.1 cgd if (c == '>') {
1199 1.1 cgd np->nfile.fd = 1;
1200 1.1 cgd c = pgetc();
1201 1.1 cgd if (c == '>')
1202 1.1 cgd np->type = NAPPEND;
1203 1.53 christos else if (c == '|')
1204 1.53 christos np->type = NCLOBBER;
1205 1.1 cgd else if (c == '&')
1206 1.1 cgd np->type = NTOFD;
1207 1.1 cgd else {
1208 1.1 cgd np->type = NTO;
1209 1.1 cgd pungetc();
1210 1.1 cgd }
1211 1.1 cgd } else { /* c == '<' */
1212 1.1 cgd np->nfile.fd = 0;
1213 1.42 christos switch (c = pgetc()) {
1214 1.42 christos case '<':
1215 1.1 cgd if (sizeof (struct nfile) != sizeof (struct nhere)) {
1216 1.1 cgd np = (union node *)stalloc(sizeof (struct nhere));
1217 1.1 cgd np->nfile.fd = 0;
1218 1.1 cgd }
1219 1.1 cgd np->type = NHERE;
1220 1.1 cgd heredoc = (struct heredoc *)stalloc(sizeof (struct heredoc));
1221 1.1 cgd heredoc->here = np;
1222 1.1 cgd if ((c = pgetc()) == '-') {
1223 1.1 cgd heredoc->striptabs = 1;
1224 1.1 cgd } else {
1225 1.1 cgd heredoc->striptabs = 0;
1226 1.1 cgd pungetc();
1227 1.1 cgd }
1228 1.42 christos break;
1229 1.42 christos
1230 1.42 christos case '&':
1231 1.1 cgd np->type = NFROMFD;
1232 1.42 christos break;
1233 1.42 christos
1234 1.42 christos case '>':
1235 1.42 christos np->type = NFROMTO;
1236 1.42 christos break;
1237 1.42 christos
1238 1.42 christos default:
1239 1.1 cgd np->type = NFROM;
1240 1.1 cgd pungetc();
1241 1.42 christos break;
1242 1.1 cgd }
1243 1.1 cgd }
1244 1.1 cgd if (fd != '\0')
1245 1.1 cgd np->nfile.fd = digit_val(fd);
1246 1.1 cgd redirnode = np;
1247 1.1 cgd goto parseredir_return;
1248 1.1 cgd }
1249 1.1 cgd
1250 1.1 cgd
1251 1.1 cgd /*
1252 1.1 cgd * Parse a substitution. At this point, we have read the dollar sign
1253 1.1 cgd * and nothing else.
1254 1.1 cgd */
1255 1.1 cgd
1256 1.1 cgd parsesub: {
1257 1.1 cgd int subtype;
1258 1.1 cgd int typeloc;
1259 1.1 cgd int flags;
1260 1.1 cgd char *p;
1261 1.1 cgd static const char types[] = "}-+?=";
1262 1.1 cgd
1263 1.1 cgd c = pgetc();
1264 1.51 christos if (c != '(' && c != OPENBRACE && !is_name(c) && !is_special(c)) {
1265 1.1 cgd USTPUTC('$', out);
1266 1.1 cgd pungetc();
1267 1.11 jtc } else if (c == '(') { /* $(command) or $((arith)) */
1268 1.11 jtc if (pgetc() == '(') {
1269 1.11 jtc PARSEARITH();
1270 1.11 jtc } else {
1271 1.11 jtc pungetc();
1272 1.11 jtc PARSEBACKQNEW();
1273 1.11 jtc }
1274 1.1 cgd } else {
1275 1.1 cgd USTPUTC(CTLVAR, out);
1276 1.1 cgd typeloc = out - stackblock();
1277 1.1 cgd USTPUTC(VSNORMAL, out);
1278 1.1 cgd subtype = VSNORMAL;
1279 1.51 christos if (c == OPENBRACE) {
1280 1.1 cgd c = pgetc();
1281 1.23 christos if (c == '#') {
1282 1.51 christos if ((c = pgetc()) == CLOSEBRACE)
1283 1.26 christos c = '#';
1284 1.26 christos else
1285 1.26 christos subtype = VSLENGTH;
1286 1.23 christos }
1287 1.23 christos else
1288 1.23 christos subtype = 0;
1289 1.1 cgd }
1290 1.1 cgd if (is_name(c)) {
1291 1.1 cgd do {
1292 1.1 cgd STPUTC(c, out);
1293 1.1 cgd c = pgetc();
1294 1.1 cgd } while (is_in_name(c));
1295 1.34 christos } else if (is_digit(c)) {
1296 1.33 christos do {
1297 1.33 christos USTPUTC(c, out);
1298 1.33 christos c = pgetc();
1299 1.34 christos } while (is_digit(c));
1300 1.34 christos }
1301 1.34 christos else if (is_special(c)) {
1302 1.34 christos USTPUTC(c, out);
1303 1.34 christos c = pgetc();
1304 1.1 cgd }
1305 1.33 christos else
1306 1.33 christos badsub: synerror("Bad substitution");
1307 1.33 christos
1308 1.1 cgd STPUTC('=', out);
1309 1.1 cgd flags = 0;
1310 1.1 cgd if (subtype == 0) {
1311 1.23 christos switch (c) {
1312 1.23 christos case ':':
1313 1.1 cgd flags = VSNUL;
1314 1.1 cgd c = pgetc();
1315 1.23 christos /*FALLTHROUGH*/
1316 1.23 christos default:
1317 1.23 christos p = strchr(types, c);
1318 1.23 christos if (p == NULL)
1319 1.23 christos goto badsub;
1320 1.23 christos subtype = p - types + VSNORMAL;
1321 1.23 christos break;
1322 1.23 christos case '%':
1323 1.30 christos case '#':
1324 1.23 christos {
1325 1.23 christos int cc = c;
1326 1.23 christos subtype = c == '#' ? VSTRIMLEFT :
1327 1.23 christos VSTRIMRIGHT;
1328 1.23 christos c = pgetc();
1329 1.23 christos if (c == cc)
1330 1.23 christos subtype++;
1331 1.23 christos else
1332 1.23 christos pungetc();
1333 1.23 christos break;
1334 1.23 christos }
1335 1.1 cgd }
1336 1.1 cgd } else {
1337 1.1 cgd pungetc();
1338 1.1 cgd }
1339 1.51 christos if (ISDBLQUOTE() || arinest)
1340 1.1 cgd flags |= VSQUOTE;
1341 1.1 cgd *(stackblock() + typeloc) = subtype | flags;
1342 1.51 christos if (subtype != VSNORMAL) {
1343 1.1 cgd varnest++;
1344 1.51 christos if (varnest >= maxnest) {
1345 1.51 christos dblquotep = ckrealloc(dblquotep, maxnest / 8);
1346 1.51 christos dblquotep[(maxnest / 32) - 1] = 0;
1347 1.52 christos maxnest += 32;
1348 1.51 christos }
1349 1.51 christos }
1350 1.1 cgd }
1351 1.1 cgd goto parsesub_return;
1352 1.1 cgd }
1353 1.1 cgd
1354 1.1 cgd
1355 1.1 cgd /*
1356 1.1 cgd * Called to parse command substitutions. Newstyle is set if the command
1357 1.1 cgd * is enclosed inside $(...); nlpp is a pointer to the head of the linked
1358 1.1 cgd * list of commands (passed by reference), and savelen is the number of
1359 1.1 cgd * characters on the top of the stack which must be preserved.
1360 1.1 cgd */
1361 1.1 cgd
1362 1.1 cgd parsebackq: {
1363 1.1 cgd struct nodelist **nlpp;
1364 1.1 cgd int savepbq;
1365 1.1 cgd union node *n;
1366 1.1 cgd char *volatile str;
1367 1.1 cgd struct jmploc jmploc;
1368 1.1 cgd struct jmploc *volatile savehandler;
1369 1.1 cgd int savelen;
1370 1.28 christos int saveprompt;
1371 1.1 cgd
1372 1.1 cgd savepbq = parsebackquote;
1373 1.1 cgd if (setjmp(jmploc.loc)) {
1374 1.1 cgd if (str)
1375 1.1 cgd ckfree(str);
1376 1.1 cgd parsebackquote = 0;
1377 1.1 cgd handler = savehandler;
1378 1.4 dpassage longjmp(handler->loc, 1);
1379 1.1 cgd }
1380 1.1 cgd INTOFF;
1381 1.1 cgd str = NULL;
1382 1.1 cgd savelen = out - stackblock();
1383 1.1 cgd if (savelen > 0) {
1384 1.1 cgd str = ckmalloc(savelen);
1385 1.21 mycroft memcpy(str, stackblock(), savelen);
1386 1.1 cgd }
1387 1.1 cgd savehandler = handler;
1388 1.1 cgd handler = &jmploc;
1389 1.1 cgd INTON;
1390 1.11 jtc if (oldstyle) {
1391 1.11 jtc /* We must read until the closing backquote, giving special
1392 1.11 jtc treatment to some slashes, and then push the string and
1393 1.11 jtc reread it as input, interpreting it normally. */
1394 1.43 christos char *pout;
1395 1.43 christos int pc;
1396 1.43 christos int psavelen;
1397 1.43 christos char *pstr;
1398 1.28 christos
1399 1.30 christos
1400 1.43 christos STARTSTACKSTR(pout);
1401 1.28 christos for (;;) {
1402 1.28 christos if (needprompt) {
1403 1.28 christos setprompt(2);
1404 1.28 christos needprompt = 0;
1405 1.28 christos }
1406 1.43 christos switch (pc = pgetc()) {
1407 1.28 christos case '`':
1408 1.28 christos goto done;
1409 1.28 christos
1410 1.28 christos case '\\':
1411 1.43 christos if ((pc = pgetc()) == '\n') {
1412 1.28 christos plinno++;
1413 1.28 christos if (doprompt)
1414 1.28 christos setprompt(2);
1415 1.28 christos else
1416 1.28 christos setprompt(0);
1417 1.29 christos /*
1418 1.29 christos * If eating a newline, avoid putting
1419 1.29 christos * the newline into the new character
1420 1.29 christos * stream (via the STPUTC after the
1421 1.29 christos * switch).
1422 1.29 christos */
1423 1.29 christos continue;
1424 1.28 christos }
1425 1.43 christos if (pc != '\\' && pc != '`' && pc != '$'
1426 1.51 christos && (!ISDBLQUOTE() || pc != '"'))
1427 1.43 christos STPUTC('\\', pout);
1428 1.28 christos break;
1429 1.28 christos
1430 1.28 christos case '\n':
1431 1.28 christos plinno++;
1432 1.28 christos needprompt = doprompt;
1433 1.28 christos break;
1434 1.28 christos
1435 1.30 christos case PEOF:
1436 1.30 christos startlinno = plinno;
1437 1.30 christos synerror("EOF in backquote substitution");
1438 1.30 christos break;
1439 1.30 christos
1440 1.28 christos default:
1441 1.28 christos break;
1442 1.28 christos }
1443 1.43 christos STPUTC(pc, pout);
1444 1.11 jtc }
1445 1.28 christos done:
1446 1.43 christos STPUTC('\0', pout);
1447 1.43 christos psavelen = pout - stackblock();
1448 1.43 christos if (psavelen > 0) {
1449 1.43 christos pstr = grabstackstr(pout);
1450 1.43 christos setinputstring(pstr, 1);
1451 1.11 jtc }
1452 1.11 jtc }
1453 1.1 cgd nlpp = &bqlist;
1454 1.1 cgd while (*nlpp)
1455 1.1 cgd nlpp = &(*nlpp)->next;
1456 1.1 cgd *nlpp = (struct nodelist *)stalloc(sizeof (struct nodelist));
1457 1.1 cgd (*nlpp)->next = NULL;
1458 1.1 cgd parsebackquote = oldstyle;
1459 1.28 christos
1460 1.28 christos if (oldstyle) {
1461 1.28 christos saveprompt = doprompt;
1462 1.28 christos doprompt = 0;
1463 1.63 christos } else
1464 1.63 christos saveprompt = 0;
1465 1.28 christos
1466 1.73 christos n = list(0, oldstyle);
1467 1.28 christos
1468 1.28 christos if (oldstyle)
1469 1.28 christos doprompt = saveprompt;
1470 1.28 christos else {
1471 1.28 christos if (readtoken() != TRP)
1472 1.28 christos synexpect(TRP);
1473 1.28 christos }
1474 1.28 christos
1475 1.1 cgd (*nlpp)->n = n;
1476 1.27 christos if (oldstyle) {
1477 1.27 christos /*
1478 1.27 christos * Start reading from old file again, ignoring any pushed back
1479 1.27 christos * tokens left from the backquote parsing
1480 1.27 christos */
1481 1.11 jtc popfile();
1482 1.27 christos tokpushback = 0;
1483 1.27 christos }
1484 1.1 cgd while (stackblocksize() <= savelen)
1485 1.1 cgd growstackblock();
1486 1.1 cgd STARTSTACKSTR(out);
1487 1.1 cgd if (str) {
1488 1.21 mycroft memcpy(out, str, savelen);
1489 1.1 cgd STADJUST(savelen, out);
1490 1.1 cgd INTOFF;
1491 1.1 cgd ckfree(str);
1492 1.1 cgd str = NULL;
1493 1.1 cgd INTON;
1494 1.1 cgd }
1495 1.1 cgd parsebackquote = savepbq;
1496 1.1 cgd handler = savehandler;
1497 1.51 christos if (arinest || ISDBLQUOTE())
1498 1.11 jtc USTPUTC(CTLBACKQ | CTLQUOTE, out);
1499 1.11 jtc else
1500 1.11 jtc USTPUTC(CTLBACKQ, out);
1501 1.1 cgd if (oldstyle)
1502 1.1 cgd goto parsebackq_oldreturn;
1503 1.1 cgd else
1504 1.1 cgd goto parsebackq_newreturn;
1505 1.1 cgd }
1506 1.1 cgd
1507 1.1 cgd /*
1508 1.11 jtc * Parse an arithmetic expansion (indicate start of one and set state)
1509 1.1 cgd */
1510 1.11 jtc parsearith: {
1511 1.1 cgd
1512 1.11 jtc if (++arinest == 1) {
1513 1.11 jtc prevsyntax = syntax;
1514 1.11 jtc syntax = ARISYNTAX;
1515 1.11 jtc USTPUTC(CTLARI, out);
1516 1.51 christos if (ISDBLQUOTE())
1517 1.41 mycroft USTPUTC('"',out);
1518 1.41 mycroft else
1519 1.41 mycroft USTPUTC(' ',out);
1520 1.11 jtc } else {
1521 1.11 jtc /*
1522 1.11 jtc * we collapse embedded arithmetic expansion to
1523 1.11 jtc * parenthesis, which should be equivalent
1524 1.11 jtc */
1525 1.11 jtc USTPUTC('(', out);
1526 1.1 cgd }
1527 1.11 jtc goto parsearith_return;
1528 1.1 cgd }
1529 1.1 cgd
1530 1.11 jtc } /* end of readtoken */
1531 1.1 cgd
1532 1.1 cgd
1533 1.1 cgd
1534 1.11 jtc #ifdef mkinit
1535 1.11 jtc RESET {
1536 1.11 jtc tokpushback = 0;
1537 1.11 jtc checkkwd = 0;
1538 1.1 cgd }
1539 1.1 cgd #endif
1540 1.1 cgd
1541 1.1 cgd /*
1542 1.1 cgd * Returns true if the text contains nothing to expand (no dollar signs
1543 1.1 cgd * or backquotes).
1544 1.1 cgd */
1545 1.1 cgd
1546 1.1 cgd STATIC int
1547 1.54 christos noexpand(char *text)
1548 1.54 christos {
1549 1.32 tls char *p;
1550 1.32 tls char c;
1551 1.1 cgd
1552 1.1 cgd p = text;
1553 1.1 cgd while ((c = *p++) != '\0') {
1554 1.41 mycroft if (c == CTLQUOTEMARK)
1555 1.41 mycroft continue;
1556 1.1 cgd if (c == CTLESC)
1557 1.1 cgd p++;
1558 1.38 mrg else if (BASESYNTAX[(int)c] == CCTL)
1559 1.1 cgd return 0;
1560 1.1 cgd }
1561 1.1 cgd return 1;
1562 1.1 cgd }
1563 1.1 cgd
1564 1.1 cgd
1565 1.1 cgd /*
1566 1.1 cgd * Return true if the argument is a legal variable name (a letter or
1567 1.1 cgd * underscore followed by zero or more letters, underscores, and digits).
1568 1.1 cgd */
1569 1.1 cgd
1570 1.1 cgd int
1571 1.45 cgd goodname(char *name)
1572 1.1 cgd {
1573 1.32 tls char *p;
1574 1.1 cgd
1575 1.1 cgd p = name;
1576 1.1 cgd if (! is_name(*p))
1577 1.1 cgd return 0;
1578 1.1 cgd while (*++p) {
1579 1.1 cgd if (! is_in_name(*p))
1580 1.1 cgd return 0;
1581 1.1 cgd }
1582 1.1 cgd return 1;
1583 1.1 cgd }
1584 1.1 cgd
1585 1.1 cgd
1586 1.1 cgd /*
1587 1.1 cgd * Called when an unexpected token is read during the parse. The argument
1588 1.1 cgd * is the token that is expected, or -1 if more than one type of token can
1589 1.1 cgd * occur at this point.
1590 1.1 cgd */
1591 1.1 cgd
1592 1.1 cgd STATIC void
1593 1.54 christos synexpect(int token)
1594 1.22 cgd {
1595 1.1 cgd char msg[64];
1596 1.1 cgd
1597 1.1 cgd if (token >= 0) {
1598 1.1 cgd fmtstr(msg, 64, "%s unexpected (expecting %s)",
1599 1.1 cgd tokname[lasttoken], tokname[token]);
1600 1.1 cgd } else {
1601 1.1 cgd fmtstr(msg, 64, "%s unexpected", tokname[lasttoken]);
1602 1.1 cgd }
1603 1.1 cgd synerror(msg);
1604 1.39 mycroft /* NOTREACHED */
1605 1.1 cgd }
1606 1.1 cgd
1607 1.1 cgd
1608 1.1 cgd STATIC void
1609 1.54 christos synerror(const char *msg)
1610 1.54 christos {
1611 1.1 cgd if (commandname)
1612 1.1 cgd outfmt(&errout, "%s: %d: ", commandname, startlinno);
1613 1.62 christos else
1614 1.62 christos outfmt(&errout, "%s: ", getprogname());
1615 1.1 cgd outfmt(&errout, "Syntax error: %s\n", msg);
1616 1.1 cgd error((char *)NULL);
1617 1.39 mycroft /* NOTREACHED */
1618 1.11 jtc }
1619 1.11 jtc
1620 1.11 jtc STATIC void
1621 1.54 christos setprompt(int which)
1622 1.54 christos {
1623 1.11 jtc whichprompt = which;
1624 1.11 jtc
1625 1.35 christos #ifndef SMALL
1626 1.11 jtc if (!el)
1627 1.14 cgd #endif
1628 1.11 jtc out2str(getprompt(NULL));
1629 1.11 jtc }
1630 1.11 jtc
1631 1.11 jtc /*
1632 1.11 jtc * called by editline -- any expansions to the prompt
1633 1.11 jtc * should be added here.
1634 1.11 jtc */
1635 1.43 christos const char *
1636 1.45 cgd getprompt(void *unused)
1637 1.11 jtc {
1638 1.11 jtc switch (whichprompt) {
1639 1.11 jtc case 0:
1640 1.11 jtc return "";
1641 1.11 jtc case 1:
1642 1.11 jtc return ps1val();
1643 1.11 jtc case 2:
1644 1.11 jtc return ps2val();
1645 1.11 jtc default:
1646 1.11 jtc return "<internal prompt error>";
1647 1.11 jtc }
1648 1.1 cgd }
1649