ash: fix globbing bugs when using glibc glob()
[oweals/busybox.git] / shell / ash.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * ash shell port for busybox
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Kenneth Almquist.
7  *
8  * Original BSD copyright notice is retained at the end of this file.
9  *
10  * Copyright (c) 1989, 1991, 1993, 1994
11  *      The Regents of the University of California.  All rights reserved.
12  *
13  * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
14  * was re-ported from NetBSD and debianized.
15  *
16  * Licensed under GPLv2 or later, see file LICENSE in this source tree.
17  */
18
19 /*
20  * The following should be set to reflect the type of system you have:
21  *      JOBS -> 1 if you have Berkeley job control, 0 otherwise.
22  *      define SYSV if you are running under System V.
23  *      define DEBUG=1 to compile in debugging ('set -o debug' to turn on)
24  *      define DEBUG=2 to compile in and turn on debugging.
25  *
26  * When debugging is on (DEBUG is 1 and "set -o debug" was executed),
27  * debugging info will be written to ./trace and a quit signal
28  * will generate a core dump.
29  */
30 #define DEBUG 0
31 /* Tweak debug output verbosity here */
32 #define DEBUG_TIME 0
33 #define DEBUG_PID 1
34 #define DEBUG_SIG 1
35
36 #define PROFILE 0
37
38 #define JOBS ENABLE_ASH_JOB_CONTROL
39
40 #include <setjmp.h>
41 #include <fnmatch.h>
42 #include <sys/times.h>
43 #include <sys/utsname.h> /* for setting $HOSTNAME */
44
45 #include "busybox.h" /* for applet_names */
46
47 #if defined(__ANDROID_API__) && __ANDROID_API__ <= 24
48 /* Bionic at least up to version 24 has no glob() */
49 # undef  ENABLE_ASH_INTERNAL_GLOB
50 # define ENABLE_ASH_INTERNAL_GLOB 1
51 #endif
52
53 #if !ENABLE_ASH_INTERNAL_GLOB
54 # include <glob.h>
55 #endif
56
57 #include "unicode.h"
58 #include "shell_common.h"
59 #if ENABLE_SH_MATH_SUPPORT
60 # include "math.h"
61 #endif
62 #if ENABLE_ASH_RANDOM_SUPPORT
63 # include "random.h"
64 #else
65 # define CLEAR_RANDOM_T(rnd) ((void)0)
66 #endif
67
68 #include "NUM_APPLETS.h"
69 #if NUM_APPLETS == 1
70 /* STANDALONE does not make sense, and won't compile */
71 # undef CONFIG_FEATURE_SH_STANDALONE
72 # undef ENABLE_FEATURE_SH_STANDALONE
73 # undef IF_FEATURE_SH_STANDALONE
74 # undef IF_NOT_FEATURE_SH_STANDALONE
75 # define ENABLE_FEATURE_SH_STANDALONE 0
76 # define IF_FEATURE_SH_STANDALONE(...)
77 # define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
78 #endif
79
80 #ifndef PIPE_BUF
81 # define PIPE_BUF 4096           /* amount of buffering in a pipe */
82 #endif
83
84 #if !BB_MMU
85 # error "Do not even bother, ash will not run on NOMMU machine"
86 #endif
87
88 //config:config ASH
89 //config:       bool "ash"
90 //config:       default y
91 //config:       depends on !NOMMU
92 //config:       help
93 //config:         Tha 'ash' shell adds about 60k in the default configuration and is
94 //config:         the most complete and most pedantically correct shell included with
95 //config:         busybox. This shell is actually a derivative of the Debian 'dash'
96 //config:         shell (by Herbert Xu), which was created by porting the 'ash' shell
97 //config:         (written by Kenneth Almquist) from NetBSD.
98 //config:
99 //config:config ASH_OPTIMIZE_FOR_SIZE
100 //config:       bool "Optimize for size instead of speed"
101 //config:       default y
102 //config:       depends on ASH
103 //config:       help
104 //config:         Compile ash for reduced size at the price of speed.
105 //config:
106 //config:config ASH_INTERNAL_GLOB
107 //config:       bool "Use internal glob() implementation"
108 //config:       default n
109 //config:       depends on ASH
110 //config:       help
111 //config:         Do not use glob() function from libc, use internal implementation.
112 //config:         Use this if you are getting "glob.h: No such file or directory"
113 //config:         or similar build errors.
114 //config:
115 //config:config ASH_RANDOM_SUPPORT
116 //config:       bool "Pseudorandom generator and $RANDOM variable"
117 //config:       default y
118 //config:       depends on ASH
119 //config:       help
120 //config:         Enable pseudorandom generator and dynamic variable "$RANDOM".
121 //config:         Each read of "$RANDOM" will generate a new pseudorandom value.
122 //config:         You can reset the generator by using a specified start value.
123 //config:         After "unset RANDOM" the generator will switch off and this
124 //config:         variable will no longer have special treatment.
125 //config:
126 //config:config ASH_EXPAND_PRMT
127 //config:       bool "Expand prompt string"
128 //config:       default y
129 //config:       depends on ASH
130 //config:       help
131 //config:         "PS#" may contain volatile content, such as backquote commands.
132 //config:         This option recreates the prompt string from the environment
133 //config:         variable each time it is displayed.
134 //config:
135 //config:config ASH_BASH_COMPAT
136 //config:       bool "bash-compatible extensions"
137 //config:       default y
138 //config:       depends on ASH
139 //config:       help
140 //config:         Enable bash-compatible extensions.
141 //config:
142 //config:config ASH_IDLE_TIMEOUT
143 //config:       bool "Idle timeout variable"
144 //config:       default n
145 //config:       depends on ASH
146 //config:       help
147 //config:         Enables bash-like auto-logout after $TMOUT seconds of idle time.
148 //config:
149 //config:config ASH_JOB_CONTROL
150 //config:       bool "Job control"
151 //config:       default y
152 //config:       depends on ASH
153 //config:       help
154 //config:         Enable job control in the ash shell.
155 //config:
156 //config:config ASH_ALIAS
157 //config:       bool "Alias support"
158 //config:       default y
159 //config:       depends on ASH
160 //config:       help
161 //config:         Enable alias support in the ash shell.
162 //config:
163 //config:config ASH_GETOPTS
164 //config:       bool "Builtin getopt to parse positional parameters"
165 //config:       default y
166 //config:       depends on ASH
167 //config:       help
168 //config:         Enable support for getopts builtin in ash.
169 //config:
170 //config:config ASH_BUILTIN_ECHO
171 //config:       bool "Builtin version of 'echo'"
172 //config:       default y
173 //config:       depends on ASH
174 //config:       help
175 //config:         Enable support for echo builtin in ash.
176 //config:
177 //config:config ASH_BUILTIN_PRINTF
178 //config:       bool "Builtin version of 'printf'"
179 //config:       default y
180 //config:       depends on ASH
181 //config:       help
182 //config:         Enable support for printf builtin in ash.
183 //config:
184 //config:config ASH_BUILTIN_TEST
185 //config:       bool "Builtin version of 'test'"
186 //config:       default y
187 //config:       depends on ASH
188 //config:       help
189 //config:         Enable support for test builtin in ash.
190 //config:
191 //config:config ASH_HELP
192 //config:       bool "help builtin"
193 //config:       default y
194 //config:       depends on ASH
195 //config:       help
196 //config:         Enable help builtin in ash.
197 //config:
198 //config:config ASH_CMDCMD
199 //config:       bool "'command' command to override shell builtins"
200 //config:       default y
201 //config:       depends on ASH
202 //config:       help
203 //config:         Enable support for the ash 'command' builtin, which allows
204 //config:         you to run the specified command with the specified arguments,
205 //config:         even when there is an ash builtin command with the same name.
206 //config:
207 //config:config ASH_MAIL
208 //config:       bool "Check for new mail on interactive shells"
209 //config:       default n
210 //config:       depends on ASH
211 //config:       help
212 //config:         Enable "check for new mail" function in the ash shell.
213 //config:
214
215 //applet:IF_ASH(APPLET(ash, BB_DIR_BIN, BB_SUID_DROP))
216 //applet:IF_FEATURE_SH_IS_ASH(APPLET_ODDNAME(sh, ash, BB_DIR_BIN, BB_SUID_DROP, sh))
217 //applet:IF_FEATURE_BASH_IS_ASH(APPLET_ODDNAME(bash, ash, BB_DIR_BIN, BB_SUID_DROP, bash))
218
219 //kbuild:lib-$(CONFIG_ASH) += ash.o ash_ptr_hack.o shell_common.o
220 //kbuild:lib-$(CONFIG_ASH_RANDOM_SUPPORT) += random.o
221
222
223 /* ============ Hash table sizes. Configurable. */
224
225 #define VTABSIZE 39
226 #define ATABSIZE 39
227 #define CMDTABLESIZE 31         /* should be prime */
228
229
230 /* ============ Shell options */
231
232 static const char *const optletters_optnames[] = {
233         "e"   "errexit",
234         "f"   "noglob",
235         "I"   "ignoreeof",
236         "i"   "interactive",
237         "m"   "monitor",
238         "n"   "noexec",
239         "s"   "stdin",
240         "x"   "xtrace",
241         "v"   "verbose",
242         "C"   "noclobber",
243         "a"   "allexport",
244         "b"   "notify",
245         "u"   "nounset",
246         "\0"  "vi"
247 #if ENABLE_ASH_BASH_COMPAT
248         ,"\0"  "pipefail"
249 #endif
250 #if DEBUG
251         ,"\0"  "nolog"
252         ,"\0"  "debug"
253 #endif
254 };
255
256 #define optletters(n)  optletters_optnames[n][0]
257 #define optnames(n)   (optletters_optnames[n] + 1)
258
259 enum { NOPTS = ARRAY_SIZE(optletters_optnames) };
260
261
262 /* ============ Misc data */
263
264 #define msg_illnum "Illegal number: %s"
265
266 /*
267  * We enclose jmp_buf in a structure so that we can declare pointers to
268  * jump locations.  The global variable handler contains the location to
269  * jump to when an exception occurs, and the global variable exception_type
270  * contains a code identifying the exception.  To implement nested
271  * exception handlers, the user should save the value of handler on entry
272  * to an inner scope, set handler to point to a jmploc structure for the
273  * inner scope, and restore handler on exit from the scope.
274  */
275 struct jmploc {
276         jmp_buf loc;
277 };
278
279 struct globals_misc {
280         uint8_t exitstatus;     /* exit status of last command */
281         uint8_t back_exitstatus;/* exit status of backquoted command */
282         smallint job_warning;   /* user was warned about stopped jobs (can be 2, 1 or 0). */
283         int rootpid;            /* pid of main shell */
284         /* shell level: 0 for the main shell, 1 for its children, and so on */
285         int shlvl;
286 #define rootshell (!shlvl)
287         char *minusc;  /* argument to -c option */
288
289         char *curdir; // = nullstr;     /* current working directory */
290         char *physdir; // = nullstr;    /* physical working directory */
291
292         char *arg0; /* value of $0 */
293
294         struct jmploc *exception_handler;
295
296         volatile int suppress_int; /* counter */
297         volatile /*sig_atomic_t*/ smallint pending_int; /* 1 = got SIGINT */
298         /* last pending signal */
299         volatile /*sig_atomic_t*/ smallint pending_sig;
300         smallint exception_type; /* kind of exception (0..5) */
301         /* exceptions */
302 #define EXINT 0         /* SIGINT received */
303 #define EXERROR 1       /* a generic error */
304 #define EXSHELLPROC 2   /* execute a shell procedure */
305 #define EXEXEC 3        /* command execution failed */
306 #define EXEXIT 4        /* exit the shell */
307 #define EXSIG 5         /* trapped signal in wait(1) */
308
309         smallint isloginsh;
310         char nullstr[1];        /* zero length string */
311
312         char optlist[NOPTS];
313 #define eflag optlist[0]
314 #define fflag optlist[1]
315 #define Iflag optlist[2]
316 #define iflag optlist[3]
317 #define mflag optlist[4]
318 #define nflag optlist[5]
319 #define sflag optlist[6]
320 #define xflag optlist[7]
321 #define vflag optlist[8]
322 #define Cflag optlist[9]
323 #define aflag optlist[10]
324 #define bflag optlist[11]
325 #define uflag optlist[12]
326 #define viflag optlist[13]
327 #if ENABLE_ASH_BASH_COMPAT
328 # define pipefail optlist[14]
329 #else
330 # define pipefail 0
331 #endif
332 #if DEBUG
333 # define nolog optlist[14 + ENABLE_ASH_BASH_COMPAT]
334 # define debug optlist[15 + ENABLE_ASH_BASH_COMPAT]
335 #endif
336
337         /* trap handler commands */
338         /*
339          * Sigmode records the current value of the signal handlers for the various
340          * modes.  A value of zero means that the current handler is not known.
341          * S_HARD_IGN indicates that the signal was ignored on entry to the shell.
342          */
343         char sigmode[NSIG - 1];
344 #define S_DFL      1            /* default signal handling (SIG_DFL) */
345 #define S_CATCH    2            /* signal is caught */
346 #define S_IGN      3            /* signal is ignored (SIG_IGN) */
347 #define S_HARD_IGN 4            /* signal is ignored permanently */
348
349         /* indicates specified signal received */
350         uint8_t gotsig[NSIG - 1]; /* offset by 1: "signal" 0 is meaningless */
351         uint8_t may_have_traps; /* 0: definitely no traps are set, 1: some traps may be set */
352         char *trap[NSIG];
353         char **trap_ptr;        /* used only by "trap hack" */
354
355         /* Rarely referenced stuff */
356 #if ENABLE_ASH_RANDOM_SUPPORT
357         random_t random_gen;
358 #endif
359         pid_t backgndpid;        /* pid of last background process */
360 };
361 extern struct globals_misc *const ash_ptr_to_globals_misc;
362 #define G_misc (*ash_ptr_to_globals_misc)
363 #define exitstatus        (G_misc.exitstatus )
364 #define back_exitstatus   (G_misc.back_exitstatus )
365 #define job_warning       (G_misc.job_warning)
366 #define rootpid     (G_misc.rootpid    )
367 #define shlvl       (G_misc.shlvl      )
368 #define minusc      (G_misc.minusc     )
369 #define curdir      (G_misc.curdir     )
370 #define physdir     (G_misc.physdir    )
371 #define arg0        (G_misc.arg0       )
372 #define exception_handler (G_misc.exception_handler)
373 #define exception_type    (G_misc.exception_type   )
374 #define suppress_int      (G_misc.suppress_int     )
375 #define pending_int       (G_misc.pending_int      )
376 #define pending_sig       (G_misc.pending_sig      )
377 #define isloginsh   (G_misc.isloginsh  )
378 #define nullstr     (G_misc.nullstr    )
379 #define optlist     (G_misc.optlist    )
380 #define sigmode     (G_misc.sigmode    )
381 #define gotsig      (G_misc.gotsig     )
382 #define may_have_traps    (G_misc.may_have_traps   )
383 #define trap        (G_misc.trap       )
384 #define trap_ptr    (G_misc.trap_ptr   )
385 #define random_gen  (G_misc.random_gen )
386 #define backgndpid  (G_misc.backgndpid )
387 #define INIT_G_misc() do { \
388         (*(struct globals_misc**)&ash_ptr_to_globals_misc) = xzalloc(sizeof(G_misc)); \
389         barrier(); \
390         curdir = nullstr; \
391         physdir = nullstr; \
392         trap_ptr = trap; \
393 } while (0)
394
395
396 /* ============ DEBUG */
397 #if DEBUG
398 static void trace_printf(const char *fmt, ...);
399 static void trace_vprintf(const char *fmt, va_list va);
400 # define TRACE(param)    trace_printf param
401 # define TRACEV(param)   trace_vprintf param
402 # define close(fd) do { \
403         int dfd = (fd); \
404         if (close(dfd) < 0) \
405                 bb_error_msg("bug on %d: closing %d(0x%x)", \
406                         __LINE__, dfd, dfd); \
407 } while (0)
408 #else
409 # define TRACE(param)
410 # define TRACEV(param)
411 #endif
412
413
414 /* ============ Utility functions */
415 #define is_name(c)      ((c) == '_' || isalpha((unsigned char)(c)))
416 #define is_in_name(c)   ((c) == '_' || isalnum((unsigned char)(c)))
417
418 static int
419 isdigit_str9(const char *str)
420 {
421         int maxlen = 9 + 1; /* max 9 digits: 999999999 */
422         while (--maxlen && isdigit(*str))
423                 str++;
424         return (*str == '\0');
425 }
426
427 static const char *
428 var_end(const char *var)
429 {
430         while (*var)
431                 if (*var++ == '=')
432                         break;
433         return var;
434 }
435
436
437 /* ============ Interrupts / exceptions */
438
439 static void exitshell(void) NORETURN;
440
441 /*
442  * These macros allow the user to suspend the handling of interrupt signals
443  * over a period of time.  This is similar to SIGHOLD or to sigblock, but
444  * much more efficient and portable.  (But hacking the kernel is so much
445  * more fun than worrying about efficiency and portability. :-))
446  */
447 #define INT_OFF do { \
448         suppress_int++; \
449         barrier(); \
450 } while (0)
451
452 /*
453  * Called to raise an exception.  Since C doesn't include exceptions, we
454  * just do a longjmp to the exception handler.  The type of exception is
455  * stored in the global variable "exception_type".
456  */
457 static void raise_exception(int) NORETURN;
458 static void
459 raise_exception(int e)
460 {
461 #if DEBUG
462         if (exception_handler == NULL)
463                 abort();
464 #endif
465         INT_OFF;
466         exception_type = e;
467         longjmp(exception_handler->loc, 1);
468 }
469 #if DEBUG
470 #define raise_exception(e) do { \
471         TRACE(("raising exception %d on line %d\n", (e), __LINE__)); \
472         raise_exception(e); \
473 } while (0)
474 #endif
475
476 /*
477  * Called from trap.c when a SIGINT is received.  (If the user specifies
478  * that SIGINT is to be trapped or ignored using the trap builtin, then
479  * this routine is not called.)  Suppressint is nonzero when interrupts
480  * are held using the INT_OFF macro.  (The test for iflag is just
481  * defensive programming.)
482  */
483 static void raise_interrupt(void) NORETURN;
484 static void
485 raise_interrupt(void)
486 {
487         int ex_type;
488
489         pending_int = 0;
490         /* Signal is not automatically unmasked after it is raised,
491          * do it ourself - unmask all signals */
492         sigprocmask_allsigs(SIG_UNBLOCK);
493         /* pending_sig = 0; - now done in signal_handler() */
494
495         ex_type = EXSIG;
496         if (gotsig[SIGINT - 1] && !trap[SIGINT]) {
497                 if (!(rootshell && iflag)) {
498                         /* Kill ourself with SIGINT */
499                         signal(SIGINT, SIG_DFL);
500                         raise(SIGINT);
501                 }
502                 ex_type = EXINT;
503         }
504         /* bash: ^C even on empty command line sets $? */
505         exitstatus = SIGINT + 128;
506         raise_exception(ex_type);
507         /* NOTREACHED */
508 }
509 #if DEBUG
510 #define raise_interrupt() do { \
511         TRACE(("raising interrupt on line %d\n", __LINE__)); \
512         raise_interrupt(); \
513 } while (0)
514 #endif
515
516 static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
517 int_on(void)
518 {
519         barrier();
520         if (--suppress_int == 0 && pending_int) {
521                 raise_interrupt();
522         }
523 }
524 #define INT_ON int_on()
525 static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
526 force_int_on(void)
527 {
528         barrier();
529         suppress_int = 0;
530         if (pending_int)
531                 raise_interrupt();
532 }
533 #define FORCE_INT_ON force_int_on()
534
535 #define SAVE_INT(v) ((v) = suppress_int)
536
537 #define RESTORE_INT(v) do { \
538         barrier(); \
539         suppress_int = (v); \
540         if (suppress_int == 0 && pending_int) \
541                 raise_interrupt(); \
542 } while (0)
543
544
545 /* ============ Stdout/stderr output */
546
547 static void
548 outstr(const char *p, FILE *file)
549 {
550         INT_OFF;
551         fputs(p, file);
552         INT_ON;
553 }
554
555 static void
556 flush_stdout_stderr(void)
557 {
558         INT_OFF;
559         fflush_all();
560         INT_ON;
561 }
562
563 /* Was called outcslow(c,FILE*), but c was always '\n' */
564 static void
565 newline_and_flush(FILE *dest)
566 {
567         INT_OFF;
568         putc('\n', dest);
569         fflush(dest);
570         INT_ON;
571 }
572
573 static int out1fmt(const char *, ...) __attribute__((__format__(__printf__,1,2)));
574 static int
575 out1fmt(const char *fmt, ...)
576 {
577         va_list ap;
578         int r;
579
580         INT_OFF;
581         va_start(ap, fmt);
582         r = vprintf(fmt, ap);
583         va_end(ap);
584         INT_ON;
585         return r;
586 }
587
588 static int fmtstr(char *, size_t, const char *, ...) __attribute__((__format__(__printf__,3,4)));
589 static int
590 fmtstr(char *outbuf, size_t length, const char *fmt, ...)
591 {
592         va_list ap;
593         int ret;
594
595         va_start(ap, fmt);
596         INT_OFF;
597         ret = vsnprintf(outbuf, length, fmt, ap);
598         va_end(ap);
599         INT_ON;
600         return ret;
601 }
602
603 static void
604 out1str(const char *p)
605 {
606         outstr(p, stdout);
607 }
608
609 static void
610 out2str(const char *p)
611 {
612         outstr(p, stderr);
613         flush_stdout_stderr();
614 }
615
616
617 /* ============ Parser structures */
618
619 /* control characters in argument strings */
620 #define CTL_FIRST CTLESC
621 #define CTLESC       ((unsigned char)'\201')    /* escape next character */
622 #define CTLVAR       ((unsigned char)'\202')    /* variable defn */
623 #define CTLENDVAR    ((unsigned char)'\203')
624 #define CTLBACKQ     ((unsigned char)'\204')
625 #define CTLARI       ((unsigned char)'\206')    /* arithmetic expression */
626 #define CTLENDARI    ((unsigned char)'\207')
627 #define CTLQUOTEMARK ((unsigned char)'\210')
628 #define CTL_LAST CTLQUOTEMARK
629
630 /* variable substitution byte (follows CTLVAR) */
631 #define VSTYPE  0x0f            /* type of variable substitution */
632 #define VSNUL   0x10            /* colon--treat the empty string as unset */
633
634 /* values of VSTYPE field */
635 #define VSNORMAL        0x1     /* normal variable:  $var or ${var} */
636 #define VSMINUS         0x2     /* ${var-text} */
637 #define VSPLUS          0x3     /* ${var+text} */
638 #define VSQUESTION      0x4     /* ${var?message} */
639 #define VSASSIGN        0x5     /* ${var=text} */
640 #define VSTRIMRIGHT     0x6     /* ${var%pattern} */
641 #define VSTRIMRIGHTMAX  0x7     /* ${var%%pattern} */
642 #define VSTRIMLEFT      0x8     /* ${var#pattern} */
643 #define VSTRIMLEFTMAX   0x9     /* ${var##pattern} */
644 #define VSLENGTH        0xa     /* ${#var} */
645 #if ENABLE_ASH_BASH_COMPAT
646 #define VSSUBSTR        0xc     /* ${var:position:length} */
647 #define VSREPLACE       0xd     /* ${var/pattern/replacement} */
648 #define VSREPLACEALL    0xe     /* ${var//pattern/replacement} */
649 #endif
650
651 static const char dolatstr[] ALIGN1 = {
652         CTLQUOTEMARK, CTLVAR, VSNORMAL, '@', '=', CTLQUOTEMARK, '\0'
653 };
654 #define DOLATSTRLEN 6
655
656 #define NCMD      0
657 #define NPIPE     1
658 #define NREDIR    2
659 #define NBACKGND  3
660 #define NSUBSHELL 4
661 #define NAND      5
662 #define NOR       6
663 #define NSEMI     7
664 #define NIF       8
665 #define NWHILE    9
666 #define NUNTIL   10
667 #define NFOR     11
668 #define NCASE    12
669 #define NCLIST   13
670 #define NDEFUN   14
671 #define NARG     15
672 #define NTO      16
673 #if ENABLE_ASH_BASH_COMPAT
674 #define NTO2     17
675 #endif
676 #define NCLOBBER 18
677 #define NFROM    19
678 #define NFROMTO  20
679 #define NAPPEND  21
680 #define NTOFD    22
681 #define NFROMFD  23
682 #define NHERE    24
683 #define NXHERE   25
684 #define NNOT     26
685 #define N_NUMBER 27
686
687 union node;
688
689 struct ncmd {
690         smallint type; /* Nxxxx */
691         union node *assign;
692         union node *args;
693         union node *redirect;
694 };
695
696 struct npipe {
697         smallint type;
698         smallint pipe_backgnd;
699         struct nodelist *cmdlist;
700 };
701
702 struct nredir {
703         smallint type;
704         union node *n;
705         union node *redirect;
706 };
707
708 struct nbinary {
709         smallint type;
710         union node *ch1;
711         union node *ch2;
712 };
713
714 struct nif {
715         smallint type;
716         union node *test;
717         union node *ifpart;
718         union node *elsepart;
719 };
720
721 struct nfor {
722         smallint type;
723         union node *args;
724         union node *body;
725         char *var;
726 };
727
728 struct ncase {
729         smallint type;
730         union node *expr;
731         union node *cases;
732 };
733
734 struct nclist {
735         smallint type;
736         union node *next;
737         union node *pattern;
738         union node *body;
739 };
740
741 struct narg {
742         smallint type;
743         union node *next;
744         char *text;
745         struct nodelist *backquote;
746 };
747
748 /* nfile and ndup layout must match!
749  * NTOFD (>&fdnum) uses ndup structure, but we may discover mid-flight
750  * that it is actually NTO2 (>&file), and change its type.
751  */
752 struct nfile {
753         smallint type;
754         union node *next;
755         int fd;
756         int _unused_dupfd;
757         union node *fname;
758         char *expfname;
759 };
760
761 struct ndup {
762         smallint type;
763         union node *next;
764         int fd;
765         int dupfd;
766         union node *vname;
767         char *_unused_expfname;
768 };
769
770 struct nhere {
771         smallint type;
772         union node *next;
773         int fd;
774         union node *doc;
775 };
776
777 struct nnot {
778         smallint type;
779         union node *com;
780 };
781
782 union node {
783         smallint type;
784         struct ncmd ncmd;
785         struct npipe npipe;
786         struct nredir nredir;
787         struct nbinary nbinary;
788         struct nif nif;
789         struct nfor nfor;
790         struct ncase ncase;
791         struct nclist nclist;
792         struct narg narg;
793         struct nfile nfile;
794         struct ndup ndup;
795         struct nhere nhere;
796         struct nnot nnot;
797 };
798
799 /*
800  * NODE_EOF is returned by parsecmd when it encounters an end of file.
801  * It must be distinct from NULL.
802  */
803 #define NODE_EOF ((union node *) -1L)
804
805 struct nodelist {
806         struct nodelist *next;
807         union node *n;
808 };
809
810 struct funcnode {
811         int count;
812         union node n;
813 };
814
815 /*
816  * Free a parse tree.
817  */
818 static void
819 freefunc(struct funcnode *f)
820 {
821         if (f && --f->count < 0)
822                 free(f);
823 }
824
825
826 /* ============ Debugging output */
827
828 #if DEBUG
829
830 static FILE *tracefile;
831
832 static void
833 trace_printf(const char *fmt, ...)
834 {
835         va_list va;
836
837         if (debug != 1)
838                 return;
839         if (DEBUG_TIME)
840                 fprintf(tracefile, "%u ", (int) time(NULL));
841         if (DEBUG_PID)
842                 fprintf(tracefile, "[%u] ", (int) getpid());
843         if (DEBUG_SIG)
844                 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
845         va_start(va, fmt);
846         vfprintf(tracefile, fmt, va);
847         va_end(va);
848 }
849
850 static void
851 trace_vprintf(const char *fmt, va_list va)
852 {
853         if (debug != 1)
854                 return;
855         if (DEBUG_TIME)
856                 fprintf(tracefile, "%u ", (int) time(NULL));
857         if (DEBUG_PID)
858                 fprintf(tracefile, "[%u] ", (int) getpid());
859         if (DEBUG_SIG)
860                 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
861         vfprintf(tracefile, fmt, va);
862 }
863
864 static void
865 trace_puts(const char *s)
866 {
867         if (debug != 1)
868                 return;
869         fputs(s, tracefile);
870 }
871
872 static void
873 trace_puts_quoted(char *s)
874 {
875         char *p;
876         char c;
877
878         if (debug != 1)
879                 return;
880         putc('"', tracefile);
881         for (p = s; *p; p++) {
882                 switch ((unsigned char)*p) {
883                 case '\n': c = 'n'; goto backslash;
884                 case '\t': c = 't'; goto backslash;
885                 case '\r': c = 'r'; goto backslash;
886                 case '\"': c = '\"'; goto backslash;
887                 case '\\': c = '\\'; goto backslash;
888                 case CTLESC: c = 'e'; goto backslash;
889                 case CTLVAR: c = 'v'; goto backslash;
890                 case CTLBACKQ: c = 'q'; goto backslash;
891  backslash:
892                         putc('\\', tracefile);
893                         putc(c, tracefile);
894                         break;
895                 default:
896                         if (*p >= ' ' && *p <= '~')
897                                 putc(*p, tracefile);
898                         else {
899                                 putc('\\', tracefile);
900                                 putc((*p >> 6) & 03, tracefile);
901                                 putc((*p >> 3) & 07, tracefile);
902                                 putc(*p & 07, tracefile);
903                         }
904                         break;
905                 }
906         }
907         putc('"', tracefile);
908 }
909
910 static void
911 trace_puts_args(char **ap)
912 {
913         if (debug != 1)
914                 return;
915         if (!*ap)
916                 return;
917         while (1) {
918                 trace_puts_quoted(*ap);
919                 if (!*++ap) {
920                         putc('\n', tracefile);
921                         break;
922                 }
923                 putc(' ', tracefile);
924         }
925 }
926
927 static void
928 opentrace(void)
929 {
930         char s[100];
931 #ifdef O_APPEND
932         int flags;
933 #endif
934
935         if (debug != 1) {
936                 if (tracefile)
937                         fflush(tracefile);
938                 /* leave open because libedit might be using it */
939                 return;
940         }
941         strcpy(s, "./trace");
942         if (tracefile) {
943                 if (!freopen(s, "a", tracefile)) {
944                         fprintf(stderr, "Can't re-open %s\n", s);
945                         debug = 0;
946                         return;
947                 }
948         } else {
949                 tracefile = fopen(s, "a");
950                 if (tracefile == NULL) {
951                         fprintf(stderr, "Can't open %s\n", s);
952                         debug = 0;
953                         return;
954                 }
955         }
956 #ifdef O_APPEND
957         flags = fcntl(fileno(tracefile), F_GETFL);
958         if (flags >= 0)
959                 fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
960 #endif
961         setlinebuf(tracefile);
962         fputs("\nTracing started.\n", tracefile);
963 }
964
965 static void
966 indent(int amount, char *pfx, FILE *fp)
967 {
968         int i;
969
970         for (i = 0; i < amount; i++) {
971                 if (pfx && i == amount - 1)
972                         fputs(pfx, fp);
973                 putc('\t', fp);
974         }
975 }
976
977 /* little circular references here... */
978 static void shtree(union node *n, int ind, char *pfx, FILE *fp);
979
980 static void
981 sharg(union node *arg, FILE *fp)
982 {
983         char *p;
984         struct nodelist *bqlist;
985         unsigned char subtype;
986
987         if (arg->type != NARG) {
988                 out1fmt("<node type %d>\n", arg->type);
989                 abort();
990         }
991         bqlist = arg->narg.backquote;
992         for (p = arg->narg.text; *p; p++) {
993                 switch ((unsigned char)*p) {
994                 case CTLESC:
995                         p++;
996                         putc(*p, fp);
997                         break;
998                 case CTLVAR:
999                         putc('$', fp);
1000                         putc('{', fp);
1001                         subtype = *++p;
1002                         if (subtype == VSLENGTH)
1003                                 putc('#', fp);
1004
1005                         while (*p != '=') {
1006                                 putc(*p, fp);
1007                                 p++;
1008                         }
1009
1010                         if (subtype & VSNUL)
1011                                 putc(':', fp);
1012
1013                         switch (subtype & VSTYPE) {
1014                         case VSNORMAL:
1015                                 putc('}', fp);
1016                                 break;
1017                         case VSMINUS:
1018                                 putc('-', fp);
1019                                 break;
1020                         case VSPLUS:
1021                                 putc('+', fp);
1022                                 break;
1023                         case VSQUESTION:
1024                                 putc('?', fp);
1025                                 break;
1026                         case VSASSIGN:
1027                                 putc('=', fp);
1028                                 break;
1029                         case VSTRIMLEFT:
1030                                 putc('#', fp);
1031                                 break;
1032                         case VSTRIMLEFTMAX:
1033                                 putc('#', fp);
1034                                 putc('#', fp);
1035                                 break;
1036                         case VSTRIMRIGHT:
1037                                 putc('%', fp);
1038                                 break;
1039                         case VSTRIMRIGHTMAX:
1040                                 putc('%', fp);
1041                                 putc('%', fp);
1042                                 break;
1043                         case VSLENGTH:
1044                                 break;
1045                         default:
1046                                 out1fmt("<subtype %d>", subtype);
1047                         }
1048                         break;
1049                 case CTLENDVAR:
1050                         putc('}', fp);
1051                         break;
1052                 case CTLBACKQ:
1053                         putc('$', fp);
1054                         putc('(', fp);
1055                         shtree(bqlist->n, -1, NULL, fp);
1056                         putc(')', fp);
1057                         break;
1058                 default:
1059                         putc(*p, fp);
1060                         break;
1061                 }
1062         }
1063 }
1064
1065 static void
1066 shcmd(union node *cmd, FILE *fp)
1067 {
1068         union node *np;
1069         int first;
1070         const char *s;
1071         int dftfd;
1072
1073         first = 1;
1074         for (np = cmd->ncmd.args; np; np = np->narg.next) {
1075                 if (!first)
1076                         putc(' ', fp);
1077                 sharg(np, fp);
1078                 first = 0;
1079         }
1080         for (np = cmd->ncmd.redirect; np; np = np->nfile.next) {
1081                 if (!first)
1082                         putc(' ', fp);
1083                 dftfd = 0;
1084                 switch (np->nfile.type) {
1085                 case NTO:      s = ">>"+1; dftfd = 1; break;
1086                 case NCLOBBER: s = ">|"; dftfd = 1; break;
1087                 case NAPPEND:  s = ">>"; dftfd = 1; break;
1088 #if ENABLE_ASH_BASH_COMPAT
1089                 case NTO2:
1090 #endif
1091                 case NTOFD:    s = ">&"; dftfd = 1; break;
1092                 case NFROM:    s = "<"; break;
1093                 case NFROMFD:  s = "<&"; break;
1094                 case NFROMTO:  s = "<>"; break;
1095                 default:       s = "*error*"; break;
1096                 }
1097                 if (np->nfile.fd != dftfd)
1098                         fprintf(fp, "%d", np->nfile.fd);
1099                 fputs(s, fp);
1100                 if (np->nfile.type == NTOFD || np->nfile.type == NFROMFD) {
1101                         fprintf(fp, "%d", np->ndup.dupfd);
1102                 } else {
1103                         sharg(np->nfile.fname, fp);
1104                 }
1105                 first = 0;
1106         }
1107 }
1108
1109 static void
1110 shtree(union node *n, int ind, char *pfx, FILE *fp)
1111 {
1112         struct nodelist *lp;
1113         const char *s;
1114
1115         if (n == NULL)
1116                 return;
1117
1118         indent(ind, pfx, fp);
1119
1120         if (n == NODE_EOF) {
1121                 fputs("<EOF>", fp);
1122                 return;
1123         }
1124
1125         switch (n->type) {
1126         case NSEMI:
1127                 s = "; ";
1128                 goto binop;
1129         case NAND:
1130                 s = " && ";
1131                 goto binop;
1132         case NOR:
1133                 s = " || ";
1134  binop:
1135                 shtree(n->nbinary.ch1, ind, NULL, fp);
1136                 /* if (ind < 0) */
1137                         fputs(s, fp);
1138                 shtree(n->nbinary.ch2, ind, NULL, fp);
1139                 break;
1140         case NCMD:
1141                 shcmd(n, fp);
1142                 if (ind >= 0)
1143                         putc('\n', fp);
1144                 break;
1145         case NPIPE:
1146                 for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
1147                         shtree(lp->n, 0, NULL, fp);
1148                         if (lp->next)
1149                                 fputs(" | ", fp);
1150                 }
1151                 if (n->npipe.pipe_backgnd)
1152                         fputs(" &", fp);
1153                 if (ind >= 0)
1154                         putc('\n', fp);
1155                 break;
1156         default:
1157                 fprintf(fp, "<node type %d>", n->type);
1158                 if (ind >= 0)
1159                         putc('\n', fp);
1160                 break;
1161         }
1162 }
1163
1164 static void
1165 showtree(union node *n)
1166 {
1167         trace_puts("showtree called\n");
1168         shtree(n, 1, NULL, stderr);
1169 }
1170
1171 #endif /* DEBUG */
1172
1173
1174 /* ============ Parser data */
1175
1176 /*
1177  * ash_vmsg() needs parsefile->fd, hence parsefile definition is moved up.
1178  */
1179 struct strlist {
1180         struct strlist *next;
1181         char *text;
1182 };
1183
1184 struct alias;
1185
1186 struct strpush {
1187         struct strpush *prev;   /* preceding string on stack */
1188         char *prev_string;
1189         int prev_left_in_line;
1190 #if ENABLE_ASH_ALIAS
1191         struct alias *ap;       /* if push was associated with an alias */
1192 #endif
1193         char *string;           /* remember the string since it may change */
1194
1195         /* Remember last two characters for pungetc. */
1196         int lastc[2];
1197
1198         /* Number of outstanding calls to pungetc. */
1199         int unget;
1200 };
1201
1202 struct parsefile {
1203         struct parsefile *prev; /* preceding file on stack */
1204         int linno;              /* current line */
1205         int pf_fd;              /* file descriptor (or -1 if string) */
1206         int left_in_line;       /* number of chars left in this line */
1207         int left_in_buffer;     /* number of chars left in this buffer past the line */
1208         char *next_to_pgetc;    /* next char in buffer */
1209         char *buf;              /* input buffer */
1210         struct strpush *strpush; /* for pushing strings at this level */
1211         struct strpush basestrpush; /* so pushing one is fast */
1212
1213         /* Remember last two characters for pungetc. */
1214         int lastc[2];
1215
1216         /* Number of outstanding calls to pungetc. */
1217         int unget;
1218 };
1219
1220 static struct parsefile basepf;        /* top level input file */
1221 static struct parsefile *g_parsefile = &basepf;  /* current input file */
1222 static int startlinno;                 /* line # where last token started */
1223 static char *commandname;              /* currently executing command */
1224 static struct strlist *cmdenviron;     /* environment for builtin command */
1225
1226
1227 /* ============ Message printing */
1228
1229 static void
1230 ash_vmsg(const char *msg, va_list ap)
1231 {
1232         fprintf(stderr, "%s: ", arg0);
1233         if (commandname) {
1234                 if (strcmp(arg0, commandname))
1235                         fprintf(stderr, "%s: ", commandname);
1236                 if (!iflag || g_parsefile->pf_fd > 0)
1237                         fprintf(stderr, "line %d: ", startlinno);
1238         }
1239         vfprintf(stderr, msg, ap);
1240         newline_and_flush(stderr);
1241 }
1242
1243 /*
1244  * Exverror is called to raise the error exception.  If the second argument
1245  * is not NULL then error prints an error message using printf style
1246  * formatting.  It then raises the error exception.
1247  */
1248 static void ash_vmsg_and_raise(int, const char *, va_list) NORETURN;
1249 static void
1250 ash_vmsg_and_raise(int cond, const char *msg, va_list ap)
1251 {
1252 #if DEBUG
1253         if (msg) {
1254                 TRACE(("ash_vmsg_and_raise(%d, \"", cond));
1255                 TRACEV((msg, ap));
1256                 TRACE(("\") pid=%d\n", getpid()));
1257         } else
1258                 TRACE(("ash_vmsg_and_raise(%d, NULL) pid=%d\n", cond, getpid()));
1259         if (msg)
1260 #endif
1261                 ash_vmsg(msg, ap);
1262
1263         flush_stdout_stderr();
1264         raise_exception(cond);
1265         /* NOTREACHED */
1266 }
1267
1268 static void ash_msg_and_raise_error(const char *, ...) NORETURN;
1269 static void
1270 ash_msg_and_raise_error(const char *msg, ...)
1271 {
1272         va_list ap;
1273
1274         va_start(ap, msg);
1275         ash_vmsg_and_raise(EXERROR, msg, ap);
1276         /* NOTREACHED */
1277         va_end(ap);
1278 }
1279
1280 static void raise_error_syntax(const char *) NORETURN;
1281 static void
1282 raise_error_syntax(const char *msg)
1283 {
1284         ash_msg_and_raise_error("syntax error: %s", msg);
1285         /* NOTREACHED */
1286 }
1287
1288 static void ash_msg_and_raise(int, const char *, ...) NORETURN;
1289 static void
1290 ash_msg_and_raise(int cond, const char *msg, ...)
1291 {
1292         va_list ap;
1293
1294         va_start(ap, msg);
1295         ash_vmsg_and_raise(cond, msg, ap);
1296         /* NOTREACHED */
1297         va_end(ap);
1298 }
1299
1300 /*
1301  * error/warning routines for external builtins
1302  */
1303 static void
1304 ash_msg(const char *fmt, ...)
1305 {
1306         va_list ap;
1307
1308         va_start(ap, fmt);
1309         ash_vmsg(fmt, ap);
1310         va_end(ap);
1311 }
1312
1313 /*
1314  * Return a string describing an error.  The returned string may be a
1315  * pointer to a static buffer that will be overwritten on the next call.
1316  * Action describes the operation that got the error.
1317  */
1318 static const char *
1319 errmsg(int e, const char *em)
1320 {
1321         if (e == ENOENT || e == ENOTDIR) {
1322                 return em;
1323         }
1324         return strerror(e);
1325 }
1326
1327
1328 /* ============ Memory allocation */
1329
1330 #if 0
1331 /* I consider these wrappers nearly useless:
1332  * ok, they return you to nearest exception handler, but
1333  * how much memory do you leak in the process, making
1334  * memory starvation worse?
1335  */
1336 static void *
1337 ckrealloc(void * p, size_t nbytes)
1338 {
1339         p = realloc(p, nbytes);
1340         if (!p)
1341                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1342         return p;
1343 }
1344
1345 static void *
1346 ckmalloc(size_t nbytes)
1347 {
1348         return ckrealloc(NULL, nbytes);
1349 }
1350
1351 static void *
1352 ckzalloc(size_t nbytes)
1353 {
1354         return memset(ckmalloc(nbytes), 0, nbytes);
1355 }
1356
1357 static char *
1358 ckstrdup(const char *s)
1359 {
1360         char *p = strdup(s);
1361         if (!p)
1362                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1363         return p;
1364 }
1365 #else
1366 /* Using bbox equivalents. They exit if out of memory */
1367 # define ckrealloc xrealloc
1368 # define ckmalloc  xmalloc
1369 # define ckzalloc  xzalloc
1370 # define ckstrdup  xstrdup
1371 #endif
1372
1373 /*
1374  * It appears that grabstackstr() will barf with such alignments
1375  * because stalloc() will return a string allocated in a new stackblock.
1376  */
1377 #define SHELL_ALIGN(nbytes) (((nbytes) + SHELL_SIZE) & ~SHELL_SIZE)
1378 enum {
1379         /* Most machines require the value returned from malloc to be aligned
1380          * in some way.  The following macro will get this right
1381          * on many machines.  */
1382         SHELL_SIZE = sizeof(union { int i; char *cp; double d; }) - 1,
1383         /* Minimum size of a block */
1384         MINSIZE = SHELL_ALIGN(504),
1385 };
1386
1387 struct stack_block {
1388         struct stack_block *prev;
1389         char space[MINSIZE];
1390 };
1391
1392 struct stackmark {
1393         struct stack_block *stackp;
1394         char *stacknxt;
1395         size_t stacknleft;
1396 };
1397
1398
1399 struct globals_memstack {
1400         struct stack_block *g_stackp; // = &stackbase;
1401         char *g_stacknxt; // = stackbase.space;
1402         char *sstrend; // = stackbase.space + MINSIZE;
1403         size_t g_stacknleft; // = MINSIZE;
1404         int    herefd; // = -1;
1405         struct stack_block stackbase;
1406 };
1407 extern struct globals_memstack *const ash_ptr_to_globals_memstack;
1408 #define G_memstack (*ash_ptr_to_globals_memstack)
1409 #define g_stackp     (G_memstack.g_stackp    )
1410 #define g_stacknxt   (G_memstack.g_stacknxt  )
1411 #define sstrend      (G_memstack.sstrend     )
1412 #define g_stacknleft (G_memstack.g_stacknleft)
1413 #define herefd       (G_memstack.herefd      )
1414 #define stackbase    (G_memstack.stackbase   )
1415 #define INIT_G_memstack() do { \
1416         (*(struct globals_memstack**)&ash_ptr_to_globals_memstack) = xzalloc(sizeof(G_memstack)); \
1417         barrier(); \
1418         g_stackp = &stackbase; \
1419         g_stacknxt = stackbase.space; \
1420         g_stacknleft = MINSIZE; \
1421         sstrend = stackbase.space + MINSIZE; \
1422         herefd = -1; \
1423 } while (0)
1424
1425
1426 #define stackblock()     ((void *)g_stacknxt)
1427 #define stackblocksize() g_stacknleft
1428
1429 /*
1430  * Parse trees for commands are allocated in lifo order, so we use a stack
1431  * to make this more efficient, and also to avoid all sorts of exception
1432  * handling code to handle interrupts in the middle of a parse.
1433  *
1434  * The size 504 was chosen because the Ultrix malloc handles that size
1435  * well.
1436  */
1437 static void *
1438 stalloc(size_t nbytes)
1439 {
1440         char *p;
1441         size_t aligned;
1442
1443         aligned = SHELL_ALIGN(nbytes);
1444         if (aligned > g_stacknleft) {
1445                 size_t len;
1446                 size_t blocksize;
1447                 struct stack_block *sp;
1448
1449                 blocksize = aligned;
1450                 if (blocksize < MINSIZE)
1451                         blocksize = MINSIZE;
1452                 len = sizeof(struct stack_block) - MINSIZE + blocksize;
1453                 if (len < blocksize)
1454                         ash_msg_and_raise_error(bb_msg_memory_exhausted);
1455                 INT_OFF;
1456                 sp = ckmalloc(len);
1457                 sp->prev = g_stackp;
1458                 g_stacknxt = sp->space;
1459                 g_stacknleft = blocksize;
1460                 sstrend = g_stacknxt + blocksize;
1461                 g_stackp = sp;
1462                 INT_ON;
1463         }
1464         p = g_stacknxt;
1465         g_stacknxt += aligned;
1466         g_stacknleft -= aligned;
1467         return p;
1468 }
1469
1470 static void *
1471 stzalloc(size_t nbytes)
1472 {
1473         return memset(stalloc(nbytes), 0, nbytes);
1474 }
1475
1476 static void
1477 stunalloc(void *p)
1478 {
1479 #if DEBUG
1480         if (!p || (g_stacknxt < (char *)p) || ((char *)p < g_stackp->space)) {
1481                 write(STDERR_FILENO, "stunalloc\n", 10);
1482                 abort();
1483         }
1484 #endif
1485         g_stacknleft += g_stacknxt - (char *)p;
1486         g_stacknxt = p;
1487 }
1488
1489 /*
1490  * Like strdup but works with the ash stack.
1491  */
1492 static char *
1493 sstrdup(const char *p)
1494 {
1495         size_t len = strlen(p) + 1;
1496         return memcpy(stalloc(len), p, len);
1497 }
1498
1499 static void
1500 grabstackblock(size_t len)
1501 {
1502         len = SHELL_ALIGN(len);
1503         g_stacknxt += len;
1504         g_stacknleft -= len;
1505 }
1506
1507 static void
1508 pushstackmark(struct stackmark *mark, size_t len)
1509 {
1510         mark->stackp = g_stackp;
1511         mark->stacknxt = g_stacknxt;
1512         mark->stacknleft = g_stacknleft;
1513         grabstackblock(len);
1514 }
1515
1516 static void
1517 setstackmark(struct stackmark *mark)
1518 {
1519         pushstackmark(mark, g_stacknxt == g_stackp->space && g_stackp != &stackbase);
1520 }
1521
1522 static void
1523 popstackmark(struct stackmark *mark)
1524 {
1525         struct stack_block *sp;
1526
1527         if (!mark->stackp)
1528                 return;
1529
1530         INT_OFF;
1531         while (g_stackp != mark->stackp) {
1532                 sp = g_stackp;
1533                 g_stackp = sp->prev;
1534                 free(sp);
1535         }
1536         g_stacknxt = mark->stacknxt;
1537         g_stacknleft = mark->stacknleft;
1538         sstrend = mark->stacknxt + mark->stacknleft;
1539         INT_ON;
1540 }
1541
1542 /*
1543  * When the parser reads in a string, it wants to stick the string on the
1544  * stack and only adjust the stack pointer when it knows how big the
1545  * string is.  Stackblock (defined in stack.h) returns a pointer to a block
1546  * of space on top of the stack and stackblocklen returns the length of
1547  * this block.  Growstackblock will grow this space by at least one byte,
1548  * possibly moving it (like realloc).  Grabstackblock actually allocates the
1549  * part of the block that has been used.
1550  */
1551 static void
1552 growstackblock(void)
1553 {
1554         size_t newlen;
1555
1556         newlen = g_stacknleft * 2;
1557         if (newlen < g_stacknleft)
1558                 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1559         if (newlen < 128)
1560                 newlen += 128;
1561
1562         if (g_stacknxt == g_stackp->space && g_stackp != &stackbase) {
1563                 struct stack_block *sp;
1564                 struct stack_block *prevstackp;
1565                 size_t grosslen;
1566
1567                 INT_OFF;
1568                 sp = g_stackp;
1569                 prevstackp = sp->prev;
1570                 grosslen = newlen + sizeof(struct stack_block) - MINSIZE;
1571                 sp = ckrealloc(sp, grosslen);
1572                 sp->prev = prevstackp;
1573                 g_stackp = sp;
1574                 g_stacknxt = sp->space;
1575                 g_stacknleft = newlen;
1576                 sstrend = sp->space + newlen;
1577                 INT_ON;
1578         } else {
1579                 char *oldspace = g_stacknxt;
1580                 size_t oldlen = g_stacknleft;
1581                 char *p = stalloc(newlen);
1582
1583                 /* free the space we just allocated */
1584                 g_stacknxt = memcpy(p, oldspace, oldlen);
1585                 g_stacknleft += newlen;
1586         }
1587 }
1588
1589 /*
1590  * The following routines are somewhat easier to use than the above.
1591  * The user declares a variable of type STACKSTR, which may be declared
1592  * to be a register.  The macro STARTSTACKSTR initializes things.  Then
1593  * the user uses the macro STPUTC to add characters to the string.  In
1594  * effect, STPUTC(c, p) is the same as *p++ = c except that the stack is
1595  * grown as necessary.  When the user is done, she can just leave the
1596  * string there and refer to it using stackblock().  Or she can allocate
1597  * the space for it using grabstackstr().  If it is necessary to allow
1598  * someone else to use the stack temporarily and then continue to grow
1599  * the string, the user should use grabstack to allocate the space, and
1600  * then call ungrabstr(p) to return to the previous mode of operation.
1601  *
1602  * USTPUTC is like STPUTC except that it doesn't check for overflow.
1603  * CHECKSTACKSPACE can be called before USTPUTC to ensure that there
1604  * is space for at least one character.
1605  */
1606 static void *
1607 growstackstr(void)
1608 {
1609         size_t len = stackblocksize();
1610         if (herefd >= 0 && len >= 1024) {
1611                 full_write(herefd, stackblock(), len);
1612                 return stackblock();
1613         }
1614         growstackblock();
1615         return (char *)stackblock() + len;
1616 }
1617
1618 /*
1619  * Called from CHECKSTRSPACE.
1620  */
1621 static char *
1622 makestrspace(size_t newlen, char *p)
1623 {
1624         size_t len = p - g_stacknxt;
1625         size_t size;
1626
1627         for (;;) {
1628                 size_t nleft;
1629
1630                 size = stackblocksize();
1631                 nleft = size - len;
1632                 if (nleft >= newlen)
1633                         break;
1634                 growstackblock();
1635         }
1636         return (char *)stackblock() + len;
1637 }
1638
1639 static char *
1640 stack_nputstr(const char *s, size_t n, char *p)
1641 {
1642         p = makestrspace(n, p);
1643         p = (char *)memcpy(p, s, n) + n;
1644         return p;
1645 }
1646
1647 static char *
1648 stack_putstr(const char *s, char *p)
1649 {
1650         return stack_nputstr(s, strlen(s), p);
1651 }
1652
1653 static char *
1654 _STPUTC(int c, char *p)
1655 {
1656         if (p == sstrend)
1657                 p = growstackstr();
1658         *p++ = c;
1659         return p;
1660 }
1661
1662 #define STARTSTACKSTR(p)        ((p) = stackblock())
1663 #define STPUTC(c, p)            ((p) = _STPUTC((c), (p)))
1664 #define CHECKSTRSPACE(n, p) do { \
1665         char *q = (p); \
1666         size_t l = (n); \
1667         size_t m = sstrend - q; \
1668         if (l > m) \
1669                 (p) = makestrspace(l, q); \
1670 } while (0)
1671 #define USTPUTC(c, p)           (*(p)++ = (c))
1672 #define STACKSTRNUL(p) do { \
1673         if ((p) == sstrend) \
1674                 (p) = growstackstr(); \
1675         *(p) = '\0'; \
1676 } while (0)
1677 #define STUNPUTC(p)             (--(p))
1678 #define STTOPC(p)               ((p)[-1])
1679 #define STADJUST(amount, p)     ((p) += (amount))
1680
1681 #define grabstackstr(p)         stalloc((char *)(p) - (char *)stackblock())
1682 #define ungrabstackstr(s, p)    stunalloc(s)
1683 #define stackstrend()           ((void *)sstrend)
1684
1685
1686 /* ============ String helpers */
1687
1688 /*
1689  * prefix -- see if pfx is a prefix of string.
1690  */
1691 static char *
1692 prefix(const char *string, const char *pfx)
1693 {
1694         while (*pfx) {
1695                 if (*pfx++ != *string++)
1696                         return NULL;
1697         }
1698         return (char *) string;
1699 }
1700
1701 /*
1702  * Check for a valid number.  This should be elsewhere.
1703  */
1704 static int
1705 is_number(const char *p)
1706 {
1707         do {
1708                 if (!isdigit(*p))
1709                         return 0;
1710         } while (*++p != '\0');
1711         return 1;
1712 }
1713
1714 /*
1715  * Convert a string of digits to an integer, printing an error message on
1716  * failure.
1717  */
1718 static int
1719 number(const char *s)
1720 {
1721         if (!is_number(s))
1722                 ash_msg_and_raise_error(msg_illnum, s);
1723         return atoi(s);
1724 }
1725
1726 /*
1727  * Produce a possibly single quoted string suitable as input to the shell.
1728  * The return string is allocated on the stack.
1729  */
1730 static char *
1731 single_quote(const char *s)
1732 {
1733         char *p;
1734
1735         STARTSTACKSTR(p);
1736
1737         do {
1738                 char *q;
1739                 size_t len;
1740
1741                 len = strchrnul(s, '\'') - s;
1742
1743                 q = p = makestrspace(len + 3, p);
1744
1745                 *q++ = '\'';
1746                 q = (char *)memcpy(q, s, len) + len;
1747                 *q++ = '\'';
1748                 s += len;
1749
1750                 STADJUST(q - p, p);
1751
1752                 if (*s != '\'')
1753                         break;
1754                 len = 0;
1755                 do len++; while (*++s == '\'');
1756
1757                 q = p = makestrspace(len + 3, p);
1758
1759                 *q++ = '"';
1760                 q = (char *)memcpy(q, s - len, len) + len;
1761                 *q++ = '"';
1762
1763                 STADJUST(q - p, p);
1764         } while (*s);
1765
1766         USTPUTC('\0', p);
1767
1768         return stackblock();
1769 }
1770
1771
1772 /* ============ nextopt */
1773
1774 static char **argptr;                  /* argument list for builtin commands */
1775 static char *optionarg;                /* set by nextopt (like getopt) */
1776 static char *optptr;                   /* used by nextopt */
1777
1778 /*
1779  * XXX - should get rid of. Have all builtins use getopt(3).
1780  * The library getopt must have the BSD extension static variable
1781  * "optreset", otherwise it can't be used within the shell safely.
1782  *
1783  * Standard option processing (a la getopt) for builtin routines.
1784  * The only argument that is passed to nextopt is the option string;
1785  * the other arguments are unnecessary. It returns the character,
1786  * or '\0' on end of input.
1787  */
1788 static int
1789 nextopt(const char *optstring)
1790 {
1791         char *p;
1792         const char *q;
1793         char c;
1794
1795         p = optptr;
1796         if (p == NULL || *p == '\0') {
1797                 /* We ate entire "-param", take next one */
1798                 p = *argptr;
1799                 if (p == NULL)
1800                         return '\0';
1801                 if (*p != '-')
1802                         return '\0';
1803                 if (*++p == '\0') /* just "-" ? */
1804                         return '\0';
1805                 argptr++;
1806                 if (LONE_DASH(p)) /* "--" ? */
1807                         return '\0';
1808                 /* p => next "-param" */
1809         }
1810         /* p => some option char in the middle of a "-param" */
1811         c = *p++;
1812         for (q = optstring; *q != c;) {
1813                 if (*q == '\0')
1814                         ash_msg_and_raise_error("illegal option -%c", c);
1815                 if (*++q == ':')
1816                         q++;
1817         }
1818         if (*++q == ':') {
1819                 if (*p == '\0') {
1820                         p = *argptr++;
1821                         if (p == NULL)
1822                                 ash_msg_and_raise_error("no arg for -%c option", c);
1823                 }
1824                 optionarg = p;
1825                 p = NULL;
1826         }
1827         optptr = p;
1828         return c;
1829 }
1830
1831
1832 /* ============ Shell variables */
1833
1834 /*
1835  * The parsefile structure pointed to by the global variable parsefile
1836  * contains information about the current file being read.
1837  */
1838 struct shparam {
1839         int nparam;             /* # of positional parameters (without $0) */
1840 #if ENABLE_ASH_GETOPTS
1841         int optind;             /* next parameter to be processed by getopts */
1842         int optoff;             /* used by getopts */
1843 #endif
1844         unsigned char malloced; /* if parameter list dynamically allocated */
1845         char **p;               /* parameter list */
1846 };
1847
1848 /*
1849  * Free the list of positional parameters.
1850  */
1851 static void
1852 freeparam(volatile struct shparam *param)
1853 {
1854         if (param->malloced) {
1855                 char **ap, **ap1;
1856                 ap = ap1 = param->p;
1857                 while (*ap)
1858                         free(*ap++);
1859                 free(ap1);
1860         }
1861 }
1862
1863 #if ENABLE_ASH_GETOPTS
1864 static void FAST_FUNC getoptsreset(const char *value);
1865 #endif
1866
1867 struct var {
1868         struct var *next;               /* next entry in hash list */
1869         int flags;                      /* flags are defined above */
1870         const char *var_text;           /* name=value */
1871         void (*var_func)(const char *) FAST_FUNC; /* function to be called when  */
1872                                         /* the variable gets set/unset */
1873 };
1874
1875 struct localvar {
1876         struct localvar *next;          /* next local variable in list */
1877         struct var *vp;                 /* the variable that was made local */
1878         int flags;                      /* saved flags */
1879         const char *text;               /* saved text */
1880 };
1881
1882 /* flags */
1883 #define VEXPORT         0x01    /* variable is exported */
1884 #define VREADONLY       0x02    /* variable cannot be modified */
1885 #define VSTRFIXED       0x04    /* variable struct is statically allocated */
1886 #define VTEXTFIXED      0x08    /* text is statically allocated */
1887 #define VSTACK          0x10    /* text is allocated on the stack */
1888 #define VUNSET          0x20    /* the variable is not set */
1889 #define VNOFUNC         0x40    /* don't call the callback function */
1890 #define VNOSET          0x80    /* do not set variable - just readonly test */
1891 #define VNOSAVE         0x100   /* when text is on the heap before setvareq */
1892 #if ENABLE_ASH_RANDOM_SUPPORT
1893 # define VDYNAMIC       0x200   /* dynamic variable */
1894 #else
1895 # define VDYNAMIC       0
1896 #endif
1897
1898
1899 /* Need to be before varinit_data[] */
1900 #if ENABLE_LOCALE_SUPPORT
1901 static void FAST_FUNC
1902 change_lc_all(const char *value)
1903 {
1904         if (value && *value != '\0')
1905                 setlocale(LC_ALL, value);
1906 }
1907 static void FAST_FUNC
1908 change_lc_ctype(const char *value)
1909 {
1910         if (value && *value != '\0')
1911                 setlocale(LC_CTYPE, value);
1912 }
1913 #endif
1914 #if ENABLE_ASH_MAIL
1915 static void chkmail(void);
1916 static void changemail(const char *var_value) FAST_FUNC;
1917 #else
1918 # define chkmail()  ((void)0)
1919 #endif
1920 static void changepath(const char *) FAST_FUNC;
1921 #if ENABLE_ASH_RANDOM_SUPPORT
1922 static void change_random(const char *) FAST_FUNC;
1923 #endif
1924
1925 static const struct {
1926         int flags;
1927         const char *var_text;
1928         void (*var_func)(const char *) FAST_FUNC;
1929 } varinit_data[] = {
1930         /*
1931          * Note: VEXPORT would not work correctly here for NOFORK applets:
1932          * some environment strings may be constant.
1933          */
1934         { VSTRFIXED|VTEXTFIXED       , defifsvar   , NULL            },
1935 #if ENABLE_ASH_MAIL
1936         { VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL"      , changemail      },
1937         { VSTRFIXED|VTEXTFIXED|VUNSET, "MAILPATH"  , changemail      },
1938 #endif
1939         { VSTRFIXED|VTEXTFIXED       , bb_PATH_root_path, changepath },
1940         { VSTRFIXED|VTEXTFIXED       , "PS1=$ "    , NULL            },
1941         { VSTRFIXED|VTEXTFIXED       , "PS2=> "    , NULL            },
1942         { VSTRFIXED|VTEXTFIXED       , "PS4=+ "    , NULL            },
1943 #if ENABLE_ASH_GETOPTS
1944         { VSTRFIXED|VTEXTFIXED       , defoptindvar, getoptsreset    },
1945 #endif
1946 #if ENABLE_ASH_RANDOM_SUPPORT
1947         { VSTRFIXED|VTEXTFIXED|VUNSET|VDYNAMIC, "RANDOM", change_random },
1948 #endif
1949 #if ENABLE_LOCALE_SUPPORT
1950         { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_ALL"    , change_lc_all   },
1951         { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_CTYPE"  , change_lc_ctype },
1952 #endif
1953 #if ENABLE_FEATURE_EDITING_SAVEHISTORY
1954         { VSTRFIXED|VTEXTFIXED|VUNSET, "HISTFILE"  , NULL            },
1955 #endif
1956 };
1957
1958 struct redirtab;
1959
1960 struct globals_var {
1961         struct shparam shellparam;      /* $@ current positional parameters */
1962         struct redirtab *redirlist;
1963         int g_nullredirs;
1964         int preverrout_fd;   /* save fd2 before print debug if xflag is set. */
1965         struct var *vartab[VTABSIZE];
1966         struct var varinit[ARRAY_SIZE(varinit_data)];
1967 };
1968 extern struct globals_var *const ash_ptr_to_globals_var;
1969 #define G_var (*ash_ptr_to_globals_var)
1970 #define shellparam    (G_var.shellparam   )
1971 //#define redirlist     (G_var.redirlist    )
1972 #define g_nullredirs  (G_var.g_nullredirs )
1973 #define preverrout_fd (G_var.preverrout_fd)
1974 #define vartab        (G_var.vartab       )
1975 #define varinit       (G_var.varinit      )
1976 #define INIT_G_var() do { \
1977         unsigned i; \
1978         (*(struct globals_var**)&ash_ptr_to_globals_var) = xzalloc(sizeof(G_var)); \
1979         barrier(); \
1980         for (i = 0; i < ARRAY_SIZE(varinit_data); i++) { \
1981                 varinit[i].flags    = varinit_data[i].flags; \
1982                 varinit[i].var_text = varinit_data[i].var_text; \
1983                 varinit[i].var_func = varinit_data[i].var_func; \
1984         } \
1985 } while (0)
1986
1987 #define vifs      varinit[0]
1988 #if ENABLE_ASH_MAIL
1989 # define vmail    (&vifs)[1]
1990 # define vmpath   (&vmail)[1]
1991 # define vpath    (&vmpath)[1]
1992 #else
1993 # define vpath    (&vifs)[1]
1994 #endif
1995 #define vps1      (&vpath)[1]
1996 #define vps2      (&vps1)[1]
1997 #define vps4      (&vps2)[1]
1998 #if ENABLE_ASH_GETOPTS
1999 # define voptind  (&vps4)[1]
2000 # if ENABLE_ASH_RANDOM_SUPPORT
2001 #  define vrandom (&voptind)[1]
2002 # endif
2003 #else
2004 # if ENABLE_ASH_RANDOM_SUPPORT
2005 #  define vrandom (&vps4)[1]
2006 # endif
2007 #endif
2008
2009 /*
2010  * The following macros access the values of the above variables.
2011  * They have to skip over the name.  They return the null string
2012  * for unset variables.
2013  */
2014 #define ifsval()        (vifs.var_text + 4)
2015 #define ifsset()        ((vifs.flags & VUNSET) == 0)
2016 #if ENABLE_ASH_MAIL
2017 # define mailval()      (vmail.var_text + 5)
2018 # define mpathval()     (vmpath.var_text + 9)
2019 # define mpathset()     ((vmpath.flags & VUNSET) == 0)
2020 #endif
2021 #define pathval()       (vpath.var_text + 5)
2022 #define ps1val()        (vps1.var_text + 4)
2023 #define ps2val()        (vps2.var_text + 4)
2024 #define ps4val()        (vps4.var_text + 4)
2025 #if ENABLE_ASH_GETOPTS
2026 # define optindval()    (voptind.var_text + 7)
2027 #endif
2028
2029 #if ENABLE_ASH_GETOPTS
2030 static void FAST_FUNC
2031 getoptsreset(const char *value)
2032 {
2033         shellparam.optind = number(value);
2034         shellparam.optoff = -1;
2035 }
2036 #endif
2037
2038 /*
2039  * Compares two strings up to the first = or '\0'.  The first
2040  * string must be terminated by '='; the second may be terminated by
2041  * either '=' or '\0'.
2042  */
2043 static int
2044 varcmp(const char *p, const char *q)
2045 {
2046         int c, d;
2047
2048         while ((c = *p) == (d = *q)) {
2049                 if (c == '\0' || c == '=')
2050                         goto out;
2051                 p++;
2052                 q++;
2053         }
2054         if (c == '=')
2055                 c = '\0';
2056         if (d == '=')
2057                 d = '\0';
2058  out:
2059         return c - d;
2060 }
2061
2062 /*
2063  * Find the appropriate entry in the hash table from the name.
2064  */
2065 static struct var **
2066 hashvar(const char *p)
2067 {
2068         unsigned hashval;
2069
2070         hashval = ((unsigned char) *p) << 4;
2071         while (*p && *p != '=')
2072                 hashval += (unsigned char) *p++;
2073         return &vartab[hashval % VTABSIZE];
2074 }
2075
2076 static int
2077 vpcmp(const void *a, const void *b)
2078 {
2079         return varcmp(*(const char **)a, *(const char **)b);
2080 }
2081
2082 /*
2083  * This routine initializes the builtin variables.
2084  */
2085 static void
2086 initvar(void)
2087 {
2088         struct var *vp;
2089         struct var *end;
2090         struct var **vpp;
2091
2092         /*
2093          * PS1 depends on uid
2094          */
2095 #if ENABLE_FEATURE_EDITING && ENABLE_FEATURE_EDITING_FANCY_PROMPT
2096         vps1.var_text = "PS1=\\w \\$ ";
2097 #else
2098         if (!geteuid())
2099                 vps1.var_text = "PS1=# ";
2100 #endif
2101         vp = varinit;
2102         end = vp + ARRAY_SIZE(varinit);
2103         do {
2104                 vpp = hashvar(vp->var_text);
2105                 vp->next = *vpp;
2106                 *vpp = vp;
2107         } while (++vp < end);
2108 }
2109
2110 static struct var **
2111 findvar(struct var **vpp, const char *name)
2112 {
2113         for (; *vpp; vpp = &(*vpp)->next) {
2114                 if (varcmp((*vpp)->var_text, name) == 0) {
2115                         break;
2116                 }
2117         }
2118         return vpp;
2119 }
2120
2121 /*
2122  * Find the value of a variable.  Returns NULL if not set.
2123  */
2124 static const char* FAST_FUNC
2125 lookupvar(const char *name)
2126 {
2127         struct var *v;
2128
2129         v = *findvar(hashvar(name), name);
2130         if (v) {
2131 #if ENABLE_ASH_RANDOM_SUPPORT
2132         /*
2133          * Dynamic variables are implemented roughly the same way they are
2134          * in bash. Namely, they're "special" so long as they aren't unset.
2135          * As soon as they're unset, they're no longer dynamic, and dynamic
2136          * lookup will no longer happen at that point. -- PFM.
2137          */
2138                 if (v->flags & VDYNAMIC)
2139                         v->var_func(NULL);
2140 #endif
2141                 if (!(v->flags & VUNSET))
2142                         return var_end(v->var_text);
2143         }
2144         return NULL;
2145 }
2146
2147 static void
2148 reinit_unicode_for_ash(void)
2149 {
2150         /* Unicode support should be activated even if LANG is set
2151          * _during_ shell execution, not only if it was set when
2152          * shell was started. Therefore, re-check LANG every time:
2153          */
2154         if (ENABLE_FEATURE_CHECK_UNICODE_IN_ENV
2155          || ENABLE_UNICODE_USING_LOCALE
2156         ) {
2157                 const char *s = lookupvar("LC_ALL");
2158                 if (!s) s = lookupvar("LC_CTYPE");
2159                 if (!s) s = lookupvar("LANG");
2160                 reinit_unicode(s);
2161         }
2162 }
2163
2164 /*
2165  * Search the environment of a builtin command.
2166  */
2167 static const char *
2168 bltinlookup(const char *name)
2169 {
2170         struct strlist *sp;
2171
2172         for (sp = cmdenviron; sp; sp = sp->next) {
2173                 if (varcmp(sp->text, name) == 0)
2174                         return var_end(sp->text);
2175         }
2176         return lookupvar(name);
2177 }
2178
2179 /*
2180  * Same as setvar except that the variable and value are passed in
2181  * the first argument as name=value.  Since the first argument will
2182  * be actually stored in the table, it should not be a string that
2183  * will go away.
2184  * Called with interrupts off.
2185  */
2186 static void
2187 setvareq(char *s, int flags)
2188 {
2189         struct var *vp, **vpp;
2190
2191         vpp = hashvar(s);
2192         flags |= (VEXPORT & (((unsigned) (1 - aflag)) - 1));
2193         vp = *findvar(vpp, s);
2194         if (vp) {
2195                 if ((vp->flags & (VREADONLY|VDYNAMIC)) == VREADONLY) {
2196                         const char *n;
2197
2198                         if (flags & VNOSAVE)
2199                                 free(s);
2200                         n = vp->var_text;
2201                         ash_msg_and_raise_error("%.*s: is read only", strchrnul(n, '=') - n, n);
2202                 }
2203
2204                 if (flags & VNOSET)
2205                         return;
2206
2207                 if (vp->var_func && !(flags & VNOFUNC))
2208                         vp->var_func(var_end(s));
2209
2210                 if (!(vp->flags & (VTEXTFIXED|VSTACK)))
2211                         free((char*)vp->var_text);
2212
2213                 flags |= vp->flags & ~(VTEXTFIXED|VSTACK|VNOSAVE|VUNSET);
2214         } else {
2215                 /* variable s is not found */
2216                 if (flags & VNOSET)
2217                         return;
2218                 vp = ckzalloc(sizeof(*vp));
2219                 vp->next = *vpp;
2220                 /*vp->func = NULL; - ckzalloc did it */
2221                 *vpp = vp;
2222         }
2223         if (!(flags & (VTEXTFIXED|VSTACK|VNOSAVE)))
2224                 s = ckstrdup(s);
2225         vp->var_text = s;
2226         vp->flags = flags;
2227 }
2228
2229 /*
2230  * Set the value of a variable.  The flags argument is ored with the
2231  * flags of the variable.  If val is NULL, the variable is unset.
2232  */
2233 static void
2234 setvar(const char *name, const char *val, int flags)
2235 {
2236         const char *q;
2237         char *p;
2238         char *nameeq;
2239         size_t namelen;
2240         size_t vallen;
2241
2242         q = endofname(name);
2243         p = strchrnul(q, '=');
2244         namelen = p - name;
2245         if (!namelen || p != q)
2246                 ash_msg_and_raise_error("%.*s: bad variable name", namelen, name);
2247         vallen = 0;
2248         if (val == NULL) {
2249                 flags |= VUNSET;
2250         } else {
2251                 vallen = strlen(val);
2252         }
2253
2254         INT_OFF;
2255         nameeq = ckmalloc(namelen + vallen + 2);
2256         p = memcpy(nameeq, name, namelen) + namelen;
2257         if (val) {
2258                 *p++ = '=';
2259                 p = memcpy(p, val, vallen) + vallen;
2260         }
2261         *p = '\0';
2262         setvareq(nameeq, flags | VNOSAVE);
2263         INT_ON;
2264 }
2265
2266 static void FAST_FUNC
2267 setvar0(const char *name, const char *val)
2268 {
2269         setvar(name, val, 0);
2270 }
2271
2272 #if ENABLE_ASH_GETOPTS
2273 /*
2274  * Safe version of setvar, returns 1 on success 0 on failure.
2275  */
2276 static int
2277 setvarsafe(const char *name, const char *val, int flags)
2278 {
2279         int err;
2280         volatile int saveint;
2281         struct jmploc *volatile savehandler = exception_handler;
2282         struct jmploc jmploc;
2283
2284         SAVE_INT(saveint);
2285         if (setjmp(jmploc.loc))
2286                 err = 1;
2287         else {
2288                 exception_handler = &jmploc;
2289                 setvar(name, val, flags);
2290                 err = 0;
2291         }
2292         exception_handler = savehandler;
2293         RESTORE_INT(saveint);
2294         return err;
2295 }
2296 #endif
2297
2298 /*
2299  * Unset the specified variable.
2300  */
2301 static int
2302 unsetvar(const char *s)
2303 {
2304         struct var **vpp;
2305         struct var *vp;
2306         int retval;
2307
2308         vpp = findvar(hashvar(s), s);
2309         vp = *vpp;
2310         retval = 2;
2311         if (vp) {
2312                 int flags = vp->flags;
2313
2314                 retval = 1;
2315                 if (flags & VREADONLY)
2316                         goto out;
2317 #if ENABLE_ASH_RANDOM_SUPPORT
2318                 vp->flags &= ~VDYNAMIC;
2319 #endif
2320                 if (flags & VUNSET)
2321                         goto ok;
2322                 if ((flags & VSTRFIXED) == 0) {
2323                         INT_OFF;
2324                         if ((flags & (VTEXTFIXED|VSTACK)) == 0)
2325                                 free((char*)vp->var_text);
2326                         *vpp = vp->next;
2327                         free(vp);
2328                         INT_ON;
2329                 } else {
2330                         setvar0(s, NULL);
2331                         vp->flags &= ~VEXPORT;
2332                 }
2333  ok:
2334                 retval = 0;
2335         }
2336  out:
2337         return retval;
2338 }
2339
2340 /*
2341  * Process a linked list of variable assignments.
2342  */
2343 static void
2344 listsetvar(struct strlist *list_set_var, int flags)
2345 {
2346         struct strlist *lp = list_set_var;
2347
2348         if (!lp)
2349                 return;
2350         INT_OFF;
2351         do {
2352                 setvareq(lp->text, flags);
2353                 lp = lp->next;
2354         } while (lp);
2355         INT_ON;
2356 }
2357
2358 /*
2359  * Generate a list of variables satisfying the given conditions.
2360  */
2361 static char **
2362 listvars(int on, int off, char ***end)
2363 {
2364         struct var **vpp;
2365         struct var *vp;
2366         char **ep;
2367         int mask;
2368
2369         STARTSTACKSTR(ep);
2370         vpp = vartab;
2371         mask = on | off;
2372         do {
2373                 for (vp = *vpp; vp; vp = vp->next) {
2374                         if ((vp->flags & mask) == on) {
2375                                 if (ep == stackstrend())
2376                                         ep = growstackstr();
2377                                 *ep++ = (char*)vp->var_text;
2378                         }
2379                 }
2380         } while (++vpp < vartab + VTABSIZE);
2381         if (ep == stackstrend())
2382                 ep = growstackstr();
2383         if (end)
2384                 *end = ep;
2385         *ep++ = NULL;
2386         return grabstackstr(ep);
2387 }
2388
2389
2390 /* ============ Path search helper
2391  *
2392  * The variable path (passed by reference) should be set to the start
2393  * of the path before the first call; path_advance will update
2394  * this value as it proceeds.  Successive calls to path_advance will return
2395  * the possible path expansions in sequence.  If an option (indicated by
2396  * a percent sign) appears in the path entry then the global variable
2397  * pathopt will be set to point to it; otherwise pathopt will be set to
2398  * NULL.
2399  */
2400 static const char *pathopt;     /* set by path_advance */
2401
2402 static char *
2403 path_advance(const char **path, const char *name)
2404 {
2405         const char *p;
2406         char *q;
2407         const char *start;
2408         size_t len;
2409
2410         if (*path == NULL)
2411                 return NULL;
2412         start = *path;
2413         for (p = start; *p && *p != ':' && *p != '%'; p++)
2414                 continue;
2415         len = p - start + strlen(name) + 2;     /* "2" is for '/' and '\0' */
2416         while (stackblocksize() < len)
2417                 growstackblock();
2418         q = stackblock();
2419         if (p != start) {
2420                 memcpy(q, start, p - start);
2421                 q += p - start;
2422                 *q++ = '/';
2423         }
2424         strcpy(q, name);
2425         pathopt = NULL;
2426         if (*p == '%') {
2427                 pathopt = ++p;
2428                 while (*p && *p != ':')
2429                         p++;
2430         }
2431         if (*p == ':')
2432                 *path = p + 1;
2433         else
2434                 *path = NULL;
2435         return stalloc(len);
2436 }
2437
2438
2439 /* ============ Prompt */
2440
2441 static smallint doprompt;                   /* if set, prompt the user */
2442 static smallint needprompt;                 /* true if interactive and at start of line */
2443
2444 #if ENABLE_FEATURE_EDITING
2445 static line_input_t *line_input_state;
2446 static const char *cmdedit_prompt;
2447 static void
2448 putprompt(const char *s)
2449 {
2450         if (ENABLE_ASH_EXPAND_PRMT) {
2451                 free((char*)cmdedit_prompt);
2452                 cmdedit_prompt = ckstrdup(s);
2453                 return;
2454         }
2455         cmdedit_prompt = s;
2456 }
2457 #else
2458 static void
2459 putprompt(const char *s)
2460 {
2461         out2str(s);
2462 }
2463 #endif
2464
2465 #if ENABLE_ASH_EXPAND_PRMT
2466 /* expandstr() needs parsing machinery, so it is far away ahead... */
2467 static const char *expandstr(const char *ps);
2468 #else
2469 #define expandstr(s) s
2470 #endif
2471
2472 static void
2473 setprompt_if(smallint do_set, int whichprompt)
2474 {
2475         const char *prompt;
2476         IF_ASH_EXPAND_PRMT(struct stackmark smark;)
2477
2478         if (!do_set)
2479                 return;
2480
2481         needprompt = 0;
2482
2483         switch (whichprompt) {
2484         case 1:
2485                 prompt = ps1val();
2486                 break;
2487         case 2:
2488                 prompt = ps2val();
2489                 break;
2490         default:                        /* 0 */
2491                 prompt = nullstr;
2492         }
2493 #if ENABLE_ASH_EXPAND_PRMT
2494         pushstackmark(&smark, stackblocksize());
2495 #endif
2496         putprompt(expandstr(prompt));
2497 #if ENABLE_ASH_EXPAND_PRMT
2498         popstackmark(&smark);
2499 #endif
2500 }
2501
2502
2503 /* ============ The cd and pwd commands */
2504
2505 #define CD_PHYSICAL 1
2506 #define CD_PRINT 2
2507
2508 static int
2509 cdopt(void)
2510 {
2511         int flags = 0;
2512         int i, j;
2513
2514         j = 'L';
2515         while ((i = nextopt("LP")) != '\0') {
2516                 if (i != j) {
2517                         flags ^= CD_PHYSICAL;
2518                         j = i;
2519                 }
2520         }
2521
2522         return flags;
2523 }
2524
2525 /*
2526  * Update curdir (the name of the current directory) in response to a
2527  * cd command.
2528  */
2529 static const char *
2530 updatepwd(const char *dir)
2531 {
2532         char *new;
2533         char *p;
2534         char *cdcomppath;
2535         const char *lim;
2536
2537         cdcomppath = sstrdup(dir);
2538         STARTSTACKSTR(new);
2539         if (*dir != '/') {
2540                 if (curdir == nullstr)
2541                         return 0;
2542                 new = stack_putstr(curdir, new);
2543         }
2544         new = makestrspace(strlen(dir) + 2, new);
2545         lim = (char *)stackblock() + 1;
2546         if (*dir != '/') {
2547                 if (new[-1] != '/')
2548                         USTPUTC('/', new);
2549                 if (new > lim && *lim == '/')
2550                         lim++;
2551         } else {
2552                 USTPUTC('/', new);
2553                 cdcomppath++;
2554                 if (dir[1] == '/' && dir[2] != '/') {
2555                         USTPUTC('/', new);
2556                         cdcomppath++;
2557                         lim++;
2558                 }
2559         }
2560         p = strtok(cdcomppath, "/");
2561         while (p) {
2562                 switch (*p) {
2563                 case '.':
2564                         if (p[1] == '.' && p[2] == '\0') {
2565                                 while (new > lim) {
2566                                         STUNPUTC(new);
2567                                         if (new[-1] == '/')
2568                                                 break;
2569                                 }
2570                                 break;
2571                         }
2572                         if (p[1] == '\0')
2573                                 break;
2574                         /* fall through */
2575                 default:
2576                         new = stack_putstr(p, new);
2577                         USTPUTC('/', new);
2578                 }
2579                 p = strtok(NULL, "/");
2580         }
2581         if (new > lim)
2582                 STUNPUTC(new);
2583         *new = 0;
2584         return stackblock();
2585 }
2586
2587 /*
2588  * Find out what the current directory is. If we already know the current
2589  * directory, this routine returns immediately.
2590  */
2591 static char *
2592 getpwd(void)
2593 {
2594         char *dir = getcwd(NULL, 0); /* huh, using glibc extension? */
2595         return dir ? dir : nullstr;
2596 }
2597
2598 static void
2599 setpwd(const char *val, int setold)
2600 {
2601         char *oldcur, *dir;
2602
2603         oldcur = dir = curdir;
2604
2605         if (setold) {
2606                 setvar("OLDPWD", oldcur, VEXPORT);
2607         }
2608         INT_OFF;
2609         if (physdir != nullstr) {
2610                 if (physdir != oldcur)
2611                         free(physdir);
2612                 physdir = nullstr;
2613         }
2614         if (oldcur == val || !val) {
2615                 char *s = getpwd();
2616                 physdir = s;
2617                 if (!val)
2618                         dir = s;
2619         } else
2620                 dir = ckstrdup(val);
2621         if (oldcur != dir && oldcur != nullstr) {
2622                 free(oldcur);
2623         }
2624         curdir = dir;
2625         INT_ON;
2626         setvar("PWD", dir, VEXPORT);
2627 }
2628
2629 static void hashcd(void);
2630
2631 /*
2632  * Actually do the chdir.  We also call hashcd to let the routines in exec.c
2633  * know that the current directory has changed.
2634  */
2635 static int
2636 docd(const char *dest, int flags)
2637 {
2638         const char *dir = NULL;
2639         int err;
2640
2641         TRACE(("docd(\"%s\", %d) called\n", dest, flags));
2642
2643         INT_OFF;
2644         if (!(flags & CD_PHYSICAL)) {
2645                 dir = updatepwd(dest);
2646                 if (dir)
2647                         dest = dir;
2648         }
2649         err = chdir(dest);
2650         if (err)
2651                 goto out;
2652         setpwd(dir, 1);
2653         hashcd();
2654  out:
2655         INT_ON;
2656         return err;
2657 }
2658
2659 static int FAST_FUNC
2660 cdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
2661 {
2662         const char *dest;
2663         const char *path;
2664         const char *p;
2665         char c;
2666         struct stat statb;
2667         int flags;
2668
2669         flags = cdopt();
2670         dest = *argptr;
2671         if (!dest)
2672                 dest = bltinlookup("HOME");
2673         else if (LONE_DASH(dest)) {
2674                 dest = bltinlookup("OLDPWD");
2675                 flags |= CD_PRINT;
2676         }
2677         if (!dest)
2678                 dest = nullstr;
2679         if (*dest == '/')
2680                 goto step7;
2681         if (*dest == '.') {
2682                 c = dest[1];
2683  dotdot:
2684                 switch (c) {
2685                 case '\0':
2686                 case '/':
2687                         goto step6;
2688                 case '.':
2689                         c = dest[2];
2690                         if (c != '.')
2691                                 goto dotdot;
2692                 }
2693         }
2694         if (!*dest)
2695                 dest = ".";
2696         path = bltinlookup("CDPATH");
2697         if (!path) {
2698  step6:
2699  step7:
2700                 p = dest;
2701                 goto docd;
2702         }
2703         do {
2704                 c = *path;
2705                 p = path_advance(&path, dest);
2706                 if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) {
2707                         if (c && c != ':')
2708                                 flags |= CD_PRINT;
2709  docd:
2710                         if (!docd(p, flags))
2711                                 goto out;
2712                         break;
2713                 }
2714         } while (path);
2715         ash_msg_and_raise_error("can't cd to %s", dest);
2716         /* NOTREACHED */
2717  out:
2718         if (flags & CD_PRINT)
2719                 out1fmt("%s\n", curdir);
2720         return 0;
2721 }
2722
2723 static int FAST_FUNC
2724 pwdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
2725 {
2726         int flags;
2727         const char *dir = curdir;
2728
2729         flags = cdopt();
2730         if (flags) {
2731                 if (physdir == nullstr)
2732                         setpwd(dir, 0);
2733                 dir = physdir;
2734         }
2735         out1fmt("%s\n", dir);
2736         return 0;
2737 }
2738
2739
2740 /* ============ ... */
2741
2742
2743 #define IBUFSIZ (ENABLE_FEATURE_EDITING ? CONFIG_FEATURE_EDITING_MAX_LEN : 1024)
2744
2745 /* Syntax classes */
2746 #define CWORD     0             /* character is nothing special */
2747 #define CNL       1             /* newline character */
2748 #define CBACK     2             /* a backslash character */
2749 #define CSQUOTE   3             /* single quote */
2750 #define CDQUOTE   4             /* double quote */
2751 #define CENDQUOTE 5             /* a terminating quote */
2752 #define CBQUOTE   6             /* backwards single quote */
2753 #define CVAR      7             /* a dollar sign */
2754 #define CENDVAR   8             /* a '}' character */
2755 #define CLP       9             /* a left paren in arithmetic */
2756 #define CRP      10             /* a right paren in arithmetic */
2757 #define CENDFILE 11             /* end of file */
2758 #define CCTL     12             /* like CWORD, except it must be escaped */
2759 #define CSPCL    13             /* these terminate a word */
2760 #define CIGN     14             /* character should be ignored */
2761
2762 #define PEOF     256
2763 #if ENABLE_ASH_ALIAS
2764 # define PEOA    257
2765 #endif
2766
2767 #define USE_SIT_FUNCTION ENABLE_ASH_OPTIMIZE_FOR_SIZE
2768
2769 #if ENABLE_SH_MATH_SUPPORT
2770 # define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8) | (d << 12))
2771 #else
2772 # define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8))
2773 #endif
2774 static const uint16_t S_I_T[] ALIGN2 = {
2775 #if ENABLE_ASH_ALIAS
2776         SIT_ITEM(CSPCL   , CIGN     , CIGN , CIGN   ),    /* 0, PEOA */
2777 #endif
2778         SIT_ITEM(CSPCL   , CWORD    , CWORD, CWORD  ),    /* 1, ' ' */
2779         SIT_ITEM(CNL     , CNL      , CNL  , CNL    ),    /* 2, \n */
2780         SIT_ITEM(CWORD   , CCTL     , CCTL , CWORD  ),    /* 3, !*-/:=?[]~ */
2781         SIT_ITEM(CDQUOTE , CENDQUOTE, CWORD, CWORD  ),    /* 4, '"' */
2782         SIT_ITEM(CVAR    , CVAR     , CWORD, CVAR   ),    /* 5, $ */
2783         SIT_ITEM(CSQUOTE , CWORD    , CENDQUOTE, CWORD),  /* 6, "'" */
2784         SIT_ITEM(CSPCL   , CWORD    , CWORD, CLP    ),    /* 7, ( */
2785         SIT_ITEM(CSPCL   , CWORD    , CWORD, CRP    ),    /* 8, ) */
2786         SIT_ITEM(CBACK   , CBACK    , CCTL , CBACK  ),    /* 9, \ */
2787         SIT_ITEM(CBQUOTE , CBQUOTE  , CWORD, CBQUOTE),    /* 10, ` */
2788         SIT_ITEM(CENDVAR , CENDVAR  , CWORD, CENDVAR),    /* 11, } */
2789 #if !USE_SIT_FUNCTION
2790         SIT_ITEM(CENDFILE, CENDFILE , CENDFILE, CENDFILE),/* 12, PEOF */
2791         SIT_ITEM(CWORD   , CWORD    , CWORD, CWORD  ),    /* 13, 0-9A-Za-z */
2792         SIT_ITEM(CCTL    , CCTL     , CCTL , CCTL   )     /* 14, CTLESC ... */
2793 #endif
2794 #undef SIT_ITEM
2795 };
2796 /* Constants below must match table above */
2797 enum {
2798 #if ENABLE_ASH_ALIAS
2799         CSPCL_CIGN_CIGN_CIGN               , /*  0 */
2800 #endif
2801         CSPCL_CWORD_CWORD_CWORD            , /*  1 */
2802         CNL_CNL_CNL_CNL                    , /*  2 */
2803         CWORD_CCTL_CCTL_CWORD              , /*  3 */
2804         CDQUOTE_CENDQUOTE_CWORD_CWORD      , /*  4 */
2805         CVAR_CVAR_CWORD_CVAR               , /*  5 */
2806         CSQUOTE_CWORD_CENDQUOTE_CWORD      , /*  6 */
2807         CSPCL_CWORD_CWORD_CLP              , /*  7 */
2808         CSPCL_CWORD_CWORD_CRP              , /*  8 */
2809         CBACK_CBACK_CCTL_CBACK             , /*  9 */
2810         CBQUOTE_CBQUOTE_CWORD_CBQUOTE      , /* 10 */
2811         CENDVAR_CENDVAR_CWORD_CENDVAR      , /* 11 */
2812         CENDFILE_CENDFILE_CENDFILE_CENDFILE, /* 12 */
2813         CWORD_CWORD_CWORD_CWORD            , /* 13 */
2814         CCTL_CCTL_CCTL_CCTL                , /* 14 */
2815 };
2816
2817 /* c in SIT(c, syntax) must be an *unsigned char* or PEOA or PEOF,
2818  * caller must ensure proper cast on it if c is *char_ptr!
2819  */
2820 /* Values for syntax param */
2821 #define BASESYNTAX 0    /* not in quotes */
2822 #define DQSYNTAX   1    /* in double quotes */
2823 #define SQSYNTAX   2    /* in single quotes */
2824 #define ARISYNTAX  3    /* in arithmetic */
2825 #define PSSYNTAX   4    /* prompt. never passed to SIT() */
2826
2827 #if USE_SIT_FUNCTION
2828
2829 static int
2830 SIT(int c, int syntax)
2831 {
2832         /* Used to also have '/' in this string: "\t\n !\"$&'()*-/:;<=>?[\\]`|}~" */
2833         static const char spec_symbls[] ALIGN1 = "\t\n !\"$&'()*-:;<=>?[\\]`|}~";
2834         /*
2835          * This causes '/' to be prepended with CTLESC in dquoted string,
2836          * making "./file"* treated incorrectly because we feed
2837          * ".\/file*" string to glob(), confusing it (see expandmeta func).
2838          * The "homegrown" glob implementation is okay with that,
2839          * but glibc one isn't. With '/' always treated as CWORD,
2840          * both work fine.
2841          */
2842 # if ENABLE_ASH_ALIAS
2843         static const uint8_t syntax_index_table[] ALIGN1 = {
2844                 1, 2, 1, 3, 4, 5, 1, 6,         /* "\t\n !\"$&'" */
2845                 7, 8, 3, 3,/*3,*/3, 1, 1,       /* "()*-/:;<" */
2846                 3, 1, 3, 3, 9, 3, 10, 1,        /* "=>?[\\]`|" */
2847                 11, 3                           /* "}~" */
2848         };
2849 # else
2850         static const uint8_t syntax_index_table[] ALIGN1 = {
2851                 0, 1, 0, 2, 3, 4, 0, 5,         /* "\t\n !\"$&'" */
2852                 6, 7, 2, 2,/*2,*/2, 0, 0,       /* "()*-/:;<" */
2853                 2, 0, 2, 2, 8, 2, 9, 0,         /* "=>?[\\]`|" */
2854                 10, 2                           /* "}~" */
2855         };
2856 # endif
2857         const char *s;
2858         int indx;
2859
2860         if (c == PEOF)
2861                 return CENDFILE;
2862 # if ENABLE_ASH_ALIAS
2863         if (c == PEOA)
2864                 indx = 0;
2865         else
2866 # endif
2867         {
2868                 /* Cast is purely for paranoia here,
2869                  * just in case someone passed signed char to us */
2870                 if ((unsigned char)c >= CTL_FIRST
2871                  && (unsigned char)c <= CTL_LAST
2872                 ) {
2873                         return CCTL;
2874                 }
2875                 s = strchrnul(spec_symbls, c);
2876                 if (*s == '\0')
2877                         return CWORD;
2878                 indx = syntax_index_table[s - spec_symbls];
2879         }
2880         return (S_I_T[indx] >> (syntax*4)) & 0xf;
2881 }
2882
2883 #else   /* !USE_SIT_FUNCTION */
2884
2885 static const uint8_t syntax_index_table[] ALIGN1 = {
2886         /* BASESYNTAX_DQSYNTAX_SQSYNTAX_ARISYNTAX */
2887         /*   0      */ CWORD_CWORD_CWORD_CWORD,
2888         /*   1      */ CWORD_CWORD_CWORD_CWORD,
2889         /*   2      */ CWORD_CWORD_CWORD_CWORD,
2890         /*   3      */ CWORD_CWORD_CWORD_CWORD,
2891         /*   4      */ CWORD_CWORD_CWORD_CWORD,
2892         /*   5      */ CWORD_CWORD_CWORD_CWORD,
2893         /*   6      */ CWORD_CWORD_CWORD_CWORD,
2894         /*   7      */ CWORD_CWORD_CWORD_CWORD,
2895         /*   8      */ CWORD_CWORD_CWORD_CWORD,
2896         /*   9 "\t" */ CSPCL_CWORD_CWORD_CWORD,
2897         /*  10 "\n" */ CNL_CNL_CNL_CNL,
2898         /*  11      */ CWORD_CWORD_CWORD_CWORD,
2899         /*  12      */ CWORD_CWORD_CWORD_CWORD,
2900         /*  13      */ CWORD_CWORD_CWORD_CWORD,
2901         /*  14      */ CWORD_CWORD_CWORD_CWORD,
2902         /*  15      */ CWORD_CWORD_CWORD_CWORD,
2903         /*  16      */ CWORD_CWORD_CWORD_CWORD,
2904         /*  17      */ CWORD_CWORD_CWORD_CWORD,
2905         /*  18      */ CWORD_CWORD_CWORD_CWORD,
2906         /*  19      */ CWORD_CWORD_CWORD_CWORD,
2907         /*  20      */ CWORD_CWORD_CWORD_CWORD,
2908         /*  21      */ CWORD_CWORD_CWORD_CWORD,
2909         /*  22      */ CWORD_CWORD_CWORD_CWORD,
2910         /*  23      */ CWORD_CWORD_CWORD_CWORD,
2911         /*  24      */ CWORD_CWORD_CWORD_CWORD,
2912         /*  25      */ CWORD_CWORD_CWORD_CWORD,
2913         /*  26      */ CWORD_CWORD_CWORD_CWORD,
2914         /*  27      */ CWORD_CWORD_CWORD_CWORD,
2915         /*  28      */ CWORD_CWORD_CWORD_CWORD,
2916         /*  29      */ CWORD_CWORD_CWORD_CWORD,
2917         /*  30      */ CWORD_CWORD_CWORD_CWORD,
2918         /*  31      */ CWORD_CWORD_CWORD_CWORD,
2919         /*  32  " " */ CSPCL_CWORD_CWORD_CWORD,
2920         /*  33  "!" */ CWORD_CCTL_CCTL_CWORD,
2921         /*  34  """ */ CDQUOTE_CENDQUOTE_CWORD_CWORD,
2922         /*  35  "#" */ CWORD_CWORD_CWORD_CWORD,
2923         /*  36  "$" */ CVAR_CVAR_CWORD_CVAR,
2924         /*  37  "%" */ CWORD_CWORD_CWORD_CWORD,
2925         /*  38  "&" */ CSPCL_CWORD_CWORD_CWORD,
2926         /*  39  "'" */ CSQUOTE_CWORD_CENDQUOTE_CWORD,
2927         /*  40  "(" */ CSPCL_CWORD_CWORD_CLP,
2928         /*  41  ")" */ CSPCL_CWORD_CWORD_CRP,
2929         /*  42  "*" */ CWORD_CCTL_CCTL_CWORD,
2930         /*  43  "+" */ CWORD_CWORD_CWORD_CWORD,
2931         /*  44  "," */ CWORD_CWORD_CWORD_CWORD,
2932         /*  45  "-" */ CWORD_CCTL_CCTL_CWORD,
2933         /*  46  "." */ CWORD_CWORD_CWORD_CWORD,
2934 /* "/" was CWORD_CCTL_CCTL_CWORD, see comment in SIT() function why this is changed: */
2935         /*  47  "/" */ CWORD_CWORD_CWORD_CWORD,
2936         /*  48  "0" */ CWORD_CWORD_CWORD_CWORD,
2937         /*  49  "1" */ CWORD_CWORD_CWORD_CWORD,
2938         /*  50  "2" */ CWORD_CWORD_CWORD_CWORD,
2939         /*  51  "3" */ CWORD_CWORD_CWORD_CWORD,
2940         /*  52  "4" */ CWORD_CWORD_CWORD_CWORD,
2941         /*  53  "5" */ CWORD_CWORD_CWORD_CWORD,
2942         /*  54  "6" */ CWORD_CWORD_CWORD_CWORD,
2943         /*  55  "7" */ CWORD_CWORD_CWORD_CWORD,
2944         /*  56  "8" */ CWORD_CWORD_CWORD_CWORD,
2945         /*  57  "9" */ CWORD_CWORD_CWORD_CWORD,
2946         /*  58  ":" */ CWORD_CCTL_CCTL_CWORD,
2947         /*  59  ";" */ CSPCL_CWORD_CWORD_CWORD,
2948         /*  60  "<" */ CSPCL_CWORD_CWORD_CWORD,
2949         /*  61  "=" */ CWORD_CCTL_CCTL_CWORD,
2950         /*  62  ">" */ CSPCL_CWORD_CWORD_CWORD,
2951         /*  63  "?" */ CWORD_CCTL_CCTL_CWORD,
2952         /*  64  "@" */ CWORD_CWORD_CWORD_CWORD,
2953         /*  65  "A" */ CWORD_CWORD_CWORD_CWORD,
2954         /*  66  "B" */ CWORD_CWORD_CWORD_CWORD,
2955         /*  67  "C" */ CWORD_CWORD_CWORD_CWORD,
2956         /*  68  "D" */ CWORD_CWORD_CWORD_CWORD,
2957         /*  69  "E" */ CWORD_CWORD_CWORD_CWORD,
2958         /*  70  "F" */ CWORD_CWORD_CWORD_CWORD,
2959         /*  71  "G" */ CWORD_CWORD_CWORD_CWORD,
2960         /*  72  "H" */ CWORD_CWORD_CWORD_CWORD,
2961         /*  73  "I" */ CWORD_CWORD_CWORD_CWORD,
2962         /*  74  "J" */ CWORD_CWORD_CWORD_CWORD,
2963         /*  75  "K" */ CWORD_CWORD_CWORD_CWORD,
2964         /*  76  "L" */ CWORD_CWORD_CWORD_CWORD,
2965         /*  77  "M" */ CWORD_CWORD_CWORD_CWORD,
2966         /*  78  "N" */ CWORD_CWORD_CWORD_CWORD,
2967         /*  79  "O" */ CWORD_CWORD_CWORD_CWORD,
2968         /*  80  "P" */ CWORD_CWORD_CWORD_CWORD,
2969         /*  81  "Q" */ CWORD_CWORD_CWORD_CWORD,
2970         /*  82  "R" */ CWORD_CWORD_CWORD_CWORD,
2971         /*  83  "S" */ CWORD_CWORD_CWORD_CWORD,
2972         /*  84  "T" */ CWORD_CWORD_CWORD_CWORD,
2973         /*  85  "U" */ CWORD_CWORD_CWORD_CWORD,
2974         /*  86  "V" */ CWORD_CWORD_CWORD_CWORD,
2975         /*  87  "W" */ CWORD_CWORD_CWORD_CWORD,
2976         /*  88  "X" */ CWORD_CWORD_CWORD_CWORD,
2977         /*  89  "Y" */ CWORD_CWORD_CWORD_CWORD,
2978         /*  90  "Z" */ CWORD_CWORD_CWORD_CWORD,
2979         /*  91  "[" */ CWORD_CCTL_CCTL_CWORD,
2980         /*  92  "\" */ CBACK_CBACK_CCTL_CBACK,
2981         /*  93  "]" */ CWORD_CCTL_CCTL_CWORD,
2982         /*  94  "^" */ CWORD_CWORD_CWORD_CWORD,
2983         /*  95  "_" */ CWORD_CWORD_CWORD_CWORD,
2984         /*  96  "`" */ CBQUOTE_CBQUOTE_CWORD_CBQUOTE,
2985         /*  97  "a" */ CWORD_CWORD_CWORD_CWORD,
2986         /*  98  "b" */ CWORD_CWORD_CWORD_CWORD,
2987         /*  99  "c" */ CWORD_CWORD_CWORD_CWORD,
2988         /* 100  "d" */ CWORD_CWORD_CWORD_CWORD,
2989         /* 101  "e" */ CWORD_CWORD_CWORD_CWORD,
2990         /* 102  "f" */ CWORD_CWORD_CWORD_CWORD,
2991         /* 103  "g" */ CWORD_CWORD_CWORD_CWORD,
2992         /* 104  "h" */ CWORD_CWORD_CWORD_CWORD,
2993         /* 105  "i" */ CWORD_CWORD_CWORD_CWORD,
2994         /* 106  "j" */ CWORD_CWORD_CWORD_CWORD,
2995         /* 107  "k" */ CWORD_CWORD_CWORD_CWORD,
2996         /* 108  "l" */ CWORD_CWORD_CWORD_CWORD,
2997         /* 109  "m" */ CWORD_CWORD_CWORD_CWORD,
2998         /* 110  "n" */ CWORD_CWORD_CWORD_CWORD,
2999         /* 111  "o" */ CWORD_CWORD_CWORD_CWORD,
3000         /* 112  "p" */ CWORD_CWORD_CWORD_CWORD,
3001         /* 113  "q" */ CWORD_CWORD_CWORD_CWORD,
3002         /* 114  "r" */ CWORD_CWORD_CWORD_CWORD,
3003         /* 115  "s" */ CWORD_CWORD_CWORD_CWORD,
3004         /* 116  "t" */ CWORD_CWORD_CWORD_CWORD,
3005         /* 117  "u" */ CWORD_CWORD_CWORD_CWORD,
3006         /* 118  "v" */ CWORD_CWORD_CWORD_CWORD,
3007         /* 119  "w" */ CWORD_CWORD_CWORD_CWORD,
3008         /* 120  "x" */ CWORD_CWORD_CWORD_CWORD,
3009         /* 121  "y" */ CWORD_CWORD_CWORD_CWORD,
3010         /* 122  "z" */ CWORD_CWORD_CWORD_CWORD,
3011         /* 123  "{" */ CWORD_CWORD_CWORD_CWORD,
3012         /* 124  "|" */ CSPCL_CWORD_CWORD_CWORD,
3013         /* 125  "}" */ CENDVAR_CENDVAR_CWORD_CENDVAR,
3014         /* 126  "~" */ CWORD_CCTL_CCTL_CWORD,
3015         /* 127  del */ CWORD_CWORD_CWORD_CWORD,
3016         /* 128 0x80 */ CWORD_CWORD_CWORD_CWORD,
3017         /* 129 CTLESC       */ CCTL_CCTL_CCTL_CCTL,
3018         /* 130 CTLVAR       */ CCTL_CCTL_CCTL_CCTL,
3019         /* 131 CTLENDVAR    */ CCTL_CCTL_CCTL_CCTL,
3020         /* 132 CTLBACKQ     */ CCTL_CCTL_CCTL_CCTL,
3021         /* 133 CTLQUOTE     */ CCTL_CCTL_CCTL_CCTL,
3022         /* 134 CTLARI       */ CCTL_CCTL_CCTL_CCTL,
3023         /* 135 CTLENDARI    */ CCTL_CCTL_CCTL_CCTL,
3024         /* 136 CTLQUOTEMARK */ CCTL_CCTL_CCTL_CCTL,
3025         /* 137      */ CWORD_CWORD_CWORD_CWORD,
3026         /* 138      */ CWORD_CWORD_CWORD_CWORD,
3027         /* 139      */ CWORD_CWORD_CWORD_CWORD,
3028         /* 140      */ CWORD_CWORD_CWORD_CWORD,
3029         /* 141      */ CWORD_CWORD_CWORD_CWORD,
3030         /* 142      */ CWORD_CWORD_CWORD_CWORD,
3031         /* 143      */ CWORD_CWORD_CWORD_CWORD,
3032         /* 144      */ CWORD_CWORD_CWORD_CWORD,
3033         /* 145      */ CWORD_CWORD_CWORD_CWORD,
3034         /* 146      */ CWORD_CWORD_CWORD_CWORD,
3035         /* 147      */ CWORD_CWORD_CWORD_CWORD,
3036         /* 148      */ CWORD_CWORD_CWORD_CWORD,
3037         /* 149      */ CWORD_CWORD_CWORD_CWORD,
3038         /* 150      */ CWORD_CWORD_CWORD_CWORD,
3039         /* 151      */ CWORD_CWORD_CWORD_CWORD,
3040         /* 152      */ CWORD_CWORD_CWORD_CWORD,
3041         /* 153      */ CWORD_CWORD_CWORD_CWORD,
3042         /* 154      */ CWORD_CWORD_CWORD_CWORD,
3043         /* 155      */ CWORD_CWORD_CWORD_CWORD,
3044         /* 156      */ CWORD_CWORD_CWORD_CWORD,
3045         /* 157      */ CWORD_CWORD_CWORD_CWORD,
3046         /* 158      */ CWORD_CWORD_CWORD_CWORD,
3047         /* 159      */ CWORD_CWORD_CWORD_CWORD,
3048         /* 160      */ CWORD_CWORD_CWORD_CWORD,
3049         /* 161      */ CWORD_CWORD_CWORD_CWORD,
3050         /* 162      */ CWORD_CWORD_CWORD_CWORD,
3051         /* 163      */ CWORD_CWORD_CWORD_CWORD,
3052         /* 164      */ CWORD_CWORD_CWORD_CWORD,
3053         /* 165      */ CWORD_CWORD_CWORD_CWORD,
3054         /* 166      */ CWORD_CWORD_CWORD_CWORD,
3055         /* 167      */ CWORD_CWORD_CWORD_CWORD,
3056         /* 168      */ CWORD_CWORD_CWORD_CWORD,
3057         /* 169      */ CWORD_CWORD_CWORD_CWORD,
3058         /* 170      */ CWORD_CWORD_CWORD_CWORD,
3059         /* 171      */ CWORD_CWORD_CWORD_CWORD,
3060         /* 172      */ CWORD_CWORD_CWORD_CWORD,
3061         /* 173      */ CWORD_CWORD_CWORD_CWORD,
3062         /* 174      */ CWORD_CWORD_CWORD_CWORD,
3063         /* 175      */ CWORD_CWORD_CWORD_CWORD,
3064         /* 176      */ CWORD_CWORD_CWORD_CWORD,
3065         /* 177      */ CWORD_CWORD_CWORD_CWORD,
3066         /* 178      */ CWORD_CWORD_CWORD_CWORD,
3067         /* 179      */ CWORD_CWORD_CWORD_CWORD,
3068         /* 180      */ CWORD_CWORD_CWORD_CWORD,
3069         /* 181      */ CWORD_CWORD_CWORD_CWORD,
3070         /* 182      */ CWORD_CWORD_CWORD_CWORD,
3071         /* 183      */ CWORD_CWORD_CWORD_CWORD,
3072         /* 184      */ CWORD_CWORD_CWORD_CWORD,
3073         /* 185      */ CWORD_CWORD_CWORD_CWORD,
3074         /* 186      */ CWORD_CWORD_CWORD_CWORD,
3075         /* 187      */ CWORD_CWORD_CWORD_CWORD,
3076         /* 188      */ CWORD_CWORD_CWORD_CWORD,
3077         /* 189      */ CWORD_CWORD_CWORD_CWORD,
3078         /* 190      */ CWORD_CWORD_CWORD_CWORD,
3079         /* 191      */ CWORD_CWORD_CWORD_CWORD,
3080         /* 192      */ CWORD_CWORD_CWORD_CWORD,
3081         /* 193      */ CWORD_CWORD_CWORD_CWORD,
3082         /* 194      */ CWORD_CWORD_CWORD_CWORD,
3083         /* 195      */ CWORD_CWORD_CWORD_CWORD,
3084         /* 196      */ CWORD_CWORD_CWORD_CWORD,
3085         /* 197      */ CWORD_CWORD_CWORD_CWORD,
3086         /* 198      */ CWORD_CWORD_CWORD_CWORD,
3087         /* 199      */ CWORD_CWORD_CWORD_CWORD,
3088         /* 200      */ CWORD_CWORD_CWORD_CWORD,
3089         /* 201      */ CWORD_CWORD_CWORD_CWORD,
3090         /* 202      */ CWORD_CWORD_CWORD_CWORD,
3091         /* 203      */ CWORD_CWORD_CWORD_CWORD,
3092         /* 204      */ CWORD_CWORD_CWORD_CWORD,
3093         /* 205      */ CWORD_CWORD_CWORD_CWORD,
3094         /* 206      */ CWORD_CWORD_CWORD_CWORD,
3095         /* 207      */ CWORD_CWORD_CWORD_CWORD,
3096         /* 208      */ CWORD_CWORD_CWORD_CWORD,
3097         /* 209      */ CWORD_CWORD_CWORD_CWORD,
3098         /* 210      */ CWORD_CWORD_CWORD_CWORD,
3099         /* 211      */ CWORD_CWORD_CWORD_CWORD,
3100         /* 212      */ CWORD_CWORD_CWORD_CWORD,
3101         /* 213      */ CWORD_CWORD_CWORD_CWORD,
3102         /* 214      */ CWORD_CWORD_CWORD_CWORD,
3103         /* 215      */ CWORD_CWORD_CWORD_CWORD,
3104         /* 216      */ CWORD_CWORD_CWORD_CWORD,
3105         /* 217      */ CWORD_CWORD_CWORD_CWORD,
3106         /* 218      */ CWORD_CWORD_CWORD_CWORD,
3107         /* 219      */ CWORD_CWORD_CWORD_CWORD,
3108         /* 220      */ CWORD_CWORD_CWORD_CWORD,
3109         /* 221      */ CWORD_CWORD_CWORD_CWORD,
3110         /* 222      */ CWORD_CWORD_CWORD_CWORD,
3111         /* 223      */ CWORD_CWORD_CWORD_CWORD,
3112         /* 224      */ CWORD_CWORD_CWORD_CWORD,
3113         /* 225      */ CWORD_CWORD_CWORD_CWORD,
3114         /* 226      */ CWORD_CWORD_CWORD_CWORD,
3115         /* 227      */ CWORD_CWORD_CWORD_CWORD,
3116         /* 228      */ CWORD_CWORD_CWORD_CWORD,
3117         /* 229      */ CWORD_CWORD_CWORD_CWORD,
3118         /* 230      */ CWORD_CWORD_CWORD_CWORD,
3119         /* 231      */ CWORD_CWORD_CWORD_CWORD,
3120         /* 232      */ CWORD_CWORD_CWORD_CWORD,
3121         /* 233      */ CWORD_CWORD_CWORD_CWORD,
3122         /* 234      */ CWORD_CWORD_CWORD_CWORD,
3123         /* 235      */ CWORD_CWORD_CWORD_CWORD,
3124         /* 236      */ CWORD_CWORD_CWORD_CWORD,
3125         /* 237      */ CWORD_CWORD_CWORD_CWORD,
3126         /* 238      */ CWORD_CWORD_CWORD_CWORD,
3127         /* 239      */ CWORD_CWORD_CWORD_CWORD,
3128         /* 230      */ CWORD_CWORD_CWORD_CWORD,
3129         /* 241      */ CWORD_CWORD_CWORD_CWORD,
3130         /* 242      */ CWORD_CWORD_CWORD_CWORD,
3131         /* 243      */ CWORD_CWORD_CWORD_CWORD,
3132         /* 244      */ CWORD_CWORD_CWORD_CWORD,
3133         /* 245      */ CWORD_CWORD_CWORD_CWORD,
3134         /* 246      */ CWORD_CWORD_CWORD_CWORD,
3135         /* 247      */ CWORD_CWORD_CWORD_CWORD,
3136         /* 248      */ CWORD_CWORD_CWORD_CWORD,
3137         /* 249      */ CWORD_CWORD_CWORD_CWORD,
3138         /* 250      */ CWORD_CWORD_CWORD_CWORD,
3139         /* 251      */ CWORD_CWORD_CWORD_CWORD,
3140         /* 252      */ CWORD_CWORD_CWORD_CWORD,
3141         /* 253      */ CWORD_CWORD_CWORD_CWORD,
3142         /* 254      */ CWORD_CWORD_CWORD_CWORD,
3143         /* 255      */ CWORD_CWORD_CWORD_CWORD,
3144         /* PEOF */     CENDFILE_CENDFILE_CENDFILE_CENDFILE,
3145 # if ENABLE_ASH_ALIAS
3146         /* PEOA */     CSPCL_CIGN_CIGN_CIGN,
3147 # endif
3148 };
3149
3150 # define SIT(c, syntax) ((S_I_T[syntax_index_table[c]] >> ((syntax)*4)) & 0xf)
3151
3152 #endif  /* !USE_SIT_FUNCTION */
3153
3154
3155 /* ============ Alias handling */
3156
3157 #if ENABLE_ASH_ALIAS
3158
3159 #define ALIASINUSE 1
3160 #define ALIASDEAD  2
3161
3162 struct alias {
3163         struct alias *next;
3164         char *name;
3165         char *val;
3166         int flag;
3167 };
3168
3169
3170 static struct alias **atab; // [ATABSIZE];
3171 #define INIT_G_alias() do { \
3172         atab = xzalloc(ATABSIZE * sizeof(atab[0])); \
3173 } while (0)
3174
3175
3176 static struct alias **
3177 __lookupalias(const char *name)
3178 {
3179         unsigned int hashval;
3180         struct alias **app;
3181         const char *p;
3182         unsigned int ch;
3183
3184         p = name;
3185
3186         ch = (unsigned char)*p;
3187         hashval = ch << 4;
3188         while (ch) {
3189                 hashval += ch;
3190                 ch = (unsigned char)*++p;
3191         }
3192         app = &atab[hashval % ATABSIZE];
3193
3194         for (; *app; app = &(*app)->next) {
3195                 if (strcmp(name, (*app)->name) == 0) {
3196                         break;
3197                 }
3198         }
3199
3200         return app;
3201 }
3202
3203 static struct alias *
3204 lookupalias(const char *name, int check)
3205 {
3206         struct alias *ap = *__lookupalias(name);
3207
3208         if (check && ap && (ap->flag & ALIASINUSE))
3209                 return NULL;
3210         return ap;
3211 }
3212
3213 static struct alias *
3214 freealias(struct alias *ap)
3215 {
3216         struct alias *next;
3217
3218         if (ap->flag & ALIASINUSE) {
3219                 ap->flag |= ALIASDEAD;
3220                 return ap;
3221         }
3222
3223         next = ap->next;
3224         free(ap->name);
3225         free(ap->val);
3226         free(ap);
3227         return next;
3228 }
3229
3230 static void
3231 setalias(const char *name, const char *val)
3232 {
3233         struct alias *ap, **app;
3234
3235         app = __lookupalias(name);
3236         ap = *app;
3237         INT_OFF;
3238         if (ap) {
3239                 if (!(ap->flag & ALIASINUSE)) {
3240                         free(ap->val);
3241                 }
3242                 ap->val = ckstrdup(val);
3243                 ap->flag &= ~ALIASDEAD;
3244         } else {
3245                 /* not found */
3246                 ap = ckzalloc(sizeof(struct alias));
3247                 ap->name = ckstrdup(name);
3248                 ap->val = ckstrdup(val);
3249                 /*ap->flag = 0; - ckzalloc did it */
3250                 /*ap->next = NULL;*/
3251                 *app = ap;
3252         }
3253         INT_ON;
3254 }
3255
3256 static int
3257 unalias(const char *name)
3258 {
3259         struct alias **app;
3260
3261         app = __lookupalias(name);
3262
3263         if (*app) {
3264                 INT_OFF;
3265                 *app = freealias(*app);
3266                 INT_ON;
3267                 return 0;
3268         }
3269
3270         return 1;
3271 }
3272
3273 static void
3274 rmaliases(void)
3275 {
3276         struct alias *ap, **app;
3277         int i;
3278
3279         INT_OFF;
3280         for (i = 0; i < ATABSIZE; i++) {
3281                 app = &atab[i];
3282                 for (ap = *app; ap; ap = *app) {
3283                         *app = freealias(*app);
3284                         if (ap == *app) {
3285                                 app = &ap->next;
3286                         }
3287                 }
3288         }
3289         INT_ON;
3290 }
3291
3292 static void
3293 printalias(const struct alias *ap)
3294 {
3295         out1fmt("%s=%s\n", ap->name, single_quote(ap->val));
3296 }
3297
3298 /*
3299  * TODO - sort output
3300  */
3301 static int FAST_FUNC
3302 aliascmd(int argc UNUSED_PARAM, char **argv)
3303 {
3304         char *n, *v;
3305         int ret = 0;
3306         struct alias *ap;
3307
3308         if (!argv[1]) {
3309                 int i;
3310
3311                 for (i = 0; i < ATABSIZE; i++) {
3312                         for (ap = atab[i]; ap; ap = ap->next) {
3313                                 printalias(ap);
3314                         }
3315                 }
3316                 return 0;
3317         }
3318         while ((n = *++argv) != NULL) {
3319                 v = strchr(n+1, '=');
3320                 if (v == NULL) { /* n+1: funny ksh stuff */
3321                         ap = *__lookupalias(n);
3322                         if (ap == NULL) {
3323                                 fprintf(stderr, "%s: %s not found\n", "alias", n);
3324                                 ret = 1;
3325                         } else
3326                                 printalias(ap);
3327                 } else {
3328                         *v++ = '\0';
3329                         setalias(n, v);
3330                 }
3331         }
3332
3333         return ret;
3334 }
3335
3336 static int FAST_FUNC
3337 unaliascmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
3338 {
3339         int i;
3340
3341         while ((i = nextopt("a")) != '\0') {
3342                 if (i == 'a') {
3343                         rmaliases();
3344                         return 0;
3345                 }
3346         }
3347         for (i = 0; *argptr; argptr++) {
3348                 if (unalias(*argptr)) {
3349                         fprintf(stderr, "%s: %s not found\n", "unalias", *argptr);
3350                         i = 1;
3351                 }
3352         }
3353
3354         return i;
3355 }
3356
3357 #endif /* ASH_ALIAS */
3358
3359
3360 /* ============ jobs.c */
3361
3362 /* Mode argument to forkshell.  Don't change FORK_FG or FORK_BG. */
3363 #define FORK_FG    0
3364 #define FORK_BG    1
3365 #define FORK_NOJOB 2
3366
3367 /* mode flags for showjob(s) */
3368 #define SHOW_ONLY_PGID  0x01    /* show only pgid (jobs -p) */
3369 #define SHOW_PIDS       0x02    /* show individual pids, not just one line per job */
3370 #define SHOW_CHANGED    0x04    /* only jobs whose state has changed */
3371 #define SHOW_STDERR     0x08    /* print to stderr (else stdout) */
3372
3373 /*
3374  * A job structure contains information about a job.  A job is either a
3375  * single process or a set of processes contained in a pipeline.  In the
3376  * latter case, pidlist will be non-NULL, and will point to a -1 terminated
3377  * array of pids.
3378  */
3379 struct procstat {
3380         pid_t   ps_pid;         /* process id */
3381         int     ps_status;      /* last process status from wait() */
3382         char    *ps_cmd;        /* text of command being run */
3383 };
3384
3385 struct job {
3386         struct procstat ps0;    /* status of process */
3387         struct procstat *ps;    /* status or processes when more than one */
3388 #if JOBS
3389         int stopstatus;         /* status of a stopped job */
3390 #endif
3391         uint32_t
3392                 nprocs: 16,     /* number of processes */
3393                 state: 8,
3394 #define JOBRUNNING      0       /* at least one proc running */
3395 #define JOBSTOPPED      1       /* all procs are stopped */
3396 #define JOBDONE         2       /* all procs are completed */
3397 #if JOBS
3398                 sigint: 1,      /* job was killed by SIGINT */
3399                 jobctl: 1,      /* job running under job control */
3400 #endif
3401                 waited: 1,      /* true if this entry has been waited for */
3402                 used: 1,        /* true if this entry is in used */
3403                 changed: 1;     /* true if status has changed */
3404         struct job *prev_job;   /* previous job */
3405 };
3406
3407 static struct job *makejob(/*union node *,*/ int);
3408 static int forkshell(struct job *, union node *, int);
3409 static int waitforjob(struct job *);
3410
3411 #if !JOBS
3412 enum { doing_jobctl = 0 };
3413 #define setjobctl(on) do {} while (0)
3414 #else
3415 static smallint doing_jobctl; //references:8
3416 static void setjobctl(int);
3417 #endif
3418
3419 /*
3420  * Ignore a signal.
3421  */
3422 static void
3423 ignoresig(int signo)
3424 {
3425         /* Avoid unnecessary system calls. Is it already SIG_IGNed? */
3426         if (sigmode[signo - 1] != S_IGN && sigmode[signo - 1] != S_HARD_IGN) {
3427                 /* No, need to do it */
3428                 signal(signo, SIG_IGN);
3429         }
3430         sigmode[signo - 1] = S_HARD_IGN;
3431 }
3432
3433 /*
3434  * Only one usage site - in setsignal()
3435  */
3436 static void
3437 signal_handler(int signo)
3438 {
3439         gotsig[signo - 1] = 1;
3440
3441         if (signo == SIGINT && !trap[SIGINT]) {
3442                 if (!suppress_int) {
3443                         pending_sig = 0;
3444                         raise_interrupt(); /* does not return */
3445                 }
3446                 pending_int = 1;
3447         } else {
3448                 pending_sig = signo;
3449         }
3450 }
3451
3452 /*
3453  * Set the signal handler for the specified signal.  The routine figures
3454  * out what it should be set to.
3455  */
3456 static void
3457 setsignal(int signo)
3458 {
3459         char *t;
3460         char cur_act, new_act;
3461         struct sigaction act;
3462
3463         t = trap[signo];
3464         new_act = S_DFL;
3465         if (t != NULL) { /* trap for this sig is set */
3466                 new_act = S_CATCH;
3467                 if (t[0] == '\0') /* trap is "": ignore this sig */
3468                         new_act = S_IGN;
3469         }
3470
3471         if (rootshell && new_act == S_DFL) {
3472                 switch (signo) {
3473                 case SIGINT:
3474                         if (iflag || minusc || sflag == 0)
3475                                 new_act = S_CATCH;
3476                         break;
3477                 case SIGQUIT:
3478 #if DEBUG
3479                         if (debug)
3480                                 break;
3481 #endif
3482                         /* man bash:
3483                          * "In all cases, bash ignores SIGQUIT. Non-builtin
3484                          * commands run by bash have signal handlers
3485                          * set to the values inherited by the shell
3486                          * from its parent". */
3487                         new_act = S_IGN;
3488                         break;
3489                 case SIGTERM:
3490                         if (iflag)
3491                                 new_act = S_IGN;
3492                         break;
3493 #if JOBS
3494                 case SIGTSTP:
3495                 case SIGTTOU:
3496                         if (mflag)
3497                                 new_act = S_IGN;
3498                         break;
3499 #endif
3500                 }
3501         }
3502 //TODO: if !rootshell, we reset SIGQUIT to DFL,
3503 //whereas we have to restore it to what shell got on entry
3504 //from the parent. See comment above
3505
3506         t = &sigmode[signo - 1];
3507         cur_act = *t;
3508         if (cur_act == 0) {
3509                 /* current setting is not yet known */
3510                 if (sigaction(signo, NULL, &act)) {
3511                         /* pretend it worked; maybe we should give a warning,
3512                          * but other shells don't. We don't alter sigmode,
3513                          * so we retry every time.
3514                          * btw, in Linux it never fails. --vda */
3515                         return;
3516                 }
3517                 if (act.sa_handler == SIG_IGN) {
3518                         cur_act = S_HARD_IGN;
3519                         if (mflag
3520                          && (signo == SIGTSTP || signo == SIGTTIN || signo == SIGTTOU)
3521                         ) {
3522                                 cur_act = S_IGN;   /* don't hard ignore these */
3523                         }
3524                 }
3525         }
3526         if (cur_act == S_HARD_IGN || cur_act == new_act)
3527                 return;
3528
3529         act.sa_handler = SIG_DFL;
3530         switch (new_act) {
3531         case S_CATCH:
3532                 act.sa_handler = signal_handler;
3533                 break;
3534         case S_IGN:
3535                 act.sa_handler = SIG_IGN;
3536                 break;
3537         }
3538
3539         /* flags and mask matter only if !DFL and !IGN, but we do it
3540          * for all cases for more deterministic behavior:
3541          */
3542         act.sa_flags = 0;
3543         sigfillset(&act.sa_mask);
3544
3545         sigaction_set(signo, &act);
3546
3547         *t = new_act;
3548 }
3549
3550 /* mode flags for set_curjob */
3551 #define CUR_DELETE 2
3552 #define CUR_RUNNING 1
3553 #define CUR_STOPPED 0
3554
3555 /* mode flags for dowait */
3556 #define DOWAIT_NONBLOCK WNOHANG
3557 #define DOWAIT_BLOCK    0
3558
3559 #if JOBS
3560 /* pgrp of shell on invocation */
3561 static int initialpgrp; //references:2
3562 static int ttyfd = -1; //5
3563 #endif
3564 /* array of jobs */
3565 static struct job *jobtab; //5
3566 /* size of array */
3567 static unsigned njobs; //4
3568 /* current job */
3569 static struct job *curjob; //lots
3570 /* number of presumed living untracked jobs */
3571 static int jobless; //4
3572
3573 static void
3574 set_curjob(struct job *jp, unsigned mode)
3575 {
3576         struct job *jp1;
3577         struct job **jpp, **curp;
3578
3579         /* first remove from list */
3580         jpp = curp = &curjob;
3581         while (1) {
3582                 jp1 = *jpp;
3583                 if (jp1 == jp)
3584                         break;
3585                 jpp = &jp1->prev_job;
3586         }
3587         *jpp = jp1->prev_job;
3588
3589         /* Then re-insert in correct position */
3590         jpp = curp;
3591         switch (mode) {
3592         default:
3593 #if DEBUG
3594                 abort();
3595 #endif
3596         case CUR_DELETE:
3597                 /* job being deleted */
3598                 break;
3599         case CUR_RUNNING:
3600                 /* newly created job or backgrounded job,
3601                  * put after all stopped jobs.
3602                  */
3603                 while (1) {
3604                         jp1 = *jpp;
3605 #if JOBS
3606                         if (!jp1 || jp1->state != JOBSTOPPED)
3607 #endif
3608                                 break;
3609                         jpp = &jp1->prev_job;
3610                 }
3611                 /* FALLTHROUGH */
3612 #if JOBS
3613         case CUR_STOPPED:
3614 #endif
3615                 /* newly stopped job - becomes curjob */
3616                 jp->prev_job = *jpp;
3617                 *jpp = jp;
3618                 break;
3619         }
3620 }
3621
3622 #if JOBS || DEBUG
3623 static int
3624 jobno(const struct job *jp)
3625 {
3626         return jp - jobtab + 1;
3627 }
3628 #endif
3629
3630 /*
3631  * Convert a job name to a job structure.
3632  */
3633 #if !JOBS
3634 #define getjob(name, getctl) getjob(name)
3635 #endif
3636 static struct job *
3637 getjob(const char *name, int getctl)
3638 {
3639         struct job *jp;
3640         struct job *found;
3641         const char *err_msg = "%s: no such job";
3642         unsigned num;
3643         int c;
3644         const char *p;
3645         char *(*match)(const char *, const char *);
3646
3647         jp = curjob;
3648         p = name;
3649         if (!p)
3650                 goto currentjob;
3651
3652         if (*p != '%')
3653                 goto err;
3654
3655         c = *++p;
3656         if (!c)
3657                 goto currentjob;
3658
3659         if (!p[1]) {
3660                 if (c == '+' || c == '%') {
3661  currentjob:
3662                         err_msg = "No current job";
3663                         goto check;
3664                 }
3665                 if (c == '-') {
3666                         if (jp)
3667                                 jp = jp->prev_job;
3668                         err_msg = "No previous job";
3669  check:
3670                         if (!jp)
3671                                 goto err;
3672                         goto gotit;
3673                 }
3674         }
3675
3676         if (is_number(p)) {
3677                 num = atoi(p);
3678                 if (num > 0 && num <= njobs) {
3679                         jp = jobtab + num - 1;
3680                         if (jp->used)
3681                                 goto gotit;
3682                         goto err;
3683                 }
3684         }
3685
3686         match = prefix;
3687         if (*p == '?') {
3688                 match = strstr;
3689                 p++;
3690         }
3691
3692         found = NULL;
3693         while (jp) {
3694                 if (match(jp->ps[0].ps_cmd, p)) {
3695                         if (found)
3696                                 goto err;
3697                         found = jp;
3698                         err_msg = "%s: ambiguous";
3699                 }
3700                 jp = jp->prev_job;
3701         }
3702         if (!found)
3703                 goto err;
3704         jp = found;
3705
3706  gotit:
3707 #if JOBS
3708         err_msg = "job %s not created under job control";
3709         if (getctl && jp->jobctl == 0)
3710                 goto err;
3711 #endif
3712         return jp;
3713  err:
3714         ash_msg_and_raise_error(err_msg, name);
3715 }
3716
3717 /*
3718  * Mark a job structure as unused.
3719  */
3720 static void
3721 freejob(struct job *jp)
3722 {
3723         struct procstat *ps;
3724         int i;
3725
3726         INT_OFF;
3727         for (i = jp->nprocs, ps = jp->ps; --i >= 0; ps++) {
3728                 if (ps->ps_cmd != nullstr)
3729                         free(ps->ps_cmd);
3730         }
3731         if (jp->ps != &jp->ps0)
3732                 free(jp->ps);
3733         jp->used = 0;
3734         set_curjob(jp, CUR_DELETE);
3735         INT_ON;
3736 }
3737
3738 #if JOBS
3739 static void
3740 xtcsetpgrp(int fd, pid_t pgrp)
3741 {
3742         if (tcsetpgrp(fd, pgrp))
3743                 ash_msg_and_raise_error("can't set tty process group (%m)");
3744 }
3745
3746 /*
3747  * Turn job control on and off.
3748  *
3749  * Note:  This code assumes that the third arg to ioctl is a character
3750  * pointer, which is true on Berkeley systems but not System V.  Since
3751  * System V doesn't have job control yet, this isn't a problem now.
3752  *
3753  * Called with interrupts off.
3754  */
3755 static void
3756 setjobctl(int on)
3757 {
3758         int fd;
3759         int pgrp;
3760
3761         if (on == doing_jobctl || rootshell == 0)
3762                 return;
3763         if (on) {
3764                 int ofd;
3765                 ofd = fd = open(_PATH_TTY, O_RDWR);
3766                 if (fd < 0) {
3767         /* BTW, bash will try to open(ttyname(0)) if open("/dev/tty") fails.
3768          * That sometimes helps to acquire controlling tty.
3769          * Obviously, a workaround for bugs when someone
3770          * failed to provide a controlling tty to bash! :) */
3771                         fd = 2;
3772                         while (!isatty(fd))
3773                                 if (--fd < 0)
3774                                         goto out;
3775                 }
3776                 fd = fcntl(fd, F_DUPFD, 10);
3777                 if (ofd >= 0)
3778                         close(ofd);
3779                 if (fd < 0)
3780                         goto out;
3781                 /* fd is a tty at this point */
3782                 close_on_exec_on(fd);
3783                 while (1) { /* while we are in the background */
3784                         pgrp = tcgetpgrp(fd);
3785                         if (pgrp < 0) {
3786  out:
3787                                 ash_msg("can't access tty; job control turned off");
3788                                 mflag = on = 0;
3789                                 goto close;
3790                         }
3791                         if (pgrp == getpgrp())
3792                                 break;
3793                         killpg(0, SIGTTIN);
3794                 }
3795                 initialpgrp = pgrp;
3796
3797                 setsignal(SIGTSTP);
3798                 setsignal(SIGTTOU);
3799                 setsignal(SIGTTIN);
3800                 pgrp = rootpid;
3801                 setpgid(0, pgrp);
3802                 xtcsetpgrp(fd, pgrp);
3803         } else {
3804                 /* turning job control off */
3805                 fd = ttyfd;
3806                 pgrp = initialpgrp;
3807                 /* was xtcsetpgrp, but this can make exiting ash
3808                  * loop forever if pty is already deleted */
3809                 tcsetpgrp(fd, pgrp);
3810                 setpgid(0, pgrp);
3811                 setsignal(SIGTSTP);
3812                 setsignal(SIGTTOU);
3813                 setsignal(SIGTTIN);
3814  close:
3815                 if (fd >= 0)
3816                         close(fd);
3817                 fd = -1;
3818         }
3819         ttyfd = fd;
3820         doing_jobctl = on;
3821 }
3822
3823 static int FAST_FUNC
3824 killcmd(int argc, char **argv)
3825 {
3826         if (argv[1] && strcmp(argv[1], "-l") != 0) {
3827                 int i = 1;
3828                 do {
3829                         if (argv[i][0] == '%') {
3830                                 /*
3831                                  * "kill %N" - job kill
3832                                  * Converting to pgrp / pid kill
3833                                  */
3834                                 struct job *jp;
3835                                 char *dst;
3836                                 int j, n;
3837
3838                                 jp = getjob(argv[i], 0);
3839                                 /*
3840                                  * In jobs started under job control, we signal
3841                                  * entire process group by kill -PGRP_ID.
3842                                  * This happens, f.e., in interactive shell.
3843                                  *
3844                                  * Otherwise, we signal each child via
3845                                  * kill PID1 PID2 PID3.
3846                                  * Testcases:
3847                                  * sh -c 'sleep 1|sleep 1 & kill %1'
3848                                  * sh -c 'true|sleep 2 & sleep 1; kill %1'
3849                                  * sh -c 'true|sleep 1 & sleep 2; kill %1'
3850                                  */
3851                                 n = jp->nprocs; /* can't be 0 (I hope) */
3852                                 if (jp->jobctl)
3853                                         n = 1;
3854                                 dst = alloca(n * sizeof(int)*4);
3855                                 argv[i] = dst;
3856                                 for (j = 0; j < n; j++) {
3857                                         struct procstat *ps = &jp->ps[j];
3858                                         /* Skip non-running and not-stopped members
3859                                          * (i.e. dead members) of the job
3860                                          */
3861                                         if (ps->ps_status != -1 && !WIFSTOPPED(ps->ps_status))
3862                                                 continue;
3863                                         /*
3864                                          * kill_main has matching code to expect
3865                                          * leading space. Needed to not confuse
3866                                          * negative pids with "kill -SIGNAL_NO" syntax
3867                                          */
3868                                         dst += sprintf(dst, jp->jobctl ? " -%u" : " %u", (int)ps->ps_pid);
3869                                 }
3870                                 *dst = '\0';
3871                         }
3872                 } while (argv[++i]);
3873         }
3874         return kill_main(argc, argv);
3875 }
3876
3877 static void
3878 showpipe(struct job *jp /*, FILE *out*/)
3879 {
3880         struct procstat *ps;
3881         struct procstat *psend;
3882
3883         psend = jp->ps + jp->nprocs;
3884         for (ps = jp->ps + 1; ps < psend; ps++)
3885                 printf(" | %s", ps->ps_cmd);
3886         newline_and_flush(stdout);
3887         flush_stdout_stderr();
3888 }
3889
3890
3891 static int
3892 restartjob(struct job *jp, int mode)
3893 {
3894         struct procstat *ps;
3895         int i;
3896         int status;
3897         pid_t pgid;
3898
3899         INT_OFF;
3900         if (jp->state == JOBDONE)
3901                 goto out;
3902         jp->state = JOBRUNNING;
3903         pgid = jp->ps[0].ps_pid;
3904         if (mode == FORK_FG)
3905                 xtcsetpgrp(ttyfd, pgid);
3906         killpg(pgid, SIGCONT);
3907         ps = jp->ps;
3908         i = jp->nprocs;
3909         do {
3910                 if (WIFSTOPPED(ps->ps_status)) {
3911                         ps->ps_status = -1;
3912                 }
3913                 ps++;
3914         } while (--i);
3915  out:
3916         status = (mode == FORK_FG) ? waitforjob(jp) : 0;
3917         INT_ON;
3918         return status;
3919 }
3920
3921 static int FAST_FUNC
3922 fg_bgcmd(int argc UNUSED_PARAM, char **argv)
3923 {
3924         struct job *jp;
3925         int mode;
3926         int retval;
3927
3928         mode = (**argv == 'f') ? FORK_FG : FORK_BG;
3929         nextopt(nullstr);
3930         argv = argptr;
3931         do {
3932                 jp = getjob(*argv, 1);
3933                 if (mode == FORK_BG) {
3934                         set_curjob(jp, CUR_RUNNING);
3935                         printf("[%d] ", jobno(jp));
3936                 }
3937                 out1str(jp->ps[0].ps_cmd);
3938                 showpipe(jp /*, stdout*/);
3939                 retval = restartjob(jp, mode);
3940         } while (*argv && *++argv);
3941         return retval;
3942 }
3943 #endif
3944
3945 static int
3946 sprint_status48(char *s, int status, int sigonly)
3947 {
3948         int col;
3949         int st;
3950
3951         col = 0;
3952         if (!WIFEXITED(status)) {
3953                 if (JOBS && WIFSTOPPED(status))
3954                         st = WSTOPSIG(status);
3955                 else
3956                         st = WTERMSIG(status);
3957                 if (sigonly) {
3958                         if (st == SIGINT || st == SIGPIPE)
3959                                 goto out;
3960                         if (JOBS && WIFSTOPPED(status))
3961                                 goto out;
3962                 }
3963                 st &= 0x7f;
3964 //TODO: use bbox's get_signame? strsignal adds ~600 bytes to text+rodata
3965                 col = fmtstr(s, 32, strsignal(st));
3966                 if (WCOREDUMP(status)) {
3967                         strcpy(s + col, " (core dumped)");
3968                         col += sizeof(" (core dumped)")-1;
3969                 }
3970         } else if (!sigonly) {
3971                 st = WEXITSTATUS(status);
3972                 col = fmtstr(s, 16, (st ? "Done(%d)" : "Done"), st);
3973         }
3974  out:
3975         return col;
3976 }
3977
3978 static int
3979 dowait(int wait_flags, struct job *job)
3980 {
3981         int pid;
3982         int status;
3983         struct job *jp;
3984         struct job *thisjob;
3985
3986         TRACE(("dowait(0x%x) called\n", wait_flags));
3987
3988         /* Do a wait system call. If job control is compiled in, we accept
3989          * stopped processes. wait_flags may have WNOHANG, preventing blocking.
3990          * NB: _not_ safe_waitpid, we need to detect EINTR */
3991         if (doing_jobctl)
3992                 wait_flags |= WUNTRACED;
3993         pid = waitpid(-1, &status, wait_flags);
3994         TRACE(("wait returns pid=%d, status=0x%x, errno=%d(%s)\n",
3995                                 pid, status, errno, strerror(errno)));
3996         if (pid <= 0)
3997                 return pid;
3998
3999         INT_OFF;
4000         thisjob = NULL;
4001         for (jp = curjob; jp; jp = jp->prev_job) {
4002                 int jobstate;
4003                 struct procstat *ps;
4004                 struct procstat *psend;
4005                 if (jp->state == JOBDONE)
4006                         continue;
4007                 jobstate = JOBDONE;
4008                 ps = jp->ps;
4009                 psend = ps + jp->nprocs;
4010                 do {
4011                         if (ps->ps_pid == pid) {
4012                                 TRACE(("Job %d: changing status of proc %d "
4013                                         "from 0x%x to 0x%x\n",
4014                                         jobno(jp), pid, ps->ps_status, status));
4015                                 ps->ps_status = status;
4016                                 thisjob = jp;
4017                         }
4018                         if (ps->ps_status == -1)
4019                                 jobstate = JOBRUNNING;
4020 #if JOBS
4021                         if (jobstate == JOBRUNNING)
4022                                 continue;
4023                         if (WIFSTOPPED(ps->ps_status)) {
4024                                 jp->stopstatus = ps->ps_status;
4025                                 jobstate = JOBSTOPPED;
4026                         }
4027 #endif
4028                 } while (++ps < psend);
4029                 if (!thisjob)
4030                         continue;
4031
4032                 /* Found the job where one of its processes changed its state.
4033                  * Is there at least one live and running process in this job? */
4034                 if (jobstate != JOBRUNNING) {
4035                         /* No. All live processes in the job are stopped
4036                          * (JOBSTOPPED) or there are no live processes (JOBDONE)
4037                          */
4038                         thisjob->changed = 1;
4039                         if (thisjob->state != jobstate) {
4040                                 TRACE(("Job %d: changing state from %d to %d\n",
4041                                         jobno(thisjob), thisjob->state, jobstate));
4042                                 thisjob->state = jobstate;
4043 #if JOBS
4044                                 if (jobstate == JOBSTOPPED)
4045                                         set_curjob(thisjob, CUR_STOPPED);
4046 #endif
4047                         }
4048                 }
4049                 goto out;
4050         }
4051         /* The process wasn't found in job list */
4052         if (JOBS && !WIFSTOPPED(status))
4053                 jobless--;
4054  out:
4055         INT_ON;
4056
4057         if (thisjob && thisjob == job) {
4058                 char s[48 + 1];
4059                 int len;
4060
4061                 len = sprint_status48(s, status, 1);
4062                 if (len) {
4063                         s[len] = '\n';
4064                         s[len + 1] = '\0';
4065                         out2str(s);
4066                 }
4067         }
4068         return pid;
4069 }
4070
4071 static int
4072 blocking_wait_with_raise_on_sig(void)
4073 {
4074         pid_t pid = dowait(DOWAIT_BLOCK, NULL);
4075         if (pid <= 0 && pending_sig)
4076                 raise_exception(EXSIG);
4077         return pid;
4078 }
4079
4080 #if JOBS
4081 static void
4082 showjob(struct job *jp, int mode)
4083 {
4084         struct procstat *ps;
4085         struct procstat *psend;
4086         int col;
4087         int indent_col;
4088         char s[16 + 16 + 48];
4089         FILE *out = (mode & SHOW_STDERR ? stderr : stdout);
4090
4091         ps = jp->ps;
4092
4093         if (mode & SHOW_ONLY_PGID) { /* jobs -p */
4094                 /* just output process (group) id of pipeline */
4095                 fprintf(out, "%d\n", ps->ps_pid);
4096                 return;
4097         }
4098
4099         col = fmtstr(s, 16, "[%d]   ", jobno(jp));
4100         indent_col = col;
4101
4102         if (jp == curjob)
4103                 s[col - 3] = '+';
4104         else if (curjob && jp == curjob->prev_job)
4105                 s[col - 3] = '-';
4106
4107         if (mode & SHOW_PIDS)
4108                 col += fmtstr(s + col, 16, "%d ", ps->ps_pid);
4109
4110         psend = ps + jp->nprocs;
4111
4112         if (jp->state == JOBRUNNING) {
4113                 strcpy(s + col, "Running");
4114                 col += sizeof("Running") - 1;
4115         } else {
4116                 int status = psend[-1].ps_status;
4117                 if (jp->state == JOBSTOPPED)
4118                         status = jp->stopstatus;
4119                 col += sprint_status48(s + col, status, 0);
4120         }
4121         /* By now, "[JOBID]*  [maybe PID] STATUS" is printed */
4122
4123         /* This loop either prints "<cmd1> | <cmd2> | <cmd3>" line
4124          * or prints several "PID             | <cmdN>" lines,
4125          * depending on SHOW_PIDS bit.
4126          * We do not print status of individual processes
4127          * between PID and <cmdN>. bash does it, but not very well:
4128          * first line shows overall job status, not process status,
4129          * making it impossible to know 1st process status.
4130          */
4131         goto start;
4132         do {
4133                 /* for each process */
4134                 s[0] = '\0';
4135                 col = 33;
4136                 if (mode & SHOW_PIDS)
4137                         col = fmtstr(s, 48, "\n%*c%d ", indent_col, ' ', ps->ps_pid) - 1;
4138  start:
4139                 fprintf(out, "%s%*c%s%s",
4140                                 s,
4141                                 33 - col >= 0 ? 33 - col : 0, ' ',
4142                                 ps == jp->ps ? "" : "| ",
4143                                 ps->ps_cmd
4144                 );
4145         } while (++ps != psend);
4146         newline_and_flush(out);
4147
4148         jp->changed = 0;
4149
4150         if (jp->state == JOBDONE) {
4151                 TRACE(("showjob: freeing job %d\n", jobno(jp)));
4152                 freejob(jp);
4153         }
4154 }
4155
4156 /*
4157  * Print a list of jobs.  If "change" is nonzero, only print jobs whose
4158  * statuses have changed since the last call to showjobs.
4159  */
4160 static void
4161 showjobs(int mode)
4162 {
4163         struct job *jp;
4164
4165         TRACE(("showjobs(0x%x) called\n", mode));
4166
4167         /* Handle all finished jobs */
4168         while (dowait(DOWAIT_NONBLOCK, NULL) > 0)
4169                 continue;
4170
4171         for (jp = curjob; jp; jp = jp->prev_job) {
4172                 if (!(mode & SHOW_CHANGED) || jp->changed) {
4173                         showjob(jp, mode);
4174                 }
4175         }
4176 }
4177
4178 static int FAST_FUNC
4179 jobscmd(int argc UNUSED_PARAM, char **argv)
4180 {
4181         int mode, m;
4182
4183         mode = 0;
4184         while ((m = nextopt("lp")) != '\0') {
4185                 if (m == 'l')
4186                         mode |= SHOW_PIDS;
4187                 else
4188                         mode |= SHOW_ONLY_PGID;
4189         }
4190
4191         argv = argptr;
4192         if (*argv) {
4193                 do
4194                         showjob(getjob(*argv, 0), mode);
4195                 while (*++argv);
4196         } else {
4197                 showjobs(mode);
4198         }
4199
4200         return 0;
4201 }
4202 #endif /* JOBS */
4203
4204 /* Called only on finished or stopped jobs (no members are running) */
4205 static int
4206 getstatus(struct job *job)
4207 {
4208         int status;
4209         int retval;
4210         struct procstat *ps;
4211
4212         /* Fetch last member's status */
4213         ps = job->ps + job->nprocs - 1;
4214         status = ps->ps_status;
4215         if (pipefail) {
4216                 /* "set -o pipefail" mode: use last _nonzero_ status */
4217                 while (status == 0 && --ps >= job->ps)
4218                         status = ps->ps_status;
4219         }
4220
4221         retval = WEXITSTATUS(status);
4222         if (!WIFEXITED(status)) {
4223 #if JOBS
4224                 retval = WSTOPSIG(status);
4225                 if (!WIFSTOPPED(status))
4226 #endif
4227                 {
4228                         /* XXX: limits number of signals */
4229                         retval = WTERMSIG(status);
4230 #if JOBS
4231                         if (retval == SIGINT)
4232                                 job->sigint = 1;
4233 #endif
4234                 }
4235                 retval += 128;
4236         }
4237         TRACE(("getstatus: job %d, nproc %d, status 0x%x, retval 0x%x\n",
4238                 jobno(job), job->nprocs, status, retval));
4239         return retval;
4240 }
4241
4242 static int FAST_FUNC
4243 waitcmd(int argc UNUSED_PARAM, char **argv)
4244 {
4245         struct job *job;
4246         int retval;
4247         struct job *jp;
4248
4249         if (pending_sig)
4250                 raise_exception(EXSIG);
4251
4252         nextopt(nullstr);
4253         retval = 0;
4254
4255         argv = argptr;
4256         if (!*argv) {
4257                 /* wait for all jobs */
4258                 for (;;) {
4259                         jp = curjob;
4260                         while (1) {
4261                                 if (!jp) /* no running procs */
4262                                         goto ret;
4263                                 if (jp->state == JOBRUNNING)
4264                                         break;
4265                                 jp->waited = 1;
4266                                 jp = jp->prev_job;
4267                         }
4268                         blocking_wait_with_raise_on_sig();
4269         /* man bash:
4270          * "When bash is waiting for an asynchronous command via
4271          * the wait builtin, the reception of a signal for which a trap
4272          * has been set will cause the wait builtin to return immediately
4273          * with an exit status greater than 128, immediately after which
4274          * the trap is executed."
4275          *
4276          * blocking_wait_with_raise_on_sig raises signal handlers
4277          * if it gets no pid (pid < 0). However,
4278          * if child sends us a signal *and immediately exits*,
4279          * blocking_wait_with_raise_on_sig gets pid > 0
4280          * and does not handle pending_sig. Check this case: */
4281                         if (pending_sig)
4282                                 raise_exception(EXSIG);
4283                 }
4284         }
4285
4286         retval = 127;
4287         do {
4288                 if (**argv != '%') {
4289                         pid_t pid = number(*argv);
4290                         job = curjob;
4291                         while (1) {
4292                                 if (!job)
4293                                         goto repeat;
4294                                 if (job->ps[job->nprocs - 1].ps_pid == pid)
4295                                         break;
4296                                 job = job->prev_job;
4297                         }
4298                 } else {
4299                         job = getjob(*argv, 0);
4300                 }
4301                 /* loop until process terminated or stopped */
4302                 while (job->state == JOBRUNNING)
4303                         blocking_wait_with_raise_on_sig();
4304                 job->waited = 1;
4305                 retval = getstatus(job);
4306  repeat: ;
4307         } while (*++argv);
4308
4309  ret:
4310         return retval;
4311 }
4312
4313 static struct job *
4314 growjobtab(void)
4315 {
4316         size_t len;
4317         ptrdiff_t offset;
4318         struct job *jp, *jq;
4319
4320         len = njobs * sizeof(*jp);
4321         jq = jobtab;
4322         jp = ckrealloc(jq, len + 4 * sizeof(*jp));
4323
4324         offset = (char *)jp - (char *)jq;
4325         if (offset) {
4326                 /* Relocate pointers */
4327                 size_t l = len;
4328
4329                 jq = (struct job *)((char *)jq + l);
4330                 while (l) {
4331                         l -= sizeof(*jp);
4332                         jq--;
4333 #define joff(p) ((struct job *)((char *)(p) + l))
4334 #define jmove(p) (p) = (void *)((char *)(p) + offset)
4335                         if (joff(jp)->ps == &jq->ps0)
4336                                 jmove(joff(jp)->ps);
4337                         if (joff(jp)->prev_job)
4338                                 jmove(joff(jp)->prev_job);
4339                 }
4340                 if (curjob)
4341                         jmove(curjob);
4342 #undef joff
4343 #undef jmove
4344         }
4345
4346         njobs += 4;
4347         jobtab = jp;
4348         jp = (struct job *)((char *)jp + len);
4349         jq = jp + 3;
4350         do {
4351                 jq->used = 0;
4352         } while (--jq >= jp);
4353         return jp;
4354 }
4355
4356 /*
4357  * Return a new job structure.
4358  * Called with interrupts off.
4359  */
4360 static struct job *
4361 makejob(/*union node *node,*/ int nprocs)
4362 {
4363         int i;
4364         struct job *jp;
4365
4366         for (i = njobs, jp = jobtab; ; jp++) {
4367                 if (--i < 0) {
4368                         jp = growjobtab();
4369                         break;
4370                 }
4371                 if (jp->used == 0)
4372                         break;
4373                 if (jp->state != JOBDONE || !jp->waited)
4374                         continue;
4375 #if JOBS
4376                 if (doing_jobctl)
4377                         continue;
4378 #endif
4379                 freejob(jp);
4380                 break;
4381         }
4382         memset(jp, 0, sizeof(*jp));
4383 #if JOBS
4384         /* jp->jobctl is a bitfield.
4385          * "jp->jobctl |= jobctl" likely to give awful code */
4386         if (doing_jobctl)
4387                 jp->jobctl = 1;
4388 #endif
4389         jp->prev_job = curjob;
4390         curjob = jp;
4391         jp->used = 1;
4392         jp->ps = &jp->ps0;
4393         if (nprocs > 1) {
4394                 jp->ps = ckmalloc(nprocs * sizeof(struct procstat));
4395         }
4396         TRACE(("makejob(%d) returns %%%d\n", nprocs,
4397                                 jobno(jp)));
4398         return jp;
4399 }
4400
4401 #if JOBS
4402 /*
4403  * Return a string identifying a command (to be printed by the
4404  * jobs command).
4405  */
4406 static char *cmdnextc;
4407
4408 static void
4409 cmdputs(const char *s)
4410 {
4411         static const char vstype[VSTYPE + 1][3] = {
4412                 "", "}", "-", "+", "?", "=",
4413                 "%", "%%", "#", "##"
4414                 IF_ASH_BASH_COMPAT(, ":", "/", "//")
4415         };
4416
4417         const char *p, *str;
4418         char cc[2];
4419         char *nextc;
4420         unsigned char c;
4421         unsigned char subtype = 0;
4422         int quoted = 0;
4423
4424         cc[1] = '\0';
4425         nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc);
4426         p = s;
4427         while ((c = *p++) != '\0') {
4428                 str = NULL;
4429                 switch (c) {
4430                 case CTLESC:
4431                         c = *p++;
4432                         break;
4433                 case CTLVAR:
4434                         subtype = *p++;
4435                         if ((subtype & VSTYPE) == VSLENGTH)
4436                                 str = "${#";
4437                         else
4438                                 str = "${";
4439                         goto dostr;
4440                 case CTLENDVAR:
4441                         str = "\"}" + !(quoted & 1);
4442                         quoted >>= 1;
4443                         subtype = 0;
4444                         goto dostr;
4445                 case CTLBACKQ:
4446                         str = "$(...)";
4447                         goto dostr;
4448 #if ENABLE_SH_MATH_SUPPORT
4449                 case CTLARI:
4450                         str = "$((";
4451                         goto dostr;
4452                 case CTLENDARI:
4453                         str = "))";
4454                         goto dostr;
4455 #endif
4456                 case CTLQUOTEMARK:
4457                         quoted ^= 1;
4458                         c = '"';
4459                         break;
4460                 case '=':
4461                         if (subtype == 0)
4462                                 break;
4463                         if ((subtype & VSTYPE) != VSNORMAL)
4464                                 quoted <<= 1;
4465                         str = vstype[subtype & VSTYPE];
4466                         if (subtype & VSNUL)
4467                                 c = ':';
4468                         else
4469                                 goto checkstr;
4470                         break;
4471                 case '\'':
4472                 case '\\':
4473                 case '"':
4474                 case '$':
4475                         /* These can only happen inside quotes */
4476                         cc[0] = c;
4477                         str = cc;
4478                         c = '\\';
4479                         break;
4480                 default:
4481                         break;
4482                 }
4483                 USTPUTC(c, nextc);
4484  checkstr:
4485                 if (!str)
4486                         continue;
4487  dostr:
4488                 while ((c = *str++) != '\0') {
4489                         USTPUTC(c, nextc);
4490                 }
4491         } /* while *p++ not NUL */
4492
4493         if (quoted & 1) {
4494                 USTPUTC('"', nextc);
4495         }
4496         *nextc = 0;
4497         cmdnextc = nextc;
4498 }
4499
4500 /* cmdtxt() and cmdlist() call each other */
4501 static void cmdtxt(union node *n);
4502
4503 static void
4504 cmdlist(union node *np, int sep)
4505 {
4506         for (; np; np = np->narg.next) {
4507                 if (!sep)
4508                         cmdputs(" ");
4509                 cmdtxt(np);
4510                 if (sep && np->narg.next)
4511                         cmdputs(" ");
4512         }
4513 }
4514
4515 static void
4516 cmdtxt(union node *n)
4517 {
4518         union node *np;
4519         struct nodelist *lp;
4520         const char *p;
4521
4522         if (!n)
4523                 return;
4524         switch (n->type) {
4525         default:
4526 #if DEBUG
4527                 abort();
4528 #endif
4529         case NPIPE:
4530                 lp = n->npipe.cmdlist;
4531                 for (;;) {
4532                         cmdtxt(lp->n);
4533                         lp = lp->next;
4534                         if (!lp)
4535                                 break;
4536                         cmdputs(" | ");
4537                 }
4538                 break;
4539         case NSEMI:
4540                 p = "; ";
4541                 goto binop;
4542         case NAND:
4543                 p = " && ";
4544                 goto binop;
4545         case NOR:
4546                 p = " || ";
4547  binop:
4548                 cmdtxt(n->nbinary.ch1);
4549                 cmdputs(p);
4550                 n = n->nbinary.ch2;
4551                 goto donode;
4552         case NREDIR:
4553         case NBACKGND:
4554                 n = n->nredir.n;
4555                 goto donode;
4556         case NNOT:
4557                 cmdputs("!");
4558                 n = n->nnot.com;
4559  donode:
4560                 cmdtxt(n);
4561                 break;
4562         case NIF:
4563                 cmdputs("if ");
4564                 cmdtxt(n->nif.test);
4565                 cmdputs("; then ");
4566                 if (n->nif.elsepart) {
4567                         cmdtxt(n->nif.ifpart);
4568                         cmdputs("; else ");
4569                         n = n->nif.elsepart;
4570                 } else {
4571                         n = n->nif.ifpart;
4572                 }
4573                 p = "; fi";
4574                 goto dotail;
4575         case NSUBSHELL:
4576                 cmdputs("(");
4577                 n = n->nredir.n;
4578                 p = ")";
4579                 goto dotail;
4580         case NWHILE:
4581                 p = "while ";
4582                 goto until;
4583         case NUNTIL:
4584                 p = "until ";
4585  until:
4586                 cmdputs(p);
4587                 cmdtxt(n->nbinary.ch1);
4588                 n = n->nbinary.ch2;
4589                 p = "; done";
4590  dodo:
4591                 cmdputs("; do ");
4592  dotail:
4593                 cmdtxt(n);
4594                 goto dotail2;
4595         case NFOR:
4596                 cmdputs("for ");
4597                 cmdputs(n->nfor.var);
4598                 cmdputs(" in ");
4599                 cmdlist(n->nfor.args, 1);
4600                 n = n->nfor.body;
4601                 p = "; done";
4602                 goto dodo;
4603         case NDEFUN:
4604                 cmdputs(n->narg.text);
4605                 p = "() { ... }";
4606                 goto dotail2;
4607         case NCMD:
4608                 cmdlist(n->ncmd.args, 1);
4609                 cmdlist(n->ncmd.redirect, 0);
4610                 break;
4611         case NARG:
4612                 p = n->narg.text;
4613  dotail2:
4614                 cmdputs(p);
4615                 break;
4616         case NHERE:
4617         case NXHERE:
4618                 p = "<<...";
4619                 goto dotail2;
4620         case NCASE:
4621                 cmdputs("case ");
4622                 cmdputs(n->ncase.expr->narg.text);
4623                 cmdputs(" in ");
4624                 for (np = n->ncase.cases; np; np = np->nclist.next) {
4625                         cmdtxt(np->nclist.pattern);
4626                         cmdputs(") ");
4627                         cmdtxt(np->nclist.body);
4628                         cmdputs(";; ");
4629                 }
4630                 p = "esac";
4631                 goto dotail2;
4632         case NTO:
4633                 p = ">";
4634                 goto redir;
4635         case NCLOBBER:
4636                 p = ">|";
4637                 goto redir;
4638         case NAPPEND:
4639                 p = ">>";
4640                 goto redir;
4641 #if ENABLE_ASH_BASH_COMPAT
4642         case NTO2:
4643 #endif
4644         case NTOFD:
4645                 p = ">&";
4646                 goto redir;
4647         case NFROM:
4648                 p = "<";
4649                 goto redir;
4650         case NFROMFD:
4651                 p = "<&";
4652                 goto redir;
4653         case NFROMTO:
4654                 p = "<>";
4655  redir:
4656                 cmdputs(utoa(n->nfile.fd));
4657                 cmdputs(p);
4658                 if (n->type == NTOFD || n->type == NFROMFD) {
4659                         cmdputs(utoa(n->ndup.dupfd));
4660                         break;
4661                 }
4662                 n = n->nfile.fname;
4663                 goto donode;
4664         }
4665 }
4666
4667 static char *
4668 commandtext(union node *n)
4669 {
4670         char *name;
4671
4672         STARTSTACKSTR(cmdnextc);
4673         cmdtxt(n);
4674         name = stackblock();
4675         TRACE(("commandtext: name %p, end %p\n\t\"%s\"\n",
4676                         name, cmdnextc, cmdnextc));
4677         return ckstrdup(name);
4678 }
4679 #endif /* JOBS */
4680
4681 /*
4682  * Fork off a subshell.  If we are doing job control, give the subshell its
4683  * own process group.  Jp is a job structure that the job is to be added to.
4684  * N is the command that will be evaluated by the child.  Both jp and n may
4685  * be NULL.  The mode parameter can be one of the following:
4686  *      FORK_FG - Fork off a foreground process.
4687  *      FORK_BG - Fork off a background process.
4688  *      FORK_NOJOB - Like FORK_FG, but don't give the process its own
4689  *                   process group even if job control is on.
4690  *
4691  * When job control is turned off, background processes have their standard
4692  * input redirected to /dev/null (except for the second and later processes
4693  * in a pipeline).
4694  *
4695  * Called with interrupts off.
4696  */
4697 /*
4698  * Clear traps on a fork.
4699  */
4700 static void
4701 clear_traps(void)
4702 {
4703         char **tp;
4704
4705         for (tp = trap; tp < &trap[NSIG]; tp++) {
4706                 if (*tp && **tp) {      /* trap not NULL or "" (SIG_IGN) */
4707                         INT_OFF;
4708                         if (trap_ptr == trap)
4709                                 free(*tp);
4710                         /* else: it "belongs" to trap_ptr vector, don't free */
4711                         *tp = NULL;
4712                         if ((tp - trap) != 0)
4713                                 setsignal(tp - trap);
4714                         INT_ON;
4715                 }
4716         }
4717         may_have_traps = 0;
4718 }
4719
4720 /* Lives far away from here, needed for forkchild */
4721 static void closescript(void);
4722
4723 /* Called after fork(), in child */
4724 static NOINLINE void
4725 forkchild(struct job *jp, union node *n, int mode)
4726 {
4727         int oldlvl;
4728
4729         TRACE(("Child shell %d\n", getpid()));
4730         oldlvl = shlvl;
4731         shlvl++;
4732
4733         /* man bash: "Non-builtin commands run by bash have signal handlers
4734          * set to the values inherited by the shell from its parent".
4735          * Do we do it correctly? */
4736
4737         closescript();
4738
4739         if (mode == FORK_NOJOB          /* is it `xxx` ? */
4740          && n && n->type == NCMD        /* is it single cmd? */
4741         /* && n->ncmd.args->type == NARG - always true? */
4742          && n->ncmd.args && strcmp(n->ncmd.args->narg.text, "trap") == 0
4743          && n->ncmd.args->narg.next == NULL /* "trap" with no arguments */
4744         /* && n->ncmd.args->narg.backquote == NULL - do we need to check this? */
4745         ) {
4746                 TRACE(("Trap hack\n"));
4747                 /* Awful hack for `trap` or $(trap).
4748                  *
4749                  * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
4750                  * contains an example where "trap" is executed in a subshell:
4751                  *
4752                  * save_traps=$(trap)
4753                  * ...
4754                  * eval "$save_traps"
4755                  *
4756                  * Standard does not say that "trap" in subshell shall print
4757                  * parent shell's traps. It only says that its output
4758                  * must have suitable form, but then, in the above example
4759                  * (which is not supposed to be normative), it implies that.
4760                  *
4761                  * bash (and probably other shell) does implement it
4762                  * (traps are reset to defaults, but "trap" still shows them),
4763                  * but as a result, "trap" logic is hopelessly messed up:
4764                  *
4765                  * # trap
4766                  * trap -- 'echo Ho' SIGWINCH  <--- we have a handler
4767                  * # (trap)        <--- trap is in subshell - no output (correct, traps are reset)
4768                  * # true | trap   <--- trap is in subshell - no output (ditto)
4769                  * # echo `true | trap`    <--- in subshell - output (but traps are reset!)
4770                  * trap -- 'echo Ho' SIGWINCH
4771                  * # echo `(trap)`         <--- in subshell in subshell - output
4772                  * trap -- 'echo Ho' SIGWINCH
4773                  * # echo `true | (trap)`  <--- in subshell in subshell in subshell - output!
4774                  * trap -- 'echo Ho' SIGWINCH
4775                  *
4776                  * The rules when to forget and when to not forget traps
4777                  * get really complex and nonsensical.
4778                  *
4779                  * Our solution: ONLY bare $(trap) or `trap` is special.
4780                  */
4781                 /* Save trap handler strings for trap builtin to print */
4782                 trap_ptr = xmemdup(trap, sizeof(trap));
4783                 /* Fall through into clearing traps */
4784         }
4785         clear_traps();
4786 #if JOBS
4787         /* do job control only in root shell */
4788         doing_jobctl = 0;
4789         if (mode != FORK_NOJOB && jp->jobctl && oldlvl == 0) {
4790                 pid_t pgrp;
4791
4792                 if (jp->nprocs == 0)
4793                         pgrp = getpid();
4794                 else
4795                         pgrp = jp->ps[0].ps_pid;
4796                 /* this can fail because we are doing it in the parent also */
4797                 setpgid(0, pgrp);
4798                 if (mode == FORK_FG)
4799                         xtcsetpgrp(ttyfd, pgrp);
4800                 setsignal(SIGTSTP);
4801                 setsignal(SIGTTOU);
4802         } else
4803 #endif
4804         if (mode == FORK_BG) {
4805                 /* man bash: "When job control is not in effect,
4806                  * asynchronous commands ignore SIGINT and SIGQUIT" */
4807                 ignoresig(SIGINT);
4808                 ignoresig(SIGQUIT);
4809                 if (jp->nprocs == 0) {
4810                         close(0);
4811                         if (open(bb_dev_null, O_RDONLY) != 0)
4812                                 ash_msg_and_raise_error("can't open '%s'", bb_dev_null);
4813                 }
4814         }
4815         if (oldlvl == 0) {
4816                 if (iflag) { /* why if iflag only? */
4817                         setsignal(SIGINT);
4818                         setsignal(SIGTERM);
4819                 }
4820                 /* man bash:
4821                  * "In all cases, bash ignores SIGQUIT. Non-builtin
4822                  * commands run by bash have signal handlers
4823                  * set to the values inherited by the shell
4824                  * from its parent".
4825                  * Take care of the second rule: */
4826                 setsignal(SIGQUIT);
4827         }
4828 #if JOBS
4829         if (n && n->type == NCMD
4830          && n->ncmd.args && strcmp(n->ncmd.args->narg.text, "jobs") == 0
4831         ) {
4832                 TRACE(("Job hack\n"));
4833                 /* "jobs": we do not want to clear job list for it,
4834                  * instead we remove only _its_ own_ job from job list.
4835                  * This makes "jobs .... | cat" more useful.
4836                  */
4837                 freejob(curjob);
4838                 return;
4839         }
4840 #endif
4841         for (jp = curjob; jp; jp = jp->prev_job)
4842                 freejob(jp);
4843         jobless = 0;
4844 }
4845
4846 /* Called after fork(), in parent */
4847 #if !JOBS
4848 #define forkparent(jp, n, mode, pid) forkparent(jp, mode, pid)
4849 #endif
4850 static void
4851 forkparent(struct job *jp, union node *n, int mode, pid_t pid)
4852 {
4853         TRACE(("In parent shell: child = %d\n", pid));
4854         if (!jp) {
4855                 while (jobless && dowait(DOWAIT_NONBLOCK, NULL) > 0)
4856                         continue;
4857                 jobless++;
4858                 return;
4859         }
4860 #if JOBS
4861         if (mode != FORK_NOJOB && jp->jobctl) {
4862                 int pgrp;
4863
4864                 if (jp->nprocs == 0)
4865                         pgrp = pid;
4866                 else
4867                         pgrp = jp->ps[0].ps_pid;
4868                 /* This can fail because we are doing it in the child also */
4869                 setpgid(pid, pgrp);
4870         }
4871 #endif
4872         if (mode == FORK_BG) {
4873                 backgndpid = pid;               /* set $! */
4874                 set_curjob(jp, CUR_RUNNING);
4875         }
4876         if (jp) {
4877                 struct procstat *ps = &jp->ps[jp->nprocs++];
4878                 ps->ps_pid = pid;
4879                 ps->ps_status = -1;
4880                 ps->ps_cmd = nullstr;
4881 #if JOBS
4882                 if (doing_jobctl && n)
4883                         ps->ps_cmd = commandtext(n);
4884 #endif
4885         }
4886 }
4887
4888 static int
4889 forkshell(struct job *jp, union node *n, int mode)
4890 {
4891         int pid;
4892
4893         TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode));
4894         pid = fork();
4895         if (pid < 0) {
4896                 TRACE(("Fork failed, errno=%d", errno));
4897                 if (jp)
4898                         freejob(jp);
4899                 ash_msg_and_raise_error("can't fork");
4900         }
4901         if (pid == 0) {
4902                 CLEAR_RANDOM_T(&random_gen); /* or else $RANDOM repeats in child */
4903                 forkchild(jp, n, mode);
4904         } else {
4905                 forkparent(jp, n, mode, pid);
4906         }
4907         return pid;
4908 }
4909
4910 /*
4911  * Wait for job to finish.
4912  *
4913  * Under job control we have the problem that while a child process
4914  * is running interrupts generated by the user are sent to the child
4915  * but not to the shell.  This means that an infinite loop started by
4916  * an interactive user may be hard to kill.  With job control turned off,
4917  * an interactive user may place an interactive program inside a loop.
4918  * If the interactive program catches interrupts, the user doesn't want
4919  * these interrupts to also abort the loop.  The approach we take here
4920  * is to have the shell ignore interrupt signals while waiting for a
4921  * foreground process to terminate, and then send itself an interrupt
4922  * signal if the child process was terminated by an interrupt signal.
4923  * Unfortunately, some programs want to do a bit of cleanup and then
4924  * exit on interrupt; unless these processes terminate themselves by
4925  * sending a signal to themselves (instead of calling exit) they will
4926  * confuse this approach.
4927  *
4928  * Called with interrupts off.
4929  */
4930 static int
4931 waitforjob(struct job *jp)
4932 {
4933         int st;
4934
4935         TRACE(("waitforjob(%%%d) called\n", jobno(jp)));
4936
4937         INT_OFF;
4938         while (jp->state == JOBRUNNING) {
4939                 /* In non-interactive shells, we _can_ get
4940                  * a keyboard signal here and be EINTRed,
4941                  * but we just loop back, waiting for command to complete.
4942                  *
4943                  * man bash:
4944                  * "If bash is waiting for a command to complete and receives
4945                  * a signal for which a trap has been set, the trap
4946                  * will not be executed until the command completes."
4947                  *
4948                  * Reality is that even if trap is not set, bash
4949                  * will not act on the signal until command completes.
4950                  * Try this. sleep5intoff.c:
4951                  * #include <signal.h>
4952                  * #include <unistd.h>
4953                  * int main() {
4954                  *         sigset_t set;
4955                  *         sigemptyset(&set);
4956                  *         sigaddset(&set, SIGINT);
4957                  *         sigaddset(&set, SIGQUIT);
4958                  *         sigprocmask(SIG_BLOCK, &set, NULL);
4959                  *         sleep(5);
4960                  *         return 0;
4961                  * }
4962                  * $ bash -c './sleep5intoff; echo hi'
4963                  * ^C^C^C^C <--- pressing ^C once a second
4964                  * $ _
4965                  * $ bash -c './sleep5intoff; echo hi'
4966                  * ^\^\^\^\hi <--- pressing ^\ (SIGQUIT)
4967                  * $ _
4968                  */
4969                 dowait(DOWAIT_BLOCK, jp);
4970         }
4971         INT_ON;
4972
4973         st = getstatus(jp);
4974 #if JOBS
4975         if (jp->jobctl) {
4976                 xtcsetpgrp(ttyfd, rootpid);
4977                 /*
4978                  * This is truly gross.
4979                  * If we're doing job control, then we did a TIOCSPGRP which
4980                  * caused us (the shell) to no longer be in the controlling
4981                  * session -- so we wouldn't have seen any ^C/SIGINT.  So, we
4982                  * intuit from the subprocess exit status whether a SIGINT
4983                  * occurred, and if so interrupt ourselves.  Yuck.  - mycroft
4984                  */
4985                 if (jp->sigint) /* TODO: do the same with all signals */
4986                         raise(SIGINT); /* ... by raise(jp->sig) instead? */
4987         }
4988         if (jp->state == JOBDONE)
4989 #endif
4990                 freejob(jp);
4991         return st;
4992 }
4993
4994 /*
4995  * return 1 if there are stopped jobs, otherwise 0
4996  */
4997 static int
4998 stoppedjobs(void)
4999 {
5000         struct job *jp;
5001         int retval;
5002
5003         retval = 0;
5004         if (job_warning)
5005                 goto out;
5006         jp = curjob;
5007         if (jp && jp->state == JOBSTOPPED) {
5008                 out2str("You have stopped jobs.\n");
5009                 job_warning = 2;
5010                 retval++;
5011         }
5012  out:
5013         return retval;
5014 }
5015
5016
5017 /* ============ redir.c
5018  *
5019  * Code for dealing with input/output redirection.
5020  */
5021
5022 #undef EMPTY
5023 #undef CLOSED
5024 #define EMPTY -2                /* marks an unused slot in redirtab */
5025 #define CLOSED -3               /* marks a slot of previously-closed fd */
5026
5027 /*
5028  * Open a file in noclobber mode.
5029  * The code was copied from bash.
5030  */
5031 static int
5032 noclobberopen(const char *fname)
5033 {
5034         int r, fd;
5035         struct stat finfo, finfo2;
5036
5037         /*
5038          * If the file exists and is a regular file, return an error
5039          * immediately.
5040          */
5041         r = stat(fname, &finfo);
5042         if (r == 0 && S_ISREG(finfo.st_mode)) {
5043                 errno = EEXIST;
5044                 return -1;
5045         }
5046
5047         /*
5048          * If the file was not present (r != 0), make sure we open it
5049          * exclusively so that if it is created before we open it, our open
5050          * will fail.  Make sure that we do not truncate an existing file.
5051          * Note that we don't turn on O_EXCL unless the stat failed -- if the
5052          * file was not a regular file, we leave O_EXCL off.
5053          */
5054         if (r != 0)
5055                 return open(fname, O_WRONLY|O_CREAT|O_EXCL, 0666);
5056         fd = open(fname, O_WRONLY|O_CREAT, 0666);
5057
5058         /* If the open failed, return the file descriptor right away. */
5059         if (fd < 0)
5060                 return fd;
5061
5062         /*
5063          * OK, the open succeeded, but the file may have been changed from a
5064          * non-regular file to a regular file between the stat and the open.
5065          * We are assuming that the O_EXCL open handles the case where FILENAME
5066          * did not exist and is symlinked to an existing file between the stat
5067          * and open.
5068          */
5069
5070         /*
5071          * If we can open it and fstat the file descriptor, and neither check
5072          * revealed that it was a regular file, and the file has not been
5073          * replaced, return the file descriptor.
5074          */
5075         if (fstat(fd, &finfo2) == 0
5076          && !S_ISREG(finfo2.st_mode)
5077          && finfo.st_dev == finfo2.st_dev
5078          && finfo.st_ino == finfo2.st_ino
5079         ) {
5080                 return fd;
5081         }
5082
5083         /* The file has been replaced.  badness. */
5084         close(fd);
5085         errno = EEXIST;
5086         return -1;
5087 }
5088
5089 /*
5090  * Handle here documents.  Normally we fork off a process to write the
5091  * data to a pipe.  If the document is short, we can stuff the data in
5092  * the pipe without forking.
5093  */
5094 /* openhere needs this forward reference */
5095 static void expandhere(union node *arg, int fd);
5096 static int
5097 openhere(union node *redir)
5098 {
5099         int pip[2];
5100         size_t len = 0;
5101
5102         if (pipe(pip) < 0)
5103                 ash_msg_and_raise_error("pipe call failed");
5104         if (redir->type == NHERE) {
5105                 len = strlen(redir->nhere.doc->narg.text);
5106                 if (len <= PIPE_BUF) {
5107                         full_write(pip[1], redir->nhere.doc->narg.text, len);
5108                         goto out;
5109                 }
5110         }
5111         if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) {
5112                 /* child */
5113                 close(pip[0]);
5114                 ignoresig(SIGINT);  //signal(SIGINT, SIG_IGN);
5115                 ignoresig(SIGQUIT); //signal(SIGQUIT, SIG_IGN);
5116                 ignoresig(SIGHUP);  //signal(SIGHUP, SIG_IGN);
5117                 ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN);
5118                 signal(SIGPIPE, SIG_DFL);
5119                 if (redir->type == NHERE)
5120                         full_write(pip[1], redir->nhere.doc->narg.text, len);
5121                 else /* NXHERE */
5122                         expandhere(redir->nhere.doc, pip[1]);
5123                 _exit(EXIT_SUCCESS);
5124         }
5125  out:
5126         close(pip[1]);
5127         return pip[0];
5128 }
5129
5130 static int
5131 openredirect(union node *redir)
5132 {
5133         char *fname;
5134         int f;
5135
5136         switch (redir->nfile.type) {
5137 /* Can't happen, our single caller does this itself */
5138 //      case NTOFD:
5139 //      case NFROMFD:
5140 //              return -1;
5141         case NHERE:
5142         case NXHERE:
5143                 return openhere(redir);
5144         }
5145
5146         /* For N[X]HERE, reading redir->nfile.expfname would touch beyond
5147          * allocated space. Do it only when we know it is safe.
5148          */
5149         fname = redir->nfile.expfname;
5150
5151         switch (redir->nfile.type) {
5152         default:
5153 #if DEBUG
5154                 abort();
5155 #endif
5156         case NFROM:
5157                 f = open(fname, O_RDONLY);
5158                 if (f < 0)
5159                         goto eopen;
5160                 break;
5161         case NFROMTO:
5162                 f = open(fname, O_RDWR|O_CREAT, 0666);
5163                 if (f < 0)
5164                         goto ecreate;
5165                 break;
5166         case NTO:
5167 #if ENABLE_ASH_BASH_COMPAT
5168         case NTO2:
5169 #endif
5170                 /* Take care of noclobber mode. */
5171                 if (Cflag) {
5172                         f = noclobberopen(fname);
5173                         if (f < 0)
5174                                 goto ecreate;
5175                         break;
5176                 }
5177                 /* FALLTHROUGH */
5178         case NCLOBBER:
5179                 f = open(fname, O_WRONLY|O_CREAT|O_TRUNC, 0666);
5180                 if (f < 0)
5181                         goto ecreate;
5182                 break;
5183         case NAPPEND:
5184                 f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666);
5185                 if (f < 0)
5186                         goto ecreate;
5187                 break;
5188         }
5189
5190         return f;
5191  ecreate:
5192         ash_msg_and_raise_error("can't create %s: %s", fname, errmsg(errno, "nonexistent directory"));
5193  eopen:
5194         ash_msg_and_raise_error("can't open %s: %s", fname, errmsg(errno, "no such file"));
5195 }
5196
5197 /*
5198  * Copy a file descriptor to be >= to.  Returns -1
5199  * if the source file descriptor is closed, EMPTY if there are no unused
5200  * file descriptors left.
5201  */
5202 /* 0x800..00: bit to set in "to" to request dup2 instead of fcntl(F_DUPFD).
5203  * old code was doing close(to) prior to copyfd() to achieve the same */
5204 enum {
5205         COPYFD_EXACT   = (int)~(INT_MAX),
5206         COPYFD_RESTORE = (int)((unsigned)COPYFD_EXACT >> 1),
5207 };
5208 static int
5209 copyfd(int from, int to)
5210 {
5211         int newfd;
5212
5213         if (to & COPYFD_EXACT) {
5214                 to &= ~COPYFD_EXACT;
5215                 /*if (from != to)*/
5216                         newfd = dup2(from, to);
5217         } else {
5218                 newfd = fcntl(from, F_DUPFD, to);
5219         }
5220         if (newfd < 0) {
5221                 if (errno == EMFILE)
5222                         return EMPTY;
5223                 /* Happens when source fd is not open: try "echo >&99" */
5224                 ash_msg_and_raise_error("%d: %m", from);
5225         }
5226         return newfd;
5227 }
5228
5229 /* Struct def and variable are moved down to the first usage site */
5230 struct two_fd_t {
5231         int orig, copy;
5232 };
5233 struct redirtab {
5234         struct redirtab *next;
5235         int nullredirs;
5236         int pair_count;
5237         struct two_fd_t two_fd[];
5238 };
5239 #define redirlist (G_var.redirlist)
5240
5241 static int
5242 need_to_remember(struct redirtab *rp, int fd)
5243 {
5244         int i;
5245
5246         if (!rp) /* remembering was not requested */
5247                 return 0;
5248
5249         for (i = 0; i < rp->pair_count; i++) {
5250                 if (rp->two_fd[i].orig == fd) {
5251                         /* already remembered */
5252                         return 0;
5253                 }
5254         }
5255         return 1;
5256 }
5257
5258 /* "hidden" fd is a fd used to read scripts, or a copy of such */
5259 static int
5260 is_hidden_fd(struct redirtab *rp, int fd)
5261 {
5262         int i;
5263         struct parsefile *pf;
5264
5265         if (fd == -1)
5266                 return 0;
5267         /* Check open scripts' fds */
5268         pf = g_parsefile;
5269         while (pf) {
5270                 /* We skip pf_fd == 0 case because of the following case:
5271                  * $ ash  # running ash interactively
5272                  * $ . ./script.sh
5273                  * and in script.sh: "exec 9>&0".
5274                  * Even though top-level pf_fd _is_ 0,
5275                  * it's still ok to use it: "read" builtin uses it,
5276                  * why should we cripple "exec" builtin?
5277                  */
5278                 if (pf->pf_fd > 0 && fd == pf->pf_fd) {
5279                         return 1;
5280                 }
5281                 pf = pf->prev;
5282         }
5283
5284         if (!rp)
5285                 return 0;
5286         /* Check saved fds of redirects */
5287         fd |= COPYFD_RESTORE;
5288         for (i = 0; i < rp->pair_count; i++) {
5289                 if (rp->two_fd[i].copy == fd) {
5290                         return 1;
5291                 }
5292         }
5293         return 0;
5294 }
5295
5296 /*
5297  * Process a list of redirection commands.  If the REDIR_PUSH flag is set,
5298  * old file descriptors are stashed away so that the redirection can be
5299  * undone by calling popredir.
5300  */
5301 /* flags passed to redirect */
5302 #define REDIR_PUSH    01        /* save previous values of file descriptors */
5303 #define REDIR_SAVEFD2 03        /* set preverrout */
5304 static void
5305 redirect(union node *redir, int flags)
5306 {
5307         struct redirtab *sv;
5308         int sv_pos;
5309         int i;
5310         int fd;
5311         int newfd;
5312         int copied_fd2 = -1;
5313
5314         g_nullredirs++;
5315         if (!redir) {
5316                 return;
5317         }
5318
5319         sv = NULL;
5320         sv_pos = 0;
5321         INT_OFF;
5322         if (flags & REDIR_PUSH) {
5323                 union node *tmp = redir;
5324                 do {
5325                         sv_pos++;
5326 #if ENABLE_ASH_BASH_COMPAT
5327                         if (tmp->nfile.type == NTO2)
5328                                 sv_pos++;
5329 #endif
5330                         tmp = tmp->nfile.next;
5331                 } while (tmp);
5332                 sv = ckmalloc(sizeof(*sv) + sv_pos * sizeof(sv->two_fd[0]));
5333                 sv->next = redirlist;
5334                 sv->pair_count = sv_pos;
5335                 redirlist = sv;
5336                 sv->nullredirs = g_nullredirs - 1;
5337                 g_nullredirs = 0;
5338                 while (sv_pos > 0) {
5339                         sv_pos--;
5340                         sv->two_fd[sv_pos].orig = sv->two_fd[sv_pos].copy = EMPTY;
5341                 }
5342         }
5343
5344         do {
5345                 int right_fd = -1;
5346                 fd = redir->nfile.fd;
5347                 if (redir->nfile.type == NTOFD || redir->nfile.type == NFROMFD) {
5348                         right_fd = redir->ndup.dupfd;
5349                         //bb_error_msg("doing %d > %d", fd, right_fd);
5350                         /* redirect from/to same file descriptor? */
5351                         if (right_fd == fd)
5352                                 continue;
5353                         /* "echo >&10" and 10 is a fd opened to a sh script? */
5354                         if (is_hidden_fd(sv, right_fd)) {
5355                                 errno = EBADF; /* as if it is closed */
5356                                 ash_msg_and_raise_error("%d: %m", right_fd);
5357                         }
5358                         newfd = -1;
5359                 } else {
5360                         newfd = openredirect(redir); /* always >= 0 */
5361                         if (fd == newfd) {
5362                                 /* Descriptor wasn't open before redirect.
5363                                  * Mark it for close in the future */
5364                                 if (need_to_remember(sv, fd)) {
5365                                         goto remember_to_close;
5366                                 }
5367                                 continue;
5368                         }
5369                 }
5370 #if ENABLE_ASH_BASH_COMPAT
5371  redirect_more:
5372 #endif
5373                 if (need_to_remember(sv, fd)) {
5374                         /* Copy old descriptor */
5375                         /* Careful to not accidentally "save"
5376                          * to the same fd as right side fd in N>&M */
5377                         int minfd = right_fd < 10 ? 10 : right_fd + 1;
5378                         i = fcntl(fd, F_DUPFD, minfd);
5379 /* You'd expect copy to be CLOEXECed. Currently these extra "saved" fds
5380  * are closed in popredir() in the child, preventing them from leaking
5381  * into child. (popredir() also cleans up the mess in case of failures)
5382  */
5383                         if (i == -1) {
5384                                 i = errno;
5385                                 if (i != EBADF) {
5386                                         /* Strange error (e.g. "too many files" EMFILE?) */
5387                                         if (newfd >= 0)
5388                                                 close(newfd);
5389                                         errno = i;
5390                                         ash_msg_and_raise_error("%d: %m", fd);
5391                                         /* NOTREACHED */
5392                                 }
5393                                 /* EBADF: it is not open - good, remember to close it */
5394  remember_to_close:
5395                                 i = CLOSED;
5396                         } else { /* fd is open, save its copy */
5397                                 /* "exec fd>&-" should not close fds
5398                                  * which point to script file(s).
5399                                  * Force them to be restored afterwards */
5400                                 if (is_hidden_fd(sv, fd))
5401                                         i |= COPYFD_RESTORE;
5402                         }
5403                         if (fd == 2)
5404                                 copied_fd2 = i;
5405                         sv->two_fd[sv_pos].orig = fd;
5406                         sv->two_fd[sv_pos].copy = i;
5407                         sv_pos++;
5408                 }
5409                 if (newfd < 0) {
5410                         /* NTOFD/NFROMFD: copy redir->ndup.dupfd to fd */
5411                         if (redir->ndup.dupfd < 0) { /* "fd>&-" */
5412                                 /* Don't want to trigger debugging */
5413                                 if (fd != -1)
5414                                         close(fd);
5415                         } else {
5416                                 copyfd(redir->ndup.dupfd, fd | COPYFD_EXACT);
5417                         }
5418                 } else if (fd != newfd) { /* move newfd to fd */
5419                         copyfd(newfd, fd | COPYFD_EXACT);
5420 #if ENABLE_ASH_BASH_COMPAT
5421                         if (!(redir->nfile.type == NTO2 && fd == 2))
5422 #endif
5423                                 close(newfd);
5424                 }
5425 #if ENABLE_ASH_BASH_COMPAT
5426                 if (redir->nfile.type == NTO2 && fd == 1) {
5427                         /* We already redirected it to fd 1, now copy it to 2 */
5428                         newfd = 1;
5429                         fd = 2;
5430                         goto redirect_more;
5431                 }
5432 #endif
5433         } while ((redir = redir->nfile.next) != NULL);
5434
5435         INT_ON;
5436         if ((flags & REDIR_SAVEFD2) && copied_fd2 >= 0)
5437                 preverrout_fd = copied_fd2;
5438 }
5439
5440 /*
5441  * Undo the effects of the last redirection.
5442  */
5443 static void
5444 popredir(int drop, int restore)
5445 {
5446         struct redirtab *rp;
5447         int i;
5448
5449         if (--g_nullredirs >= 0 || redirlist == NULL)
5450                 return;
5451         INT_OFF;
5452         rp = redirlist;
5453         for (i = 0; i < rp->pair_count; i++) {
5454                 int fd = rp->two_fd[i].orig;
5455                 int copy = rp->two_fd[i].copy;
5456                 if (copy == CLOSED) {
5457                         if (!drop)
5458                                 close(fd);
5459                         continue;
5460                 }
5461                 if (copy != EMPTY) {
5462                         if (!drop || (restore && (copy & COPYFD_RESTORE))) {
5463                                 copy &= ~COPYFD_RESTORE;
5464                                 /*close(fd);*/
5465                                 copyfd(copy, fd | COPYFD_EXACT);
5466                         }
5467                         close(copy & ~COPYFD_RESTORE);
5468                 }
5469         }
5470         redirlist = rp->next;
5471         g_nullredirs = rp->nullredirs;
5472         free(rp);
5473         INT_ON;
5474 }
5475
5476 /*
5477  * Undo all redirections.  Called on error or interrupt.
5478  */
5479
5480 /*
5481  * Discard all saved file descriptors.
5482  */
5483 static void
5484 clearredir(int drop)
5485 {
5486         for (;;) {
5487                 g_nullredirs = 0;
5488                 if (!redirlist)
5489                         break;
5490                 popredir(drop, /*restore:*/ 0);
5491         }
5492 }
5493
5494 static int
5495 redirectsafe(union node *redir, int flags)
5496 {
5497         int err;
5498         volatile int saveint;
5499         struct jmploc *volatile savehandler = exception_handler;
5500         struct jmploc jmploc;
5501
5502         SAVE_INT(saveint);
5503         /* "echo 9>/dev/null; echo >&9; echo result: $?" - result should be 1, not 2! */
5504         err = setjmp(jmploc.loc); // huh?? was = setjmp(jmploc.loc) * 2;
5505         if (!err) {
5506                 exception_handler = &jmploc;
5507                 redirect(redir, flags);
5508         }
5509         exception_handler = savehandler;
5510         if (err && exception_type != EXERROR)
5511                 longjmp(exception_handler->loc, 1);
5512         RESTORE_INT(saveint);
5513         return err;
5514 }
5515
5516
5517 /* ============ Routines to expand arguments to commands
5518  *
5519  * We have to deal with backquotes, shell variables, and file metacharacters.
5520  */
5521
5522 #if ENABLE_SH_MATH_SUPPORT
5523 static arith_t
5524 ash_arith(const char *s)
5525 {
5526         arith_state_t math_state;
5527         arith_t result;
5528
5529         math_state.lookupvar = lookupvar;
5530         math_state.setvar    = setvar0;
5531         //math_state.endofname = endofname;
5532
5533         INT_OFF;
5534         result = arith(&math_state, s);
5535         if (math_state.errmsg)
5536                 ash_msg_and_raise_error(math_state.errmsg);
5537         INT_ON;
5538
5539         return result;
5540 }
5541 #endif
5542
5543 /*
5544  * expandarg flags
5545  */
5546 #define EXP_FULL        0x1     /* perform word splitting & file globbing */
5547 #define EXP_TILDE       0x2     /* do normal tilde expansion */
5548 #define EXP_VARTILDE    0x4     /* expand tildes in an assignment */
5549 #define EXP_REDIR       0x8     /* file glob for a redirection (1 match only) */
5550 #define EXP_CASE        0x10    /* keeps quotes around for CASE pattern */
5551 #define EXP_QPAT        0x20    /* pattern in quoted parameter expansion */
5552 #define EXP_VARTILDE2   0x40    /* expand tildes after colons only */
5553 #define EXP_WORD        0x80    /* expand word in parameter expansion */
5554 #define EXP_QUOTED      0x100   /* expand word in double quotes */
5555 /*
5556  * rmescape() flags
5557  */
5558 #define RMESCAPE_ALLOC  0x1     /* Allocate a new string */
5559 #define RMESCAPE_GLOB   0x2     /* Add backslashes for glob */
5560 #define RMESCAPE_GROW   0x8     /* Grow strings instead of stalloc */
5561 #define RMESCAPE_HEAP   0x10    /* Malloc strings instead of stalloc */
5562 #define RMESCAPE_SLASH  0x20    /* Stop globbing after slash */
5563
5564 /* Add CTLESC when necessary. */
5565 #define QUOTES_ESC     (EXP_FULL | EXP_CASE | EXP_QPAT | EXP_REDIR)
5566 /* Do not skip NUL characters. */
5567 #define QUOTES_KEEPNUL EXP_TILDE
5568
5569 /*
5570  * Structure specifying which parts of the string should be searched
5571  * for IFS characters.
5572  */
5573 struct ifsregion {
5574         struct ifsregion *next; /* next region in list */
5575         int begoff;             /* offset of start of region */
5576         int endoff;             /* offset of end of region */
5577         int nulonly;            /* search for nul bytes only */
5578 };
5579
5580 struct arglist {
5581         struct strlist *list;
5582         struct strlist **lastp;
5583 };
5584
5585 /* output of current string */
5586 static char *expdest;
5587 /* list of back quote expressions */
5588 static struct nodelist *argbackq;
5589 /* first struct in list of ifs regions */
5590 static struct ifsregion ifsfirst;
5591 /* last struct in list */
5592 static struct ifsregion *ifslastp;
5593 /* holds expanded arg list */
5594 static struct arglist exparg;
5595
5596 /*
5597  * Our own itoa().
5598  */
5599 #if !ENABLE_SH_MATH_SUPPORT
5600 /* cvtnum() is used even if math support is off (to prepare $? values and such) */
5601 typedef long arith_t;
5602 # define ARITH_FMT "%ld"
5603 #endif
5604 static int
5605 cvtnum(arith_t num)
5606 {
5607         int len;
5608
5609         expdest = makestrspace(sizeof(arith_t)*3 + 2, expdest);
5610         len = fmtstr(expdest, sizeof(arith_t)*3 + 2, ARITH_FMT, num);
5611         STADJUST(len, expdest);
5612         return len;
5613 }
5614
5615 static size_t
5616 esclen(const char *start, const char *p)
5617 {
5618         size_t esc = 0;
5619
5620         while (p > start && (unsigned char)*--p == CTLESC) {
5621                 esc++;
5622         }
5623         return esc;
5624 }
5625
5626 /*
5627  * Remove any CTLESC characters from a string.
5628  */
5629 static char *
5630 rmescapes(char *str, int flag)
5631 {
5632         static const char qchars[] ALIGN1 = {
5633                 IF_ASH_BASH_COMPAT('/',) CTLESC, CTLQUOTEMARK, '\0' };
5634
5635         char *p, *q, *r;
5636         unsigned inquotes;
5637         unsigned protect_against_glob;
5638         unsigned globbing;
5639         IF_ASH_BASH_COMPAT(unsigned slash = flag & RMESCAPE_SLASH;)
5640
5641         p = strpbrk(str, qchars IF_ASH_BASH_COMPAT(+ !slash));
5642         if (!p)
5643                 return str;
5644
5645         q = p;
5646         r = str;
5647         if (flag & RMESCAPE_ALLOC) {
5648                 size_t len = p - str;
5649                 size_t fulllen = len + strlen(p) + 1;
5650
5651                 if (flag & RMESCAPE_GROW) {
5652                         int strloc = str - (char *)stackblock();
5653                         r = makestrspace(fulllen, expdest);
5654                         /* p and str may be invalidated by makestrspace */
5655                         str = (char *)stackblock() + strloc;
5656                         p = str + len;
5657                 } else if (flag & RMESCAPE_HEAP) {
5658                         r = ckmalloc(fulllen);
5659                 } else {
5660                         r = stalloc(fulllen);
5661                 }
5662                 q = r;
5663                 if (len > 0) {
5664                         q = (char *)memcpy(q, str, len) + len;
5665                 }
5666         }
5667
5668         inquotes = 0;
5669         globbing = flag & RMESCAPE_GLOB;
5670         protect_against_glob = globbing;
5671         while (*p) {
5672                 if ((unsigned char)*p == CTLQUOTEMARK) {
5673 // Note: both inquotes and protect_against_glob only affect whether
5674                         inquotes = ~inquotes;
5675                         p++;
5676                         protect_against_glob = globbing;
5677                         continue;
5678                 }
5679                 if ((unsigned char)*p == CTLESC) {
5680                         p++;
5681 #if DEBUG
5682                         if (*p == '\0')
5683                                 ash_msg_and_raise_error("CTLESC at EOL (shouldn't happen)");
5684 #endif
5685                         if (protect_against_glob) {
5686                                 *q++ = '\\';
5687                         }
5688                 } else if (*p == '\\' && !inquotes) {
5689                         /* naked back slash */
5690                         protect_against_glob = 0;
5691                         goto copy;
5692                 }
5693 #if ENABLE_ASH_BASH_COMPAT
5694                 else if (*p == '/' && slash) {
5695                         /* stop handling globbing and mark location of slash */
5696                         globbing = slash = 0;
5697                         *p = CTLESC;
5698                 }
5699 #endif
5700                 protect_against_glob = globbing;
5701  copy:
5702                 *q++ = *p++;
5703         }
5704         *q = '\0';
5705         if (flag & RMESCAPE_GROW) {
5706                 expdest = r;
5707                 STADJUST(q - r + 1, expdest);
5708         }
5709         return r;
5710 }
5711 #define pmatch(a, b) !fnmatch((a), (b), 0)
5712
5713 /*
5714  * Prepare a pattern for a expmeta (internal glob(3)) call.
5715  *
5716  * Returns an stalloced string.
5717  */
5718 static char *
5719 preglob(const char *pattern, int flag)
5720 {
5721         return rmescapes((char *)pattern, flag | RMESCAPE_GLOB);
5722 }
5723
5724 /*
5725  * Put a string on the stack.
5726  */
5727 static void
5728 memtodest(const char *p, size_t len, int syntax, int quotes)
5729 {
5730         char *q;
5731
5732         if (!len)
5733                 return;
5734
5735         q = makestrspace((quotes & QUOTES_ESC) ? len * 2 : len, expdest);
5736
5737         do {
5738                 unsigned char c = *p++;
5739                 if (c) {
5740                         int n = SIT(c, syntax);
5741                         if ((quotes & QUOTES_ESC)
5742                          && ((n == CCTL)
5743                             ||  (((quotes & EXP_FULL) || syntax != BASESYNTAX)
5744                                 && n == CBACK)
5745                                 )
5746                         ) {
5747                                 USTPUTC(CTLESC, q);
5748                         }
5749                 } else if (!(quotes & QUOTES_KEEPNUL))
5750                         continue;
5751                 USTPUTC(c, q);
5752         } while (--len);
5753
5754         expdest = q;
5755 }
5756
5757 static size_t
5758 strtodest(const char *p, int syntax, int quotes)
5759 {
5760         size_t len = strlen(p);
5761         memtodest(p, len, syntax, quotes);
5762         return len;
5763 }
5764
5765 /*
5766  * Record the fact that we have to scan this region of the
5767  * string for IFS characters.
5768  */
5769 static void
5770 recordregion(int start, int end, int nulonly)
5771 {
5772         struct ifsregion *ifsp;
5773
5774         if (ifslastp == NULL) {
5775                 ifsp = &ifsfirst;
5776         } else {
5777                 INT_OFF;
5778                 ifsp = ckzalloc(sizeof(*ifsp));
5779                 /*ifsp->next = NULL; - ckzalloc did it */
5780                 ifslastp->next = ifsp;
5781                 INT_ON;
5782         }
5783         ifslastp = ifsp;
5784         ifslastp->begoff = start;
5785         ifslastp->endoff = end;
5786         ifslastp->nulonly = nulonly;
5787 }
5788
5789 static void
5790 removerecordregions(int endoff)
5791 {
5792         if (ifslastp == NULL)
5793                 return;
5794
5795         if (ifsfirst.endoff > endoff) {
5796                 while (ifsfirst.next) {
5797                         struct ifsregion *ifsp;
5798                         INT_OFF;
5799                         ifsp = ifsfirst.next->next;
5800                         free(ifsfirst.next);
5801                         ifsfirst.next = ifsp;
5802                         INT_ON;
5803                 }
5804                 if (ifsfirst.begoff > endoff) {
5805                         ifslastp = NULL;
5806                 } else {
5807                         ifslastp = &ifsfirst;
5808                         ifsfirst.endoff = endoff;
5809                 }
5810                 return;
5811         }
5812
5813         ifslastp = &ifsfirst;
5814         while (ifslastp->next && ifslastp->next->begoff < endoff)
5815                 ifslastp = ifslastp->next;
5816         while (ifslastp->next) {
5817                 struct ifsregion *ifsp;
5818                 INT_OFF;
5819                 ifsp = ifslastp->next->next;
5820                 free(ifslastp->next);
5821                 ifslastp->next = ifsp;
5822                 INT_ON;
5823         }
5824         if (ifslastp->endoff > endoff)
5825                 ifslastp->endoff = endoff;
5826 }
5827
5828 static char *
5829 exptilde(char *startp, char *p, int flags)
5830 {
5831         unsigned char c;
5832         char *name;
5833         struct passwd *pw;
5834         const char *home;
5835         int quotes = flags & QUOTES_ESC;
5836
5837         name = p + 1;
5838
5839         while ((c = *++p) != '\0') {
5840                 switch (c) {
5841                 case CTLESC:
5842                         return startp;
5843                 case CTLQUOTEMARK:
5844                         return startp;
5845                 case ':':
5846                         if (flags & EXP_VARTILDE)
5847                                 goto done;
5848                         break;
5849                 case '/':
5850                 case CTLENDVAR:
5851                         goto done;
5852                 }
5853         }
5854  done:
5855         *p = '\0';
5856         if (*name == '\0') {
5857                 home = lookupvar("HOME");
5858         } else {
5859                 pw = getpwnam(name);
5860                 if (pw == NULL)
5861                         goto lose;
5862                 home = pw->pw_dir;
5863         }
5864         if (!home || !*home)
5865                 goto lose;
5866         *p = c;
5867         strtodest(home, SQSYNTAX, quotes);
5868         return p;
5869  lose:
5870         *p = c;
5871         return startp;
5872 }
5873
5874 /*
5875  * Execute a command inside back quotes.  If it's a builtin command, we
5876  * want to save its output in a block obtained from malloc.  Otherwise
5877  * we fork off a subprocess and get the output of the command via a pipe.
5878  * Should be called with interrupts off.
5879  */
5880 struct backcmd {                /* result of evalbackcmd */
5881         int fd;                 /* file descriptor to read from */
5882         int nleft;              /* number of chars in buffer */
5883         char *buf;              /* buffer */
5884         struct job *jp;         /* job structure for command */
5885 };
5886
5887 /* These forward decls are needed to use "eval" code for backticks handling: */
5888 #define EV_EXIT 01              /* exit after evaluating tree */
5889 static int evaltree(union node *, int);
5890
5891 static void FAST_FUNC
5892 evalbackcmd(union node *n, struct backcmd *result)
5893 {
5894         int saveherefd;
5895
5896         result->fd = -1;
5897         result->buf = NULL;
5898         result->nleft = 0;
5899         result->jp = NULL;
5900         if (n == NULL)
5901                 goto out;
5902
5903         saveherefd = herefd;
5904         herefd = -1;
5905
5906         {
5907                 int pip[2];
5908                 struct job *jp;
5909
5910                 if (pipe(pip) < 0)
5911                         ash_msg_and_raise_error("pipe call failed");
5912                 jp = makejob(/*n,*/ 1);
5913                 if (forkshell(jp, n, FORK_NOJOB) == 0) {
5914                         FORCE_INT_ON;
5915                         close(pip[0]);
5916                         if (pip[1] != 1) {
5917                                 /*close(1);*/
5918                                 copyfd(pip[1], 1 | COPYFD_EXACT);
5919                                 close(pip[1]);
5920                         }
5921                         eflag = 0;
5922                         evaltree(n, EV_EXIT); /* actually evaltreenr... */
5923                         /* NOTREACHED */
5924                 }
5925                 close(pip[1]);
5926                 result->fd = pip[0];
5927                 result->jp = jp;
5928         }
5929         herefd = saveherefd;
5930  out:
5931         TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
5932                 result->fd, result->buf, result->nleft, result->jp));
5933 }
5934
5935 /*
5936  * Expand stuff in backwards quotes.
5937  */
5938 static void
5939 expbackq(union node *cmd, int flag)
5940 {
5941         struct backcmd in;
5942         int i;
5943         char buf[128];
5944         char *p;
5945         char *dest;
5946         int startloc;
5947         int syntax = flag & EXP_QUOTED ? DQSYNTAX : BASESYNTAX;
5948         struct stackmark smark;
5949
5950         INT_OFF;
5951         startloc = expdest - (char *)stackblock();
5952         pushstackmark(&smark, startloc);
5953         evalbackcmd(cmd, &in);
5954         popstackmark(&smark);
5955
5956         p = in.buf;
5957         i = in.nleft;
5958         if (i == 0)
5959                 goto read;
5960         for (;;) {
5961                 memtodest(p, i, syntax, flag & QUOTES_ESC);
5962  read:
5963                 if (in.fd < 0)
5964                         break;
5965                 i = nonblock_immune_read(in.fd, buf, sizeof(buf));
5966                 TRACE(("expbackq: read returns %d\n", i));
5967                 if (i <= 0)
5968                         break;
5969                 p = buf;
5970         }
5971
5972         free(in.buf);
5973         if (in.fd >= 0) {
5974                 close(in.fd);
5975                 back_exitstatus = waitforjob(in.jp);
5976         }
5977         INT_ON;
5978
5979         /* Eat all trailing newlines */
5980         dest = expdest;
5981         for (; dest > (char *)stackblock() && dest[-1] == '\n';)
5982                 STUNPUTC(dest);
5983         expdest = dest;
5984
5985         if (!(flag & EXP_QUOTED))
5986                 recordregion(startloc, dest - (char *)stackblock(), 0);
5987         TRACE(("evalbackq: size:%d:'%.*s'\n",
5988                 (int)((dest - (char *)stackblock()) - startloc),
5989                 (int)((dest - (char *)stackblock()) - startloc),
5990                 stackblock() + startloc));
5991 }
5992
5993 #if ENABLE_SH_MATH_SUPPORT
5994 /*
5995  * Expand arithmetic expression.  Backup to start of expression,
5996  * evaluate, place result in (backed up) result, adjust string position.
5997  */
5998 static void
5999 expari(int flag)
6000 {
6001         char *p, *start;
6002         int begoff;
6003         int len;
6004
6005         /* ifsfree(); */
6006
6007         /*
6008          * This routine is slightly over-complicated for
6009          * efficiency.  Next we scan backwards looking for the
6010          * start of arithmetic.
6011          */
6012         start = stackblock();
6013         p = expdest - 1;
6014         *p = '\0';
6015         p--;
6016         while (1) {
6017                 int esc;
6018
6019                 while ((unsigned char)*p != CTLARI) {
6020                         p--;
6021 #if DEBUG
6022                         if (p < start) {
6023                                 ash_msg_and_raise_error("missing CTLARI (shouldn't happen)");
6024                         }
6025 #endif
6026                 }
6027
6028                 esc = esclen(start, p);
6029                 if (!(esc % 2)) {
6030                         break;
6031                 }
6032
6033                 p -= esc + 1;
6034         }
6035
6036         begoff = p - start;
6037
6038         removerecordregions(begoff);
6039
6040         expdest = p;
6041
6042         if (flag & QUOTES_ESC)
6043                 rmescapes(p + 1, 0);
6044
6045         len = cvtnum(ash_arith(p + 1));
6046
6047         if (!(flag & EXP_QUOTED))
6048                 recordregion(begoff, begoff + len, 0);
6049 }
6050 #endif
6051
6052 /* argstr needs it */
6053 static char *evalvar(char *p, int flags, struct strlist *var_str_list);
6054
6055 /*
6056  * Perform variable and command substitution.  If EXP_FULL is set, output CTLESC
6057  * characters to allow for further processing.  Otherwise treat
6058  * $@ like $* since no splitting will be performed.
6059  *
6060  * var_str_list (can be NULL) is a list of "VAR=val" strings which take precedence
6061  * over shell varables. Needed for "A=a B=$A; echo $B" case - we use it
6062  * for correct expansion of "B=$A" word.
6063  */
6064 static void
6065 argstr(char *p, int flags, struct strlist *var_str_list)
6066 {
6067         static const char spclchars[] ALIGN1 = {
6068                 '=',
6069                 ':',
6070                 CTLQUOTEMARK,
6071                 CTLENDVAR,
6072                 CTLESC,
6073                 CTLVAR,
6074                 CTLBACKQ,
6075 #if ENABLE_SH_MATH_SUPPORT
6076                 CTLENDARI,
6077 #endif
6078                 '\0'
6079         };
6080         const char *reject = spclchars;
6081         int breakall = (flags & (EXP_WORD | EXP_QUOTED)) == EXP_WORD;
6082         int inquotes;
6083         size_t length;
6084         int startloc;
6085
6086         if (!(flags & EXP_VARTILDE)) {
6087                 reject += 2;
6088         } else if (flags & EXP_VARTILDE2) {
6089                 reject++;
6090         }
6091         inquotes = 0;
6092         length = 0;
6093         if (flags & EXP_TILDE) {
6094                 char *q;
6095
6096                 flags &= ~EXP_TILDE;
6097  tilde:
6098                 q = p;
6099                 if (*q == '~')
6100                         p = exptilde(p, q, flags);
6101         }
6102  start:
6103         startloc = expdest - (char *)stackblock();
6104         for (;;) {
6105                 unsigned char c;
6106
6107                 length += strcspn(p + length, reject);
6108                 c = p[length];
6109                 if (c) {
6110                         if (!(c & 0x80)
6111                         IF_SH_MATH_SUPPORT(|| c == CTLENDARI)
6112                         ) {
6113                                 /* c == '=' || c == ':' || c == CTLENDARI */
6114                                 length++;
6115                         }
6116                 }
6117                 if (length > 0) {
6118                         int newloc;
6119                         expdest = stack_nputstr(p, length, expdest);
6120                         newloc = expdest - (char *)stackblock();
6121                         if (breakall && !inquotes && newloc > startloc) {
6122                                 recordregion(startloc, newloc, 0);
6123                         }
6124                         startloc = newloc;
6125                 }
6126                 p += length + 1;
6127                 length = 0;
6128
6129                 switch (c) {
6130                 case '\0':
6131                         goto breakloop;
6132                 case '=':
6133                         if (flags & EXP_VARTILDE2) {
6134                                 p--;
6135                                 continue;
6136                         }
6137                         flags |= EXP_VARTILDE2;
6138                         reject++;
6139                         /* fall through */
6140                 case ':':
6141                         /*
6142                          * sort of a hack - expand tildes in variable
6143                          * assignments (after the first '=' and after ':'s).
6144                          */
6145                         if (*--p == '~') {
6146                                 goto tilde;
6147                         }
6148                         continue;
6149                 }
6150
6151                 switch (c) {
6152                 case CTLENDVAR: /* ??? */
6153                         goto breakloop;
6154                 case CTLQUOTEMARK:
6155                         inquotes ^= EXP_QUOTED;
6156                         /* "$@" syntax adherence hack */
6157                         if (inquotes && !memcmp(p, dolatstr + 1, DOLATSTRLEN - 1)) {
6158                                 p = evalvar(p + 1, flags | inquotes, /* var_str_list: */ NULL) + 1;
6159                                 goto start;
6160                         }
6161  addquote:
6162                         if (flags & QUOTES_ESC) {
6163                                 p--;
6164                                 length++;
6165                                 startloc++;
6166                         }
6167                         break;
6168                 case CTLESC:
6169                         startloc++;
6170                         length++;
6171
6172                         /*
6173                          * Quoted parameter expansion pattern: remove quote
6174                          * unless inside inner quotes or we have a literal
6175                          * backslash.
6176                          */
6177                         if (((flags | inquotes) & (EXP_QPAT | EXP_QUOTED)) ==
6178                             EXP_QPAT && *p != '\\')
6179                                 break;
6180
6181                         goto addquote;
6182                 case CTLVAR:
6183                         TRACE(("argstr: evalvar('%s')\n", p));
6184                         p = evalvar(p, flags | inquotes, var_str_list);
6185                         TRACE(("argstr: evalvar:'%s'\n", (char *)stackblock()));
6186                         goto start;
6187                 case CTLBACKQ:
6188                         expbackq(argbackq->n, flags | inquotes);
6189                         argbackq = argbackq->next;
6190                         goto start;
6191 #if ENABLE_SH_MATH_SUPPORT
6192                 case CTLENDARI:
6193                         p--;
6194                         expari(flags | inquotes);
6195                         goto start;
6196 #endif
6197                 }
6198         }
6199  breakloop: ;
6200 }
6201
6202 static char *
6203 scanleft(char *startp, char *rmesc, char *rmescend UNUSED_PARAM,
6204                 char *pattern, int quotes, int zero)
6205 {
6206         char *loc, *loc2;
6207         char c;
6208
6209         loc = startp;
6210         loc2 = rmesc;
6211         do {
6212                 int match;
6213                 const char *s = loc2;
6214
6215                 c = *loc2;
6216                 if (zero) {
6217                         *loc2 = '\0';
6218                         s = rmesc;
6219                 }
6220                 match = pmatch(pattern, s);
6221
6222                 *loc2 = c;
6223                 if (match)
6224                         return loc;
6225                 if (quotes && (unsigned char)*loc == CTLESC)
6226                         loc++;
6227                 loc++;
6228                 loc2++;
6229         } while (c);
6230         return NULL;
6231 }
6232
6233 static char *
6234 scanright(char *startp, char *rmesc, char *rmescend,
6235                 char *pattern, int quotes, int match_at_start)
6236 {
6237 #if !ENABLE_ASH_OPTIMIZE_FOR_SIZE
6238         int try2optimize = match_at_start;
6239 #endif
6240         int esc = 0;
6241         char *loc;
6242         char *loc2;
6243
6244         /* If we called by "${v/pattern/repl}" or "${v//pattern/repl}":
6245          * startp="escaped_value_of_v" rmesc="raw_value_of_v"
6246          * rmescend=""(ptr to NUL in rmesc) pattern="pattern" quotes=match_at_start=1
6247          * Logic:
6248          * loc starts at NUL at the end of startp, loc2 starts at the end of rmesc,
6249          * and on each iteration they go back two/one char until they reach the beginning.
6250          * We try to find a match in "raw_value_of_v", "raw_value_of_", "raw_value_of" etc.
6251          */
6252         /* TODO: document in what other circumstances we are called. */
6253
6254         for (loc = pattern - 1, loc2 = rmescend; loc >= startp; loc2--) {
6255                 int match;
6256                 char c = *loc2;
6257                 const char *s = loc2;
6258                 if (match_at_start) {
6259                         *loc2 = '\0';
6260                         s = rmesc;
6261                 }
6262                 match = pmatch(pattern, s);
6263                 //bb_error_msg("pmatch(pattern:'%s',s:'%s'):%d", pattern, s, match);
6264                 *loc2 = c;
6265                 if (match)
6266                         return loc;
6267 #if !ENABLE_ASH_OPTIMIZE_FOR_SIZE
6268                 if (try2optimize) {
6269                         /* Maybe we can optimize this:
6270                          * if pattern ends with unescaped *, we can avoid checking
6271                          * shorter strings: if "foo*" doesnt match "raw_value_of_v",
6272                          * it wont match truncated "raw_value_of_" strings too.
6273                          */
6274                         unsigned plen = strlen(pattern);
6275                         /* Does it end with "*"? */
6276                         if (plen != 0 && pattern[--plen] == '*') {
6277                                 /* "xxxx*" is not escaped */
6278                                 /* "xxx\*" is escaped */
6279                                 /* "xx\\*" is not escaped */
6280                                 /* "x\\\*" is escaped */
6281                                 int slashes = 0;
6282                                 while (plen != 0 && pattern[--plen] == '\\')
6283                                         slashes++;
6284                                 if (!(slashes & 1))
6285                                         break; /* ends with unescaped "*" */
6286                         }
6287                         try2optimize = 0;
6288                 }
6289 #endif
6290                 loc--;
6291                 if (quotes) {
6292                         if (--esc < 0) {
6293                                 esc = esclen(startp, loc);
6294                         }
6295                         if (esc % 2) {
6296                                 esc--;
6297                                 loc--;
6298                         }
6299                 }
6300         }
6301         return NULL;
6302 }
6303
6304 static void varunset(const char *, const char *, const char *, int) NORETURN;
6305 static void
6306 varunset(const char *end, const char *var, const char *umsg, int varflags)
6307 {
6308         const char *msg;
6309         const char *tail;
6310
6311         tail = nullstr;
6312         msg = "parameter not set";
6313         if (umsg) {
6314                 if ((unsigned char)*end == CTLENDVAR) {
6315                         if (varflags & VSNUL)
6316                                 tail = " or null";
6317                 } else {
6318                         msg = umsg;
6319                 }
6320         }
6321         ash_msg_and_raise_error("%.*s: %s%s", (int)(end - var - 1), var, msg, tail);
6322 }
6323
6324 static const char *
6325 subevalvar(char *p, char *varname, int strloc, int subtype,
6326                 int startloc, int varflags, int flag, struct strlist *var_str_list)
6327 {
6328         struct nodelist *saveargbackq = argbackq;
6329         int quotes = flag & QUOTES_ESC;
6330         char *startp;
6331         char *loc;
6332         char *rmesc, *rmescend;
6333         char *str;
6334         IF_ASH_BASH_COMPAT(char *repl = NULL;)
6335         IF_ASH_BASH_COMPAT(int pos, len, orig_len;)
6336         int saveherefd = herefd;
6337         int amount, resetloc;
6338         IF_ASH_BASH_COMPAT(int workloc;)
6339         int zero;
6340         char *(*scan)(char*, char*, char*, char*, int, int);
6341
6342         //bb_error_msg("subevalvar(p:'%s',varname:'%s',strloc:%d,subtype:%d,startloc:%d,varflags:%x,quotes:%d)",
6343         //              p, varname, strloc, subtype, startloc, varflags, quotes);
6344
6345         herefd = -1;
6346         argstr(p, EXP_TILDE | (subtype != VSASSIGN && subtype != VSQUESTION ?
6347                         (flag & (EXP_QUOTED | EXP_QPAT) ? EXP_QPAT : EXP_CASE) : 0),
6348                         var_str_list);
6349         STPUTC('\0', expdest);
6350         herefd = saveherefd;
6351         argbackq = saveargbackq;
6352         startp = (char *)stackblock() + startloc;
6353
6354         switch (subtype) {
6355         case VSASSIGN:
6356                 setvar0(varname, startp);
6357                 amount = startp - expdest;
6358                 STADJUST(amount, expdest);
6359                 return startp;
6360
6361         case VSQUESTION:
6362                 varunset(p, varname, startp, varflags);
6363                 /* NOTREACHED */
6364
6365 #if ENABLE_ASH_BASH_COMPAT
6366         case VSSUBSTR:
6367 //TODO: support more general format ${v:EXPR:EXPR},
6368 // where EXPR follows $(()) rules
6369                 loc = str = stackblock() + strloc;
6370                 /* Read POS in ${var:POS:LEN} */
6371                 pos = atoi(loc); /* number(loc) errors out on "1:4" */
6372                 len = str - startp - 1;
6373
6374                 /* *loc != '\0', guaranteed by parser */
6375                 if (quotes) {
6376                         char *ptr;
6377
6378                         /* Adjust the length by the number of escapes */
6379                         for (ptr = startp; ptr < (str - 1); ptr++) {
6380                                 if ((unsigned char)*ptr == CTLESC) {
6381                                         len--;
6382                                         ptr++;
6383                                 }
6384                         }
6385                 }
6386                 orig_len = len;
6387
6388                 if (*loc++ == ':') {
6389                         /* ${var::LEN} */
6390                         len = number(loc);
6391                 } else {
6392                         /* Skip POS in ${var:POS:LEN} */
6393                         len = orig_len;
6394                         while (*loc && *loc != ':') {
6395                                 /* TODO?
6396                                  * bash complains on: var=qwe; echo ${var:1a:123}
6397                                 if (!isdigit(*loc))
6398                                         ash_msg_and_raise_error(msg_illnum, str);
6399                                  */
6400                                 loc++;
6401                         }
6402                         if (*loc++ == ':') {
6403                                 len = number(loc);
6404                         }
6405                 }
6406                 if (pos < 0) {
6407                         /* ${VAR:$((-n)):l} starts n chars from the end */
6408                         pos = orig_len + pos;
6409                 }
6410                 if ((unsigned)pos >= orig_len) {
6411                         /* apart from obvious ${VAR:999999:l},
6412                          * covers ${VAR:$((-9999999)):l} - result is ""
6413                          * (bash-compat)
6414                          */
6415                         pos = 0;
6416                         len = 0;
6417                 }
6418                 if (len > (orig_len - pos))
6419                         len = orig_len - pos;
6420
6421                 for (str = startp; pos; str++, pos--) {
6422                         if (quotes && (unsigned char)*str == CTLESC)
6423                                 str++;
6424                 }
6425                 for (loc = startp; len; len--) {
6426                         if (quotes && (unsigned char)*str == CTLESC)
6427                                 *loc++ = *str++;
6428                         *loc++ = *str++;
6429                 }
6430                 *loc = '\0';
6431                 amount = loc - expdest;
6432                 STADJUST(amount, expdest);
6433                 return loc;
6434 #endif
6435         }
6436
6437         resetloc = expdest - (char *)stackblock();
6438
6439         /* We'll comeback here if we grow the stack while handling
6440          * a VSREPLACE or VSREPLACEALL, since our pointers into the
6441          * stack will need rebasing, and we'll need to remove our work
6442          * areas each time
6443          */
6444  IF_ASH_BASH_COMPAT(restart:)
6445
6446         amount = expdest - ((char *)stackblock() + resetloc);
6447         STADJUST(-amount, expdest);
6448         startp = (char *)stackblock() + startloc;
6449
6450         rmesc = startp;
6451         rmescend = (char *)stackblock() + strloc;
6452         if (quotes) {
6453                 rmesc = rmescapes(startp, RMESCAPE_ALLOC | RMESCAPE_GROW);
6454                 if (rmesc != startp) {
6455                         rmescend = expdest;
6456                         startp = (char *)stackblock() + startloc;
6457                 }
6458         }
6459         rmescend--;
6460         str = (char *)stackblock() + strloc;
6461         /*
6462          * Example: v='a\bc'; echo ${v/\\b/_\\_\z_}
6463          * The result is a_\_z_c (not a\_\_z_c)!
6464          *
6465          * The search pattern and replace string treat backslashes differently!
6466          * RMESCAPE_SLASH causes preglob to work differently on the pattern
6467          * and string.  It's only used on the first call.
6468          */
6469         preglob(str, IF_ASH_BASH_COMPAT(
6470                 (subtype == VSREPLACE || subtype == VSREPLACEALL) && !repl ?
6471                         RMESCAPE_SLASH :) 0);
6472
6473 #if ENABLE_ASH_BASH_COMPAT
6474         workloc = expdest - (char *)stackblock();
6475         if (subtype == VSREPLACE || subtype == VSREPLACEALL) {
6476                 char *idx, *end;
6477
6478                 if (!repl) {
6479                         repl = strchr(str, CTLESC);
6480                         if (repl)
6481                                 *repl++ = '\0';
6482                         else
6483                                 repl = nullstr;
6484                 }
6485                 //bb_error_msg("str:'%s' repl:'%s'", str, repl);
6486
6487                 /* If there's no pattern to match, return the expansion unmolested */
6488                 if (str[0] == '\0')
6489                         return NULL;
6490
6491                 len = 0;
6492                 idx = startp;
6493                 end = str - 1;
6494                 while (idx < end) {
6495  try_to_match:
6496                         loc = scanright(idx, rmesc, rmescend, str, quotes, 1);
6497                         //bb_error_msg("scanright('%s'):'%s'", str, loc);
6498                         if (!loc) {
6499                                 /* No match, advance */
6500                                 char *restart_detect = stackblock();
6501  skip_matching:
6502                                 STPUTC(*idx, expdest);
6503                                 if (quotes && (unsigned char)*idx == CTLESC) {
6504                                         idx++;
6505                                         len++;
6506                                         STPUTC(*idx, expdest);
6507                                 }
6508                                 if (stackblock() != restart_detect)
6509                                         goto restart;
6510                                 idx++;
6511                                 len++;
6512                                 rmesc++;
6513                                 /* continue; - prone to quadratic behavior, smarter code: */
6514                                 if (idx >= end)
6515                                         break;
6516                                 if (str[0] == '*') {
6517                                         /* Pattern is "*foo". If "*foo" does not match "long_string",
6518                                          * it would never match "ong_string" etc, no point in trying.
6519                                          */
6520                                         goto skip_matching;
6521                                 }
6522                                 goto try_to_match;
6523                         }
6524
6525                         if (subtype == VSREPLACEALL) {
6526                                 while (idx < loc) {
6527                                         if (quotes && (unsigned char)*idx == CTLESC)
6528                                                 idx++;
6529                                         idx++;
6530                                         rmesc++;
6531                                 }
6532                         } else {
6533                                 idx = loc;
6534                         }
6535
6536                         //bb_error_msg("repl:'%s'", repl);
6537                         for (loc = (char*)repl; *loc; loc++) {
6538                                 char *restart_detect = stackblock();
6539                                 if (quotes && *loc == '\\') {
6540                                         STPUTC(CTLESC, expdest);
6541                                         len++;
6542                                 }
6543                                 STPUTC(*loc, expdest);
6544                                 if (stackblock() != restart_detect)
6545                                         goto restart;
6546                                 len++;
6547                         }
6548
6549                         if (subtype == VSREPLACE) {
6550                                 //bb_error_msg("tail:'%s', quotes:%x", idx, quotes);
6551                                 while (*idx) {
6552                                         char *restart_detect = stackblock();
6553                                         STPUTC(*idx, expdest);
6554                                         if (stackblock() != restart_detect)
6555                                                 goto restart;
6556                                         len++;
6557                                         idx++;
6558                                 }
6559                                 break;
6560                         }
6561                 }
6562
6563                 /* We've put the replaced text into a buffer at workloc, now
6564                  * move it to the right place and adjust the stack.
6565                  */
6566                 STPUTC('\0', expdest);
6567                 startp = (char *)stackblock() + startloc;
6568                 memmove(startp, (char *)stackblock() + workloc, len + 1);
6569                 //bb_error_msg("startp:'%s'", startp);
6570                 amount = expdest - (startp + len);
6571                 STADJUST(-amount, expdest);
6572                 return startp;
6573         }
6574 #endif /* ENABLE_ASH_BASH_COMPAT */
6575
6576         subtype -= VSTRIMRIGHT;
6577 #if DEBUG
6578         if (subtype < 0 || subtype > 7)
6579                 abort();
6580 #endif
6581         /* zero = (subtype == VSTRIMLEFT || subtype == VSTRIMLEFTMAX) */
6582         zero = subtype >> 1;
6583         /* VSTRIMLEFT/VSTRIMRIGHTMAX -> scanleft */
6584         scan = (subtype & 1) ^ zero ? scanleft : scanright;
6585
6586         loc = scan(startp, rmesc, rmescend, str, quotes, zero);
6587         if (loc) {
6588                 if (zero) {
6589                         memmove(startp, loc, str - loc);
6590                         loc = startp + (str - loc) - 1;
6591                 }
6592                 *loc = '\0';
6593                 amount = loc - expdest;
6594                 STADJUST(amount, expdest);
6595         }
6596         return loc;
6597 }
6598
6599 /*
6600  * Add the value of a specialized variable to the stack string.
6601  * name parameter (examples):
6602  * ash -c 'echo $1'      name:'1='
6603  * ash -c 'echo $qwe'    name:'qwe='
6604  * ash -c 'echo $$'      name:'$='
6605  * ash -c 'echo ${$}'    name:'$='
6606  * ash -c 'echo ${$##q}' name:'$=q'
6607  * ash -c 'echo ${#$}'   name:'$='
6608  * note: examples with bad shell syntax:
6609  * ash -c 'echo ${#$1}'  name:'$=1'
6610  * ash -c 'echo ${#1#}'  name:'1=#'
6611  */
6612 static NOINLINE ssize_t
6613 varvalue(char *name, int varflags, int flags, struct strlist *var_str_list, int *quotedp)
6614 {
6615         const char *p;
6616         int num;
6617         int i;
6618         ssize_t len = 0;
6619         int sep;
6620         int quoted = *quotedp;
6621         int subtype = varflags & VSTYPE;
6622         int discard = subtype == VSPLUS || subtype == VSLENGTH;
6623         int quotes = (discard ? 0 : (flags & QUOTES_ESC)) | QUOTES_KEEPNUL;
6624         int syntax;
6625
6626         sep = (flags & EXP_FULL) << CHAR_BIT;
6627         syntax = quoted ? DQSYNTAX : BASESYNTAX;
6628
6629         switch (*name) {
6630         case '$':
6631                 num = rootpid;
6632                 goto numvar;
6633         case '?':
6634                 num = exitstatus;
6635                 goto numvar;
6636         case '#':
6637                 num = shellparam.nparam;
6638                 goto numvar;
6639         case '!':
6640                 num = backgndpid;
6641                 if (num == 0)
6642                         return -1;
6643  numvar:
6644                 len = cvtnum(num);
6645                 goto check_1char_name;
6646         case '-':
6647                 expdest = makestrspace(NOPTS, expdest);
6648                 for (i = NOPTS - 1; i >= 0; i--) {
6649                         if (optlist[i]) {
6650                                 USTPUTC(optletters(i), expdest);
6651                                 len++;
6652                         }
6653                 }
6654  check_1char_name:
6655 #if 0
6656                 /* handles cases similar to ${#$1} */
6657                 if (name[2] != '\0')
6658                         raise_error_syntax("bad substitution");
6659 #endif
6660                 break;
6661         case '@':
6662                 if (quoted && sep)
6663                         goto param;
6664                 /* fall through */
6665         case '*': {
6666                 char **ap;
6667                 char sepc;
6668
6669                 if (quoted)
6670                         sep = 0;
6671                 sep |= ifsset() ? ifsval()[0] : ' ';
6672  param:
6673                 sepc = sep;
6674                 *quotedp = !sepc;
6675                 ap = shellparam.p;
6676                 if (!ap)
6677                         return -1;
6678                 while ((p = *ap++) != NULL) {
6679                         len += strtodest(p, syntax, quotes);
6680
6681                         if (*ap && sep) {
6682                                 len++;
6683                                 memtodest(&sepc, 1, syntax, quotes);
6684                         }
6685                 }
6686                 break;
6687         } /* case '*' */
6688         case '0':
6689         case '1':
6690         case '2':
6691         case '3':
6692         case '4':
6693         case '5':
6694         case '6':
6695         case '7':
6696         case '8':
6697         case '9':
6698                 num = atoi(name); /* number(name) fails on ${N#str} etc */
6699                 if (num < 0 || num > shellparam.nparam)
6700                         return -1;
6701                 p = num ? shellparam.p[num - 1] : arg0;
6702                 goto value;
6703         default:
6704                 /* NB: name has form "VAR=..." */
6705
6706                 /* "A=a B=$A" case: var_str_list is a list of "A=a" strings
6707                  * which should be considered before we check variables. */
6708                 if (var_str_list) {
6709                         unsigned name_len = (strchrnul(name, '=') - name) + 1;
6710                         p = NULL;
6711                         do {
6712                                 char *str, *eq;
6713                                 str = var_str_list->text;
6714                                 eq = strchr(str, '=');
6715                                 if (!eq) /* stop at first non-assignment */
6716                                         break;
6717                                 eq++;
6718                                 if (name_len == (unsigned)(eq - str)
6719                                  && strncmp(str, name, name_len) == 0
6720                                 ) {
6721                                         p = eq;
6722                                         /* goto value; - WRONG! */
6723                                         /* think "A=1 A=2 B=$A" */
6724                                 }
6725                                 var_str_list = var_str_list->next;
6726                         } while (var_str_list);
6727                         if (p)
6728                                 goto value;
6729                 }
6730                 p = lookupvar(name);
6731  value:
6732                 if (!p)
6733                         return -1;
6734
6735                 len = strtodest(p, syntax, quotes);
6736 #if ENABLE_UNICODE_SUPPORT
6737                 if (subtype == VSLENGTH && len > 0) {
6738                         reinit_unicode_for_ash();
6739                         if (unicode_status == UNICODE_ON) {
6740                                 STADJUST(-len, expdest);
6741                                 discard = 0;
6742                                 len = unicode_strlen(p);
6743                         }
6744                 }
6745 #endif
6746                 break;
6747         }
6748
6749         if (discard)
6750                 STADJUST(-len, expdest);
6751         return len;
6752 }
6753
6754 /*
6755  * Expand a variable, and return a pointer to the next character in the
6756  * input string.
6757  */
6758 static char *
6759 evalvar(char *p, int flag, struct strlist *var_str_list)
6760 {
6761         char varflags;
6762         char subtype;
6763         int quoted;
6764         char easy;
6765         char *var;
6766         int patloc;
6767         int startloc;
6768         ssize_t varlen;
6769
6770         varflags = (unsigned char) *p++;
6771         subtype = varflags & VSTYPE;
6772         quoted = flag & EXP_QUOTED;
6773         var = p;
6774         easy = (!quoted || (*var == '@' && shellparam.nparam));
6775         startloc = expdest - (char *)stackblock();
6776         p = strchr(p, '=') + 1; //TODO: use var_end(p)?
6777
6778  again:
6779         varlen = varvalue(var, varflags, flag, var_str_list, &quoted);
6780         if (varflags & VSNUL)
6781                 varlen--;
6782
6783         if (subtype == VSPLUS) {
6784                 varlen = -1 - varlen;
6785                 goto vsplus;
6786         }
6787
6788         if (subtype == VSMINUS) {
6789  vsplus:
6790                 if (varlen < 0) {
6791                         argstr(
6792                                 p,
6793                                 flag | EXP_TILDE | EXP_WORD,
6794                                 var_str_list
6795                         );
6796                         goto end;
6797                 }
6798                 goto record;
6799         }
6800
6801         if (subtype == VSASSIGN || subtype == VSQUESTION) {
6802                 if (varlen >= 0)
6803                         goto record;
6804
6805                 subevalvar(p, var, 0, subtype, startloc, varflags,
6806                            flag & ~QUOTES_ESC, var_str_list);
6807                 varflags &= ~VSNUL;
6808                 /*
6809                  * Remove any recorded regions beyond
6810                  * start of variable
6811                  */
6812                 removerecordregions(startloc);
6813                 goto again;
6814         }
6815
6816         if (varlen < 0 && uflag)
6817                 varunset(p, var, 0, 0);
6818
6819         if (subtype == VSLENGTH) {
6820                 cvtnum(varlen > 0 ? varlen : 0);
6821                 goto record;
6822         }
6823
6824         if (subtype == VSNORMAL) {
6825  record:
6826                 if (!easy)
6827                         goto end;
6828                 recordregion(startloc, expdest - (char *)stackblock(), quoted);
6829                 goto end;
6830         }
6831
6832 #if DEBUG
6833         switch (subtype) {
6834         case VSTRIMLEFT:
6835         case VSTRIMLEFTMAX:
6836         case VSTRIMRIGHT:
6837         case VSTRIMRIGHTMAX:
6838 #if ENABLE_ASH_BASH_COMPAT
6839         case VSSUBSTR:
6840         case VSREPLACE:
6841         case VSREPLACEALL:
6842 #endif
6843                 break;
6844         default:
6845                 abort();
6846         }
6847 #endif
6848
6849         if (varlen >= 0) {
6850                 /*
6851                  * Terminate the string and start recording the pattern
6852                  * right after it
6853                  */
6854                 STPUTC('\0', expdest);
6855                 patloc = expdest - (char *)stackblock();
6856                 if (NULL == subevalvar(p, /* varname: */ NULL, patloc, subtype,
6857                                 startloc, varflags, flag, var_str_list)) {
6858                         int amount = expdest - (
6859                                 (char *)stackblock() + patloc - 1
6860                         );
6861                         STADJUST(-amount, expdest);
6862                 }
6863                 /* Remove any recorded regions beyond start of variable */
6864                 removerecordregions(startloc);
6865                 goto record;
6866         }
6867
6868  end:
6869         if (subtype != VSNORMAL) {      /* skip to end of alternative */
6870                 int nesting = 1;
6871                 for (;;) {
6872                         unsigned char c = *p++;
6873                         if (c == CTLESC)
6874                                 p++;
6875                         else if (c == CTLBACKQ) {
6876                                 if (varlen >= 0)
6877                                         argbackq = argbackq->next;
6878                         } else if (c == CTLVAR) {
6879                                 if ((*p++ & VSTYPE) != VSNORMAL)
6880                                         nesting++;
6881                         } else if (c == CTLENDVAR) {
6882                                 if (--nesting == 0)
6883                                         break;
6884                         }
6885                 }
6886         }
6887         return p;
6888 }
6889
6890 /*
6891  * Break the argument string into pieces based upon IFS and add the
6892  * strings to the argument list.  The regions of the string to be
6893  * searched for IFS characters have been stored by recordregion.
6894  */
6895 static void
6896 ifsbreakup(char *string, struct arglist *arglist)
6897 {
6898         struct ifsregion *ifsp;
6899         struct strlist *sp;
6900         char *start;
6901         char *p;
6902         char *q;
6903         const char *ifs, *realifs;
6904         int ifsspc;
6905         int nulonly;
6906
6907         start = string;
6908         if (ifslastp != NULL) {
6909                 ifsspc = 0;
6910                 nulonly = 0;
6911                 realifs = ifsset() ? ifsval() : defifs;
6912                 ifsp = &ifsfirst;
6913                 do {
6914                         p = string + ifsp->begoff;
6915                         nulonly = ifsp->nulonly;
6916                         ifs = nulonly ? nullstr : realifs;
6917                         ifsspc = 0;
6918                         while (p < string + ifsp->endoff) {
6919                                 q = p;
6920                                 if ((unsigned char)*p == CTLESC)
6921                                         p++;
6922                                 if (!strchr(ifs, *p)) {
6923                                         p++;
6924                                         continue;
6925                                 }
6926                                 if (!nulonly)
6927                                         ifsspc = (strchr(defifs, *p) != NULL);
6928                                 /* Ignore IFS whitespace at start */
6929                                 if (q == start && ifsspc) {
6930                                         p++;
6931                                         start = p;
6932                                         continue;
6933                                 }
6934                                 *q = '\0';
6935                                 sp = stzalloc(sizeof(*sp));
6936                                 sp->text = start;
6937                                 *arglist->lastp = sp;
6938                                 arglist->lastp = &sp->next;
6939                                 p++;
6940                                 if (!nulonly) {
6941                                         for (;;) {
6942                                                 if (p >= string + ifsp->endoff) {
6943                                                         break;
6944                                                 }
6945                                                 q = p;
6946                                                 if ((unsigned char)*p == CTLESC)
6947                                                         p++;
6948                                                 if (strchr(ifs, *p) == NULL) {
6949                                                         p = q;
6950                                                         break;
6951                                                 }
6952                                                 if (strchr(defifs, *p) == NULL) {
6953                                                         if (ifsspc) {
6954                                                                 p++;
6955                                                                 ifsspc = 0;
6956                                                         } else {
6957                                                                 p = q;
6958                                                                 break;
6959                                                         }
6960                                                 } else
6961                                                         p++;
6962                                         }
6963                                 }
6964                                 start = p;
6965                         } /* while */
6966                         ifsp = ifsp->next;
6967                 } while (ifsp != NULL);
6968                 if (nulonly)
6969                         goto add;
6970         }
6971
6972         if (!*start)
6973                 return;
6974
6975  add:
6976         sp = stzalloc(sizeof(*sp));
6977         sp->text = start;
6978         *arglist->lastp = sp;
6979         arglist->lastp = &sp->next;
6980 }
6981
6982 static void
6983 ifsfree(void)
6984 {
6985         struct ifsregion *p;
6986
6987         INT_OFF;
6988         p = ifsfirst.next;
6989         do {
6990                 struct ifsregion *ifsp;
6991                 ifsp = p->next;
6992                 free(p);
6993                 p = ifsp;
6994         } while (p);
6995         ifslastp = NULL;
6996         ifsfirst.next = NULL;
6997         INT_ON;
6998 }
6999
7000 /*
7001  * Add a file name to the list.
7002  */
7003 static void
7004 addfname(const char *name)
7005 {
7006         struct strlist *sp;
7007
7008         sp = stzalloc(sizeof(*sp));
7009         sp->text = sstrdup(name);
7010         *exparg.lastp = sp;
7011         exparg.lastp = &sp->next;
7012 }
7013
7014 /* If we want to use glob() from libc... */
7015 #if !ENABLE_ASH_INTERNAL_GLOB
7016
7017 /* Add the result of glob() to the list */
7018 static void
7019 addglob(const glob_t *pglob)
7020 {
7021         char **p = pglob->gl_pathv;
7022
7023         do {
7024                 addfname(*p);
7025         } while (*++p);
7026 }
7027 static void
7028 expandmeta(struct strlist *str /*, int flag*/)
7029 {
7030         /* TODO - EXP_REDIR */
7031
7032         while (str) {
7033                 char *p;
7034                 glob_t pglob;
7035                 int i;
7036
7037                 if (fflag)
7038                         goto nometa;
7039                 INT_OFF;
7040                 p = preglob(str->text, RMESCAPE_ALLOC | RMESCAPE_HEAP);
7041 // GLOB_NOMAGIC (GNU): if no *?[ chars in pattern, return it even if no match
7042 // GLOB_NOCHECK: if no match, return unchanged pattern (sans \* escapes?)
7043 //
7044 // glibc 2.24.90 glob(GLOB_NOMAGIC) does not remove backslashes used for escaping:
7045 // if you pass it "file\?", it returns "file\?", not "file?", if no match.
7046 // Which means you need to unescape the string, right? Not so fast:
7047 // if there _is_ a file named "file\?" (with backslash), it is returned
7048 // as "file\?" too (whichever pattern you used to find it, say, "file*").
7049 // You DONT KNOW by looking at the result whether you need to unescape it.
7050 //
7051 // Worse, globbing of "file\?" in a directory with two files, "file?" and "file\?",
7052 // returns "file\?" - which is WRONG: "file\?" pattern matches "file?" file.
7053 // Without GLOB_NOMAGIC, this works correctly ("file?" is returned as a match).
7054 // With GLOB_NOMAGIC | GLOB_NOCHECK, this also works correctly.
7055 //              i = glob(p, GLOB_NOMAGIC | GLOB_NOCHECK, NULL, &pglob);
7056 //              i = glob(p, GLOB_NOMAGIC, NULL, &pglob);
7057                 i = glob(p, 0, NULL, &pglob);
7058                 //bb_error_msg("glob('%s'):%d '%s'...", p, i, pglob.gl_pathv ? pglob.gl_pathv[0] : "-");
7059                 if (p != str->text)
7060                         free(p);
7061                 switch (i) {
7062                 case 0:
7063 #if 0 // glibc 2.24.90 bug? Patterns like "*/file", when match, don't set GLOB_MAGCHAR
7064                         /* GLOB_MAGCHAR is set if *?[ chars were seen (GNU) */
7065                         if (!(pglob.gl_flags & GLOB_MAGCHAR))
7066                                 goto nometa2;
7067 #endif
7068                         addglob(&pglob);
7069                         globfree(&pglob);
7070                         INT_ON;
7071                         break;
7072                 case GLOB_NOMATCH:
7073  //nometa2:
7074                         globfree(&pglob);
7075                         INT_ON;
7076  nometa:
7077                         *exparg.lastp = str;
7078                         rmescapes(str->text, 0);
7079                         exparg.lastp = &str->next;
7080                         break;
7081                 default:        /* GLOB_NOSPACE */
7082                         globfree(&pglob);
7083                         INT_ON;
7084                         ash_msg_and_raise_error(bb_msg_memory_exhausted);
7085                 }
7086                 str = str->next;
7087         }
7088 }
7089
7090 #else
7091 /* ENABLE_ASH_INTERNAL_GLOB: Homegrown globbing code. (dash also has both, uses homegrown one.) */
7092
7093 /*
7094  * Do metacharacter (i.e. *, ?, [...]) expansion.
7095  */
7096 static void
7097 expmeta(char *expdir, char *enddir, char *name)
7098 {
7099         char *p;
7100         const char *cp;
7101         char *start;
7102         char *endname;
7103         int metaflag;
7104         struct stat statb;
7105         DIR *dirp;
7106         struct dirent *dp;
7107         int atend;
7108         int matchdot;
7109         int esc;
7110
7111         metaflag = 0;
7112         start = name;
7113         for (p = name; esc = 0, *p; p += esc + 1) {
7114                 if (*p == '*' || *p == '?')
7115                         metaflag = 1;
7116                 else if (*p == '[') {
7117                         char *q = p + 1;
7118                         if (*q == '!')
7119                                 q++;
7120                         for (;;) {
7121                                 if (*q == '\\')
7122                                         q++;
7123                                 if (*q == '/' || *q == '\0')
7124                                         break;
7125                                 if (*++q == ']') {
7126                                         metaflag = 1;
7127                                         break;
7128                                 }
7129                         }
7130                 } else {
7131                         if (*p == '\\')
7132                                 esc++;
7133                         if (p[esc] == '/') {
7134                                 if (metaflag)
7135                                         break;
7136                                 start = p + esc + 1;
7137                         }
7138                 }
7139         }
7140         if (metaflag == 0) {    /* we've reached the end of the file name */
7141                 if (enddir != expdir)
7142                         metaflag++;
7143                 p = name;
7144                 do {
7145                         if (*p == '\\')
7146                                 p++;
7147                         *enddir++ = *p;
7148                 } while (*p++);
7149                 if (metaflag == 0 || lstat(expdir, &statb) >= 0)
7150                         addfname(expdir);
7151                 return;
7152         }
7153         endname = p;
7154         if (name < start) {
7155                 p = name;
7156                 do {
7157                         if (*p == '\\')
7158                                 p++;
7159                         *enddir++ = *p++;
7160                 } while (p < start);
7161         }
7162         if (enddir == expdir) {
7163                 cp = ".";
7164         } else if (enddir == expdir + 1 && *expdir == '/') {
7165                 cp = "/";
7166         } else {
7167                 cp = expdir;
7168                 enddir[-1] = '\0';
7169         }
7170         dirp = opendir(cp);
7171         if (dirp == NULL)
7172                 return;
7173         if (enddir != expdir)
7174                 enddir[-1] = '/';
7175         if (*endname == 0) {
7176                 atend = 1;
7177         } else {
7178                 atend = 0;
7179                 *endname = '\0';
7180                 endname += esc + 1;
7181         }
7182         matchdot = 0;
7183         p = start;
7184         if (*p == '\\')
7185                 p++;
7186         if (*p == '.')
7187                 matchdot++;
7188         while (!pending_int && (dp = readdir(dirp)) != NULL) {
7189                 if (dp->d_name[0] == '.' && !matchdot)
7190                         continue;
7191                 if (pmatch(start, dp->d_name)) {
7192                         if (atend) {
7193                                 strcpy(enddir, dp->d_name);
7194                                 addfname(expdir);
7195                         } else {
7196                                 for (p = enddir, cp = dp->d_name; (*p++ = *cp++) != '\0';)
7197                                         continue;
7198                                 p[-1] = '/';
7199                                 expmeta(expdir, p, endname);
7200                         }
7201                 }
7202         }
7203         closedir(dirp);
7204         if (!atend)
7205                 endname[-esc - 1] = esc ? '\\' : '/';
7206 }
7207
7208 static struct strlist *
7209 msort(struct strlist *list, int len)
7210 {
7211         struct strlist *p, *q = NULL;
7212         struct strlist **lpp;
7213         int half;
7214         int n;
7215
7216         if (len <= 1)
7217                 return list;
7218         half = len >> 1;
7219         p = list;
7220         for (n = half; --n >= 0;) {
7221                 q = p;
7222                 p = p->next;
7223         }
7224         q->next = NULL;                 /* terminate first half of list */
7225         q = msort(list, half);          /* sort first half of list */
7226         p = msort(p, len - half);               /* sort second half */
7227         lpp = &list;
7228         for (;;) {
7229 #if ENABLE_LOCALE_SUPPORT
7230                 if (strcoll(p->text, q->text) < 0)
7231 #else
7232                 if (strcmp(p->text, q->text) < 0)
7233 #endif
7234                                                 {
7235                         *lpp = p;
7236                         lpp = &p->next;
7237                         p = *lpp;
7238                         if (p == NULL) {
7239                                 *lpp = q;
7240                                 break;
7241                         }
7242                 } else {
7243                         *lpp = q;
7244                         lpp = &q->next;
7245                         q = *lpp;
7246                         if (q == NULL) {
7247                                 *lpp = p;
7248                                 break;
7249                         }
7250                 }
7251         }
7252         return list;
7253 }
7254
7255 /*
7256  * Sort the results of file name expansion.  It calculates the number of
7257  * strings to sort and then calls msort (short for merge sort) to do the
7258  * work.
7259  */
7260 static struct strlist *
7261 expsort(struct strlist *str)
7262 {
7263         int len;
7264         struct strlist *sp;
7265
7266         len = 0;
7267         for (sp = str; sp; sp = sp->next)
7268                 len++;
7269         return msort(str, len);
7270 }
7271
7272 static void
7273 expandmeta(struct strlist *str /*, int flag*/)
7274 {
7275         static const char metachars[] ALIGN1 = {
7276                 '*', '?', '[', 0
7277         };
7278         /* TODO - EXP_REDIR */
7279
7280         while (str) {
7281                 char *expdir;
7282                 struct strlist **savelastp;
7283                 struct strlist *sp;
7284                 char *p;
7285
7286                 if (fflag)
7287                         goto nometa;
7288                 if (!strpbrk(str->text, metachars))
7289                         goto nometa;
7290                 savelastp = exparg.lastp;
7291
7292                 INT_OFF;
7293                 p = preglob(str->text, RMESCAPE_ALLOC | RMESCAPE_HEAP);
7294                 {
7295                         int i = strlen(str->text);
7296 //BUGGY estimation of how long expanded name can be
7297                         expdir = ckmalloc(i < 2048 ? 2048 : i+1);
7298                 }
7299                 expmeta(expdir, expdir, p);
7300                 free(expdir);
7301                 if (p != str->text)
7302                         free(p);
7303                 INT_ON;
7304                 if (exparg.lastp == savelastp) {
7305                         /*
7306                          * no matches
7307                          */
7308  nometa:
7309                         *exparg.lastp = str;
7310                         rmescapes(str->text, 0);
7311                         exparg.lastp = &str->next;
7312                 } else {
7313                         *exparg.lastp = NULL;
7314                         *savelastp = sp = expsort(*savelastp);
7315                         while (sp->next != NULL)
7316                                 sp = sp->next;
7317                         exparg.lastp = &sp->next;
7318                 }
7319                 str = str->next;
7320         }
7321 }
7322 #endif /* ENABLE_ASH_INTERNAL_GLOB */
7323
7324 /*
7325  * Perform variable substitution and command substitution on an argument,
7326  * placing the resulting list of arguments in arglist.  If EXP_FULL is true,
7327  * perform splitting and file name expansion.  When arglist is NULL, perform
7328  * here document expansion.
7329  */
7330 static void
7331 expandarg(union node *arg, struct arglist *arglist, int flag)
7332 {
7333         struct strlist *sp;
7334         char *p;
7335
7336         argbackq = arg->narg.backquote;
7337         STARTSTACKSTR(expdest);
7338         ifsfirst.next = NULL;
7339         ifslastp = NULL;
7340         TRACE(("expandarg: argstr('%s',flags:%x)\n", arg->narg.text, flag));
7341         argstr(arg->narg.text, flag,
7342                         /* var_str_list: */ arglist ? arglist->list : NULL);
7343         p = _STPUTC('\0', expdest);
7344         expdest = p - 1;
7345         if (arglist == NULL) {
7346                 return;                 /* here document expanded */
7347         }
7348         p = grabstackstr(p);
7349         TRACE(("expandarg: p:'%s'\n", p));
7350         exparg.lastp = &exparg.list;
7351         /*
7352          * TODO - EXP_REDIR
7353          */
7354         if (flag & EXP_FULL) {
7355                 ifsbreakup(p, &exparg);
7356                 *exparg.lastp = NULL;
7357                 exparg.lastp = &exparg.list;
7358                 expandmeta(exparg.list /*, flag*/);
7359         } else {
7360                 if (flag & EXP_REDIR) { /*XXX - for now, just remove escapes */
7361                         rmescapes(p, 0);
7362                         TRACE(("expandarg: rmescapes:'%s'\n", p));
7363                 }
7364                 sp = stzalloc(sizeof(*sp));
7365                 sp->text = p;
7366                 *exparg.lastp = sp;
7367                 exparg.lastp = &sp->next;
7368         }
7369         if (ifsfirst.next)
7370                 ifsfree();
7371         *exparg.lastp = NULL;
7372         if (exparg.list) {
7373                 *arglist->lastp = exparg.list;
7374                 arglist->lastp = exparg.lastp;
7375         }
7376 }
7377
7378 /*
7379  * Expand shell variables and backquotes inside a here document.
7380  */
7381 static void
7382 expandhere(union node *arg, int fd)
7383 {
7384         herefd = fd;
7385         expandarg(arg, (struct arglist *)NULL, EXP_QUOTED);
7386         full_write(fd, stackblock(), expdest - (char *)stackblock());
7387 }
7388
7389 /*
7390  * Returns true if the pattern matches the string.
7391  */
7392 static int
7393 patmatch(char *pattern, const char *string)
7394 {
7395         return pmatch(preglob(pattern, 0), string);
7396 }
7397
7398 /*
7399  * See if a pattern matches in a case statement.
7400  */
7401 static int
7402 casematch(union node *pattern, char *val)
7403 {
7404         struct stackmark smark;
7405         int result;
7406
7407         setstackmark(&smark);
7408         argbackq = pattern->narg.backquote;
7409         STARTSTACKSTR(expdest);
7410         ifslastp = NULL;
7411         argstr(pattern->narg.text, EXP_TILDE | EXP_CASE,
7412                         /* var_str_list: */ NULL);
7413         STACKSTRNUL(expdest);
7414         result = patmatch(stackblock(), val);
7415         popstackmark(&smark);
7416         return result;
7417 }
7418
7419
7420 /* ============ find_command */
7421
7422 struct builtincmd {
7423         const char *name;
7424         int (*builtin)(int, char **) FAST_FUNC;
7425         /* unsigned flags; */
7426 };
7427 #define IS_BUILTIN_SPECIAL(b) ((b)->name[0] & 1)
7428 /* "regular" builtins always take precedence over commands,
7429  * regardless of PATH=....%builtin... position */
7430 #define IS_BUILTIN_REGULAR(b) ((b)->name[0] & 2)
7431 #define IS_BUILTIN_ASSIGN(b)  ((b)->name[0] & 4)
7432
7433 struct cmdentry {
7434         smallint cmdtype;       /* CMDxxx */
7435         union param {
7436                 int index;
7437                 /* index >= 0 for commands without path (slashes) */
7438                 /* (TODO: what exactly does the value mean? PATH position?) */
7439                 /* index == -1 for commands with slashes */
7440                 /* index == (-2 - applet_no) for NOFORK applets */
7441                 const struct builtincmd *cmd;
7442                 struct funcnode *func;
7443         } u;
7444 };
7445 /* values of cmdtype */
7446 #define CMDUNKNOWN      -1      /* no entry in table for command */
7447 #define CMDNORMAL       0       /* command is an executable program */
7448 #define CMDFUNCTION     1       /* command is a shell function */
7449 #define CMDBUILTIN      2       /* command is a shell builtin */
7450
7451 /* action to find_command() */
7452 #define DO_ERR          0x01    /* prints errors */
7453 #define DO_ABS          0x02    /* checks absolute paths */
7454 #define DO_NOFUNC       0x04    /* don't return shell functions, for command */
7455 #define DO_ALTPATH      0x08    /* using alternate path */
7456 #define DO_ALTBLTIN     0x20    /* %builtin in alt. path */
7457
7458 static void find_command(char *, struct cmdentry *, int, const char *);
7459
7460
7461 /* ============ Hashing commands */
7462
7463 /*
7464  * When commands are first encountered, they are entered in a hash table.
7465  * This ensures that a full path search will not have to be done for them
7466  * on each invocation.
7467  *
7468  * We should investigate converting to a linear search, even though that
7469  * would make the command name "hash" a misnomer.
7470  */
7471
7472 struct tblentry {
7473         struct tblentry *next;  /* next entry in hash chain */
7474         union param param;      /* definition of builtin function */
7475         smallint cmdtype;       /* CMDxxx */
7476         char rehash;            /* if set, cd done since entry created */
7477         char cmdname[1];        /* name of command */
7478 };
7479
7480 static struct tblentry **cmdtable;
7481 #define INIT_G_cmdtable() do { \
7482         cmdtable = xzalloc(CMDTABLESIZE * sizeof(cmdtable[0])); \
7483 } while (0)
7484
7485 static int builtinloc = -1;     /* index in path of %builtin, or -1 */
7486
7487
7488 static void
7489 tryexec(IF_FEATURE_SH_STANDALONE(int applet_no,) char *cmd, char **argv, char **envp)
7490 {
7491 #if ENABLE_FEATURE_SH_STANDALONE
7492         if (applet_no >= 0) {
7493                 if (APPLET_IS_NOEXEC(applet_no)) {
7494                         clearenv();
7495                         while (*envp)
7496                                 putenv(*envp++);
7497                         run_applet_no_and_exit(applet_no, argv);
7498                 }
7499                 /* re-exec ourselves with the new arguments */
7500                 execve(bb_busybox_exec_path, argv, envp);
7501                 /* If they called chroot or otherwise made the binary no longer
7502                  * executable, fall through */
7503         }
7504 #endif
7505
7506  repeat:
7507 #ifdef SYSV
7508         do {
7509                 execve(cmd, argv, envp);
7510         } while (errno == EINTR);
7511 #else
7512         execve(cmd, argv, envp);
7513 #endif
7514         if (cmd == (char*) bb_busybox_exec_path) {
7515                 /* We already visited ENOEXEC branch below, don't do it again */
7516 //TODO: try execve(initial_argv0_of_shell, argv, envp) before giving up?
7517                 free(argv);
7518                 return;
7519         }
7520         if (errno == ENOEXEC) {
7521                 /* Run "cmd" as a shell script:
7522                  * http://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html
7523                  * "If the execve() function fails with ENOEXEC, the shell
7524                  * shall execute a command equivalent to having a shell invoked
7525                  * with the command name as its first operand,
7526                  * with any remaining arguments passed to the new shell"
7527                  *
7528                  * That is, do not use $SHELL, user's shell, or /bin/sh;
7529                  * just call ourselves.
7530                  *
7531                  * Note that bash reads ~80 chars of the file, and if it sees
7532                  * a zero byte before it sees newline, it doesn't try to
7533                  * interpret it, but fails with "cannot execute binary file"
7534                  * message and exit code 126. For one, this prevents attempts
7535                  * to interpret foreign ELF binaries as shell scripts.
7536                  */
7537                 char **ap;
7538                 char **new;
7539
7540                 for (ap = argv; *ap; ap++)
7541                         continue;
7542                 new = ckmalloc((ap - argv + 2) * sizeof(new[0]));
7543                 new[0] = (char*) "ash";
7544                 new[1] = cmd;
7545                 ap = new + 2;
7546                 while ((*ap++ = *++argv) != NULL)
7547                         continue;
7548                 cmd = (char*) bb_busybox_exec_path;
7549                 argv = new;
7550                 goto repeat;
7551         }
7552 }
7553
7554 /*
7555  * Exec a program.  Never returns.  If you change this routine, you may
7556  * have to change the find_command routine as well.
7557  */
7558 static void shellexec(char **, const char *, int) NORETURN;
7559 static void
7560 shellexec(char **argv, const char *path, int idx)
7561 {
7562         char *cmdname;
7563         int e;
7564         char **envp;
7565         int exerrno;
7566         int applet_no = -1; /* used only by FEATURE_SH_STANDALONE */
7567
7568         clearredir(/*drop:*/ 1);
7569         envp = listvars(VEXPORT, VUNSET, /*end:*/ NULL);
7570         if (strchr(argv[0], '/') != NULL
7571 #if ENABLE_FEATURE_SH_STANDALONE
7572          || (applet_no = find_applet_by_name(argv[0])) >= 0
7573 #endif
7574         ) {
7575                 tryexec(IF_FEATURE_SH_STANDALONE(applet_no,) argv[0], argv, envp);
7576                 if (applet_no >= 0) {
7577                         /* We tried execing ourself, but it didn't work.
7578                          * Maybe /proc/self/exe doesn't exist?
7579                          * Try $PATH search.
7580                          */
7581                         goto try_PATH;
7582                 }
7583                 e = errno;
7584         } else {
7585  try_PATH:
7586                 e = ENOENT;
7587                 while ((cmdname = path_advance(&path, argv[0])) != NULL) {
7588                         if (--idx < 0 && pathopt == NULL) {
7589                                 tryexec(IF_FEATURE_SH_STANDALONE(-1,) cmdname, argv, envp);
7590                                 if (errno != ENOENT && errno != ENOTDIR)
7591                                         e = errno;
7592                         }
7593                         stunalloc(cmdname);
7594                 }
7595         }
7596
7597         /* Map to POSIX errors */
7598         switch (e) {
7599         case EACCES:
7600                 exerrno = 126;
7601                 break;
7602         case ENOENT:
7603                 exerrno = 127;
7604                 break;
7605         default:
7606                 exerrno = 2;
7607                 break;
7608         }
7609         exitstatus = exerrno;
7610         TRACE(("shellexec failed for %s, errno %d, suppress_int %d\n",
7611                 argv[0], e, suppress_int));
7612         ash_msg_and_raise(EXEXEC, "%s: %s", argv[0], errmsg(e, "not found"));
7613         /* NOTREACHED */
7614 }
7615
7616 static void
7617 printentry(struct tblentry *cmdp)
7618 {
7619         int idx;
7620         const char *path;
7621         char *name;
7622
7623         idx = cmdp->param.index;
7624         path = pathval();
7625         do {
7626                 name = path_advance(&path, cmdp->cmdname);
7627                 stunalloc(name);
7628         } while (--idx >= 0);
7629         out1fmt("%s%s\n", name, (cmdp->rehash ? "*" : nullstr));
7630 }
7631
7632 /*
7633  * Clear out command entries.  The argument specifies the first entry in
7634  * PATH which has changed.
7635  */
7636 static void
7637 clearcmdentry(int firstchange)
7638 {
7639         struct tblentry **tblp;
7640         struct tblentry **pp;
7641         struct tblentry *cmdp;
7642
7643         INT_OFF;
7644         for (tblp = cmdtable; tblp < &cmdtable[CMDTABLESIZE]; tblp++) {
7645                 pp = tblp;
7646                 while ((cmdp = *pp) != NULL) {
7647                         if ((cmdp->cmdtype == CMDNORMAL &&
7648                              cmdp->param.index >= firstchange)
7649                          || (cmdp->cmdtype == CMDBUILTIN &&
7650                              builtinloc >= firstchange)
7651                         ) {
7652                                 *pp = cmdp->next;
7653                                 free(cmdp);
7654                         } else {
7655                                 pp = &cmdp->next;
7656                         }
7657                 }
7658         }
7659         INT_ON;
7660 }
7661
7662 /*
7663  * Locate a command in the command hash table.  If "add" is nonzero,
7664  * add the command to the table if it is not already present.  The
7665  * variable "lastcmdentry" is set to point to the address of the link
7666  * pointing to the entry, so that delete_cmd_entry can delete the
7667  * entry.
7668  *
7669  * Interrupts must be off if called with add != 0.
7670  */
7671 static struct tblentry **lastcmdentry;
7672
7673 static struct tblentry *
7674 cmdlookup(const char *name, int add)
7675 {
7676         unsigned int hashval;
7677         const char *p;
7678         struct tblentry *cmdp;
7679         struct tblentry **pp;
7680
7681         p = name;
7682         hashval = (unsigned char)*p << 4;
7683         while (*p)
7684                 hashval += (unsigned char)*p++;
7685         hashval &= 0x7FFF;
7686         pp = &cmdtable[hashval % CMDTABLESIZE];
7687         for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7688                 if (strcmp(cmdp->cmdname, name) == 0)
7689                         break;
7690                 pp = &cmdp->next;
7691         }
7692         if (add && cmdp == NULL) {
7693                 cmdp = *pp = ckzalloc(sizeof(struct tblentry)
7694                                 + strlen(name)
7695                                 /* + 1 - already done because
7696                                  * tblentry::cmdname is char[1] */);
7697                 /*cmdp->next = NULL; - ckzalloc did it */
7698                 cmdp->cmdtype = CMDUNKNOWN;
7699                 strcpy(cmdp->cmdname, name);
7700         }
7701         lastcmdentry = pp;
7702         return cmdp;
7703 }
7704
7705 /*
7706  * Delete the command entry returned on the last lookup.
7707  */
7708 static void
7709 delete_cmd_entry(void)
7710 {
7711         struct tblentry *cmdp;
7712
7713         INT_OFF;
7714         cmdp = *lastcmdentry;
7715         *lastcmdentry = cmdp->next;
7716         if (cmdp->cmdtype == CMDFUNCTION)
7717                 freefunc(cmdp->param.func);
7718         free(cmdp);
7719         INT_ON;
7720 }
7721
7722 /*
7723  * Add a new command entry, replacing any existing command entry for
7724  * the same name - except special builtins.
7725  */
7726 static void
7727 addcmdentry(char *name, struct cmdentry *entry)
7728 {
7729         struct tblentry *cmdp;
7730
7731         cmdp = cmdlookup(name, 1);
7732         if (cmdp->cmdtype == CMDFUNCTION) {
7733                 freefunc(cmdp->param.func);
7734         }
7735         cmdp->cmdtype = entry->cmdtype;
7736         cmdp->param = entry->u;
7737         cmdp->rehash = 0;
7738 }
7739
7740 static int FAST_FUNC
7741 hashcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
7742 {
7743         struct tblentry **pp;
7744         struct tblentry *cmdp;
7745         int c;
7746         struct cmdentry entry;
7747         char *name;
7748
7749         if (nextopt("r") != '\0') {
7750                 clearcmdentry(0);
7751                 return 0;
7752         }
7753
7754         if (*argptr == NULL) {
7755                 for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7756                         for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7757                                 if (cmdp->cmdtype == CMDNORMAL)
7758                                         printentry(cmdp);
7759                         }
7760                 }
7761                 return 0;
7762         }
7763
7764         c = 0;
7765         while ((name = *argptr) != NULL) {
7766                 cmdp = cmdlookup(name, 0);
7767                 if (cmdp != NULL
7768                  && (cmdp->cmdtype == CMDNORMAL
7769                      || (cmdp->cmdtype == CMDBUILTIN && builtinloc >= 0))
7770                 ) {
7771                         delete_cmd_entry();
7772                 }
7773                 find_command(name, &entry, DO_ERR, pathval());
7774                 if (entry.cmdtype == CMDUNKNOWN)
7775                         c = 1;
7776                 argptr++;
7777         }
7778         return c;
7779 }
7780
7781 /*
7782  * Called when a cd is done.  Marks all commands so the next time they
7783  * are executed they will be rehashed.
7784  */
7785 static void
7786 hashcd(void)
7787 {
7788         struct tblentry **pp;
7789         struct tblentry *cmdp;
7790
7791         for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7792                 for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7793                         if (cmdp->cmdtype == CMDNORMAL
7794                          || (cmdp->cmdtype == CMDBUILTIN
7795                              && !IS_BUILTIN_REGULAR(cmdp->param.cmd)
7796                              && builtinloc > 0)
7797                         ) {
7798                                 cmdp->rehash = 1;
7799                         }
7800                 }
7801         }
7802 }
7803
7804 /*
7805  * Fix command hash table when PATH changed.
7806  * Called before PATH is changed.  The argument is the new value of PATH;
7807  * pathval() still returns the old value at this point.
7808  * Called with interrupts off.
7809  */
7810 static void FAST_FUNC
7811 changepath(const char *new)
7812 {
7813         const char *old;
7814         int firstchange;
7815         int idx;
7816         int idx_bltin;
7817
7818         old = pathval();
7819         firstchange = 9999;     /* assume no change */
7820         idx = 0;
7821         idx_bltin = -1;
7822         for (;;) {
7823                 if (*old != *new) {
7824                         firstchange = idx;
7825                         if ((*old == '\0' && *new == ':')
7826                          || (*old == ':' && *new == '\0')
7827                         ) {
7828                                 firstchange++;
7829                         }
7830                         old = new;      /* ignore subsequent differences */
7831                 }
7832                 if (*new == '\0')
7833                         break;
7834                 if (*new == '%' && idx_bltin < 0 && prefix(new + 1, "builtin"))
7835                         idx_bltin = idx;
7836                 if (*new == ':')
7837                         idx++;
7838                 new++;
7839                 old++;
7840         }
7841         if (builtinloc < 0 && idx_bltin >= 0)
7842                 builtinloc = idx_bltin;             /* zap builtins */
7843         if (builtinloc >= 0 && idx_bltin < 0)
7844                 firstchange = 0;
7845         clearcmdentry(firstchange);
7846         builtinloc = idx_bltin;
7847 }
7848 enum {
7849         TEOF,
7850         TNL,
7851         TREDIR,
7852         TWORD,
7853         TSEMI,
7854         TBACKGND,
7855         TAND,
7856         TOR,
7857         TPIPE,
7858         TLP,
7859         TRP,
7860         TENDCASE,
7861         TENDBQUOTE,
7862         TNOT,
7863         TCASE,
7864         TDO,
7865         TDONE,
7866         TELIF,
7867         TELSE,
7868         TESAC,
7869         TFI,
7870         TFOR,
7871 #if ENABLE_ASH_BASH_COMPAT
7872         TFUNCTION,
7873 #endif
7874         TIF,
7875         TIN,
7876         TTHEN,
7877         TUNTIL,
7878         TWHILE,
7879         TBEGIN,
7880         TEND
7881 };
7882 typedef smallint token_id_t;
7883
7884 /* first char is indicating which tokens mark the end of a list */
7885 static const char *const tokname_array[] = {
7886         "\1end of file",
7887         "\0newline",
7888         "\0redirection",
7889         "\0word",
7890         "\0;",
7891         "\0&",
7892         "\0&&",
7893         "\0||",
7894         "\0|",
7895         "\0(",
7896         "\1)",
7897         "\1;;",
7898         "\1`",
7899 #define KWDOFFSET 13
7900         /* the following are keywords */
7901         "\0!",
7902         "\0case",
7903         "\1do",
7904         "\1done",
7905         "\1elif",
7906         "\1else",
7907         "\1esac",
7908         "\1fi",
7909         "\0for",
7910 #if ENABLE_ASH_BASH_COMPAT
7911         "\0function",
7912 #endif
7913         "\0if",
7914         "\0in",
7915         "\1then",
7916         "\0until",
7917         "\0while",
7918         "\0{",
7919         "\1}",
7920 };
7921
7922 /* Wrapper around strcmp for qsort/bsearch/... */
7923 static int
7924 pstrcmp(const void *a, const void *b)
7925 {
7926         return strcmp((char*) a, (*(char**) b) + 1);
7927 }
7928
7929 static const char *const *
7930 findkwd(const char *s)
7931 {
7932         return bsearch(s, tokname_array + KWDOFFSET,
7933                         ARRAY_SIZE(tokname_array) - KWDOFFSET,
7934                         sizeof(tokname_array[0]), pstrcmp);
7935 }
7936
7937 /*
7938  * Locate and print what a word is...
7939  */
7940 static int
7941 describe_command(char *command, const char *path, int describe_command_verbose)
7942 {
7943         struct cmdentry entry;
7944         struct tblentry *cmdp;
7945 #if ENABLE_ASH_ALIAS
7946         const struct alias *ap;
7947 #endif
7948
7949         path = path ? path : pathval();
7950
7951         if (describe_command_verbose) {
7952                 out1str(command);
7953         }
7954
7955         /* First look at the keywords */
7956         if (findkwd(command)) {
7957                 out1str(describe_command_verbose ? " is a shell keyword" : command);
7958                 goto out;
7959         }
7960
7961 #if ENABLE_ASH_ALIAS
7962         /* Then look at the aliases */
7963         ap = lookupalias(command, 0);
7964         if (ap != NULL) {
7965                 if (!describe_command_verbose) {
7966                         out1str("alias ");
7967                         printalias(ap);
7968                         return 0;
7969                 }
7970                 out1fmt(" is an alias for %s", ap->val);
7971                 goto out;
7972         }
7973 #endif
7974         /* Then check if it is a tracked alias */
7975         cmdp = cmdlookup(command, 0);
7976         if (cmdp != NULL) {
7977                 entry.cmdtype = cmdp->cmdtype;
7978                 entry.u = cmdp->param;
7979         } else {
7980                 /* Finally use brute force */
7981                 find_command(command, &entry, DO_ABS, path);
7982         }
7983
7984         switch (entry.cmdtype) {
7985         case CMDNORMAL: {
7986                 int j = entry.u.index;
7987                 char *p;
7988                 if (j < 0) {
7989                         p = command;
7990                 } else {
7991                         do {
7992                                 p = path_advance(&path, command);
7993                                 stunalloc(p);
7994                         } while (--j >= 0);
7995                 }
7996                 if (describe_command_verbose) {
7997                         out1fmt(" is%s %s",
7998                                 (cmdp ? " a tracked alias for" : nullstr), p
7999                         );
8000                 } else {
8001                         out1str(p);
8002                 }
8003                 break;
8004         }
8005
8006         case CMDFUNCTION:
8007                 if (describe_command_verbose) {
8008                         out1str(" is a shell function");
8009                 } else {
8010                         out1str(command);
8011                 }
8012                 break;
8013
8014         case CMDBUILTIN:
8015                 if (describe_command_verbose) {
8016                         out1fmt(" is a %sshell builtin",
8017                                 IS_BUILTIN_SPECIAL(entry.u.cmd) ?
8018                                         "special " : nullstr
8019                         );
8020                 } else {
8021                         out1str(command);
8022                 }
8023                 break;
8024
8025         default:
8026                 if (describe_command_verbose) {
8027                         out1str(": not found\n");
8028                 }
8029                 return 127;
8030         }
8031  out:
8032         out1str("\n");
8033         return 0;
8034 }
8035
8036 static int FAST_FUNC
8037 typecmd(int argc UNUSED_PARAM, char **argv)
8038 {
8039         int i = 1;
8040         int err = 0;
8041         int verbose = 1;
8042
8043         /* type -p ... ? (we don't bother checking for 'p') */
8044         if (argv[1] && argv[1][0] == '-') {
8045                 i++;
8046                 verbose = 0;
8047         }
8048         while (argv[i]) {
8049                 err |= describe_command(argv[i++], NULL, verbose);
8050         }
8051         return err;
8052 }
8053
8054 #if ENABLE_ASH_CMDCMD
8055 /* Is it "command [-p] PROG ARGS" bltin, no other opts? Return ptr to "PROG" if yes */
8056 static char **
8057 parse_command_args(char **argv, const char **path)
8058 {
8059         char *cp, c;
8060
8061         for (;;) {
8062                 cp = *++argv;
8063                 if (!cp)
8064                         return NULL;
8065                 if (*cp++ != '-')
8066                         break;
8067                 c = *cp++;
8068                 if (!c)
8069                         break;
8070                 if (c == '-' && !*cp) {
8071                         if (!*++argv)
8072                                 return NULL;
8073                         break;
8074                 }
8075                 do {
8076                         switch (c) {
8077                         case 'p':
8078                                 *path = bb_default_path;
8079                                 break;
8080                         default:
8081                                 /* run 'typecmd' for other options */
8082                                 return NULL;
8083                         }
8084                         c = *cp++;
8085                 } while (c);
8086         }
8087         return argv;
8088 }
8089
8090 static int FAST_FUNC
8091 commandcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
8092 {
8093         char *cmd;
8094         int c;
8095         enum {
8096                 VERIFY_BRIEF = 1,
8097                 VERIFY_VERBOSE = 2,
8098         } verify = 0;
8099         const char *path = NULL;
8100
8101         /* "command [-p] PROG ARGS" (that is, without -V or -v)
8102          * never reaches this function.
8103          */
8104
8105         while ((c = nextopt("pvV")) != '\0')
8106                 if (c == 'V')
8107                         verify |= VERIFY_VERBOSE;
8108                 else if (c == 'v')
8109                         /*verify |= VERIFY_BRIEF*/;
8110 #if DEBUG
8111                 else if (c != 'p')
8112                         abort();
8113 #endif
8114                 else
8115                         path = bb_default_path;
8116
8117         /* Mimic bash: just "command -v" doesn't complain, it's a nop */
8118         cmd = *argptr;
8119         if (/*verify && */ cmd)
8120                 return describe_command(cmd, path, verify /* - VERIFY_BRIEF*/);
8121
8122         return 0;
8123 }
8124 #endif
8125
8126
8127 /* ============ eval.c */
8128
8129 static int funcblocksize;       /* size of structures in function */
8130 static int funcstringsize;      /* size of strings in node */
8131 static void *funcblock;         /* block to allocate function from */
8132 static char *funcstring;        /* block to allocate strings from */
8133
8134 /* flags in argument to evaltree */
8135 #define EV_EXIT    01           /* exit after evaluating tree */
8136 #define EV_TESTED  02           /* exit status is checked; ignore -e flag */
8137
8138 static const uint8_t nodesize[N_NUMBER] ALIGN1 = {
8139         [NCMD     ] = SHELL_ALIGN(sizeof(struct ncmd)),
8140         [NPIPE    ] = SHELL_ALIGN(sizeof(struct npipe)),
8141         [NREDIR   ] = SHELL_ALIGN(sizeof(struct nredir)),
8142         [NBACKGND ] = SHELL_ALIGN(sizeof(struct nredir)),
8143         [NSUBSHELL] = SHELL_ALIGN(sizeof(struct nredir)),
8144         [NAND     ] = SHELL_ALIGN(sizeof(struct nbinary)),
8145         [NOR      ] = SHELL_ALIGN(sizeof(struct nbinary)),
8146         [NSEMI    ] = SHELL_ALIGN(sizeof(struct nbinary)),
8147         [NIF      ] = SHELL_ALIGN(sizeof(struct nif)),
8148         [NWHILE   ] = SHELL_ALIGN(sizeof(struct nbinary)),
8149         [NUNTIL   ] = SHELL_ALIGN(sizeof(struct nbinary)),
8150         [NFOR     ] = SHELL_ALIGN(sizeof(struct nfor)),
8151         [NCASE    ] = SHELL_ALIGN(sizeof(struct ncase)),
8152         [NCLIST   ] = SHELL_ALIGN(sizeof(struct nclist)),
8153         [NDEFUN   ] = SHELL_ALIGN(sizeof(struct narg)),
8154         [NARG     ] = SHELL_ALIGN(sizeof(struct narg)),
8155         [NTO      ] = SHELL_ALIGN(sizeof(struct nfile)),
8156 #if ENABLE_ASH_BASH_COMPAT
8157         [NTO2     ] = SHELL_ALIGN(sizeof(struct nfile)),
8158 #endif
8159         [NCLOBBER ] = SHELL_ALIGN(sizeof(struct nfile)),
8160         [NFROM    ] = SHELL_ALIGN(sizeof(struct nfile)),
8161         [NFROMTO  ] = SHELL_ALIGN(sizeof(struct nfile)),
8162         [NAPPEND  ] = SHELL_ALIGN(sizeof(struct nfile)),
8163         [NTOFD    ] = SHELL_ALIGN(sizeof(struct ndup)),
8164         [NFROMFD  ] = SHELL_ALIGN(sizeof(struct ndup)),
8165         [NHERE    ] = SHELL_ALIGN(sizeof(struct nhere)),
8166         [NXHERE   ] = SHELL_ALIGN(sizeof(struct nhere)),
8167         [NNOT     ] = SHELL_ALIGN(sizeof(struct nnot)),
8168 };
8169
8170 static void calcsize(union node *n);
8171
8172 static void
8173 sizenodelist(struct nodelist *lp)
8174 {
8175         while (lp) {
8176                 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
8177                 calcsize(lp->n);
8178                 lp = lp->next;
8179         }
8180 }
8181
8182 static void
8183 calcsize(union node *n)
8184 {
8185         if (n == NULL)
8186                 return;
8187         funcblocksize += nodesize[n->type];
8188         switch (n->type) {
8189         case NCMD:
8190                 calcsize(n->ncmd.redirect);
8191                 calcsize(n->ncmd.args);
8192                 calcsize(n->ncmd.assign);
8193                 break;
8194         case NPIPE:
8195                 sizenodelist(n->npipe.cmdlist);
8196                 break;
8197         case NREDIR:
8198         case NBACKGND:
8199         case NSUBSHELL:
8200                 calcsize(n->nredir.redirect);
8201                 calcsize(n->nredir.n);
8202                 break;
8203         case NAND:
8204         case NOR:
8205         case NSEMI:
8206         case NWHILE:
8207         case NUNTIL:
8208                 calcsize(n->nbinary.ch2);
8209                 calcsize(n->nbinary.ch1);
8210                 break;
8211         case NIF:
8212                 calcsize(n->nif.elsepart);
8213                 calcsize(n->nif.ifpart);
8214                 calcsize(n->nif.test);
8215                 break;
8216         case NFOR:
8217                 funcstringsize += strlen(n->nfor.var) + 1;
8218                 calcsize(n->nfor.body);
8219                 calcsize(n->nfor.args);
8220                 break;
8221         case NCASE:
8222                 calcsize(n->ncase.cases);
8223                 calcsize(n->ncase.expr);
8224                 break;
8225         case NCLIST:
8226                 calcsize(n->nclist.body);
8227                 calcsize(n->nclist.pattern);
8228                 calcsize(n->nclist.next);
8229                 break;
8230         case NDEFUN:
8231         case NARG:
8232                 sizenodelist(n->narg.backquote);
8233                 funcstringsize += strlen(n->narg.text) + 1;
8234                 calcsize(n->narg.next);
8235                 break;
8236         case NTO:
8237 #if ENABLE_ASH_BASH_COMPAT
8238         case NTO2:
8239 #endif
8240         case NCLOBBER:
8241         case NFROM:
8242         case NFROMTO:
8243         case NAPPEND:
8244                 calcsize(n->nfile.fname);
8245                 calcsize(n->nfile.next);
8246                 break;
8247         case NTOFD:
8248         case NFROMFD:
8249                 calcsize(n->ndup.vname);
8250                 calcsize(n->ndup.next);
8251         break;
8252         case NHERE:
8253         case NXHERE:
8254                 calcsize(n->nhere.doc);
8255                 calcsize(n->nhere.next);
8256                 break;
8257         case NNOT:
8258                 calcsize(n->nnot.com);
8259                 break;
8260         };
8261 }
8262
8263 static char *
8264 nodeckstrdup(char *s)
8265 {
8266         char *rtn = funcstring;
8267
8268         strcpy(funcstring, s);
8269         funcstring += strlen(s) + 1;
8270         return rtn;
8271 }
8272
8273 static union node *copynode(union node *);
8274
8275 static struct nodelist *
8276 copynodelist(struct nodelist *lp)
8277 {
8278         struct nodelist *start;
8279         struct nodelist **lpp;
8280
8281         lpp = &start;
8282         while (lp) {
8283                 *lpp = funcblock;
8284                 funcblock = (char *) funcblock + SHELL_ALIGN(sizeof(struct nodelist));
8285                 (*lpp)->n = copynode(lp->n);
8286                 lp = lp->next;
8287                 lpp = &(*lpp)->next;
8288         }
8289         *lpp = NULL;
8290         return start;
8291 }
8292
8293 static union node *
8294 copynode(union node *n)
8295 {
8296         union node *new;
8297
8298         if (n == NULL)
8299                 return NULL;
8300         new = funcblock;
8301         funcblock = (char *) funcblock + nodesize[n->type];
8302
8303         switch (n->type) {
8304         case NCMD:
8305                 new->ncmd.redirect = copynode(n->ncmd.redirect);
8306                 new->ncmd.args = copynode(n->ncmd.args);
8307                 new->ncmd.assign = copynode(n->ncmd.assign);
8308                 break;
8309         case NPIPE:
8310                 new->npipe.cmdlist = copynodelist(n->npipe.cmdlist);
8311                 new->npipe.pipe_backgnd = n->npipe.pipe_backgnd;
8312                 break;
8313         case NREDIR:
8314         case NBACKGND:
8315         case NSUBSHELL:
8316                 new->nredir.redirect = copynode(n->nredir.redirect);
8317                 new->nredir.n = copynode(n->nredir.n);
8318                 break;
8319         case NAND:
8320         case NOR:
8321         case NSEMI:
8322         case NWHILE:
8323         case NUNTIL:
8324                 new->nbinary.ch2 = copynode(n->nbinary.ch2);
8325                 new->nbinary.ch1 = copynode(n->nbinary.ch1);
8326                 break;
8327         case NIF:
8328                 new->nif.elsepart = copynode(n->nif.elsepart);
8329                 new->nif.ifpart = copynode(n->nif.ifpart);
8330                 new->nif.test = copynode(n->nif.test);
8331                 break;
8332         case NFOR:
8333                 new->nfor.var = nodeckstrdup(n->nfor.var);
8334                 new->nfor.body = copynode(n->nfor.body);
8335                 new->nfor.args = copynode(n->nfor.args);
8336                 break;
8337         case NCASE:
8338                 new->ncase.cases = copynode(n->ncase.cases);
8339                 new->ncase.expr = copynode(n->ncase.expr);
8340                 break;
8341         case NCLIST:
8342                 new->nclist.body = copynode(n->nclist.body);
8343                 new->nclist.pattern = copynode(n->nclist.pattern);
8344                 new->nclist.next = copynode(n->nclist.next);
8345                 break;
8346         case NDEFUN:
8347         case NARG:
8348                 new->narg.backquote = copynodelist(n->narg.backquote);
8349                 new->narg.text = nodeckstrdup(n->narg.text);
8350                 new->narg.next = copynode(n->narg.next);
8351                 break;
8352         case NTO:
8353 #if ENABLE_ASH_BASH_COMPAT
8354         case NTO2:
8355 #endif
8356         case NCLOBBER:
8357         case NFROM:
8358         case NFROMTO:
8359         case NAPPEND:
8360                 new->nfile.fname = copynode(n->nfile.fname);
8361                 new->nfile.fd = n->nfile.fd;
8362                 new->nfile.next = copynode(n->nfile.next);
8363                 break;
8364         case NTOFD:
8365         case NFROMFD:
8366                 new->ndup.vname = copynode(n->ndup.vname);
8367                 new->ndup.dupfd = n->ndup.dupfd;
8368                 new->ndup.fd = n->ndup.fd;
8369                 new->ndup.next = copynode(n->ndup.next);
8370                 break;
8371         case NHERE:
8372         case NXHERE:
8373                 new->nhere.doc = copynode(n->nhere.doc);
8374                 new->nhere.fd = n->nhere.fd;
8375                 new->nhere.next = copynode(n->nhere.next);
8376                 break;
8377         case NNOT:
8378                 new->nnot.com = copynode(n->nnot.com);
8379                 break;
8380         };
8381         new->type = n->type;
8382         return new;
8383 }
8384
8385 /*
8386  * Make a copy of a parse tree.
8387  */
8388 static struct funcnode *
8389 copyfunc(union node *n)
8390 {
8391         struct funcnode *f;
8392         size_t blocksize;
8393
8394         funcblocksize = offsetof(struct funcnode, n);
8395         funcstringsize = 0;
8396         calcsize(n);
8397         blocksize = funcblocksize;
8398         f = ckmalloc(blocksize + funcstringsize);
8399         funcblock = (char *) f + offsetof(struct funcnode, n);
8400         funcstring = (char *) f + blocksize;
8401         copynode(n);
8402         f->count = 0;
8403         return f;
8404 }
8405
8406 /*
8407  * Define a shell function.
8408  */
8409 static void
8410 defun(char *name, union node *func)
8411 {
8412         struct cmdentry entry;
8413
8414         INT_OFF;
8415         entry.cmdtype = CMDFUNCTION;
8416         entry.u.func = copyfunc(func);
8417         addcmdentry(name, &entry);
8418         INT_ON;
8419 }
8420
8421 /* Reasons for skipping commands (see comment on breakcmd routine) */
8422 #define SKIPBREAK      (1 << 0)
8423 #define SKIPCONT       (1 << 1)
8424 #define SKIPFUNC       (1 << 2)
8425 static smallint evalskip;       /* set to SKIPxxx if we are skipping commands */
8426 static int skipcount;           /* number of levels to skip */
8427 static int funcnest;            /* depth of function calls */
8428 static int loopnest;            /* current loop nesting level */
8429
8430 /* Forward decl way out to parsing code - dotrap needs it */
8431 static int evalstring(char *s, int flags);
8432
8433 /* Called to execute a trap.
8434  * Single callsite - at the end of evaltree().
8435  * If we return non-zero, evaltree raises EXEXIT exception.
8436  *
8437  * Perhaps we should avoid entering new trap handlers
8438  * while we are executing a trap handler. [is it a TODO?]
8439  */
8440 static void
8441 dotrap(void)
8442 {
8443         uint8_t *g;
8444         int sig;
8445         uint8_t last_status;
8446
8447         if (!pending_sig)
8448                 return;
8449
8450         last_status = exitstatus;
8451         pending_sig = 0;
8452         barrier();
8453
8454         TRACE(("dotrap entered\n"));
8455         for (sig = 1, g = gotsig; sig < NSIG; sig++, g++) {
8456                 char *p;
8457
8458                 if (!*g)
8459                         continue;
8460
8461                 if (evalskip) {
8462                         pending_sig = sig;
8463                         break;
8464                 }
8465
8466                 p = trap[sig];
8467                 /* non-trapped SIGINT is handled separately by raise_interrupt,
8468                  * don't upset it by resetting gotsig[SIGINT-1] */
8469                 if (sig == SIGINT && !p)
8470                         continue;
8471
8472                 TRACE(("sig %d is active, will run handler '%s'\n", sig, p));
8473                 *g = 0;
8474                 if (!p)
8475                         continue;
8476                 evalstring(p, 0);
8477         }
8478         exitstatus = last_status;
8479         TRACE(("dotrap returns\n"));
8480 }
8481
8482 /* forward declarations - evaluation is fairly recursive business... */
8483 static int evalloop(union node *, int);
8484 static int evalfor(union node *, int);
8485 static int evalcase(union node *, int);
8486 static int evalsubshell(union node *, int);
8487 static void expredir(union node *);
8488 static int evalpipe(union node *, int);
8489 static int evalcommand(union node *, int);
8490 static int evalbltin(const struct builtincmd *, int, char **, int);
8491 static void prehash(union node *);
8492
8493 /*
8494  * Evaluate a parse tree.  The value is left in the global variable
8495  * exitstatus.
8496  */
8497 static int
8498 evaltree(union node *n, int flags)
8499 {
8500         struct jmploc *volatile savehandler = exception_handler;
8501         struct jmploc jmploc;
8502         int checkexit = 0;
8503         int (*evalfn)(union node *, int);
8504         int status = 0;
8505         int int_level;
8506
8507         SAVE_INT(int_level);
8508
8509         if (n == NULL) {
8510                 TRACE(("evaltree(NULL) called\n"));
8511                 goto out1;
8512         }
8513         TRACE(("evaltree(%p: %d, %d) called\n", n, n->type, flags));
8514
8515         dotrap();
8516
8517         exception_handler = &jmploc;
8518         {
8519                 int err = setjmp(jmploc.loc);
8520                 if (err) {
8521                         /* if it was a signal, check for trap handlers */
8522                         if (exception_type == EXSIG) {
8523                                 TRACE(("exception %d (EXSIG) in evaltree, err=%d\n",
8524                                                 exception_type, err));
8525                                 goto out;
8526                         }
8527                         /* continue on the way out */
8528                         TRACE(("exception %d in evaltree, propagating err=%d\n",
8529                                         exception_type, err));
8530                         exception_handler = savehandler;
8531                         longjmp(exception_handler->loc, err);
8532                 }
8533         }
8534
8535         switch (n->type) {
8536         default:
8537 #if DEBUG
8538                 out1fmt("Node type = %d\n", n->type);
8539                 fflush_all();
8540                 break;
8541 #endif
8542         case NNOT:
8543                 status = !evaltree(n->nnot.com, EV_TESTED);
8544                 goto setstatus;
8545         case NREDIR:
8546                 expredir(n->nredir.redirect);
8547                 status = redirectsafe(n->nredir.redirect, REDIR_PUSH);
8548                 if (!status) {
8549                         status = evaltree(n->nredir.n, flags & EV_TESTED);
8550                 }
8551                 popredir(/*drop:*/ 0, /*restore:*/ 0 /* not sure */);
8552                 goto setstatus;
8553         case NCMD:
8554                 evalfn = evalcommand;
8555  checkexit:
8556                 if (eflag && !(flags & EV_TESTED))
8557                         checkexit = ~0;
8558                 goto calleval;
8559         case NFOR:
8560                 evalfn = evalfor;
8561                 goto calleval;
8562         case NWHILE:
8563         case NUNTIL:
8564                 evalfn = evalloop;
8565                 goto calleval;
8566         case NSUBSHELL:
8567                 evalfn = evalsubshell;
8568                 goto checkexit;
8569         case NBACKGND:
8570                 evalfn = evalsubshell;
8571                 goto calleval;
8572         case NPIPE:
8573                 evalfn = evalpipe;
8574                 goto checkexit;
8575         case NCASE:
8576                 evalfn = evalcase;
8577                 goto calleval;
8578         case NAND:
8579         case NOR:
8580         case NSEMI: {
8581
8582 #if NAND + 1 != NOR
8583 #error NAND + 1 != NOR
8584 #endif
8585 #if NOR + 1 != NSEMI
8586 #error NOR + 1 != NSEMI
8587 #endif
8588                 unsigned is_or = n->type - NAND;
8589                 status = evaltree(
8590                         n->nbinary.ch1,
8591                         (flags | ((is_or >> 1) - 1)) & EV_TESTED
8592                 );
8593                 if (!status == is_or || evalskip)
8594                         break;
8595                 n = n->nbinary.ch2;
8596  evaln:
8597                 evalfn = evaltree;
8598  calleval:
8599                 status = evalfn(n, flags);
8600                 goto setstatus;
8601         }
8602         case NIF:
8603                 status = evaltree(n->nif.test, EV_TESTED);
8604                 if (evalskip)
8605                         break;
8606                 if (!status) {
8607                         n = n->nif.ifpart;
8608                         goto evaln;
8609                 }
8610                 if (n->nif.elsepart) {
8611                         n = n->nif.elsepart;
8612                         goto evaln;
8613                 }
8614                 status = 0;
8615                 goto setstatus;
8616         case NDEFUN:
8617                 defun(n->narg.text, n->narg.next);
8618                 /* Not necessary. To test it:
8619                  * "false; f() { qwerty; }; echo $?" should print 0.
8620                  */
8621                 /* status = 0; */
8622  setstatus:
8623                 exitstatus = status;
8624                 break;
8625         }
8626
8627  out:
8628         exception_handler = savehandler;
8629
8630  out1:
8631         /* Order of checks below is important:
8632          * signal handlers trigger before exit caused by "set -e".
8633          */
8634         dotrap();
8635
8636         if (checkexit & status)
8637                 raise_exception(EXEXIT);
8638         if (flags & EV_EXIT)
8639                 raise_exception(EXEXIT);
8640
8641         RESTORE_INT(int_level);
8642         TRACE(("leaving evaltree (no interrupts)\n"));
8643
8644         return exitstatus;
8645 }
8646
8647 #if !defined(__alpha__) || (defined(__GNUC__) && __GNUC__ >= 3)
8648 static
8649 #endif
8650 int evaltreenr(union node *, int) __attribute__ ((alias("evaltree"),__noreturn__));
8651
8652 static int
8653 skiploop(void)
8654 {
8655         int skip = evalskip;
8656
8657         switch (skip) {
8658         case 0:
8659                 break;
8660         case SKIPBREAK:
8661         case SKIPCONT:
8662                 if (--skipcount <= 0) {
8663                         evalskip = 0;
8664                         break;
8665                 }
8666                 skip = SKIPBREAK;
8667                 break;
8668         }
8669         return skip;
8670 }
8671
8672 static int
8673 evalloop(union node *n, int flags)
8674 {
8675         int skip;
8676         int status;
8677
8678         loopnest++;
8679         status = 0;
8680         flags &= EV_TESTED;
8681         do {
8682                 int i;
8683
8684                 i = evaltree(n->nbinary.ch1, EV_TESTED);
8685                 skip = skiploop();
8686                 if (skip == SKIPFUNC)
8687                         status = i;
8688                 if (skip)
8689                         continue;
8690                 if (n->type != NWHILE)
8691                         i = !i;
8692                 if (i != 0)
8693                         break;
8694                 status = evaltree(n->nbinary.ch2, flags);
8695                 skip = skiploop();
8696         } while (!(skip & ~SKIPCONT));
8697         loopnest--;
8698
8699         return status;
8700 }
8701
8702 static int
8703 evalfor(union node *n, int flags)
8704 {
8705         struct arglist arglist;
8706         union node *argp;
8707         struct strlist *sp;
8708         struct stackmark smark;
8709         int status = 0;
8710
8711         setstackmark(&smark);
8712         arglist.list = NULL;
8713         arglist.lastp = &arglist.list;
8714         for (argp = n->nfor.args; argp; argp = argp->narg.next) {
8715                 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
8716         }
8717         *arglist.lastp = NULL;
8718
8719         loopnest++;
8720         flags &= EV_TESTED;
8721         for (sp = arglist.list; sp; sp = sp->next) {
8722                 setvar0(n->nfor.var, sp->text);
8723                 status = evaltree(n->nfor.body, flags);
8724                 if (skiploop() & ~SKIPCONT)
8725                         break;
8726         }
8727         loopnest--;
8728         popstackmark(&smark);
8729
8730         return status;
8731 }
8732
8733 static int
8734 evalcase(union node *n, int flags)
8735 {
8736         union node *cp;
8737         union node *patp;
8738         struct arglist arglist;
8739         struct stackmark smark;
8740         int status = 0;
8741
8742         setstackmark(&smark);
8743         arglist.list = NULL;
8744         arglist.lastp = &arglist.list;
8745         expandarg(n->ncase.expr, &arglist, EXP_TILDE);
8746         for (cp = n->ncase.cases; cp && evalskip == 0; cp = cp->nclist.next) {
8747                 for (patp = cp->nclist.pattern; patp; patp = patp->narg.next) {
8748                         if (casematch(patp, arglist.list->text)) {
8749                                 /* Ensure body is non-empty as otherwise
8750                                  * EV_EXIT may prevent us from setting the
8751                                  * exit status.
8752                                  */
8753                                 if (evalskip == 0 && cp->nclist.body) {
8754                                         status = evaltree(cp->nclist.body, flags);
8755                                 }
8756                                 goto out;
8757                         }
8758                 }
8759         }
8760  out:
8761         popstackmark(&smark);
8762
8763         return status;
8764 }
8765
8766 /*
8767  * Kick off a subshell to evaluate a tree.
8768  */
8769 static int
8770 evalsubshell(union node *n, int flags)
8771 {
8772         struct job *jp;
8773         int backgnd = (n->type == NBACKGND);
8774         int status;
8775
8776         expredir(n->nredir.redirect);
8777         if (!backgnd && (flags & EV_EXIT) && !may_have_traps)
8778                 goto nofork;
8779         INT_OFF;
8780         jp = makejob(/*n,*/ 1);
8781         if (forkshell(jp, n, backgnd) == 0) {
8782                 /* child */
8783                 INT_ON;
8784                 flags |= EV_EXIT;
8785                 if (backgnd)
8786                         flags &= ~EV_TESTED;
8787  nofork:
8788                 redirect(n->nredir.redirect, 0);
8789                 evaltreenr(n->nredir.n, flags);
8790                 /* never returns */
8791         }
8792         status = 0;
8793         if (!backgnd)
8794                 status = waitforjob(jp);
8795         INT_ON;
8796         return status;
8797 }
8798
8799 /*
8800  * Compute the names of the files in a redirection list.
8801  */
8802 static void fixredir(union node *, const char *, int);
8803 static void
8804 expredir(union node *n)
8805 {
8806         union node *redir;
8807
8808         for (redir = n; redir; redir = redir->nfile.next) {
8809                 struct arglist fn;
8810
8811                 fn.list = NULL;
8812                 fn.lastp = &fn.list;
8813                 switch (redir->type) {
8814                 case NFROMTO:
8815                 case NFROM:
8816                 case NTO:
8817 #if ENABLE_ASH_BASH_COMPAT
8818                 case NTO2:
8819 #endif
8820                 case NCLOBBER:
8821                 case NAPPEND:
8822                         expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
8823                         TRACE(("expredir expanded to '%s'\n", fn.list->text));
8824 #if ENABLE_ASH_BASH_COMPAT
8825  store_expfname:
8826 #endif
8827 #if 0
8828 // By the design of stack allocator, the loop of this kind:
8829 //      while true; do while true; do break; done </dev/null; done
8830 // will look like a memory leak: ash plans to free expfname's
8831 // of "/dev/null" as soon as it finishes running the loop
8832 // (in this case, never).
8833 // This "fix" is wrong:
8834                         if (redir->nfile.expfname)
8835                                 stunalloc(redir->nfile.expfname);
8836 // It results in corrupted state of stacked allocations.
8837 #endif
8838                         redir->nfile.expfname = fn.list->text;
8839                         break;
8840                 case NFROMFD:
8841                 case NTOFD: /* >& */
8842                         if (redir->ndup.vname) {
8843                                 expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
8844                                 if (fn.list == NULL)
8845                                         ash_msg_and_raise_error("redir error");
8846 #if ENABLE_ASH_BASH_COMPAT
8847 //FIXME: we used expandarg with different args!
8848                                 if (!isdigit_str9(fn.list->text)) {
8849                                         /* >&file, not >&fd */
8850                                         if (redir->nfile.fd != 1) /* 123>&file - BAD */
8851                                                 ash_msg_and_raise_error("redir error");
8852                                         redir->type = NTO2;
8853                                         goto store_expfname;
8854                                 }
8855 #endif
8856                                 fixredir(redir, fn.list->text, 1);
8857                         }
8858                         break;
8859                 }
8860         }
8861 }
8862
8863 /*
8864  * Evaluate a pipeline.  All the processes in the pipeline are children
8865  * of the process creating the pipeline.  (This differs from some versions
8866  * of the shell, which make the last process in a pipeline the parent
8867  * of all the rest.)
8868  */
8869 static int
8870 evalpipe(union node *n, int flags)
8871 {
8872         struct job *jp;
8873         struct nodelist *lp;
8874         int pipelen;
8875         int prevfd;
8876         int pip[2];
8877         int status = 0;
8878
8879         TRACE(("evalpipe(0x%lx) called\n", (long)n));
8880         pipelen = 0;
8881         for (lp = n->npipe.cmdlist; lp; lp = lp->next)
8882                 pipelen++;
8883         flags |= EV_EXIT;
8884         INT_OFF;
8885         jp = makejob(/*n,*/ pipelen);
8886         prevfd = -1;
8887         for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
8888                 prehash(lp->n);
8889                 pip[1] = -1;
8890                 if (lp->next) {
8891                         if (pipe(pip) < 0) {
8892                                 close(prevfd);
8893                                 ash_msg_and_raise_error("pipe call failed");
8894                         }
8895                 }
8896                 if (forkshell(jp, lp->n, n->npipe.pipe_backgnd) == 0) {
8897                         INT_ON;
8898                         if (pip[1] >= 0) {
8899                                 close(pip[0]);
8900                         }
8901                         if (prevfd > 0) {
8902                                 dup2(prevfd, 0);
8903                                 close(prevfd);
8904                         }
8905                         if (pip[1] > 1) {
8906                                 dup2(pip[1], 1);
8907                                 close(pip[1]);
8908                         }
8909                         evaltreenr(lp->n, flags);
8910                         /* never returns */
8911                 }
8912                 if (prevfd >= 0)
8913                         close(prevfd);
8914                 prevfd = pip[0];
8915                 /* Don't want to trigger debugging */
8916                 if (pip[1] != -1)
8917                         close(pip[1]);
8918         }
8919         if (n->npipe.pipe_backgnd == 0) {
8920                 status = waitforjob(jp);
8921                 TRACE(("evalpipe:  job done exit status %d\n", status));
8922         }
8923         INT_ON;
8924
8925         return status;
8926 }
8927
8928 /*
8929  * Controls whether the shell is interactive or not.
8930  */
8931 static void
8932 setinteractive(int on)
8933 {
8934         static smallint is_interactive;
8935
8936         if (++on == is_interactive)
8937                 return;
8938         is_interactive = on;
8939         setsignal(SIGINT);
8940         setsignal(SIGQUIT);
8941         setsignal(SIGTERM);
8942 #if !ENABLE_FEATURE_SH_EXTRA_QUIET
8943         if (is_interactive > 1) {
8944                 /* Looks like they want an interactive shell */
8945                 static smallint did_banner;
8946
8947                 if (!did_banner) {
8948                         /* note: ash and hush share this string */
8949                         out1fmt("\n\n%s %s\n"
8950                                 IF_ASH_HELP("Enter 'help' for a list of built-in commands.\n")
8951                                 "\n",
8952                                 bb_banner,
8953                                 "built-in shell (ash)"
8954                         );
8955                         did_banner = 1;
8956                 }
8957         }
8958 #endif
8959 }
8960
8961 static void
8962 optschanged(void)
8963 {
8964 #if DEBUG
8965         opentrace();
8966 #endif
8967         setinteractive(iflag);
8968         setjobctl(mflag);
8969 #if ENABLE_FEATURE_EDITING_VI
8970         if (viflag)
8971                 line_input_state->flags |= VI_MODE;
8972         else
8973                 line_input_state->flags &= ~VI_MODE;
8974 #else
8975         viflag = 0; /* forcibly keep the option off */
8976 #endif
8977 }
8978
8979 static struct localvar *localvars;
8980
8981 /*
8982  * Called after a function returns.
8983  * Interrupts must be off.
8984  */
8985 static void
8986 poplocalvars(void)
8987 {
8988         struct localvar *lvp;
8989         struct var *vp;
8990
8991         while ((lvp = localvars) != NULL) {
8992                 localvars = lvp->next;
8993                 vp = lvp->vp;
8994                 TRACE(("poplocalvar %s\n", vp ? vp->var_text : "-"));
8995                 if (vp == NULL) {       /* $- saved */
8996                         memcpy(optlist, lvp->text, sizeof(optlist));
8997                         free((char*)lvp->text);
8998                         optschanged();
8999                 } else if ((lvp->flags & (VUNSET|VSTRFIXED)) == VUNSET) {
9000                         unsetvar(vp->var_text);
9001                 } else {
9002                         if (vp->var_func)
9003                                 vp->var_func(var_end(lvp->text));
9004                         if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
9005                                 free((char*)vp->var_text);
9006                         vp->flags = lvp->flags;
9007                         vp->var_text = lvp->text;
9008                 }
9009                 free(lvp);
9010         }
9011 }
9012
9013 static int
9014 evalfun(struct funcnode *func, int argc, char **argv, int flags)
9015 {
9016         volatile struct shparam saveparam;
9017         struct localvar *volatile savelocalvars;
9018         struct jmploc *volatile savehandler;
9019         struct jmploc jmploc;
9020         int e;
9021
9022         saveparam = shellparam;
9023         savelocalvars = localvars;
9024         savehandler = exception_handler;
9025         e = setjmp(jmploc.loc);
9026         if (e) {
9027                 goto funcdone;
9028         }
9029         INT_OFF;
9030         exception_handler = &jmploc;
9031         localvars = NULL;
9032         shellparam.malloced = 0;
9033         func->count++;
9034         funcnest++;
9035         INT_ON;
9036         shellparam.nparam = argc - 1;
9037         shellparam.p = argv + 1;
9038 #if ENABLE_ASH_GETOPTS
9039         shellparam.optind = 1;
9040         shellparam.optoff = -1;
9041 #endif
9042         evaltree(&func->n, flags & EV_TESTED);
9043  funcdone:
9044         INT_OFF;
9045         funcnest--;
9046         freefunc(func);
9047         poplocalvars();
9048         localvars = savelocalvars;
9049         freeparam(&shellparam);
9050         shellparam = saveparam;
9051         exception_handler = savehandler;
9052         INT_ON;
9053         evalskip &= ~SKIPFUNC;
9054         return e;
9055 }
9056
9057 /*
9058  * Make a variable a local variable.  When a variable is made local, it's
9059  * value and flags are saved in a localvar structure.  The saved values
9060  * will be restored when the shell function returns.  We handle the name
9061  * "-" as a special case: it makes changes to "set +-options" local
9062  * (options will be restored on return from the function).
9063  */
9064 static void
9065 mklocal(char *name)
9066 {
9067         struct localvar *lvp;
9068         struct var **vpp;
9069         struct var *vp;
9070         char *eq = strchr(name, '=');
9071
9072         INT_OFF;
9073         /* Cater for duplicate "local". Examples:
9074          * x=0; f() { local x=1; echo $x; local x; echo $x; }; f; echo $x
9075          * x=0; f() { local x=1; echo $x; local x=2; echo $x; }; f; echo $x
9076          */
9077         lvp = localvars;
9078         while (lvp) {
9079                 if (lvp->vp && varcmp(lvp->vp->var_text, name) == 0) {
9080                         if (eq)
9081                                 setvareq(name, 0);
9082                         /* else:
9083                          * it's a duplicate "local VAR" declaration, do nothing
9084                          */
9085                         return;
9086                 }
9087                 lvp = lvp->next;
9088         }
9089
9090         lvp = ckzalloc(sizeof(*lvp));
9091         if (LONE_DASH(name)) {
9092                 char *p;
9093                 p = ckmalloc(sizeof(optlist));
9094                 lvp->text = memcpy(p, optlist, sizeof(optlist));
9095                 vp = NULL;
9096         } else {
9097                 vpp = hashvar(name);
9098                 vp = *findvar(vpp, name);
9099                 if (vp == NULL) {
9100                         /* variable did not exist yet */
9101                         if (eq)
9102                                 setvareq(name, VSTRFIXED);
9103                         else
9104                                 setvar(name, NULL, VSTRFIXED);
9105                         vp = *vpp;      /* the new variable */
9106                         lvp->flags = VUNSET;
9107                 } else {
9108                         lvp->text = vp->var_text;
9109                         lvp->flags = vp->flags;
9110                         /* make sure neither "struct var" nor string gets freed
9111                          * during (un)setting:
9112                          */
9113                         vp->flags |= VSTRFIXED|VTEXTFIXED;
9114                         if (eq)
9115                                 setvareq(name, 0);
9116                         else
9117                                 /* "local VAR" unsets VAR: */
9118                                 setvar0(name, NULL);
9119                 }
9120         }
9121         lvp->vp = vp;
9122         lvp->next = localvars;
9123         localvars = lvp;
9124         INT_ON;
9125 }
9126
9127 /*
9128  * The "local" command.
9129  */
9130 static int FAST_FUNC
9131 localcmd(int argc UNUSED_PARAM, char **argv)
9132 {
9133         char *name;
9134
9135         if (!funcnest)
9136                 ash_msg_and_raise_error("not in a function");
9137
9138         argv = argptr;
9139         while ((name = *argv++) != NULL) {
9140                 mklocal(name);
9141         }
9142         return 0;
9143 }
9144
9145 static int FAST_FUNC
9146 falsecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
9147 {
9148         return 1;
9149 }
9150
9151 static int FAST_FUNC
9152 truecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
9153 {
9154         return 0;
9155 }
9156
9157 static int FAST_FUNC
9158 execcmd(int argc UNUSED_PARAM, char **argv)
9159 {
9160         if (argv[1]) {
9161                 iflag = 0;              /* exit on error */
9162                 mflag = 0;
9163                 optschanged();
9164                 /* We should set up signals for "exec CMD"
9165                  * the same way as for "CMD" without "exec".
9166                  * But optschanged->setinteractive->setsignal
9167                  * still thought we are a root shell. Therefore, for example,
9168                  * SIGQUIT is still set to IGN. Fix it:
9169                  */
9170                 shlvl++;
9171                 setsignal(SIGQUIT);
9172                 /*setsignal(SIGTERM); - unnecessary because of iflag=0 */
9173                 /*setsignal(SIGTSTP); - unnecessary because of mflag=0 */
9174                 /*setsignal(SIGTTOU); - unnecessary because of mflag=0 */
9175
9176                 shellexec(argv + 1, pathval(), 0);
9177                 /* NOTREACHED */
9178         }
9179         return 0;
9180 }
9181
9182 /*
9183  * The return command.
9184  */
9185 static int FAST_FUNC
9186 returncmd(int argc UNUSED_PARAM, char **argv)
9187 {
9188         /*
9189          * If called outside a function, do what ksh does;
9190          * skip the rest of the file.
9191          */
9192         evalskip = SKIPFUNC;
9193         return argv[1] ? number(argv[1]) : exitstatus;
9194 }
9195
9196 /* Forward declarations for builtintab[] */
9197 static int breakcmd(int, char **) FAST_FUNC;
9198 static int dotcmd(int, char **) FAST_FUNC;
9199 static int evalcmd(int, char **, int) FAST_FUNC;
9200 static int exitcmd(int, char **) FAST_FUNC;
9201 static int exportcmd(int, char **) FAST_FUNC;
9202 #if ENABLE_ASH_GETOPTS
9203 static int getoptscmd(int, char **) FAST_FUNC;
9204 #endif
9205 #if ENABLE_ASH_HELP
9206 static int helpcmd(int, char **) FAST_FUNC;
9207 #endif
9208 #if MAX_HISTORY
9209 static int historycmd(int, char **) FAST_FUNC;
9210 #endif
9211 #if ENABLE_SH_MATH_SUPPORT
9212 static int letcmd(int, char **) FAST_FUNC;
9213 #endif
9214 static int readcmd(int, char **) FAST_FUNC;
9215 static int setcmd(int, char **) FAST_FUNC;
9216 static int shiftcmd(int, char **) FAST_FUNC;
9217 static int timescmd(int, char **) FAST_FUNC;
9218 static int trapcmd(int, char **) FAST_FUNC;
9219 static int umaskcmd(int, char **) FAST_FUNC;
9220 static int unsetcmd(int, char **) FAST_FUNC;
9221 static int ulimitcmd(int, char **) FAST_FUNC;
9222
9223 #define BUILTIN_NOSPEC          "0"
9224 #define BUILTIN_SPECIAL         "1"
9225 #define BUILTIN_REGULAR         "2"
9226 #define BUILTIN_SPEC_REG        "3"
9227 #define BUILTIN_ASSIGN          "4"
9228 #define BUILTIN_SPEC_ASSG       "5"
9229 #define BUILTIN_REG_ASSG        "6"
9230 #define BUILTIN_SPEC_REG_ASSG   "7"
9231
9232 /* Stubs for calling non-FAST_FUNC's */
9233 #if ENABLE_ASH_BUILTIN_ECHO
9234 static int FAST_FUNC echocmd(int argc, char **argv)   { return echo_main(argc, argv); }
9235 #endif
9236 #if ENABLE_ASH_BUILTIN_PRINTF
9237 static int FAST_FUNC printfcmd(int argc, char **argv) { return printf_main(argc, argv); }
9238 #endif
9239 #if ENABLE_ASH_BUILTIN_TEST
9240 static int FAST_FUNC testcmd(int argc, char **argv)   { return test_main(argc, argv); }
9241 #endif
9242
9243 /* Keep these in proper order since it is searched via bsearch() */
9244 static const struct builtincmd builtintab[] = {
9245         { BUILTIN_SPEC_REG      "."       , dotcmd     },
9246         { BUILTIN_SPEC_REG      ":"       , truecmd    },
9247 #if ENABLE_ASH_BUILTIN_TEST
9248         { BUILTIN_REGULAR       "["       , testcmd    },
9249 #if ENABLE_ASH_BASH_COMPAT
9250         { BUILTIN_REGULAR       "[["      , testcmd    },
9251 #endif
9252 #endif
9253 #if ENABLE_ASH_ALIAS
9254         { BUILTIN_REG_ASSG      "alias"   , aliascmd   },
9255 #endif
9256 #if JOBS
9257         { BUILTIN_REGULAR       "bg"      , fg_bgcmd   },
9258 #endif
9259         { BUILTIN_SPEC_REG      "break"   , breakcmd   },
9260         { BUILTIN_REGULAR       "cd"      , cdcmd      },
9261         { BUILTIN_NOSPEC        "chdir"   , cdcmd      },
9262 #if ENABLE_ASH_CMDCMD
9263         { BUILTIN_REGULAR       "command" , commandcmd },
9264 #endif
9265         { BUILTIN_SPEC_REG      "continue", breakcmd   },
9266 #if ENABLE_ASH_BUILTIN_ECHO
9267         { BUILTIN_REGULAR       "echo"    , echocmd    },
9268 #endif
9269         { BUILTIN_SPEC_REG      "eval"    , NULL       }, /*evalcmd() has a differing prototype*/
9270         { BUILTIN_SPEC_REG      "exec"    , execcmd    },
9271         { BUILTIN_SPEC_REG      "exit"    , exitcmd    },
9272         { BUILTIN_SPEC_REG_ASSG "export"  , exportcmd  },
9273         { BUILTIN_REGULAR       "false"   , falsecmd   },
9274 #if JOBS
9275         { BUILTIN_REGULAR       "fg"      , fg_bgcmd   },
9276 #endif
9277 #if ENABLE_ASH_GETOPTS
9278         { BUILTIN_REGULAR       "getopts" , getoptscmd },
9279 #endif
9280         { BUILTIN_NOSPEC        "hash"    , hashcmd    },
9281 #if ENABLE_ASH_HELP
9282         { BUILTIN_NOSPEC        "help"    , helpcmd    },
9283 #endif
9284 #if MAX_HISTORY
9285         { BUILTIN_NOSPEC        "history" , historycmd },
9286 #endif
9287 #if JOBS
9288         { BUILTIN_REGULAR       "jobs"    , jobscmd    },
9289         { BUILTIN_REGULAR       "kill"    , killcmd    },
9290 #endif
9291 #if ENABLE_SH_MATH_SUPPORT
9292         { BUILTIN_NOSPEC        "let"     , letcmd     },
9293 #endif
9294         { BUILTIN_ASSIGN        "local"   , localcmd   },
9295 #if ENABLE_ASH_BUILTIN_PRINTF
9296         { BUILTIN_REGULAR       "printf"  , printfcmd  },
9297 #endif
9298         { BUILTIN_NOSPEC        "pwd"     , pwdcmd     },
9299         { BUILTIN_REGULAR       "read"    , readcmd    },
9300         { BUILTIN_SPEC_REG_ASSG "readonly", exportcmd  },
9301         { BUILTIN_SPEC_REG      "return"  , returncmd  },
9302         { BUILTIN_SPEC_REG      "set"     , setcmd     },
9303         { BUILTIN_SPEC_REG      "shift"   , shiftcmd   },
9304 #if ENABLE_ASH_BASH_COMPAT
9305         { BUILTIN_SPEC_REG      "source"  , dotcmd     },
9306 #endif
9307 #if ENABLE_ASH_BUILTIN_TEST
9308         { BUILTIN_REGULAR       "test"    , testcmd    },
9309 #endif
9310         { BUILTIN_SPEC_REG      "times"   , timescmd   },
9311         { BUILTIN_SPEC_REG      "trap"    , trapcmd    },
9312         { BUILTIN_REGULAR       "true"    , truecmd    },
9313         { BUILTIN_NOSPEC        "type"    , typecmd    },
9314         { BUILTIN_NOSPEC        "ulimit"  , ulimitcmd  },
9315         { BUILTIN_REGULAR       "umask"   , umaskcmd   },
9316 #if ENABLE_ASH_ALIAS
9317         { BUILTIN_REGULAR       "unalias" , unaliascmd },
9318 #endif
9319         { BUILTIN_SPEC_REG      "unset"   , unsetcmd   },
9320         { BUILTIN_REGULAR       "wait"    , waitcmd    },
9321 };
9322
9323 /* Should match the above table! */
9324 #define COMMANDCMD (builtintab + \
9325         /* . : */       2 + \
9326         /* [ */         1 * ENABLE_ASH_BUILTIN_TEST + \
9327         /* [[ */        1 * ENABLE_ASH_BUILTIN_TEST * ENABLE_ASH_BASH_COMPAT + \
9328         /* alias */     1 * ENABLE_ASH_ALIAS + \
9329         /* bg */        1 * ENABLE_ASH_JOB_CONTROL + \
9330         /* break cd cddir  */   3)
9331 #define EVALCMD (COMMANDCMD + \
9332         /* command */   1 * ENABLE_ASH_CMDCMD + \
9333         /* continue */  1 + \
9334         /* echo */      1 * ENABLE_ASH_BUILTIN_ECHO + \
9335         0)
9336 #define EXECCMD (EVALCMD + \
9337         /* eval */      1)
9338
9339 /*
9340  * Search the table of builtin commands.
9341  */
9342 static struct builtincmd *
9343 find_builtin(const char *name)
9344 {
9345         struct builtincmd *bp;
9346
9347         bp = bsearch(
9348                 name, builtintab, ARRAY_SIZE(builtintab), sizeof(builtintab[0]),
9349                 pstrcmp
9350         );
9351         return bp;
9352 }
9353
9354 /*
9355  * Execute a simple command.
9356  */
9357 static int
9358 isassignment(const char *p)
9359 {
9360         const char *q = endofname(p);
9361         if (p == q)
9362                 return 0;
9363         return *q == '=';
9364 }
9365 static int FAST_FUNC
9366 bltincmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
9367 {
9368         /* Preserve exitstatus of a previous possible redirection
9369          * as POSIX mandates */
9370         return back_exitstatus;
9371 }
9372 static int
9373 evalcommand(union node *cmd, int flags)
9374 {
9375         static const struct builtincmd null_bltin = {
9376                 "\0\0", bltincmd /* why three NULs? */
9377         };
9378         struct stackmark smark;
9379         union node *argp;
9380         struct arglist arglist;
9381         struct arglist varlist;
9382         char **argv;
9383         int argc;
9384         const struct strlist *sp;
9385         struct cmdentry cmdentry;
9386         struct job *jp;
9387         char *lastarg;
9388         const char *path;
9389         int spclbltin;
9390         int status;
9391         char **nargv;
9392         struct builtincmd *bcmd;
9393         smallint cmd_is_exec;
9394         smallint pseudovarflag = 0;
9395
9396         /* First expand the arguments. */
9397         TRACE(("evalcommand(0x%lx, %d) called\n", (long)cmd, flags));
9398         setstackmark(&smark);
9399         back_exitstatus = 0;
9400
9401         cmdentry.cmdtype = CMDBUILTIN;
9402         cmdentry.u.cmd = &null_bltin;
9403         varlist.lastp = &varlist.list;
9404         *varlist.lastp = NULL;
9405         arglist.lastp = &arglist.list;
9406         *arglist.lastp = NULL;
9407
9408         argc = 0;
9409         if (cmd->ncmd.args) {
9410                 bcmd = find_builtin(cmd->ncmd.args->narg.text);
9411                 pseudovarflag = bcmd && IS_BUILTIN_ASSIGN(bcmd);
9412         }
9413
9414         for (argp = cmd->ncmd.args; argp; argp = argp->narg.next) {
9415                 struct strlist **spp;
9416
9417                 spp = arglist.lastp;
9418                 if (pseudovarflag && isassignment(argp->narg.text))
9419                         expandarg(argp, &arglist, EXP_VARTILDE);
9420                 else
9421                         expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
9422
9423                 for (sp = *spp; sp; sp = sp->next)
9424                         argc++;
9425         }
9426
9427         argv = nargv = stalloc(sizeof(char *) * (argc + 1));
9428         for (sp = arglist.list; sp; sp = sp->next) {
9429                 TRACE(("evalcommand arg: %s\n", sp->text));
9430                 *nargv++ = sp->text;
9431         }
9432         *nargv = NULL;
9433
9434         lastarg = NULL;
9435         if (iflag && funcnest == 0 && argc > 0)
9436                 lastarg = nargv[-1];
9437
9438         preverrout_fd = 2;
9439         expredir(cmd->ncmd.redirect);
9440         status = redirectsafe(cmd->ncmd.redirect, REDIR_PUSH | REDIR_SAVEFD2);
9441
9442         path = vpath.var_text;
9443         for (argp = cmd->ncmd.assign; argp; argp = argp->narg.next) {
9444                 struct strlist **spp;
9445                 char *p;
9446
9447                 spp = varlist.lastp;
9448                 expandarg(argp, &varlist, EXP_VARTILDE);
9449
9450                 /*
9451                  * Modify the command lookup path, if a PATH= assignment
9452                  * is present
9453                  */
9454                 p = (*spp)->text;
9455                 if (varcmp(p, path) == 0)
9456                         path = p;
9457         }
9458
9459         /* Print the command if xflag is set. */
9460         if (xflag) {
9461                 int n;
9462                 const char *p = " %s" + 1;
9463
9464                 fdprintf(preverrout_fd, p, expandstr(ps4val()));
9465                 sp = varlist.list;
9466                 for (n = 0; n < 2; n++) {
9467                         while (sp) {
9468                                 fdprintf(preverrout_fd, p, sp->text);
9469                                 sp = sp->next;
9470                                 p = " %s";
9471                         }
9472                         sp = arglist.list;
9473                 }
9474                 safe_write(preverrout_fd, "\n", 1);
9475         }
9476
9477         cmd_is_exec = 0;
9478         spclbltin = -1;
9479
9480         /* Now locate the command. */
9481         if (argc) {
9482                 int cmd_flag = DO_ERR;
9483 #if ENABLE_ASH_CMDCMD
9484                 const char *oldpath = path + 5;
9485 #endif
9486                 path += 5;
9487                 for (;;) {
9488                         find_command(argv[0], &cmdentry, cmd_flag, path);
9489                         if (cmdentry.cmdtype == CMDUNKNOWN) {
9490                                 flush_stdout_stderr();
9491                                 status = 127;
9492                                 goto bail;
9493                         }
9494
9495                         /* implement bltin and command here */
9496                         if (cmdentry.cmdtype != CMDBUILTIN)
9497                                 break;
9498                         if (spclbltin < 0)
9499                                 spclbltin = IS_BUILTIN_SPECIAL(cmdentry.u.cmd);
9500                         if (cmdentry.u.cmd == EXECCMD)
9501                                 cmd_is_exec = 1;
9502 #if ENABLE_ASH_CMDCMD
9503                         if (cmdentry.u.cmd == COMMANDCMD) {
9504                                 path = oldpath;
9505                                 nargv = parse_command_args(argv, &path);
9506                                 if (!nargv)
9507                                         break;
9508                                 /* It's "command [-p] PROG ARGS" (that is, no -Vv).
9509                                  * nargv => "PROG". path is updated if -p.
9510                                  */
9511                                 argc -= nargv - argv;
9512                                 argv = nargv;
9513                                 cmd_flag |= DO_NOFUNC;
9514                         } else
9515 #endif
9516                                 break;
9517                 }
9518         }
9519
9520         if (status) {
9521                 /* We have a redirection error. */
9522                 if (spclbltin > 0)
9523                         raise_exception(EXERROR);
9524  bail:
9525                 exitstatus = status;
9526                 goto out;
9527         }
9528
9529         /* Execute the command. */
9530         switch (cmdentry.cmdtype) {
9531         default: {
9532
9533 #if ENABLE_FEATURE_SH_NOFORK
9534 /* (1) BUG: if variables are set, we need to fork, or save/restore them
9535  *     around run_nofork_applet() call.
9536  * (2) Should this check also be done in forkshell()?
9537  *     (perhaps it should, so that "VAR=VAL nofork" at least avoids exec...)
9538  */
9539                 /* find_command() encodes applet_no as (-2 - applet_no) */
9540                 int applet_no = (- cmdentry.u.index - 2);
9541                 if (applet_no >= 0 && APPLET_IS_NOFORK(applet_no)) {
9542                         listsetvar(varlist.list, VEXPORT|VSTACK);
9543                         /* run <applet>_main() */
9544                         exitstatus = run_nofork_applet(applet_no, argv);
9545                         break;
9546                 }
9547 #endif
9548                 /* Can we avoid forking off? For example, very last command
9549                  * in a script or a subshell does not need forking,
9550                  * we can just exec it.
9551                  */
9552                 if (!(flags & EV_EXIT) || may_have_traps) {
9553                         /* No, forking off a child is necessary */
9554                         INT_OFF;
9555                         jp = makejob(/*cmd,*/ 1);
9556                         if (forkshell(jp, cmd, FORK_FG) != 0) {
9557                                 /* parent */
9558                                 status = waitforjob(jp);
9559                                 INT_ON;
9560                                 TRACE(("forked child exited with %d\n", status));
9561                                 break;
9562                         }
9563                         /* child */
9564                         FORCE_INT_ON;
9565                         /* fall through to exec'ing external program */
9566                 }
9567                 listsetvar(varlist.list, VEXPORT|VSTACK);
9568                 shellexec(argv, path, cmdentry.u.index);
9569                 /* NOTREACHED */
9570         } /* default */
9571         case CMDBUILTIN:
9572                 cmdenviron = varlist.list;
9573                 if (cmdenviron) {
9574                         struct strlist *list = cmdenviron;
9575                         int i = VNOSET;
9576                         if (spclbltin > 0 || argc == 0) {
9577                                 i = 0;
9578                                 if (cmd_is_exec && argc > 1)
9579                                         i = VEXPORT;
9580                         }
9581                         listsetvar(list, i);
9582                 }
9583                 /* Tight loop with builtins only:
9584                  * "while kill -0 $child; do true; done"
9585                  * will never exit even if $child died, unless we do this
9586                  * to reap the zombie and make kill detect that it's gone: */
9587                 dowait(DOWAIT_NONBLOCK, NULL);
9588
9589                 if (evalbltin(cmdentry.u.cmd, argc, argv, flags)) {
9590                         int exit_status;
9591                         int i = exception_type;
9592                         if (i == EXEXIT || i == EXEXEC)
9593                                 goto raise;
9594                         exit_status = 2;
9595                         if (i == EXINT)
9596                                 exit_status = 128 + SIGINT;
9597                         if (i == EXSIG)
9598                                 exit_status = 128 + pending_sig;
9599                         exitstatus = exit_status;
9600                         if (i == EXINT || spclbltin > 0) {
9601  raise:
9602                                 longjmp(exception_handler->loc, 1);
9603                         }
9604                         FORCE_INT_ON;
9605                 }
9606                 goto readstatus;
9607
9608         case CMDFUNCTION:
9609                 listsetvar(varlist.list, 0);
9610                 /* See above for the rationale */
9611                 dowait(DOWAIT_NONBLOCK, NULL);
9612                 if (evalfun(cmdentry.u.func, argc, argv, flags))
9613                         goto raise;
9614  readstatus:
9615                 status = exitstatus;
9616                 break;
9617         } /* switch */
9618
9619  out:
9620         popredir(/*drop:*/ cmd_is_exec, /*restore:*/ cmd_is_exec);
9621         if (lastarg) {
9622                 /* dsl: I think this is intended to be used to support
9623                  * '_' in 'vi' command mode during line editing...
9624                  * However I implemented that within libedit itself.
9625                  */
9626                 setvar0("_", lastarg);
9627         }
9628         popstackmark(&smark);
9629
9630         return status;
9631 }
9632
9633 static int
9634 evalbltin(const struct builtincmd *cmd, int argc, char **argv, int flags)
9635 {
9636         char *volatile savecmdname;
9637         struct jmploc *volatile savehandler;
9638         struct jmploc jmploc;
9639         int status;
9640         int i;
9641
9642         savecmdname = commandname;
9643         savehandler = exception_handler;
9644         i = setjmp(jmploc.loc);
9645         if (i)
9646                 goto cmddone;
9647         exception_handler = &jmploc;
9648         commandname = argv[0];
9649         argptr = argv + 1;
9650         optptr = NULL;                  /* initialize nextopt */
9651         if (cmd == EVALCMD)
9652                 status = evalcmd(argc, argv, flags);
9653         else
9654                 status = (*cmd->builtin)(argc, argv);
9655         flush_stdout_stderr();
9656         status |= ferror(stdout);
9657         exitstatus = status;
9658  cmddone:
9659         clearerr(stdout);
9660         commandname = savecmdname;
9661         exception_handler = savehandler;
9662
9663         return i;
9664 }
9665
9666 static int
9667 goodname(const char *p)
9668 {
9669         return endofname(p)[0] == '\0';
9670 }
9671
9672
9673 /*
9674  * Search for a command.  This is called before we fork so that the
9675  * location of the command will be available in the parent as well as
9676  * the child.  The check for "goodname" is an overly conservative
9677  * check that the name will not be subject to expansion.
9678  */
9679 static void
9680 prehash(union node *n)
9681 {
9682         struct cmdentry entry;
9683
9684         if (n->type == NCMD && n->ncmd.args && goodname(n->ncmd.args->narg.text))
9685                 find_command(n->ncmd.args->narg.text, &entry, 0, pathval());
9686 }
9687
9688
9689 /* ============ Builtin commands
9690  *
9691  * Builtin commands whose functions are closely tied to evaluation
9692  * are implemented here.
9693  */
9694
9695 /*
9696  * Handle break and continue commands.  Break, continue, and return are
9697  * all handled by setting the evalskip flag.  The evaluation routines
9698  * above all check this flag, and if it is set they start skipping
9699  * commands rather than executing them.  The variable skipcount is
9700  * the number of loops to break/continue, or the number of function
9701  * levels to return.  (The latter is always 1.)  It should probably
9702  * be an error to break out of more loops than exist, but it isn't
9703  * in the standard shell so we don't make it one here.
9704  */
9705 static int FAST_FUNC
9706 breakcmd(int argc UNUSED_PARAM, char **argv)
9707 {
9708         int n = argv[1] ? number(argv[1]) : 1;
9709
9710         if (n <= 0)
9711                 ash_msg_and_raise_error(msg_illnum, argv[1]);
9712         if (n > loopnest)
9713                 n = loopnest;
9714         if (n > 0) {
9715                 evalskip = (**argv == 'c') ? SKIPCONT : SKIPBREAK;
9716                 skipcount = n;
9717         }
9718         return 0;
9719 }
9720
9721
9722 /* ============ input.c
9723  *
9724  * This implements the input routines used by the parser.
9725  */
9726
9727 enum {
9728         INPUT_PUSH_FILE = 1,
9729         INPUT_NOFILE_OK = 2,
9730 };
9731
9732 static smallint checkkwd;
9733 /* values of checkkwd variable */
9734 #define CHKALIAS        0x1
9735 #define CHKKWD          0x2
9736 #define CHKNL           0x4
9737
9738 /*
9739  * Push a string back onto the input at this current parsefile level.
9740  * We handle aliases this way.
9741  */
9742 #if !ENABLE_ASH_ALIAS
9743 #define pushstring(s, ap) pushstring(s)
9744 #endif
9745 static void
9746 pushstring(char *s, struct alias *ap)
9747 {
9748         struct strpush *sp;
9749         int len;
9750
9751         len = strlen(s);
9752         INT_OFF;
9753         if (g_parsefile->strpush) {
9754                 sp = ckzalloc(sizeof(*sp));
9755                 sp->prev = g_parsefile->strpush;
9756         } else {
9757                 sp = &(g_parsefile->basestrpush);
9758         }
9759         g_parsefile->strpush = sp;
9760         sp->prev_string = g_parsefile->next_to_pgetc;
9761         sp->prev_left_in_line = g_parsefile->left_in_line;
9762         sp->unget = g_parsefile->unget;
9763         memcpy(sp->lastc, g_parsefile->lastc, sizeof(sp->lastc));
9764 #if ENABLE_ASH_ALIAS
9765         sp->ap = ap;
9766         if (ap) {
9767                 ap->flag |= ALIASINUSE;
9768                 sp->string = s;
9769         }
9770 #endif
9771         g_parsefile->next_to_pgetc = s;
9772         g_parsefile->left_in_line = len;
9773         g_parsefile->unget = 0;
9774         INT_ON;
9775 }
9776
9777 static void
9778 popstring(void)
9779 {
9780         struct strpush *sp = g_parsefile->strpush;
9781
9782         INT_OFF;
9783 #if ENABLE_ASH_ALIAS
9784         if (sp->ap) {
9785                 if (g_parsefile->next_to_pgetc[-1] == ' '
9786                  || g_parsefile->next_to_pgetc[-1] == '\t'
9787                 ) {
9788                         checkkwd |= CHKALIAS;
9789                 }
9790                 if (sp->string != sp->ap->val) {
9791                         free(sp->string);
9792                 }
9793                 sp->ap->flag &= ~ALIASINUSE;
9794                 if (sp->ap->flag & ALIASDEAD) {
9795                         unalias(sp->ap->name);
9796                 }
9797         }
9798 #endif
9799         g_parsefile->next_to_pgetc = sp->prev_string;
9800         g_parsefile->left_in_line = sp->prev_left_in_line;
9801         g_parsefile->unget = sp->unget;
9802         memcpy(g_parsefile->lastc, sp->lastc, sizeof(sp->lastc));
9803         g_parsefile->strpush = sp->prev;
9804         if (sp != &(g_parsefile->basestrpush))
9805                 free(sp);
9806         INT_ON;
9807 }
9808
9809 static int
9810 preadfd(void)
9811 {
9812         int nr;
9813         char *buf = g_parsefile->buf;
9814
9815         g_parsefile->next_to_pgetc = buf;
9816 #if ENABLE_FEATURE_EDITING
9817  retry:
9818         if (!iflag || g_parsefile->pf_fd != STDIN_FILENO)
9819                 nr = nonblock_immune_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1);
9820         else {
9821                 int timeout = -1;
9822 # if ENABLE_ASH_IDLE_TIMEOUT
9823                 if (iflag) {
9824                         const char *tmout_var = lookupvar("TMOUT");
9825                         if (tmout_var) {
9826                                 timeout = atoi(tmout_var) * 1000;
9827                                 if (timeout <= 0)
9828                                         timeout = -1;
9829                         }
9830                 }
9831 # endif
9832 # if ENABLE_FEATURE_TAB_COMPLETION
9833                 line_input_state->path_lookup = pathval();
9834 # endif
9835                 reinit_unicode_for_ash();
9836                 nr = read_line_input(line_input_state, cmdedit_prompt, buf, IBUFSIZ, timeout);
9837                 if (nr == 0) {
9838                         /* Ctrl+C pressed */
9839                         if (trap[SIGINT]) {
9840                                 buf[0] = '\n';
9841                                 buf[1] = '\0';
9842                                 raise(SIGINT);
9843                                 return 1;
9844                         }
9845                         goto retry;
9846                 }
9847                 if (nr < 0) {
9848                         if (errno == 0) {
9849                                 /* Ctrl+D pressed */
9850                                 nr = 0;
9851                         }
9852 # if ENABLE_ASH_IDLE_TIMEOUT
9853                         else if (errno == EAGAIN && timeout > 0) {
9854                                 puts("\007timed out waiting for input: auto-logout");
9855                                 exitshell();
9856                         }
9857 # endif
9858                 }
9859         }
9860 #else
9861         nr = nonblock_immune_read(g_parsefile->pf_fd, buf, IBUFSIZ - 1);
9862 #endif
9863
9864 #if 0 /* disabled: nonblock_immune_read() handles this problem */
9865         if (nr < 0) {
9866                 if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
9867                         int flags = fcntl(0, F_GETFL);
9868                         if (flags >= 0 && (flags & O_NONBLOCK)) {
9869                                 flags &= ~O_NONBLOCK;
9870                                 if (fcntl(0, F_SETFL, flags) >= 0) {
9871                                         out2str("sh: turning off NDELAY mode\n");
9872                                         goto retry;
9873                                 }
9874                         }
9875                 }
9876         }
9877 #endif
9878         return nr;
9879 }
9880
9881 /*
9882  * Refill the input buffer and return the next input character:
9883  *
9884  * 1) If a string was pushed back on the input, pop it;
9885  * 2) If an EOF was pushed back (g_parsefile->left_in_line < -BIGNUM)
9886  *    or we are reading from a string so we can't refill the buffer,
9887  *    return EOF.
9888  * 3) If there is more stuff in this buffer, use it else call read to fill it.
9889  * 4) Process input up to the next newline, deleting nul characters.
9890  */
9891 //#define pgetc_debug(...) bb_error_msg(__VA_ARGS__)
9892 #define pgetc_debug(...) ((void)0)
9893 static int pgetc(void);
9894 static int
9895 preadbuffer(void)
9896 {
9897         char *q;
9898         int more;
9899
9900         if (g_parsefile->strpush) {
9901 #if ENABLE_ASH_ALIAS
9902                 if (g_parsefile->left_in_line == -1
9903                  && g_parsefile->strpush->ap
9904                  && g_parsefile->next_to_pgetc[-1] != ' '
9905                  && g_parsefile->next_to_pgetc[-1] != '\t'
9906                 ) {
9907                         pgetc_debug("preadbuffer PEOA");
9908                         return PEOA;
9909                 }
9910 #endif
9911                 popstring();
9912                 return pgetc();
9913         }
9914         /* on both branches above g_parsefile->left_in_line < 0.
9915          * "pgetc" needs refilling.
9916          */
9917
9918         /* -90 is our -BIGNUM. Below we use -99 to mark "EOF on read",
9919          * pungetc() may increment it a few times.
9920          * Assuming it won't increment it to less than -90.
9921          */
9922         if (g_parsefile->left_in_line < -90 || g_parsefile->buf == NULL) {
9923                 pgetc_debug("preadbuffer PEOF1");
9924                 /* even in failure keep left_in_line and next_to_pgetc
9925                  * in lock step, for correct multi-layer pungetc.
9926                  * left_in_line was decremented before preadbuffer(),
9927                  * must inc next_to_pgetc: */
9928                 g_parsefile->next_to_pgetc++;
9929                 return PEOF;
9930         }
9931
9932         more = g_parsefile->left_in_buffer;
9933         if (more <= 0) {
9934                 flush_stdout_stderr();
9935  again:
9936                 more = preadfd();
9937                 if (more <= 0) {
9938                         /* don't try reading again */
9939                         g_parsefile->left_in_line = -99;
9940                         pgetc_debug("preadbuffer PEOF2");
9941                         g_parsefile->next_to_pgetc++;
9942                         return PEOF;
9943                 }
9944         }
9945
9946         /* Find out where's the end of line.
9947          * Set g_parsefile->left_in_line
9948          * and g_parsefile->left_in_buffer acordingly.
9949          * NUL chars are deleted.
9950          */
9951         q = g_parsefile->next_to_pgetc;
9952         for (;;) {
9953                 char c;
9954
9955                 more--;
9956
9957                 c = *q;
9958                 if (c == '\0') {
9959                         memmove(q, q + 1, more);
9960                 } else {
9961                         q++;
9962                         if (c == '\n') {
9963                                 g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
9964                                 break;
9965                         }
9966                 }
9967
9968                 if (more <= 0) {
9969                         g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
9970                         if (g_parsefile->left_in_line < 0)
9971                                 goto again;
9972                         break;
9973                 }
9974         }
9975         g_parsefile->left_in_buffer = more;
9976
9977         if (vflag) {
9978                 char save = *q;
9979                 *q = '\0';
9980                 out2str(g_parsefile->next_to_pgetc);
9981                 *q = save;
9982         }
9983
9984         pgetc_debug("preadbuffer at %d:%p'%s'",
9985                         g_parsefile->left_in_line,
9986                         g_parsefile->next_to_pgetc,
9987                         g_parsefile->next_to_pgetc);
9988         return (unsigned char)*g_parsefile->next_to_pgetc++;
9989 }
9990
9991 static int
9992 pgetc(void)
9993 {
9994         int c;
9995
9996         pgetc_debug("pgetc at %d:%p'%s'",
9997                         g_parsefile->left_in_line,
9998                         g_parsefile->next_to_pgetc,
9999                         g_parsefile->next_to_pgetc);
10000         if (g_parsefile->unget)
10001                 return g_parsefile->lastc[--g_parsefile->unget];
10002
10003         if (--g_parsefile->left_in_line >= 0)
10004                 c = (signed char)*g_parsefile->next_to_pgetc++;
10005         else
10006                 c = preadbuffer();
10007
10008         g_parsefile->lastc[1] = g_parsefile->lastc[0];
10009         g_parsefile->lastc[0] = c;
10010
10011         return c;
10012 }
10013
10014 #if ENABLE_ASH_ALIAS
10015 static int
10016 pgetc_without_PEOA(void)
10017 {
10018         int c;
10019         do {
10020                 pgetc_debug("pgetc at %d:%p'%s'",
10021                                 g_parsefile->left_in_line,
10022                                 g_parsefile->next_to_pgetc,
10023                                 g_parsefile->next_to_pgetc);
10024                 c = pgetc();
10025         } while (c == PEOA);
10026         return c;
10027 }
10028 #else
10029 # define pgetc_without_PEOA() pgetc()
10030 #endif
10031
10032 /*
10033  * Read a line from the script.
10034  */
10035 static char *
10036 pfgets(char *line, int len)
10037 {
10038         char *p = line;
10039         int nleft = len;
10040         int c;
10041
10042         while (--nleft > 0) {
10043                 c = pgetc_without_PEOA();
10044                 if (c == PEOF) {
10045                         if (p == line)
10046                                 return NULL;
10047                         break;
10048                 }
10049                 *p++ = c;
10050                 if (c == '\n')
10051                         break;
10052         }
10053         *p = '\0';
10054         return line;
10055 }
10056
10057 /*
10058  * Undo a call to pgetc.  Only two characters may be pushed back.
10059  * PEOF may be pushed back.
10060  */
10061 static void
10062 pungetc(void)
10063 {
10064         g_parsefile->unget++;
10065 }
10066
10067 /* This one eats backslash+newline */
10068 static int
10069 pgetc_eatbnl(void)
10070 {
10071         int c;
10072
10073         while ((c = pgetc()) == '\\') {
10074                 if (pgetc() != '\n') {
10075                         pungetc();
10076                         break;
10077                 }
10078
10079                 g_parsefile->linno++;
10080                 setprompt_if(doprompt, 2);
10081         }
10082
10083         return c;
10084 }
10085
10086 /*
10087  * To handle the "." command, a stack of input files is used.  Pushfile
10088  * adds a new entry to the stack and popfile restores the previous level.
10089  */
10090 static void
10091 pushfile(void)
10092 {
10093         struct parsefile *pf;
10094
10095         pf = ckzalloc(sizeof(*pf));
10096         pf->prev = g_parsefile;
10097         pf->pf_fd = -1;
10098         /*pf->strpush = NULL; - ckzalloc did it */
10099         /*pf->basestrpush.prev = NULL;*/
10100         /*pf->unget = 0;*/
10101         g_parsefile = pf;
10102 }
10103
10104 static void
10105 popfile(void)
10106 {
10107         struct parsefile *pf = g_parsefile;
10108
10109         INT_OFF;
10110         if (pf->pf_fd >= 0)
10111                 close(pf->pf_fd);
10112         free(pf->buf);
10113         while (pf->strpush)
10114                 popstring();
10115         g_parsefile = pf->prev;
10116         free(pf);
10117         INT_ON;
10118 }
10119
10120 /*
10121  * Return to top level.
10122  */
10123 static void
10124 popallfiles(void)
10125 {
10126         while (g_parsefile != &basepf)
10127                 popfile();
10128 }
10129
10130 /*
10131  * Close the file(s) that the shell is reading commands from.  Called
10132  * after a fork is done.
10133  */
10134 static void
10135 closescript(void)
10136 {
10137         popallfiles();
10138         if (g_parsefile->pf_fd > 0) {
10139                 close(g_parsefile->pf_fd);
10140                 g_parsefile->pf_fd = 0;
10141         }
10142 }
10143
10144 /*
10145  * Like setinputfile, but takes an open file descriptor.  Call this with
10146  * interrupts off.
10147  */
10148 static void
10149 setinputfd(int fd, int push)
10150 {
10151         close_on_exec_on(fd);
10152         if (push) {
10153                 pushfile();
10154                 g_parsefile->buf = NULL;
10155         }
10156         g_parsefile->pf_fd = fd;
10157         if (g_parsefile->buf == NULL)
10158                 g_parsefile->buf = ckmalloc(IBUFSIZ);
10159         g_parsefile->left_in_buffer = 0;
10160         g_parsefile->left_in_line = 0;
10161         g_parsefile->linno = 1;
10162 }
10163
10164 /*
10165  * Set the input to take input from a file.  If push is set, push the
10166  * old input onto the stack first.
10167  */
10168 static int
10169 setinputfile(const char *fname, int flags)
10170 {
10171         int fd;
10172         int fd2;
10173
10174         INT_OFF;
10175         fd = open(fname, O_RDONLY);
10176         if (fd < 0) {
10177                 if (flags & INPUT_NOFILE_OK)
10178                         goto out;
10179                 ash_msg_and_raise_error("can't open '%s'", fname);
10180         }
10181         if (fd < 10) {
10182                 fd2 = copyfd(fd, 10);
10183                 close(fd);
10184                 if (fd2 < 0)
10185                         ash_msg_and_raise_error("out of file descriptors");
10186                 fd = fd2;
10187         }
10188         setinputfd(fd, flags & INPUT_PUSH_FILE);
10189  out:
10190         INT_ON;
10191         return fd;
10192 }
10193
10194 /*
10195  * Like setinputfile, but takes input from a string.
10196  */
10197 static void
10198 setinputstring(char *string)
10199 {
10200         INT_OFF;
10201         pushfile();
10202         g_parsefile->next_to_pgetc = string;
10203         g_parsefile->left_in_line = strlen(string);
10204         g_parsefile->buf = NULL;
10205         g_parsefile->linno = 1;
10206         INT_ON;
10207 }
10208
10209
10210 /* ============ mail.c
10211  *
10212  * Routines to check for mail.
10213  */
10214
10215 #if ENABLE_ASH_MAIL
10216
10217 /* Hash of mtimes of mailboxes */
10218 static unsigned mailtime_hash;
10219 /* Set if MAIL or MAILPATH is changed. */
10220 static smallint mail_var_path_changed;
10221
10222 /*
10223  * Print appropriate message(s) if mail has arrived.
10224  * If mail_var_path_changed is set,
10225  * then the value of MAIL has mail_var_path_changed,
10226  * so we just update the values.
10227  */
10228 static void
10229 chkmail(void)
10230 {
10231         const char *mpath;
10232         char *p;
10233         char *q;
10234         unsigned new_hash;
10235         struct stackmark smark;
10236         struct stat statb;
10237
10238         setstackmark(&smark);
10239         mpath = mpathset() ? mpathval() : mailval();
10240         new_hash = 0;
10241         for (;;) {
10242                 p = path_advance(&mpath, nullstr);
10243                 if (p == NULL)
10244                         break;
10245                 if (*p == '\0')
10246                         continue;
10247                 for (q = p; *q; q++)
10248                         continue;
10249 #if DEBUG
10250                 if (q[-1] != '/')
10251                         abort();
10252 #endif
10253                 q[-1] = '\0';                   /* delete trailing '/' */
10254                 if (stat(p, &statb) < 0) {
10255                         continue;
10256                 }
10257                 /* Very simplistic "hash": just a sum of all mtimes */
10258                 new_hash += (unsigned)statb.st_mtime;
10259         }
10260         if (!mail_var_path_changed && mailtime_hash != new_hash) {
10261                 if (mailtime_hash != 0)
10262                         out2str("you have mail\n");
10263                 mailtime_hash = new_hash;
10264         }
10265         mail_var_path_changed = 0;
10266         popstackmark(&smark);
10267 }
10268
10269 static void FAST_FUNC
10270 changemail(const char *val UNUSED_PARAM)
10271 {
10272         mail_var_path_changed = 1;
10273 }
10274
10275 #endif /* ASH_MAIL */
10276
10277
10278 /* ============ ??? */
10279
10280 /*
10281  * Set the shell parameters.
10282  */
10283 static void
10284 setparam(char **argv)
10285 {
10286         char **newparam;
10287         char **ap;
10288         int nparam;
10289
10290         for (nparam = 0; argv[nparam]; nparam++)
10291                 continue;
10292         ap = newparam = ckmalloc((nparam + 1) * sizeof(*ap));
10293         while (*argv) {
10294                 *ap++ = ckstrdup(*argv++);
10295         }
10296         *ap = NULL;
10297         freeparam(&shellparam);
10298         shellparam.malloced = 1;
10299         shellparam.nparam = nparam;
10300         shellparam.p = newparam;
10301 #if ENABLE_ASH_GETOPTS
10302         shellparam.optind = 1;
10303         shellparam.optoff = -1;
10304 #endif
10305 }
10306
10307 /*
10308  * Process shell options.  The global variable argptr contains a pointer
10309  * to the argument list; we advance it past the options.
10310  *
10311  * SUSv3 section 2.8.1 "Consequences of Shell Errors" says:
10312  * For a non-interactive shell, an error condition encountered
10313  * by a special built-in ... shall cause the shell to write a diagnostic message
10314  * to standard error and exit as shown in the following table:
10315  * Error                                           Special Built-In
10316  * ...
10317  * Utility syntax error (option or operand error)  Shall exit
10318  * ...
10319  * However, in bug 1142 (http://busybox.net/bugs/view.php?id=1142)
10320  * we see that bash does not do that (set "finishes" with error code 1 instead,
10321  * and shell continues), and people rely on this behavior!
10322  * Testcase:
10323  * set -o barfoo 2>/dev/null
10324  * echo $?
10325  *
10326  * Oh well. Let's mimic that.
10327  */
10328 static int
10329 plus_minus_o(char *name, int val)
10330 {
10331         int i;
10332
10333         if (name) {
10334                 for (i = 0; i < NOPTS; i++) {
10335                         if (strcmp(name, optnames(i)) == 0) {
10336                                 optlist[i] = val;
10337                                 return 0;
10338                         }
10339                 }
10340                 ash_msg("illegal option %co %s", val ? '-' : '+', name);
10341                 return 1;
10342         }
10343         for (i = 0; i < NOPTS; i++) {
10344                 if (val) {
10345                         out1fmt("%-16s%s\n", optnames(i), optlist[i] ? "on" : "off");
10346                 } else {
10347                         out1fmt("set %co %s\n", optlist[i] ? '-' : '+', optnames(i));
10348                 }
10349         }
10350         return 0;
10351 }
10352 static void
10353 setoption(int flag, int val)
10354 {
10355         int i;
10356
10357         for (i = 0; i < NOPTS; i++) {
10358                 if (optletters(i) == flag) {
10359                         optlist[i] = val;
10360                         return;
10361                 }
10362         }
10363         ash_msg_and_raise_error("illegal option %c%c", val ? '-' : '+', flag);
10364         /* NOTREACHED */
10365 }
10366 static int
10367 options(int cmdline)
10368 {
10369         char *p;
10370         int val;
10371         int c;
10372
10373         if (cmdline)
10374                 minusc = NULL;
10375         while ((p = *argptr) != NULL) {
10376                 c = *p++;
10377                 if (c != '-' && c != '+')
10378                         break;
10379                 argptr++;
10380                 val = 0; /* val = 0 if c == '+' */
10381                 if (c == '-') {
10382                         val = 1;
10383                         if (p[0] == '\0' || LONE_DASH(p)) {
10384                                 if (!cmdline) {
10385                                         /* "-" means turn off -x and -v */
10386                                         if (p[0] == '\0')
10387                                                 xflag = vflag = 0;
10388                                         /* "--" means reset params */
10389                                         else if (*argptr == NULL)
10390                                                 setparam(argptr);
10391                                 }
10392                                 break;    /* "-" or "--" terminates options */
10393                         }
10394                 }
10395                 /* first char was + or - */
10396                 while ((c = *p++) != '\0') {
10397                         /* bash 3.2 indeed handles -c CMD and +c CMD the same */
10398                         if (c == 'c' && cmdline) {
10399                                 minusc = p;     /* command is after shell args */
10400                         } else if (c == 'o') {
10401                                 if (plus_minus_o(*argptr, val)) {
10402                                         /* it already printed err message */
10403                                         return 1; /* error */
10404                                 }
10405                                 if (*argptr)
10406                                         argptr++;
10407                         } else if (cmdline && (c == 'l')) { /* -l or +l == --login */
10408                                 isloginsh = 1;
10409                         /* bash does not accept +-login, we also won't */
10410                         } else if (cmdline && val && (c == '-')) { /* long options */
10411                                 if (strcmp(p, "login") == 0)
10412                                         isloginsh = 1;
10413                                 break;
10414                         } else {
10415                                 setoption(c, val);
10416                         }
10417                 }
10418         }
10419         return 0;
10420 }
10421
10422 /*
10423  * The shift builtin command.
10424  */
10425 static int FAST_FUNC
10426 shiftcmd(int argc UNUSED_PARAM, char **argv)
10427 {
10428         int n;
10429         char **ap1, **ap2;
10430
10431         n = 1;
10432         if (argv[1])
10433                 n = number(argv[1]);
10434         if (n > shellparam.nparam)
10435                 n = 0; /* bash compat, was = shellparam.nparam; */
10436         INT_OFF;
10437         shellparam.nparam -= n;
10438         for (ap1 = shellparam.p; --n >= 0; ap1++) {
10439                 if (shellparam.malloced)
10440                         free(*ap1);
10441         }
10442         ap2 = shellparam.p;
10443         while ((*ap2++ = *ap1++) != NULL)
10444                 continue;
10445 #if ENABLE_ASH_GETOPTS
10446         shellparam.optind = 1;
10447         shellparam.optoff = -1;
10448 #endif
10449         INT_ON;
10450         return 0;
10451 }
10452
10453 /*
10454  * POSIX requires that 'set' (but not export or readonly) output the
10455  * variables in lexicographic order - by the locale's collating order (sigh).
10456  * Maybe we could keep them in an ordered balanced binary tree
10457  * instead of hashed lists.
10458  * For now just roll 'em through qsort for printing...
10459  */
10460 static int
10461 showvars(const char *sep_prefix, int on, int off)
10462 {
10463         const char *sep;
10464         char **ep, **epend;
10465
10466         ep = listvars(on, off, &epend);
10467         qsort(ep, epend - ep, sizeof(char *), vpcmp);
10468
10469         sep = *sep_prefix ? " " : sep_prefix;
10470
10471         for (; ep < epend; ep++) {
10472                 const char *p;
10473                 const char *q;
10474
10475                 p = strchrnul(*ep, '=');
10476                 q = nullstr;
10477                 if (*p)
10478                         q = single_quote(++p);
10479                 out1fmt("%s%s%.*s%s\n", sep_prefix, sep, (int)(p - *ep), *ep, q);
10480         }
10481         return 0;
10482 }
10483
10484 /*
10485  * The set command builtin.
10486  */
10487 static int FAST_FUNC
10488 setcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
10489 {
10490         int retval;
10491
10492         if (!argv[1])
10493                 return showvars(nullstr, 0, VUNSET);
10494
10495         INT_OFF;
10496         retval = options(/*cmdline:*/ 0);
10497         if (retval == 0) { /* if no parse error... */
10498                 optschanged();
10499                 if (*argptr != NULL) {
10500                         setparam(argptr);
10501                 }
10502         }
10503         INT_ON;
10504         return retval;
10505 }
10506
10507 #if ENABLE_ASH_RANDOM_SUPPORT
10508 static void FAST_FUNC
10509 change_random(const char *value)
10510 {
10511         uint32_t t;
10512
10513         if (value == NULL) {
10514                 /* "get", generate */
10515                 t = next_random(&random_gen);
10516                 /* set without recursion */
10517                 setvar(vrandom.var_text, utoa(t), VNOFUNC);
10518                 vrandom.flags &= ~VNOFUNC;
10519         } else {
10520                 /* set/reset */
10521                 t = strtoul(value, NULL, 10);
10522                 INIT_RANDOM_T(&random_gen, (t ? t : 1), t);
10523         }
10524 }
10525 #endif
10526
10527 #if ENABLE_ASH_GETOPTS
10528 static int
10529 getopts(char *optstr, char *optvar, char **optfirst, int *param_optind, int *optoff)
10530 {
10531         char *p, *q;
10532         char c = '?';
10533         int done = 0;
10534         int err = 0;
10535         char sbuf[2];
10536         char **optnext;
10537
10538         sbuf[1] = '\0';
10539
10540         if (*param_optind < 1)
10541                 return 1;
10542         optnext = optfirst + *param_optind - 1;
10543
10544         if (*param_optind <= 1 || *optoff < 0 || (int)strlen(optnext[-1]) < *optoff)
10545                 p = NULL;
10546         else
10547                 p = optnext[-1] + *optoff;
10548         if (p == NULL || *p == '\0') {
10549                 /* Current word is done, advance */
10550                 p = *optnext;
10551                 if (p == NULL || *p != '-' || *++p == '\0') {
10552  atend:
10553                         p = NULL;
10554                         done = 1;
10555                         goto out;
10556                 }
10557                 optnext++;
10558                 if (LONE_DASH(p))        /* check for "--" */
10559                         goto atend;
10560         }
10561
10562         c = *p++;
10563         for (q = optstr; *q != c;) {
10564                 if (*q == '\0') {
10565                         if (optstr[0] == ':') {
10566                                 sbuf[0] = c;
10567                                 /*sbuf[1] = '\0'; - already is */
10568                                 err |= setvarsafe("OPTARG", sbuf, 0);
10569                         } else {
10570                                 fprintf(stderr, "Illegal option -%c\n", c);
10571                                 unsetvar("OPTARG");
10572                         }
10573                         c = '?';
10574                         goto out;
10575                 }
10576                 if (*++q == ':')
10577                         q++;
10578         }
10579
10580         if (*++q == ':') {
10581                 if (*p == '\0' && (p = *optnext) == NULL) {
10582                         if (optstr[0] == ':') {
10583                                 sbuf[0] = c;
10584                                 /*sbuf[1] = '\0'; - already is */
10585                                 err |= setvarsafe("OPTARG", sbuf, 0);
10586                                 c = ':';
10587                         } else {
10588                                 fprintf(stderr, "No arg for -%c option\n", c);
10589                                 unsetvar("OPTARG");
10590                                 c = '?';
10591                         }
10592                         goto out;
10593                 }
10594
10595                 if (p == *optnext)
10596                         optnext++;
10597                 err |= setvarsafe("OPTARG", p, 0);
10598                 p = NULL;
10599         } else
10600                 err |= setvarsafe("OPTARG", nullstr, 0);
10601  out:
10602         *optoff = p ? p - *(optnext - 1) : -1;
10603         *param_optind = optnext - optfirst + 1;
10604         err |= setvarsafe("OPTIND", itoa(*param_optind), VNOFUNC);
10605         sbuf[0] = c;
10606         /*sbuf[1] = '\0'; - already is */
10607         err |= setvarsafe(optvar, sbuf, 0);
10608         if (err) {
10609                 *param_optind = 1;
10610                 *optoff = -1;
10611                 flush_stdout_stderr();
10612                 raise_exception(EXERROR);
10613         }
10614         return done;
10615 }
10616
10617 /*
10618  * The getopts builtin.  Shellparam.optnext points to the next argument
10619  * to be processed.  Shellparam.optptr points to the next character to
10620  * be processed in the current argument.  If shellparam.optnext is NULL,
10621  * then it's the first time getopts has been called.
10622  */
10623 static int FAST_FUNC
10624 getoptscmd(int argc, char **argv)
10625 {
10626         char **optbase;
10627
10628         if (argc < 3)
10629                 ash_msg_and_raise_error("usage: getopts optstring var [arg]");
10630         if (argc == 3) {
10631                 optbase = shellparam.p;
10632                 if (shellparam.optind > shellparam.nparam + 1) {
10633                         shellparam.optind = 1;
10634                         shellparam.optoff = -1;
10635                 }
10636         } else {
10637                 optbase = &argv[3];
10638                 if (shellparam.optind > argc - 2) {
10639                         shellparam.optind = 1;
10640                         shellparam.optoff = -1;
10641                 }
10642         }
10643
10644         return getopts(argv[1], argv[2], optbase, &shellparam.optind,
10645                         &shellparam.optoff);
10646 }
10647 #endif /* ASH_GETOPTS */
10648
10649
10650 /* ============ Shell parser */
10651
10652 struct heredoc {
10653         struct heredoc *next;   /* next here document in list */
10654         union node *here;       /* redirection node */
10655         char *eofmark;          /* string indicating end of input */
10656         smallint striptabs;     /* if set, strip leading tabs */
10657 };
10658
10659 static smallint tokpushback;           /* last token pushed back */
10660 static smallint quoteflag;             /* set if (part of) last token was quoted */
10661 static token_id_t lasttoken;           /* last token read (integer id Txxx) */
10662 static struct heredoc *heredoclist;    /* list of here documents to read */
10663 static char *wordtext;                 /* text of last word returned by readtoken */
10664 static struct nodelist *backquotelist;
10665 static union node *redirnode;
10666 static struct heredoc *heredoc;
10667
10668 static const char *
10669 tokname(char *buf, int tok)
10670 {
10671         if (tok < TSEMI)
10672                 return tokname_array[tok] + 1;
10673         sprintf(buf, "\"%s\"", tokname_array[tok] + 1);
10674         return buf;
10675 }
10676
10677 /* raise_error_unexpected_syntax:
10678  * Called when an unexpected token is read during the parse.  The argument
10679  * is the token that is expected, or -1 if more than one type of token can
10680  * occur at this point.
10681  */
10682 static void raise_error_unexpected_syntax(int) NORETURN;
10683 static void
10684 raise_error_unexpected_syntax(int token)
10685 {
10686         char msg[64];
10687         char buf[16];
10688         int l;
10689
10690         l = sprintf(msg, "unexpected %s", tokname(buf, lasttoken));
10691         if (token >= 0)
10692                 sprintf(msg + l, " (expecting %s)", tokname(buf, token));
10693         raise_error_syntax(msg);
10694         /* NOTREACHED */
10695 }
10696
10697 #define EOFMARKLEN 79
10698
10699 /* parsing is heavily cross-recursive, need these forward decls */
10700 static union node *andor(void);
10701 static union node *pipeline(void);
10702 static union node *parse_command(void);
10703 static void parseheredoc(void);
10704 static int peektoken(void);
10705 static int readtoken(void);
10706
10707 static union node *
10708 list(int nlflag)
10709 {
10710         union node *n1, *n2, *n3;
10711         int tok;
10712
10713         n1 = NULL;
10714         for (;;) {
10715                 switch (peektoken()) {
10716                 case TNL:
10717                         if (!(nlflag & 1))
10718                                 break;
10719                         parseheredoc();
10720                         return n1;
10721
10722                 case TEOF:
10723                         if (!n1 && (nlflag & 1))
10724                                 n1 = NODE_EOF;
10725                         parseheredoc();
10726                         return n1;
10727                 }
10728
10729                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10730                 if (nlflag == 2 && tokname_array[peektoken()][0])
10731                         return n1;
10732                 nlflag |= 2;
10733
10734                 n2 = andor();
10735                 tok = readtoken();
10736                 if (tok == TBACKGND) {
10737                         if (n2->type == NPIPE) {
10738                                 n2->npipe.pipe_backgnd = 1;
10739                         } else {
10740                                 if (n2->type != NREDIR) {
10741                                         n3 = stzalloc(sizeof(struct nredir));
10742                                         n3->nredir.n = n2;
10743                                         /*n3->nredir.redirect = NULL; - stzalloc did it */
10744                                         n2 = n3;
10745                                 }
10746                                 n2->type = NBACKGND;
10747                         }
10748                 }
10749                 if (n1 == NULL) {
10750                         n1 = n2;
10751                 } else {
10752                         n3 = stzalloc(sizeof(struct nbinary));
10753                         n3->type = NSEMI;
10754                         n3->nbinary.ch1 = n1;
10755                         n3->nbinary.ch2 = n2;
10756                         n1 = n3;
10757                 }
10758                 switch (tok) {
10759                 case TNL:
10760                 case TEOF:
10761                         tokpushback = 1;
10762                         /* fall through */
10763                 case TBACKGND:
10764                 case TSEMI:
10765                         break;
10766                 default:
10767                         if ((nlflag & 1))
10768                                 raise_error_unexpected_syntax(-1);
10769                         tokpushback = 1;
10770                         return n1;
10771                 }
10772         }
10773 }
10774
10775 static union node *
10776 andor(void)
10777 {
10778         union node *n1, *n2, *n3;
10779         int t;
10780
10781         n1 = pipeline();
10782         for (;;) {
10783                 t = readtoken();
10784                 if (t == TAND) {
10785                         t = NAND;
10786                 } else if (t == TOR) {
10787                         t = NOR;
10788                 } else {
10789                         tokpushback = 1;
10790                         return n1;
10791                 }
10792                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10793                 n2 = pipeline();
10794                 n3 = stzalloc(sizeof(struct nbinary));
10795                 n3->type = t;
10796                 n3->nbinary.ch1 = n1;
10797                 n3->nbinary.ch2 = n2;
10798                 n1 = n3;
10799         }
10800 }
10801
10802 static union node *
10803 pipeline(void)
10804 {
10805         union node *n1, *n2, *pipenode;
10806         struct nodelist *lp, *prev;
10807         int negate;
10808
10809         negate = 0;
10810         TRACE(("pipeline: entered\n"));
10811         if (readtoken() == TNOT) {
10812                 negate = !negate;
10813                 checkkwd = CHKKWD | CHKALIAS;
10814         } else
10815                 tokpushback = 1;
10816         n1 = parse_command();
10817         if (readtoken() == TPIPE) {
10818                 pipenode = stzalloc(sizeof(struct npipe));
10819                 pipenode->type = NPIPE;
10820                 /*pipenode->npipe.pipe_backgnd = 0; - stzalloc did it */
10821                 lp = stzalloc(sizeof(struct nodelist));
10822                 pipenode->npipe.cmdlist = lp;
10823                 lp->n = n1;
10824                 do {
10825                         prev = lp;
10826                         lp = stzalloc(sizeof(struct nodelist));
10827                         checkkwd = CHKNL | CHKKWD | CHKALIAS;
10828                         lp->n = parse_command();
10829                         prev->next = lp;
10830                 } while (readtoken() == TPIPE);
10831                 lp->next = NULL;
10832                 n1 = pipenode;
10833         }
10834         tokpushback = 1;
10835         if (negate) {
10836                 n2 = stzalloc(sizeof(struct nnot));
10837                 n2->type = NNOT;
10838                 n2->nnot.com = n1;
10839                 return n2;
10840         }
10841         return n1;
10842 }
10843
10844 static union node *
10845 makename(void)
10846 {
10847         union node *n;
10848
10849         n = stzalloc(sizeof(struct narg));
10850         n->type = NARG;
10851         /*n->narg.next = NULL; - stzalloc did it */
10852         n->narg.text = wordtext;
10853         n->narg.backquote = backquotelist;
10854         return n;
10855 }
10856
10857 static void
10858 fixredir(union node *n, const char *text, int err)
10859 {
10860         int fd;
10861
10862         TRACE(("Fix redir %s %d\n", text, err));
10863         if (!err)
10864                 n->ndup.vname = NULL;
10865
10866         fd = bb_strtou(text, NULL, 10);
10867         if (!errno && fd >= 0)
10868                 n->ndup.dupfd = fd;
10869         else if (LONE_DASH(text))
10870                 n->ndup.dupfd = -1;
10871         else {
10872                 if (err)
10873                         raise_error_syntax("bad fd number");
10874                 n->ndup.vname = makename();
10875         }
10876 }
10877
10878 /*
10879  * Returns true if the text contains nothing to expand (no dollar signs
10880  * or backquotes).
10881  */
10882 static int
10883 noexpand(const char *text)
10884 {
10885         unsigned char c;
10886
10887         while ((c = *text++) != '\0') {
10888                 if (c == CTLQUOTEMARK)
10889                         continue;
10890                 if (c == CTLESC)
10891                         text++;
10892                 else if (SIT(c, BASESYNTAX) == CCTL)
10893                         return 0;
10894         }
10895         return 1;
10896 }
10897
10898 static void
10899 parsefname(void)
10900 {
10901         union node *n = redirnode;
10902
10903         if (readtoken() != TWORD)
10904                 raise_error_unexpected_syntax(-1);
10905         if (n->type == NHERE) {
10906                 struct heredoc *here = heredoc;
10907                 struct heredoc *p;
10908                 int i;
10909
10910                 if (quoteflag == 0)
10911                         n->type = NXHERE;
10912                 TRACE(("Here document %d\n", n->type));
10913                 if (!noexpand(wordtext) || (i = strlen(wordtext)) == 0 || i > EOFMARKLEN)
10914                         raise_error_syntax("illegal eof marker for << redirection");
10915                 rmescapes(wordtext, 0);
10916                 here->eofmark = wordtext;
10917                 here->next = NULL;
10918                 if (heredoclist == NULL)
10919                         heredoclist = here;
10920                 else {
10921                         for (p = heredoclist; p->next; p = p->next)
10922                                 continue;
10923                         p->next = here;
10924                 }
10925         } else if (n->type == NTOFD || n->type == NFROMFD) {
10926                 fixredir(n, wordtext, 0);
10927         } else {
10928                 n->nfile.fname = makename();
10929         }
10930 }
10931
10932 static union node *
10933 simplecmd(void)
10934 {
10935         union node *args, **app;
10936         union node *n = NULL;
10937         union node *vars, **vpp;
10938         union node **rpp, *redir;
10939         int savecheckkwd;
10940 #if ENABLE_ASH_BASH_COMPAT
10941         smallint double_brackets_flag = 0;
10942         smallint function_flag = 0;
10943 #endif
10944
10945         args = NULL;
10946         app = &args;
10947         vars = NULL;
10948         vpp = &vars;
10949         redir = NULL;
10950         rpp = &redir;
10951
10952         savecheckkwd = CHKALIAS;
10953         for (;;) {
10954                 int t;
10955                 checkkwd = savecheckkwd;
10956                 t = readtoken();
10957                 switch (t) {
10958 #if ENABLE_ASH_BASH_COMPAT
10959                 case TFUNCTION:
10960                         if (peektoken() != TWORD)
10961                                 raise_error_unexpected_syntax(TWORD);
10962                         function_flag = 1;
10963                         break;
10964                 case TAND: /* "&&" */
10965                 case TOR: /* "||" */
10966                         if (!double_brackets_flag) {
10967                                 tokpushback = 1;
10968                                 goto out;
10969                         }
10970                         wordtext = (char *) (t == TAND ? "-a" : "-o");
10971 #endif
10972                 case TWORD:
10973                         n = stzalloc(sizeof(struct narg));
10974                         n->type = NARG;
10975                         /*n->narg.next = NULL; - stzalloc did it */
10976                         n->narg.text = wordtext;
10977 #if ENABLE_ASH_BASH_COMPAT
10978                         if (strcmp("[[", wordtext) == 0)
10979                                 double_brackets_flag = 1;
10980                         else if (strcmp("]]", wordtext) == 0)
10981                                 double_brackets_flag = 0;
10982 #endif
10983                         n->narg.backquote = backquotelist;
10984                         if (savecheckkwd && isassignment(wordtext)) {
10985                                 *vpp = n;
10986                                 vpp = &n->narg.next;
10987                         } else {
10988                                 *app = n;
10989                                 app = &n->narg.next;
10990                                 savecheckkwd = 0;
10991                         }
10992 #if ENABLE_ASH_BASH_COMPAT
10993                         if (function_flag) {
10994                                 checkkwd = CHKNL | CHKKWD;
10995                                 switch (peektoken()) {
10996                                 case TBEGIN:
10997                                 case TIF:
10998                                 case TCASE:
10999                                 case TUNTIL:
11000                                 case TWHILE:
11001                                 case TFOR:
11002                                         goto do_func;
11003                                 case TLP:
11004                                         function_flag = 0;
11005                                         break;
11006                                 case TWORD:
11007                                         if (strcmp("[[", wordtext) == 0)
11008                                                 goto do_func;
11009                                         /* fall through */
11010                                 default:
11011                                         raise_error_unexpected_syntax(-1);
11012                                 }
11013                         }
11014 #endif
11015                         break;
11016                 case TREDIR:
11017                         *rpp = n = redirnode;
11018                         rpp = &n->nfile.next;
11019                         parsefname();   /* read name of redirection file */
11020                         break;
11021                 case TLP:
11022  IF_ASH_BASH_COMPAT(do_func:)
11023                         if (args && app == &args->narg.next
11024                          && !vars && !redir
11025                         ) {
11026                                 struct builtincmd *bcmd;
11027                                 const char *name;
11028
11029                                 /* We have a function */
11030                                 if (IF_ASH_BASH_COMPAT(!function_flag &&) readtoken() != TRP)
11031                                         raise_error_unexpected_syntax(TRP);
11032                                 name = n->narg.text;
11033                                 if (!goodname(name)
11034                                  || ((bcmd = find_builtin(name)) && IS_BUILTIN_SPECIAL(bcmd))
11035                                 ) {
11036                                         raise_error_syntax("bad function name");
11037                                 }
11038                                 n->type = NDEFUN;
11039                                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
11040                                 n->narg.next = parse_command();
11041                                 return n;
11042                         }
11043                         IF_ASH_BASH_COMPAT(function_flag = 0;)
11044                         /* fall through */
11045                 default:
11046                         tokpushback = 1;
11047                         goto out;
11048                 }
11049         }
11050  out:
11051         *app = NULL;
11052         *vpp = NULL;
11053         *rpp = NULL;
11054         n = stzalloc(sizeof(struct ncmd));
11055         n->type = NCMD;
11056         n->ncmd.args = args;
11057         n->ncmd.assign = vars;
11058         n->ncmd.redirect = redir;
11059         return n;
11060 }
11061
11062 static union node *
11063 parse_command(void)
11064 {
11065         union node *n1, *n2;
11066         union node *ap, **app;
11067         union node *cp, **cpp;
11068         union node *redir, **rpp;
11069         union node **rpp2;
11070         int t;
11071
11072         redir = NULL;
11073         rpp2 = &redir;
11074
11075         switch (readtoken()) {
11076         default:
11077                 raise_error_unexpected_syntax(-1);
11078                 /* NOTREACHED */
11079         case TIF:
11080                 n1 = stzalloc(sizeof(struct nif));
11081                 n1->type = NIF;
11082                 n1->nif.test = list(0);
11083                 if (readtoken() != TTHEN)
11084                         raise_error_unexpected_syntax(TTHEN);
11085                 n1->nif.ifpart = list(0);
11086                 n2 = n1;
11087                 while (readtoken() == TELIF) {
11088                         n2->nif.elsepart = stzalloc(sizeof(struct nif));
11089                         n2 = n2->nif.elsepart;
11090                         n2->type = NIF;
11091                         n2->nif.test = list(0);
11092                         if (readtoken() != TTHEN)
11093                                 raise_error_unexpected_syntax(TTHEN);
11094                         n2->nif.ifpart = list(0);
11095                 }
11096                 if (lasttoken == TELSE)
11097                         n2->nif.elsepart = list(0);
11098                 else {
11099                         n2->nif.elsepart = NULL;
11100                         tokpushback = 1;
11101                 }
11102                 t = TFI;
11103                 break;
11104         case TWHILE:
11105         case TUNTIL: {
11106                 int got;
11107                 n1 = stzalloc(sizeof(struct nbinary));
11108                 n1->type = (lasttoken == TWHILE) ? NWHILE : NUNTIL;
11109                 n1->nbinary.ch1 = list(0);
11110                 got = readtoken();
11111                 if (got != TDO) {
11112                         TRACE(("expecting DO got '%s' %s\n", tokname_array[got] + 1,
11113                                         got == TWORD ? wordtext : ""));
11114                         raise_error_unexpected_syntax(TDO);
11115                 }
11116                 n1->nbinary.ch2 = list(0);
11117                 t = TDONE;
11118                 break;
11119         }
11120         case TFOR:
11121                 if (readtoken() != TWORD || quoteflag || !goodname(wordtext))
11122                         raise_error_syntax("bad for loop variable");
11123                 n1 = stzalloc(sizeof(struct nfor));
11124                 n1->type = NFOR;
11125                 n1->nfor.var = wordtext;
11126                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
11127                 if (readtoken() == TIN) {
11128                         app = &ap;
11129                         while (readtoken() == TWORD) {
11130                                 n2 = stzalloc(sizeof(struct narg));
11131                                 n2->type = NARG;
11132                                 /*n2->narg.next = NULL; - stzalloc did it */
11133                                 n2->narg.text = wordtext;
11134                                 n2->narg.backquote = backquotelist;
11135                                 *app = n2;
11136                                 app = &n2->narg.next;
11137                         }
11138                         *app = NULL;
11139                         n1->nfor.args = ap;
11140                         if (lasttoken != TNL && lasttoken != TSEMI)
11141                                 raise_error_unexpected_syntax(-1);
11142                 } else {
11143                         n2 = stzalloc(sizeof(struct narg));
11144                         n2->type = NARG;
11145                         /*n2->narg.next = NULL; - stzalloc did it */
11146                         n2->narg.text = (char *)dolatstr;
11147                         /*n2->narg.backquote = NULL;*/
11148                         n1->nfor.args = n2;
11149                         /*
11150                          * Newline or semicolon here is optional (but note
11151                          * that the original Bourne shell only allowed NL).
11152                          */
11153                         if (lasttoken != TSEMI)
11154                                 tokpushback = 1;
11155                 }
11156                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
11157                 if (readtoken() != TDO)
11158                         raise_error_unexpected_syntax(TDO);
11159                 n1->nfor.body = list(0);
11160                 t = TDONE;
11161                 break;
11162         case TCASE:
11163                 n1 = stzalloc(sizeof(struct ncase));
11164                 n1->type = NCASE;
11165                 if (readtoken() != TWORD)
11166                         raise_error_unexpected_syntax(TWORD);
11167                 n1->ncase.expr = n2 = stzalloc(sizeof(struct narg));
11168                 n2->type = NARG;
11169                 /*n2->narg.next = NULL; - stzalloc did it */
11170                 n2->narg.text = wordtext;
11171                 n2->narg.backquote = backquotelist;
11172                 checkkwd = CHKNL | CHKKWD | CHKALIAS;
11173                 if (readtoken() != TIN)
11174                         raise_error_unexpected_syntax(TIN);
11175                 cpp = &n1->ncase.cases;
11176  next_case:
11177                 checkkwd = CHKNL | CHKKWD;
11178                 t = readtoken();
11179                 while (t != TESAC) {
11180                         if (lasttoken == TLP)
11181                                 readtoken();
11182                         *cpp = cp = stzalloc(sizeof(struct nclist));
11183                         cp->type = NCLIST;
11184                         app = &cp->nclist.pattern;
11185                         for (;;) {
11186                                 *app = ap = stzalloc(sizeof(struct narg));
11187                                 ap->type = NARG;
11188                                 /*ap->narg.next = NULL; - stzalloc did it */
11189                                 ap->narg.text = wordtext;
11190                                 ap->narg.backquote = backquotelist;
11191                                 if (readtoken() != TPIPE)
11192                                         break;
11193                                 app = &ap->narg.next;
11194                                 readtoken();
11195                         }
11196                         //ap->narg.next = NULL;
11197                         if (lasttoken != TRP)
11198                                 raise_error_unexpected_syntax(TRP);
11199                         cp->nclist.body = list(2);
11200
11201                         cpp = &cp->nclist.next;
11202
11203                         checkkwd = CHKNL | CHKKWD;
11204                         t = readtoken();
11205                         if (t != TESAC) {
11206                                 if (t != TENDCASE)
11207                                         raise_error_unexpected_syntax(TENDCASE);
11208                                 goto next_case;
11209                         }
11210                 }
11211                 *cpp = NULL;
11212                 goto redir;
11213         case TLP:
11214                 n1 = stzalloc(sizeof(struct nredir));
11215                 n1->type = NSUBSHELL;
11216                 n1->nredir.n = list(0);
11217                 /*n1->nredir.redirect = NULL; - stzalloc did it */
11218                 t = TRP;
11219                 break;
11220         case TBEGIN:
11221                 n1 = list(0);
11222                 t = TEND;
11223                 break;
11224         IF_ASH_BASH_COMPAT(case TFUNCTION:)
11225         case TWORD:
11226         case TREDIR:
11227                 tokpushback = 1;
11228                 return simplecmd();
11229         }
11230
11231         if (readtoken() != t)
11232                 raise_error_unexpected_syntax(t);
11233
11234  redir:
11235         /* Now check for redirection which may follow command */
11236         checkkwd = CHKKWD | CHKALIAS;
11237         rpp = rpp2;
11238         while (readtoken() == TREDIR) {
11239                 *rpp = n2 = redirnode;
11240                 rpp = &n2->nfile.next;
11241                 parsefname();
11242         }
11243         tokpushback = 1;
11244         *rpp = NULL;
11245         if (redir) {
11246                 if (n1->type != NSUBSHELL) {
11247                         n2 = stzalloc(sizeof(struct nredir));
11248                         n2->type = NREDIR;
11249                         n2->nredir.n = n1;
11250                         n1 = n2;
11251                 }
11252                 n1->nredir.redirect = redir;
11253         }
11254         return n1;
11255 }
11256
11257 #if ENABLE_ASH_BASH_COMPAT
11258 static int
11259 decode_dollar_squote(void)
11260 {
11261         static const char C_escapes[] ALIGN1 = "nrbtfav""x\\01234567";
11262         int c, cnt;
11263         char *p;
11264         char buf[4];
11265
11266         c = pgetc();
11267         p = strchr(C_escapes, c);
11268         if (p) {
11269                 buf[0] = c;
11270                 p = buf;
11271                 cnt = 3;
11272                 if ((unsigned char)(c - '0') <= 7) { /* \ooo */
11273                         do {
11274                                 c = pgetc();
11275                                 *++p = c;
11276                         } while ((unsigned char)(c - '0') <= 7 && --cnt);
11277                         pungetc();
11278                 } else if (c == 'x') { /* \xHH */
11279                         do {
11280                                 c = pgetc();
11281                                 *++p = c;
11282                         } while (isxdigit(c) && --cnt);
11283                         pungetc();
11284                         if (cnt == 3) { /* \x but next char is "bad" */
11285                                 c = 'x';
11286                                 goto unrecognized;
11287                         }
11288                 } else { /* simple seq like \\ or \t */
11289                         p++;
11290                 }
11291                 *p = '\0';
11292                 p = buf;
11293                 c = bb_process_escape_sequence((void*)&p);
11294         } else { /* unrecognized "\z": print both chars unless ' or " */
11295                 if (c != '\'' && c != '"') {
11296  unrecognized:
11297                         c |= 0x100; /* "please encode \, then me" */
11298                 }
11299         }
11300         return c;
11301 }
11302 #endif
11303
11304 /*
11305  * If eofmark is NULL, read a word or a redirection symbol.  If eofmark
11306  * is not NULL, read a here document.  In the latter case, eofmark is the
11307  * word which marks the end of the document and striptabs is true if
11308  * leading tabs should be stripped from the document.  The argument c
11309  * is the first character of the input token or document.
11310  *
11311  * Because C does not have internal subroutines, I have simulated them
11312  * using goto's to implement the subroutine linkage.  The following macros
11313  * will run code that appears at the end of readtoken1.
11314  */
11315 #define CHECKEND()      {goto checkend; checkend_return:;}
11316 #define PARSEREDIR()    {goto parseredir; parseredir_return:;}
11317 #define PARSESUB()      {goto parsesub; parsesub_return:;}
11318 #define PARSEBACKQOLD() {oldstyle = 1; goto parsebackq; parsebackq_oldreturn:;}
11319 #define PARSEBACKQNEW() {oldstyle = 0; goto parsebackq; parsebackq_newreturn:;}
11320 #define PARSEARITH()    {goto parsearith; parsearith_return:;}
11321 static int
11322 readtoken1(int c, int syntax, char *eofmark, int striptabs)
11323 {
11324         /* NB: syntax parameter fits into smallint */
11325         /* c parameter is an unsigned char or PEOF or PEOA */
11326         char *out;
11327         size_t len;
11328         char line[EOFMARKLEN + 1];
11329         struct nodelist *bqlist;
11330         smallint quotef;
11331         smallint dblquote;
11332         smallint oldstyle;
11333         smallint prevsyntax; /* syntax before arithmetic */
11334 #if ENABLE_ASH_EXPAND_PRMT
11335         smallint pssyntax;   /* we are expanding a prompt string */
11336 #endif
11337         int varnest;         /* levels of variables expansion */
11338         int arinest;         /* levels of arithmetic expansion */
11339         int parenlevel;      /* levels of parens in arithmetic */
11340         int dqvarnest;       /* levels of variables expansion within double quotes */
11341
11342         IF_ASH_BASH_COMPAT(smallint bash_dollar_squote = 0;)
11343
11344         startlinno = g_parsefile->linno;
11345         bqlist = NULL;
11346         quotef = 0;
11347         prevsyntax = 0;
11348 #if ENABLE_ASH_EXPAND_PRMT
11349         pssyntax = (syntax == PSSYNTAX);
11350         if (pssyntax)
11351                 syntax = DQSYNTAX;
11352 #endif
11353         dblquote = (syntax == DQSYNTAX);
11354         varnest = 0;
11355         arinest = 0;
11356         parenlevel = 0;
11357         dqvarnest = 0;
11358
11359         STARTSTACKSTR(out);
11360  loop:
11361         /* For each line, until end of word */
11362         CHECKEND();     /* set c to PEOF if at end of here document */
11363         for (;;) {      /* until end of line or end of word */
11364                 CHECKSTRSPACE(4, out);  /* permit 4 calls to USTPUTC */
11365                 switch (SIT(c, syntax)) {
11366                 case CNL:       /* '\n' */
11367                         if (syntax == BASESYNTAX)
11368                                 goto endword;   /* exit outer loop */
11369                         USTPUTC(c, out);
11370                         g_parsefile->linno++;
11371                         setprompt_if(doprompt, 2);
11372                         c = pgetc();
11373                         goto loop;              /* continue outer loop */
11374                 case CWORD:
11375                         USTPUTC(c, out);
11376                         break;
11377                 case CCTL:
11378 #if ENABLE_ASH_BASH_COMPAT
11379                         if (c == '\\' && bash_dollar_squote) {
11380                                 c = decode_dollar_squote();
11381                                 if (c == '\0') {
11382                                         /* skip $'\000', $'\x00' (like bash) */
11383                                         break;
11384                                 }
11385                                 if (c & 0x100) {
11386                                         /* Unknown escape. Encode as '\z' */
11387                                         c = (unsigned char)c;
11388                                         if (eofmark == NULL || dblquote)
11389                                                 USTPUTC(CTLESC, out);
11390                                         USTPUTC('\\', out);
11391                                 }
11392                         }
11393 #endif
11394                         if (eofmark == NULL || dblquote)
11395                                 USTPUTC(CTLESC, out);
11396                         USTPUTC(c, out);
11397                         break;
11398                 case CBACK:     /* backslash */
11399                         c = pgetc_without_PEOA();
11400                         if (c == PEOF) {
11401                                 USTPUTC(CTLESC, out);
11402                                 USTPUTC('\\', out);
11403                                 pungetc();
11404                         } else if (c == '\n') {
11405                                 setprompt_if(doprompt, 2);
11406                         } else {
11407 #if ENABLE_ASH_EXPAND_PRMT
11408                                 if (c == '$' && pssyntax) {
11409                                         USTPUTC(CTLESC, out);
11410                                         USTPUTC('\\', out);
11411                                 }
11412 #endif
11413                                 /* Backslash is retained if we are in "str" and next char isn't special */
11414                                 if (dblquote
11415                                  && c != '\\'
11416                                  && c != '`'
11417                                  && c != '$'
11418                                  && (c != '"' || eofmark != NULL)
11419                                 ) {
11420                                         USTPUTC('\\', out);
11421                                 }
11422                                 USTPUTC(CTLESC, out);
11423                                 USTPUTC(c, out);
11424                                 quotef = 1;
11425                         }
11426                         break;
11427                 case CSQUOTE:
11428                         syntax = SQSYNTAX;
11429  quotemark:
11430                         if (eofmark == NULL) {
11431                                 USTPUTC(CTLQUOTEMARK, out);
11432                         }
11433                         break;
11434                 case CDQUOTE:
11435                         syntax = DQSYNTAX;
11436                         dblquote = 1;
11437                         goto quotemark;
11438                 case CENDQUOTE:
11439                         IF_ASH_BASH_COMPAT(bash_dollar_squote = 0;)
11440                         if (eofmark != NULL && varnest == 0) {
11441                                 USTPUTC(c, out);
11442                         } else {
11443                                 if (dqvarnest == 0) {
11444                                         syntax = BASESYNTAX;
11445                                         dblquote = 0;
11446                                 }
11447                                 quotef = 1;
11448                                 goto quotemark;
11449                         }
11450                         break;
11451                 case CVAR:      /* '$' */
11452                         PARSESUB();             /* parse substitution */
11453                         break;
11454                 case CENDVAR:   /* '}' */
11455                         if (varnest > 0) {
11456                                 varnest--;
11457                                 if (dqvarnest > 0) {
11458                                         dqvarnest--;
11459                                 }
11460                                 c = CTLENDVAR;
11461                         }
11462                         USTPUTC(c, out);
11463                         break;
11464 #if ENABLE_SH_MATH_SUPPORT
11465                 case CLP:       /* '(' in arithmetic */
11466                         parenlevel++;
11467                         USTPUTC(c, out);
11468                         break;
11469                 case CRP:       /* ')' in arithmetic */
11470                         if (parenlevel > 0) {
11471                                 parenlevel--;
11472                         } else {
11473                                 if (pgetc_eatbnl() == ')') {
11474                                         c = CTLENDARI;
11475                                         if (--arinest == 0) {
11476                                                 syntax = prevsyntax;
11477                                         }
11478                                 } else {
11479                                         /*
11480                                          * unbalanced parens
11481                                          * (don't 2nd guess - no error)
11482                                          */
11483                                         pungetc();
11484                                 }
11485                         }
11486                         USTPUTC(c, out);
11487                         break;
11488 #endif
11489                 case CBQUOTE:   /* '`' */
11490                         PARSEBACKQOLD();
11491                         break;
11492                 case CENDFILE:
11493                         goto endword;           /* exit outer loop */
11494                 case CIGN:
11495                         break;
11496                 default:
11497                         if (varnest == 0) {
11498 #if ENABLE_ASH_BASH_COMPAT
11499                                 if (c == '&') {
11500 //Can't call pgetc_eatbnl() here, this requires three-deep pungetc()
11501                                         if (pgetc() == '>')
11502                                                 c = 0x100 + '>'; /* flag &> */
11503                                         pungetc();
11504                                 }
11505 #endif
11506                                 goto endword;   /* exit outer loop */
11507                         }
11508                         IF_ASH_ALIAS(if (c != PEOA))
11509                                 USTPUTC(c, out);
11510                 }
11511                 c = pgetc();
11512         } /* for (;;) */
11513  endword:
11514
11515 #if ENABLE_SH_MATH_SUPPORT
11516         if (syntax == ARISYNTAX)
11517                 raise_error_syntax("missing '))'");
11518 #endif
11519         if (syntax != BASESYNTAX && eofmark == NULL)
11520                 raise_error_syntax("unterminated quoted string");
11521         if (varnest != 0) {
11522                 startlinno = g_parsefile->linno;
11523                 /* { */
11524                 raise_error_syntax("missing '}'");
11525         }
11526         USTPUTC('\0', out);
11527         len = out - (char *)stackblock();
11528         out = stackblock();
11529         if (eofmark == NULL) {
11530                 if ((c == '>' || c == '<' IF_ASH_BASH_COMPAT( || c == 0x100 + '>'))
11531                  && quotef == 0
11532                 ) {
11533                         if (isdigit_str9(out)) {
11534                                 PARSEREDIR(); /* passed as params: out, c */
11535                                 lasttoken = TREDIR;
11536                                 return lasttoken;
11537                         }
11538                         /* else: non-number X seen, interpret it
11539                          * as "NNNX>file" = "NNNX >file" */
11540                 }
11541                 pungetc();
11542         }
11543         quoteflag = quotef;
11544         backquotelist = bqlist;
11545         grabstackblock(len);
11546         wordtext = out;
11547         lasttoken = TWORD;
11548         return lasttoken;
11549 /* end of readtoken routine */
11550
11551 /*
11552  * Check to see whether we are at the end of the here document.  When this
11553  * is called, c is set to the first character of the next input line.  If
11554  * we are at the end of the here document, this routine sets the c to PEOF.
11555  */
11556 checkend: {
11557         if (eofmark) {
11558 #if ENABLE_ASH_ALIAS
11559                 if (c == PEOA)
11560                         c = pgetc_without_PEOA();
11561 #endif
11562                 if (striptabs) {
11563                         while (c == '\t') {
11564                                 c = pgetc_without_PEOA();
11565                         }
11566                 }
11567                 if (c == *eofmark) {
11568                         if (pfgets(line, sizeof(line)) != NULL) {
11569                                 char *p, *q;
11570
11571                                 p = line;
11572                                 for (q = eofmark + 1; *q && *p == *q; p++, q++)
11573                                         continue;
11574                                 if (*p == '\n' && *q == '\0') {
11575                                         c = PEOF;
11576                                         g_parsefile->linno++;
11577                                         needprompt = doprompt;
11578                                 } else {
11579                                         pushstring(line, NULL);
11580                                 }
11581                         }
11582                 }
11583         }
11584         goto checkend_return;
11585 }
11586
11587 /*
11588  * Parse a redirection operator.  The variable "out" points to a string
11589  * specifying the fd to be redirected.  The variable "c" contains the
11590  * first character of the redirection operator.
11591  */
11592 parseredir: {
11593         /* out is already checked to be a valid number or "" */
11594         int fd = (*out == '\0' ? -1 : atoi(out));
11595         union node *np;
11596
11597         np = stzalloc(sizeof(struct nfile));
11598         if (c == '>') {
11599                 np->nfile.fd = 1;
11600                 c = pgetc();
11601                 if (c == '>')
11602                         np->type = NAPPEND;
11603                 else if (c == '|')
11604                         np->type = NCLOBBER;
11605                 else if (c == '&')
11606                         np->type = NTOFD;
11607                         /* it also can be NTO2 (>&file), but we can't figure it out yet */
11608                 else {
11609                         np->type = NTO;
11610                         pungetc();
11611                 }
11612         }
11613 #if ENABLE_ASH_BASH_COMPAT
11614         else if (c == 0x100 + '>') { /* this flags &> redirection */
11615                 np->nfile.fd = 1;
11616                 pgetc(); /* this is '>', no need to check */
11617                 np->type = NTO2;
11618         }
11619 #endif
11620         else { /* c == '<' */
11621                 /*np->nfile.fd = 0; - stzalloc did it */
11622                 c = pgetc();
11623                 switch (c) {
11624                 case '<':
11625                         if (sizeof(struct nfile) != sizeof(struct nhere)) {
11626                                 np = stzalloc(sizeof(struct nhere));
11627                                 /*np->nfile.fd = 0; - stzalloc did it */
11628                         }
11629                         np->type = NHERE;
11630                         heredoc = stzalloc(sizeof(struct heredoc));
11631                         heredoc->here = np;
11632                         c = pgetc();
11633                         if (c == '-') {
11634                                 heredoc->striptabs = 1;
11635                         } else {
11636                                 /*heredoc->striptabs = 0; - stzalloc did it */
11637                                 pungetc();
11638                         }
11639                         break;
11640
11641                 case '&':
11642                         np->type = NFROMFD;
11643                         break;
11644
11645                 case '>':
11646                         np->type = NFROMTO;
11647                         break;
11648
11649                 default:
11650                         np->type = NFROM;
11651                         pungetc();
11652                         break;
11653                 }
11654         }
11655         if (fd >= 0)
11656                 np->nfile.fd = fd;
11657         redirnode = np;
11658         goto parseredir_return;
11659 }
11660
11661 /*
11662  * Parse a substitution.  At this point, we have read the dollar sign
11663  * and nothing else.
11664  */
11665
11666 /* is_special(c) evaluates to 1 for c in "!#$*-0123456789?@"; 0 otherwise
11667  * (assuming ascii char codes, as the original implementation did) */
11668 #define is_special(c) \
11669         (((unsigned)(c) - 33 < 32) \
11670                         && ((0xc1ff920dU >> ((unsigned)(c) - 33)) & 1))
11671 parsesub: {
11672         unsigned char subtype;
11673         int typeloc;
11674         int flags;
11675
11676         c = pgetc_eatbnl();
11677         if (c > 255 /* PEOA or PEOF */
11678          || (c != '(' && c != '{' && !is_name(c) && !is_special(c))
11679         ) {
11680 #if ENABLE_ASH_BASH_COMPAT
11681                 if (syntax != DQSYNTAX && c == '\'')
11682                         bash_dollar_squote = 1;
11683                 else
11684 #endif
11685                         USTPUTC('$', out);
11686                 pungetc();
11687         } else if (c == '(') {
11688                 /* $(command) or $((arith)) */
11689                 if (pgetc_eatbnl() == '(') {
11690 #if ENABLE_SH_MATH_SUPPORT
11691                         PARSEARITH();
11692 #else
11693                         raise_error_syntax("you disabled math support for $((arith)) syntax");
11694 #endif
11695                 } else {
11696                         pungetc();
11697                         PARSEBACKQNEW();
11698                 }
11699         } else {
11700                 /* $VAR, $<specialchar>, ${...}, or PEOA/PEOF */
11701                 USTPUTC(CTLVAR, out);
11702                 typeloc = out - (char *)stackblock();
11703                 USTPUTC(VSNORMAL, out);
11704                 subtype = VSNORMAL;
11705                 if (c == '{') {
11706                         c = pgetc_eatbnl();
11707                         if (c == '#') {
11708                                 c = pgetc_eatbnl();
11709                                 if (c == '}')
11710                                         c = '#'; /* ${#} - same as $# */
11711                                 else
11712                                         subtype = VSLENGTH; /* ${#VAR} */
11713                         } else {
11714                                 subtype = 0;
11715                         }
11716                 }
11717                 if (c <= 255 /* not PEOA or PEOF */ && is_name(c)) {
11718                         /* $[{[#]]NAME[}] */
11719                         do {
11720                                 STPUTC(c, out);
11721                                 c = pgetc_eatbnl();
11722                         } while (c <= 255 /* not PEOA or PEOF */ && is_in_name(c));
11723                 } else if (isdigit(c)) {
11724                         /* $[{[#]]NUM[}] */
11725                         do {
11726                                 STPUTC(c, out);
11727                                 c = pgetc_eatbnl();
11728                         } while (isdigit(c));
11729                 } else if (is_special(c)) {
11730                         /* $[{[#]]<specialchar>[}] */
11731                         USTPUTC(c, out);
11732                         c = pgetc_eatbnl();
11733                 } else {
11734  badsub:
11735                         raise_error_syntax("bad substitution");
11736                 }
11737                 if (c != '}' && subtype == VSLENGTH) {
11738                         /* ${#VAR didn't end with } */
11739                         goto badsub;
11740                 }
11741
11742                 STPUTC('=', out);
11743                 flags = 0;
11744                 if (subtype == 0) {
11745                         static const char types[] ALIGN1 = "}-+?=";
11746                         /* ${VAR...} but not $VAR or ${#VAR} */
11747                         /* c == first char after VAR */
11748                         switch (c) {
11749                         case ':':
11750                                 c = pgetc_eatbnl();
11751 #if ENABLE_ASH_BASH_COMPAT
11752                                 /* This check is only needed to not misinterpret
11753                                  * ${VAR:-WORD}, ${VAR:+WORD}, ${VAR:=WORD}, ${VAR:?WORD}
11754                                  * constructs.
11755                                  */
11756                                 if (!strchr(types, c)) {
11757                                         subtype = VSSUBSTR;
11758                                         pungetc();
11759                                         break; /* "goto do_pungetc" is bigger (!) */
11760                                 }
11761 #endif
11762                                 flags = VSNUL;
11763                                 /*FALLTHROUGH*/
11764                         default: {
11765                                 const char *p = strchr(types, c);
11766                                 if (p == NULL)
11767                                         goto badsub;
11768                                 subtype = p - types + VSNORMAL;
11769                                 break;
11770                         }
11771                         case '%':
11772                         case '#': {
11773                                 int cc = c;
11774                                 subtype = (c == '#' ? VSTRIMLEFT : VSTRIMRIGHT);
11775                                 c = pgetc_eatbnl();
11776                                 if (c != cc)
11777                                         goto do_pungetc;
11778                                 subtype++;
11779                                 break;
11780                         }
11781 #if ENABLE_ASH_BASH_COMPAT
11782                         case '/':
11783                                 /* ${v/[/]pattern/repl} */
11784 //TODO: encode pattern and repl separately.
11785 // Currently ${v/$var_with_slash/repl} is horribly broken
11786                                 subtype = VSREPLACE;
11787                                 c = pgetc_eatbnl();
11788                                 if (c != '/')
11789                                         goto do_pungetc;
11790                                 subtype++; /* VSREPLACEALL */
11791                                 break;
11792 #endif
11793                         }
11794                 } else {
11795  do_pungetc:
11796                         pungetc();
11797                 }
11798                 ((unsigned char *)stackblock())[typeloc] = subtype | flags;
11799                 if (subtype != VSNORMAL) {
11800                         varnest++;
11801                         if (dblquote) {
11802                                 dqvarnest++;
11803                         }
11804                 }
11805         }
11806         goto parsesub_return;
11807 }
11808
11809 /*
11810  * Called to parse command substitutions.  Newstyle is set if the command
11811  * is enclosed inside $(...); nlpp is a pointer to the head of the linked
11812  * list of commands (passed by reference), and savelen is the number of
11813  * characters on the top of the stack which must be preserved.
11814  */
11815 parsebackq: {
11816         struct nodelist **nlpp;
11817         union node *n;
11818         char *str;
11819         size_t savelen;
11820         smallint saveprompt = 0;
11821
11822         str = NULL;
11823         savelen = out - (char *)stackblock();
11824         if (savelen > 0) {
11825                 /*
11826                  * FIXME: this can allocate very large block on stack and SEGV.
11827                  * Example:
11828                  * echo "..<100kbytes>..`true` $(true) `true` ..."
11829                  * allocates 100kb for every command subst. With about
11830                  * a hundred command substitutions stack overflows.
11831                  * With larger prepended string, SEGV happens sooner.
11832                  */
11833                 str = alloca(savelen);
11834                 memcpy(str, stackblock(), savelen);
11835         }
11836
11837         if (oldstyle) {
11838                 /* We must read until the closing backquote, giving special
11839                  * treatment to some slashes, and then push the string and
11840                  * reread it as input, interpreting it normally.
11841                  */
11842                 char *pout;
11843                 size_t psavelen;
11844                 char *pstr;
11845
11846                 STARTSTACKSTR(pout);
11847                 for (;;) {
11848                         int pc;
11849
11850                         setprompt_if(needprompt, 2);
11851                         pc = pgetc();
11852                         switch (pc) {
11853                         case '`':
11854                                 goto done;
11855
11856                         case '\\':
11857                                 pc = pgetc();
11858                                 if (pc == '\n') {
11859                                         g_parsefile->linno++;
11860                                         setprompt_if(doprompt, 2);
11861                                         /*
11862                                          * If eating a newline, avoid putting
11863                                          * the newline into the new character
11864                                          * stream (via the STPUTC after the
11865                                          * switch).
11866                                          */
11867                                         continue;
11868                                 }
11869                                 if (pc != '\\' && pc != '`' && pc != '$'
11870                                  && (!dblquote || pc != '"')
11871                                 ) {
11872                                         STPUTC('\\', pout);
11873                                 }
11874                                 if (pc <= 255 /* not PEOA or PEOF */) {
11875                                         break;
11876                                 }
11877                                 /* fall through */
11878
11879                         case PEOF:
11880                         IF_ASH_ALIAS(case PEOA:)
11881                                 startlinno = g_parsefile->linno;
11882                                 raise_error_syntax("EOF in backquote substitution");
11883
11884                         case '\n':
11885                                 g_parsefile->linno++;
11886                                 needprompt = doprompt;
11887                                 break;
11888
11889                         default:
11890                                 break;
11891                         }
11892                         STPUTC(pc, pout);
11893                 }
11894  done:
11895                 STPUTC('\0', pout);
11896                 psavelen = pout - (char *)stackblock();
11897                 if (psavelen > 0) {
11898                         pstr = grabstackstr(pout);
11899                         setinputstring(pstr);
11900                 }
11901         }
11902         nlpp = &bqlist;
11903         while (*nlpp)
11904                 nlpp = &(*nlpp)->next;
11905         *nlpp = stzalloc(sizeof(**nlpp));
11906         /* (*nlpp)->next = NULL; - stzalloc did it */
11907
11908         if (oldstyle) {
11909                 saveprompt = doprompt;
11910                 doprompt = 0;
11911         }
11912
11913         n = list(2);
11914
11915         if (oldstyle)
11916                 doprompt = saveprompt;
11917         else if (readtoken() != TRP)
11918                 raise_error_unexpected_syntax(TRP);
11919
11920         (*nlpp)->n = n;
11921         if (oldstyle) {
11922                 /*
11923                  * Start reading from old file again, ignoring any pushed back
11924                  * tokens left from the backquote parsing
11925                  */
11926                 popfile();
11927                 tokpushback = 0;
11928         }
11929         while (stackblocksize() <= savelen)
11930                 growstackblock();
11931         STARTSTACKSTR(out);
11932         if (str) {
11933                 memcpy(out, str, savelen);
11934                 STADJUST(savelen, out);
11935         }
11936         USTPUTC(CTLBACKQ, out);
11937         if (oldstyle)
11938                 goto parsebackq_oldreturn;
11939         goto parsebackq_newreturn;
11940 }
11941
11942 #if ENABLE_SH_MATH_SUPPORT
11943 /*
11944  * Parse an arithmetic expansion (indicate start of one and set state)
11945  */
11946 parsearith: {
11947         if (++arinest == 1) {
11948                 prevsyntax = syntax;
11949                 syntax = ARISYNTAX;
11950         }
11951         USTPUTC(CTLARI, out);
11952         goto parsearith_return;
11953 }
11954 #endif
11955 } /* end of readtoken */
11956
11957 /*
11958  * Read the next input token.
11959  * If the token is a word, we set backquotelist to the list of cmds in
11960  *      backquotes.  We set quoteflag to true if any part of the word was
11961  *      quoted.
11962  * If the token is TREDIR, then we set redirnode to a structure containing
11963  *      the redirection.
11964  * In all cases, the variable startlinno is set to the number of the line
11965  *      on which the token starts.
11966  *
11967  * [Change comment:  here documents and internal procedures]
11968  * [Readtoken shouldn't have any arguments.  Perhaps we should make the
11969  *  word parsing code into a separate routine.  In this case, readtoken
11970  *  doesn't need to have any internal procedures, but parseword does.
11971  *  We could also make parseoperator in essence the main routine, and
11972  *  have parseword (readtoken1?) handle both words and redirection.]
11973  */
11974 #define NEW_xxreadtoken
11975 #ifdef NEW_xxreadtoken
11976 /* singles must be first! */
11977 static const char xxreadtoken_chars[7] ALIGN1 = {
11978         '\n', '(', ')', /* singles */
11979         '&', '|', ';',  /* doubles */
11980         0
11981 };
11982
11983 #define xxreadtoken_singles 3
11984 #define xxreadtoken_doubles 3
11985
11986 static const char xxreadtoken_tokens[] ALIGN1 = {
11987         TNL, TLP, TRP,          /* only single occurrence allowed */
11988         TBACKGND, TPIPE, TSEMI, /* if single occurrence */
11989         TEOF,                   /* corresponds to trailing nul */
11990         TAND, TOR, TENDCASE     /* if double occurrence */
11991 };
11992
11993 static int
11994 xxreadtoken(void)
11995 {
11996         int c;
11997
11998         if (tokpushback) {
11999                 tokpushback = 0;
12000                 return lasttoken;
12001         }
12002         setprompt_if(needprompt, 2);
12003         startlinno = g_parsefile->linno;
12004         for (;;) {                      /* until token or start of word found */
12005                 c = pgetc();
12006                 if (c == ' ' || c == '\t' IF_ASH_ALIAS( || c == PEOA))
12007                         continue;
12008
12009                 if (c == '#') {
12010                         while ((c = pgetc()) != '\n' && c != PEOF)
12011                                 continue;
12012                         pungetc();
12013                 } else if (c == '\\') {
12014                         if (pgetc() != '\n') {
12015                                 pungetc();
12016                                 break; /* return readtoken1(...) */
12017                         }
12018                         startlinno = ++g_parsefile->linno;
12019                         setprompt_if(doprompt, 2);
12020                 } else {
12021                         const char *p;
12022
12023                         p = xxreadtoken_chars + sizeof(xxreadtoken_chars) - 1;
12024                         if (c != PEOF) {
12025                                 if (c == '\n') {
12026                                         g_parsefile->linno++;
12027                                         needprompt = doprompt;
12028                                 }
12029
12030                                 p = strchr(xxreadtoken_chars, c);
12031                                 if (p == NULL)
12032                                         break; /* return readtoken1(...) */
12033
12034                                 if ((int)(p - xxreadtoken_chars) >= xxreadtoken_singles) {
12035                                         int cc = pgetc();
12036                                         if (cc == c) {    /* double occurrence? */
12037                                                 p += xxreadtoken_doubles + 1;
12038                                         } else {
12039                                                 pungetc();
12040 #if ENABLE_ASH_BASH_COMPAT
12041                                                 if (c == '&' && cc == '>') /* &> */
12042                                                         break; /* return readtoken1(...) */
12043 #endif
12044                                         }
12045                                 }
12046                         }
12047                         lasttoken = xxreadtoken_tokens[p - xxreadtoken_chars];
12048                         return lasttoken;
12049                 }
12050         } /* for (;;) */
12051
12052         return readtoken1(c, BASESYNTAX, (char *) NULL, 0);
12053 }
12054 #else /* old xxreadtoken */
12055 #define RETURN(token)   return lasttoken = token
12056 static int
12057 xxreadtoken(void)
12058 {
12059         int c;
12060
12061         if (tokpushback) {
12062                 tokpushback = 0;
12063                 return lasttoken;
12064         }
12065         setprompt_if(needprompt, 2);
12066         startlinno = g_parsefile->linno;
12067         for (;;) {      /* until token or start of word found */
12068                 c = pgetc();
12069                 switch (c) {
12070                 case ' ': case '\t':
12071                 IF_ASH_ALIAS(case PEOA:)
12072                         continue;
12073                 case '#':
12074                         while ((c = pgetc()) != '\n' && c != PEOF)
12075                                 continue;
12076                         pungetc();
12077                         continue;
12078                 case '\\':
12079                         if (pgetc() == '\n') {
12080                                 startlinno = ++g_parsefile->linno;
12081                                 setprompt_if(doprompt, 2);
12082                                 continue;
12083                         }
12084                         pungetc();
12085                         goto breakloop;
12086                 case '\n':
12087                         g_parsefile->linno++;
12088                         needprompt = doprompt;
12089                         RETURN(TNL);
12090                 case PEOF:
12091                         RETURN(TEOF);
12092                 case '&':
12093                         if (pgetc() == '&')
12094                                 RETURN(TAND);
12095                         pungetc();
12096                         RETURN(TBACKGND);
12097                 case '|':
12098                         if (pgetc() == '|')
12099                                 RETURN(TOR);
12100                         pungetc();
12101                         RETURN(TPIPE);
12102                 case ';':
12103                         if (pgetc() == ';')
12104                                 RETURN(TENDCASE);
12105                         pungetc();
12106                         RETURN(TSEMI);
12107                 case '(':
12108                         RETURN(TLP);
12109                 case ')':
12110                         RETURN(TRP);
12111                 default:
12112                         goto breakloop;
12113                 }
12114         }
12115  breakloop:
12116         return readtoken1(c, BASESYNTAX, (char *)NULL, 0);
12117 #undef RETURN
12118 }
12119 #endif /* old xxreadtoken */
12120
12121 static int
12122 readtoken(void)
12123 {
12124         int t;
12125         int kwd = checkkwd;
12126 #if DEBUG
12127         smallint alreadyseen = tokpushback;
12128 #endif
12129
12130 #if ENABLE_ASH_ALIAS
12131  top:
12132 #endif
12133
12134         t = xxreadtoken();
12135
12136         /*
12137          * eat newlines
12138          */
12139         if (kwd & CHKNL) {
12140                 while (t == TNL) {
12141                         parseheredoc();
12142                         t = xxreadtoken();
12143                 }
12144         }
12145
12146         if (t != TWORD || quoteflag) {
12147                 goto out;
12148         }
12149
12150         /*
12151          * check for keywords
12152          */
12153         if (kwd & CHKKWD) {
12154                 const char *const *pp;
12155
12156                 pp = findkwd(wordtext);
12157                 if (pp) {
12158                         lasttoken = t = pp - tokname_array;
12159                         TRACE(("keyword '%s' recognized\n", tokname_array[t] + 1));
12160                         goto out;
12161                 }
12162         }
12163
12164         if (checkkwd & CHKALIAS) {
12165 #if ENABLE_ASH_ALIAS
12166                 struct alias *ap;
12167                 ap = lookupalias(wordtext, 1);
12168                 if (ap != NULL) {
12169                         if (*ap->val) {
12170                                 pushstring(ap->val, ap);
12171                         }
12172                         goto top;
12173                 }
12174 #endif
12175         }
12176  out:
12177         checkkwd = 0;
12178 #if DEBUG
12179         if (!alreadyseen)
12180                 TRACE(("token '%s' %s\n", tokname_array[t] + 1, t == TWORD ? wordtext : ""));
12181         else
12182                 TRACE(("reread token '%s' %s\n", tokname_array[t] + 1, t == TWORD ? wordtext : ""));
12183 #endif
12184         return t;
12185 }
12186
12187 static int
12188 peektoken(void)
12189 {
12190         int t;
12191
12192         t = readtoken();
12193         tokpushback = 1;
12194         return t;
12195 }
12196
12197 /*
12198  * Read and parse a command.  Returns NODE_EOF on end of file.
12199  * (NULL is a valid parse tree indicating a blank line.)
12200  */
12201 static union node *
12202 parsecmd(int interact)
12203 {
12204         tokpushback = 0;
12205         checkkwd = 0;
12206         heredoclist = 0;
12207         doprompt = interact;
12208         setprompt_if(doprompt, doprompt);
12209         needprompt = 0;
12210         return list(1);
12211 }
12212
12213 /*
12214  * Input any here documents.
12215  */
12216 static void
12217 parseheredoc(void)
12218 {
12219         struct heredoc *here;
12220         union node *n;
12221
12222         here = heredoclist;
12223         heredoclist = NULL;
12224
12225         while (here) {
12226                 setprompt_if(needprompt, 2);
12227                 readtoken1(pgetc(), here->here->type == NHERE ? SQSYNTAX : DQSYNTAX,
12228                                 here->eofmark, here->striptabs);
12229                 n = stzalloc(sizeof(struct narg));
12230                 n->narg.type = NARG;
12231                 /*n->narg.next = NULL; - stzalloc did it */
12232                 n->narg.text = wordtext;
12233                 n->narg.backquote = backquotelist;
12234                 here->here->nhere.doc = n;
12235                 here = here->next;
12236         }
12237 }
12238
12239
12240 /*
12241  * called by editline -- any expansions to the prompt should be added here.
12242  */
12243 #if ENABLE_ASH_EXPAND_PRMT
12244 static const char *
12245 expandstr(const char *ps)
12246 {
12247         union node n;
12248
12249         /* XXX Fix (char *) cast. It _is_ a bug. ps is variable's value,
12250          * and token processing _can_ alter it (delete NULs etc). */
12251         setinputstring((char *)ps);
12252         readtoken1(pgetc(), PSSYNTAX, nullstr, 0);
12253         popfile();
12254
12255         n.narg.type = NARG;
12256         n.narg.next = NULL;
12257         n.narg.text = wordtext;
12258         n.narg.backquote = backquotelist;
12259
12260         expandarg(&n, NULL, EXP_QUOTED);
12261         return stackblock();
12262 }
12263 #endif
12264
12265 /*
12266  * Execute a command or commands contained in a string.
12267  */
12268 static int
12269 evalstring(char *s, int flags)
12270 {
12271         union node *n;
12272         struct stackmark smark;
12273         int status;
12274
12275         s = sstrdup(s);
12276         setinputstring(s);
12277         setstackmark(&smark);
12278
12279         status = 0;
12280         while ((n = parsecmd(0)) != NODE_EOF) {
12281                 int i;
12282
12283                 i = evaltree(n, flags);
12284                 if (n)
12285                         status = i;
12286                 popstackmark(&smark);
12287                 if (evalskip)
12288                         break;
12289         }
12290         popstackmark(&smark);
12291         popfile();
12292         stunalloc(s);
12293
12294         return status;
12295 }
12296
12297 /*
12298  * The eval command.
12299  */
12300 static int FAST_FUNC
12301 evalcmd(int argc UNUSED_PARAM, char **argv, int flags)
12302 {
12303         char *p;
12304         char *concat;
12305
12306         if (argv[1]) {
12307                 p = argv[1];
12308                 argv += 2;
12309                 if (argv[0]) {
12310                         STARTSTACKSTR(concat);
12311                         for (;;) {
12312                                 concat = stack_putstr(p, concat);
12313                                 p = *argv++;
12314                                 if (p == NULL)
12315                                         break;
12316                                 STPUTC(' ', concat);
12317                         }
12318                         STPUTC('\0', concat);
12319                         p = grabstackstr(concat);
12320                 }
12321                 return evalstring(p, flags & EV_TESTED);
12322         }
12323         return 0;
12324 }
12325
12326 /*
12327  * Read and execute commands.
12328  * "Top" is nonzero for the top level command loop;
12329  * it turns on prompting if the shell is interactive.
12330  */
12331 static int
12332 cmdloop(int top)
12333 {
12334         union node *n;
12335         struct stackmark smark;
12336         int inter;
12337         int status = 0;
12338         int numeof = 0;
12339
12340         TRACE(("cmdloop(%d) called\n", top));
12341         for (;;) {
12342                 int skip;
12343
12344                 setstackmark(&smark);
12345 #if JOBS
12346                 if (doing_jobctl)
12347                         showjobs(SHOW_CHANGED|SHOW_STDERR);
12348 #endif
12349                 inter = 0;
12350                 if (iflag && top) {
12351                         inter++;
12352                         chkmail();
12353                 }
12354                 n = parsecmd(inter);
12355 #if DEBUG
12356                 if (DEBUG > 2 && debug && (n != NODE_EOF))
12357                         showtree(n);
12358 #endif
12359                 if (n == NODE_EOF) {
12360                         if (!top || numeof >= 50)
12361                                 break;
12362                         if (!stoppedjobs()) {
12363                                 if (!Iflag)
12364                                         break;
12365                                 out2str("\nUse \"exit\" to leave shell.\n");
12366                         }
12367                         numeof++;
12368                 } else if (nflag == 0) {
12369                         int i;
12370
12371                         /* job_warning can only be 2,1,0. Here 2->1, 1/0->0 */
12372                         job_warning >>= 1;
12373                         numeof = 0;
12374                         i = evaltree(n, 0);
12375                         if (n)
12376                                 status = i;
12377                 }
12378                 popstackmark(&smark);
12379                 skip = evalskip;
12380
12381                 if (skip) {
12382                         evalskip &= ~SKIPFUNC;
12383                         break;
12384                 }
12385         }
12386         return status;
12387 }
12388
12389 /*
12390  * Take commands from a file.  To be compatible we should do a path
12391  * search for the file, which is necessary to find sub-commands.
12392  */
12393 static char *
12394 find_dot_file(char *name)
12395 {
12396         char *fullname;
12397         const char *path = pathval();
12398         struct stat statb;
12399
12400         /* don't try this for absolute or relative paths */
12401         if (strchr(name, '/'))
12402                 return name;
12403
12404         /* IIRC standards do not say whether . is to be searched.
12405          * And it is even smaller this way, making it unconditional for now:
12406          */
12407         if (1) { /* ENABLE_ASH_BASH_COMPAT */
12408                 fullname = name;
12409                 goto try_cur_dir;
12410         }
12411
12412         while ((fullname = path_advance(&path, name)) != NULL) {
12413  try_cur_dir:
12414                 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
12415                         /*
12416                          * Don't bother freeing here, since it will
12417                          * be freed by the caller.
12418                          */
12419                         return fullname;
12420                 }
12421                 if (fullname != name)
12422                         stunalloc(fullname);
12423         }
12424
12425         /* not found in the PATH */
12426         ash_msg_and_raise_error("%s: not found", name);
12427         /* NOTREACHED */
12428 }
12429
12430 static int FAST_FUNC
12431 dotcmd(int argc_ UNUSED_PARAM, char **argv_ UNUSED_PARAM)
12432 {
12433         /* "false; . empty_file; echo $?" should print 0, not 1: */
12434         int status = 0;
12435         char *fullname;
12436         char **argv;
12437         struct strlist *sp;
12438         volatile struct shparam saveparam;
12439
12440         for (sp = cmdenviron; sp; sp = sp->next)
12441                 setvareq(ckstrdup(sp->text), VSTRFIXED | VTEXTFIXED);
12442
12443         nextopt(nullstr); /* handle possible "--" */
12444         argv = argptr;
12445
12446         if (!argv[0]) {
12447                 /* bash says: "bash: .: filename argument required" */
12448                 return 2; /* bash compat */
12449         }
12450
12451         /* This aborts if file isn't found, which is POSIXly correct.
12452          * bash returns exitcode 1 instead.
12453          */
12454         fullname = find_dot_file(argv[0]);
12455         argv++;
12456         if (argv[0]) { /* . FILE ARGS, ARGS exist */
12457                 int argc;
12458                 saveparam = shellparam;
12459                 shellparam.malloced = 0;
12460                 argc = 1;
12461                 while (argv[argc])
12462                         argc++;
12463                 shellparam.nparam = argc;
12464                 shellparam.p = argv;
12465         };
12466
12467         /* This aborts if file can't be opened, which is POSIXly correct.
12468          * bash returns exitcode 1 instead.
12469          */
12470         setinputfile(fullname, INPUT_PUSH_FILE);
12471         commandname = fullname;
12472         status = cmdloop(0);
12473         popfile();
12474
12475         if (argv[0]) {
12476                 freeparam(&shellparam);
12477                 shellparam = saveparam;
12478         };
12479
12480         return status;
12481 }
12482
12483 static int FAST_FUNC
12484 exitcmd(int argc UNUSED_PARAM, char **argv)
12485 {
12486         if (stoppedjobs())
12487                 return 0;
12488         if (argv[1])
12489                 exitstatus = number(argv[1]);
12490         raise_exception(EXEXIT);
12491         /* NOTREACHED */
12492 }
12493
12494 /*
12495  * Read a file containing shell functions.
12496  */
12497 static void
12498 readcmdfile(char *name)
12499 {
12500         setinputfile(name, INPUT_PUSH_FILE);
12501         cmdloop(0);
12502         popfile();
12503 }
12504
12505
12506 /* ============ find_command inplementation */
12507
12508 /*
12509  * Resolve a command name.  If you change this routine, you may have to
12510  * change the shellexec routine as well.
12511  */
12512 static void
12513 find_command(char *name, struct cmdentry *entry, int act, const char *path)
12514 {
12515         struct tblentry *cmdp;
12516         int idx;
12517         int prev;
12518         char *fullname;
12519         struct stat statb;
12520         int e;
12521         int updatetbl;
12522         struct builtincmd *bcmd;
12523
12524         /* If name contains a slash, don't use PATH or hash table */
12525         if (strchr(name, '/') != NULL) {
12526                 entry->u.index = -1;
12527                 if (act & DO_ABS) {
12528                         while (stat(name, &statb) < 0) {
12529 #ifdef SYSV
12530                                 if (errno == EINTR)
12531                                         continue;
12532 #endif
12533                                 entry->cmdtype = CMDUNKNOWN;
12534                                 return;
12535                         }
12536                 }
12537                 entry->cmdtype = CMDNORMAL;
12538                 return;
12539         }
12540
12541 /* #if ENABLE_FEATURE_SH_STANDALONE... moved after builtin check */
12542
12543         updatetbl = (path == pathval());
12544         if (!updatetbl) {
12545                 act |= DO_ALTPATH;
12546                 if (strstr(path, "%builtin") != NULL)
12547                         act |= DO_ALTBLTIN;
12548         }
12549
12550         /* If name is in the table, check answer will be ok */
12551         cmdp = cmdlookup(name, 0);
12552         if (cmdp != NULL) {
12553                 int bit;
12554
12555                 switch (cmdp->cmdtype) {
12556                 default:
12557 #if DEBUG
12558                         abort();
12559 #endif
12560                 case CMDNORMAL:
12561                         bit = DO_ALTPATH;
12562                         break;
12563                 case CMDFUNCTION:
12564                         bit = DO_NOFUNC;
12565                         break;
12566                 case CMDBUILTIN:
12567                         bit = DO_ALTBLTIN;
12568                         break;
12569                 }
12570                 if (act & bit) {
12571                         updatetbl = 0;
12572                         cmdp = NULL;
12573                 } else if (cmdp->rehash == 0)
12574                         /* if not invalidated by cd, we're done */
12575                         goto success;
12576         }
12577
12578         /* If %builtin not in path, check for builtin next */
12579         bcmd = find_builtin(name);
12580         if (bcmd) {
12581                 if (IS_BUILTIN_REGULAR(bcmd))
12582                         goto builtin_success;
12583                 if (act & DO_ALTPATH) {
12584                         if (!(act & DO_ALTBLTIN))
12585                                 goto builtin_success;
12586                 } else if (builtinloc <= 0) {
12587                         goto builtin_success;
12588                 }
12589         }
12590
12591 #if ENABLE_FEATURE_SH_STANDALONE
12592         {
12593                 int applet_no = find_applet_by_name(name);
12594                 if (applet_no >= 0) {
12595                         entry->cmdtype = CMDNORMAL;
12596                         entry->u.index = -2 - applet_no;
12597                         return;
12598                 }
12599         }
12600 #endif
12601
12602         /* We have to search path. */
12603         prev = -1;              /* where to start */
12604         if (cmdp && cmdp->rehash) {     /* doing a rehash */
12605                 if (cmdp->cmdtype == CMDBUILTIN)
12606                         prev = builtinloc;
12607                 else
12608                         prev = cmdp->param.index;
12609         }
12610
12611         e = ENOENT;
12612         idx = -1;
12613  loop:
12614         while ((fullname = path_advance(&path, name)) != NULL) {
12615                 stunalloc(fullname);
12616                 /* NB: code below will still use fullname
12617                  * despite it being "unallocated" */
12618                 idx++;
12619                 if (pathopt) {
12620                         if (prefix(pathopt, "builtin")) {
12621                                 if (bcmd)
12622                                         goto builtin_success;
12623                                 continue;
12624                         }
12625                         if ((act & DO_NOFUNC)
12626                          || !prefix(pathopt, "func")
12627                         ) {     /* ignore unimplemented options */
12628                                 continue;
12629                         }
12630                 }
12631                 /* if rehash, don't redo absolute path names */
12632                 if (fullname[0] == '/' && idx <= prev) {
12633                         if (idx < prev)
12634                                 continue;
12635                         TRACE(("searchexec \"%s\": no change\n", name));
12636                         goto success;
12637                 }
12638                 while (stat(fullname, &statb) < 0) {
12639 #ifdef SYSV
12640                         if (errno == EINTR)
12641                                 continue;
12642 #endif
12643                         if (errno != ENOENT && errno != ENOTDIR)
12644                                 e = errno;
12645                         goto loop;
12646                 }
12647                 e = EACCES;     /* if we fail, this will be the error */
12648                 if (!S_ISREG(statb.st_mode))
12649                         continue;
12650                 if (pathopt) {          /* this is a %func directory */
12651                         stalloc(strlen(fullname) + 1);
12652                         /* NB: stalloc will return space pointed by fullname
12653                          * (because we don't have any intervening allocations
12654                          * between stunalloc above and this stalloc) */
12655                         readcmdfile(fullname);
12656                         cmdp = cmdlookup(name, 0);
12657                         if (cmdp == NULL || cmdp->cmdtype != CMDFUNCTION)
12658                                 ash_msg_and_raise_error("%s not defined in %s", name, fullname);
12659                         stunalloc(fullname);
12660                         goto success;
12661                 }
12662                 TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname));
12663                 if (!updatetbl) {
12664                         entry->cmdtype = CMDNORMAL;
12665                         entry->u.index = idx;
12666                         return;
12667                 }
12668                 INT_OFF;
12669                 cmdp = cmdlookup(name, 1);
12670                 cmdp->cmdtype = CMDNORMAL;
12671                 cmdp->param.index = idx;
12672                 INT_ON;
12673                 goto success;
12674         }
12675
12676         /* We failed.  If there was an entry for this command, delete it */
12677         if (cmdp && updatetbl)
12678                 delete_cmd_entry();
12679         if (act & DO_ERR)
12680                 ash_msg("%s: %s", name, errmsg(e, "not found"));
12681         entry->cmdtype = CMDUNKNOWN;
12682         return;
12683
12684  builtin_success:
12685         if (!updatetbl) {
12686                 entry->cmdtype = CMDBUILTIN;
12687                 entry->u.cmd = bcmd;
12688                 return;
12689         }
12690         INT_OFF;
12691         cmdp = cmdlookup(name, 1);
12692         cmdp->cmdtype = CMDBUILTIN;
12693         cmdp->param.cmd = bcmd;
12694         INT_ON;
12695  success:
12696         cmdp->rehash = 0;
12697         entry->cmdtype = cmdp->cmdtype;
12698         entry->u = cmdp->param;
12699 }
12700
12701
12702 /* ============ trap.c */
12703
12704 /*
12705  * The trap builtin.
12706  */
12707 static int FAST_FUNC
12708 trapcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12709 {
12710         char *action;
12711         char **ap;
12712         int signo, exitcode;
12713
12714         nextopt(nullstr);
12715         ap = argptr;
12716         if (!*ap) {
12717                 for (signo = 0; signo < NSIG; signo++) {
12718                         char *tr = trap_ptr[signo];
12719                         if (tr) {
12720                                 /* note: bash adds "SIG", but only if invoked
12721                                  * as "bash". If called as "sh", or if set -o posix,
12722                                  * then it prints short signal names.
12723                                  * We are printing short names: */
12724                                 out1fmt("trap -- %s %s\n",
12725                                                 single_quote(tr),
12726                                                 get_signame(signo));
12727                 /* trap_ptr != trap only if we are in special-cased `trap` code.
12728                  * In this case, we will exit very soon, no need to free(). */
12729                                 /* if (trap_ptr != trap && tp[0]) */
12730                                 /*      free(tr); */
12731                         }
12732                 }
12733                 /*
12734                 if (trap_ptr != trap) {
12735                         free(trap_ptr);
12736                         trap_ptr = trap;
12737                 }
12738                 */
12739                 return 0;
12740         }
12741
12742         action = NULL;
12743         if (ap[1])
12744                 action = *ap++;
12745         exitcode = 0;
12746         while (*ap) {
12747                 signo = get_signum(*ap);
12748                 if (signo < 0) {
12749                         /* Mimic bash message exactly */
12750                         ash_msg("%s: invalid signal specification", *ap);
12751                         exitcode = 1;
12752                         goto next;
12753                 }
12754                 INT_OFF;
12755                 if (action) {
12756                         if (LONE_DASH(action))
12757                                 action = NULL;
12758                         else
12759                                 action = ckstrdup(action);
12760                 }
12761                 free(trap[signo]);
12762                 if (action)
12763                         may_have_traps = 1;
12764                 trap[signo] = action;
12765                 if (signo != 0)
12766                         setsignal(signo);
12767                 INT_ON;
12768  next:
12769                 ap++;
12770         }
12771         return exitcode;
12772 }
12773
12774
12775 /* ============ Builtins */
12776
12777 #if ENABLE_ASH_HELP
12778 static int FAST_FUNC
12779 helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12780 {
12781         unsigned col;
12782         unsigned i;
12783
12784         out1fmt(
12785                 "Built-in commands:\n"
12786                 "------------------\n");
12787         for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) {
12788                 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
12789                                         builtintab[i].name + 1);
12790                 if (col > 60) {
12791                         out1fmt("\n");
12792                         col = 0;
12793                 }
12794         }
12795 # if ENABLE_FEATURE_SH_STANDALONE
12796         {
12797                 const char *a = applet_names;
12798                 while (*a) {
12799                         col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), a);
12800                         if (col > 60) {
12801                                 out1fmt("\n");
12802                                 col = 0;
12803                         }
12804                         while (*a++ != '\0')
12805                                 continue;
12806                 }
12807         }
12808 # endif
12809         out1fmt("\n\n");
12810         return EXIT_SUCCESS;
12811 }
12812 #endif
12813
12814 #if MAX_HISTORY
12815 static int FAST_FUNC
12816 historycmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12817 {
12818         show_history(line_input_state);
12819         return EXIT_SUCCESS;
12820 }
12821 #endif
12822
12823 /*
12824  * The export and readonly commands.
12825  */
12826 static int FAST_FUNC
12827 exportcmd(int argc UNUSED_PARAM, char **argv)
12828 {
12829         struct var *vp;
12830         char *name;
12831         const char *p;
12832         char **aptr;
12833         char opt;
12834         int flag;
12835         int flag_off;
12836
12837         /* "readonly" in bash accepts, but ignores -n.
12838          * We do the same: it saves a conditional in nextopt's param.
12839          */
12840         flag_off = 0;
12841         while ((opt = nextopt("np")) != '\0') {
12842                 if (opt == 'n')
12843                         flag_off = VEXPORT;
12844         }
12845         flag = VEXPORT;
12846         if (argv[0][0] == 'r') {
12847                 flag = VREADONLY;
12848                 flag_off = 0; /* readonly ignores -n */
12849         }
12850         flag_off = ~flag_off;
12851
12852         /*if (opt_p_not_specified) - bash doesnt check this. Try "export -p NAME" */
12853         {
12854                 aptr = argptr;
12855                 name = *aptr;
12856                 if (name) {
12857                         do {
12858                                 p = strchr(name, '=');
12859                                 if (p != NULL) {
12860                                         p++;
12861                                 } else {
12862                                         vp = *findvar(hashvar(name), name);
12863                                         if (vp) {
12864                                                 vp->flags = ((vp->flags | flag) & flag_off);
12865                                                 continue;
12866                                         }
12867                                 }
12868                                 setvar(name, p, (flag & flag_off));
12869                         } while ((name = *++aptr) != NULL);
12870                         return 0;
12871                 }
12872         }
12873
12874         /* No arguments. Show the list of exported or readonly vars.
12875          * -n is ignored.
12876          */
12877         showvars(argv[0], flag, 0);
12878         return 0;
12879 }
12880
12881 /*
12882  * Delete a function if it exists.
12883  */
12884 static void
12885 unsetfunc(const char *name)
12886 {
12887         struct tblentry *cmdp;
12888
12889         cmdp = cmdlookup(name, 0);
12890         if (cmdp != NULL && cmdp->cmdtype == CMDFUNCTION)
12891                 delete_cmd_entry();
12892 }
12893
12894 /*
12895  * The unset builtin command.  We unset the function before we unset the
12896  * variable to allow a function to be unset when there is a readonly variable
12897  * with the same name.
12898  */
12899 static int FAST_FUNC
12900 unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12901 {
12902         char **ap;
12903         int i;
12904         int flag = 0;
12905         int ret = 0;
12906
12907         while ((i = nextopt("vf")) != 0) {
12908                 flag = i;
12909         }
12910
12911         for (ap = argptr; *ap; ap++) {
12912                 if (flag != 'f') {
12913                         i = unsetvar(*ap);
12914                         ret |= i;
12915                         if (!(i & 2))
12916                                 continue;
12917                 }
12918                 if (flag != 'v')
12919                         unsetfunc(*ap);
12920         }
12921         return ret & 1;
12922 }
12923
12924 static const unsigned char timescmd_str[] ALIGN1 = {
12925         ' ',  offsetof(struct tms, tms_utime),
12926         '\n', offsetof(struct tms, tms_stime),
12927         ' ',  offsetof(struct tms, tms_cutime),
12928         '\n', offsetof(struct tms, tms_cstime),
12929         0
12930 };
12931 static int FAST_FUNC
12932 timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12933 {
12934         unsigned long clk_tck, s, t;
12935         const unsigned char *p;
12936         struct tms buf;
12937
12938         clk_tck = bb_clk_tck();
12939         times(&buf);
12940
12941         p = timescmd_str;
12942         do {
12943                 t = *(clock_t *)(((char *) &buf) + p[1]);
12944                 s = t / clk_tck;
12945                 t = t % clk_tck;
12946                 out1fmt("%lum%lu.%03lus%c",
12947                         s / 60, s % 60,
12948                         (t * 1000) / clk_tck,
12949                         p[0]);
12950                 p += 2;
12951         } while (*p);
12952
12953         return 0;
12954 }
12955
12956 #if ENABLE_SH_MATH_SUPPORT
12957 /*
12958  * The let builtin. Partially stolen from GNU Bash, the Bourne Again SHell.
12959  * Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
12960  *
12961  * Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>
12962  */
12963 static int FAST_FUNC
12964 letcmd(int argc UNUSED_PARAM, char **argv)
12965 {
12966         arith_t i;
12967
12968         argv++;
12969         if (!*argv)
12970                 ash_msg_and_raise_error("expression expected");
12971         do {
12972                 i = ash_arith(*argv);
12973         } while (*++argv);
12974
12975         return !i;
12976 }
12977 #endif
12978
12979 /*
12980  * The read builtin. Options:
12981  *      -r              Do not interpret '\' specially
12982  *      -s              Turn off echo (tty only)
12983  *      -n NCHARS       Read NCHARS max
12984  *      -p PROMPT       Display PROMPT on stderr (if input is from tty)
12985  *      -t SECONDS      Timeout after SECONDS (tty or pipe only)
12986  *      -u FD           Read from given FD instead of fd 0
12987  * This uses unbuffered input, which may be avoidable in some cases.
12988  * TODO: bash also has:
12989  *      -a ARRAY        Read into array[0],[1],etc
12990  *      -d DELIM        End on DELIM char, not newline
12991  *      -e              Use line editing (tty only)
12992  */
12993 static int FAST_FUNC
12994 readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
12995 {
12996         char *opt_n = NULL;
12997         char *opt_p = NULL;
12998         char *opt_t = NULL;
12999         char *opt_u = NULL;
13000         int read_flags = 0;
13001         const char *r;
13002         int i;
13003
13004         while ((i = nextopt("p:u:rt:n:s")) != '\0') {
13005                 switch (i) {
13006                 case 'p':
13007                         opt_p = optionarg;
13008                         break;
13009                 case 'n':
13010                         opt_n = optionarg;
13011                         break;
13012                 case 's':
13013                         read_flags |= BUILTIN_READ_SILENT;
13014                         break;
13015                 case 't':
13016                         opt_t = optionarg;
13017                         break;
13018                 case 'r':
13019                         read_flags |= BUILTIN_READ_RAW;
13020                         break;
13021                 case 'u':
13022                         opt_u = optionarg;
13023                         break;
13024                 default:
13025                         break;
13026                 }
13027         }
13028
13029         /* "read -s" needs to save/restore termios, can't allow ^C
13030          * to jump out of it.
13031          */
13032         INT_OFF;
13033         r = shell_builtin_read(setvar0,
13034                 argptr,
13035                 bltinlookup("IFS"), /* can be NULL */
13036                 read_flags,
13037                 opt_n,
13038                 opt_p,
13039                 opt_t,
13040                 opt_u
13041         );
13042         INT_ON;
13043
13044         if ((uintptr_t)r > 1)
13045                 ash_msg_and_raise_error(r);
13046
13047         return (uintptr_t)r;
13048 }
13049
13050 static int FAST_FUNC
13051 umaskcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
13052 {
13053         static const char permuser[3] ALIGN1 = "ogu";
13054
13055         mode_t mask;
13056         int symbolic_mode = 0;
13057
13058         while (nextopt("S") != '\0') {
13059                 symbolic_mode = 1;
13060         }
13061
13062         INT_OFF;
13063         mask = umask(0);
13064         umask(mask);
13065         INT_ON;
13066
13067         if (*argptr == NULL) {
13068                 if (symbolic_mode) {
13069                         char buf[sizeof(",u=rwx,g=rwx,o=rwx")];
13070                         char *p = buf;
13071                         int i;
13072
13073                         i = 2;
13074                         for (;;) {
13075                                 *p++ = ',';
13076                                 *p++ = permuser[i];
13077                                 *p++ = '=';
13078                                 /* mask is 0..0uuugggooo. i=2 selects uuu bits */
13079                                 if (!(mask & 0400)) *p++ = 'r';
13080                                 if (!(mask & 0200)) *p++ = 'w';
13081                                 if (!(mask & 0100)) *p++ = 'x';
13082                                 mask <<= 3;
13083                                 if (--i < 0)
13084                                         break;
13085                         }
13086                         *p = '\0';
13087                         puts(buf + 1);
13088                 } else {
13089                         out1fmt("%04o\n", mask);
13090                 }
13091         } else {
13092                 char *modestr = *argptr;
13093                 /* numeric umasks are taken as-is */
13094                 /* symbolic umasks are inverted: "umask a=rx" calls umask(222) */
13095                 if (!isdigit(modestr[0]))
13096                         mask ^= 0777;
13097                 mask = bb_parse_mode(modestr, mask);
13098                 if ((unsigned)mask > 0777) {
13099                         ash_msg_and_raise_error("illegal mode: %s", modestr);
13100                 }
13101                 if (!isdigit(modestr[0]))
13102                         mask ^= 0777;
13103                 umask(mask);
13104         }
13105         return 0;
13106 }
13107
13108 static int FAST_FUNC
13109 ulimitcmd(int argc UNUSED_PARAM, char **argv)
13110 {
13111         return shell_builtin_ulimit(argv);
13112 }
13113
13114 /* ============ main() and helpers */
13115
13116 /*
13117  * Called to exit the shell.
13118  */
13119 static void
13120 exitshell(void)
13121 {
13122         struct jmploc loc;
13123         char *p;
13124         int status;
13125
13126 #if ENABLE_FEATURE_EDITING_SAVE_ON_EXIT
13127         save_history(line_input_state);
13128 #endif
13129
13130         status = exitstatus;
13131         TRACE(("pid %d, exitshell(%d)\n", getpid(), status));
13132         if (setjmp(loc.loc)) {
13133                 if (exception_type == EXEXIT)
13134 /* dash bug: it just does _exit(exitstatus) here
13135  * but we have to do setjobctl(0) first!
13136  * (bug is still not fixed in dash-0.5.3 - if you run dash
13137  * under Midnight Commander, on exit from dash MC is backgrounded) */
13138                         status = exitstatus;
13139                 goto out;
13140         }
13141         exception_handler = &loc;
13142         p = trap[0];
13143         if (p) {
13144                 trap[0] = NULL;
13145                 evalskip = 0;
13146                 evalstring(p, 0);
13147                 free(p);
13148         }
13149         flush_stdout_stderr();
13150  out:
13151         setjobctl(0);
13152         _exit(status);
13153         /* NOTREACHED */
13154 }
13155
13156 static void
13157 init(void)
13158 {
13159         /* from input.c: */
13160         /* we will never free this */
13161         basepf.next_to_pgetc = basepf.buf = ckmalloc(IBUFSIZ);
13162
13163         /* from trap.c: */
13164         signal(SIGCHLD, SIG_DFL);
13165         /* bash re-enables SIGHUP which is SIG_IGNed on entry.
13166          * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
13167          */
13168         signal(SIGHUP, SIG_DFL);
13169
13170         /* from var.c: */
13171         {
13172                 char **envp;
13173                 const char *p;
13174                 struct stat st1, st2;
13175
13176                 initvar();
13177                 for (envp = environ; envp && *envp; envp++) {
13178                         p = endofname(*envp);
13179                         if (p != *envp && *p == '=') {
13180                                 setvareq(*envp, VEXPORT|VTEXTFIXED);
13181                         }
13182                 }
13183
13184                 setvareq((char*)defoptindvar, VTEXTFIXED);
13185
13186                 setvar0("PPID", utoa(getppid()));
13187 #if ENABLE_ASH_BASH_COMPAT
13188                 p = lookupvar("SHLVL");
13189                 setvar("SHLVL", utoa((p ? atoi(p) : 0) + 1), VEXPORT);
13190                 if (!lookupvar("HOSTNAME")) {
13191                         struct utsname uts;
13192                         uname(&uts);
13193                         setvar0("HOSTNAME", uts.nodename);
13194                 }
13195 #endif
13196                 p = lookupvar("PWD");
13197                 if (p) {
13198                         if (p[0] != '/' || stat(p, &st1) || stat(".", &st2)
13199                          || st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino
13200                         ) {
13201                                 p = NULL;
13202                         }
13203                 }
13204                 setpwd(p, 0);
13205         }
13206 }
13207
13208
13209 //usage:#define ash_trivial_usage
13210 //usage:        "[-/+OPTIONS] [-/+o OPT]... [-c 'SCRIPT' [ARG0 [ARGS]] / FILE [ARGS]]"
13211 //usage:#define ash_full_usage "\n\n"
13212 //usage:        "Unix shell interpreter"
13213
13214 //usage:#if ENABLE_FEATURE_SH_IS_ASH
13215 //usage:# define sh_trivial_usage ash_trivial_usage
13216 //usage:# define sh_full_usage    ash_full_usage
13217 //usage:#endif
13218 //usage:#if ENABLE_FEATURE_BASH_IS_ASH
13219 //usage:# define bash_trivial_usage ash_trivial_usage
13220 //usage:# define bash_full_usage    ash_full_usage
13221 //usage:#endif
13222
13223 /*
13224  * Process the shell command line arguments.
13225  */
13226 static void
13227 procargs(char **argv)
13228 {
13229         int i;
13230         const char *xminusc;
13231         char **xargv;
13232
13233         xargv = argv;
13234         arg0 = xargv[0];
13235         /* if (xargv[0]) - mmm, this is always true! */
13236                 xargv++;
13237         for (i = 0; i < NOPTS; i++)
13238                 optlist[i] = 2;
13239         argptr = xargv;
13240         if (options(/*cmdline:*/ 1)) {
13241                 /* it already printed err message */
13242                 raise_exception(EXERROR);
13243         }
13244         xargv = argptr;
13245         xminusc = minusc;
13246         if (*xargv == NULL) {
13247                 if (xminusc)
13248                         ash_msg_and_raise_error(bb_msg_requires_arg, "-c");
13249                 sflag = 1;
13250         }
13251         if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1))
13252                 iflag = 1;
13253         if (mflag == 2)
13254                 mflag = iflag;
13255         for (i = 0; i < NOPTS; i++)
13256                 if (optlist[i] == 2)
13257                         optlist[i] = 0;
13258 #if DEBUG == 2
13259         debug = 1;
13260 #endif
13261         /* POSIX 1003.2: first arg after -c cmd is $0, remainder $1... */
13262         if (xminusc) {
13263                 minusc = *xargv++;
13264                 if (*xargv)
13265                         goto setarg0;
13266         } else if (!sflag) {
13267                 setinputfile(*xargv, 0);
13268  setarg0:
13269                 arg0 = *xargv++;
13270                 commandname = arg0;
13271         }
13272
13273         shellparam.p = xargv;
13274 #if ENABLE_ASH_GETOPTS
13275         shellparam.optind = 1;
13276         shellparam.optoff = -1;
13277 #endif
13278         /* assert(shellparam.malloced == 0 && shellparam.nparam == 0); */
13279         while (*xargv) {
13280                 shellparam.nparam++;
13281                 xargv++;
13282         }
13283         optschanged();
13284 }
13285
13286 /*
13287  * Read /etc/profile or .profile.
13288  */
13289 static void
13290 read_profile(const char *name)
13291 {
13292         if (setinputfile(name, INPUT_PUSH_FILE | INPUT_NOFILE_OK) < 0)
13293                 return;
13294         cmdloop(0);
13295         popfile();
13296 }
13297
13298 /*
13299  * This routine is called when an error or an interrupt occurs in an
13300  * interactive shell and control is returned to the main command loop.
13301  */
13302 static void
13303 reset(void)
13304 {
13305         /* from eval.c: */
13306         evalskip = 0;
13307         loopnest = 0;
13308         /* from input.c: */
13309         g_parsefile->left_in_buffer = 0;
13310         g_parsefile->left_in_line = 0;      /* clear input buffer */
13311         popallfiles();
13312         /* from parser.c: */
13313         tokpushback = 0;
13314         checkkwd = 0;
13315         /* from redir.c: */
13316         clearredir(/*drop:*/ 0);
13317 }
13318
13319 #if PROFILE
13320 static short profile_buf[16384];
13321 extern int etext();
13322 #endif
13323
13324 /*
13325  * Main routine.  We initialize things, parse the arguments, execute
13326  * profiles if we're a login shell, and then call cmdloop to execute
13327  * commands.  The setjmp call sets up the location to jump to when an
13328  * exception occurs.  When an exception occurs the variable "state"
13329  * is used to figure out how far we had gotten.
13330  */
13331 int ash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
13332 int ash_main(int argc UNUSED_PARAM, char **argv)
13333 {
13334         const char *shinit;
13335         volatile smallint state;
13336         struct jmploc jmploc;
13337         struct stackmark smark;
13338
13339         /* Initialize global data */
13340         INIT_G_misc();
13341         INIT_G_memstack();
13342         INIT_G_var();
13343 #if ENABLE_ASH_ALIAS
13344         INIT_G_alias();
13345 #endif
13346         INIT_G_cmdtable();
13347
13348 #if PROFILE
13349         monitor(4, etext, profile_buf, sizeof(profile_buf), 50);
13350 #endif
13351
13352 #if ENABLE_FEATURE_EDITING
13353         line_input_state = new_line_input_t(FOR_SHELL | WITH_PATH_LOOKUP);
13354 #endif
13355         state = 0;
13356         if (setjmp(jmploc.loc)) {
13357                 smallint e;
13358                 smallint s;
13359
13360                 reset();
13361
13362                 e = exception_type;
13363                 if (e == EXERROR)
13364                         exitstatus = 2;
13365                 s = state;
13366                 if (e == EXEXIT || s == 0 || iflag == 0 || shlvl) {
13367                         exitshell();
13368                 }
13369                 if (e == EXINT) {
13370                         newline_and_flush(stderr);
13371                 }
13372
13373                 popstackmark(&smark);
13374                 FORCE_INT_ON; /* enable interrupts */
13375                 if (s == 1)
13376                         goto state1;
13377                 if (s == 2)
13378                         goto state2;
13379                 if (s == 3)
13380                         goto state3;
13381                 goto state4;
13382         }
13383         exception_handler = &jmploc;
13384 #if DEBUG
13385         opentrace();
13386         TRACE(("Shell args: "));
13387         trace_puts_args(argv);
13388 #endif
13389         rootpid = getpid();
13390
13391         init();
13392         setstackmark(&smark);
13393         procargs(argv);
13394
13395         if (argv[0] && argv[0][0] == '-')
13396                 isloginsh = 1;
13397         if (isloginsh) {
13398                 const char *hp;
13399
13400                 state = 1;
13401                 read_profile("/etc/profile");
13402  state1:
13403                 state = 2;
13404                 hp = lookupvar("HOME");
13405                 if (hp) {
13406                         hp = concat_path_file(hp, ".profile");
13407                         read_profile(hp);
13408                         free((char*)hp);
13409                 }
13410         }
13411  state2:
13412         state = 3;
13413         if (
13414 #ifndef linux
13415          getuid() == geteuid() && getgid() == getegid() &&
13416 #endif
13417          iflag
13418         ) {
13419                 shinit = lookupvar("ENV");
13420                 if (shinit != NULL && *shinit != '\0') {
13421                         read_profile(shinit);
13422                 }
13423         }
13424  state3:
13425         state = 4;
13426         if (minusc) {
13427                 /* evalstring pushes parsefile stack.
13428                  * Ensure we don't falsely claim that 0 (stdin)
13429                  * is one of stacked source fds.
13430                  * Testcase: ash -c 'exec 1>&0' must not complain. */
13431                 // if (!sflag) g_parsefile->pf_fd = -1;
13432                 // ^^ not necessary since now we special-case fd 0
13433                 // in is_hidden_fd() to not be considered "hidden fd"
13434                 evalstring(minusc, 0);
13435         }
13436
13437         if (sflag || minusc == NULL) {
13438 #if MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
13439                 if (iflag) {
13440                         const char *hp = lookupvar("HISTFILE");
13441                         if (!hp) {
13442                                 hp = lookupvar("HOME");
13443                                 if (hp) {
13444                                         hp = concat_path_file(hp, ".ash_history");
13445                                         setvar0("HISTFILE", hp);
13446                                         free((char*)hp);
13447                                         hp = lookupvar("HISTFILE");
13448                                 }
13449                         }
13450                         if (hp)
13451                                 line_input_state->hist_file = hp;
13452 # if ENABLE_FEATURE_SH_HISTFILESIZE
13453                         hp = lookupvar("HISTFILESIZE");
13454                         line_input_state->max_history = size_from_HISTFILESIZE(hp);
13455 # endif
13456                 }
13457 #endif
13458  state4: /* XXX ??? - why isn't this before the "if" statement */
13459                 cmdloop(1);
13460         }
13461 #if PROFILE
13462         monitor(0);
13463 #endif
13464 #ifdef GPROF
13465         {
13466                 extern void _mcleanup(void);
13467                 _mcleanup();
13468         }
13469 #endif
13470         TRACE(("End of main reached\n"));
13471         exitshell();
13472         /* NOTREACHED */
13473 }
13474
13475
13476 /*-
13477  * Copyright (c) 1989, 1991, 1993, 1994
13478  *      The Regents of the University of California.  All rights reserved.
13479  *
13480  * This code is derived from software contributed to Berkeley by
13481  * Kenneth Almquist.
13482  *
13483  * Redistribution and use in source and binary forms, with or without
13484  * modification, are permitted provided that the following conditions
13485  * are met:
13486  * 1. Redistributions of source code must retain the above copyright
13487  *    notice, this list of conditions and the following disclaimer.
13488  * 2. Redistributions in binary form must reproduce the above copyright
13489  *    notice, this list of conditions and the following disclaimer in the
13490  *    documentation and/or other materials provided with the distribution.
13491  * 3. Neither the name of the University nor the names of its contributors
13492  *    may be used to endorse or promote products derived from this software
13493  *    without specific prior written permission.
13494  *
13495  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
13496  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13497  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
13498  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
13499  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
13500  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
13501  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
13502  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
13503  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
13504  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
13505  * SUCH DAMAGE.
13506  */