blob: e7cf7975f412f6fe516911969c7ad1b033f920eb [file] [log] [blame]
Eric Andersendf82f612001-06-28 07:46:40 +00001/* vi: set sw=4 ts=4: */
2/*
3 * ash shell port for busybox
4 *
5 * Copyright (c) 1989, 1991, 1993, 1994
Eric Andersen2870d962001-07-02 17:27:21 +00006 * The Regents of the University of California. All rights reserved.
Eric Andersencb57d552001-06-28 07:25:16 +00007 *
"Vladimir N. Oleynik"ddc280e2005-12-15 12:01:49 +00008 * Copyright (c) 1997-2005 Herbert Xu <herbert@gondor.apana.org.au>
Eric Andersen81fe1232003-07-29 06:38:40 +00009 * was re-ported from NetBSD and debianized.
10 *
Eric Andersencb57d552001-06-28 07:25:16 +000011 * This code is derived from software contributed to Berkeley by
12 * Kenneth Almquist.
13 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000014 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersendf82f612001-06-28 07:46:40 +000015 *
Eric Andersen81fe1232003-07-29 06:38:40 +000016 * Original BSD copyright notice is retained at the end of this file.
Eric Andersencb57d552001-06-28 07:25:16 +000017 */
18
Eric Andersenc470f442003-07-28 09:56:35 +000019/*
Denis Vlasenko653d8e72009-03-19 21:59:35 +000020 * The following should be set to reflect the type of system you have:
Eric Andersenc470f442003-07-28 09:56:35 +000021 * 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, debugging info will be written to ./trace and
27 * a quit signal will generate a core dump.
28 */
Denis Vlasenkof1733952009-03-19 23:21:55 +000029#define DEBUG 0
Denis Vlasenko653d8e72009-03-19 21:59:35 +000030/* Tweak debug output verbosity here */
31#define DEBUG_TIME 0
32#define DEBUG_PID 1
33#define DEBUG_SIG 1
34
Eric Andersenc470f442003-07-28 09:56:35 +000035#define PROFILE 0
Denis Vlasenko0e6f6612008-02-15 15:02:15 +000036
37#define IFS_BROKEN
38
39#define JOBS ENABLE_ASH_JOB_CONTROL
Eric Andersenc470f442003-07-28 09:56:35 +000040
Denis Vlasenkob012b102007-02-19 22:43:01 +000041#if DEBUG
Denis Vlasenko653d8e72009-03-19 21:59:35 +000042# ifndef _GNU_SOURCE
43# define _GNU_SOURCE
44# endif
Denis Vlasenkoe26b2782008-02-12 07:40:29 +000045#endif
Denis Vlasenko0e6f6612008-02-15 15:02:15 +000046
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000047#include "busybox.h" /* for applet_names */
Denis Vlasenko61befda2008-11-25 01:36:03 +000048//TODO: pull in some .h and find out do we have SINGLE_APPLET_MAIN?
49//#include "applet_tables.h" doesn't work
Denis Vlasenkob012b102007-02-19 22:43:01 +000050#include <paths.h>
51#include <setjmp.h>
52#include <fnmatch.h>
Mike Frysinger98c52642009-04-02 10:02:37 +000053#include "math.h"
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020054#if ENABLE_ASH_RANDOM_SUPPORT
55# include "random.h"
Denys Vlasenko36df0482009-10-19 16:07:28 +020056#else
57# define CLEAR_RANDOM_T(rnd) ((void)0)
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020058#endif
Denis Vlasenko61befda2008-11-25 01:36:03 +000059
60#if defined SINGLE_APPLET_MAIN
61/* STANDALONE does not make sense, and won't compile */
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020062# undef CONFIG_FEATURE_SH_STANDALONE
63# undef ENABLE_FEATURE_SH_STANDALONE
64# undef IF_FEATURE_SH_STANDALONE
65# undef IF_NOT_FEATURE_SH_STANDALONE(...)
66# define ENABLE_FEATURE_SH_STANDALONE 0
67# define IF_FEATURE_SH_STANDALONE(...)
68# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Eric Andersencb57d552001-06-28 07:25:16 +000069#endif
70
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000071#ifndef PIPE_BUF
Denis Vlasenko653d8e72009-03-19 21:59:35 +000072# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000073#endif
74
Denis Vlasenkob012b102007-02-19 22:43:01 +000075#if defined(__uClinux__)
Denis Vlasenko653d8e72009-03-19 21:59:35 +000076# error "Do not even bother, ash will not run on NOMMU machine"
Denis Vlasenkob012b102007-02-19 22:43:01 +000077#endif
78
Denis Vlasenkob012b102007-02-19 22:43:01 +000079
Denis Vlasenko01631112007-12-16 17:20:38 +000080/* ============ Hash table sizes. Configurable. */
81
82#define VTABSIZE 39
83#define ATABSIZE 39
84#define CMDTABLESIZE 31 /* should be prime */
85
86
Denis Vlasenkob012b102007-02-19 22:43:01 +000087/* ============ Shell options */
88
89static const char *const optletters_optnames[] = {
90 "e" "errexit",
91 "f" "noglob",
92 "I" "ignoreeof",
93 "i" "interactive",
94 "m" "monitor",
95 "n" "noexec",
96 "s" "stdin",
97 "x" "xtrace",
98 "v" "verbose",
99 "C" "noclobber",
100 "a" "allexport",
101 "b" "notify",
102 "u" "nounset",
Denys Vlasenko285ad152009-12-04 23:02:27 +0100103 "\0" "vi",
Michael Abbott359da5e2009-12-04 23:03:29 +0100104#if ENABLE_ASH_BASH_COMPAT
105 "\0" "pipefail"
106#endif
Denis Vlasenkob012b102007-02-19 22:43:01 +0000107#if DEBUG
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000108 ,"\0" "nolog"
109 ,"\0" "debug"
Denis Vlasenkob012b102007-02-19 22:43:01 +0000110#endif
111};
112
Denys Vlasenko285ad152009-12-04 23:02:27 +0100113#define optletters(n) optletters_optnames[n][0]
114#define optnames(n) (optletters_optnames[n] + 1)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000115
Denis Vlasenko80b8b392007-06-25 10:55:35 +0000116enum { NOPTS = ARRAY_SIZE(optletters_optnames) };
Denis Vlasenkob012b102007-02-19 22:43:01 +0000117
Eric Andersenc470f442003-07-28 09:56:35 +0000118
Denis Vlasenkob012b102007-02-19 22:43:01 +0000119/* ============ Misc data */
Eric Andersenc470f442003-07-28 09:56:35 +0000120
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000121static const char homestr[] ALIGN1 = "HOME";
122static const char snlfmt[] ALIGN1 = "%s\n";
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200123static const char msg_illnum[] ALIGN1 = "Illegal number: %s";
Denis Vlasenkoaa744452007-02-23 01:04:22 +0000124
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +0000125/*
Eric Andersenc470f442003-07-28 09:56:35 +0000126 * We enclose jmp_buf in a structure so that we can declare pointers to
127 * jump locations. The global variable handler contains the location to
Denis Vlasenkof1733952009-03-19 23:21:55 +0000128 * jump to when an exception occurs, and the global variable exception_type
Eric Andersenaff114c2004-04-14 17:51:38 +0000129 * contains a code identifying the exception. To implement nested
Eric Andersenc470f442003-07-28 09:56:35 +0000130 * exception handlers, the user should save the value of handler on entry
131 * to an inner scope, set handler to point to a jmploc structure for the
132 * inner scope, and restore handler on exit from the scope.
133 */
Eric Andersenc470f442003-07-28 09:56:35 +0000134struct jmploc {
135 jmp_buf loc;
136};
Denis Vlasenko01631112007-12-16 17:20:38 +0000137
138struct globals_misc {
139 /* pid of main shell */
140 int rootpid;
141 /* shell level: 0 for the main shell, 1 for its children, and so on */
142 int shlvl;
143#define rootshell (!shlvl)
144 char *minusc; /* argument to -c option */
145
146 char *curdir; // = nullstr; /* current working directory */
147 char *physdir; // = nullstr; /* physical working directory */
148
149 char *arg0; /* value of $0 */
150
151 struct jmploc *exception_handler;
Denis Vlasenko991a1da2008-02-10 19:02:53 +0000152
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200153 volatile int suppress_int; /* counter */
154 volatile /*sig_atomic_t*/ smallint pending_int; /* 1 = got SIGINT */
Denis Vlasenko991a1da2008-02-10 19:02:53 +0000155 /* last pending signal */
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200156 volatile /*sig_atomic_t*/ smallint pending_sig;
Denis Vlasenko7f88e342009-03-19 03:36:18 +0000157 smallint exception_type; /* kind of exception (0..5) */
Denis Vlasenko01631112007-12-16 17:20:38 +0000158 /* exceptions */
Eric Andersenc470f442003-07-28 09:56:35 +0000159#define EXINT 0 /* SIGINT received */
160#define EXERROR 1 /* a generic error */
161#define EXSHELLPROC 2 /* execute a shell procedure */
162#define EXEXEC 3 /* command execution failed */
163#define EXEXIT 4 /* exit the shell */
164#define EXSIG 5 /* trapped signal in wait(1) */
Eric Andersen2870d962001-07-02 17:27:21 +0000165
Denis Vlasenko01631112007-12-16 17:20:38 +0000166 smallint isloginsh;
Denis Vlasenkob07a4962008-06-22 13:16:23 +0000167 char nullstr[1]; /* zero length string */
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000168
169 char optlist[NOPTS];
170#define eflag optlist[0]
171#define fflag optlist[1]
172#define Iflag optlist[2]
173#define iflag optlist[3]
174#define mflag optlist[4]
175#define nflag optlist[5]
176#define sflag optlist[6]
177#define xflag optlist[7]
178#define vflag optlist[8]
179#define Cflag optlist[9]
180#define aflag optlist[10]
181#define bflag optlist[11]
182#define uflag optlist[12]
183#define viflag optlist[13]
Michael Abbott359da5e2009-12-04 23:03:29 +0100184#if ENABLE_ASH_BASH_COMPAT
185# define pipefail optlist[14]
186#else
187# define pipefail 0
188#endif
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000189#if DEBUG
Michael Abbott359da5e2009-12-04 23:03:29 +0100190# define nolog optlist[14 + ENABLE_ASH_BASH_COMPAT]
191# define debug optlist[15 + ENABLE_ASH_BASH_COMPAT]
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000192#endif
193
194 /* trap handler commands */
Denis Vlasenko01631112007-12-16 17:20:38 +0000195 /*
196 * Sigmode records the current value of the signal handlers for the various
197 * modes. A value of zero means that the current handler is not known.
Denis Vlasenkof8535cc2008-12-03 10:36:26 +0000198 * S_HARD_IGN indicates that the signal was ignored on entry to the shell.
Denis Vlasenko01631112007-12-16 17:20:38 +0000199 */
200 char sigmode[NSIG - 1];
Denis Vlasenkof8535cc2008-12-03 10:36:26 +0000201#define S_DFL 1 /* default signal handling (SIG_DFL) */
202#define S_CATCH 2 /* signal is caught */
203#define S_IGN 3 /* signal is ignored (SIG_IGN) */
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +0000204#define S_HARD_IGN 4 /* signal is ignored permenantly */
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +0000205
Denis Vlasenko01631112007-12-16 17:20:38 +0000206 /* indicates specified signal received */
Denis Vlasenko4b875702009-03-19 13:30:04 +0000207 uint8_t gotsig[NSIG - 1]; /* offset by 1: "signal" 0 is meaningless */
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000208 char *trap[NSIG];
Denys Vlasenko21d87d42009-09-25 00:06:51 +0200209 char **trap_ptr; /* used only by "trap hack" */
Denis Vlasenko448d30e2008-06-27 00:24:11 +0000210
211 /* Rarely referenced stuff */
212#if ENABLE_ASH_RANDOM_SUPPORT
Denys Vlasenko3ea2e822009-10-09 20:59:04 +0200213 random_t random_gen;
Denis Vlasenko448d30e2008-06-27 00:24:11 +0000214#endif
215 pid_t backgndpid; /* pid of last background process */
216 smallint job_warning; /* user was warned about stopped jobs (can be 2, 1 or 0). */
Denis Vlasenko01631112007-12-16 17:20:38 +0000217};
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000218extern struct globals_misc *const ash_ptr_to_globals_misc;
219#define G_misc (*ash_ptr_to_globals_misc)
Denis Vlasenko26bc57d2008-06-27 00:29:34 +0000220#define rootpid (G_misc.rootpid )
221#define shlvl (G_misc.shlvl )
222#define minusc (G_misc.minusc )
223#define curdir (G_misc.curdir )
224#define physdir (G_misc.physdir )
225#define arg0 (G_misc.arg0 )
Denis Vlasenko01631112007-12-16 17:20:38 +0000226#define exception_handler (G_misc.exception_handler)
Denis Vlasenko7f88e342009-03-19 03:36:18 +0000227#define exception_type (G_misc.exception_type )
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200228#define suppress_int (G_misc.suppress_int )
229#define pending_int (G_misc.pending_int )
230#define pending_sig (G_misc.pending_sig )
Denis Vlasenko26bc57d2008-06-27 00:29:34 +0000231#define isloginsh (G_misc.isloginsh )
232#define nullstr (G_misc.nullstr )
233#define optlist (G_misc.optlist )
234#define sigmode (G_misc.sigmode )
235#define gotsig (G_misc.gotsig )
236#define trap (G_misc.trap )
Denys Vlasenko21d87d42009-09-25 00:06:51 +0200237#define trap_ptr (G_misc.trap_ptr )
Denys Vlasenko3ea2e822009-10-09 20:59:04 +0200238#define random_gen (G_misc.random_gen )
Denis Vlasenko448d30e2008-06-27 00:24:11 +0000239#define backgndpid (G_misc.backgndpid )
240#define job_warning (G_misc.job_warning)
Denis Vlasenko01631112007-12-16 17:20:38 +0000241#define INIT_G_misc() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000242 (*(struct globals_misc**)&ash_ptr_to_globals_misc) = xzalloc(sizeof(G_misc)); \
243 barrier(); \
Denis Vlasenko01631112007-12-16 17:20:38 +0000244 curdir = nullstr; \
245 physdir = nullstr; \
Denys Vlasenko21d87d42009-09-25 00:06:51 +0200246 trap_ptr = trap; \
Denis Vlasenko01631112007-12-16 17:20:38 +0000247} while (0)
248
249
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000250/* ============ DEBUG */
251#if DEBUG
252static void trace_printf(const char *fmt, ...);
253static void trace_vprintf(const char *fmt, va_list va);
254# define TRACE(param) trace_printf param
255# define TRACEV(param) trace_vprintf param
Denis Vlasenko1bb3d7e2009-03-20 07:45:36 +0000256# define close(fd) do { \
257 int dfd = (fd); \
Denis Vlasenkob9e70dd2009-03-20 01:24:08 +0000258 if (close(dfd) < 0) \
Denys Vlasenko883cea42009-07-11 15:31:59 +0200259 bb_error_msg("bug on %d: closing %d(0x%x)", \
Denis Vlasenko1bb3d7e2009-03-20 07:45:36 +0000260 __LINE__, dfd, dfd); \
Denis Vlasenkob9e70dd2009-03-20 01:24:08 +0000261} while (0)
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000262#else
263# define TRACE(param)
264# define TRACEV(param)
265#endif
266
267
Denis Vlasenko559691a2008-10-05 18:39:31 +0000268/* ============ Utility functions */
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000269#define xbarrier() do { __asm__ __volatile__ ("": : :"memory"); } while (0)
270
Denis Vlasenko559691a2008-10-05 18:39:31 +0000271static int isdigit_str9(const char *str)
272{
273 int maxlen = 9 + 1; /* max 9 digits: 999999999 */
274 while (--maxlen && isdigit(*str))
275 str++;
276 return (*str == '\0');
277}
Denis Vlasenko01631112007-12-16 17:20:38 +0000278
Denis Vlasenko559691a2008-10-05 18:39:31 +0000279
280/* ============ Interrupts / exceptions */
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +0000281/*
Eric Andersen2870d962001-07-02 17:27:21 +0000282 * These macros allow the user to suspend the handling of interrupt signals
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +0000283 * over a period of time. This is similar to SIGHOLD or to sigblock, but
Eric Andersen2870d962001-07-02 17:27:21 +0000284 * much more efficient and portable. (But hacking the kernel is so much
285 * more fun than worrying about efficiency and portability. :-))
286 */
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000287#define INT_OFF do { \
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200288 suppress_int++; \
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000289 xbarrier(); \
290} while (0)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000291
292/*
293 * Called to raise an exception. Since C doesn't include exceptions, we
294 * just do a longjmp to the exception handler. The type of exception is
Denis Vlasenko4b875702009-03-19 13:30:04 +0000295 * stored in the global variable "exception_type".
Denis Vlasenkob012b102007-02-19 22:43:01 +0000296 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000297static void raise_exception(int) NORETURN;
Denis Vlasenkob012b102007-02-19 22:43:01 +0000298static void
299raise_exception(int e)
300{
301#if DEBUG
Denis Vlasenko2da584f2007-02-19 22:44:05 +0000302 if (exception_handler == NULL)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000303 abort();
304#endif
305 INT_OFF;
Denis Vlasenko7f88e342009-03-19 03:36:18 +0000306 exception_type = e;
Denis Vlasenko2da584f2007-02-19 22:44:05 +0000307 longjmp(exception_handler->loc, 1);
Denis Vlasenkob012b102007-02-19 22:43:01 +0000308}
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000309#if DEBUG
310#define raise_exception(e) do { \
311 TRACE(("raising exception %d on line %d\n", (e), __LINE__)); \
312 raise_exception(e); \
313} while (0)
314#endif
Denis Vlasenkob012b102007-02-19 22:43:01 +0000315
316/*
317 * Called from trap.c when a SIGINT is received. (If the user specifies
318 * that SIGINT is to be trapped or ignored using the trap builtin, then
319 * this routine is not called.) Suppressint is nonzero when interrupts
320 * are held using the INT_OFF macro. (The test for iflag is just
321 * defensive programming.)
322 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000323static void raise_interrupt(void) NORETURN;
Denis Vlasenkob012b102007-02-19 22:43:01 +0000324static void
325raise_interrupt(void)
326{
Denis Vlasenko4b875702009-03-19 13:30:04 +0000327 int ex_type;
Denis Vlasenkob012b102007-02-19 22:43:01 +0000328
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200329 pending_int = 0;
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +0000330 /* Signal is not automatically unmasked after it is raised,
331 * do it ourself - unmask all signals */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000332 sigprocmask_allsigs(SIG_UNBLOCK);
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200333 /* pending_sig = 0; - now done in onsig() */
Denis Vlasenko7c139b42007-03-21 20:17:27 +0000334
Denis Vlasenko4b875702009-03-19 13:30:04 +0000335 ex_type = EXSIG;
Denis Vlasenkob012b102007-02-19 22:43:01 +0000336 if (gotsig[SIGINT - 1] && !trap[SIGINT]) {
337 if (!(rootshell && iflag)) {
Denis Vlasenko991a1da2008-02-10 19:02:53 +0000338 /* Kill ourself with SIGINT */
Denis Vlasenkob012b102007-02-19 22:43:01 +0000339 signal(SIGINT, SIG_DFL);
340 raise(SIGINT);
341 }
Denis Vlasenko4b875702009-03-19 13:30:04 +0000342 ex_type = EXINT;
Denis Vlasenkob012b102007-02-19 22:43:01 +0000343 }
Denis Vlasenko4b875702009-03-19 13:30:04 +0000344 raise_exception(ex_type);
Denis Vlasenkob012b102007-02-19 22:43:01 +0000345 /* NOTREACHED */
346}
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000347#if DEBUG
348#define raise_interrupt() do { \
349 TRACE(("raising interrupt on line %d\n", __LINE__)); \
350 raise_interrupt(); \
351} while (0)
352#endif
Denis Vlasenkob012b102007-02-19 22:43:01 +0000353
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000354static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000355int_on(void)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000356{
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +0000357 xbarrier();
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200358 if (--suppress_int == 0 && pending_int) {
Denis Vlasenkob012b102007-02-19 22:43:01 +0000359 raise_interrupt();
360 }
361}
362#define INT_ON int_on()
Denis Vlasenko5e34ff22009-04-21 11:09:40 +0000363static IF_ASH_OPTIMIZE_FOR_SIZE(inline) void
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000364force_int_on(void)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000365{
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +0000366 xbarrier();
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200367 suppress_int = 0;
368 if (pending_int)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000369 raise_interrupt();
370}
371#define FORCE_INT_ON force_int_on()
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000372
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200373#define SAVE_INT(v) ((v) = suppress_int)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000374
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000375#define RESTORE_INT(v) do { \
376 xbarrier(); \
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200377 suppress_int = (v); \
378 if (suppress_int == 0 && pending_int) \
Denis Vlasenko843cbd52008-06-27 00:23:18 +0000379 raise_interrupt(); \
380} while (0)
Denis Vlasenkob012b102007-02-19 22:43:01 +0000381
Glenn L McGrath9fef17d2002-08-22 18:41:20 +0000382
Denis Vlasenkobc54cff2007-02-23 01:05:52 +0000383/* ============ Stdout/stderr output */
Eric Andersenc470f442003-07-28 09:56:35 +0000384
Eric Andersenc470f442003-07-28 09:56:35 +0000385static void
Denis Vlasenkob012b102007-02-19 22:43:01 +0000386outstr(const char *p, FILE *file)
Denis Vlasenkoe5570da2007-02-19 22:41:55 +0000387{
Denis Vlasenkob012b102007-02-19 22:43:01 +0000388 INT_OFF;
389 fputs(p, file);
390 INT_ON;
391}
392
393static void
394flush_stdout_stderr(void)
395{
396 INT_OFF;
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100397 fflush_all();
Denis Vlasenkob012b102007-02-19 22:43:01 +0000398 INT_ON;
399}
400
401static void
402outcslow(int c, FILE *dest)
403{
404 INT_OFF;
405 putc(c, dest);
406 fflush(dest);
407 INT_ON;
408}
409
410static int out1fmt(const char *, ...) __attribute__((__format__(__printf__,1,2)));
411static int
412out1fmt(const char *fmt, ...)
413{
414 va_list ap;
415 int r;
416
417 INT_OFF;
418 va_start(ap, fmt);
419 r = vprintf(fmt, ap);
420 va_end(ap);
421 INT_ON;
422 return r;
423}
424
425static int fmtstr(char *, size_t, const char *, ...) __attribute__((__format__(__printf__,3,4)));
426static int
427fmtstr(char *outbuf, size_t length, const char *fmt, ...)
428{
429 va_list ap;
430 int ret;
431
432 va_start(ap, fmt);
433 INT_OFF;
434 ret = vsnprintf(outbuf, length, fmt, ap);
435 va_end(ap);
436 INT_ON;
437 return ret;
438}
439
440static void
441out1str(const char *p)
442{
443 outstr(p, stdout);
444}
445
446static void
447out2str(const char *p)
448{
449 outstr(p, stderr);
Denys Vlasenko8131eea2009-11-02 14:19:51 +0100450 flush_stdout_stderr();
Denis Vlasenkob012b102007-02-19 22:43:01 +0000451}
452
453
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +0000454/* ============ Parser structures */
Denis Vlasenko4d2183b2007-02-23 01:05:38 +0000455
Denis Vlasenko5651bfc2007-02-23 21:08:58 +0000456/* control characters in argument strings */
Denys Vlasenko2ce42e92009-11-29 02:18:13 +0100457#define CTL_FIRST CTLESC
Denys Vlasenkob6c84342009-08-29 20:23:20 +0200458#define CTLESC ((unsigned char)'\201') /* escape next character */
459#define CTLVAR ((unsigned char)'\202') /* variable defn */
460#define CTLENDVAR ((unsigned char)'\203')
461#define CTLBACKQ ((unsigned char)'\204')
Denis Vlasenko5651bfc2007-02-23 21:08:58 +0000462#define CTLQUOTE 01 /* ored with CTLBACKQ code if in quotes */
463/* CTLBACKQ | CTLQUOTE == '\205' */
Denys Vlasenkob6c84342009-08-29 20:23:20 +0200464#define CTLARI ((unsigned char)'\206') /* arithmetic expression */
465#define CTLENDARI ((unsigned char)'\207')
466#define CTLQUOTEMARK ((unsigned char)'\210')
Denys Vlasenko2ce42e92009-11-29 02:18:13 +0100467#define CTL_LAST CTLQUOTEMARK
Denis Vlasenko5651bfc2007-02-23 21:08:58 +0000468
469/* variable substitution byte (follows CTLVAR) */
470#define VSTYPE 0x0f /* type of variable substitution */
471#define VSNUL 0x10 /* colon--treat the empty string as unset */
472#define VSQUOTE 0x80 /* inside double quotes--suppress splitting */
473
474/* values of VSTYPE field */
Denis Vlasenko92e13c22008-03-25 01:17:40 +0000475#define VSNORMAL 0x1 /* normal variable: $var or ${var} */
476#define VSMINUS 0x2 /* ${var-text} */
477#define VSPLUS 0x3 /* ${var+text} */
478#define VSQUESTION 0x4 /* ${var?message} */
479#define VSASSIGN 0x5 /* ${var=text} */
480#define VSTRIMRIGHT 0x6 /* ${var%pattern} */
481#define VSTRIMRIGHTMAX 0x7 /* ${var%%pattern} */
482#define VSTRIMLEFT 0x8 /* ${var#pattern} */
483#define VSTRIMLEFTMAX 0x9 /* ${var##pattern} */
484#define VSLENGTH 0xa /* ${#var} */
485#if ENABLE_ASH_BASH_COMPAT
486#define VSSUBSTR 0xc /* ${var:position:length} */
487#define VSREPLACE 0xd /* ${var/pattern/replacement} */
488#define VSREPLACEALL 0xe /* ${var//pattern/replacement} */
489#endif
Denis Vlasenko5651bfc2007-02-23 21:08:58 +0000490
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000491static const char dolatstr[] ALIGN1 = {
492 CTLVAR, VSNORMAL|VSQUOTE, '@', '=', '\0'
493};
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +0000494
Denis Vlasenko559691a2008-10-05 18:39:31 +0000495#define NCMD 0
496#define NPIPE 1
497#define NREDIR 2
498#define NBACKGND 3
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000499#define NSUBSHELL 4
Denis Vlasenko559691a2008-10-05 18:39:31 +0000500#define NAND 5
501#define NOR 6
502#define NSEMI 7
503#define NIF 8
504#define NWHILE 9
505#define NUNTIL 10
506#define NFOR 11
507#define NCASE 12
508#define NCLIST 13
509#define NDEFUN 14
510#define NARG 15
511#define NTO 16
512#if ENABLE_ASH_BASH_COMPAT
513#define NTO2 17
514#endif
515#define NCLOBBER 18
516#define NFROM 19
517#define NFROMTO 20
518#define NAPPEND 21
519#define NTOFD 22
520#define NFROMFD 23
521#define NHERE 24
522#define NXHERE 25
523#define NNOT 26
Denis Vlasenko340299a2008-11-21 10:36:36 +0000524#define N_NUMBER 27
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000525
526union node;
527
528struct ncmd {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000529 smallint type; /* Nxxxx */
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000530 union node *assign;
531 union node *args;
532 union node *redirect;
533};
534
535struct npipe {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000536 smallint type;
537 smallint pipe_backgnd;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000538 struct nodelist *cmdlist;
539};
540
541struct nredir {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000542 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000543 union node *n;
544 union node *redirect;
545};
546
547struct nbinary {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000548 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000549 union node *ch1;
550 union node *ch2;
551};
552
553struct nif {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000554 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000555 union node *test;
556 union node *ifpart;
557 union node *elsepart;
558};
559
560struct nfor {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000561 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000562 union node *args;
563 union node *body;
564 char *var;
565};
566
567struct ncase {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000568 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000569 union node *expr;
570 union node *cases;
571};
572
573struct nclist {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000574 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000575 union node *next;
576 union node *pattern;
577 union node *body;
578};
579
580struct narg {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000581 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000582 union node *next;
583 char *text;
584 struct nodelist *backquote;
585};
586
Denis Vlasenko559691a2008-10-05 18:39:31 +0000587/* nfile and ndup layout must match!
588 * NTOFD (>&fdnum) uses ndup structure, but we may discover mid-flight
589 * that it is actually NTO2 (>&file), and change its type.
590 */
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000591struct nfile {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000592 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000593 union node *next;
594 int fd;
Denis Vlasenko559691a2008-10-05 18:39:31 +0000595 int _unused_dupfd;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000596 union node *fname;
597 char *expfname;
598};
599
600struct ndup {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000601 smallint type;
Denis Vlasenko559691a2008-10-05 18:39:31 +0000602 union node *next;
603 int fd;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000604 int dupfd;
605 union node *vname;
Denis Vlasenko559691a2008-10-05 18:39:31 +0000606 char *_unused_expfname;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000607};
608
609struct nhere {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000610 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000611 union node *next;
612 int fd;
613 union node *doc;
614};
615
616struct nnot {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000617 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000618 union node *com;
619};
620
621union node {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000622 smallint type;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000623 struct ncmd ncmd;
624 struct npipe npipe;
625 struct nredir nredir;
626 struct nbinary nbinary;
627 struct nif nif;
628 struct nfor nfor;
629 struct ncase ncase;
630 struct nclist nclist;
631 struct narg narg;
632 struct nfile nfile;
633 struct ndup ndup;
634 struct nhere nhere;
635 struct nnot nnot;
636};
637
Denys Vlasenko86e83ec2009-07-23 22:07:07 +0200638/*
639 * NODE_EOF is returned by parsecmd when it encounters an end of file.
640 * It must be distinct from NULL.
641 */
642#define NODE_EOF ((union node *) -1L)
643
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000644struct nodelist {
645 struct nodelist *next;
646 union node *n;
647};
648
649struct funcnode {
650 int count;
651 union node n;
652};
653
Denis Vlasenko5651bfc2007-02-23 21:08:58 +0000654/*
655 * Free a parse tree.
656 */
657static void
658freefunc(struct funcnode *f)
659{
660 if (f && --f->count < 0)
661 free(f);
662}
663
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000664
665/* ============ Debugging output */
666
667#if DEBUG
668
669static FILE *tracefile;
670
671static void
672trace_printf(const char *fmt, ...)
673{
674 va_list va;
675
676 if (debug != 1)
677 return;
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000678 if (DEBUG_TIME)
679 fprintf(tracefile, "%u ", (int) time(NULL));
680 if (DEBUG_PID)
681 fprintf(tracefile, "[%u] ", (int) getpid());
682 if (DEBUG_SIG)
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200683 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000684 va_start(va, fmt);
685 vfprintf(tracefile, fmt, va);
686 va_end(va);
687}
688
689static void
690trace_vprintf(const char *fmt, va_list va)
691{
692 if (debug != 1)
693 return;
Denis Vlasenko653d8e72009-03-19 21:59:35 +0000694 if (DEBUG_TIME)
695 fprintf(tracefile, "%u ", (int) time(NULL));
696 if (DEBUG_PID)
697 fprintf(tracefile, "[%u] ", (int) getpid());
698 if (DEBUG_SIG)
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +0200699 fprintf(tracefile, "pending s:%d i:%d(supp:%d) ", pending_sig, pending_int, suppress_int);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000700 vfprintf(tracefile, fmt, va);
701}
702
703static void
704trace_puts(const char *s)
705{
706 if (debug != 1)
707 return;
708 fputs(s, tracefile);
709}
710
711static void
712trace_puts_quoted(char *s)
713{
714 char *p;
715 char c;
716
717 if (debug != 1)
718 return;
719 putc('"', tracefile);
720 for (p = s; *p; p++) {
Denys Vlasenkocd716832009-11-28 22:14:02 +0100721 switch ((unsigned char)*p) {
722 case '\n': c = 'n'; goto backslash;
723 case '\t': c = 't'; goto backslash;
724 case '\r': c = 'r'; goto backslash;
725 case '\"': c = '\"'; goto backslash;
726 case '\\': c = '\\'; goto backslash;
727 case CTLESC: c = 'e'; goto backslash;
728 case CTLVAR: c = 'v'; goto backslash;
729 case CTLVAR+CTLQUOTE: c = 'V'; goto backslash;
730 case CTLBACKQ: c = 'q'; goto backslash;
731 case CTLBACKQ+CTLQUOTE: c = 'Q'; goto backslash;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000732 backslash:
733 putc('\\', tracefile);
734 putc(c, tracefile);
735 break;
736 default:
737 if (*p >= ' ' && *p <= '~')
738 putc(*p, tracefile);
739 else {
740 putc('\\', tracefile);
Denys Vlasenkocd716832009-11-28 22:14:02 +0100741 putc((*p >> 6) & 03, tracefile);
742 putc((*p >> 3) & 07, tracefile);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000743 putc(*p & 07, tracefile);
744 }
745 break;
746 }
747 }
748 putc('"', tracefile);
749}
750
751static void
752trace_puts_args(char **ap)
753{
754 if (debug != 1)
755 return;
756 if (!*ap)
757 return;
758 while (1) {
759 trace_puts_quoted(*ap);
760 if (!*++ap) {
761 putc('\n', tracefile);
762 break;
763 }
764 putc(' ', tracefile);
765 }
766}
767
768static void
769opentrace(void)
770{
771 char s[100];
772#ifdef O_APPEND
773 int flags;
774#endif
775
776 if (debug != 1) {
777 if (tracefile)
778 fflush(tracefile);
779 /* leave open because libedit might be using it */
780 return;
781 }
782 strcpy(s, "./trace");
783 if (tracefile) {
784 if (!freopen(s, "a", tracefile)) {
785 fprintf(stderr, "Can't re-open %s\n", s);
786 debug = 0;
787 return;
788 }
789 } else {
790 tracefile = fopen(s, "a");
791 if (tracefile == NULL) {
792 fprintf(stderr, "Can't open %s\n", s);
793 debug = 0;
794 return;
795 }
796 }
797#ifdef O_APPEND
Denis Vlasenkod37f2222007-08-19 13:42:08 +0000798 flags = fcntl(fileno(tracefile), F_GETFL);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000799 if (flags >= 0)
800 fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND);
801#endif
802 setlinebuf(tracefile);
803 fputs("\nTracing started.\n", tracefile);
804}
805
806static void
807indent(int amount, char *pfx, FILE *fp)
808{
809 int i;
810
811 for (i = 0; i < amount; i++) {
812 if (pfx && i == amount - 1)
813 fputs(pfx, fp);
814 putc('\t', fp);
815 }
816}
817
818/* little circular references here... */
819static void shtree(union node *n, int ind, char *pfx, FILE *fp);
820
821static void
822sharg(union node *arg, FILE *fp)
823{
824 char *p;
825 struct nodelist *bqlist;
Denys Vlasenkocd716832009-11-28 22:14:02 +0100826 unsigned char subtype;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000827
828 if (arg->type != NARG) {
829 out1fmt("<node type %d>\n", arg->type);
830 abort();
831 }
832 bqlist = arg->narg.backquote;
833 for (p = arg->narg.text; *p; p++) {
Denys Vlasenkocd716832009-11-28 22:14:02 +0100834 switch ((unsigned char)*p) {
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000835 case CTLESC:
836 putc(*++p, fp);
837 break;
838 case CTLVAR:
839 putc('$', fp);
840 putc('{', fp);
841 subtype = *++p;
842 if (subtype == VSLENGTH)
843 putc('#', fp);
844
845 while (*p != '=')
846 putc(*p++, fp);
847
848 if (subtype & VSNUL)
849 putc(':', fp);
850
851 switch (subtype & VSTYPE) {
852 case VSNORMAL:
853 putc('}', fp);
854 break;
855 case VSMINUS:
856 putc('-', fp);
857 break;
858 case VSPLUS:
859 putc('+', fp);
860 break;
861 case VSQUESTION:
862 putc('?', fp);
863 break;
864 case VSASSIGN:
865 putc('=', fp);
866 break;
867 case VSTRIMLEFT:
868 putc('#', fp);
869 break;
870 case VSTRIMLEFTMAX:
871 putc('#', fp);
872 putc('#', fp);
873 break;
874 case VSTRIMRIGHT:
875 putc('%', fp);
876 break;
877 case VSTRIMRIGHTMAX:
878 putc('%', fp);
879 putc('%', fp);
880 break;
881 case VSLENGTH:
882 break;
883 default:
884 out1fmt("<subtype %d>", subtype);
885 }
886 break;
887 case CTLENDVAR:
888 putc('}', fp);
889 break;
890 case CTLBACKQ:
891 case CTLBACKQ|CTLQUOTE:
892 putc('$', fp);
893 putc('(', fp);
894 shtree(bqlist->n, -1, NULL, fp);
895 putc(')', fp);
896 break;
897 default:
898 putc(*p, fp);
899 break;
900 }
901 }
902}
903
Denys Vlasenko641dd7b2009-06-11 19:30:19 +0200904static void
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000905shcmd(union node *cmd, FILE *fp)
906{
907 union node *np;
908 int first;
909 const char *s;
910 int dftfd;
911
912 first = 1;
913 for (np = cmd->ncmd.args; np; np = np->narg.next) {
Denis Vlasenko40ba9982007-07-14 00:48:29 +0000914 if (!first)
915 putc(' ', fp);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000916 sharg(np, fp);
917 first = 0;
918 }
919 for (np = cmd->ncmd.redirect; np; np = np->nfile.next) {
Denis Vlasenko40ba9982007-07-14 00:48:29 +0000920 if (!first)
921 putc(' ', fp);
922 dftfd = 0;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000923 switch (np->nfile.type) {
Denis Vlasenko40ba9982007-07-14 00:48:29 +0000924 case NTO: s = ">>"+1; dftfd = 1; break;
925 case NCLOBBER: s = ">|"; dftfd = 1; break;
926 case NAPPEND: s = ">>"; dftfd = 1; break;
Denis Vlasenko559691a2008-10-05 18:39:31 +0000927#if ENABLE_ASH_BASH_COMPAT
928 case NTO2:
929#endif
Denis Vlasenko40ba9982007-07-14 00:48:29 +0000930 case NTOFD: s = ">&"; dftfd = 1; break;
Denis Vlasenko559691a2008-10-05 18:39:31 +0000931 case NFROM: s = "<"; break;
Denis Vlasenko40ba9982007-07-14 00:48:29 +0000932 case NFROMFD: s = "<&"; break;
933 case NFROMTO: s = "<>"; break;
934 default: s = "*error*"; break;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000935 }
936 if (np->nfile.fd != dftfd)
937 fprintf(fp, "%d", np->nfile.fd);
938 fputs(s, fp);
939 if (np->nfile.type == NTOFD || np->nfile.type == NFROMFD) {
940 fprintf(fp, "%d", np->ndup.dupfd);
941 } else {
942 sharg(np->nfile.fname, fp);
943 }
944 first = 0;
945 }
946}
947
948static void
949shtree(union node *n, int ind, char *pfx, FILE *fp)
950{
951 struct nodelist *lp;
952 const char *s;
953
954 if (n == NULL)
955 return;
956
957 indent(ind, pfx, fp);
Denys Vlasenko86e83ec2009-07-23 22:07:07 +0200958
959 if (n == NODE_EOF) {
960 fputs("<EOF>", fp);
961 return;
962 }
963
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000964 switch (n->type) {
965 case NSEMI:
966 s = "; ";
967 goto binop;
968 case NAND:
969 s = " && ";
970 goto binop;
971 case NOR:
972 s = " || ";
973 binop:
974 shtree(n->nbinary.ch1, ind, NULL, fp);
975 /* if (ind < 0) */
976 fputs(s, fp);
977 shtree(n->nbinary.ch2, ind, NULL, fp);
978 break;
979 case NCMD:
980 shcmd(n, fp);
981 if (ind >= 0)
982 putc('\n', fp);
983 break;
984 case NPIPE:
985 for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
Denys Vlasenko7cee00e2009-07-24 01:08:03 +0200986 shtree(lp->n, 0, NULL, fp);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000987 if (lp->next)
988 fputs(" | ", fp);
989 }
Denis Vlasenko2dc240c2008-07-24 06:07:50 +0000990 if (n->npipe.pipe_backgnd)
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +0000991 fputs(" &", fp);
992 if (ind >= 0)
993 putc('\n', fp);
994 break;
995 default:
996 fprintf(fp, "<node type %d>", n->type);
997 if (ind >= 0)
998 putc('\n', fp);
999 break;
1000 }
1001}
1002
1003static void
1004showtree(union node *n)
1005{
1006 trace_puts("showtree called\n");
Denys Vlasenko883cea42009-07-11 15:31:59 +02001007 shtree(n, 1, NULL, stderr);
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00001008}
1009
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00001010#endif /* DEBUG */
1011
1012
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00001013/* ============ Parser data */
1014
1015/*
Denis Vlasenkob012b102007-02-19 22:43:01 +00001016 * ash_vmsg() needs parsefile->fd, hence parsefile definition is moved up.
1017 */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001018struct strlist {
1019 struct strlist *next;
1020 char *text;
1021};
1022
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00001023struct alias;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00001024
Denis Vlasenkob012b102007-02-19 22:43:01 +00001025struct strpush {
1026 struct strpush *prev; /* preceding string on stack */
Denis Vlasenko41eb3002008-11-28 03:42:31 +00001027 char *prev_string;
1028 int prev_left_in_line;
Denis Vlasenkob012b102007-02-19 22:43:01 +00001029#if ENABLE_ASH_ALIAS
1030 struct alias *ap; /* if push was associated with an alias */
1031#endif
1032 char *string; /* remember the string since it may change */
1033};
1034
1035struct parsefile {
1036 struct parsefile *prev; /* preceding file on stack */
1037 int linno; /* current line */
1038 int fd; /* file descriptor (or -1 if string) */
Denis Vlasenko41eb3002008-11-28 03:42:31 +00001039 int left_in_line; /* number of chars left in this line */
1040 int left_in_buffer; /* number of chars left in this buffer past the line */
1041 char *next_to_pgetc; /* next char in buffer */
Denis Vlasenkob012b102007-02-19 22:43:01 +00001042 char *buf; /* input buffer */
1043 struct strpush *strpush; /* for pushing strings at this level */
1044 struct strpush basestrpush; /* so pushing one is fast */
1045};
1046
Denis Vlasenko448d30e2008-06-27 00:24:11 +00001047static struct parsefile basepf; /* top level input file */
Denis Vlasenkob07a4962008-06-22 13:16:23 +00001048static struct parsefile *g_parsefile = &basepf; /* current input file */
Denis Vlasenkob012b102007-02-19 22:43:01 +00001049static int startlinno; /* line # where last token started */
1050static char *commandname; /* currently executing command */
1051static struct strlist *cmdenviron; /* environment for builtin command */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00001052static uint8_t exitstatus; /* exit status of last command */
Denis Vlasenkob012b102007-02-19 22:43:01 +00001053
1054
1055/* ============ Message printing */
1056
1057static void
1058ash_vmsg(const char *msg, va_list ap)
1059{
1060 fprintf(stderr, "%s: ", arg0);
1061 if (commandname) {
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00001062 if (strcmp(arg0, commandname))
1063 fprintf(stderr, "%s: ", commandname);
Denis Vlasenkob07a4962008-06-22 13:16:23 +00001064 if (!iflag || g_parsefile->fd)
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00001065 fprintf(stderr, "line %d: ", startlinno);
Eric Andersenc470f442003-07-28 09:56:35 +00001066 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00001067 vfprintf(stderr, msg, ap);
1068 outcslow('\n', stderr);
Eric Andersenc470f442003-07-28 09:56:35 +00001069}
Denis Vlasenkob012b102007-02-19 22:43:01 +00001070
1071/*
1072 * Exverror is called to raise the error exception. If the second argument
1073 * is not NULL then error prints an error message using printf style
1074 * formatting. It then raises the error exception.
1075 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001076static void ash_vmsg_and_raise(int, const char *, va_list) NORETURN;
Denis Vlasenkob012b102007-02-19 22:43:01 +00001077static void
1078ash_vmsg_and_raise(int cond, const char *msg, va_list ap)
Eric Andersenc470f442003-07-28 09:56:35 +00001079{
Denis Vlasenkob012b102007-02-19 22:43:01 +00001080#if DEBUG
1081 if (msg) {
1082 TRACE(("ash_vmsg_and_raise(%d, \"", cond));
1083 TRACEV((msg, ap));
1084 TRACE(("\") pid=%d\n", getpid()));
1085 } else
1086 TRACE(("ash_vmsg_and_raise(%d, NULL) pid=%d\n", cond, getpid()));
1087 if (msg)
1088#endif
1089 ash_vmsg(msg, ap);
1090
1091 flush_stdout_stderr();
1092 raise_exception(cond);
1093 /* NOTREACHED */
Eric Andersenc470f442003-07-28 09:56:35 +00001094}
Denis Vlasenkob012b102007-02-19 22:43:01 +00001095
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001096static void ash_msg_and_raise_error(const char *, ...) NORETURN;
Denis Vlasenkob012b102007-02-19 22:43:01 +00001097static void
1098ash_msg_and_raise_error(const char *msg, ...)
1099{
1100 va_list ap;
1101
1102 va_start(ap, msg);
1103 ash_vmsg_and_raise(EXERROR, msg, ap);
1104 /* NOTREACHED */
1105 va_end(ap);
1106}
1107
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001108static void raise_error_syntax(const char *) NORETURN;
1109static void
1110raise_error_syntax(const char *msg)
1111{
1112 ash_msg_and_raise_error("syntax error: %s", msg);
1113 /* NOTREACHED */
1114}
1115
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001116static void ash_msg_and_raise(int, const char *, ...) NORETURN;
Denis Vlasenkob012b102007-02-19 22:43:01 +00001117static void
1118ash_msg_and_raise(int cond, const char *msg, ...)
1119{
1120 va_list ap;
1121
1122 va_start(ap, msg);
1123 ash_vmsg_and_raise(cond, msg, ap);
1124 /* NOTREACHED */
1125 va_end(ap);
1126}
1127
1128/*
1129 * error/warning routines for external builtins
1130 */
1131static void
1132ash_msg(const char *fmt, ...)
1133{
1134 va_list ap;
1135
1136 va_start(ap, fmt);
1137 ash_vmsg(fmt, ap);
1138 va_end(ap);
1139}
1140
1141/*
1142 * Return a string describing an error. The returned string may be a
1143 * pointer to a static buffer that will be overwritten on the next call.
1144 * Action describes the operation that got the error.
1145 */
1146static const char *
1147errmsg(int e, const char *em)
1148{
1149 if (e == ENOENT || e == ENOTDIR) {
1150 return em;
1151 }
1152 return strerror(e);
1153}
1154
1155
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001156/* ============ Memory allocation */
1157
Denys Vlasenkoe7670ff2009-10-11 00:45:25 +02001158#if 0
1159/* I consider these wrappers nearly useless:
1160 * ok, they return you to nearest exception handler, but
1161 * how much memory do you leak in the process, making
1162 * memory starvation worse?
1163 */
1164static void *
1165ckrealloc(void * p, size_t nbytes)
1166{
1167 p = realloc(p, nbytes);
1168 if (!p)
1169 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1170 return p;
1171}
1172
1173static void *
1174ckmalloc(size_t nbytes)
1175{
1176 return ckrealloc(NULL, nbytes);
1177}
1178
1179static void *
1180ckzalloc(size_t nbytes)
1181{
1182 return memset(ckmalloc(nbytes), 0, nbytes);
1183}
1184
1185static char *
1186ckstrdup(const char *s)
1187{
1188 char *p = strdup(s);
1189 if (!p)
1190 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1191 return p;
1192}
1193#else
1194/* Using bbox equivalents. They exit if out of memory */
1195# define ckrealloc xrealloc
1196# define ckmalloc xmalloc
1197# define ckzalloc xzalloc
1198# define ckstrdup xstrdup
1199#endif
1200
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001201/*
1202 * It appears that grabstackstr() will barf with such alignments
1203 * because stalloc() will return a string allocated in a new stackblock.
1204 */
1205#define SHELL_ALIGN(nbytes) (((nbytes) + SHELL_SIZE) & ~SHELL_SIZE)
1206enum {
1207 /* Most machines require the value returned from malloc to be aligned
1208 * in some way. The following macro will get this right
1209 * on many machines. */
Denys Vlasenko0e5e4ea2009-10-11 00:36:20 +02001210 SHELL_SIZE = sizeof(union { int i; char *cp; double d; }) - 1,
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001211 /* Minimum size of a block */
Denis Vlasenko01631112007-12-16 17:20:38 +00001212 MINSIZE = SHELL_ALIGN(504),
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001213};
1214
1215struct stack_block {
1216 struct stack_block *prev;
1217 char space[MINSIZE];
1218};
1219
1220struct stackmark {
1221 struct stack_block *stackp;
1222 char *stacknxt;
1223 size_t stacknleft;
1224 struct stackmark *marknext;
1225};
1226
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001227
Denis Vlasenko01631112007-12-16 17:20:38 +00001228struct globals_memstack {
1229 struct stack_block *g_stackp; // = &stackbase;
1230 struct stackmark *markp;
1231 char *g_stacknxt; // = stackbase.space;
1232 char *sstrend; // = stackbase.space + MINSIZE;
1233 size_t g_stacknleft; // = MINSIZE;
1234 int herefd; // = -1;
1235 struct stack_block stackbase;
1236};
Denis Vlasenko574f2f42008-02-27 18:41:59 +00001237extern struct globals_memstack *const ash_ptr_to_globals_memstack;
1238#define G_memstack (*ash_ptr_to_globals_memstack)
Denis Vlasenko01631112007-12-16 17:20:38 +00001239#define g_stackp (G_memstack.g_stackp )
1240#define markp (G_memstack.markp )
1241#define g_stacknxt (G_memstack.g_stacknxt )
1242#define sstrend (G_memstack.sstrend )
1243#define g_stacknleft (G_memstack.g_stacknleft)
1244#define herefd (G_memstack.herefd )
1245#define stackbase (G_memstack.stackbase )
1246#define INIT_G_memstack() do { \
Denis Vlasenko574f2f42008-02-27 18:41:59 +00001247 (*(struct globals_memstack**)&ash_ptr_to_globals_memstack) = xzalloc(sizeof(G_memstack)); \
1248 barrier(); \
Denis Vlasenko01631112007-12-16 17:20:38 +00001249 g_stackp = &stackbase; \
1250 g_stacknxt = stackbase.space; \
1251 g_stacknleft = MINSIZE; \
1252 sstrend = stackbase.space + MINSIZE; \
1253 herefd = -1; \
1254} while (0)
1255
Denys Vlasenkoe7670ff2009-10-11 00:45:25 +02001256
Denis Vlasenko01631112007-12-16 17:20:38 +00001257#define stackblock() ((void *)g_stacknxt)
1258#define stackblocksize() g_stacknleft
1259
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001260/*
1261 * Parse trees for commands are allocated in lifo order, so we use a stack
1262 * to make this more efficient, and also to avoid all sorts of exception
1263 * handling code to handle interrupts in the middle of a parse.
1264 *
1265 * The size 504 was chosen because the Ultrix malloc handles that size
1266 * well.
1267 */
1268static void *
1269stalloc(size_t nbytes)
1270{
1271 char *p;
1272 size_t aligned;
1273
1274 aligned = SHELL_ALIGN(nbytes);
Denis Vlasenko01631112007-12-16 17:20:38 +00001275 if (aligned > g_stacknleft) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001276 size_t len;
1277 size_t blocksize;
1278 struct stack_block *sp;
1279
1280 blocksize = aligned;
1281 if (blocksize < MINSIZE)
1282 blocksize = MINSIZE;
1283 len = sizeof(struct stack_block) - MINSIZE + blocksize;
1284 if (len < blocksize)
1285 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1286 INT_OFF;
1287 sp = ckmalloc(len);
Denis Vlasenko01631112007-12-16 17:20:38 +00001288 sp->prev = g_stackp;
1289 g_stacknxt = sp->space;
1290 g_stacknleft = blocksize;
1291 sstrend = g_stacknxt + blocksize;
1292 g_stackp = sp;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001293 INT_ON;
1294 }
Denis Vlasenko01631112007-12-16 17:20:38 +00001295 p = g_stacknxt;
1296 g_stacknxt += aligned;
1297 g_stacknleft -= aligned;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001298 return p;
1299}
1300
Denis Vlasenko597906c2008-02-20 16:38:54 +00001301static void *
1302stzalloc(size_t nbytes)
1303{
1304 return memset(stalloc(nbytes), 0, nbytes);
1305}
1306
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001307static void
1308stunalloc(void *p)
1309{
1310#if DEBUG
Denis Vlasenko01631112007-12-16 17:20:38 +00001311 if (!p || (g_stacknxt < (char *)p) || ((char *)p < g_stackp->space)) {
Bernhard Reutner-Fischer5e25ddb2008-05-19 09:48:17 +00001312 write(STDERR_FILENO, "stunalloc\n", 10);
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001313 abort();
1314 }
1315#endif
Denis Vlasenko01631112007-12-16 17:20:38 +00001316 g_stacknleft += g_stacknxt - (char *)p;
1317 g_stacknxt = p;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001318}
1319
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001320/*
1321 * Like strdup but works with the ash stack.
1322 */
1323static char *
1324ststrdup(const char *p)
1325{
1326 size_t len = strlen(p) + 1;
1327 return memcpy(stalloc(len), p, len);
1328}
1329
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001330static void
1331setstackmark(struct stackmark *mark)
1332{
Denis Vlasenko01631112007-12-16 17:20:38 +00001333 mark->stackp = g_stackp;
1334 mark->stacknxt = g_stacknxt;
1335 mark->stacknleft = g_stacknleft;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001336 mark->marknext = markp;
1337 markp = mark;
1338}
1339
1340static void
1341popstackmark(struct stackmark *mark)
1342{
1343 struct stack_block *sp;
1344
Denis Vlasenko93ebd4f2007-03-13 20:55:36 +00001345 if (!mark->stackp)
1346 return;
1347
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001348 INT_OFF;
1349 markp = mark->marknext;
Denis Vlasenko01631112007-12-16 17:20:38 +00001350 while (g_stackp != mark->stackp) {
1351 sp = g_stackp;
1352 g_stackp = sp->prev;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001353 free(sp);
1354 }
Denis Vlasenko01631112007-12-16 17:20:38 +00001355 g_stacknxt = mark->stacknxt;
1356 g_stacknleft = mark->stacknleft;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001357 sstrend = mark->stacknxt + mark->stacknleft;
1358 INT_ON;
1359}
1360
1361/*
1362 * When the parser reads in a string, it wants to stick the string on the
1363 * stack and only adjust the stack pointer when it knows how big the
1364 * string is. Stackblock (defined in stack.h) returns a pointer to a block
1365 * of space on top of the stack and stackblocklen returns the length of
1366 * this block. Growstackblock will grow this space by at least one byte,
1367 * possibly moving it (like realloc). Grabstackblock actually allocates the
1368 * part of the block that has been used.
1369 */
1370static void
1371growstackblock(void)
1372{
1373 size_t newlen;
1374
Denis Vlasenko01631112007-12-16 17:20:38 +00001375 newlen = g_stacknleft * 2;
1376 if (newlen < g_stacknleft)
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001377 ash_msg_and_raise_error(bb_msg_memory_exhausted);
1378 if (newlen < 128)
1379 newlen += 128;
1380
Denis Vlasenko01631112007-12-16 17:20:38 +00001381 if (g_stacknxt == g_stackp->space && g_stackp != &stackbase) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001382 struct stack_block *oldstackp;
1383 struct stackmark *xmark;
1384 struct stack_block *sp;
1385 struct stack_block *prevstackp;
1386 size_t grosslen;
1387
1388 INT_OFF;
Denis Vlasenko01631112007-12-16 17:20:38 +00001389 oldstackp = g_stackp;
1390 sp = g_stackp;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001391 prevstackp = sp->prev;
1392 grosslen = newlen + sizeof(struct stack_block) - MINSIZE;
1393 sp = ckrealloc(sp, grosslen);
1394 sp->prev = prevstackp;
Denis Vlasenko01631112007-12-16 17:20:38 +00001395 g_stackp = sp;
1396 g_stacknxt = sp->space;
1397 g_stacknleft = newlen;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001398 sstrend = sp->space + newlen;
1399
1400 /*
1401 * Stack marks pointing to the start of the old block
1402 * must be relocated to point to the new block
1403 */
1404 xmark = markp;
1405 while (xmark != NULL && xmark->stackp == oldstackp) {
Denis Vlasenko01631112007-12-16 17:20:38 +00001406 xmark->stackp = g_stackp;
1407 xmark->stacknxt = g_stacknxt;
1408 xmark->stacknleft = g_stacknleft;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001409 xmark = xmark->marknext;
1410 }
1411 INT_ON;
1412 } else {
Denis Vlasenko01631112007-12-16 17:20:38 +00001413 char *oldspace = g_stacknxt;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00001414 size_t oldlen = g_stacknleft;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001415 char *p = stalloc(newlen);
1416
1417 /* free the space we just allocated */
Denis Vlasenko01631112007-12-16 17:20:38 +00001418 g_stacknxt = memcpy(p, oldspace, oldlen);
1419 g_stacknleft += newlen;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001420 }
1421}
1422
1423static void
1424grabstackblock(size_t len)
1425{
1426 len = SHELL_ALIGN(len);
Denis Vlasenko01631112007-12-16 17:20:38 +00001427 g_stacknxt += len;
1428 g_stacknleft -= len;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001429}
1430
1431/*
1432 * The following routines are somewhat easier to use than the above.
1433 * The user declares a variable of type STACKSTR, which may be declared
1434 * to be a register. The macro STARTSTACKSTR initializes things. Then
1435 * the user uses the macro STPUTC to add characters to the string. In
1436 * effect, STPUTC(c, p) is the same as *p++ = c except that the stack is
1437 * grown as necessary. When the user is done, she can just leave the
1438 * string there and refer to it using stackblock(). Or she can allocate
1439 * the space for it using grabstackstr(). If it is necessary to allow
1440 * someone else to use the stack temporarily and then continue to grow
1441 * the string, the user should use grabstack to allocate the space, and
1442 * then call ungrabstr(p) to return to the previous mode of operation.
1443 *
1444 * USTPUTC is like STPUTC except that it doesn't check for overflow.
1445 * CHECKSTACKSPACE can be called before USTPUTC to ensure that there
1446 * is space for at least one character.
1447 */
1448static void *
1449growstackstr(void)
1450{
1451 size_t len = stackblocksize();
1452 if (herefd >= 0 && len >= 1024) {
1453 full_write(herefd, stackblock(), len);
1454 return stackblock();
1455 }
1456 growstackblock();
Denis Vlasenko29eb3592008-05-18 14:06:08 +00001457 return (char *)stackblock() + len;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001458}
1459
1460/*
1461 * Called from CHECKSTRSPACE.
1462 */
1463static char *
1464makestrspace(size_t newlen, char *p)
1465{
Denis Vlasenko01631112007-12-16 17:20:38 +00001466 size_t len = p - g_stacknxt;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001467 size_t size = stackblocksize();
1468
1469 for (;;) {
1470 size_t nleft;
1471
1472 size = stackblocksize();
1473 nleft = size - len;
1474 if (nleft >= newlen)
1475 break;
1476 growstackblock();
1477 }
Denis Vlasenko29eb3592008-05-18 14:06:08 +00001478 return (char *)stackblock() + len;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001479}
1480
1481static char *
1482stack_nputstr(const char *s, size_t n, char *p)
1483{
1484 p = makestrspace(n, p);
Denis Vlasenko29eb3592008-05-18 14:06:08 +00001485 p = (char *)memcpy(p, s, n) + n;
Denis Vlasenko0c032a42007-02-23 01:03:40 +00001486 return p;
1487}
1488
1489static char *
1490stack_putstr(const char *s, char *p)
1491{
1492 return stack_nputstr(s, strlen(s), p);
1493}
1494
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001495static char *
1496_STPUTC(int c, char *p)
1497{
1498 if (p == sstrend)
1499 p = growstackstr();
1500 *p++ = c;
1501 return p;
1502}
1503
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00001504#define STARTSTACKSTR(p) ((p) = stackblock())
1505#define STPUTC(c, p) ((p) = _STPUTC((c), (p)))
Denis Vlasenko843cbd52008-06-27 00:23:18 +00001506#define CHECKSTRSPACE(n, p) do { \
1507 char *q = (p); \
1508 size_t l = (n); \
1509 size_t m = sstrend - q; \
1510 if (l > m) \
1511 (p) = makestrspace(l, q); \
1512} while (0)
Denis Vlasenkoef527f52008-06-23 01:52:30 +00001513#define USTPUTC(c, p) (*(p)++ = (c))
Denis Vlasenko843cbd52008-06-27 00:23:18 +00001514#define STACKSTRNUL(p) do { \
1515 if ((p) == sstrend) \
1516 (p) = growstackstr(); \
1517 *(p) = '\0'; \
1518} while (0)
Denis Vlasenkoef527f52008-06-23 01:52:30 +00001519#define STUNPUTC(p) (--(p))
1520#define STTOPC(p) ((p)[-1])
1521#define STADJUST(amount, p) ((p) += (amount))
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001522
1523#define grabstackstr(p) stalloc((char *)(p) - (char *)stackblock())
Denis Vlasenkoef527f52008-06-23 01:52:30 +00001524#define ungrabstackstr(s, p) stunalloc(s)
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001525#define stackstrend() ((void *)sstrend)
1526
1527
1528/* ============ String helpers */
1529
1530/*
1531 * prefix -- see if pfx is a prefix of string.
1532 */
1533static char *
1534prefix(const char *string, const char *pfx)
1535{
1536 while (*pfx) {
1537 if (*pfx++ != *string++)
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00001538 return NULL;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001539 }
1540 return (char *) string;
1541}
1542
1543/*
1544 * Check for a valid number. This should be elsewhere.
1545 */
1546static int
1547is_number(const char *p)
1548{
1549 do {
1550 if (!isdigit(*p))
1551 return 0;
1552 } while (*++p != '\0');
1553 return 1;
1554}
1555
1556/*
1557 * Convert a string of digits to an integer, printing an error message on
1558 * failure.
1559 */
1560static int
1561number(const char *s)
1562{
1563 if (!is_number(s))
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02001564 ash_msg_and_raise_error(msg_illnum, s);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001565 return atoi(s);
1566}
1567
1568/*
1569 * Produce a possibly single quoted string suitable as input to the shell.
1570 * The return string is allocated on the stack.
1571 */
1572static char *
1573single_quote(const char *s)
1574{
1575 char *p;
1576
1577 STARTSTACKSTR(p);
1578
1579 do {
1580 char *q;
1581 size_t len;
1582
1583 len = strchrnul(s, '\'') - s;
1584
1585 q = p = makestrspace(len + 3, p);
1586
1587 *q++ = '\'';
Denis Vlasenko29eb3592008-05-18 14:06:08 +00001588 q = (char *)memcpy(q, s, len) + len;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001589 *q++ = '\'';
1590 s += len;
1591
1592 STADJUST(q - p, p);
1593
Denys Vlasenkocd716832009-11-28 22:14:02 +01001594 if (*s != '\'')
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001595 break;
Denys Vlasenkocd716832009-11-28 22:14:02 +01001596 len = 0;
1597 do len++; while (*++s == '\'');
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001598
1599 q = p = makestrspace(len + 3, p);
1600
1601 *q++ = '"';
Denys Vlasenkocd716832009-11-28 22:14:02 +01001602 q = (char *)memcpy(q, s - len, len) + len;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001603 *q++ = '"';
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001604
1605 STADJUST(q - p, p);
1606 } while (*s);
1607
Denys Vlasenkocd716832009-11-28 22:14:02 +01001608 USTPUTC('\0', p);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001609
1610 return stackblock();
1611}
1612
1613
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00001614/* ============ nextopt */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001615
1616static char **argptr; /* argument list for builtin commands */
1617static char *optionarg; /* set by nextopt (like getopt) */
1618static char *optptr; /* used by nextopt */
1619
1620/*
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001621 * XXX - should get rid of. Have all builtins use getopt(3).
1622 * The library getopt must have the BSD extension static variable
1623 * "optreset", otherwise it can't be used within the shell safely.
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001624 *
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001625 * Standard option processing (a la getopt) for builtin routines.
1626 * The only argument that is passed to nextopt is the option string;
1627 * the other arguments are unnecessary. It returns the character,
1628 * or '\0' on end of input.
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001629 */
1630static int
1631nextopt(const char *optstring)
1632{
1633 char *p;
1634 const char *q;
1635 char c;
1636
1637 p = optptr;
1638 if (p == NULL || *p == '\0') {
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001639 /* We ate entire "-param", take next one */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001640 p = *argptr;
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001641 if (p == NULL)
1642 return '\0';
1643 if (*p != '-')
1644 return '\0';
1645 if (*++p == '\0') /* just "-" ? */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001646 return '\0';
1647 argptr++;
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001648 if (LONE_DASH(p)) /* "--" ? */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001649 return '\0';
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001650 /* p => next "-param" */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001651 }
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001652 /* p => some option char in the middle of a "-param" */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001653 c = *p++;
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +00001654 for (q = optstring; *q != c;) {
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001655 if (*q == '\0')
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00001656 ash_msg_and_raise_error("illegal option -%c", c);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001657 if (*++q == ':')
1658 q++;
1659 }
1660 if (*++q == ':') {
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00001661 if (*p == '\0') {
1662 p = *argptr++;
1663 if (p == NULL)
1664 ash_msg_and_raise_error("no arg for -%c option", c);
1665 }
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001666 optionarg = p;
1667 p = NULL;
1668 }
1669 optptr = p;
1670 return c;
1671}
1672
1673
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00001674/* ============ Shell variables */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001675
Denis Vlasenko01631112007-12-16 17:20:38 +00001676/*
1677 * The parsefile structure pointed to by the global variable parsefile
1678 * contains information about the current file being read.
1679 */
Denis Vlasenko01631112007-12-16 17:20:38 +00001680struct shparam {
1681 int nparam; /* # of positional parameters (without $0) */
1682#if ENABLE_ASH_GETOPTS
1683 int optind; /* next parameter to be processed by getopts */
1684 int optoff; /* used by getopts */
1685#endif
1686 unsigned char malloced; /* if parameter list dynamically allocated */
1687 char **p; /* parameter list */
1688};
1689
1690/*
1691 * Free the list of positional parameters.
1692 */
1693static void
1694freeparam(volatile struct shparam *param)
1695{
Denis Vlasenko01631112007-12-16 17:20:38 +00001696 if (param->malloced) {
Denis Vlasenko3177ba02008-07-13 20:39:23 +00001697 char **ap, **ap1;
1698 ap = ap1 = param->p;
1699 while (*ap)
1700 free(*ap++);
1701 free(ap1);
Denis Vlasenko01631112007-12-16 17:20:38 +00001702 }
1703}
1704
1705#if ENABLE_ASH_GETOPTS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001706static void FAST_FUNC getoptsreset(const char *value);
Denis Vlasenko01631112007-12-16 17:20:38 +00001707#endif
1708
1709struct var {
1710 struct var *next; /* next entry in hash list */
1711 int flags; /* flags are defined above */
1712 const char *text; /* name=value */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001713 void (*func)(const char *) FAST_FUNC; /* function to be called when */
Denis Vlasenko01631112007-12-16 17:20:38 +00001714 /* the variable gets set/unset */
1715};
1716
1717struct localvar {
1718 struct localvar *next; /* next local variable in list */
1719 struct var *vp; /* the variable that was made local */
1720 int flags; /* saved flags */
1721 const char *text; /* saved text */
1722};
1723
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001724/* flags */
1725#define VEXPORT 0x01 /* variable is exported */
1726#define VREADONLY 0x02 /* variable cannot be modified */
1727#define VSTRFIXED 0x04 /* variable struct is statically allocated */
1728#define VTEXTFIXED 0x08 /* text is statically allocated */
1729#define VSTACK 0x10 /* text is allocated on the stack */
1730#define VUNSET 0x20 /* the variable is not set */
1731#define VNOFUNC 0x40 /* don't call the callback function */
1732#define VNOSET 0x80 /* do not set variable - just readonly test */
1733#define VNOSAVE 0x100 /* when text is on the heap before setvareq */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00001734#if ENABLE_ASH_RANDOM_SUPPORT
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00001735# define VDYNAMIC 0x200 /* dynamic variable */
1736#else
1737# define VDYNAMIC 0
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001738#endif
1739
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001740#ifdef IFS_BROKEN
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001741static const char defifsvar[] ALIGN1 = "IFS= \t\n";
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001742#define defifs (defifsvar + 4)
1743#else
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00001744static const char defifs[] ALIGN1 = " \t\n";
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001745#endif
1746
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00001747
Denis Vlasenko01631112007-12-16 17:20:38 +00001748/* Need to be before varinit_data[] */
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00001749#if ENABLE_LOCALE_SUPPORT
Denys Vlasenko2634bf32009-06-09 18:40:07 +02001750static void FAST_FUNC
Denis Vlasenkoa8915072007-02-23 21:10:06 +00001751change_lc_all(const char *value)
1752{
1753 if (value && *value != '\0')
1754 setlocale(LC_ALL, value);
1755}
Denys Vlasenko2634bf32009-06-09 18:40:07 +02001756static void FAST_FUNC
Denis Vlasenkoa8915072007-02-23 21:10:06 +00001757change_lc_ctype(const char *value)
1758{
1759 if (value && *value != '\0')
1760 setlocale(LC_CTYPE, value);
1761}
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00001762#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001763#if ENABLE_ASH_MAIL
1764static void chkmail(void);
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001765static void changemail(const char *) FAST_FUNC;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001766#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001767static void changepath(const char *) FAST_FUNC;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001768#if ENABLE_ASH_RANDOM_SUPPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001769static void change_random(const char *) FAST_FUNC;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001770#endif
1771
Denis Vlasenko01631112007-12-16 17:20:38 +00001772static const struct {
1773 int flags;
1774 const char *text;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001775 void (*func)(const char *) FAST_FUNC;
Denis Vlasenko01631112007-12-16 17:20:38 +00001776} varinit_data[] = {
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001777#ifdef IFS_BROKEN
Denis Vlasenko01631112007-12-16 17:20:38 +00001778 { VSTRFIXED|VTEXTFIXED , defifsvar , NULL },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001779#else
Denis Vlasenko01631112007-12-16 17:20:38 +00001780 { VSTRFIXED|VTEXTFIXED|VUNSET, "IFS\0" , NULL },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001781#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001782#if ENABLE_ASH_MAIL
Denis Vlasenko01631112007-12-16 17:20:38 +00001783 { VSTRFIXED|VTEXTFIXED|VUNSET, "MAIL\0" , changemail },
1784 { VSTRFIXED|VTEXTFIXED|VUNSET, "MAILPATH\0", changemail },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001785#endif
Denis Vlasenko01631112007-12-16 17:20:38 +00001786 { VSTRFIXED|VTEXTFIXED , bb_PATH_root_path, changepath },
1787 { VSTRFIXED|VTEXTFIXED , "PS1=$ " , NULL },
1788 { VSTRFIXED|VTEXTFIXED , "PS2=> " , NULL },
1789 { VSTRFIXED|VTEXTFIXED , "PS4=+ " , NULL },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001790#if ENABLE_ASH_GETOPTS
Denis Vlasenko01631112007-12-16 17:20:38 +00001791 { VSTRFIXED|VTEXTFIXED , "OPTIND=1" , getoptsreset },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001792#endif
1793#if ENABLE_ASH_RANDOM_SUPPORT
Denis Vlasenko01631112007-12-16 17:20:38 +00001794 { VSTRFIXED|VTEXTFIXED|VUNSET|VDYNAMIC, "RANDOM\0", change_random },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001795#endif
1796#if ENABLE_LOCALE_SUPPORT
Denis Vlasenko01631112007-12-16 17:20:38 +00001797 { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_ALL\0" , change_lc_all },
1798 { VSTRFIXED|VTEXTFIXED|VUNSET, "LC_CTYPE\0", change_lc_ctype },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001799#endif
1800#if ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko01631112007-12-16 17:20:38 +00001801 { VSTRFIXED|VTEXTFIXED|VUNSET, "HISTFILE\0", NULL },
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001802#endif
1803};
1804
Denis Vlasenko0b769642008-07-24 07:54:57 +00001805struct redirtab;
Denis Vlasenko01631112007-12-16 17:20:38 +00001806
1807struct globals_var {
1808 struct shparam shellparam; /* $@ current positional parameters */
1809 struct redirtab *redirlist;
1810 int g_nullredirs;
1811 int preverrout_fd; /* save fd2 before print debug if xflag is set. */
1812 struct var *vartab[VTABSIZE];
1813 struct var varinit[ARRAY_SIZE(varinit_data)];
1814};
Denis Vlasenko574f2f42008-02-27 18:41:59 +00001815extern struct globals_var *const ash_ptr_to_globals_var;
1816#define G_var (*ash_ptr_to_globals_var)
Denis Vlasenko01631112007-12-16 17:20:38 +00001817#define shellparam (G_var.shellparam )
Denis Vlasenko0b769642008-07-24 07:54:57 +00001818//#define redirlist (G_var.redirlist )
Denis Vlasenko01631112007-12-16 17:20:38 +00001819#define g_nullredirs (G_var.g_nullredirs )
1820#define preverrout_fd (G_var.preverrout_fd)
1821#define vartab (G_var.vartab )
1822#define varinit (G_var.varinit )
1823#define INIT_G_var() do { \
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00001824 unsigned i; \
Denis Vlasenko574f2f42008-02-27 18:41:59 +00001825 (*(struct globals_var**)&ash_ptr_to_globals_var) = xzalloc(sizeof(G_var)); \
1826 barrier(); \
Denis Vlasenko01631112007-12-16 17:20:38 +00001827 for (i = 0; i < ARRAY_SIZE(varinit_data); i++) { \
1828 varinit[i].flags = varinit_data[i].flags; \
1829 varinit[i].text = varinit_data[i].text; \
1830 varinit[i].func = varinit_data[i].func; \
1831 } \
1832} while (0)
1833
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001834#define vifs varinit[0]
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001835#if ENABLE_ASH_MAIL
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001836# define vmail (&vifs)[1]
1837# define vmpath (&vmail)[1]
1838# define vpath (&vmpath)[1]
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001839#else
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001840# define vpath (&vifs)[1]
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001841#endif
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001842#define vps1 (&vpath)[1]
1843#define vps2 (&vps1)[1]
1844#define vps4 (&vps2)[1]
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001845#if ENABLE_ASH_GETOPTS
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001846# define voptind (&vps4)[1]
1847# if ENABLE_ASH_RANDOM_SUPPORT
1848# define vrandom (&voptind)[1]
1849# endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001850#else
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001851# if ENABLE_ASH_RANDOM_SUPPORT
1852# define vrandom (&vps4)[1]
1853# endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001854#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001855
1856/*
1857 * The following macros access the values of the above variables.
1858 * They have to skip over the name. They return the null string
1859 * for unset variables.
1860 */
1861#define ifsval() (vifs.text + 4)
1862#define ifsset() ((vifs.flags & VUNSET) == 0)
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001863#if ENABLE_ASH_MAIL
1864# define mailval() (vmail.text + 5)
1865# define mpathval() (vmpath.text + 9)
1866# define mpathset() ((vmpath.flags & VUNSET) == 0)
1867#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001868#define pathval() (vpath.text + 5)
1869#define ps1val() (vps1.text + 4)
1870#define ps2val() (vps2.text + 4)
1871#define ps4val() (vps4.text + 4)
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00001872#if ENABLE_ASH_GETOPTS
1873# define optindval() (voptind.text + 7)
1874#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001875
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001876
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001877#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1878#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1879
Denis Vlasenko01631112007-12-16 17:20:38 +00001880#if ENABLE_ASH_GETOPTS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02001881static void FAST_FUNC
Denis Vlasenko01631112007-12-16 17:20:38 +00001882getoptsreset(const char *value)
1883{
1884 shellparam.optind = number(value);
1885 shellparam.optoff = -1;
1886}
1887#endif
1888
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001889/*
1890 * Return of a legal variable name (a letter or underscore followed by zero or
1891 * more letters, underscores, and digits).
1892 */
1893static char *
1894endofname(const char *name)
1895{
1896 char *p;
1897
1898 p = (char *) name;
1899 if (!is_name(*p))
1900 return p;
1901 while (*++p) {
1902 if (!is_in_name(*p))
1903 break;
1904 }
1905 return p;
1906}
1907
1908/*
1909 * Compares two strings up to the first = or '\0'. The first
1910 * string must be terminated by '='; the second may be terminated by
1911 * either '=' or '\0'.
1912 */
1913static int
1914varcmp(const char *p, const char *q)
1915{
1916 int c, d;
1917
1918 while ((c = *p) == (d = *q)) {
1919 if (!c || c == '=')
1920 goto out;
1921 p++;
1922 q++;
1923 }
1924 if (c == '=')
Denis Vlasenko9650f362007-02-23 01:04:37 +00001925 c = '\0';
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001926 if (d == '=')
Denis Vlasenko9650f362007-02-23 01:04:37 +00001927 d = '\0';
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001928 out:
1929 return c - d;
1930}
1931
1932static int
1933varequal(const char *a, const char *b)
1934{
1935 return !varcmp(a, b);
1936}
1937
1938/*
1939 * Find the appropriate entry in the hash table from the name.
1940 */
1941static struct var **
1942hashvar(const char *p)
1943{
1944 unsigned hashval;
1945
1946 hashval = ((unsigned char) *p) << 4;
1947 while (*p && *p != '=')
1948 hashval += (unsigned char) *p++;
1949 return &vartab[hashval % VTABSIZE];
1950}
1951
1952static int
1953vpcmp(const void *a, const void *b)
1954{
1955 return varcmp(*(const char **)a, *(const char **)b);
1956}
1957
1958/*
1959 * This routine initializes the builtin variables.
1960 */
1961static void
1962initvar(void)
1963{
1964 struct var *vp;
1965 struct var *end;
1966 struct var **vpp;
1967
1968 /*
1969 * PS1 depends on uid
1970 */
1971#if ENABLE_FEATURE_EDITING && ENABLE_FEATURE_EDITING_FANCY_PROMPT
1972 vps1.text = "PS1=\\w \\$ ";
1973#else
1974 if (!geteuid())
1975 vps1.text = "PS1=# ";
1976#endif
1977 vp = varinit;
Denis Vlasenko80b8b392007-06-25 10:55:35 +00001978 end = vp + ARRAY_SIZE(varinit);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00001979 do {
1980 vpp = hashvar(vp->text);
1981 vp->next = *vpp;
1982 *vpp = vp;
1983 } while (++vp < end);
1984}
1985
1986static struct var **
1987findvar(struct var **vpp, const char *name)
1988{
1989 for (; *vpp; vpp = &(*vpp)->next) {
1990 if (varequal((*vpp)->text, name)) {
1991 break;
1992 }
1993 }
1994 return vpp;
1995}
1996
1997/*
1998 * Find the value of a variable. Returns NULL if not set.
1999 */
Mike Frysinger98c52642009-04-02 10:02:37 +00002000static const char *
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002001lookupvar(const char *name)
2002{
2003 struct var *v;
2004
2005 v = *findvar(hashvar(name), name);
2006 if (v) {
Denis Vlasenko448d30e2008-06-27 00:24:11 +00002007#if ENABLE_ASH_RANDOM_SUPPORT
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002008 /*
2009 * Dynamic variables are implemented roughly the same way they are
2010 * in bash. Namely, they're "special" so long as they aren't unset.
2011 * As soon as they're unset, they're no longer dynamic, and dynamic
2012 * lookup will no longer happen at that point. -- PFM.
2013 */
2014 if ((v->flags & VDYNAMIC))
2015 (*v->func)(NULL);
2016#endif
2017 if (!(v->flags & VUNSET))
2018 return strchrnul(v->text, '=') + 1;
2019 }
2020 return NULL;
2021}
2022
2023/*
2024 * Search the environment of a builtin command.
2025 */
Mike Frysinger98c52642009-04-02 10:02:37 +00002026static const char *
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002027bltinlookup(const char *name)
2028{
2029 struct strlist *sp;
2030
2031 for (sp = cmdenviron; sp; sp = sp->next) {
2032 if (varequal(sp->text, name))
2033 return strchrnul(sp->text, '=') + 1;
2034 }
2035 return lookupvar(name);
2036}
2037
2038/*
2039 * Same as setvar except that the variable and value are passed in
2040 * the first argument as name=value. Since the first argument will
2041 * be actually stored in the table, it should not be a string that
2042 * will go away.
2043 * Called with interrupts off.
2044 */
2045static void
2046setvareq(char *s, int flags)
2047{
2048 struct var *vp, **vpp;
2049
2050 vpp = hashvar(s);
2051 flags |= (VEXPORT & (((unsigned) (1 - aflag)) - 1));
2052 vp = *findvar(vpp, s);
2053 if (vp) {
2054 if ((vp->flags & (VREADONLY|VDYNAMIC)) == VREADONLY) {
2055 const char *n;
2056
2057 if (flags & VNOSAVE)
2058 free(s);
2059 n = vp->text;
2060 ash_msg_and_raise_error("%.*s: is read only", strchrnul(n, '=') - n, n);
2061 }
2062
2063 if (flags & VNOSET)
2064 return;
2065
2066 if (vp->func && (flags & VNOFUNC) == 0)
2067 (*vp->func)(strchrnul(s, '=') + 1);
2068
2069 if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
2070 free((char*)vp->text);
2071
2072 flags |= vp->flags & ~(VTEXTFIXED|VSTACK|VNOSAVE|VUNSET);
2073 } else {
2074 if (flags & VNOSET)
2075 return;
2076 /* not found */
Denis Vlasenko597906c2008-02-20 16:38:54 +00002077 vp = ckzalloc(sizeof(*vp));
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002078 vp->next = *vpp;
Denis Vlasenko597906c2008-02-20 16:38:54 +00002079 /*vp->func = NULL; - ckzalloc did it */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002080 *vpp = vp;
2081 }
2082 if (!(flags & (VTEXTFIXED|VSTACK|VNOSAVE)))
2083 s = ckstrdup(s);
2084 vp->text = s;
2085 vp->flags = flags;
2086}
2087
2088/*
2089 * Set the value of a variable. The flags argument is ored with the
2090 * flags of the variable. If val is NULL, the variable is unset.
2091 */
2092static void
2093setvar(const char *name, const char *val, int flags)
2094{
2095 char *p, *q;
2096 size_t namelen;
2097 char *nameeq;
2098 size_t vallen;
2099
2100 q = endofname(name);
2101 p = strchrnul(q, '=');
2102 namelen = p - name;
2103 if (!namelen || p != q)
2104 ash_msg_and_raise_error("%.*s: bad variable name", namelen, name);
2105 vallen = 0;
2106 if (val == NULL) {
2107 flags |= VUNSET;
2108 } else {
2109 vallen = strlen(val);
2110 }
2111 INT_OFF;
2112 nameeq = ckmalloc(namelen + vallen + 2);
Denis Vlasenko29eb3592008-05-18 14:06:08 +00002113 p = (char *)memcpy(nameeq, name, namelen) + namelen;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002114 if (val) {
2115 *p++ = '=';
Denis Vlasenko29eb3592008-05-18 14:06:08 +00002116 p = (char *)memcpy(p, val, vallen) + vallen;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002117 }
2118 *p = '\0';
2119 setvareq(nameeq, flags | VNOSAVE);
2120 INT_ON;
2121}
2122
2123#if ENABLE_ASH_GETOPTS
2124/*
2125 * Safe version of setvar, returns 1 on success 0 on failure.
2126 */
2127static int
2128setvarsafe(const char *name, const char *val, int flags)
2129{
2130 int err;
2131 volatile int saveint;
2132 struct jmploc *volatile savehandler = exception_handler;
2133 struct jmploc jmploc;
2134
2135 SAVE_INT(saveint);
2136 if (setjmp(jmploc.loc))
2137 err = 1;
2138 else {
2139 exception_handler = &jmploc;
2140 setvar(name, val, flags);
2141 err = 0;
2142 }
2143 exception_handler = savehandler;
2144 RESTORE_INT(saveint);
2145 return err;
2146}
2147#endif
2148
2149/*
2150 * Unset the specified variable.
2151 */
2152static int
2153unsetvar(const char *s)
2154{
2155 struct var **vpp;
2156 struct var *vp;
2157 int retval;
2158
2159 vpp = findvar(hashvar(s), s);
2160 vp = *vpp;
2161 retval = 2;
2162 if (vp) {
2163 int flags = vp->flags;
2164
2165 retval = 1;
2166 if (flags & VREADONLY)
2167 goto out;
Denis Vlasenko448d30e2008-06-27 00:24:11 +00002168#if ENABLE_ASH_RANDOM_SUPPORT
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002169 vp->flags &= ~VDYNAMIC;
2170#endif
2171 if (flags & VUNSET)
2172 goto ok;
2173 if ((flags & VSTRFIXED) == 0) {
2174 INT_OFF;
2175 if ((flags & (VTEXTFIXED|VSTACK)) == 0)
2176 free((char*)vp->text);
2177 *vpp = vp->next;
2178 free(vp);
2179 INT_ON;
2180 } else {
2181 setvar(s, 0, 0);
2182 vp->flags &= ~VEXPORT;
2183 }
2184 ok:
2185 retval = 0;
2186 }
2187 out:
2188 return retval;
2189}
2190
2191/*
2192 * Process a linked list of variable assignments.
2193 */
2194static void
2195listsetvar(struct strlist *list_set_var, int flags)
2196{
2197 struct strlist *lp = list_set_var;
2198
2199 if (!lp)
2200 return;
2201 INT_OFF;
2202 do {
2203 setvareq(lp->text, flags);
Denis Vlasenko9650f362007-02-23 01:04:37 +00002204 lp = lp->next;
2205 } while (lp);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002206 INT_ON;
2207}
2208
2209/*
2210 * Generate a list of variables satisfying the given conditions.
2211 */
2212static char **
2213listvars(int on, int off, char ***end)
2214{
2215 struct var **vpp;
2216 struct var *vp;
2217 char **ep;
2218 int mask;
2219
2220 STARTSTACKSTR(ep);
2221 vpp = vartab;
2222 mask = on | off;
2223 do {
2224 for (vp = *vpp; vp; vp = vp->next) {
2225 if ((vp->flags & mask) == on) {
2226 if (ep == stackstrend())
2227 ep = growstackstr();
2228 *ep++ = (char *) vp->text;
2229 }
2230 }
2231 } while (++vpp < vartab + VTABSIZE);
2232 if (ep == stackstrend())
2233 ep = growstackstr();
2234 if (end)
2235 *end = ep;
2236 *ep++ = NULL;
2237 return grabstackstr(ep);
2238}
2239
2240
2241/* ============ Path search helper
2242 *
2243 * The variable path (passed by reference) should be set to the start
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02002244 * of the path before the first call; path_advance will update
2245 * this value as it proceeds. Successive calls to path_advance will return
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002246 * the possible path expansions in sequence. If an option (indicated by
2247 * a percent sign) appears in the path entry then the global variable
2248 * pathopt will be set to point to it; otherwise pathopt will be set to
2249 * NULL.
2250 */
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02002251static const char *pathopt; /* set by path_advance */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002252
2253static char *
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02002254path_advance(const char **path, const char *name)
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002255{
2256 const char *p;
2257 char *q;
2258 const char *start;
2259 size_t len;
2260
2261 if (*path == NULL)
2262 return NULL;
2263 start = *path;
Denis Vlasenkof7d56652008-03-25 05:51:41 +00002264 for (p = start; *p && *p != ':' && *p != '%'; p++)
2265 continue;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002266 len = p - start + strlen(name) + 2; /* "2" is for '/' and '\0' */
2267 while (stackblocksize() < len)
2268 growstackblock();
2269 q = stackblock();
2270 if (p != start) {
2271 memcpy(q, start, p - start);
2272 q += p - start;
2273 *q++ = '/';
2274 }
2275 strcpy(q, name);
2276 pathopt = NULL;
2277 if (*p == '%') {
2278 pathopt = ++p;
Denis Vlasenkof7d56652008-03-25 05:51:41 +00002279 while (*p && *p != ':')
2280 p++;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002281 }
2282 if (*p == ':')
2283 *path = p + 1;
2284 else
2285 *path = NULL;
2286 return stalloc(len);
2287}
2288
2289
2290/* ============ Prompt */
2291
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +00002292static smallint doprompt; /* if set, prompt the user */
2293static smallint needprompt; /* true if interactive and at start of line */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002294
2295#if ENABLE_FEATURE_EDITING
2296static line_input_t *line_input_state;
2297static const char *cmdedit_prompt;
2298static void
2299putprompt(const char *s)
2300{
2301 if (ENABLE_ASH_EXPAND_PRMT) {
2302 free((char*)cmdedit_prompt);
Denis Vlasenko4222ae42007-02-25 02:37:49 +00002303 cmdedit_prompt = ckstrdup(s);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002304 return;
2305 }
2306 cmdedit_prompt = s;
2307}
2308#else
2309static void
2310putprompt(const char *s)
2311{
2312 out2str(s);
2313}
2314#endif
2315
2316#if ENABLE_ASH_EXPAND_PRMT
2317/* expandstr() needs parsing machinery, so it is far away ahead... */
2318static const char *expandstr(const char *ps);
2319#else
2320#define expandstr(s) s
2321#endif
2322
2323static void
2324setprompt(int whichprompt)
2325{
2326 const char *prompt;
2327#if ENABLE_ASH_EXPAND_PRMT
2328 struct stackmark smark;
2329#endif
2330
2331 needprompt = 0;
2332
2333 switch (whichprompt) {
2334 case 1:
2335 prompt = ps1val();
2336 break;
2337 case 2:
2338 prompt = ps2val();
2339 break;
2340 default: /* 0 */
2341 prompt = nullstr;
2342 }
2343#if ENABLE_ASH_EXPAND_PRMT
2344 setstackmark(&smark);
2345 stalloc(stackblocksize());
2346#endif
2347 putprompt(expandstr(prompt));
2348#if ENABLE_ASH_EXPAND_PRMT
2349 popstackmark(&smark);
2350#endif
2351}
2352
2353
2354/* ============ The cd and pwd commands */
2355
2356#define CD_PHYSICAL 1
2357#define CD_PRINT 2
2358
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002359static int
2360cdopt(void)
2361{
2362 int flags = 0;
2363 int i, j;
2364
2365 j = 'L';
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02002366 while ((i = nextopt("LP")) != '\0') {
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002367 if (i != j) {
2368 flags ^= CD_PHYSICAL;
2369 j = i;
2370 }
2371 }
2372
2373 return flags;
2374}
2375
2376/*
2377 * Update curdir (the name of the current directory) in response to a
2378 * cd command.
2379 */
2380static const char *
2381updatepwd(const char *dir)
2382{
2383 char *new;
2384 char *p;
2385 char *cdcomppath;
2386 const char *lim;
2387
2388 cdcomppath = ststrdup(dir);
2389 STARTSTACKSTR(new);
2390 if (*dir != '/') {
2391 if (curdir == nullstr)
2392 return 0;
2393 new = stack_putstr(curdir, new);
2394 }
2395 new = makestrspace(strlen(dir) + 2, new);
Denis Vlasenko29eb3592008-05-18 14:06:08 +00002396 lim = (char *)stackblock() + 1;
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002397 if (*dir != '/') {
2398 if (new[-1] != '/')
2399 USTPUTC('/', new);
2400 if (new > lim && *lim == '/')
2401 lim++;
2402 } else {
2403 USTPUTC('/', new);
2404 cdcomppath++;
2405 if (dir[1] == '/' && dir[2] != '/') {
2406 USTPUTC('/', new);
2407 cdcomppath++;
2408 lim++;
2409 }
2410 }
2411 p = strtok(cdcomppath, "/");
2412 while (p) {
2413 switch (*p) {
2414 case '.':
2415 if (p[1] == '.' && p[2] == '\0') {
2416 while (new > lim) {
2417 STUNPUTC(new);
2418 if (new[-1] == '/')
2419 break;
2420 }
2421 break;
Denis Vlasenko16abcd92007-04-13 23:59:52 +00002422 }
2423 if (p[1] == '\0')
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002424 break;
2425 /* fall through */
2426 default:
2427 new = stack_putstr(p, new);
2428 USTPUTC('/', new);
2429 }
2430 p = strtok(0, "/");
2431 }
2432 if (new > lim)
2433 STUNPUTC(new);
2434 *new = 0;
2435 return stackblock();
2436}
2437
2438/*
2439 * Find out what the current directory is. If we already know the current
2440 * directory, this routine returns immediately.
2441 */
2442static char *
2443getpwd(void)
2444{
Denis Vlasenko01631112007-12-16 17:20:38 +00002445 char *dir = getcwd(NULL, 0); /* huh, using glibc extension? */
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002446 return dir ? dir : nullstr;
2447}
2448
2449static void
2450setpwd(const char *val, int setold)
2451{
2452 char *oldcur, *dir;
2453
2454 oldcur = dir = curdir;
2455
2456 if (setold) {
2457 setvar("OLDPWD", oldcur, VEXPORT);
2458 }
2459 INT_OFF;
2460 if (physdir != nullstr) {
2461 if (physdir != oldcur)
2462 free(physdir);
2463 physdir = nullstr;
2464 }
2465 if (oldcur == val || !val) {
2466 char *s = getpwd();
2467 physdir = s;
2468 if (!val)
2469 dir = s;
2470 } else
2471 dir = ckstrdup(val);
2472 if (oldcur != dir && oldcur != nullstr) {
2473 free(oldcur);
2474 }
2475 curdir = dir;
2476 INT_ON;
2477 setvar("PWD", dir, VEXPORT);
2478}
2479
2480static void hashcd(void);
2481
2482/*
2483 * Actually do the chdir. We also call hashcd to let the routines in exec.c
2484 * know that the current directory has changed.
2485 */
2486static int
2487docd(const char *dest, int flags)
2488{
2489 const char *dir = 0;
2490 int err;
2491
2492 TRACE(("docd(\"%s\", %d) called\n", dest, flags));
2493
2494 INT_OFF;
2495 if (!(flags & CD_PHYSICAL)) {
2496 dir = updatepwd(dest);
2497 if (dir)
2498 dest = dir;
2499 }
2500 err = chdir(dest);
2501 if (err)
2502 goto out;
2503 setpwd(dir, 1);
2504 hashcd();
2505 out:
2506 INT_ON;
2507 return err;
2508}
2509
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02002510static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002511cdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002512{
2513 const char *dest;
2514 const char *path;
2515 const char *p;
2516 char c;
2517 struct stat statb;
2518 int flags;
2519
2520 flags = cdopt();
2521 dest = *argptr;
2522 if (!dest)
2523 dest = bltinlookup(homestr);
2524 else if (LONE_DASH(dest)) {
2525 dest = bltinlookup("OLDPWD");
2526 flags |= CD_PRINT;
2527 }
2528 if (!dest)
2529 dest = nullstr;
2530 if (*dest == '/')
2531 goto step7;
2532 if (*dest == '.') {
2533 c = dest[1];
2534 dotdot:
2535 switch (c) {
2536 case '\0':
2537 case '/':
2538 goto step6;
2539 case '.':
2540 c = dest[2];
2541 if (c != '.')
2542 goto dotdot;
2543 }
2544 }
2545 if (!*dest)
2546 dest = ".";
2547 path = bltinlookup("CDPATH");
2548 if (!path) {
2549 step6:
2550 step7:
2551 p = dest;
2552 goto docd;
2553 }
2554 do {
2555 c = *path;
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02002556 p = path_advance(&path, dest);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002557 if (stat(p, &statb) >= 0 && S_ISDIR(statb.st_mode)) {
2558 if (c && c != ':')
2559 flags |= CD_PRINT;
2560 docd:
2561 if (!docd(p, flags))
2562 goto out;
2563 break;
2564 }
2565 } while (path);
2566 ash_msg_and_raise_error("can't cd to %s", dest);
2567 /* NOTREACHED */
2568 out:
2569 if (flags & CD_PRINT)
2570 out1fmt(snlfmt, curdir);
2571 return 0;
2572}
2573
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02002574static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00002575pwdcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenkoaa744452007-02-23 01:04:22 +00002576{
2577 int flags;
2578 const char *dir = curdir;
2579
2580 flags = cdopt();
2581 if (flags) {
2582 if (physdir == nullstr)
2583 setpwd(dir, 0);
2584 dir = physdir;
2585 }
2586 out1fmt(snlfmt, dir);
2587 return 0;
2588}
2589
Denis Vlasenko0c032a42007-02-23 01:03:40 +00002590
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00002591/* ============ ... */
Eric Andersenc470f442003-07-28 09:56:35 +00002592
Denis Vlasenko834dee72008-10-07 09:18:30 +00002593
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +00002594#define IBUFSIZ COMMON_BUFSIZE
Denis Vlasenko834dee72008-10-07 09:18:30 +00002595/* buffer for top level input file */
2596#define basebuf bb_common_bufsiz1
Eric Andersenc470f442003-07-28 09:56:35 +00002597
Eric Andersenc470f442003-07-28 09:56:35 +00002598/* Syntax classes */
Denis Vlasenko834dee72008-10-07 09:18:30 +00002599#define CWORD 0 /* character is nothing special */
2600#define CNL 1 /* newline character */
2601#define CBACK 2 /* a backslash character */
2602#define CSQUOTE 3 /* single quote */
2603#define CDQUOTE 4 /* double quote */
Eric Andersenc470f442003-07-28 09:56:35 +00002604#define CENDQUOTE 5 /* a terminating quote */
Denis Vlasenko834dee72008-10-07 09:18:30 +00002605#define CBQUOTE 6 /* backwards single quote */
2606#define CVAR 7 /* a dollar sign */
2607#define CENDVAR 8 /* a '}' character */
2608#define CLP 9 /* a left paren in arithmetic */
2609#define CRP 10 /* a right paren in arithmetic */
Eric Andersenc470f442003-07-28 09:56:35 +00002610#define CENDFILE 11 /* end of file */
Denis Vlasenko834dee72008-10-07 09:18:30 +00002611#define CCTL 12 /* like CWORD, except it must be escaped */
2612#define CSPCL 13 /* these terminate a word */
2613#define CIGN 14 /* character should be ignored */
Eric Andersenc470f442003-07-28 09:56:35 +00002614
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002615#define PEOF 256
Denis Vlasenko131ae172007-02-18 13:00:19 +00002616#if ENABLE_ASH_ALIAS
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002617# define PEOA 257
Eric Andersenc470f442003-07-28 09:56:35 +00002618#endif
2619
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002620#define USE_SIT_FUNCTION ENABLE_ASH_OPTIMIZE_FOR_SIZE
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002621
Mike Frysinger98c52642009-04-02 10:02:37 +00002622#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002623# define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8) | (d << 12))
Eric Andersenc470f442003-07-28 09:56:35 +00002624#else
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002625# define SIT_ITEM(a,b,c,d) (a | (b << 4) | (c << 8))
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002626#endif
Denys Vlasenko068d3862009-11-29 01:41:11 +01002627static const uint16_t S_I_T[] = {
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002628#if ENABLE_ASH_ALIAS
2629 SIT_ITEM(CSPCL , CIGN , CIGN , CIGN ), /* 0, PEOA */
2630#endif
2631 SIT_ITEM(CSPCL , CWORD , CWORD, CWORD ), /* 1, ' ' */
2632 SIT_ITEM(CNL , CNL , CNL , CNL ), /* 2, \n */
2633 SIT_ITEM(CWORD , CCTL , CCTL , CWORD ), /* 3, !*-/:=?[]~ */
2634 SIT_ITEM(CDQUOTE , CENDQUOTE, CWORD, CWORD ), /* 4, '"' */
2635 SIT_ITEM(CVAR , CVAR , CWORD, CVAR ), /* 5, $ */
2636 SIT_ITEM(CSQUOTE , CWORD , CENDQUOTE, CWORD), /* 6, "'" */
2637 SIT_ITEM(CSPCL , CWORD , CWORD, CLP ), /* 7, ( */
2638 SIT_ITEM(CSPCL , CWORD , CWORD, CRP ), /* 8, ) */
2639 SIT_ITEM(CBACK , CBACK , CCTL , CBACK ), /* 9, \ */
2640 SIT_ITEM(CBQUOTE , CBQUOTE , CWORD, CBQUOTE), /* 10, ` */
2641 SIT_ITEM(CENDVAR , CENDVAR , CWORD, CENDVAR), /* 11, } */
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002642#if !USE_SIT_FUNCTION
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002643 SIT_ITEM(CENDFILE, CENDFILE , CENDFILE, CENDFILE),/* 12, PEOF */
2644 SIT_ITEM(CWORD , CWORD , CWORD, CWORD ), /* 13, 0-9A-Za-z */
2645 SIT_ITEM(CCTL , CCTL , CCTL , CCTL ) /* 14, CTLESC ... */
2646#endif
2647#undef SIT_ITEM
Eric Andersenc470f442003-07-28 09:56:35 +00002648};
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002649/* Constants below must match table above */
2650enum {
2651#if ENABLE_ASH_ALIAS
2652 CSPCL_CIGN_CIGN_CIGN , /* 0 */
2653#endif
2654 CSPCL_CWORD_CWORD_CWORD , /* 1 */
2655 CNL_CNL_CNL_CNL , /* 2 */
2656 CWORD_CCTL_CCTL_CWORD , /* 3 */
2657 CDQUOTE_CENDQUOTE_CWORD_CWORD , /* 4 */
2658 CVAR_CVAR_CWORD_CVAR , /* 5 */
2659 CSQUOTE_CWORD_CENDQUOTE_CWORD , /* 6 */
2660 CSPCL_CWORD_CWORD_CLP , /* 7 */
2661 CSPCL_CWORD_CWORD_CRP , /* 8 */
2662 CBACK_CBACK_CCTL_CBACK , /* 9 */
2663 CBQUOTE_CBQUOTE_CWORD_CBQUOTE , /* 10 */
2664 CENDVAR_CENDVAR_CWORD_CENDVAR , /* 11 */
2665 CENDFILE_CENDFILE_CENDFILE_CENDFILE, /* 12 */
2666 CWORD_CWORD_CWORD_CWORD , /* 13 */
2667 CCTL_CCTL_CCTL_CCTL , /* 14 */
2668};
Eric Andersen2870d962001-07-02 17:27:21 +00002669
Denys Vlasenkocd716832009-11-28 22:14:02 +01002670/* c in SIT(c, syntax) must be an *unsigned char* or PEOA or PEOF,
2671 * caller must ensure proper cast on it if c is *char_ptr!
2672 */
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002673/* Values for syntax param */
2674#define BASESYNTAX 0 /* not in quotes */
2675#define DQSYNTAX 1 /* in double quotes */
2676#define SQSYNTAX 2 /* in single quotes */
2677#define ARISYNTAX 3 /* in arithmetic */
2678#define PSSYNTAX 4 /* prompt. never passed to SIT() */
Denys Vlasenkocd716832009-11-28 22:14:02 +01002679
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002680#if USE_SIT_FUNCTION
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002681
Denis Vlasenko0c032a42007-02-23 01:03:40 +00002682static int
2683SIT(int c, int syntax)
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002684{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00002685 static const char spec_symbls[] ALIGN1 = "\t\n !\"$&'()*-/:;<=>?[\\]`|}~";
Denys Vlasenkocd716832009-11-28 22:14:02 +01002686# if ENABLE_ASH_ALIAS
2687 static const uint8_t syntax_index_table[] ALIGN1 = {
Eric Andersenc470f442003-07-28 09:56:35 +00002688 1, 2, 1, 3, 4, 5, 1, 6, /* "\t\n !\"$&'" */
2689 7, 8, 3, 3, 3, 3, 1, 1, /* "()*-/:;<" */
2690 3, 1, 3, 3, 9, 3, 10, 1, /* "=>?[\\]`|" */
2691 11, 3 /* "}~" */
2692 };
Denys Vlasenkocd716832009-11-28 22:14:02 +01002693# else
2694 static const uint8_t syntax_index_table[] ALIGN1 = {
Eric Andersenc470f442003-07-28 09:56:35 +00002695 0, 1, 0, 2, 3, 4, 0, 5, /* "\t\n !\"$&'" */
2696 6, 7, 2, 2, 2, 2, 0, 0, /* "()*-/:;<" */
2697 2, 0, 2, 2, 8, 2, 9, 0, /* "=>?[\\]`|" */
2698 10, 2 /* "}~" */
2699 };
Denys Vlasenkocd716832009-11-28 22:14:02 +01002700# endif
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002701 const char *s;
2702 int indx;
2703
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002704 if (c == PEOF)
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002705 return CENDFILE;
Denys Vlasenkocd716832009-11-28 22:14:02 +01002706# if ENABLE_ASH_ALIAS
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002707 if (c == PEOA)
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +00002708 indx = 0;
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002709 else
Denys Vlasenkocd716832009-11-28 22:14:02 +01002710# endif
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +00002711 {
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002712 /* Cast is purely for paranoia here,
2713 * just in case someone passed signed char to us */
2714 if ((unsigned char)c >= CTL_FIRST
2715 && (unsigned char)c <= CTL_LAST
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +00002716 ) {
2717 return CCTL;
2718 }
2719 s = strchrnul(spec_symbls, c);
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002720 if (*s == '\0')
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +00002721 return CWORD;
Denis Vlasenko0dfe1d22009-04-02 12:57:38 +00002722 indx = syntax_index_table[s - spec_symbls];
2723 }
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002724 return (S_I_T[indx] >> (syntax*4)) & 0xf;
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002725}
2726
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00002727#else /* !USE_SIT_FUNCTION */
Manuel Novoa III 16815d42001-08-10 19:36:07 +00002728
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002729static const uint8_t syntax_index_table[] = {
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00002730 /* BASESYNTAX_DQSYNTAX_SQSYNTAX_ARISYNTAX */
Denys Vlasenkocd716832009-11-28 22:14:02 +01002731 /* 0 */ CWORD_CWORD_CWORD_CWORD,
2732 /* 1 */ CWORD_CWORD_CWORD_CWORD,
2733 /* 2 */ CWORD_CWORD_CWORD_CWORD,
2734 /* 3 */ CWORD_CWORD_CWORD_CWORD,
2735 /* 4 */ CWORD_CWORD_CWORD_CWORD,
2736 /* 5 */ CWORD_CWORD_CWORD_CWORD,
2737 /* 6 */ CWORD_CWORD_CWORD_CWORD,
2738 /* 7 */ CWORD_CWORD_CWORD_CWORD,
2739 /* 8 */ CWORD_CWORD_CWORD_CWORD,
2740 /* 9 "\t" */ CSPCL_CWORD_CWORD_CWORD,
2741 /* 10 "\n" */ CNL_CNL_CNL_CNL,
2742 /* 11 */ CWORD_CWORD_CWORD_CWORD,
2743 /* 12 */ CWORD_CWORD_CWORD_CWORD,
2744 /* 13 */ CWORD_CWORD_CWORD_CWORD,
2745 /* 14 */ CWORD_CWORD_CWORD_CWORD,
2746 /* 15 */ CWORD_CWORD_CWORD_CWORD,
2747 /* 16 */ CWORD_CWORD_CWORD_CWORD,
2748 /* 17 */ CWORD_CWORD_CWORD_CWORD,
2749 /* 18 */ CWORD_CWORD_CWORD_CWORD,
2750 /* 19 */ CWORD_CWORD_CWORD_CWORD,
2751 /* 20 */ CWORD_CWORD_CWORD_CWORD,
2752 /* 21 */ CWORD_CWORD_CWORD_CWORD,
2753 /* 22 */ CWORD_CWORD_CWORD_CWORD,
2754 /* 23 */ CWORD_CWORD_CWORD_CWORD,
2755 /* 24 */ CWORD_CWORD_CWORD_CWORD,
2756 /* 25 */ CWORD_CWORD_CWORD_CWORD,
2757 /* 26 */ CWORD_CWORD_CWORD_CWORD,
2758 /* 27 */ CWORD_CWORD_CWORD_CWORD,
2759 /* 28 */ CWORD_CWORD_CWORD_CWORD,
2760 /* 29 */ CWORD_CWORD_CWORD_CWORD,
2761 /* 30 */ CWORD_CWORD_CWORD_CWORD,
2762 /* 31 */ CWORD_CWORD_CWORD_CWORD,
2763 /* 32 " " */ CSPCL_CWORD_CWORD_CWORD,
2764 /* 33 "!" */ CWORD_CCTL_CCTL_CWORD,
2765 /* 34 """ */ CDQUOTE_CENDQUOTE_CWORD_CWORD,
2766 /* 35 "#" */ CWORD_CWORD_CWORD_CWORD,
2767 /* 36 "$" */ CVAR_CVAR_CWORD_CVAR,
2768 /* 37 "%" */ CWORD_CWORD_CWORD_CWORD,
2769 /* 38 "&" */ CSPCL_CWORD_CWORD_CWORD,
2770 /* 39 "'" */ CSQUOTE_CWORD_CENDQUOTE_CWORD,
2771 /* 40 "(" */ CSPCL_CWORD_CWORD_CLP,
2772 /* 41 ")" */ CSPCL_CWORD_CWORD_CRP,
2773 /* 42 "*" */ CWORD_CCTL_CCTL_CWORD,
2774 /* 43 "+" */ CWORD_CWORD_CWORD_CWORD,
2775 /* 44 "," */ CWORD_CWORD_CWORD_CWORD,
2776 /* 45 "-" */ CWORD_CCTL_CCTL_CWORD,
2777 /* 46 "." */ CWORD_CWORD_CWORD_CWORD,
2778 /* 47 "/" */ CWORD_CCTL_CCTL_CWORD,
2779 /* 48 "0" */ CWORD_CWORD_CWORD_CWORD,
2780 /* 49 "1" */ CWORD_CWORD_CWORD_CWORD,
2781 /* 50 "2" */ CWORD_CWORD_CWORD_CWORD,
2782 /* 51 "3" */ CWORD_CWORD_CWORD_CWORD,
2783 /* 52 "4" */ CWORD_CWORD_CWORD_CWORD,
2784 /* 53 "5" */ CWORD_CWORD_CWORD_CWORD,
2785 /* 54 "6" */ CWORD_CWORD_CWORD_CWORD,
2786 /* 55 "7" */ CWORD_CWORD_CWORD_CWORD,
2787 /* 56 "8" */ CWORD_CWORD_CWORD_CWORD,
2788 /* 57 "9" */ CWORD_CWORD_CWORD_CWORD,
2789 /* 58 ":" */ CWORD_CCTL_CCTL_CWORD,
2790 /* 59 ";" */ CSPCL_CWORD_CWORD_CWORD,
2791 /* 60 "<" */ CSPCL_CWORD_CWORD_CWORD,
2792 /* 61 "=" */ CWORD_CCTL_CCTL_CWORD,
2793 /* 62 ">" */ CSPCL_CWORD_CWORD_CWORD,
2794 /* 63 "?" */ CWORD_CCTL_CCTL_CWORD,
2795 /* 64 "@" */ CWORD_CWORD_CWORD_CWORD,
2796 /* 65 "A" */ CWORD_CWORD_CWORD_CWORD,
2797 /* 66 "B" */ CWORD_CWORD_CWORD_CWORD,
2798 /* 67 "C" */ CWORD_CWORD_CWORD_CWORD,
2799 /* 68 "D" */ CWORD_CWORD_CWORD_CWORD,
2800 /* 69 "E" */ CWORD_CWORD_CWORD_CWORD,
2801 /* 70 "F" */ CWORD_CWORD_CWORD_CWORD,
2802 /* 71 "G" */ CWORD_CWORD_CWORD_CWORD,
2803 /* 72 "H" */ CWORD_CWORD_CWORD_CWORD,
2804 /* 73 "I" */ CWORD_CWORD_CWORD_CWORD,
2805 /* 74 "J" */ CWORD_CWORD_CWORD_CWORD,
2806 /* 75 "K" */ CWORD_CWORD_CWORD_CWORD,
2807 /* 76 "L" */ CWORD_CWORD_CWORD_CWORD,
2808 /* 77 "M" */ CWORD_CWORD_CWORD_CWORD,
2809 /* 78 "N" */ CWORD_CWORD_CWORD_CWORD,
2810 /* 79 "O" */ CWORD_CWORD_CWORD_CWORD,
2811 /* 80 "P" */ CWORD_CWORD_CWORD_CWORD,
2812 /* 81 "Q" */ CWORD_CWORD_CWORD_CWORD,
2813 /* 82 "R" */ CWORD_CWORD_CWORD_CWORD,
2814 /* 83 "S" */ CWORD_CWORD_CWORD_CWORD,
2815 /* 84 "T" */ CWORD_CWORD_CWORD_CWORD,
2816 /* 85 "U" */ CWORD_CWORD_CWORD_CWORD,
2817 /* 86 "V" */ CWORD_CWORD_CWORD_CWORD,
2818 /* 87 "W" */ CWORD_CWORD_CWORD_CWORD,
2819 /* 88 "X" */ CWORD_CWORD_CWORD_CWORD,
2820 /* 89 "Y" */ CWORD_CWORD_CWORD_CWORD,
2821 /* 90 "Z" */ CWORD_CWORD_CWORD_CWORD,
2822 /* 91 "[" */ CWORD_CCTL_CCTL_CWORD,
2823 /* 92 "\" */ CBACK_CBACK_CCTL_CBACK,
2824 /* 93 "]" */ CWORD_CCTL_CCTL_CWORD,
2825 /* 94 "^" */ CWORD_CWORD_CWORD_CWORD,
2826 /* 95 "_" */ CWORD_CWORD_CWORD_CWORD,
2827 /* 96 "`" */ CBQUOTE_CBQUOTE_CWORD_CBQUOTE,
2828 /* 97 "a" */ CWORD_CWORD_CWORD_CWORD,
2829 /* 98 "b" */ CWORD_CWORD_CWORD_CWORD,
2830 /* 99 "c" */ CWORD_CWORD_CWORD_CWORD,
2831 /* 100 "d" */ CWORD_CWORD_CWORD_CWORD,
2832 /* 101 "e" */ CWORD_CWORD_CWORD_CWORD,
2833 /* 102 "f" */ CWORD_CWORD_CWORD_CWORD,
2834 /* 103 "g" */ CWORD_CWORD_CWORD_CWORD,
2835 /* 104 "h" */ CWORD_CWORD_CWORD_CWORD,
2836 /* 105 "i" */ CWORD_CWORD_CWORD_CWORD,
2837 /* 106 "j" */ CWORD_CWORD_CWORD_CWORD,
2838 /* 107 "k" */ CWORD_CWORD_CWORD_CWORD,
2839 /* 108 "l" */ CWORD_CWORD_CWORD_CWORD,
2840 /* 109 "m" */ CWORD_CWORD_CWORD_CWORD,
2841 /* 110 "n" */ CWORD_CWORD_CWORD_CWORD,
2842 /* 111 "o" */ CWORD_CWORD_CWORD_CWORD,
2843 /* 112 "p" */ CWORD_CWORD_CWORD_CWORD,
2844 /* 113 "q" */ CWORD_CWORD_CWORD_CWORD,
2845 /* 114 "r" */ CWORD_CWORD_CWORD_CWORD,
2846 /* 115 "s" */ CWORD_CWORD_CWORD_CWORD,
2847 /* 116 "t" */ CWORD_CWORD_CWORD_CWORD,
2848 /* 117 "u" */ CWORD_CWORD_CWORD_CWORD,
2849 /* 118 "v" */ CWORD_CWORD_CWORD_CWORD,
2850 /* 119 "w" */ CWORD_CWORD_CWORD_CWORD,
2851 /* 120 "x" */ CWORD_CWORD_CWORD_CWORD,
2852 /* 121 "y" */ CWORD_CWORD_CWORD_CWORD,
2853 /* 122 "z" */ CWORD_CWORD_CWORD_CWORD,
2854 /* 123 "{" */ CWORD_CWORD_CWORD_CWORD,
2855 /* 124 "|" */ CSPCL_CWORD_CWORD_CWORD,
2856 /* 125 "}" */ CENDVAR_CENDVAR_CWORD_CENDVAR,
2857 /* 126 "~" */ CWORD_CCTL_CCTL_CWORD,
2858 /* 127 del */ CWORD_CWORD_CWORD_CWORD,
2859 /* 128 0x80 */ CWORD_CWORD_CWORD_CWORD,
2860 /* 129 CTLESC */ CCTL_CCTL_CCTL_CCTL,
2861 /* 130 CTLVAR */ CCTL_CCTL_CCTL_CCTL,
2862 /* 131 CTLENDVAR */ CCTL_CCTL_CCTL_CCTL,
2863 /* 132 CTLBACKQ */ CCTL_CCTL_CCTL_CCTL,
2864 /* 133 CTLQUOTE */ CCTL_CCTL_CCTL_CCTL,
2865 /* 134 CTLARI */ CCTL_CCTL_CCTL_CCTL,
2866 /* 135 CTLENDARI */ CCTL_CCTL_CCTL_CCTL,
2867 /* 136 CTLQUOTEMARK */ CCTL_CCTL_CCTL_CCTL,
2868 /* 137 */ CWORD_CWORD_CWORD_CWORD,
2869 /* 138 */ CWORD_CWORD_CWORD_CWORD,
2870 /* 139 */ CWORD_CWORD_CWORD_CWORD,
2871 /* 140 */ CWORD_CWORD_CWORD_CWORD,
2872 /* 141 */ CWORD_CWORD_CWORD_CWORD,
2873 /* 142 */ CWORD_CWORD_CWORD_CWORD,
2874 /* 143 */ CWORD_CWORD_CWORD_CWORD,
2875 /* 144 */ CWORD_CWORD_CWORD_CWORD,
2876 /* 145 */ CWORD_CWORD_CWORD_CWORD,
2877 /* 146 */ CWORD_CWORD_CWORD_CWORD,
2878 /* 147 */ CWORD_CWORD_CWORD_CWORD,
2879 /* 148 */ CWORD_CWORD_CWORD_CWORD,
2880 /* 149 */ CWORD_CWORD_CWORD_CWORD,
2881 /* 150 */ CWORD_CWORD_CWORD_CWORD,
2882 /* 151 */ CWORD_CWORD_CWORD_CWORD,
2883 /* 152 */ CWORD_CWORD_CWORD_CWORD,
2884 /* 153 */ CWORD_CWORD_CWORD_CWORD,
2885 /* 154 */ CWORD_CWORD_CWORD_CWORD,
2886 /* 155 */ CWORD_CWORD_CWORD_CWORD,
2887 /* 156 */ CWORD_CWORD_CWORD_CWORD,
2888 /* 157 */ CWORD_CWORD_CWORD_CWORD,
2889 /* 158 */ CWORD_CWORD_CWORD_CWORD,
2890 /* 159 */ CWORD_CWORD_CWORD_CWORD,
2891 /* 160 */ CWORD_CWORD_CWORD_CWORD,
2892 /* 161 */ CWORD_CWORD_CWORD_CWORD,
2893 /* 162 */ CWORD_CWORD_CWORD_CWORD,
2894 /* 163 */ CWORD_CWORD_CWORD_CWORD,
2895 /* 164 */ CWORD_CWORD_CWORD_CWORD,
2896 /* 165 */ CWORD_CWORD_CWORD_CWORD,
2897 /* 166 */ CWORD_CWORD_CWORD_CWORD,
2898 /* 167 */ CWORD_CWORD_CWORD_CWORD,
2899 /* 168 */ CWORD_CWORD_CWORD_CWORD,
2900 /* 169 */ CWORD_CWORD_CWORD_CWORD,
2901 /* 170 */ CWORD_CWORD_CWORD_CWORD,
2902 /* 171 */ CWORD_CWORD_CWORD_CWORD,
2903 /* 172 */ CWORD_CWORD_CWORD_CWORD,
2904 /* 173 */ CWORD_CWORD_CWORD_CWORD,
2905 /* 174 */ CWORD_CWORD_CWORD_CWORD,
2906 /* 175 */ CWORD_CWORD_CWORD_CWORD,
2907 /* 176 */ CWORD_CWORD_CWORD_CWORD,
2908 /* 177 */ CWORD_CWORD_CWORD_CWORD,
2909 /* 178 */ CWORD_CWORD_CWORD_CWORD,
2910 /* 179 */ CWORD_CWORD_CWORD_CWORD,
2911 /* 180 */ CWORD_CWORD_CWORD_CWORD,
2912 /* 181 */ CWORD_CWORD_CWORD_CWORD,
2913 /* 182 */ CWORD_CWORD_CWORD_CWORD,
2914 /* 183 */ CWORD_CWORD_CWORD_CWORD,
2915 /* 184 */ CWORD_CWORD_CWORD_CWORD,
2916 /* 185 */ CWORD_CWORD_CWORD_CWORD,
2917 /* 186 */ CWORD_CWORD_CWORD_CWORD,
2918 /* 187 */ CWORD_CWORD_CWORD_CWORD,
2919 /* 188 */ CWORD_CWORD_CWORD_CWORD,
2920 /* 189 */ CWORD_CWORD_CWORD_CWORD,
2921 /* 190 */ CWORD_CWORD_CWORD_CWORD,
2922 /* 191 */ CWORD_CWORD_CWORD_CWORD,
2923 /* 192 */ CWORD_CWORD_CWORD_CWORD,
2924 /* 193 */ CWORD_CWORD_CWORD_CWORD,
2925 /* 194 */ CWORD_CWORD_CWORD_CWORD,
2926 /* 195 */ CWORD_CWORD_CWORD_CWORD,
2927 /* 196 */ CWORD_CWORD_CWORD_CWORD,
2928 /* 197 */ CWORD_CWORD_CWORD_CWORD,
2929 /* 198 */ CWORD_CWORD_CWORD_CWORD,
2930 /* 199 */ CWORD_CWORD_CWORD_CWORD,
2931 /* 200 */ CWORD_CWORD_CWORD_CWORD,
2932 /* 201 */ CWORD_CWORD_CWORD_CWORD,
2933 /* 202 */ CWORD_CWORD_CWORD_CWORD,
2934 /* 203 */ CWORD_CWORD_CWORD_CWORD,
2935 /* 204 */ CWORD_CWORD_CWORD_CWORD,
2936 /* 205 */ CWORD_CWORD_CWORD_CWORD,
2937 /* 206 */ CWORD_CWORD_CWORD_CWORD,
2938 /* 207 */ CWORD_CWORD_CWORD_CWORD,
2939 /* 208 */ CWORD_CWORD_CWORD_CWORD,
2940 /* 209 */ CWORD_CWORD_CWORD_CWORD,
2941 /* 210 */ CWORD_CWORD_CWORD_CWORD,
2942 /* 211 */ CWORD_CWORD_CWORD_CWORD,
2943 /* 212 */ CWORD_CWORD_CWORD_CWORD,
2944 /* 213 */ CWORD_CWORD_CWORD_CWORD,
2945 /* 214 */ CWORD_CWORD_CWORD_CWORD,
2946 /* 215 */ CWORD_CWORD_CWORD_CWORD,
2947 /* 216 */ CWORD_CWORD_CWORD_CWORD,
2948 /* 217 */ CWORD_CWORD_CWORD_CWORD,
2949 /* 218 */ CWORD_CWORD_CWORD_CWORD,
2950 /* 219 */ CWORD_CWORD_CWORD_CWORD,
2951 /* 220 */ CWORD_CWORD_CWORD_CWORD,
2952 /* 221 */ CWORD_CWORD_CWORD_CWORD,
2953 /* 222 */ CWORD_CWORD_CWORD_CWORD,
2954 /* 223 */ CWORD_CWORD_CWORD_CWORD,
2955 /* 224 */ CWORD_CWORD_CWORD_CWORD,
2956 /* 225 */ CWORD_CWORD_CWORD_CWORD,
2957 /* 226 */ CWORD_CWORD_CWORD_CWORD,
2958 /* 227 */ CWORD_CWORD_CWORD_CWORD,
2959 /* 228 */ CWORD_CWORD_CWORD_CWORD,
2960 /* 229 */ CWORD_CWORD_CWORD_CWORD,
2961 /* 230 */ CWORD_CWORD_CWORD_CWORD,
2962 /* 231 */ CWORD_CWORD_CWORD_CWORD,
2963 /* 232 */ CWORD_CWORD_CWORD_CWORD,
2964 /* 233 */ CWORD_CWORD_CWORD_CWORD,
2965 /* 234 */ CWORD_CWORD_CWORD_CWORD,
2966 /* 235 */ CWORD_CWORD_CWORD_CWORD,
2967 /* 236 */ CWORD_CWORD_CWORD_CWORD,
2968 /* 237 */ CWORD_CWORD_CWORD_CWORD,
2969 /* 238 */ CWORD_CWORD_CWORD_CWORD,
2970 /* 239 */ CWORD_CWORD_CWORD_CWORD,
2971 /* 230 */ CWORD_CWORD_CWORD_CWORD,
2972 /* 241 */ CWORD_CWORD_CWORD_CWORD,
2973 /* 242 */ CWORD_CWORD_CWORD_CWORD,
2974 /* 243 */ CWORD_CWORD_CWORD_CWORD,
2975 /* 244 */ CWORD_CWORD_CWORD_CWORD,
2976 /* 245 */ CWORD_CWORD_CWORD_CWORD,
2977 /* 246 */ CWORD_CWORD_CWORD_CWORD,
2978 /* 247 */ CWORD_CWORD_CWORD_CWORD,
2979 /* 248 */ CWORD_CWORD_CWORD_CWORD,
2980 /* 249 */ CWORD_CWORD_CWORD_CWORD,
2981 /* 250 */ CWORD_CWORD_CWORD_CWORD,
2982 /* 251 */ CWORD_CWORD_CWORD_CWORD,
2983 /* 252 */ CWORD_CWORD_CWORD_CWORD,
2984 /* 253 */ CWORD_CWORD_CWORD_CWORD,
2985 /* 254 */ CWORD_CWORD_CWORD_CWORD,
2986 /* 255 */ CWORD_CWORD_CWORD_CWORD,
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002987 /* PEOF */ CENDFILE_CENDFILE_CENDFILE_CENDFILE,
Denys Vlasenkocd716832009-11-28 22:14:02 +01002988# if ENABLE_ASH_ALIAS
2989 /* PEOA */ CSPCL_CIGN_CIGN_CIGN,
2990# endif
Eric Andersen2870d962001-07-02 17:27:21 +00002991};
2992
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01002993# define SIT(c, syntax) ((S_I_T[syntax_index_table[c]] >> ((syntax)*4)) & 0xf)
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00002994
Denys Vlasenko76bc2d62009-11-29 01:37:46 +01002995#endif /* !USE_SIT_FUNCTION */
Eric Andersenc470f442003-07-28 09:56:35 +00002996
Eric Andersen2870d962001-07-02 17:27:21 +00002997
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00002998/* ============ Alias handling */
Denis Vlasenkofc06f292007-02-23 21:09:35 +00002999
Denis Vlasenko131ae172007-02-18 13:00:19 +00003000#if ENABLE_ASH_ALIAS
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00003001
3002#define ALIASINUSE 1
3003#define ALIASDEAD 2
3004
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00003005struct alias {
3006 struct alias *next;
3007 char *name;
3008 char *val;
3009 int flag;
3010};
3011
Denis Vlasenko01631112007-12-16 17:20:38 +00003012
3013static struct alias **atab; // [ATABSIZE];
3014#define INIT_G_alias() do { \
3015 atab = xzalloc(ATABSIZE * sizeof(atab[0])); \
3016} while (0)
3017
Eric Andersen2870d962001-07-02 17:27:21 +00003018
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00003019static struct alias **
3020__lookupalias(const char *name) {
3021 unsigned int hashval;
3022 struct alias **app;
3023 const char *p;
3024 unsigned int ch;
3025
3026 p = name;
3027
3028 ch = (unsigned char)*p;
3029 hashval = ch << 4;
3030 while (ch) {
3031 hashval += ch;
3032 ch = (unsigned char)*++p;
3033 }
3034 app = &atab[hashval % ATABSIZE];
3035
3036 for (; *app; app = &(*app)->next) {
3037 if (strcmp(name, (*app)->name) == 0) {
3038 break;
3039 }
3040 }
3041
3042 return app;
3043}
3044
3045static struct alias *
3046lookupalias(const char *name, int check)
3047{
3048 struct alias *ap = *__lookupalias(name);
3049
3050 if (check && ap && (ap->flag & ALIASINUSE))
3051 return NULL;
3052 return ap;
3053}
3054
3055static struct alias *
3056freealias(struct alias *ap)
3057{
3058 struct alias *next;
3059
3060 if (ap->flag & ALIASINUSE) {
3061 ap->flag |= ALIASDEAD;
3062 return ap;
3063 }
3064
3065 next = ap->next;
3066 free(ap->name);
3067 free(ap->val);
3068 free(ap);
3069 return next;
3070}
Eric Andersencb57d552001-06-28 07:25:16 +00003071
Eric Andersenc470f442003-07-28 09:56:35 +00003072static void
3073setalias(const char *name, const char *val)
Eric Andersencb57d552001-06-28 07:25:16 +00003074{
3075 struct alias *ap, **app;
3076
3077 app = __lookupalias(name);
3078 ap = *app;
Denis Vlasenkob012b102007-02-19 22:43:01 +00003079 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +00003080 if (ap) {
3081 if (!(ap->flag & ALIASINUSE)) {
Denis Vlasenkob012b102007-02-19 22:43:01 +00003082 free(ap->val);
Eric Andersencb57d552001-06-28 07:25:16 +00003083 }
Denis Vlasenko0c032a42007-02-23 01:03:40 +00003084 ap->val = ckstrdup(val);
Eric Andersencb57d552001-06-28 07:25:16 +00003085 ap->flag &= ~ALIASDEAD;
3086 } else {
3087 /* not found */
Denis Vlasenko597906c2008-02-20 16:38:54 +00003088 ap = ckzalloc(sizeof(struct alias));
Denis Vlasenko0c032a42007-02-23 01:03:40 +00003089 ap->name = ckstrdup(name);
3090 ap->val = ckstrdup(val);
Denis Vlasenko597906c2008-02-20 16:38:54 +00003091 /*ap->flag = 0; - ckzalloc did it */
3092 /*ap->next = NULL;*/
Eric Andersencb57d552001-06-28 07:25:16 +00003093 *app = ap;
3094 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00003095 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00003096}
3097
Eric Andersenc470f442003-07-28 09:56:35 +00003098static int
3099unalias(const char *name)
Eric Andersen2870d962001-07-02 17:27:21 +00003100{
Eric Andersencb57d552001-06-28 07:25:16 +00003101 struct alias **app;
3102
3103 app = __lookupalias(name);
3104
3105 if (*app) {
Denis Vlasenkob012b102007-02-19 22:43:01 +00003106 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +00003107 *app = freealias(*app);
Denis Vlasenkob012b102007-02-19 22:43:01 +00003108 INT_ON;
Denis Vlasenko079f8af2006-11-27 16:49:31 +00003109 return 0;
Eric Andersencb57d552001-06-28 07:25:16 +00003110 }
3111
Denis Vlasenko079f8af2006-11-27 16:49:31 +00003112 return 1;
Eric Andersencb57d552001-06-28 07:25:16 +00003113}
3114
Eric Andersenc470f442003-07-28 09:56:35 +00003115static void
3116rmaliases(void)
Eric Andersen2870d962001-07-02 17:27:21 +00003117{
Eric Andersencb57d552001-06-28 07:25:16 +00003118 struct alias *ap, **app;
3119 int i;
3120
Denis Vlasenkob012b102007-02-19 22:43:01 +00003121 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +00003122 for (i = 0; i < ATABSIZE; i++) {
3123 app = &atab[i];
3124 for (ap = *app; ap; ap = *app) {
3125 *app = freealias(*app);
3126 if (ap == *app) {
3127 app = &ap->next;
3128 }
3129 }
3130 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00003131 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00003132}
3133
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00003134static void
3135printalias(const struct alias *ap)
3136{
3137 out1fmt("%s=%s\n", ap->name, single_quote(ap->val));
3138}
3139
Eric Andersencb57d552001-06-28 07:25:16 +00003140/*
3141 * TODO - sort output
3142 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02003143static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00003144aliascmd(int argc UNUSED_PARAM, char **argv)
Eric Andersencb57d552001-06-28 07:25:16 +00003145{
3146 char *n, *v;
3147 int ret = 0;
3148 struct alias *ap;
3149
Denis Vlasenko68404f12008-03-17 09:00:54 +00003150 if (!argv[1]) {
Eric Andersencb57d552001-06-28 07:25:16 +00003151 int i;
3152
Denis Vlasenko68404f12008-03-17 09:00:54 +00003153 for (i = 0; i < ATABSIZE; i++) {
Eric Andersencb57d552001-06-28 07:25:16 +00003154 for (ap = atab[i]; ap; ap = ap->next) {
3155 printalias(ap);
3156 }
Denis Vlasenko68404f12008-03-17 09:00:54 +00003157 }
Denis Vlasenko079f8af2006-11-27 16:49:31 +00003158 return 0;
Eric Andersencb57d552001-06-28 07:25:16 +00003159 }
3160 while ((n = *++argv) != NULL) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +00003161 v = strchr(n+1, '=');
3162 if (v == NULL) { /* n+1: funny ksh stuff */
3163 ap = *__lookupalias(n);
3164 if (ap == NULL) {
Eric Andersenc470f442003-07-28 09:56:35 +00003165 fprintf(stderr, "%s: %s not found\n", "alias", n);
Eric Andersencb57d552001-06-28 07:25:16 +00003166 ret = 1;
3167 } else
3168 printalias(ap);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00003169 } else {
Eric Andersencb57d552001-06-28 07:25:16 +00003170 *v++ = '\0';
3171 setalias(n, v);
3172 }
3173 }
3174
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00003175 return ret;
Eric Andersencb57d552001-06-28 07:25:16 +00003176}
3177
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02003178static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00003179unaliascmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersencb57d552001-06-28 07:25:16 +00003180{
3181 int i;
3182
3183 while ((i = nextopt("a")) != '\0') {
3184 if (i == 'a') {
3185 rmaliases();
Denis Vlasenko079f8af2006-11-27 16:49:31 +00003186 return 0;
Eric Andersencb57d552001-06-28 07:25:16 +00003187 }
3188 }
3189 for (i = 0; *argptr; argptr++) {
3190 if (unalias(*argptr)) {
Eric Andersenc470f442003-07-28 09:56:35 +00003191 fprintf(stderr, "%s: %s not found\n", "unalias", *argptr);
Eric Andersencb57d552001-06-28 07:25:16 +00003192 i = 1;
3193 }
3194 }
3195
Denis Vlasenkod9e15f22006-11-27 16:49:55 +00003196 return i;
Eric Andersencb57d552001-06-28 07:25:16 +00003197}
Denis Vlasenkofc06f292007-02-23 21:09:35 +00003198
Denis Vlasenko131ae172007-02-18 13:00:19 +00003199#endif /* ASH_ALIAS */
Eric Andersencb57d552001-06-28 07:25:16 +00003200
Eric Andersenc470f442003-07-28 09:56:35 +00003201
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003202/* ============ jobs.c */
3203
3204/* Mode argument to forkshell. Don't change FORK_FG or FORK_BG. */
Denys Vlasenko285ad152009-12-04 23:02:27 +01003205#define FORK_FG 0
3206#define FORK_BG 1
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003207#define FORK_NOJOB 2
3208
3209/* mode flags for showjob(s) */
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003210#define SHOW_ONLY_PGID 0x01 /* show only pgid (jobs -p) */
3211#define SHOW_PIDS 0x02 /* show individual pids, not just one line per job */
3212#define SHOW_CHANGED 0x04 /* only jobs whose state has changed */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003213
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003214/*
3215 * A job structure contains information about a job. A job is either a
3216 * single process or a set of processes contained in a pipeline. In the
3217 * latter case, pidlist will be non-NULL, and will point to a -1 terminated
3218 * array of pids.
3219 */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003220struct procstat {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003221 pid_t ps_pid; /* process id */
3222 int ps_status; /* last process status from wait() */
3223 char *ps_cmd; /* text of command being run */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003224};
3225
3226struct job {
3227 struct procstat ps0; /* status of process */
3228 struct procstat *ps; /* status or processes when more than one */
3229#if JOBS
3230 int stopstatus; /* status of a stopped job */
3231#endif
3232 uint32_t
3233 nprocs: 16, /* number of processes */
3234 state: 8,
3235#define JOBRUNNING 0 /* at least one proc running */
3236#define JOBSTOPPED 1 /* all procs are stopped */
3237#define JOBDONE 2 /* all procs are completed */
3238#if JOBS
3239 sigint: 1, /* job was killed by SIGINT */
3240 jobctl: 1, /* job running under job control */
3241#endif
3242 waited: 1, /* true if this entry has been waited for */
3243 used: 1, /* true if this entry is in used */
3244 changed: 1; /* true if status has changed */
3245 struct job *prev_job; /* previous job */
3246};
3247
Denis Vlasenko68404f12008-03-17 09:00:54 +00003248static struct job *makejob(/*union node *,*/ int);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003249static int forkshell(struct job *, union node *, int);
3250static int waitforjob(struct job *);
3251
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003252#if !JOBS
Denis Vlasenkob07a4962008-06-22 13:16:23 +00003253enum { doing_jobctl = 0 };
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003254#define setjobctl(on) do {} while (0)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003255#else
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003256static smallint doing_jobctl; //references:8
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003257static void setjobctl(int);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003258#endif
3259
3260/*
Denis Vlasenko4b875702009-03-19 13:30:04 +00003261 * Ignore a signal.
3262 */
3263static void
3264ignoresig(int signo)
3265{
3266 /* Avoid unnecessary system calls. Is it already SIG_IGNed? */
3267 if (sigmode[signo - 1] != S_IGN && sigmode[signo - 1] != S_HARD_IGN) {
3268 /* No, need to do it */
3269 signal(signo, SIG_IGN);
3270 }
3271 sigmode[signo - 1] = S_HARD_IGN;
3272}
3273
3274/*
3275 * Signal handler. Only one usage site - in setsignal()
3276 */
3277static void
3278onsig(int signo)
3279{
3280 gotsig[signo - 1] = 1;
3281
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02003282 if (signo == SIGINT && !trap[SIGINT]) {
3283 if (!suppress_int) {
3284 pending_sig = 0;
Denis Vlasenko4b875702009-03-19 13:30:04 +00003285 raise_interrupt(); /* does not return */
3286 }
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02003287 pending_int = 1;
Denis Vlasenko4b875702009-03-19 13:30:04 +00003288 } else {
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02003289 pending_sig = signo;
Denis Vlasenko4b875702009-03-19 13:30:04 +00003290 }
3291}
3292
3293/*
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003294 * Set the signal handler for the specified signal. The routine figures
3295 * out what it should be set to.
3296 */
3297static void
3298setsignal(int signo)
3299{
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003300 char *t;
3301 char cur_act, new_act;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003302 struct sigaction act;
3303
3304 t = trap[signo];
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003305 new_act = S_DFL;
3306 if (t != NULL) { /* trap for this sig is set */
3307 new_act = S_CATCH;
3308 if (t[0] == '\0') /* trap is "": ignore this sig */
3309 new_act = S_IGN;
3310 }
3311
3312 if (rootshell && new_act == S_DFL) {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003313 switch (signo) {
3314 case SIGINT:
3315 if (iflag || minusc || sflag == 0)
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003316 new_act = S_CATCH;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003317 break;
3318 case SIGQUIT:
3319#if DEBUG
3320 if (debug)
3321 break;
3322#endif
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003323 /* man bash:
3324 * "In all cases, bash ignores SIGQUIT. Non-builtin
3325 * commands run by bash have signal handlers
3326 * set to the values inherited by the shell
3327 * from its parent". */
3328 new_act = S_IGN;
3329 break;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003330 case SIGTERM:
3331 if (iflag)
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003332 new_act = S_IGN;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003333 break;
3334#if JOBS
3335 case SIGTSTP:
3336 case SIGTTOU:
3337 if (mflag)
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003338 new_act = S_IGN;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003339 break;
3340#endif
3341 }
3342 }
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003343//TODO: if !rootshell, we reset SIGQUIT to DFL,
3344//whereas we have to restore it to what shell got on entry
3345//from the parent. See comment above
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003346
3347 t = &sigmode[signo - 1];
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003348 cur_act = *t;
3349 if (cur_act == 0) {
3350 /* current setting is not yet known */
3351 if (sigaction(signo, NULL, &act)) {
3352 /* pretend it worked; maybe we should give a warning,
3353 * but other shells don't. We don't alter sigmode,
3354 * so we retry every time.
3355 * btw, in Linux it never fails. --vda */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003356 return;
3357 }
3358 if (act.sa_handler == SIG_IGN) {
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003359 cur_act = S_HARD_IGN;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003360 if (mflag
3361 && (signo == SIGTSTP || signo == SIGTTIN || signo == SIGTTOU)
3362 ) {
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003363 cur_act = S_IGN; /* don't hard ignore these */
Denis Vlasenko991a1da2008-02-10 19:02:53 +00003364 }
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003365 }
3366 }
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003367 if (cur_act == S_HARD_IGN || cur_act == new_act)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003368 return;
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003369
Denis Vlasenko991a1da2008-02-10 19:02:53 +00003370 act.sa_handler = SIG_DFL;
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003371 switch (new_act) {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003372 case S_CATCH:
3373 act.sa_handler = onsig;
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003374 act.sa_flags = 0; /* matters only if !DFL and !IGN */
3375 sigfillset(&act.sa_mask); /* ditto */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003376 break;
3377 case S_IGN:
3378 act.sa_handler = SIG_IGN;
3379 break;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003380 }
Denis Vlasenko8e2cfec2008-03-12 23:19:35 +00003381 sigaction_set(signo, &act);
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003382
3383 *t = new_act;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003384}
3385
3386/* mode flags for set_curjob */
3387#define CUR_DELETE 2
3388#define CUR_RUNNING 1
3389#define CUR_STOPPED 0
3390
3391/* mode flags for dowait */
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00003392#define DOWAIT_NONBLOCK WNOHANG
3393#define DOWAIT_BLOCK 0
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003394
3395#if JOBS
3396/* pgrp of shell on invocation */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003397static int initialpgrp; //references:2
3398static int ttyfd = -1; //5
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003399#endif
3400/* array of jobs */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003401static struct job *jobtab; //5
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003402/* size of array */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003403static unsigned njobs; //4
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003404/* current job */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003405static struct job *curjob; //lots
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003406/* number of presumed living untracked jobs */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00003407static int jobless; //4
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003408
3409static void
3410set_curjob(struct job *jp, unsigned mode)
3411{
3412 struct job *jp1;
3413 struct job **jpp, **curp;
3414
3415 /* first remove from list */
3416 jpp = curp = &curjob;
3417 do {
3418 jp1 = *jpp;
3419 if (jp1 == jp)
3420 break;
3421 jpp = &jp1->prev_job;
3422 } while (1);
3423 *jpp = jp1->prev_job;
3424
3425 /* Then re-insert in correct position */
3426 jpp = curp;
3427 switch (mode) {
3428 default:
3429#if DEBUG
3430 abort();
3431#endif
3432 case CUR_DELETE:
3433 /* job being deleted */
3434 break;
3435 case CUR_RUNNING:
3436 /* newly created job or backgrounded job,
3437 put after all stopped jobs. */
3438 do {
3439 jp1 = *jpp;
3440#if JOBS
3441 if (!jp1 || jp1->state != JOBSTOPPED)
3442#endif
3443 break;
3444 jpp = &jp1->prev_job;
3445 } while (1);
3446 /* FALLTHROUGH */
3447#if JOBS
3448 case CUR_STOPPED:
3449#endif
3450 /* newly stopped job - becomes curjob */
3451 jp->prev_job = *jpp;
3452 *jpp = jp;
3453 break;
3454 }
3455}
3456
3457#if JOBS || DEBUG
3458static int
3459jobno(const struct job *jp)
3460{
3461 return jp - jobtab + 1;
3462}
3463#endif
3464
3465/*
3466 * Convert a job name to a job structure.
3467 */
Denis Vlasenko85c24712008-03-17 09:04:04 +00003468#if !JOBS
3469#define getjob(name, getctl) getjob(name)
3470#endif
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003471static struct job *
3472getjob(const char *name, int getctl)
3473{
3474 struct job *jp;
3475 struct job *found;
Denys Vlasenkoffc39202009-08-17 02:12:20 +02003476 const char *err_msg = "%s: no such job";
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003477 unsigned num;
3478 int c;
3479 const char *p;
3480 char *(*match)(const char *, const char *);
3481
3482 jp = curjob;
3483 p = name;
3484 if (!p)
3485 goto currentjob;
3486
3487 if (*p != '%')
3488 goto err;
3489
3490 c = *++p;
3491 if (!c)
3492 goto currentjob;
3493
3494 if (!p[1]) {
3495 if (c == '+' || c == '%') {
3496 currentjob:
3497 err_msg = "No current job";
3498 goto check;
3499 }
3500 if (c == '-') {
3501 if (jp)
3502 jp = jp->prev_job;
3503 err_msg = "No previous job";
3504 check:
3505 if (!jp)
3506 goto err;
3507 goto gotit;
3508 }
3509 }
3510
3511 if (is_number(p)) {
3512 num = atoi(p);
3513 if (num < njobs) {
3514 jp = jobtab + num - 1;
3515 if (jp->used)
3516 goto gotit;
3517 goto err;
3518 }
3519 }
3520
3521 match = prefix;
3522 if (*p == '?') {
3523 match = strstr;
3524 p++;
3525 }
3526
Denys Vlasenkoffc39202009-08-17 02:12:20 +02003527 found = NULL;
3528 while (jp) {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003529 if (match(jp->ps[0].ps_cmd, p)) {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003530 if (found)
3531 goto err;
3532 found = jp;
3533 err_msg = "%s: ambiguous";
3534 }
3535 jp = jp->prev_job;
3536 }
Denys Vlasenkoffc39202009-08-17 02:12:20 +02003537 if (!found)
3538 goto err;
3539 jp = found;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003540
3541 gotit:
3542#if JOBS
3543 err_msg = "job %s not created under job control";
3544 if (getctl && jp->jobctl == 0)
3545 goto err;
3546#endif
3547 return jp;
3548 err:
3549 ash_msg_and_raise_error(err_msg, name);
3550}
3551
3552/*
3553 * Mark a job structure as unused.
3554 */
3555static void
3556freejob(struct job *jp)
3557{
3558 struct procstat *ps;
3559 int i;
3560
3561 INT_OFF;
3562 for (i = jp->nprocs, ps = jp->ps; --i >= 0; ps++) {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003563 if (ps->ps_cmd != nullstr)
3564 free(ps->ps_cmd);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003565 }
3566 if (jp->ps != &jp->ps0)
3567 free(jp->ps);
3568 jp->used = 0;
3569 set_curjob(jp, CUR_DELETE);
3570 INT_ON;
3571}
3572
3573#if JOBS
3574static void
3575xtcsetpgrp(int fd, pid_t pgrp)
3576{
3577 if (tcsetpgrp(fd, pgrp))
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00003578 ash_msg_and_raise_error("can't set tty process group (%m)");
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003579}
3580
3581/*
3582 * Turn job control on and off.
3583 *
3584 * Note: This code assumes that the third arg to ioctl is a character
3585 * pointer, which is true on Berkeley systems but not System V. Since
3586 * System V doesn't have job control yet, this isn't a problem now.
3587 *
3588 * Called with interrupts off.
3589 */
3590static void
3591setjobctl(int on)
3592{
3593 int fd;
3594 int pgrp;
3595
Denis Vlasenkob07a4962008-06-22 13:16:23 +00003596 if (on == doing_jobctl || rootshell == 0)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003597 return;
3598 if (on) {
3599 int ofd;
3600 ofd = fd = open(_PATH_TTY, O_RDWR);
3601 if (fd < 0) {
3602 /* BTW, bash will try to open(ttyname(0)) if open("/dev/tty") fails.
3603 * That sometimes helps to acquire controlling tty.
3604 * Obviously, a workaround for bugs when someone
3605 * failed to provide a controlling tty to bash! :) */
Denis Vlasenkoed270a52007-11-26 05:37:07 +00003606 fd = 2;
3607 while (!isatty(fd))
3608 if (--fd < 0)
3609 goto out;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003610 }
3611 fd = fcntl(fd, F_DUPFD, 10);
Denis Vlasenkoed270a52007-11-26 05:37:07 +00003612 if (ofd >= 0)
3613 close(ofd);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003614 if (fd < 0)
3615 goto out;
Denis Vlasenkoed270a52007-11-26 05:37:07 +00003616 /* fd is a tty at this point */
Denis Vlasenko96e1b382007-09-30 23:50:48 +00003617 close_on_exec_on(fd);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003618 do { /* while we are in the background */
3619 pgrp = tcgetpgrp(fd);
3620 if (pgrp < 0) {
3621 out:
3622 ash_msg("can't access tty; job control turned off");
3623 mflag = on = 0;
3624 goto close;
3625 }
3626 if (pgrp == getpgrp())
3627 break;
3628 killpg(0, SIGTTIN);
3629 } while (1);
3630 initialpgrp = pgrp;
3631
3632 setsignal(SIGTSTP);
3633 setsignal(SIGTTOU);
3634 setsignal(SIGTTIN);
3635 pgrp = rootpid;
3636 setpgid(0, pgrp);
3637 xtcsetpgrp(fd, pgrp);
3638 } else {
3639 /* turning job control off */
3640 fd = ttyfd;
3641 pgrp = initialpgrp;
Denis Vlasenko08c8c1d2007-04-28 22:39:02 +00003642 /* was xtcsetpgrp, but this can make exiting ash
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00003643 * loop forever if pty is already deleted */
Denis Vlasenko08c8c1d2007-04-28 22:39:02 +00003644 tcsetpgrp(fd, pgrp);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003645 setpgid(0, pgrp);
3646 setsignal(SIGTSTP);
3647 setsignal(SIGTTOU);
3648 setsignal(SIGTTIN);
3649 close:
Denis Vlasenkoed270a52007-11-26 05:37:07 +00003650 if (fd >= 0)
3651 close(fd);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003652 fd = -1;
3653 }
3654 ttyfd = fd;
Denis Vlasenkob07a4962008-06-22 13:16:23 +00003655 doing_jobctl = on;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003656}
3657
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02003658static int FAST_FUNC
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003659killcmd(int argc, char **argv)
3660{
Denis Vlasenko68404f12008-03-17 09:00:54 +00003661 int i = 1;
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003662 if (argv[1] && strcmp(argv[1], "-l") != 0) {
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003663 do {
3664 if (argv[i][0] == '%') {
3665 struct job *jp = getjob(argv[i], 0);
Denys Vlasenko285ad152009-12-04 23:02:27 +01003666 unsigned pid = jp->ps[0].ps_pid;
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003667 /* Enough space for ' -NNN<nul>' */
3668 argv[i] = alloca(sizeof(int)*3 + 3);
3669 /* kill_main has matching code to expect
3670 * leading space. Needed to not confuse
3671 * negative pids with "kill -SIGNAL_NO" syntax */
3672 sprintf(argv[i], " -%u", pid);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003673 }
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003674 } while (argv[++i]);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003675 }
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003676 return kill_main(argc, argv);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003677}
3678
3679static void
Denys Vlasenko285ad152009-12-04 23:02:27 +01003680showpipe(struct job *jp /*, FILE *out*/)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003681{
Denys Vlasenko285ad152009-12-04 23:02:27 +01003682 struct procstat *ps;
3683 struct procstat *psend;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003684
Denys Vlasenko285ad152009-12-04 23:02:27 +01003685 psend = jp->ps + jp->nprocs;
3686 for (ps = jp->ps + 1; ps < psend; ps++)
3687 printf(" | %s", ps->ps_cmd);
3688 outcslow('\n', stdout);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003689 flush_stdout_stderr();
3690}
3691
3692
3693static int
3694restartjob(struct job *jp, int mode)
3695{
3696 struct procstat *ps;
3697 int i;
3698 int status;
3699 pid_t pgid;
3700
3701 INT_OFF;
3702 if (jp->state == JOBDONE)
3703 goto out;
3704 jp->state = JOBRUNNING;
Denys Vlasenko285ad152009-12-04 23:02:27 +01003705 pgid = jp->ps[0].ps_pid;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003706 if (mode == FORK_FG)
3707 xtcsetpgrp(ttyfd, pgid);
3708 killpg(pgid, SIGCONT);
3709 ps = jp->ps;
3710 i = jp->nprocs;
3711 do {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003712 if (WIFSTOPPED(ps->ps_status)) {
3713 ps->ps_status = -1;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003714 }
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00003715 ps++;
3716 } while (--i);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003717 out:
3718 status = (mode == FORK_FG) ? waitforjob(jp) : 0;
3719 INT_ON;
3720 return status;
3721}
3722
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02003723static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00003724fg_bgcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003725{
3726 struct job *jp;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003727 int mode;
3728 int retval;
3729
3730 mode = (**argv == 'f') ? FORK_FG : FORK_BG;
3731 nextopt(nullstr);
3732 argv = argptr;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003733 do {
3734 jp = getjob(*argv, 1);
3735 if (mode == FORK_BG) {
3736 set_curjob(jp, CUR_RUNNING);
Denys Vlasenko285ad152009-12-04 23:02:27 +01003737 printf("[%d] ", jobno(jp));
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003738 }
Denys Vlasenko285ad152009-12-04 23:02:27 +01003739 out1str(jp->ps[0].ps_cmd);
3740 showpipe(jp /*, stdout*/);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003741 retval = restartjob(jp, mode);
3742 } while (*argv && *++argv);
3743 return retval;
3744}
3745#endif
3746
3747static int
3748sprint_status(char *s, int status, int sigonly)
3749{
3750 int col;
3751 int st;
3752
3753 col = 0;
3754 if (!WIFEXITED(status)) {
3755#if JOBS
3756 if (WIFSTOPPED(status))
3757 st = WSTOPSIG(status);
3758 else
3759#endif
3760 st = WTERMSIG(status);
3761 if (sigonly) {
3762 if (st == SIGINT || st == SIGPIPE)
3763 goto out;
3764#if JOBS
3765 if (WIFSTOPPED(status))
3766 goto out;
3767#endif
3768 }
3769 st &= 0x7f;
3770 col = fmtstr(s, 32, strsignal(st));
3771 if (WCOREDUMP(status)) {
3772 col += fmtstr(s + col, 16, " (core dumped)");
3773 }
3774 } else if (!sigonly) {
3775 st = WEXITSTATUS(status);
3776 if (st)
3777 col = fmtstr(s, 16, "Done(%d)", st);
3778 else
3779 col = fmtstr(s, 16, "Done");
3780 }
3781 out:
3782 return col;
3783}
3784
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003785static int
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00003786dowait(int wait_flags, struct job *job)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003787{
3788 int pid;
3789 int status;
3790 struct job *jp;
3791 struct job *thisjob;
3792 int state;
3793
Denis Vlasenkobe54d6b2008-10-27 14:25:52 +00003794 TRACE(("dowait(0x%x) called\n", wait_flags));
3795
3796 /* Do a wait system call. If job control is compiled in, we accept
3797 * stopped processes. wait_flags may have WNOHANG, preventing blocking.
3798 * NB: _not_ safe_waitpid, we need to detect EINTR */
Denys Vlasenko285ad152009-12-04 23:02:27 +01003799 if (doing_jobctl)
3800 wait_flags |= WUNTRACED;
3801 pid = waitpid(-1, &status, wait_flags);
Denis Vlasenkob21f3792009-03-19 23:09:58 +00003802 TRACE(("wait returns pid=%d, status=0x%x, errno=%d(%s)\n",
3803 pid, status, errno, strerror(errno)));
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003804 if (pid <= 0)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003805 return pid;
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003806
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003807 INT_OFF;
3808 thisjob = NULL;
3809 for (jp = curjob; jp; jp = jp->prev_job) {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003810 struct procstat *ps;
3811 struct procstat *psend;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003812 if (jp->state == JOBDONE)
3813 continue;
3814 state = JOBDONE;
Denys Vlasenko285ad152009-12-04 23:02:27 +01003815 ps = jp->ps;
3816 psend = ps + jp->nprocs;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003817 do {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003818 if (ps->ps_pid == pid) {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003819 TRACE(("Job %d: changing status of proc %d "
3820 "from 0x%x to 0x%x\n",
Denys Vlasenko285ad152009-12-04 23:02:27 +01003821 jobno(jp), pid, ps->ps_status, status));
3822 ps->ps_status = status;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003823 thisjob = jp;
3824 }
Denys Vlasenko285ad152009-12-04 23:02:27 +01003825 if (ps->ps_status == -1)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003826 state = JOBRUNNING;
3827#if JOBS
3828 if (state == JOBRUNNING)
3829 continue;
Denys Vlasenko285ad152009-12-04 23:02:27 +01003830 if (WIFSTOPPED(ps->ps_status)) {
3831 jp->stopstatus = ps->ps_status;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003832 state = JOBSTOPPED;
3833 }
3834#endif
Denys Vlasenko285ad152009-12-04 23:02:27 +01003835 } while (++ps < psend);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003836 if (thisjob)
3837 goto gotjob;
3838 }
3839#if JOBS
3840 if (!WIFSTOPPED(status))
3841#endif
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003842 jobless--;
3843 goto out;
3844
3845 gotjob:
3846 if (state != JOBRUNNING) {
3847 thisjob->changed = 1;
3848
3849 if (thisjob->state != state) {
3850 TRACE(("Job %d: changing state from %d to %d\n",
3851 jobno(thisjob), thisjob->state, state));
3852 thisjob->state = state;
3853#if JOBS
3854 if (state == JOBSTOPPED) {
3855 set_curjob(thisjob, CUR_STOPPED);
3856 }
3857#endif
3858 }
3859 }
3860
3861 out:
3862 INT_ON;
3863
3864 if (thisjob && thisjob == job) {
3865 char s[48 + 1];
3866 int len;
3867
3868 len = sprint_status(s, status, 1);
3869 if (len) {
3870 s[len] = '\n';
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00003871 s[len + 1] = '\0';
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003872 out2str(s);
3873 }
3874 }
3875 return pid;
3876}
3877
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003878static int
3879blocking_wait_with_raise_on_sig(struct job *job)
3880{
3881 pid_t pid = dowait(DOWAIT_BLOCK, job);
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02003882 if (pid <= 0 && pending_sig)
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003883 raise_exception(EXSIG);
3884 return pid;
3885}
3886
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003887#if JOBS
3888static void
3889showjob(FILE *out, struct job *jp, int mode)
3890{
3891 struct procstat *ps;
3892 struct procstat *psend;
3893 int col;
Denis Vlasenko40ba9982007-07-14 00:48:29 +00003894 int indent_col;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003895 char s[80];
3896
3897 ps = jp->ps;
3898
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003899 if (mode & SHOW_ONLY_PGID) { /* jobs -p */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003900 /* just output process (group) id of pipeline */
Denys Vlasenko285ad152009-12-04 23:02:27 +01003901 fprintf(out, "%d\n", ps->ps_pid);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003902 return;
3903 }
3904
3905 col = fmtstr(s, 16, "[%d] ", jobno(jp));
Denis Vlasenko40ba9982007-07-14 00:48:29 +00003906 indent_col = col;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003907
3908 if (jp == curjob)
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003909 s[col - 3] = '+';
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003910 else if (curjob && jp == curjob->prev_job)
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003911 s[col - 3] = '-';
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003912
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003913 if (mode & SHOW_PIDS)
Denys Vlasenko285ad152009-12-04 23:02:27 +01003914 col += fmtstr(s + col, 16, "%d ", ps->ps_pid);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003915
3916 psend = ps + jp->nprocs;
3917
3918 if (jp->state == JOBRUNNING) {
3919 strcpy(s + col, "Running");
3920 col += sizeof("Running") - 1;
3921 } else {
Denys Vlasenko285ad152009-12-04 23:02:27 +01003922 int status = psend[-1].ps_status;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003923 if (jp->state == JOBSTOPPED)
3924 status = jp->stopstatus;
3925 col += sprint_status(s + col, status, 0);
3926 }
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003927 /* By now, "[JOBID]* [maybe PID] STATUS" is printed */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003928
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003929 /* This loop either prints "<cmd1> | <cmd2> | <cmd3>" line
3930 * or prints several "PID | <cmdN>" lines,
3931 * depending on SHOW_PIDS bit.
3932 * We do not print status of individual processes
3933 * between PID and <cmdN>. bash does it, but not very well:
3934 * first line shows overall job status, not process status,
3935 * making it impossible to know 1st process status.
3936 */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003937 goto start;
Denys Vlasenko285ad152009-12-04 23:02:27 +01003938 do {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003939 /* for each process */
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003940 s[0] = '\0';
3941 col = 33;
3942 if (mode & SHOW_PIDS)
Denys Vlasenko285ad152009-12-04 23:02:27 +01003943 col = fmtstr(s, 48, "\n%*c%d ", indent_col, ' ', ps->ps_pid) - 1;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003944 start:
Denys Vlasenko285ad152009-12-04 23:02:27 +01003945 fprintf(out, "%s%*c%s%s",
3946 s,
3947 33 - col >= 0 ? 33 - col : 0, ' ',
3948 ps == jp->ps ? "" : "| ",
3949 ps->ps_cmd
3950 );
3951 } while (++ps != psend);
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003952 outcslow('\n', out);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003953
3954 jp->changed = 0;
3955
3956 if (jp->state == JOBDONE) {
3957 TRACE(("showjob: freeing job %d\n", jobno(jp)));
3958 freejob(jp);
3959 }
3960}
3961
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003962/*
3963 * Print a list of jobs. If "change" is nonzero, only print jobs whose
3964 * statuses have changed since the last call to showjobs.
3965 */
3966static void
3967showjobs(FILE *out, int mode)
3968{
3969 struct job *jp;
3970
Denys Vlasenko883cea42009-07-11 15:31:59 +02003971 TRACE(("showjobs(0x%x) called\n", mode));
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003972
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00003973 /* Handle all finished jobs */
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00003974 while (dowait(DOWAIT_NONBLOCK, NULL) > 0)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003975 continue;
3976
3977 for (jp = curjob; jp; jp = jp->prev_job) {
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003978 if (!(mode & SHOW_CHANGED) || jp->changed) {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003979 showjob(out, jp, mode);
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003980 }
Denis Vlasenkoa8915072007-02-23 21:10:06 +00003981 }
3982}
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003983
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02003984static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00003985jobscmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003986{
3987 int mode, m;
3988
3989 mode = 0;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02003990 while ((m = nextopt("lp")) != '\0') {
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003991 if (m == 'l')
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003992 mode |= SHOW_PIDS;
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003993 else
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02003994 mode |= SHOW_ONLY_PGID;
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00003995 }
3996
3997 argv = argptr;
3998 if (*argv) {
3999 do
Denys Vlasenkoa12af2d2009-08-23 22:10:04 +02004000 showjob(stdout, getjob(*argv, 0), mode);
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00004001 while (*++argv);
Denys Vlasenko285ad152009-12-04 23:02:27 +01004002 } else {
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00004003 showjobs(stdout, mode);
Denys Vlasenko285ad152009-12-04 23:02:27 +01004004 }
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00004005
4006 return 0;
4007}
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004008#endif /* JOBS */
4009
Michael Abbott359da5e2009-12-04 23:03:29 +01004010/* Called only on finished or stopped jobs (no members are running) */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004011static int
4012getstatus(struct job *job)
4013{
4014 int status;
4015 int retval;
Michael Abbott359da5e2009-12-04 23:03:29 +01004016 struct procstat *ps;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004017
Michael Abbott359da5e2009-12-04 23:03:29 +01004018 /* Fetch last member's status */
4019 ps = job->ps + job->nprocs - 1;
4020 status = ps->ps_status;
4021 if (pipefail) {
4022 /* "set -o pipefail" mode: use last _nonzero_ status */
4023 while (status == 0 && --ps >= job->ps)
4024 status = ps->ps_status;
4025 }
4026
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004027 retval = WEXITSTATUS(status);
4028 if (!WIFEXITED(status)) {
4029#if JOBS
4030 retval = WSTOPSIG(status);
4031 if (!WIFSTOPPED(status))
4032#endif
4033 {
4034 /* XXX: limits number of signals */
4035 retval = WTERMSIG(status);
4036#if JOBS
4037 if (retval == SIGINT)
4038 job->sigint = 1;
4039#endif
4040 }
4041 retval += 128;
4042 }
Denys Vlasenko883cea42009-07-11 15:31:59 +02004043 TRACE(("getstatus: job %d, nproc %d, status 0x%x, retval 0x%x\n",
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004044 jobno(job), job->nprocs, status, retval));
4045 return retval;
4046}
4047
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02004048static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00004049waitcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004050{
4051 struct job *job;
4052 int retval;
4053 struct job *jp;
4054
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02004055 if (pending_sig)
Denis Vlasenko991a1da2008-02-10 19:02:53 +00004056 raise_exception(EXSIG);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004057
4058 nextopt(nullstr);
4059 retval = 0;
4060
4061 argv = argptr;
4062 if (!*argv) {
4063 /* wait for all jobs */
4064 for (;;) {
4065 jp = curjob;
4066 while (1) {
Denis Vlasenko991a1da2008-02-10 19:02:53 +00004067 if (!jp) /* no running procs */
4068 goto ret;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004069 if (jp->state == JOBRUNNING)
4070 break;
4071 jp->waited = 1;
4072 jp = jp->prev_job;
4073 }
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004074 /* man bash:
4075 * "When bash is waiting for an asynchronous command via
4076 * the wait builtin, the reception of a signal for which a trap
4077 * has been set will cause the wait builtin to return immediately
4078 * with an exit status greater than 128, immediately after which
4079 * the trap is executed."
4080 * Do we do it that way? */
4081 blocking_wait_with_raise_on_sig(NULL);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004082 }
4083 }
4084
4085 retval = 127;
4086 do {
4087 if (**argv != '%') {
4088 pid_t pid = number(*argv);
4089 job = curjob;
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00004090 while (1) {
4091 if (!job)
4092 goto repeat;
Denys Vlasenko285ad152009-12-04 23:02:27 +01004093 if (job->ps[job->nprocs - 1].ps_pid == pid)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004094 break;
4095 job = job->prev_job;
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00004096 }
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004097 } else
4098 job = getjob(*argv, 0);
4099 /* loop until process terminated or stopped */
4100 while (job->state == JOBRUNNING)
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004101 blocking_wait_with_raise_on_sig(NULL);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004102 job->waited = 1;
4103 retval = getstatus(job);
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004104 repeat: ;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004105 } while (*++argv);
4106
Denis Vlasenko991a1da2008-02-10 19:02:53 +00004107 ret:
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004108 return retval;
4109}
4110
4111static struct job *
4112growjobtab(void)
4113{
4114 size_t len;
4115 ptrdiff_t offset;
4116 struct job *jp, *jq;
4117
4118 len = njobs * sizeof(*jp);
4119 jq = jobtab;
4120 jp = ckrealloc(jq, len + 4 * sizeof(*jp));
4121
4122 offset = (char *)jp - (char *)jq;
4123 if (offset) {
4124 /* Relocate pointers */
4125 size_t l = len;
4126
4127 jq = (struct job *)((char *)jq + l);
4128 while (l) {
4129 l -= sizeof(*jp);
4130 jq--;
4131#define joff(p) ((struct job *)((char *)(p) + l))
4132#define jmove(p) (p) = (void *)((char *)(p) + offset)
4133 if (joff(jp)->ps == &jq->ps0)
4134 jmove(joff(jp)->ps);
4135 if (joff(jp)->prev_job)
4136 jmove(joff(jp)->prev_job);
4137 }
4138 if (curjob)
4139 jmove(curjob);
4140#undef joff
4141#undef jmove
4142 }
4143
4144 njobs += 4;
4145 jobtab = jp;
4146 jp = (struct job *)((char *)jp + len);
4147 jq = jp + 3;
4148 do {
4149 jq->used = 0;
4150 } while (--jq >= jp);
4151 return jp;
4152}
4153
4154/*
4155 * Return a new job structure.
4156 * Called with interrupts off.
4157 */
4158static struct job *
Denis Vlasenko68404f12008-03-17 09:00:54 +00004159makejob(/*union node *node,*/ int nprocs)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004160{
4161 int i;
4162 struct job *jp;
4163
4164 for (i = njobs, jp = jobtab; ; jp++) {
4165 if (--i < 0) {
4166 jp = growjobtab();
4167 break;
4168 }
4169 if (jp->used == 0)
4170 break;
4171 if (jp->state != JOBDONE || !jp->waited)
4172 continue;
4173#if JOBS
Denis Vlasenkob07a4962008-06-22 13:16:23 +00004174 if (doing_jobctl)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004175 continue;
4176#endif
4177 freejob(jp);
4178 break;
4179 }
4180 memset(jp, 0, sizeof(*jp));
4181#if JOBS
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +00004182 /* jp->jobctl is a bitfield.
4183 * "jp->jobctl |= jobctl" likely to give awful code */
Denis Vlasenkob07a4962008-06-22 13:16:23 +00004184 if (doing_jobctl)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004185 jp->jobctl = 1;
4186#endif
4187 jp->prev_job = curjob;
4188 curjob = jp;
4189 jp->used = 1;
4190 jp->ps = &jp->ps0;
4191 if (nprocs > 1) {
4192 jp->ps = ckmalloc(nprocs * sizeof(struct procstat));
4193 }
Denis Vlasenko68404f12008-03-17 09:00:54 +00004194 TRACE(("makejob(%d) returns %%%d\n", nprocs,
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004195 jobno(jp)));
4196 return jp;
4197}
4198
4199#if JOBS
4200/*
4201 * Return a string identifying a command (to be printed by the
4202 * jobs command).
4203 */
4204static char *cmdnextc;
4205
4206static void
4207cmdputs(const char *s)
4208{
Denis Vlasenko92e13c22008-03-25 01:17:40 +00004209 static const char vstype[VSTYPE + 1][3] = {
4210 "", "}", "-", "+", "?", "=",
4211 "%", "%%", "#", "##"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004212 IF_ASH_BASH_COMPAT(, ":", "/", "//")
Denis Vlasenko92e13c22008-03-25 01:17:40 +00004213 };
4214
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004215 const char *p, *str;
Denys Vlasenkocd716832009-11-28 22:14:02 +01004216 char cc[2] = " ";
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004217 char *nextc;
Denys Vlasenkocd716832009-11-28 22:14:02 +01004218 unsigned char c;
4219 unsigned char subtype = 0;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004220 int quoted = 0;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004221
4222 nextc = makestrspace((strlen(s) + 1) * 8, cmdnextc);
4223 p = s;
4224 while ((c = *p++) != 0) {
Denis Vlasenkoef527f52008-06-23 01:52:30 +00004225 str = NULL;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004226 switch (c) {
4227 case CTLESC:
4228 c = *p++;
4229 break;
4230 case CTLVAR:
4231 subtype = *p++;
4232 if ((subtype & VSTYPE) == VSLENGTH)
4233 str = "${#";
4234 else
4235 str = "${";
4236 if (!(subtype & VSQUOTE) == !(quoted & 1))
4237 goto dostr;
4238 quoted ^= 1;
4239 c = '"';
4240 break;
4241 case CTLENDVAR:
4242 str = "\"}" + !(quoted & 1);
4243 quoted >>= 1;
4244 subtype = 0;
4245 goto dostr;
4246 case CTLBACKQ:
4247 str = "$(...)";
4248 goto dostr;
4249 case CTLBACKQ+CTLQUOTE:
4250 str = "\"$(...)\"";
4251 goto dostr;
Mike Frysinger98c52642009-04-02 10:02:37 +00004252#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004253 case CTLARI:
4254 str = "$((";
4255 goto dostr;
4256 case CTLENDARI:
4257 str = "))";
4258 goto dostr;
4259#endif
4260 case CTLQUOTEMARK:
4261 quoted ^= 1;
4262 c = '"';
4263 break;
4264 case '=':
4265 if (subtype == 0)
4266 break;
4267 if ((subtype & VSTYPE) != VSNORMAL)
4268 quoted <<= 1;
4269 str = vstype[subtype & VSTYPE];
4270 if (subtype & VSNUL)
4271 c = ':';
4272 else
4273 goto checkstr;
4274 break;
4275 case '\'':
4276 case '\\':
4277 case '"':
4278 case '$':
4279 /* These can only happen inside quotes */
4280 cc[0] = c;
4281 str = cc;
4282 c = '\\';
4283 break;
4284 default:
4285 break;
4286 }
4287 USTPUTC(c, nextc);
4288 checkstr:
4289 if (!str)
4290 continue;
4291 dostr:
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02004292 while ((c = *str++) != '\0') {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004293 USTPUTC(c, nextc);
4294 }
4295 }
4296 if (quoted & 1) {
4297 USTPUTC('"', nextc);
4298 }
4299 *nextc = 0;
4300 cmdnextc = nextc;
4301}
4302
4303/* cmdtxt() and cmdlist() call each other */
4304static void cmdtxt(union node *n);
4305
4306static void
4307cmdlist(union node *np, int sep)
4308{
4309 for (; np; np = np->narg.next) {
4310 if (!sep)
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00004311 cmdputs(" ");
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004312 cmdtxt(np);
4313 if (sep && np->narg.next)
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00004314 cmdputs(" ");
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004315 }
4316}
4317
4318static void
4319cmdtxt(union node *n)
4320{
4321 union node *np;
4322 struct nodelist *lp;
4323 const char *p;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004324
4325 if (!n)
4326 return;
4327 switch (n->type) {
4328 default:
4329#if DEBUG
4330 abort();
4331#endif
4332 case NPIPE:
4333 lp = n->npipe.cmdlist;
4334 for (;;) {
4335 cmdtxt(lp->n);
4336 lp = lp->next;
4337 if (!lp)
4338 break;
4339 cmdputs(" | ");
4340 }
4341 break;
4342 case NSEMI:
4343 p = "; ";
4344 goto binop;
4345 case NAND:
4346 p = " && ";
4347 goto binop;
4348 case NOR:
4349 p = " || ";
4350 binop:
4351 cmdtxt(n->nbinary.ch1);
4352 cmdputs(p);
4353 n = n->nbinary.ch2;
4354 goto donode;
4355 case NREDIR:
4356 case NBACKGND:
4357 n = n->nredir.n;
4358 goto donode;
4359 case NNOT:
4360 cmdputs("!");
4361 n = n->nnot.com;
4362 donode:
4363 cmdtxt(n);
4364 break;
4365 case NIF:
4366 cmdputs("if ");
4367 cmdtxt(n->nif.test);
4368 cmdputs("; then ");
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004369 if (n->nif.elsepart) {
Denys Vlasenko7cee00e2009-07-24 01:08:03 +02004370 cmdtxt(n->nif.ifpart);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004371 cmdputs("; else ");
4372 n = n->nif.elsepart;
Denys Vlasenko7cee00e2009-07-24 01:08:03 +02004373 } else {
4374 n = n->nif.ifpart;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004375 }
4376 p = "; fi";
4377 goto dotail;
4378 case NSUBSHELL:
4379 cmdputs("(");
4380 n = n->nredir.n;
4381 p = ")";
4382 goto dotail;
4383 case NWHILE:
4384 p = "while ";
4385 goto until;
4386 case NUNTIL:
4387 p = "until ";
4388 until:
4389 cmdputs(p);
4390 cmdtxt(n->nbinary.ch1);
4391 n = n->nbinary.ch2;
4392 p = "; done";
4393 dodo:
4394 cmdputs("; do ");
4395 dotail:
4396 cmdtxt(n);
4397 goto dotail2;
4398 case NFOR:
4399 cmdputs("for ");
4400 cmdputs(n->nfor.var);
4401 cmdputs(" in ");
4402 cmdlist(n->nfor.args, 1);
4403 n = n->nfor.body;
4404 p = "; done";
4405 goto dodo;
4406 case NDEFUN:
4407 cmdputs(n->narg.text);
4408 p = "() { ... }";
4409 goto dotail2;
4410 case NCMD:
4411 cmdlist(n->ncmd.args, 1);
4412 cmdlist(n->ncmd.redirect, 0);
4413 break;
4414 case NARG:
4415 p = n->narg.text;
4416 dotail2:
4417 cmdputs(p);
4418 break;
4419 case NHERE:
4420 case NXHERE:
4421 p = "<<...";
4422 goto dotail2;
4423 case NCASE:
4424 cmdputs("case ");
4425 cmdputs(n->ncase.expr->narg.text);
4426 cmdputs(" in ");
4427 for (np = n->ncase.cases; np; np = np->nclist.next) {
4428 cmdtxt(np->nclist.pattern);
4429 cmdputs(") ");
4430 cmdtxt(np->nclist.body);
4431 cmdputs(";; ");
4432 }
4433 p = "esac";
4434 goto dotail2;
4435 case NTO:
4436 p = ">";
4437 goto redir;
4438 case NCLOBBER:
4439 p = ">|";
4440 goto redir;
4441 case NAPPEND:
4442 p = ">>";
4443 goto redir;
Denis Vlasenko559691a2008-10-05 18:39:31 +00004444#if ENABLE_ASH_BASH_COMPAT
4445 case NTO2:
4446#endif
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004447 case NTOFD:
4448 p = ">&";
4449 goto redir;
4450 case NFROM:
4451 p = "<";
4452 goto redir;
4453 case NFROMFD:
4454 p = "<&";
4455 goto redir;
4456 case NFROMTO:
4457 p = "<>";
4458 redir:
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00004459 cmdputs(utoa(n->nfile.fd));
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004460 cmdputs(p);
4461 if (n->type == NTOFD || n->type == NFROMFD) {
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00004462 cmdputs(utoa(n->ndup.dupfd));
4463 break;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004464 }
4465 n = n->nfile.fname;
4466 goto donode;
4467 }
4468}
4469
4470static char *
4471commandtext(union node *n)
4472{
4473 char *name;
4474
4475 STARTSTACKSTR(cmdnextc);
4476 cmdtxt(n);
4477 name = stackblock();
4478 TRACE(("commandtext: name %p, end %p\n\t\"%s\"\n",
4479 name, cmdnextc, cmdnextc));
4480 return ckstrdup(name);
4481}
4482#endif /* JOBS */
4483
4484/*
4485 * Fork off a subshell. If we are doing job control, give the subshell its
4486 * own process group. Jp is a job structure that the job is to be added to.
4487 * N is the command that will be evaluated by the child. Both jp and n may
4488 * be NULL. The mode parameter can be one of the following:
4489 * FORK_FG - Fork off a foreground process.
4490 * FORK_BG - Fork off a background process.
4491 * FORK_NOJOB - Like FORK_FG, but don't give the process its own
4492 * process group even if job control is on.
4493 *
4494 * When job control is turned off, background processes have their standard
4495 * input redirected to /dev/null (except for the second and later processes
4496 * in a pipeline).
4497 *
4498 * Called with interrupts off.
4499 */
4500/*
4501 * Clear traps on a fork.
4502 */
4503static void
4504clear_traps(void)
4505{
4506 char **tp;
4507
4508 for (tp = trap; tp < &trap[NSIG]; tp++) {
Denis Vlasenko991a1da2008-02-10 19:02:53 +00004509 if (*tp && **tp) { /* trap not NULL or "" (SIG_IGN) */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004510 INT_OFF;
Denys Vlasenkoe305c282009-09-25 02:12:27 +02004511 if (trap_ptr == trap)
4512 free(*tp);
4513 /* else: it "belongs" to trap_ptr vector, don't free */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004514 *tp = NULL;
Denys Vlasenko0800e3a2009-09-24 03:09:26 +02004515 if ((tp - trap) != 0)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004516 setsignal(tp - trap);
4517 INT_ON;
4518 }
4519 }
4520}
Denis Vlasenkobdc406d2007-07-15 01:13:25 +00004521
4522/* Lives far away from here, needed for forkchild */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004523static void closescript(void);
Denis Vlasenko41770222007-10-07 18:02:52 +00004524
Denis Vlasenkobdc406d2007-07-15 01:13:25 +00004525/* Called after fork(), in child */
Denys Vlasenko21d87d42009-09-25 00:06:51 +02004526static NOINLINE void
Denys Vlasenkoe56f22a2009-07-24 00:16:59 +02004527forkchild(struct job *jp, union node *n, int mode)
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004528{
4529 int oldlvl;
4530
4531 TRACE(("Child shell %d\n", getpid()));
4532 oldlvl = shlvl;
4533 shlvl++;
4534
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004535 /* man bash: "Non-builtin commands run by bash have signal handlers
4536 * set to the values inherited by the shell from its parent".
4537 * Do we do it correctly? */
4538
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004539 closescript();
Denys Vlasenko844f9902009-09-23 03:25:52 +02004540
4541 if (mode == FORK_NOJOB /* is it `xxx` ? */
4542 && n && n->type == NCMD /* is it single cmd? */
4543 /* && n->ncmd.args->type == NARG - always true? */
4544 && strcmp(n->ncmd.args->narg.text, "trap") == 0
4545 && n->ncmd.args->narg.next == NULL /* "trap" with no arguments */
4546 /* && n->ncmd.args->narg.backquote == NULL - do we need to check this? */
4547 ) {
4548 TRACE(("Trap hack\n"));
4549 /* Awful hack for `trap` or $(trap).
4550 *
4551 * http://www.opengroup.org/onlinepubs/009695399/utilities/trap.html
4552 * contains an example where "trap" is executed in a subshell:
4553 *
4554 * save_traps=$(trap)
4555 * ...
4556 * eval "$save_traps"
4557 *
4558 * Standard does not say that "trap" in subshell shall print
4559 * parent shell's traps. It only says that its output
4560 * must have suitable form, but then, in the above example
4561 * (which is not supposed to be normative), it implies that.
4562 *
4563 * bash (and probably other shell) does implement it
4564 * (traps are reset to defaults, but "trap" still shows them),
4565 * but as a result, "trap" logic is hopelessly messed up:
4566 *
4567 * # trap
4568 * trap -- 'echo Ho' SIGWINCH <--- we have a handler
4569 * # (trap) <--- trap is in subshell - no output (correct, traps are reset)
4570 * # true | trap <--- trap is in subshell - no output (ditto)
4571 * # echo `true | trap` <--- in subshell - output (but traps are reset!)
4572 * trap -- 'echo Ho' SIGWINCH
4573 * # echo `(trap)` <--- in subshell in subshell - output
4574 * trap -- 'echo Ho' SIGWINCH
4575 * # echo `true | (trap)` <--- in subshell in subshell in subshell - output!
4576 * trap -- 'echo Ho' SIGWINCH
4577 *
4578 * The rules when to forget and when to not forget traps
4579 * get really complex and nonsensical.
4580 *
4581 * Our solution: ONLY bare $(trap) or `trap` is special.
4582 */
Denys Vlasenko8f88d852009-09-25 12:12:53 +02004583 /* Save trap handler strings for trap builtin to print */
Denys Vlasenko21d87d42009-09-25 00:06:51 +02004584 trap_ptr = memcpy(xmalloc(sizeof(trap)), trap, sizeof(trap));
Denys Vlasenko8f88d852009-09-25 12:12:53 +02004585 /* Fall through into clearing traps */
Denys Vlasenko844f9902009-09-23 03:25:52 +02004586 }
Denys Vlasenkoe305c282009-09-25 02:12:27 +02004587 clear_traps();
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004588#if JOBS
4589 /* do job control only in root shell */
Denis Vlasenkob07a4962008-06-22 13:16:23 +00004590 doing_jobctl = 0;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004591 if (mode != FORK_NOJOB && jp->jobctl && !oldlvl) {
4592 pid_t pgrp;
4593
4594 if (jp->nprocs == 0)
4595 pgrp = getpid();
4596 else
Denys Vlasenko285ad152009-12-04 23:02:27 +01004597 pgrp = jp->ps[0].ps_pid;
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004598 /* this can fail because we are doing it in the parent also */
4599 setpgid(0, pgrp);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004600 if (mode == FORK_FG)
4601 xtcsetpgrp(ttyfd, pgrp);
4602 setsignal(SIGTSTP);
4603 setsignal(SIGTTOU);
4604 } else
4605#endif
4606 if (mode == FORK_BG) {
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004607 /* man bash: "When job control is not in effect,
4608 * asynchronous commands ignore SIGINT and SIGQUIT" */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004609 ignoresig(SIGINT);
4610 ignoresig(SIGQUIT);
4611 if (jp->nprocs == 0) {
4612 close(0);
4613 if (open(bb_dev_null, O_RDONLY) != 0)
Denis Vlasenko9604e1b2009-03-03 18:47:56 +00004614 ash_msg_and_raise_error("can't open '%s'", bb_dev_null);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004615 }
4616 }
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004617 if (!oldlvl) {
4618 if (iflag) { /* why if iflag only? */
4619 setsignal(SIGINT);
4620 setsignal(SIGTERM);
4621 }
4622 /* man bash:
4623 * "In all cases, bash ignores SIGQUIT. Non-builtin
4624 * commands run by bash have signal handlers
4625 * set to the values inherited by the shell
4626 * from its parent".
4627 * Take care of the second rule: */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004628 setsignal(SIGQUIT);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004629 }
Denys Vlasenkoe56f22a2009-07-24 00:16:59 +02004630#if JOBS
Denys Vlasenko844f9902009-09-23 03:25:52 +02004631 if (n && n->type == NCMD
4632 && strcmp(n->ncmd.args->narg.text, "jobs") == 0
4633 ) {
Denys Vlasenkoe56f22a2009-07-24 00:16:59 +02004634 TRACE(("Job hack\n"));
Denys Vlasenko844f9902009-09-23 03:25:52 +02004635 /* "jobs": we do not want to clear job list for it,
4636 * instead we remove only _its_ own_ job from job list.
4637 * This makes "jobs .... | cat" more useful.
4638 */
Denys Vlasenkoe56f22a2009-07-24 00:16:59 +02004639 freejob(curjob);
4640 return;
4641 }
4642#endif
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004643 for (jp = curjob; jp; jp = jp->prev_job)
4644 freejob(jp);
4645 jobless = 0;
4646}
4647
Denis Vlasenkobdc406d2007-07-15 01:13:25 +00004648/* Called after fork(), in parent */
Denis Vlasenko85c24712008-03-17 09:04:04 +00004649#if !JOBS
4650#define forkparent(jp, n, mode, pid) forkparent(jp, mode, pid)
4651#endif
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004652static void
4653forkparent(struct job *jp, union node *n, int mode, pid_t pid)
4654{
4655 TRACE(("In parent shell: child = %d\n", pid));
4656 if (!jp) {
Denis Vlasenko36fc3cd2008-01-29 09:23:49 +00004657 while (jobless && dowait(DOWAIT_NONBLOCK, NULL) > 0)
4658 continue;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004659 jobless++;
4660 return;
4661 }
4662#if JOBS
4663 if (mode != FORK_NOJOB && jp->jobctl) {
4664 int pgrp;
4665
4666 if (jp->nprocs == 0)
4667 pgrp = pid;
4668 else
Denys Vlasenko285ad152009-12-04 23:02:27 +01004669 pgrp = jp->ps[0].ps_pid;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004670 /* This can fail because we are doing it in the child also */
4671 setpgid(pid, pgrp);
4672 }
4673#endif
4674 if (mode == FORK_BG) {
4675 backgndpid = pid; /* set $! */
4676 set_curjob(jp, CUR_RUNNING);
4677 }
4678 if (jp) {
4679 struct procstat *ps = &jp->ps[jp->nprocs++];
Denys Vlasenko285ad152009-12-04 23:02:27 +01004680 ps->ps_pid = pid;
4681 ps->ps_status = -1;
4682 ps->ps_cmd = nullstr;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004683#if JOBS
Denis Vlasenkob07a4962008-06-22 13:16:23 +00004684 if (doing_jobctl && n)
Denys Vlasenko285ad152009-12-04 23:02:27 +01004685 ps->ps_cmd = commandtext(n);
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004686#endif
4687 }
4688}
4689
4690static int
4691forkshell(struct job *jp, union node *n, int mode)
4692{
4693 int pid;
4694
4695 TRACE(("forkshell(%%%d, %p, %d) called\n", jobno(jp), n, mode));
4696 pid = fork();
4697 if (pid < 0) {
4698 TRACE(("Fork failed, errno=%d", errno));
4699 if (jp)
4700 freejob(jp);
Denis Vlasenkofa0b56d2008-07-01 16:09:07 +00004701 ash_msg_and_raise_error("can't fork");
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004702 }
Denys Vlasenko76ace252009-10-12 15:25:01 +02004703 if (pid == 0) {
4704 CLEAR_RANDOM_T(&random_gen); /* or else $RANDOM repeats in child */
Denys Vlasenkoe56f22a2009-07-24 00:16:59 +02004705 forkchild(jp, n, mode);
Denys Vlasenko76ace252009-10-12 15:25:01 +02004706 } else {
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004707 forkparent(jp, n, mode, pid);
Denys Vlasenko76ace252009-10-12 15:25:01 +02004708 }
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004709 return pid;
4710}
4711
4712/*
4713 * Wait for job to finish.
4714 *
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004715 * Under job control we have the problem that while a child process
4716 * is running interrupts generated by the user are sent to the child
4717 * but not to the shell. This means that an infinite loop started by
4718 * an interactive user may be hard to kill. With job control turned off,
4719 * an interactive user may place an interactive program inside a loop.
4720 * If the interactive program catches interrupts, the user doesn't want
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004721 * these interrupts to also abort the loop. The approach we take here
4722 * is to have the shell ignore interrupt signals while waiting for a
4723 * foreground process to terminate, and then send itself an interrupt
4724 * signal if the child process was terminated by an interrupt signal.
4725 * Unfortunately, some programs want to do a bit of cleanup and then
4726 * exit on interrupt; unless these processes terminate themselves by
4727 * sending a signal to themselves (instead of calling exit) they will
4728 * confuse this approach.
4729 *
4730 * Called with interrupts off.
4731 */
4732static int
4733waitforjob(struct job *jp)
4734{
4735 int st;
4736
4737 TRACE(("waitforjob(%%%d) called\n", jobno(jp)));
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004738
4739 INT_OFF;
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004740 while (jp->state == JOBRUNNING) {
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004741 /* In non-interactive shells, we _can_ get
4742 * a keyboard signal here and be EINTRed,
4743 * but we just loop back, waiting for command to complete.
4744 *
4745 * man bash:
4746 * "If bash is waiting for a command to complete and receives
4747 * a signal for which a trap has been set, the trap
4748 * will not be executed until the command completes."
4749 *
4750 * Reality is that even if trap is not set, bash
4751 * will not act on the signal until command completes.
4752 * Try this. sleep5intoff.c:
4753 * #include <signal.h>
4754 * #include <unistd.h>
4755 * int main() {
4756 * sigset_t set;
4757 * sigemptyset(&set);
4758 * sigaddset(&set, SIGINT);
4759 * sigaddset(&set, SIGQUIT);
4760 * sigprocmask(SIG_BLOCK, &set, NULL);
4761 * sleep(5);
4762 * return 0;
4763 * }
4764 * $ bash -c './sleep5intoff; echo hi'
4765 * ^C^C^C^C <--- pressing ^C once a second
4766 * $ _
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004767 * $ bash -c './sleep5intoff; echo hi'
4768 * ^\^\^\^\hi <--- pressing ^\ (SIGQUIT)
4769 * $ _
4770 */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004771 dowait(DOWAIT_BLOCK, jp);
4772 }
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004773 INT_ON;
4774
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004775 st = getstatus(jp);
4776#if JOBS
4777 if (jp->jobctl) {
4778 xtcsetpgrp(ttyfd, rootpid);
4779 /*
4780 * This is truly gross.
4781 * If we're doing job control, then we did a TIOCSPGRP which
4782 * caused us (the shell) to no longer be in the controlling
4783 * session -- so we wouldn't have seen any ^C/SIGINT. So, we
4784 * intuit from the subprocess exit status whether a SIGINT
4785 * occurred, and if so interrupt ourselves. Yuck. - mycroft
4786 */
Denis Vlasenko991a1da2008-02-10 19:02:53 +00004787 if (jp->sigint) /* TODO: do the same with all signals */
4788 raise(SIGINT); /* ... by raise(jp->sig) instead? */
Denis Vlasenkoa8915072007-02-23 21:10:06 +00004789 }
4790 if (jp->state == JOBDONE)
4791#endif
4792 freejob(jp);
4793 return st;
4794}
4795
4796/*
4797 * return 1 if there are stopped jobs, otherwise 0
4798 */
4799static int
4800stoppedjobs(void)
4801{
4802 struct job *jp;
4803 int retval;
4804
4805 retval = 0;
4806 if (job_warning)
4807 goto out;
4808 jp = curjob;
4809 if (jp && jp->state == JOBSTOPPED) {
4810 out2str("You have stopped jobs.\n");
4811 job_warning = 2;
4812 retval++;
4813 }
4814 out:
4815 return retval;
4816}
4817
4818
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004819/* ============ redir.c
4820 *
4821 * Code for dealing with input/output redirection.
4822 */
4823
4824#define EMPTY -2 /* marks an unused slot in redirtab */
Denis Vlasenko7d75a962007-11-22 08:16:57 +00004825#define CLOSED -3 /* marks a slot of previously-closed fd */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004826
4827/*
4828 * Open a file in noclobber mode.
4829 * The code was copied from bash.
4830 */
4831static int
4832noclobberopen(const char *fname)
4833{
4834 int r, fd;
4835 struct stat finfo, finfo2;
4836
4837 /*
4838 * If the file exists and is a regular file, return an error
4839 * immediately.
4840 */
4841 r = stat(fname, &finfo);
4842 if (r == 0 && S_ISREG(finfo.st_mode)) {
4843 errno = EEXIST;
4844 return -1;
4845 }
4846
4847 /*
4848 * If the file was not present (r != 0), make sure we open it
4849 * exclusively so that if it is created before we open it, our open
4850 * will fail. Make sure that we do not truncate an existing file.
4851 * Note that we don't turn on O_EXCL unless the stat failed -- if the
4852 * file was not a regular file, we leave O_EXCL off.
4853 */
4854 if (r != 0)
4855 return open(fname, O_WRONLY|O_CREAT|O_EXCL, 0666);
4856 fd = open(fname, O_WRONLY|O_CREAT, 0666);
4857
4858 /* If the open failed, return the file descriptor right away. */
4859 if (fd < 0)
4860 return fd;
4861
4862 /*
4863 * OK, the open succeeded, but the file may have been changed from a
4864 * non-regular file to a regular file between the stat and the open.
4865 * We are assuming that the O_EXCL open handles the case where FILENAME
4866 * did not exist and is symlinked to an existing file between the stat
4867 * and open.
4868 */
4869
4870 /*
4871 * If we can open it and fstat the file descriptor, and neither check
4872 * revealed that it was a regular file, and the file has not been
4873 * replaced, return the file descriptor.
4874 */
4875 if (fstat(fd, &finfo2) == 0 && !S_ISREG(finfo2.st_mode)
4876 && finfo.st_dev == finfo2.st_dev && finfo.st_ino == finfo2.st_ino)
4877 return fd;
4878
4879 /* The file has been replaced. badness. */
4880 close(fd);
4881 errno = EEXIST;
4882 return -1;
4883}
4884
4885/*
4886 * Handle here documents. Normally we fork off a process to write the
4887 * data to a pipe. If the document is short, we can stuff the data in
4888 * the pipe without forking.
4889 */
4890/* openhere needs this forward reference */
4891static void expandhere(union node *arg, int fd);
4892static int
4893openhere(union node *redir)
4894{
4895 int pip[2];
4896 size_t len = 0;
4897
4898 if (pipe(pip) < 0)
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00004899 ash_msg_and_raise_error("pipe call failed");
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004900 if (redir->type == NHERE) {
4901 len = strlen(redir->nhere.doc->narg.text);
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00004902 if (len <= PIPE_BUF) {
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004903 full_write(pip[1], redir->nhere.doc->narg.text, len);
4904 goto out;
4905 }
4906 }
4907 if (forkshell((struct job *)NULL, (union node *)NULL, FORK_NOJOB) == 0) {
Denis Vlasenko0b769642008-07-24 07:54:57 +00004908 /* child */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004909 close(pip[0]);
Denis Vlasenkof8535cc2008-12-03 10:36:26 +00004910 ignoresig(SIGINT); //signal(SIGINT, SIG_IGN);
4911 ignoresig(SIGQUIT); //signal(SIGQUIT, SIG_IGN);
4912 ignoresig(SIGHUP); //signal(SIGHUP, SIG_IGN);
4913 ignoresig(SIGTSTP); //signal(SIGTSTP, SIG_IGN);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004914 signal(SIGPIPE, SIG_DFL);
4915 if (redir->type == NHERE)
4916 full_write(pip[1], redir->nhere.doc->narg.text, len);
Denis Vlasenko0b769642008-07-24 07:54:57 +00004917 else /* NXHERE */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004918 expandhere(redir->nhere.doc, pip[1]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00004919 _exit(EXIT_SUCCESS);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004920 }
4921 out:
4922 close(pip[1]);
4923 return pip[0];
4924}
4925
4926static int
4927openredirect(union node *redir)
4928{
4929 char *fname;
4930 int f;
4931
4932 switch (redir->nfile.type) {
4933 case NFROM:
4934 fname = redir->nfile.expfname;
4935 f = open(fname, O_RDONLY);
4936 if (f < 0)
4937 goto eopen;
4938 break;
4939 case NFROMTO:
4940 fname = redir->nfile.expfname;
4941 f = open(fname, O_RDWR|O_CREAT|O_TRUNC, 0666);
4942 if (f < 0)
4943 goto ecreate;
4944 break;
4945 case NTO:
Denis Vlasenko559691a2008-10-05 18:39:31 +00004946#if ENABLE_ASH_BASH_COMPAT
4947 case NTO2:
4948#endif
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004949 /* Take care of noclobber mode. */
4950 if (Cflag) {
4951 fname = redir->nfile.expfname;
4952 f = noclobberopen(fname);
4953 if (f < 0)
4954 goto ecreate;
4955 break;
4956 }
4957 /* FALLTHROUGH */
4958 case NCLOBBER:
4959 fname = redir->nfile.expfname;
4960 f = open(fname, O_WRONLY|O_CREAT|O_TRUNC, 0666);
4961 if (f < 0)
4962 goto ecreate;
4963 break;
4964 case NAPPEND:
4965 fname = redir->nfile.expfname;
4966 f = open(fname, O_WRONLY|O_CREAT|O_APPEND, 0666);
4967 if (f < 0)
4968 goto ecreate;
4969 break;
4970 default:
4971#if DEBUG
4972 abort();
4973#endif
4974 /* Fall through to eliminate warning. */
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00004975/* Our single caller does this itself */
Denis Vlasenko0b769642008-07-24 07:54:57 +00004976// case NTOFD:
4977// case NFROMFD:
4978// f = -1;
4979// break;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004980 case NHERE:
4981 case NXHERE:
4982 f = openhere(redir);
4983 break;
4984 }
4985
4986 return f;
4987 ecreate:
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00004988 ash_msg_and_raise_error("can't create %s: %s", fname, errmsg(errno, "nonexistent directory"));
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004989 eopen:
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00004990 ash_msg_and_raise_error("can't open %s: %s", fname, errmsg(errno, "no such file"));
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00004991}
4992
4993/*
4994 * Copy a file descriptor to be >= to. Returns -1
4995 * if the source file descriptor is closed, EMPTY if there are no unused
4996 * file descriptors left.
4997 */
Denis Vlasenko5a867312008-07-24 19:46:38 +00004998/* 0x800..00: bit to set in "to" to request dup2 instead of fcntl(F_DUPFD).
4999 * old code was doing close(to) prior to copyfd() to achieve the same */
Denis Vlasenko22f74142008-07-24 22:34:43 +00005000enum {
5001 COPYFD_EXACT = (int)~(INT_MAX),
5002 COPYFD_RESTORE = (int)((unsigned)COPYFD_EXACT >> 1),
5003};
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005004static int
5005copyfd(int from, int to)
5006{
5007 int newfd;
5008
Denis Vlasenko5a867312008-07-24 19:46:38 +00005009 if (to & COPYFD_EXACT) {
5010 to &= ~COPYFD_EXACT;
5011 /*if (from != to)*/
5012 newfd = dup2(from, to);
5013 } else {
5014 newfd = fcntl(from, F_DUPFD, to);
5015 }
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005016 if (newfd < 0) {
5017 if (errno == EMFILE)
5018 return EMPTY;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005019 /* Happens when source fd is not open: try "echo >&99" */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005020 ash_msg_and_raise_error("%d: %m", from);
5021 }
5022 return newfd;
5023}
5024
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005025/* Struct def and variable are moved down to the first usage site */
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005026struct two_fd_t {
5027 int orig, copy;
5028};
Denis Vlasenko0b769642008-07-24 07:54:57 +00005029struct redirtab {
5030 struct redirtab *next;
Denis Vlasenko0b769642008-07-24 07:54:57 +00005031 int nullredirs;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005032 int pair_count;
Denys Vlasenko606291b2009-09-23 23:15:43 +02005033 struct two_fd_t two_fd[];
Denis Vlasenko0b769642008-07-24 07:54:57 +00005034};
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005035#define redirlist (G_var.redirlist)
Denis Vlasenko0b769642008-07-24 07:54:57 +00005036
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005037static int need_to_remember(struct redirtab *rp, int fd)
5038{
5039 int i;
5040
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00005041 if (!rp) /* remembering was not requested */
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005042 return 0;
5043
5044 for (i = 0; i < rp->pair_count; i++) {
5045 if (rp->two_fd[i].orig == fd) {
5046 /* already remembered */
5047 return 0;
5048 }
5049 }
5050 return 1;
5051}
5052
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00005053/* "hidden" fd is a fd used to read scripts, or a copy of such */
5054static int is_hidden_fd(struct redirtab *rp, int fd)
5055{
5056 int i;
Denis Vlasenko34c73c42008-08-16 11:48:02 +00005057 struct parsefile *pf;
5058
5059 if (fd == -1)
5060 return 0;
5061 pf = g_parsefile;
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00005062 while (pf) {
5063 if (fd == pf->fd) {
5064 return 1;
5065 }
5066 pf = pf->prev;
5067 }
5068 if (!rp)
5069 return 0;
5070 fd |= COPYFD_RESTORE;
5071 for (i = 0; i < rp->pair_count; i++) {
5072 if (rp->two_fd[i].copy == fd) {
5073 return 1;
5074 }
5075 }
5076 return 0;
5077}
5078
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005079/*
5080 * Process a list of redirection commands. If the REDIR_PUSH flag is set,
5081 * old file descriptors are stashed away so that the redirection can be
5082 * undone by calling popredir. If the REDIR_BACKQ flag is set, then the
5083 * standard output, and the standard error if it becomes a duplicate of
5084 * stdout, is saved in memory.
5085 */
5086/* flags passed to redirect */
5087#define REDIR_PUSH 01 /* save previous values of file descriptors */
5088#define REDIR_SAVEFD2 03 /* set preverrout */
5089static void
5090redirect(union node *redir, int flags)
5091{
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005092 struct redirtab *sv;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005093 int sv_pos;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005094 int i;
5095 int fd;
5096 int newfd;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005097 int copied_fd2 = -1;
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005098
Denis Vlasenko01631112007-12-16 17:20:38 +00005099 g_nullredirs++;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005100 if (!redir) {
5101 return;
5102 }
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005103
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005104 sv = NULL;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005105 sv_pos = 0;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005106 INT_OFF;
5107 if (flags & REDIR_PUSH) {
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005108 union node *tmp = redir;
5109 do {
5110 sv_pos++;
Denis Vlasenko559691a2008-10-05 18:39:31 +00005111#if ENABLE_ASH_BASH_COMPAT
5112 if (redir->nfile.type == NTO2)
5113 sv_pos++;
5114#endif
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005115 tmp = tmp->nfile.next;
5116 } while (tmp);
5117 sv = ckmalloc(sizeof(*sv) + sv_pos * sizeof(sv->two_fd[0]));
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005118 sv->next = redirlist;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005119 sv->pair_count = sv_pos;
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005120 redirlist = sv;
Denis Vlasenko01631112007-12-16 17:20:38 +00005121 sv->nullredirs = g_nullredirs - 1;
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005122 g_nullredirs = 0;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005123 while (sv_pos > 0) {
5124 sv_pos--;
5125 sv->two_fd[sv_pos].orig = sv->two_fd[sv_pos].copy = EMPTY;
5126 }
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005127 }
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005128
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005129 do {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00005130 fd = redir->nfile.fd;
Denis Vlasenko0b769642008-07-24 07:54:57 +00005131 if (redir->nfile.type == NTOFD || redir->nfile.type == NFROMFD) {
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00005132 int right_fd = redir->ndup.dupfd;
5133 /* redirect from/to same file descriptor? */
5134 if (right_fd == fd)
5135 continue;
5136 /* echo >&10 and 10 is a fd opened to the sh script? */
5137 if (is_hidden_fd(sv, right_fd)) {
5138 errno = EBADF; /* as if it is closed */
5139 ash_msg_and_raise_error("%d: %m", right_fd);
5140 }
Denis Vlasenko0b769642008-07-24 07:54:57 +00005141 newfd = -1;
5142 } else {
5143 newfd = openredirect(redir); /* always >= 0 */
5144 if (fd == newfd) {
5145 /* Descriptor wasn't open before redirect.
5146 * Mark it for close in the future */
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005147 if (need_to_remember(sv, fd)) {
Denis Vlasenko5a867312008-07-24 19:46:38 +00005148 goto remember_to_close;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005149 }
Denis Vlasenko0b769642008-07-24 07:54:57 +00005150 continue;
5151 }
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005152 }
Denis Vlasenko559691a2008-10-05 18:39:31 +00005153#if ENABLE_ASH_BASH_COMPAT
5154 redirect_more:
5155#endif
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005156 if (need_to_remember(sv, fd)) {
Denis Vlasenko0b769642008-07-24 07:54:57 +00005157 /* Copy old descriptor */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005158 i = fcntl(fd, F_DUPFD, 10);
Denis Vlasenko5a867312008-07-24 19:46:38 +00005159/* You'd expect copy to be CLOEXECed. Currently these extra "saved" fds
5160 * are closed in popredir() in the child, preventing them from leaking
5161 * into child. (popredir() also cleans up the mess in case of failures)
5162 */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005163 if (i == -1) {
5164 i = errno;
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005165 if (i != EBADF) {
5166 /* Strange error (e.g. "too many files" EMFILE?) */
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005167 if (newfd >= 0)
5168 close(newfd);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005169 errno = i;
5170 ash_msg_and_raise_error("%d: %m", fd);
5171 /* NOTREACHED */
5172 }
Denis Vlasenko5a867312008-07-24 19:46:38 +00005173 /* EBADF: it is not open - good, remember to close it */
5174 remember_to_close:
5175 i = CLOSED;
Denis Vlasenko22f74142008-07-24 22:34:43 +00005176 } else { /* fd is open, save its copy */
5177 /* "exec fd>&-" should not close fds
5178 * which point to script file(s).
5179 * Force them to be restored afterwards */
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00005180 if (is_hidden_fd(sv, fd))
5181 i |= COPYFD_RESTORE;
Denis Vlasenko22f74142008-07-24 22:34:43 +00005182 }
Denis Vlasenko5a867312008-07-24 19:46:38 +00005183 if (fd == 2)
5184 copied_fd2 = i;
5185 sv->two_fd[sv_pos].orig = fd;
5186 sv->two_fd[sv_pos].copy = i;
5187 sv_pos++;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005188 }
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005189 if (newfd < 0) {
5190 /* NTOFD/NFROMFD: copy redir->ndup.dupfd to fd */
Denis Vlasenko22f74142008-07-24 22:34:43 +00005191 if (redir->ndup.dupfd < 0) { /* "fd>&-" */
Denis Vlasenkob9e70dd2009-03-20 01:24:08 +00005192 /* Don't want to trigger debugging */
5193 if (fd != -1)
5194 close(fd);
Denis Vlasenko5a867312008-07-24 19:46:38 +00005195 } else {
5196 copyfd(redir->ndup.dupfd, fd | COPYFD_EXACT);
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005197 }
Denis Vlasenko5a867312008-07-24 19:46:38 +00005198 } else if (fd != newfd) { /* move newfd to fd */
5199 copyfd(newfd, fd | COPYFD_EXACT);
Denis Vlasenko559691a2008-10-05 18:39:31 +00005200#if ENABLE_ASH_BASH_COMPAT
5201 if (!(redir->nfile.type == NTO2 && fd == 2))
5202#endif
5203 close(newfd);
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005204 }
Denis Vlasenko559691a2008-10-05 18:39:31 +00005205#if ENABLE_ASH_BASH_COMPAT
5206 if (redir->nfile.type == NTO2 && fd == 1) {
5207 /* We already redirected it to fd 1, now copy it to 2 */
5208 newfd = 1;
5209 fd = 2;
5210 goto redirect_more;
5211 }
5212#endif
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00005213 } while ((redir = redir->nfile.next) != NULL);
Denis Vlasenko8d924ec2008-07-24 11:34:27 +00005214
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005215 INT_ON;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005216 if ((flags & REDIR_SAVEFD2) && copied_fd2 >= 0)
5217 preverrout_fd = copied_fd2;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005218}
5219
5220/*
5221 * Undo the effects of the last redirection.
5222 */
5223static void
Denis Vlasenko34c73c42008-08-16 11:48:02 +00005224popredir(int drop, int restore)
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005225{
5226 struct redirtab *rp;
5227 int i;
5228
Denis Vlasenko01631112007-12-16 17:20:38 +00005229 if (--g_nullredirs >= 0)
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005230 return;
5231 INT_OFF;
5232 rp = redirlist;
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005233 for (i = 0; i < rp->pair_count; i++) {
5234 int fd = rp->two_fd[i].orig;
Denis Vlasenko22f74142008-07-24 22:34:43 +00005235 int copy = rp->two_fd[i].copy;
5236 if (copy == CLOSED) {
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005237 if (!drop)
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +00005238 close(fd);
Denis Vlasenko7d75a962007-11-22 08:16:57 +00005239 continue;
5240 }
Denis Vlasenko22f74142008-07-24 22:34:43 +00005241 if (copy != EMPTY) {
Denis Vlasenko34c73c42008-08-16 11:48:02 +00005242 if (!drop || (restore && (copy & COPYFD_RESTORE))) {
Denis Vlasenko22f74142008-07-24 22:34:43 +00005243 copy &= ~COPYFD_RESTORE;
Denis Vlasenko5a867312008-07-24 19:46:38 +00005244 /*close(fd);*/
Denis Vlasenko22f74142008-07-24 22:34:43 +00005245 copyfd(copy, fd | COPYFD_EXACT);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005246 }
Denis Vlasenkob9e70dd2009-03-20 01:24:08 +00005247 close(copy & ~COPYFD_RESTORE);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005248 }
5249 }
5250 redirlist = rp->next;
Denis Vlasenko01631112007-12-16 17:20:38 +00005251 g_nullredirs = rp->nullredirs;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005252 free(rp);
5253 INT_ON;
5254}
5255
5256/*
5257 * Undo all redirections. Called on error or interrupt.
5258 */
5259
5260/*
5261 * Discard all saved file descriptors.
5262 */
5263static void
5264clearredir(int drop)
5265{
5266 for (;;) {
Denis Vlasenko01631112007-12-16 17:20:38 +00005267 g_nullredirs = 0;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005268 if (!redirlist)
5269 break;
Denis Vlasenko34c73c42008-08-16 11:48:02 +00005270 popredir(drop, /*restore:*/ 0);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005271 }
5272}
5273
5274static int
5275redirectsafe(union node *redir, int flags)
5276{
5277 int err;
5278 volatile int saveint;
5279 struct jmploc *volatile savehandler = exception_handler;
5280 struct jmploc jmploc;
5281
5282 SAVE_INT(saveint);
Denis Vlasenko5a867312008-07-24 19:46:38 +00005283 /* "echo 9>/dev/null; echo >&9; echo result: $?" - result should be 1, not 2! */
5284 err = setjmp(jmploc.loc); // huh?? was = setjmp(jmploc.loc) * 2;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005285 if (!err) {
5286 exception_handler = &jmploc;
5287 redirect(redir, flags);
5288 }
5289 exception_handler = savehandler;
Denis Vlasenko7f88e342009-03-19 03:36:18 +00005290 if (err && exception_type != EXERROR)
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00005291 longjmp(exception_handler->loc, 1);
5292 RESTORE_INT(saveint);
5293 return err;
5294}
5295
5296
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005297/* ============ Routines to expand arguments to commands
5298 *
5299 * We have to deal with backquotes, shell variables, and file metacharacters.
5300 */
5301
Mike Frysinger98c52642009-04-02 10:02:37 +00005302#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00005303static arith_t
5304ash_arith(const char *s)
5305{
5306 arith_eval_hooks_t math_hooks;
5307 arith_t result;
5308 int errcode = 0;
5309
5310 math_hooks.lookupvar = lookupvar;
5311 math_hooks.setvar = setvar;
5312 math_hooks.endofname = endofname;
5313
5314 INT_OFF;
5315 result = arith(s, &errcode, &math_hooks);
5316 if (errcode < 0) {
5317 if (errcode == -3)
5318 ash_msg_and_raise_error("exponent less than 0");
5319 if (errcode == -2)
5320 ash_msg_and_raise_error("divide by zero");
5321 if (errcode == -5)
5322 ash_msg_and_raise_error("expression recursion loop detected");
5323 raise_error_syntax(s);
5324 }
5325 INT_ON;
5326
5327 return result;
5328}
Denis Vlasenko448d30e2008-06-27 00:24:11 +00005329#endif
5330
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005331/*
5332 * expandarg flags
5333 */
5334#define EXP_FULL 0x1 /* perform word splitting & file globbing */
5335#define EXP_TILDE 0x2 /* do normal tilde expansion */
5336#define EXP_VARTILDE 0x4 /* expand tildes in an assignment */
5337#define EXP_REDIR 0x8 /* file glob for a redirection (1 match only) */
5338#define EXP_CASE 0x10 /* keeps quotes around for CASE pattern */
5339#define EXP_RECORD 0x20 /* need to record arguments for ifs breakup */
5340#define EXP_VARTILDE2 0x40 /* expand tildes after colons only */
5341#define EXP_WORD 0x80 /* expand word in parameter expansion */
5342#define EXP_QWORD 0x100 /* expand word in quoted parameter expansion */
5343/*
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005344 * rmescape() flags
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005345 */
5346#define RMESCAPE_ALLOC 0x1 /* Allocate a new string */
5347#define RMESCAPE_GLOB 0x2 /* Add backslashes for glob */
5348#define RMESCAPE_QUOTED 0x4 /* Remove CTLESC unless in quotes */
5349#define RMESCAPE_GROW 0x8 /* Grow strings instead of stalloc */
5350#define RMESCAPE_HEAP 0x10 /* Malloc strings instead of stalloc */
5351
5352/*
5353 * Structure specifying which parts of the string should be searched
5354 * for IFS characters.
5355 */
5356struct ifsregion {
5357 struct ifsregion *next; /* next region in list */
5358 int begoff; /* offset of start of region */
5359 int endoff; /* offset of end of region */
5360 int nulonly; /* search for nul bytes only */
5361};
5362
5363struct arglist {
5364 struct strlist *list;
5365 struct strlist **lastp;
5366};
5367
5368/* output of current string */
5369static char *expdest;
5370/* list of back quote expressions */
5371static struct nodelist *argbackq;
5372/* first struct in list of ifs regions */
5373static struct ifsregion ifsfirst;
5374/* last struct in list */
5375static struct ifsregion *ifslastp;
5376/* holds expanded arg list */
5377static struct arglist exparg;
5378
5379/*
5380 * Our own itoa().
5381 */
5382static int
5383cvtnum(arith_t num)
5384{
5385 int len;
5386
5387 expdest = makestrspace(32, expdest);
Mike Frysinger98c52642009-04-02 10:02:37 +00005388 len = fmtstr(expdest, 32, arith_t_fmt, num);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005389 STADJUST(len, expdest);
5390 return len;
5391}
5392
5393static size_t
5394esclen(const char *start, const char *p)
5395{
5396 size_t esc = 0;
5397
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005398 while (p > start && (unsigned char)*--p == CTLESC) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005399 esc++;
5400 }
5401 return esc;
5402}
5403
5404/*
5405 * Remove any CTLESC characters from a string.
5406 */
5407static char *
Denys Vlasenkob6c84342009-08-29 20:23:20 +02005408rmescapes(char *str, int flag)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005409{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00005410 static const char qchars[] ALIGN1 = { CTLESC, CTLQUOTEMARK, '\0' };
Denis Vlasenkof20de5b2007-04-29 23:42:54 +00005411
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005412 char *p, *q, *r;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005413 unsigned inquotes;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005414 unsigned protect_against_glob;
5415 unsigned globbing;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005416
5417 p = strpbrk(str, qchars);
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005418 if (!p)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005419 return str;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005420
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005421 q = p;
5422 r = str;
5423 if (flag & RMESCAPE_ALLOC) {
5424 size_t len = p - str;
5425 size_t fulllen = len + strlen(p) + 1;
5426
5427 if (flag & RMESCAPE_GROW) {
5428 r = makestrspace(fulllen, expdest);
5429 } else if (flag & RMESCAPE_HEAP) {
5430 r = ckmalloc(fulllen);
5431 } else {
5432 r = stalloc(fulllen);
5433 }
5434 q = r;
5435 if (len > 0) {
Denis Vlasenko29eb3592008-05-18 14:06:08 +00005436 q = (char *)memcpy(q, str, len) + len;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005437 }
5438 }
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005439
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005440 inquotes = (flag & RMESCAPE_QUOTED) ^ RMESCAPE_QUOTED;
5441 globbing = flag & RMESCAPE_GLOB;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005442 protect_against_glob = globbing;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005443 while (*p) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01005444 if ((unsigned char)*p == CTLQUOTEMARK) {
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005445// TODO: if no RMESCAPE_QUOTED in flags, inquotes never becomes 0
5446// (alternates between RMESCAPE_QUOTED and ~RMESCAPE_QUOTED). Is it ok?
5447// Note: both inquotes and protect_against_glob only affect whether
5448// CTLESC,<ch> gets converted to <ch> or to \<ch>
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005449 inquotes = ~inquotes;
5450 p++;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005451 protect_against_glob = globbing;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005452 continue;
5453 }
5454 if (*p == '\\') {
5455 /* naked back slash */
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005456 protect_against_glob = 0;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005457 goto copy;
5458 }
Denys Vlasenkocd716832009-11-28 22:14:02 +01005459 if ((unsigned char)*p == CTLESC) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005460 p++;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005461 if (protect_against_glob && inquotes && *p != '/') {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005462 *q++ = '\\';
5463 }
5464 }
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005465 protect_against_glob = globbing;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005466 copy:
5467 *q++ = *p++;
5468 }
5469 *q = '\0';
5470 if (flag & RMESCAPE_GROW) {
5471 expdest = r;
5472 STADJUST(q - r + 1, expdest);
5473 }
5474 return r;
5475}
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005476#define pmatch(a, b) !fnmatch((a), (b), 0)
5477
5478/*
5479 * Prepare a pattern for a expmeta (internal glob(3)) call.
5480 *
5481 * Returns an stalloced string.
5482 */
5483static char *
5484preglob(const char *pattern, int quoted, int flag)
5485{
5486 flag |= RMESCAPE_GLOB;
5487 if (quoted) {
5488 flag |= RMESCAPE_QUOTED;
5489 }
Denys Vlasenkob6c84342009-08-29 20:23:20 +02005490 return rmescapes((char *)pattern, flag);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005491}
5492
5493/*
5494 * Put a string on the stack.
5495 */
5496static void
5497memtodest(const char *p, size_t len, int syntax, int quotes)
5498{
5499 char *q = expdest;
5500
Denys Vlasenkob6c84342009-08-29 20:23:20 +02005501 q = makestrspace(quotes ? len * 2 : len, q);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005502
5503 while (len--) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01005504 unsigned char c = *p++;
5505 if (c == '\0')
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005506 continue;
Denys Vlasenkob6c84342009-08-29 20:23:20 +02005507 if (quotes) {
5508 int n = SIT(c, syntax);
5509 if (n == CCTL || n == CBACK)
5510 USTPUTC(CTLESC, q);
5511 }
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005512 USTPUTC(c, q);
5513 }
5514
5515 expdest = q;
5516}
5517
5518static void
5519strtodest(const char *p, int syntax, int quotes)
5520{
5521 memtodest(p, strlen(p), syntax, quotes);
5522}
5523
5524/*
5525 * Record the fact that we have to scan this region of the
5526 * string for IFS characters.
5527 */
5528static void
5529recordregion(int start, int end, int nulonly)
5530{
5531 struct ifsregion *ifsp;
5532
5533 if (ifslastp == NULL) {
5534 ifsp = &ifsfirst;
5535 } else {
5536 INT_OFF;
Denis Vlasenko597906c2008-02-20 16:38:54 +00005537 ifsp = ckzalloc(sizeof(*ifsp));
5538 /*ifsp->next = NULL; - ckzalloc did it */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005539 ifslastp->next = ifsp;
5540 INT_ON;
5541 }
5542 ifslastp = ifsp;
5543 ifslastp->begoff = start;
5544 ifslastp->endoff = end;
5545 ifslastp->nulonly = nulonly;
5546}
5547
5548static void
5549removerecordregions(int endoff)
5550{
5551 if (ifslastp == NULL)
5552 return;
5553
5554 if (ifsfirst.endoff > endoff) {
5555 while (ifsfirst.next != NULL) {
5556 struct ifsregion *ifsp;
5557 INT_OFF;
5558 ifsp = ifsfirst.next->next;
5559 free(ifsfirst.next);
5560 ifsfirst.next = ifsp;
5561 INT_ON;
5562 }
5563 if (ifsfirst.begoff > endoff)
5564 ifslastp = NULL;
5565 else {
5566 ifslastp = &ifsfirst;
5567 ifsfirst.endoff = endoff;
5568 }
5569 return;
5570 }
5571
5572 ifslastp = &ifsfirst;
5573 while (ifslastp->next && ifslastp->next->begoff < endoff)
5574 ifslastp=ifslastp->next;
5575 while (ifslastp->next != NULL) {
5576 struct ifsregion *ifsp;
5577 INT_OFF;
5578 ifsp = ifslastp->next->next;
5579 free(ifslastp->next);
5580 ifslastp->next = ifsp;
5581 INT_ON;
5582 }
5583 if (ifslastp->endoff > endoff)
5584 ifslastp->endoff = endoff;
5585}
5586
5587static char *
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005588exptilde(char *startp, char *p, int flags)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005589{
Denys Vlasenkocd716832009-11-28 22:14:02 +01005590 unsigned char c;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005591 char *name;
5592 struct passwd *pw;
5593 const char *home;
Denys Vlasenko1166d7b2009-09-16 16:20:31 +02005594 int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005595 int startloc;
5596
5597 name = p + 1;
5598
5599 while ((c = *++p) != '\0') {
5600 switch (c) {
5601 case CTLESC:
5602 return startp;
5603 case CTLQUOTEMARK:
5604 return startp;
5605 case ':':
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005606 if (flags & EXP_VARTILDE)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005607 goto done;
5608 break;
5609 case '/':
5610 case CTLENDVAR:
5611 goto done;
5612 }
5613 }
5614 done:
5615 *p = '\0';
5616 if (*name == '\0') {
5617 home = lookupvar(homestr);
5618 } else {
5619 pw = getpwnam(name);
5620 if (pw == NULL)
5621 goto lose;
5622 home = pw->pw_dir;
5623 }
5624 if (!home || !*home)
5625 goto lose;
5626 *p = c;
5627 startloc = expdest - (char *)stackblock();
5628 strtodest(home, SQSYNTAX, quotes);
5629 recordregion(startloc, expdest - (char *)stackblock(), 0);
5630 return p;
5631 lose:
5632 *p = c;
5633 return startp;
5634}
5635
5636/*
5637 * Execute a command inside back quotes. If it's a builtin command, we
5638 * want to save its output in a block obtained from malloc. Otherwise
5639 * we fork off a subprocess and get the output of the command via a pipe.
5640 * Should be called with interrupts off.
5641 */
5642struct backcmd { /* result of evalbackcmd */
5643 int fd; /* file descriptor to read from */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005644 int nleft; /* number of chars in buffer */
Denis Vlasenkob07a4962008-06-22 13:16:23 +00005645 char *buf; /* buffer */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005646 struct job *jp; /* job structure for command */
5647};
5648
5649/* These forward decls are needed to use "eval" code for backticks handling: */
Denis Vlasenko448d30e2008-06-27 00:24:11 +00005650static uint8_t back_exitstatus; /* exit status of backquoted command */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005651#define EV_EXIT 01 /* exit after evaluating tree */
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02005652static void evaltree(union node *, int);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005653
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02005654static void FAST_FUNC
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005655evalbackcmd(union node *n, struct backcmd *result)
5656{
5657 int saveherefd;
5658
5659 result->fd = -1;
5660 result->buf = NULL;
5661 result->nleft = 0;
5662 result->jp = NULL;
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00005663 if (n == NULL)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005664 goto out;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005665
5666 saveherefd = herefd;
5667 herefd = -1;
5668
5669 {
5670 int pip[2];
5671 struct job *jp;
5672
5673 if (pipe(pip) < 0)
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00005674 ash_msg_and_raise_error("pipe call failed");
Denis Vlasenko68404f12008-03-17 09:00:54 +00005675 jp = makejob(/*n,*/ 1);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005676 if (forkshell(jp, n, FORK_NOJOB) == 0) {
5677 FORCE_INT_ON;
5678 close(pip[0]);
5679 if (pip[1] != 1) {
Denis Vlasenko5a867312008-07-24 19:46:38 +00005680 /*close(1);*/
5681 copyfd(pip[1], 1 | COPYFD_EXACT);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005682 close(pip[1]);
5683 }
5684 eflag = 0;
5685 evaltree(n, EV_EXIT); /* actually evaltreenr... */
5686 /* NOTREACHED */
5687 }
5688 close(pip[1]);
5689 result->fd = pip[0];
5690 result->jp = jp;
5691 }
5692 herefd = saveherefd;
5693 out:
5694 TRACE(("evalbackcmd done: fd=%d buf=0x%x nleft=%d jp=0x%x\n",
5695 result->fd, result->buf, result->nleft, result->jp));
5696}
5697
5698/*
5699 * Expand stuff in backwards quotes.
5700 */
5701static void
5702expbackq(union node *cmd, int quoted, int quotes)
5703{
5704 struct backcmd in;
5705 int i;
5706 char buf[128];
5707 char *p;
5708 char *dest;
5709 int startloc;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00005710 int syntax = quoted ? DQSYNTAX : BASESYNTAX;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005711 struct stackmark smark;
5712
5713 INT_OFF;
5714 setstackmark(&smark);
5715 dest = expdest;
5716 startloc = dest - (char *)stackblock();
5717 grabstackstr(dest);
5718 evalbackcmd(cmd, &in);
5719 popstackmark(&smark);
5720
5721 p = in.buf;
5722 i = in.nleft;
5723 if (i == 0)
5724 goto read;
5725 for (;;) {
5726 memtodest(p, i, syntax, quotes);
5727 read:
5728 if (in.fd < 0)
5729 break;
Denis Vlasenkoe376d452008-02-20 22:23:24 +00005730 i = nonblock_safe_read(in.fd, buf, sizeof(buf));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005731 TRACE(("expbackq: read returns %d\n", i));
5732 if (i <= 0)
5733 break;
5734 p = buf;
5735 }
5736
Denis Vlasenko60818682007-09-28 22:07:23 +00005737 free(in.buf);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005738 if (in.fd >= 0) {
5739 close(in.fd);
5740 back_exitstatus = waitforjob(in.jp);
5741 }
5742 INT_ON;
5743
5744 /* Eat all trailing newlines */
5745 dest = expdest;
5746 for (; dest > (char *)stackblock() && dest[-1] == '\n';)
5747 STUNPUTC(dest);
5748 expdest = dest;
5749
5750 if (quoted == 0)
5751 recordregion(startloc, dest - (char *)stackblock(), 0);
5752 TRACE(("evalbackq: size=%d: \"%.*s\"\n",
5753 (dest - (char *)stackblock()) - startloc,
5754 (dest - (char *)stackblock()) - startloc,
5755 stackblock() + startloc));
5756}
5757
Mike Frysinger98c52642009-04-02 10:02:37 +00005758#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005759/*
5760 * Expand arithmetic expression. Backup to start of expression,
5761 * evaluate, place result in (backed up) result, adjust string position.
5762 */
5763static void
5764expari(int quotes)
5765{
5766 char *p, *start;
5767 int begoff;
5768 int flag;
5769 int len;
5770
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00005771 /* ifsfree(); */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005772
5773 /*
5774 * This routine is slightly over-complicated for
5775 * efficiency. Next we scan backwards looking for the
5776 * start of arithmetic.
5777 */
5778 start = stackblock();
5779 p = expdest - 1;
5780 *p = '\0';
5781 p--;
5782 do {
5783 int esc;
5784
Denys Vlasenkocd716832009-11-28 22:14:02 +01005785 while ((unsigned char)*p != CTLARI) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005786 p--;
5787#if DEBUG
5788 if (p < start) {
5789 ash_msg_and_raise_error("missing CTLARI (shouldn't happen)");
5790 }
5791#endif
5792 }
5793
5794 esc = esclen(start, p);
5795 if (!(esc % 2)) {
5796 break;
5797 }
5798
5799 p -= esc + 1;
5800 } while (1);
5801
5802 begoff = p - start;
5803
5804 removerecordregions(begoff);
5805
5806 flag = p[1];
5807
5808 expdest = p;
5809
5810 if (quotes)
Denys Vlasenkob6c84342009-08-29 20:23:20 +02005811 rmescapes(p + 2, 0);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005812
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00005813 len = cvtnum(ash_arith(p + 2));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005814
5815 if (flag != '"')
5816 recordregion(begoff, begoff + len, 0);
5817}
5818#endif
5819
5820/* argstr needs it */
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005821static char *evalvar(char *p, int flags, struct strlist *var_str_list);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005822
5823/*
5824 * Perform variable and command substitution. If EXP_FULL is set, output CTLESC
5825 * characters to allow for further processing. Otherwise treat
5826 * $@ like $* since no splitting will be performed.
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00005827 *
5828 * var_str_list (can be NULL) is a list of "VAR=val" strings which take precedence
5829 * over shell varables. Needed for "A=a B=$A; echo $B" case - we use it
5830 * for correct expansion of "B=$A" word.
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005831 */
5832static void
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005833argstr(char *p, int flags, struct strlist *var_str_list)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005834{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00005835 static const char spclchars[] ALIGN1 = {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005836 '=',
5837 ':',
5838 CTLQUOTEMARK,
5839 CTLENDVAR,
5840 CTLESC,
5841 CTLVAR,
5842 CTLBACKQ,
5843 CTLBACKQ | CTLQUOTE,
Mike Frysinger98c52642009-04-02 10:02:37 +00005844#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005845 CTLENDARI,
5846#endif
Denys Vlasenkocd716832009-11-28 22:14:02 +01005847 '\0'
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005848 };
5849 const char *reject = spclchars;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005850 int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR); /* do CTLESC */
5851 int breakall = flags & EXP_WORD;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005852 int inquotes;
5853 size_t length;
5854 int startloc;
5855
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005856 if (!(flags & EXP_VARTILDE)) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005857 reject += 2;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005858 } else if (flags & EXP_VARTILDE2) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005859 reject++;
5860 }
5861 inquotes = 0;
5862 length = 0;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005863 if (flags & EXP_TILDE) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005864 char *q;
5865
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005866 flags &= ~EXP_TILDE;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005867 tilde:
5868 q = p;
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005869 if (*q == CTLESC && (flags & EXP_QWORD))
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005870 q++;
5871 if (*q == '~')
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005872 p = exptilde(p, q, flags);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005873 }
5874 start:
5875 startloc = expdest - (char *)stackblock();
5876 for (;;) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01005877 unsigned char c;
5878
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005879 length += strcspn(p + length, reject);
Denys Vlasenkocd716832009-11-28 22:14:02 +01005880 c = p[length];
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005881 if (c) {
5882 if (!(c & 0x80)
Mike Frysinger98c52642009-04-02 10:02:37 +00005883#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005884 || c == CTLENDARI
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005885#endif
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005886 ) {
5887 /* c == '=' || c == ':' || c == CTLENDARI */
5888 length++;
5889 }
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005890 }
5891 if (length > 0) {
5892 int newloc;
5893 expdest = stack_nputstr(p, length, expdest);
5894 newloc = expdest - (char *)stackblock();
5895 if (breakall && !inquotes && newloc > startloc) {
5896 recordregion(startloc, newloc, 0);
5897 }
5898 startloc = newloc;
5899 }
5900 p += length + 1;
5901 length = 0;
5902
5903 switch (c) {
5904 case '\0':
5905 goto breakloop;
5906 case '=':
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005907 if (flags & EXP_VARTILDE2) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005908 p--;
5909 continue;
5910 }
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005911 flags |= EXP_VARTILDE2;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005912 reject++;
5913 /* fall through */
5914 case ':':
5915 /*
5916 * sort of a hack - expand tildes in variable
5917 * assignments (after the first '=' and after ':'s).
5918 */
5919 if (*--p == '~') {
5920 goto tilde;
5921 }
5922 continue;
5923 }
5924
5925 switch (c) {
5926 case CTLENDVAR: /* ??? */
5927 goto breakloop;
5928 case CTLQUOTEMARK:
5929 /* "$@" syntax adherence hack */
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005930 if (!inquotes
5931 && memcmp(p, dolatstr, 4) == 0
5932 && ( p[4] == CTLQUOTEMARK
5933 || (p[4] == CTLENDVAR && p[5] == CTLQUOTEMARK)
5934 )
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005935 ) {
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005936 p = evalvar(p + 1, flags, /* var_str_list: */ NULL) + 1;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005937 goto start;
5938 }
5939 inquotes = !inquotes;
5940 addquote:
5941 if (quotes) {
5942 p--;
5943 length++;
5944 startloc++;
5945 }
5946 break;
5947 case CTLESC:
5948 startloc++;
5949 length++;
5950 goto addquote;
5951 case CTLVAR:
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005952 p = evalvar(p, flags, var_str_list);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005953 goto start;
5954 case CTLBACKQ:
Denys Vlasenkob0d63382009-09-16 16:18:32 +02005955 c = '\0';
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005956 case CTLBACKQ|CTLQUOTE:
5957 expbackq(argbackq->n, c, quotes);
5958 argbackq = argbackq->next;
5959 goto start;
Mike Frysinger98c52642009-04-02 10:02:37 +00005960#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005961 case CTLENDARI:
5962 p--;
5963 expari(quotes);
5964 goto start;
5965#endif
5966 }
5967 }
5968 breakloop:
5969 ;
5970}
5971
5972static char *
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005973scanleft(char *startp, char *rmesc, char *rmescend UNUSED_PARAM, char *str, int quotes,
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00005974 int zero)
5975{
Denis Vlasenkoc7131c32008-04-14 01:59:53 +00005976// This commented out code was added by James Simmons <jsimmons@infradead.org>
5977// as part of a larger change when he added support for ${var/a/b}.
5978// However, it broke # and % operators:
5979//
5980//var=ababcdcd
5981// ok bad
5982//echo ${var#ab} abcdcd abcdcd
5983//echo ${var##ab} abcdcd abcdcd
5984//echo ${var#a*b} abcdcd ababcdcd (!)
5985//echo ${var##a*b} cdcd cdcd
5986//echo ${var#?} babcdcd ababcdcd (!)
5987//echo ${var##?} babcdcd babcdcd
5988//echo ${var#*} ababcdcd babcdcd (!)
5989//echo ${var##*}
5990//echo ${var%cd} ababcd ababcd
5991//echo ${var%%cd} ababcd abab (!)
5992//echo ${var%c*d} ababcd ababcd
5993//echo ${var%%c*d} abab ababcdcd (!)
5994//echo ${var%?} ababcdc ababcdc
5995//echo ${var%%?} ababcdc ababcdcd (!)
5996//echo ${var%*} ababcdcd ababcdcd
5997//echo ${var%%*}
5998//
5999// Commenting it back out helped. Remove it completely if it really
6000// is not needed.
6001
6002 char *loc, *loc2; //, *full;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006003 char c;
6004
6005 loc = startp;
6006 loc2 = rmesc;
6007 do {
Denis Vlasenkoc7131c32008-04-14 01:59:53 +00006008 int match; // = strlen(str);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006009 const char *s = loc2;
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006010
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006011 c = *loc2;
6012 if (zero) {
6013 *loc2 = '\0';
6014 s = rmesc;
6015 }
Denis Vlasenkoc7131c32008-04-14 01:59:53 +00006016 match = pmatch(str, s); // this line was deleted
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006017
Denis Vlasenkoc7131c32008-04-14 01:59:53 +00006018// // chop off end if its '*'
6019// full = strrchr(str, '*');
6020// if (full && full != str)
6021// match--;
6022//
6023// // If str starts with '*' replace with s.
6024// if ((*str == '*') && strlen(s) >= match) {
6025// full = xstrdup(s);
6026// strncpy(full+strlen(s)-match+1, str+1, match-1);
6027// } else
6028// full = xstrndup(str, match);
6029// match = strncmp(s, full, strlen(full));
6030// free(full);
6031//
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006032 *loc2 = c;
Denis Vlasenkoc7131c32008-04-14 01:59:53 +00006033 if (match) // if (!match)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006034 return loc;
Denys Vlasenkocd716832009-11-28 22:14:02 +01006035 if (quotes && (unsigned char)*loc == CTLESC)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006036 loc++;
6037 loc++;
6038 loc2++;
6039 } while (c);
6040 return 0;
6041}
6042
6043static char *
6044scanright(char *startp, char *rmesc, char *rmescend, char *str, int quotes,
6045 int zero)
6046{
6047 int esc = 0;
6048 char *loc;
6049 char *loc2;
6050
6051 for (loc = str - 1, loc2 = rmescend; loc >= startp; loc2--) {
6052 int match;
6053 char c = *loc2;
6054 const char *s = loc2;
6055 if (zero) {
6056 *loc2 = '\0';
6057 s = rmesc;
6058 }
6059 match = pmatch(str, s);
6060 *loc2 = c;
6061 if (match)
6062 return loc;
6063 loc--;
6064 if (quotes) {
6065 if (--esc < 0) {
6066 esc = esclen(startp, loc);
6067 }
6068 if (esc % 2) {
6069 esc--;
6070 loc--;
6071 }
6072 }
6073 }
6074 return 0;
6075}
6076
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006077static void varunset(const char *, const char *, const char *, int) NORETURN;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006078static void
6079varunset(const char *end, const char *var, const char *umsg, int varflags)
6080{
6081 const char *msg;
6082 const char *tail;
6083
6084 tail = nullstr;
6085 msg = "parameter not set";
6086 if (umsg) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006087 if ((unsigned char)*end == CTLENDVAR) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006088 if (varflags & VSNUL)
6089 tail = " or null";
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00006090 } else {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006091 msg = umsg;
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00006092 }
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006093 }
6094 ash_msg_and_raise_error("%.*s: %s%s", end - var - 1, var, msg, tail);
6095}
6096
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006097#if ENABLE_ASH_BASH_COMPAT
6098static char *
6099parse_sub_pattern(char *arg, int inquotes)
6100{
6101 char *idx, *repl = NULL;
6102 unsigned char c;
6103
Denis Vlasenko2659c632008-06-14 06:04:59 +00006104 idx = arg;
6105 while (1) {
6106 c = *arg;
6107 if (!c)
6108 break;
6109 if (c == '/') {
6110 /* Only the first '/' seen is our separator */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006111 if (!repl) {
Denis Vlasenko2659c632008-06-14 06:04:59 +00006112 repl = idx + 1;
6113 c = '\0';
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006114 }
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006115 }
Denis Vlasenko2659c632008-06-14 06:04:59 +00006116 *idx++ = c;
6117 if (!inquotes && c == '\\' && arg[1] == '\\')
6118 arg++; /* skip both \\, not just first one */
6119 arg++;
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006120 }
Denis Vlasenko29038c02008-06-14 06:14:02 +00006121 *idx = c; /* NUL */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006122
6123 return repl;
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006124}
6125#endif /* ENABLE_ASH_BASH_COMPAT */
6126
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006127static const char *
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006128subevalvar(char *p, char *str, int strloc, int subtype,
6129 int startloc, int varflags, int quotes, struct strlist *var_str_list)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006130{
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006131 struct nodelist *saveargbackq = argbackq;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006132 char *startp;
6133 char *loc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006134 char *rmesc, *rmescend;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00006135 IF_ASH_BASH_COMPAT(char *repl = NULL;)
6136 IF_ASH_BASH_COMPAT(char null = '\0';)
6137 IF_ASH_BASH_COMPAT(int pos, len, orig_len;)
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006138 int saveherefd = herefd;
6139 int amount, workloc, resetloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006140 int zero;
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006141 char *(*scan)(char*, char*, char*, char*, int, int);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006142
6143 herefd = -1;
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006144 argstr(p, (subtype != VSASSIGN && subtype != VSQUESTION) ? EXP_CASE : 0,
6145 var_str_list);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006146 STPUTC('\0', expdest);
6147 herefd = saveherefd;
6148 argbackq = saveargbackq;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00006149 startp = (char *)stackblock() + startloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006150
6151 switch (subtype) {
6152 case VSASSIGN:
6153 setvar(str, startp, 0);
6154 amount = startp - expdest;
6155 STADJUST(amount, expdest);
6156 return startp;
6157
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006158#if ENABLE_ASH_BASH_COMPAT
6159 case VSSUBSTR:
6160 loc = str = stackblock() + strloc;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006161 /* Read POS in ${var:POS:LEN} */
6162 pos = atoi(loc); /* number(loc) errors out on "1:4" */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006163 len = str - startp - 1;
6164
6165 /* *loc != '\0', guaranteed by parser */
6166 if (quotes) {
6167 char *ptr;
6168
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006169 /* Adjust the length by the number of escapes */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006170 for (ptr = startp; ptr < (str - 1); ptr++) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006171 if ((unsigned char)*ptr == CTLESC) {
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006172 len--;
6173 ptr++;
6174 }
6175 }
6176 }
6177 orig_len = len;
6178
6179 if (*loc++ == ':') {
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006180 /* ${var::LEN} */
6181 len = number(loc);
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006182 } else {
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006183 /* Skip POS in ${var:POS:LEN} */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006184 len = orig_len;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006185 while (*loc && *loc != ':') {
6186 /* TODO?
6187 * bash complains on: var=qwe; echo ${var:1a:123}
6188 if (!isdigit(*loc))
6189 ash_msg_and_raise_error(msg_illnum, str);
6190 */
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006191 loc++;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006192 }
6193 if (*loc++ == ':') {
6194 len = number(loc);
6195 }
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006196 }
6197 if (pos >= orig_len) {
6198 pos = 0;
6199 len = 0;
6200 }
6201 if (len > (orig_len - pos))
6202 len = orig_len - pos;
6203
6204 for (str = startp; pos; str++, pos--) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006205 if (quotes && (unsigned char)*str == CTLESC)
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006206 str++;
6207 }
6208 for (loc = startp; len; len--) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006209 if (quotes && (unsigned char)*str == CTLESC)
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006210 *loc++ = *str++;
6211 *loc++ = *str++;
6212 }
6213 *loc = '\0';
6214 amount = loc - expdest;
6215 STADJUST(amount, expdest);
6216 return loc;
6217#endif
6218
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006219 case VSQUESTION:
6220 varunset(p, str, startp, varflags);
6221 /* NOTREACHED */
6222 }
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006223 resetloc = expdest - (char *)stackblock();
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006224
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006225 /* We'll comeback here if we grow the stack while handling
6226 * a VSREPLACE or VSREPLACEALL, since our pointers into the
6227 * stack will need rebasing, and we'll need to remove our work
6228 * areas each time
6229 */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00006230 IF_ASH_BASH_COMPAT(restart:)
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006231
6232 amount = expdest - ((char *)stackblock() + resetloc);
6233 STADJUST(-amount, expdest);
Denis Vlasenko29eb3592008-05-18 14:06:08 +00006234 startp = (char *)stackblock() + startloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006235
6236 rmesc = startp;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00006237 rmescend = (char *)stackblock() + strloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006238 if (quotes) {
Denys Vlasenkob6c84342009-08-29 20:23:20 +02006239 rmesc = rmescapes(startp, RMESCAPE_ALLOC | RMESCAPE_GROW);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006240 if (rmesc != startp) {
6241 rmescend = expdest;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00006242 startp = (char *)stackblock() + startloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006243 }
6244 }
6245 rmescend--;
Denis Vlasenko29eb3592008-05-18 14:06:08 +00006246 str = (char *)stackblock() + strloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006247 preglob(str, varflags & VSQUOTE, 0);
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006248 workloc = expdest - (char *)stackblock();
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006249
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006250#if ENABLE_ASH_BASH_COMPAT
6251 if (subtype == VSREPLACE || subtype == VSREPLACEALL) {
6252 char *idx, *end, *restart_detect;
6253
Denis Vlasenkod6855d12008-09-27 14:03:25 +00006254 if (!repl) {
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006255 repl = parse_sub_pattern(str, varflags & VSQUOTE);
6256 if (!repl)
6257 repl = &null;
6258 }
6259
6260 /* If there's no pattern to match, return the expansion unmolested */
6261 if (*str == '\0')
6262 return 0;
6263
6264 len = 0;
6265 idx = startp;
6266 end = str - 1;
6267 while (idx < end) {
6268 loc = scanright(idx, rmesc, rmescend, str, quotes, 1);
6269 if (!loc) {
6270 /* No match, advance */
6271 restart_detect = stackblock();
6272 STPUTC(*idx, expdest);
Denys Vlasenkocd716832009-11-28 22:14:02 +01006273 if (quotes && (unsigned char)*idx == CTLESC) {
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006274 idx++;
6275 len++;
6276 STPUTC(*idx, expdest);
6277 }
6278 if (stackblock() != restart_detect)
6279 goto restart;
6280 idx++;
6281 len++;
6282 rmesc++;
6283 continue;
6284 }
6285
6286 if (subtype == VSREPLACEALL) {
6287 while (idx < loc) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006288 if (quotes && (unsigned char)*idx == CTLESC)
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006289 idx++;
6290 idx++;
6291 rmesc++;
6292 }
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00006293 } else {
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006294 idx = loc;
Denis Vlasenko81c3a1d2008-12-03 11:59:12 +00006295 }
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006296
6297 for (loc = repl; *loc; loc++) {
6298 restart_detect = stackblock();
6299 STPUTC(*loc, expdest);
6300 if (stackblock() != restart_detect)
6301 goto restart;
6302 len++;
6303 }
6304
6305 if (subtype == VSREPLACE) {
6306 while (*idx) {
6307 restart_detect = stackblock();
6308 STPUTC(*idx, expdest);
6309 if (stackblock() != restart_detect)
6310 goto restart;
6311 len++;
6312 idx++;
6313 }
6314 break;
6315 }
6316 }
6317
6318 /* We've put the replaced text into a buffer at workloc, now
6319 * move it to the right place and adjust the stack.
6320 */
6321 startp = stackblock() + startloc;
6322 STPUTC('\0', expdest);
6323 memmove(startp, stackblock() + workloc, len);
6324 startp[len++] = '\0';
6325 amount = expdest - ((char *)stackblock() + startloc + len - 1);
6326 STADJUST(-amount, expdest);
6327 return startp;
6328 }
6329#endif /* ENABLE_ASH_BASH_COMPAT */
6330
6331 subtype -= VSTRIMRIGHT;
6332#if DEBUG
6333 if (subtype < 0 || subtype > 7)
6334 abort();
6335#endif
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006336 /* zero = subtype == VSTRIMLEFT || subtype == VSTRIMLEFTMAX */
6337 zero = subtype >> 1;
6338 /* VSTRIMLEFT/VSTRIMRIGHTMAX -> scanleft */
6339 scan = (subtype & 1) ^ zero ? scanleft : scanright;
6340
6341 loc = scan(startp, rmesc, rmescend, str, quotes, zero);
6342 if (loc) {
6343 if (zero) {
6344 memmove(startp, loc, str - loc);
6345 loc = startp + (str - loc) - 1;
6346 }
6347 *loc = '\0';
6348 amount = loc - expdest;
6349 STADJUST(amount, expdest);
6350 }
6351 return loc;
6352}
6353
6354/*
6355 * Add the value of a specialized variable to the stack string.
Denys Vlasenko4d8873f2009-10-04 03:14:41 +02006356 * name parameter (examples):
6357 * ash -c 'echo $1' name:'1='
6358 * ash -c 'echo $qwe' name:'qwe='
6359 * ash -c 'echo $$' name:'$='
6360 * ash -c 'echo ${$}' name:'$='
6361 * ash -c 'echo ${$##q}' name:'$=q'
6362 * ash -c 'echo ${#$}' name:'$='
6363 * note: examples with bad shell syntax:
6364 * ash -c 'echo ${#$1}' name:'$=1'
6365 * ash -c 'echo ${#1#}' name:'1=#'
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006366 */
Denys Vlasenkoadf922e2009-10-08 14:35:37 +02006367static NOINLINE ssize_t
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006368varvalue(char *name, int varflags, int flags, struct strlist *var_str_list)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006369{
Mike Frysinger98c52642009-04-02 10:02:37 +00006370 const char *p;
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006371 int num;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006372 int i;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006373 int sepq = 0;
6374 ssize_t len = 0;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006375 int subtype = varflags & VSTYPE;
Denys Vlasenko1166d7b2009-09-16 16:20:31 +02006376 int quotes = flags & (EXP_FULL | EXP_CASE | EXP_REDIR);
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006377 int quoted = varflags & VSQUOTE;
6378 int syntax = quoted ? DQSYNTAX : BASESYNTAX;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006379
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006380 switch (*name) {
6381 case '$':
6382 num = rootpid;
6383 goto numvar;
6384 case '?':
6385 num = exitstatus;
6386 goto numvar;
6387 case '#':
6388 num = shellparam.nparam;
6389 goto numvar;
6390 case '!':
6391 num = backgndpid;
6392 if (num == 0)
6393 return -1;
6394 numvar:
6395 len = cvtnum(num);
Denys Vlasenko4d8873f2009-10-04 03:14:41 +02006396 goto check_1char_name;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006397 case '-':
Mike Frysinger98c52642009-04-02 10:02:37 +00006398 expdest = makestrspace(NOPTS, expdest);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006399 for (i = NOPTS - 1; i >= 0; i--) {
6400 if (optlist[i]) {
Mike Frysinger98c52642009-04-02 10:02:37 +00006401 USTPUTC(optletters(i), expdest);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006402 len++;
6403 }
6404 }
Denys Vlasenko4d8873f2009-10-04 03:14:41 +02006405 check_1char_name:
6406#if 0
6407 /* handles cases similar to ${#$1} */
6408 if (name[2] != '\0')
6409 raise_error_syntax("bad substitution");
6410#endif
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006411 break;
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006412 case '@': {
6413 char **ap;
6414 int sep;
6415
6416 if (quoted && (flags & EXP_FULL)) {
6417 /* note: this is not meant as PEOF value */
6418 sep = 1 << CHAR_BIT;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006419 goto param;
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006420 }
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006421 /* fall through */
6422 case '*':
Denys Vlasenkocd716832009-11-28 22:14:02 +01006423 sep = ifsset() ? (unsigned char)(ifsval()[0]) : ' ';
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006424 i = SIT(sep, syntax);
6425 if (quotes && (i == CCTL || i == CBACK))
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006426 sepq = 1;
6427 param:
6428 ap = shellparam.p;
6429 if (!ap)
6430 return -1;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006431 while ((p = *ap++) != NULL) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006432 size_t partlen;
6433
6434 partlen = strlen(p);
6435 len += partlen;
6436
6437 if (!(subtype == VSPLUS || subtype == VSLENGTH))
6438 memtodest(p, partlen, syntax, quotes);
6439
6440 if (*ap && sep) {
6441 char *q;
6442
6443 len++;
6444 if (subtype == VSPLUS || subtype == VSLENGTH) {
6445 continue;
6446 }
6447 q = expdest;
6448 if (sepq)
6449 STPUTC(CTLESC, q);
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006450 /* note: may put NUL despite sep != 0
6451 * (see sep = 1 << CHAR_BIT above) */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006452 STPUTC(sep, q);
6453 expdest = q;
6454 }
6455 }
6456 return len;
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006457 } /* case '@' and '*' */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006458 case '0':
6459 case '1':
6460 case '2':
6461 case '3':
6462 case '4':
6463 case '5':
6464 case '6':
6465 case '7':
6466 case '8':
6467 case '9':
Denys Vlasenkoa00329c2009-08-30 20:05:10 +02006468 num = atoi(name); /* number(name) fails on ${N#str} etc */
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006469 if (num < 0 || num > shellparam.nparam)
6470 return -1;
6471 p = num ? shellparam.p[num - 1] : arg0;
6472 goto value;
6473 default:
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006474 /* NB: name has form "VAR=..." */
6475
6476 /* "A=a B=$A" case: var_str_list is a list of "A=a" strings
6477 * which should be considered before we check variables. */
6478 if (var_str_list) {
6479 unsigned name_len = (strchrnul(name, '=') - name) + 1;
6480 p = NULL;
6481 do {
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00006482 char *str, *eq;
6483 str = var_str_list->text;
6484 eq = strchr(str, '=');
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006485 if (!eq) /* stop at first non-assignment */
6486 break;
6487 eq++;
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00006488 if (name_len == (unsigned)(eq - str)
Denys Vlasenko8eda4a92009-11-30 12:16:17 +01006489 && strncmp(str, name, name_len) == 0
6490 ) {
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006491 p = eq;
6492 /* goto value; - WRONG! */
6493 /* think "A=1 A=2 B=$A" */
6494 }
6495 var_str_list = var_str_list->next;
6496 } while (var_str_list);
6497 if (p)
6498 goto value;
6499 }
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006500 p = lookupvar(name);
6501 value:
6502 if (!p)
6503 return -1;
6504
6505 len = strlen(p);
6506 if (!(subtype == VSPLUS || subtype == VSLENGTH))
6507 memtodest(p, len, syntax, quotes);
6508 return len;
6509 }
6510
6511 if (subtype == VSPLUS || subtype == VSLENGTH)
6512 STADJUST(-len, expdest);
6513 return len;
6514}
6515
6516/*
6517 * Expand a variable, and return a pointer to the next character in the
6518 * input string.
6519 */
6520static char *
Denys Vlasenkob0d63382009-09-16 16:18:32 +02006521evalvar(char *p, int flags, struct strlist *var_str_list)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006522{
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006523 char varflags;
6524 char subtype;
6525 char quoted;
6526 char easy;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006527 char *var;
6528 int patloc;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006529 int startloc;
6530 ssize_t varlen;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006531
Denys Vlasenkob0d63382009-09-16 16:18:32 +02006532 varflags = (unsigned char) *p++;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006533 subtype = varflags & VSTYPE;
6534 quoted = varflags & VSQUOTE;
6535 var = p;
6536 easy = (!quoted || (*var == '@' && shellparam.nparam));
6537 startloc = expdest - (char *)stackblock();
6538 p = strchr(p, '=') + 1;
6539
6540 again:
Denys Vlasenkob0d63382009-09-16 16:18:32 +02006541 varlen = varvalue(var, varflags, flags, var_str_list);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006542 if (varflags & VSNUL)
6543 varlen--;
6544
6545 if (subtype == VSPLUS) {
6546 varlen = -1 - varlen;
6547 goto vsplus;
6548 }
6549
6550 if (subtype == VSMINUS) {
6551 vsplus:
6552 if (varlen < 0) {
6553 argstr(
Denys Vlasenkob0d63382009-09-16 16:18:32 +02006554 p, flags | EXP_TILDE |
6555 (quoted ? EXP_QWORD : EXP_WORD),
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006556 var_str_list
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006557 );
6558 goto end;
6559 }
6560 if (easy)
6561 goto record;
6562 goto end;
6563 }
6564
6565 if (subtype == VSASSIGN || subtype == VSQUESTION) {
6566 if (varlen < 0) {
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006567 if (subevalvar(p, var, /* strloc: */ 0,
6568 subtype, startloc, varflags,
6569 /* quotes: */ 0,
6570 var_str_list)
6571 ) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006572 varflags &= ~VSNUL;
6573 /*
6574 * Remove any recorded regions beyond
6575 * start of variable
6576 */
6577 removerecordregions(startloc);
6578 goto again;
6579 }
6580 goto end;
6581 }
6582 if (easy)
6583 goto record;
6584 goto end;
6585 }
6586
6587 if (varlen < 0 && uflag)
6588 varunset(p, var, 0, 0);
6589
6590 if (subtype == VSLENGTH) {
6591 cvtnum(varlen > 0 ? varlen : 0);
6592 goto record;
6593 }
6594
6595 if (subtype == VSNORMAL) {
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006596 if (easy)
6597 goto record;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006598 goto end;
6599 }
6600
6601#if DEBUG
6602 switch (subtype) {
6603 case VSTRIMLEFT:
6604 case VSTRIMLEFTMAX:
6605 case VSTRIMRIGHT:
6606 case VSTRIMRIGHTMAX:
Denis Vlasenko92e13c22008-03-25 01:17:40 +00006607#if ENABLE_ASH_BASH_COMPAT
6608 case VSSUBSTR:
6609 case VSREPLACE:
6610 case VSREPLACEALL:
6611#endif
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006612 break;
6613 default:
6614 abort();
6615 }
6616#endif
6617
6618 if (varlen >= 0) {
6619 /*
6620 * Terminate the string and start recording the pattern
6621 * right after it
6622 */
6623 STPUTC('\0', expdest);
6624 patloc = expdest - (char *)stackblock();
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006625 if (0 == subevalvar(p, /* str: */ NULL, patloc, subtype,
6626 startloc, varflags,
Denys Vlasenko1166d7b2009-09-16 16:20:31 +02006627//TODO: | EXP_REDIR too? All other such places do it too
Denys Vlasenkob0d63382009-09-16 16:18:32 +02006628 /* quotes: */ flags & (EXP_FULL | EXP_CASE),
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006629 var_str_list)
6630 ) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006631 int amount = expdest - (
6632 (char *)stackblock() + patloc - 1
6633 );
6634 STADJUST(-amount, expdest);
6635 }
6636 /* Remove any recorded regions beyond start of variable */
6637 removerecordregions(startloc);
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00006638 record:
6639 recordregion(startloc, expdest - (char *)stackblock(), quoted);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006640 }
6641
6642 end:
6643 if (subtype != VSNORMAL) { /* skip to end of alternative */
6644 int nesting = 1;
6645 for (;;) {
Denys Vlasenkocd716832009-11-28 22:14:02 +01006646 unsigned char c = *p++;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006647 if (c == CTLESC)
6648 p++;
6649 else if (c == CTLBACKQ || c == (CTLBACKQ|CTLQUOTE)) {
6650 if (varlen >= 0)
6651 argbackq = argbackq->next;
6652 } else if (c == CTLVAR) {
6653 if ((*p++ & VSTYPE) != VSNORMAL)
6654 nesting++;
6655 } else if (c == CTLENDVAR) {
6656 if (--nesting == 0)
6657 break;
6658 }
6659 }
6660 }
6661 return p;
6662}
6663
6664/*
6665 * Break the argument string into pieces based upon IFS and add the
6666 * strings to the argument list. The regions of the string to be
6667 * searched for IFS characters have been stored by recordregion.
6668 */
6669static void
6670ifsbreakup(char *string, struct arglist *arglist)
6671{
6672 struct ifsregion *ifsp;
6673 struct strlist *sp;
6674 char *start;
6675 char *p;
6676 char *q;
6677 const char *ifs, *realifs;
6678 int ifsspc;
6679 int nulonly;
6680
6681 start = string;
6682 if (ifslastp != NULL) {
6683 ifsspc = 0;
6684 nulonly = 0;
6685 realifs = ifsset() ? ifsval() : defifs;
6686 ifsp = &ifsfirst;
6687 do {
6688 p = string + ifsp->begoff;
6689 nulonly = ifsp->nulonly;
6690 ifs = nulonly ? nullstr : realifs;
6691 ifsspc = 0;
6692 while (p < string + ifsp->endoff) {
6693 q = p;
Denys Vlasenkocd716832009-11-28 22:14:02 +01006694 if ((unsigned char)*p == CTLESC)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006695 p++;
6696 if (!strchr(ifs, *p)) {
6697 p++;
6698 continue;
6699 }
6700 if (!nulonly)
6701 ifsspc = (strchr(defifs, *p) != NULL);
6702 /* Ignore IFS whitespace at start */
6703 if (q == start && ifsspc) {
6704 p++;
6705 start = p;
6706 continue;
6707 }
6708 *q = '\0';
Denis Vlasenko597906c2008-02-20 16:38:54 +00006709 sp = stzalloc(sizeof(*sp));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006710 sp->text = start;
6711 *arglist->lastp = sp;
6712 arglist->lastp = &sp->next;
6713 p++;
6714 if (!nulonly) {
6715 for (;;) {
6716 if (p >= string + ifsp->endoff) {
6717 break;
6718 }
6719 q = p;
Denys Vlasenkocd716832009-11-28 22:14:02 +01006720 if ((unsigned char)*p == CTLESC)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006721 p++;
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +00006722 if (strchr(ifs, *p) == NULL) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006723 p = q;
6724 break;
Denis Vlasenko597906c2008-02-20 16:38:54 +00006725 }
6726 if (strchr(defifs, *p) == NULL) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006727 if (ifsspc) {
6728 p++;
6729 ifsspc = 0;
6730 } else {
6731 p = q;
6732 break;
6733 }
6734 } else
6735 p++;
6736 }
6737 }
6738 start = p;
6739 } /* while */
6740 ifsp = ifsp->next;
6741 } while (ifsp != NULL);
6742 if (nulonly)
6743 goto add;
6744 }
6745
6746 if (!*start)
6747 return;
6748
6749 add:
Denis Vlasenko597906c2008-02-20 16:38:54 +00006750 sp = stzalloc(sizeof(*sp));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006751 sp->text = start;
6752 *arglist->lastp = sp;
6753 arglist->lastp = &sp->next;
6754}
6755
6756static void
6757ifsfree(void)
6758{
6759 struct ifsregion *p;
6760
6761 INT_OFF;
6762 p = ifsfirst.next;
6763 do {
6764 struct ifsregion *ifsp;
6765 ifsp = p->next;
6766 free(p);
6767 p = ifsp;
6768 } while (p);
6769 ifslastp = NULL;
6770 ifsfirst.next = NULL;
6771 INT_ON;
6772}
6773
6774/*
6775 * Add a file name to the list.
6776 */
6777static void
6778addfname(const char *name)
6779{
6780 struct strlist *sp;
6781
Denis Vlasenko597906c2008-02-20 16:38:54 +00006782 sp = stzalloc(sizeof(*sp));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006783 sp->text = ststrdup(name);
6784 *exparg.lastp = sp;
6785 exparg.lastp = &sp->next;
6786}
6787
6788static char *expdir;
6789
6790/*
6791 * Do metacharacter (i.e. *, ?, [...]) expansion.
6792 */
6793static void
6794expmeta(char *enddir, char *name)
6795{
6796 char *p;
6797 const char *cp;
6798 char *start;
6799 char *endname;
6800 int metaflag;
6801 struct stat statb;
6802 DIR *dirp;
6803 struct dirent *dp;
6804 int atend;
6805 int matchdot;
6806
6807 metaflag = 0;
6808 start = name;
6809 for (p = name; *p; p++) {
6810 if (*p == '*' || *p == '?')
6811 metaflag = 1;
6812 else if (*p == '[') {
6813 char *q = p + 1;
6814 if (*q == '!')
6815 q++;
6816 for (;;) {
6817 if (*q == '\\')
6818 q++;
6819 if (*q == '/' || *q == '\0')
6820 break;
6821 if (*++q == ']') {
6822 metaflag = 1;
6823 break;
6824 }
6825 }
6826 } else if (*p == '\\')
6827 p++;
6828 else if (*p == '/') {
6829 if (metaflag)
6830 goto out;
6831 start = p + 1;
6832 }
6833 }
6834 out:
6835 if (metaflag == 0) { /* we've reached the end of the file name */
6836 if (enddir != expdir)
6837 metaflag++;
6838 p = name;
6839 do {
6840 if (*p == '\\')
6841 p++;
6842 *enddir++ = *p;
6843 } while (*p++);
6844 if (metaflag == 0 || lstat(expdir, &statb) >= 0)
6845 addfname(expdir);
6846 return;
6847 }
6848 endname = p;
6849 if (name < start) {
6850 p = name;
6851 do {
6852 if (*p == '\\')
6853 p++;
6854 *enddir++ = *p++;
6855 } while (p < start);
6856 }
6857 if (enddir == expdir) {
6858 cp = ".";
6859 } else if (enddir == expdir + 1 && *expdir == '/') {
6860 cp = "/";
6861 } else {
6862 cp = expdir;
6863 enddir[-1] = '\0';
6864 }
6865 dirp = opendir(cp);
6866 if (dirp == NULL)
6867 return;
6868 if (enddir != expdir)
6869 enddir[-1] = '/';
6870 if (*endname == 0) {
6871 atend = 1;
6872 } else {
6873 atend = 0;
6874 *endname++ = '\0';
6875 }
6876 matchdot = 0;
6877 p = start;
6878 if (*p == '\\')
6879 p++;
6880 if (*p == '.')
6881 matchdot++;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02006882 while (!pending_int && (dp = readdir(dirp)) != NULL) {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00006883 if (dp->d_name[0] == '.' && !matchdot)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006884 continue;
6885 if (pmatch(start, dp->d_name)) {
6886 if (atend) {
6887 strcpy(enddir, dp->d_name);
6888 addfname(expdir);
6889 } else {
6890 for (p = enddir, cp = dp->d_name; (*p++ = *cp++) != '\0';)
6891 continue;
6892 p[-1] = '/';
6893 expmeta(p, endname);
6894 }
6895 }
6896 }
6897 closedir(dirp);
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00006898 if (!atend)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006899 endname[-1] = '/';
6900}
6901
6902static struct strlist *
6903msort(struct strlist *list, int len)
6904{
6905 struct strlist *p, *q = NULL;
6906 struct strlist **lpp;
6907 int half;
6908 int n;
6909
6910 if (len <= 1)
6911 return list;
6912 half = len >> 1;
6913 p = list;
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +00006914 for (n = half; --n >= 0;) {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006915 q = p;
6916 p = p->next;
6917 }
6918 q->next = NULL; /* terminate first half of list */
6919 q = msort(list, half); /* sort first half of list */
6920 p = msort(p, len - half); /* sort second half */
6921 lpp = &list;
6922 for (;;) {
6923#if ENABLE_LOCALE_SUPPORT
6924 if (strcoll(p->text, q->text) < 0)
6925#else
6926 if (strcmp(p->text, q->text) < 0)
6927#endif
6928 {
6929 *lpp = p;
6930 lpp = &p->next;
6931 p = *lpp;
6932 if (p == NULL) {
6933 *lpp = q;
6934 break;
6935 }
6936 } else {
6937 *lpp = q;
6938 lpp = &q->next;
6939 q = *lpp;
6940 if (q == NULL) {
6941 *lpp = p;
6942 break;
6943 }
6944 }
6945 }
6946 return list;
6947}
6948
6949/*
6950 * Sort the results of file name expansion. It calculates the number of
6951 * strings to sort and then calls msort (short for merge sort) to do the
6952 * work.
6953 */
6954static struct strlist *
6955expsort(struct strlist *str)
6956{
6957 int len;
6958 struct strlist *sp;
6959
6960 len = 0;
6961 for (sp = str; sp; sp = sp->next)
6962 len++;
6963 return msort(str, len);
6964}
6965
6966static void
Denis Vlasenko68404f12008-03-17 09:00:54 +00006967expandmeta(struct strlist *str /*, int flag*/)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006968{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +00006969 static const char metachars[] ALIGN1 = {
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00006970 '*', '?', '[', 0
6971 };
6972 /* TODO - EXP_REDIR */
6973
6974 while (str) {
6975 struct strlist **savelastp;
6976 struct strlist *sp;
6977 char *p;
6978
6979 if (fflag)
6980 goto nometa;
6981 if (!strpbrk(str->text, metachars))
6982 goto nometa;
6983 savelastp = exparg.lastp;
6984
6985 INT_OFF;
6986 p = preglob(str->text, 0, RMESCAPE_ALLOC | RMESCAPE_HEAP);
6987 {
6988 int i = strlen(str->text);
6989 expdir = ckmalloc(i < 2048 ? 2048 : i); /* XXX */
6990 }
6991
6992 expmeta(expdir, p);
6993 free(expdir);
6994 if (p != str->text)
6995 free(p);
6996 INT_ON;
6997 if (exparg.lastp == savelastp) {
6998 /*
6999 * no matches
7000 */
7001 nometa:
7002 *exparg.lastp = str;
Denys Vlasenkob6c84342009-08-29 20:23:20 +02007003 rmescapes(str->text, 0);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007004 exparg.lastp = &str->next;
7005 } else {
7006 *exparg.lastp = NULL;
7007 *savelastp = sp = expsort(*savelastp);
7008 while (sp->next != NULL)
7009 sp = sp->next;
7010 exparg.lastp = &sp->next;
7011 }
7012 str = str->next;
7013 }
7014}
7015
7016/*
7017 * Perform variable substitution and command substitution on an argument,
7018 * placing the resulting list of arguments in arglist. If EXP_FULL is true,
7019 * perform splitting and file name expansion. When arglist is NULL, perform
7020 * here document expansion.
7021 */
7022static void
7023expandarg(union node *arg, struct arglist *arglist, int flag)
7024{
7025 struct strlist *sp;
7026 char *p;
7027
7028 argbackq = arg->narg.backquote;
7029 STARTSTACKSTR(expdest);
7030 ifsfirst.next = NULL;
7031 ifslastp = NULL;
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00007032 argstr(arg->narg.text, flag,
7033 /* var_str_list: */ arglist ? arglist->list : NULL);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007034 p = _STPUTC('\0', expdest);
7035 expdest = p - 1;
7036 if (arglist == NULL) {
7037 return; /* here document expanded */
7038 }
7039 p = grabstackstr(p);
7040 exparg.lastp = &exparg.list;
7041 /*
7042 * TODO - EXP_REDIR
7043 */
7044 if (flag & EXP_FULL) {
7045 ifsbreakup(p, &exparg);
7046 *exparg.lastp = NULL;
7047 exparg.lastp = &exparg.list;
Denis Vlasenko68404f12008-03-17 09:00:54 +00007048 expandmeta(exparg.list /*, flag*/);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007049 } else {
7050 if (flag & EXP_REDIR) /*XXX - for now, just remove escapes */
Denys Vlasenkob6c84342009-08-29 20:23:20 +02007051 rmescapes(p, 0);
Denis Vlasenko597906c2008-02-20 16:38:54 +00007052 sp = stzalloc(sizeof(*sp));
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007053 sp->text = p;
7054 *exparg.lastp = sp;
7055 exparg.lastp = &sp->next;
7056 }
7057 if (ifsfirst.next)
7058 ifsfree();
7059 *exparg.lastp = NULL;
7060 if (exparg.list) {
7061 *arglist->lastp = exparg.list;
7062 arglist->lastp = exparg.lastp;
7063 }
7064}
7065
7066/*
7067 * Expand shell variables and backquotes inside a here document.
7068 */
7069static void
7070expandhere(union node *arg, int fd)
7071{
7072 herefd = fd;
7073 expandarg(arg, (struct arglist *)NULL, 0);
7074 full_write(fd, stackblock(), expdest - (char *)stackblock());
7075}
7076
7077/*
7078 * Returns true if the pattern matches the string.
7079 */
7080static int
7081patmatch(char *pattern, const char *string)
7082{
7083 return pmatch(preglob(pattern, 0, 0), string);
7084}
7085
7086/*
7087 * See if a pattern matches in a case statement.
7088 */
7089static int
7090casematch(union node *pattern, char *val)
7091{
7092 struct stackmark smark;
7093 int result;
7094
7095 setstackmark(&smark);
7096 argbackq = pattern->narg.backquote;
7097 STARTSTACKSTR(expdest);
7098 ifslastp = NULL;
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00007099 argstr(pattern->narg.text, EXP_TILDE | EXP_CASE,
7100 /* var_str_list: */ NULL);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007101 STACKSTRNUL(expdest);
7102 result = patmatch(stackblock(), val);
7103 popstackmark(&smark);
7104 return result;
7105}
7106
7107
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007108/* ============ find_command */
7109
7110struct builtincmd {
7111 const char *name;
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007112 int (*builtin)(int, char **) FAST_FUNC;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007113 /* unsigned flags; */
7114};
7115#define IS_BUILTIN_SPECIAL(b) ((b)->name[0] & 1)
Denis Vlasenkoe26b2782008-02-12 07:40:29 +00007116/* "regular" builtins always take precedence over commands,
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007117 * regardless of PATH=....%builtin... position */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007118#define IS_BUILTIN_REGULAR(b) ((b)->name[0] & 2)
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007119#define IS_BUILTIN_ASSIGN(b) ((b)->name[0] & 4)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007120
7121struct cmdentry {
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00007122 smallint cmdtype; /* CMDxxx */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007123 union param {
7124 int index;
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00007125 /* index >= 0 for commands without path (slashes) */
7126 /* (TODO: what exactly does the value mean? PATH position?) */
7127 /* index == -1 for commands with slashes */
7128 /* index == (-2 - applet_no) for NOFORK applets */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007129 const struct builtincmd *cmd;
7130 struct funcnode *func;
7131 } u;
7132};
7133/* values of cmdtype */
7134#define CMDUNKNOWN -1 /* no entry in table for command */
7135#define CMDNORMAL 0 /* command is an executable program */
7136#define CMDFUNCTION 1 /* command is a shell function */
7137#define CMDBUILTIN 2 /* command is a shell builtin */
7138
7139/* action to find_command() */
7140#define DO_ERR 0x01 /* prints errors */
7141#define DO_ABS 0x02 /* checks absolute paths */
7142#define DO_NOFUNC 0x04 /* don't return shell functions, for command */
7143#define DO_ALTPATH 0x08 /* using alternate path */
7144#define DO_ALTBLTIN 0x20 /* %builtin in alt. path */
7145
7146static void find_command(char *, struct cmdentry *, int, const char *);
7147
7148
7149/* ============ Hashing commands */
7150
7151/*
7152 * When commands are first encountered, they are entered in a hash table.
7153 * This ensures that a full path search will not have to be done for them
7154 * on each invocation.
7155 *
7156 * We should investigate converting to a linear search, even though that
7157 * would make the command name "hash" a misnomer.
7158 */
7159
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007160struct tblentry {
7161 struct tblentry *next; /* next entry in hash chain */
7162 union param param; /* definition of builtin function */
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00007163 smallint cmdtype; /* CMDxxx */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007164 char rehash; /* if set, cd done since entry created */
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007165 char cmdname[1]; /* name of command */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007166};
7167
Denis Vlasenko01631112007-12-16 17:20:38 +00007168static struct tblentry **cmdtable;
7169#define INIT_G_cmdtable() do { \
7170 cmdtable = xzalloc(CMDTABLESIZE * sizeof(cmdtable[0])); \
7171} while (0)
7172
7173static int builtinloc = -1; /* index in path of %builtin, or -1 */
7174
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007175
7176static void
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00007177tryexec(IF_FEATURE_SH_STANDALONE(int applet_no,) char *cmd, char **argv, char **envp)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007178{
7179 int repeated = 0;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007180
Denis Vlasenko80d14be2007-04-10 23:03:30 +00007181#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007182 if (applet_no >= 0) {
Denis Vlasenkob7304742008-10-20 08:15:51 +00007183 if (APPLET_IS_NOEXEC(applet_no)) {
7184 while (*envp)
7185 putenv(*envp++);
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007186 run_applet_no_and_exit(applet_no, argv);
Denis Vlasenkob7304742008-10-20 08:15:51 +00007187 }
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007188 /* re-exec ourselves with the new arguments */
7189 execve(bb_busybox_exec_path, argv, envp);
7190 /* If they called chroot or otherwise made the binary no longer
7191 * executable, fall through */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007192 }
7193#endif
7194
7195 repeat:
7196#ifdef SYSV
7197 do {
7198 execve(cmd, argv, envp);
7199 } while (errno == EINTR);
7200#else
7201 execve(cmd, argv, envp);
7202#endif
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007203 if (repeated) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007204 free(argv);
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007205 return;
7206 }
7207 if (errno == ENOEXEC) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007208 char **ap;
7209 char **new;
7210
7211 for (ap = argv; *ap; ap++)
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007212 continue;
7213 ap = new = ckmalloc((ap - argv + 2) * sizeof(ap[0]));
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007214 ap[1] = cmd;
Denis Vlasenkoc44ab012007-04-09 03:11:58 +00007215 ap[0] = cmd = (char *)DEFAULT_SHELL;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007216 ap += 2;
7217 argv++;
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007218 while ((*ap++ = *argv++) != NULL)
Denis Vlasenko597906c2008-02-20 16:38:54 +00007219 continue;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007220 argv = new;
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007221 repeated++;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007222 goto repeat;
7223 }
7224}
7225
7226/*
7227 * Exec a program. Never returns. If you change this routine, you may
7228 * have to change the find_command routine as well.
7229 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00007230static void shellexec(char **, const char *, int) NORETURN;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007231static void
7232shellexec(char **argv, const char *path, int idx)
7233{
7234 char *cmdname;
7235 int e;
7236 char **envp;
7237 int exerrno;
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007238#if ENABLE_FEATURE_SH_STANDALONE
7239 int applet_no = -1;
7240#endif
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007241
Denis Vlasenko34c73c42008-08-16 11:48:02 +00007242 clearredir(/*drop:*/ 1);
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007243 envp = listvars(VEXPORT, VUNSET, 0);
7244 if (strchr(argv[0], '/') != NULL
Denis Vlasenko80d14be2007-04-10 23:03:30 +00007245#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko4a9ca132008-04-12 20:07:08 +00007246 || (applet_no = find_applet_by_name(argv[0])) >= 0
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007247#endif
7248 ) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00007249 tryexec(IF_FEATURE_SH_STANDALONE(applet_no,) argv[0], argv, envp);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007250 e = errno;
7251 } else {
7252 e = ENOENT;
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02007253 while ((cmdname = path_advance(&path, argv[0])) != NULL) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007254 if (--idx < 0 && pathopt == NULL) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00007255 tryexec(IF_FEATURE_SH_STANDALONE(-1,) cmdname, argv, envp);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007256 if (errno != ENOENT && errno != ENOTDIR)
7257 e = errno;
7258 }
7259 stunalloc(cmdname);
7260 }
7261 }
7262
7263 /* Map to POSIX errors */
7264 switch (e) {
7265 case EACCES:
7266 exerrno = 126;
7267 break;
7268 case ENOENT:
7269 exerrno = 127;
7270 break;
7271 default:
7272 exerrno = 2;
7273 break;
7274 }
7275 exitstatus = exerrno;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02007276 TRACE(("shellexec failed for %s, errno %d, suppress_int %d\n",
7277 argv[0], e, suppress_int));
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007278 ash_msg_and_raise(EXEXEC, "%s: %s", argv[0], errmsg(e, "not found"));
7279 /* NOTREACHED */
7280}
7281
7282static void
7283printentry(struct tblentry *cmdp)
7284{
7285 int idx;
7286 const char *path;
7287 char *name;
7288
7289 idx = cmdp->param.index;
7290 path = pathval();
7291 do {
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02007292 name = path_advance(&path, cmdp->cmdname);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007293 stunalloc(name);
7294 } while (--idx >= 0);
7295 out1fmt("%s%s\n", name, (cmdp->rehash ? "*" : nullstr));
7296}
7297
7298/*
7299 * Clear out command entries. The argument specifies the first entry in
7300 * PATH which has changed.
7301 */
7302static void
7303clearcmdentry(int firstchange)
7304{
7305 struct tblentry **tblp;
7306 struct tblentry **pp;
7307 struct tblentry *cmdp;
7308
7309 INT_OFF;
7310 for (tblp = cmdtable; tblp < &cmdtable[CMDTABLESIZE]; tblp++) {
7311 pp = tblp;
7312 while ((cmdp = *pp) != NULL) {
7313 if ((cmdp->cmdtype == CMDNORMAL &&
7314 cmdp->param.index >= firstchange)
7315 || (cmdp->cmdtype == CMDBUILTIN &&
7316 builtinloc >= firstchange)
7317 ) {
7318 *pp = cmdp->next;
7319 free(cmdp);
7320 } else {
7321 pp = &cmdp->next;
7322 }
7323 }
7324 }
7325 INT_ON;
7326}
7327
7328/*
7329 * Locate a command in the command hash table. If "add" is nonzero,
7330 * add the command to the table if it is not already present. The
7331 * variable "lastcmdentry" is set to point to the address of the link
7332 * pointing to the entry, so that delete_cmd_entry can delete the
7333 * entry.
7334 *
7335 * Interrupts must be off if called with add != 0.
7336 */
7337static struct tblentry **lastcmdentry;
7338
7339static struct tblentry *
7340cmdlookup(const char *name, int add)
7341{
7342 unsigned int hashval;
7343 const char *p;
7344 struct tblentry *cmdp;
7345 struct tblentry **pp;
7346
7347 p = name;
7348 hashval = (unsigned char)*p << 4;
7349 while (*p)
7350 hashval += (unsigned char)*p++;
7351 hashval &= 0x7FFF;
7352 pp = &cmdtable[hashval % CMDTABLESIZE];
7353 for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7354 if (strcmp(cmdp->cmdname, name) == 0)
7355 break;
7356 pp = &cmdp->next;
7357 }
7358 if (add && cmdp == NULL) {
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007359 cmdp = *pp = ckzalloc(sizeof(struct tblentry)
7360 + strlen(name)
7361 /* + 1 - already done because
7362 * tblentry::cmdname is char[1] */);
Denis Vlasenko597906c2008-02-20 16:38:54 +00007363 /*cmdp->next = NULL; - ckzalloc did it */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007364 cmdp->cmdtype = CMDUNKNOWN;
7365 strcpy(cmdp->cmdname, name);
7366 }
7367 lastcmdentry = pp;
7368 return cmdp;
7369}
7370
7371/*
7372 * Delete the command entry returned on the last lookup.
7373 */
7374static void
7375delete_cmd_entry(void)
7376{
7377 struct tblentry *cmdp;
7378
7379 INT_OFF;
7380 cmdp = *lastcmdentry;
7381 *lastcmdentry = cmdp->next;
7382 if (cmdp->cmdtype == CMDFUNCTION)
7383 freefunc(cmdp->param.func);
7384 free(cmdp);
7385 INT_ON;
7386}
7387
7388/*
7389 * Add a new command entry, replacing any existing command entry for
7390 * the same name - except special builtins.
7391 */
7392static void
7393addcmdentry(char *name, struct cmdentry *entry)
7394{
7395 struct tblentry *cmdp;
7396
7397 cmdp = cmdlookup(name, 1);
7398 if (cmdp->cmdtype == CMDFUNCTION) {
7399 freefunc(cmdp->param.func);
7400 }
7401 cmdp->cmdtype = entry->cmdtype;
7402 cmdp->param = entry->u;
7403 cmdp->rehash = 0;
7404}
7405
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007406static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00007407hashcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007408{
7409 struct tblentry **pp;
7410 struct tblentry *cmdp;
7411 int c;
7412 struct cmdentry entry;
7413 char *name;
7414
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007415 if (nextopt("r") != '\0') {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007416 clearcmdentry(0);
7417 return 0;
7418 }
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007419
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007420 if (*argptr == NULL) {
7421 for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7422 for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
7423 if (cmdp->cmdtype == CMDNORMAL)
7424 printentry(cmdp);
7425 }
7426 }
7427 return 0;
7428 }
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007429
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007430 c = 0;
7431 while ((name = *argptr) != NULL) {
7432 cmdp = cmdlookup(name, 0);
7433 if (cmdp != NULL
7434 && (cmdp->cmdtype == CMDNORMAL
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007435 || (cmdp->cmdtype == CMDBUILTIN && builtinloc >= 0))
7436 ) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007437 delete_cmd_entry();
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007438 }
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007439 find_command(name, &entry, DO_ERR, pathval());
7440 if (entry.cmdtype == CMDUNKNOWN)
7441 c = 1;
7442 argptr++;
7443 }
7444 return c;
7445}
7446
7447/*
7448 * Called when a cd is done. Marks all commands so the next time they
7449 * are executed they will be rehashed.
7450 */
7451static void
7452hashcd(void)
7453{
7454 struct tblentry **pp;
7455 struct tblentry *cmdp;
7456
7457 for (pp = cmdtable; pp < &cmdtable[CMDTABLESIZE]; pp++) {
7458 for (cmdp = *pp; cmdp; cmdp = cmdp->next) {
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007459 if (cmdp->cmdtype == CMDNORMAL
7460 || (cmdp->cmdtype == CMDBUILTIN
7461 && !IS_BUILTIN_REGULAR(cmdp->param.cmd)
7462 && builtinloc > 0)
7463 ) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007464 cmdp->rehash = 1;
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007465 }
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007466 }
7467 }
7468}
7469
7470/*
7471 * Fix command hash table when PATH changed.
7472 * Called before PATH is changed. The argument is the new value of PATH;
7473 * pathval() still returns the old value at this point.
7474 * Called with interrupts off.
7475 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007476static void FAST_FUNC
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007477changepath(const char *new)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007478{
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007479 const char *old;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007480 int firstchange;
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007481 int idx;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007482 int idx_bltin;
7483
7484 old = pathval();
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007485 firstchange = 9999; /* assume no change */
7486 idx = 0;
7487 idx_bltin = -1;
7488 for (;;) {
7489 if (*old != *new) {
7490 firstchange = idx;
7491 if ((*old == '\0' && *new == ':')
7492 || (*old == ':' && *new == '\0'))
7493 firstchange++;
7494 old = new; /* ignore subsequent differences */
7495 }
7496 if (*new == '\0')
7497 break;
7498 if (*new == '%' && idx_bltin < 0 && prefix(new + 1, "builtin"))
7499 idx_bltin = idx;
Denis Vlasenko5c3d2b32008-02-03 22:01:08 +00007500 if (*new == ':')
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007501 idx++;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007502 new++, old++;
7503 }
7504 if (builtinloc < 0 && idx_bltin >= 0)
7505 builtinloc = idx_bltin; /* zap builtins */
7506 if (builtinloc >= 0 && idx_bltin < 0)
7507 firstchange = 0;
7508 clearcmdentry(firstchange);
7509 builtinloc = idx_bltin;
7510}
7511
7512#define TEOF 0
7513#define TNL 1
7514#define TREDIR 2
7515#define TWORD 3
7516#define TSEMI 4
7517#define TBACKGND 5
7518#define TAND 6
7519#define TOR 7
7520#define TPIPE 8
7521#define TLP 9
7522#define TRP 10
7523#define TENDCASE 11
7524#define TENDBQUOTE 12
7525#define TNOT 13
7526#define TCASE 14
7527#define TDO 15
7528#define TDONE 16
7529#define TELIF 17
7530#define TELSE 18
7531#define TESAC 19
7532#define TFI 20
7533#define TFOR 21
7534#define TIF 22
7535#define TIN 23
7536#define TTHEN 24
7537#define TUNTIL 25
7538#define TWHILE 26
7539#define TBEGIN 27
7540#define TEND 28
Denis Vlasenkob07a4962008-06-22 13:16:23 +00007541typedef smallint token_id_t;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007542
7543/* first char is indicating which tokens mark the end of a list */
7544static const char *const tokname_array[] = {
7545 "\1end of file",
7546 "\0newline",
7547 "\0redirection",
7548 "\0word",
7549 "\0;",
7550 "\0&",
7551 "\0&&",
7552 "\0||",
7553 "\0|",
7554 "\0(",
7555 "\1)",
7556 "\1;;",
7557 "\1`",
7558#define KWDOFFSET 13
7559 /* the following are keywords */
7560 "\0!",
7561 "\0case",
7562 "\1do",
7563 "\1done",
7564 "\1elif",
7565 "\1else",
7566 "\1esac",
7567 "\1fi",
7568 "\0for",
7569 "\0if",
7570 "\0in",
7571 "\1then",
7572 "\0until",
7573 "\0while",
7574 "\0{",
7575 "\1}",
7576};
7577
7578static const char *
7579tokname(int tok)
7580{
7581 static char buf[16];
7582
Denis Vlasenko240a1cf2007-04-08 16:07:02 +00007583//try this:
7584//if (tok < TSEMI) return tokname_array[tok] + 1;
7585//sprintf(buf, "\"%s\"", tokname_array[tok] + 1);
7586//return buf;
7587
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007588 if (tok >= TSEMI)
7589 buf[0] = '"';
7590 sprintf(buf + (tok >= TSEMI), "%s%c",
7591 tokname_array[tok] + 1, (tok >= TSEMI ? '"' : 0));
7592 return buf;
7593}
7594
7595/* Wrapper around strcmp for qsort/bsearch/... */
7596static int
7597pstrcmp(const void *a, const void *b)
7598{
Denis Vlasenko240a1cf2007-04-08 16:07:02 +00007599 return strcmp((char*) a, (*(char**) b) + 1);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007600}
7601
7602static const char *const *
7603findkwd(const char *s)
7604{
7605 return bsearch(s, tokname_array + KWDOFFSET,
Denis Vlasenko80b8b392007-06-25 10:55:35 +00007606 ARRAY_SIZE(tokname_array) - KWDOFFSET,
7607 sizeof(tokname_array[0]), pstrcmp);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007608}
7609
7610/*
7611 * Locate and print what a word is...
7612 */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007613static int
7614describe_command(char *command, int describe_command_verbose)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007615{
7616 struct cmdentry entry;
7617 struct tblentry *cmdp;
7618#if ENABLE_ASH_ALIAS
7619 const struct alias *ap;
7620#endif
7621 const char *path = pathval();
7622
7623 if (describe_command_verbose) {
7624 out1str(command);
7625 }
7626
7627 /* First look at the keywords */
7628 if (findkwd(command)) {
7629 out1str(describe_command_verbose ? " is a shell keyword" : command);
7630 goto out;
7631 }
7632
7633#if ENABLE_ASH_ALIAS
7634 /* Then look at the aliases */
7635 ap = lookupalias(command, 0);
7636 if (ap != NULL) {
Denis Vlasenko46846e22007-05-20 13:08:31 +00007637 if (!describe_command_verbose) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007638 out1str("alias ");
7639 printalias(ap);
7640 return 0;
7641 }
Denis Vlasenko46846e22007-05-20 13:08:31 +00007642 out1fmt(" is an alias for %s", ap->val);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007643 goto out;
7644 }
7645#endif
7646 /* Then check if it is a tracked alias */
7647 cmdp = cmdlookup(command, 0);
7648 if (cmdp != NULL) {
7649 entry.cmdtype = cmdp->cmdtype;
7650 entry.u = cmdp->param;
7651 } else {
7652 /* Finally use brute force */
7653 find_command(command, &entry, DO_ABS, path);
7654 }
7655
7656 switch (entry.cmdtype) {
7657 case CMDNORMAL: {
7658 int j = entry.u.index;
7659 char *p;
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00007660 if (j < 0) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007661 p = command;
7662 } else {
7663 do {
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02007664 p = path_advance(&path, command);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007665 stunalloc(p);
7666 } while (--j >= 0);
7667 }
7668 if (describe_command_verbose) {
7669 out1fmt(" is%s %s",
7670 (cmdp ? " a tracked alias for" : nullstr), p
7671 );
7672 } else {
7673 out1str(p);
7674 }
7675 break;
7676 }
7677
7678 case CMDFUNCTION:
7679 if (describe_command_verbose) {
7680 out1str(" is a shell function");
7681 } else {
7682 out1str(command);
7683 }
7684 break;
7685
7686 case CMDBUILTIN:
7687 if (describe_command_verbose) {
7688 out1fmt(" is a %sshell builtin",
7689 IS_BUILTIN_SPECIAL(entry.u.cmd) ?
7690 "special " : nullstr
7691 );
7692 } else {
7693 out1str(command);
7694 }
7695 break;
7696
7697 default:
7698 if (describe_command_verbose) {
7699 out1str(": not found\n");
7700 }
7701 return 127;
7702 }
7703 out:
Denys Vlasenko285ad152009-12-04 23:02:27 +01007704 out1str("\n");
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007705 return 0;
7706}
7707
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007708static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00007709typecmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007710{
Denis Vlasenko46846e22007-05-20 13:08:31 +00007711 int i = 1;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007712 int err = 0;
Denis Vlasenko46846e22007-05-20 13:08:31 +00007713 int verbose = 1;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007714
Denis Vlasenko46846e22007-05-20 13:08:31 +00007715 /* type -p ... ? (we don't bother checking for 'p') */
Denis Vlasenko1fc62382007-06-25 22:55:34 +00007716 if (argv[1] && argv[1][0] == '-') {
Denis Vlasenko46846e22007-05-20 13:08:31 +00007717 i++;
7718 verbose = 0;
7719 }
Denis Vlasenko68404f12008-03-17 09:00:54 +00007720 while (argv[i]) {
Denis Vlasenko46846e22007-05-20 13:08:31 +00007721 err |= describe_command(argv[i++], verbose);
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007722 }
7723 return err;
7724}
7725
7726#if ENABLE_ASH_CMDCMD
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02007727static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00007728commandcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007729{
7730 int c;
7731 enum {
7732 VERIFY_BRIEF = 1,
7733 VERIFY_VERBOSE = 2,
7734 } verify = 0;
7735
7736 while ((c = nextopt("pvV")) != '\0')
7737 if (c == 'V')
7738 verify |= VERIFY_VERBOSE;
7739 else if (c == 'v')
7740 verify |= VERIFY_BRIEF;
7741#if DEBUG
7742 else if (c != 'p')
7743 abort();
7744#endif
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00007745 /* Mimic bash: just "command -v" doesn't complain, it's a nop */
7746 if (verify && (*argptr != NULL)) {
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007747 return describe_command(*argptr, verify - VERIFY_BRIEF);
Denis Vlasenkoe7067e32008-07-11 23:09:34 +00007748 }
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007749
7750 return 0;
7751}
7752#endif
7753
7754
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00007755/* ============ eval.c */
Eric Andersencb57d552001-06-28 07:25:16 +00007756
Denis Vlasenko340299a2008-11-21 10:36:36 +00007757static int funcblocksize; /* size of structures in function */
7758static int funcstringsize; /* size of strings in node */
7759static void *funcblock; /* block to allocate function from */
7760static char *funcstring; /* block to allocate strings from */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007761
Eric Andersencb57d552001-06-28 07:25:16 +00007762/* flags in argument to evaltree */
Denis Vlasenko340299a2008-11-21 10:36:36 +00007763#define EV_EXIT 01 /* exit after evaluating tree */
7764#define EV_TESTED 02 /* exit status is checked; ignore -e flag */
Eric Andersenc470f442003-07-28 09:56:35 +00007765#define EV_BACKCMD 04 /* command executing within back quotes */
Eric Andersencb57d552001-06-28 07:25:16 +00007766
Denys Vlasenko0e5e4ea2009-10-11 00:36:20 +02007767static const uint8_t nodesize[N_NUMBER] = {
Denis Vlasenko340299a2008-11-21 10:36:36 +00007768 [NCMD ] = SHELL_ALIGN(sizeof(struct ncmd)),
7769 [NPIPE ] = SHELL_ALIGN(sizeof(struct npipe)),
7770 [NREDIR ] = SHELL_ALIGN(sizeof(struct nredir)),
7771 [NBACKGND ] = SHELL_ALIGN(sizeof(struct nredir)),
7772 [NSUBSHELL] = SHELL_ALIGN(sizeof(struct nredir)),
7773 [NAND ] = SHELL_ALIGN(sizeof(struct nbinary)),
7774 [NOR ] = SHELL_ALIGN(sizeof(struct nbinary)),
7775 [NSEMI ] = SHELL_ALIGN(sizeof(struct nbinary)),
7776 [NIF ] = SHELL_ALIGN(sizeof(struct nif)),
7777 [NWHILE ] = SHELL_ALIGN(sizeof(struct nbinary)),
7778 [NUNTIL ] = SHELL_ALIGN(sizeof(struct nbinary)),
7779 [NFOR ] = SHELL_ALIGN(sizeof(struct nfor)),
7780 [NCASE ] = SHELL_ALIGN(sizeof(struct ncase)),
7781 [NCLIST ] = SHELL_ALIGN(sizeof(struct nclist)),
7782 [NDEFUN ] = SHELL_ALIGN(sizeof(struct narg)),
7783 [NARG ] = SHELL_ALIGN(sizeof(struct narg)),
7784 [NTO ] = SHELL_ALIGN(sizeof(struct nfile)),
Denis Vlasenkocc5feab2008-11-22 01:32:40 +00007785#if ENABLE_ASH_BASH_COMPAT
Denis Vlasenko340299a2008-11-21 10:36:36 +00007786 [NTO2 ] = SHELL_ALIGN(sizeof(struct nfile)),
Denis Vlasenkocc5feab2008-11-22 01:32:40 +00007787#endif
Denis Vlasenko340299a2008-11-21 10:36:36 +00007788 [NCLOBBER ] = SHELL_ALIGN(sizeof(struct nfile)),
7789 [NFROM ] = SHELL_ALIGN(sizeof(struct nfile)),
7790 [NFROMTO ] = SHELL_ALIGN(sizeof(struct nfile)),
7791 [NAPPEND ] = SHELL_ALIGN(sizeof(struct nfile)),
7792 [NTOFD ] = SHELL_ALIGN(sizeof(struct ndup)),
7793 [NFROMFD ] = SHELL_ALIGN(sizeof(struct ndup)),
7794 [NHERE ] = SHELL_ALIGN(sizeof(struct nhere)),
7795 [NXHERE ] = SHELL_ALIGN(sizeof(struct nhere)),
7796 [NNOT ] = SHELL_ALIGN(sizeof(struct nnot)),
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007797};
7798
7799static void calcsize(union node *n);
7800
7801static void
7802sizenodelist(struct nodelist *lp)
7803{
7804 while (lp) {
7805 funcblocksize += SHELL_ALIGN(sizeof(struct nodelist));
7806 calcsize(lp->n);
7807 lp = lp->next;
7808 }
7809}
7810
7811static void
7812calcsize(union node *n)
7813{
7814 if (n == NULL)
7815 return;
7816 funcblocksize += nodesize[n->type];
7817 switch (n->type) {
7818 case NCMD:
7819 calcsize(n->ncmd.redirect);
7820 calcsize(n->ncmd.args);
7821 calcsize(n->ncmd.assign);
7822 break;
7823 case NPIPE:
7824 sizenodelist(n->npipe.cmdlist);
7825 break;
7826 case NREDIR:
7827 case NBACKGND:
7828 case NSUBSHELL:
7829 calcsize(n->nredir.redirect);
7830 calcsize(n->nredir.n);
7831 break;
7832 case NAND:
7833 case NOR:
7834 case NSEMI:
7835 case NWHILE:
7836 case NUNTIL:
7837 calcsize(n->nbinary.ch2);
7838 calcsize(n->nbinary.ch1);
7839 break;
7840 case NIF:
7841 calcsize(n->nif.elsepart);
7842 calcsize(n->nif.ifpart);
7843 calcsize(n->nif.test);
7844 break;
7845 case NFOR:
7846 funcstringsize += strlen(n->nfor.var) + 1;
7847 calcsize(n->nfor.body);
7848 calcsize(n->nfor.args);
7849 break;
7850 case NCASE:
7851 calcsize(n->ncase.cases);
7852 calcsize(n->ncase.expr);
7853 break;
7854 case NCLIST:
7855 calcsize(n->nclist.body);
7856 calcsize(n->nclist.pattern);
7857 calcsize(n->nclist.next);
7858 break;
7859 case NDEFUN:
7860 case NARG:
7861 sizenodelist(n->narg.backquote);
7862 funcstringsize += strlen(n->narg.text) + 1;
7863 calcsize(n->narg.next);
7864 break;
7865 case NTO:
Denis Vlasenko559691a2008-10-05 18:39:31 +00007866#if ENABLE_ASH_BASH_COMPAT
7867 case NTO2:
7868#endif
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007869 case NCLOBBER:
7870 case NFROM:
7871 case NFROMTO:
7872 case NAPPEND:
7873 calcsize(n->nfile.fname);
7874 calcsize(n->nfile.next);
7875 break;
7876 case NTOFD:
7877 case NFROMFD:
7878 calcsize(n->ndup.vname);
7879 calcsize(n->ndup.next);
7880 break;
7881 case NHERE:
7882 case NXHERE:
7883 calcsize(n->nhere.doc);
7884 calcsize(n->nhere.next);
7885 break;
7886 case NNOT:
7887 calcsize(n->nnot.com);
7888 break;
7889 };
7890}
7891
7892static char *
7893nodeckstrdup(char *s)
7894{
7895 char *rtn = funcstring;
7896
7897 strcpy(funcstring, s);
7898 funcstring += strlen(s) + 1;
7899 return rtn;
7900}
7901
7902static union node *copynode(union node *);
7903
7904static struct nodelist *
7905copynodelist(struct nodelist *lp)
7906{
7907 struct nodelist *start;
7908 struct nodelist **lpp;
7909
7910 lpp = &start;
7911 while (lp) {
7912 *lpp = funcblock;
7913 funcblock = (char *) funcblock + SHELL_ALIGN(sizeof(struct nodelist));
7914 (*lpp)->n = copynode(lp->n);
7915 lp = lp->next;
7916 lpp = &(*lpp)->next;
7917 }
7918 *lpp = NULL;
7919 return start;
7920}
7921
7922static union node *
7923copynode(union node *n)
7924{
7925 union node *new;
7926
7927 if (n == NULL)
7928 return NULL;
7929 new = funcblock;
7930 funcblock = (char *) funcblock + nodesize[n->type];
7931
7932 switch (n->type) {
7933 case NCMD:
7934 new->ncmd.redirect = copynode(n->ncmd.redirect);
7935 new->ncmd.args = copynode(n->ncmd.args);
7936 new->ncmd.assign = copynode(n->ncmd.assign);
7937 break;
7938 case NPIPE:
7939 new->npipe.cmdlist = copynodelist(n->npipe.cmdlist);
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00007940 new->npipe.pipe_backgnd = n->npipe.pipe_backgnd;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007941 break;
7942 case NREDIR:
7943 case NBACKGND:
7944 case NSUBSHELL:
7945 new->nredir.redirect = copynode(n->nredir.redirect);
7946 new->nredir.n = copynode(n->nredir.n);
7947 break;
7948 case NAND:
7949 case NOR:
7950 case NSEMI:
7951 case NWHILE:
7952 case NUNTIL:
7953 new->nbinary.ch2 = copynode(n->nbinary.ch2);
7954 new->nbinary.ch1 = copynode(n->nbinary.ch1);
7955 break;
7956 case NIF:
7957 new->nif.elsepart = copynode(n->nif.elsepart);
7958 new->nif.ifpart = copynode(n->nif.ifpart);
7959 new->nif.test = copynode(n->nif.test);
7960 break;
7961 case NFOR:
7962 new->nfor.var = nodeckstrdup(n->nfor.var);
7963 new->nfor.body = copynode(n->nfor.body);
7964 new->nfor.args = copynode(n->nfor.args);
7965 break;
7966 case NCASE:
7967 new->ncase.cases = copynode(n->ncase.cases);
7968 new->ncase.expr = copynode(n->ncase.expr);
7969 break;
7970 case NCLIST:
7971 new->nclist.body = copynode(n->nclist.body);
7972 new->nclist.pattern = copynode(n->nclist.pattern);
7973 new->nclist.next = copynode(n->nclist.next);
7974 break;
7975 case NDEFUN:
7976 case NARG:
7977 new->narg.backquote = copynodelist(n->narg.backquote);
7978 new->narg.text = nodeckstrdup(n->narg.text);
7979 new->narg.next = copynode(n->narg.next);
7980 break;
7981 case NTO:
Denis Vlasenko559691a2008-10-05 18:39:31 +00007982#if ENABLE_ASH_BASH_COMPAT
7983 case NTO2:
7984#endif
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00007985 case NCLOBBER:
7986 case NFROM:
7987 case NFROMTO:
7988 case NAPPEND:
7989 new->nfile.fname = copynode(n->nfile.fname);
7990 new->nfile.fd = n->nfile.fd;
7991 new->nfile.next = copynode(n->nfile.next);
7992 break;
7993 case NTOFD:
7994 case NFROMFD:
7995 new->ndup.vname = copynode(n->ndup.vname);
7996 new->ndup.dupfd = n->ndup.dupfd;
7997 new->ndup.fd = n->ndup.fd;
7998 new->ndup.next = copynode(n->ndup.next);
7999 break;
8000 case NHERE:
8001 case NXHERE:
8002 new->nhere.doc = copynode(n->nhere.doc);
8003 new->nhere.fd = n->nhere.fd;
8004 new->nhere.next = copynode(n->nhere.next);
8005 break;
8006 case NNOT:
8007 new->nnot.com = copynode(n->nnot.com);
8008 break;
8009 };
8010 new->type = n->type;
8011 return new;
8012}
8013
8014/*
8015 * Make a copy of a parse tree.
8016 */
8017static struct funcnode *
8018copyfunc(union node *n)
8019{
8020 struct funcnode *f;
8021 size_t blocksize;
8022
8023 funcblocksize = offsetof(struct funcnode, n);
8024 funcstringsize = 0;
8025 calcsize(n);
8026 blocksize = funcblocksize;
8027 f = ckmalloc(blocksize + funcstringsize);
8028 funcblock = (char *) f + offsetof(struct funcnode, n);
8029 funcstring = (char *) f + blocksize;
8030 copynode(n);
8031 f->count = 0;
8032 return f;
8033}
8034
8035/*
8036 * Define a shell function.
8037 */
8038static void
8039defun(char *name, union node *func)
8040{
8041 struct cmdentry entry;
8042
8043 INT_OFF;
8044 entry.cmdtype = CMDFUNCTION;
8045 entry.u.func = copyfunc(func);
8046 addcmdentry(name, &entry);
8047 INT_ON;
8048}
8049
Denis Vlasenko4b875702009-03-19 13:30:04 +00008050/* Reasons for skipping commands (see comment on breakcmd routine) */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008051#define SKIPBREAK (1 << 0)
8052#define SKIPCONT (1 << 1)
8053#define SKIPFUNC (1 << 2)
8054#define SKIPFILE (1 << 3)
8055#define SKIPEVAL (1 << 4)
Denis Vlasenko4b875702009-03-19 13:30:04 +00008056static smallint evalskip; /* set to SKIPxxx if we are skipping commands */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008057static int skipcount; /* number of levels to skip */
8058static int funcnest; /* depth of function calls */
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +00008059static int loopnest; /* current loop nesting level */
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008060
Denis Vlasenko4b875702009-03-19 13:30:04 +00008061/* Forward decl way out to parsing code - dotrap needs it */
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008062static int evalstring(char *s, int mask);
8063
Denis Vlasenko4b875702009-03-19 13:30:04 +00008064/* Called to execute a trap.
8065 * Single callsite - at the end of evaltree().
8066 * If we return non-zero, exaltree raises EXEXIT exception.
8067 *
8068 * Perhaps we should avoid entering new trap handlers
8069 * while we are executing a trap handler. [is it a TODO?]
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008070 */
8071static int
8072dotrap(void)
8073{
Denis Vlasenko4b875702009-03-19 13:30:04 +00008074 uint8_t *g;
8075 int sig;
8076 uint8_t savestatus;
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008077
8078 savestatus = exitstatus;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02008079 pending_sig = 0;
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008080 xbarrier();
8081
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008082 TRACE(("dotrap entered\n"));
Denis Vlasenko4b875702009-03-19 13:30:04 +00008083 for (sig = 1, g = gotsig; sig < NSIG; sig++, g++) {
8084 int want_exexit;
8085 char *t;
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008086
Denis Vlasenko4b875702009-03-19 13:30:04 +00008087 if (*g == 0)
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008088 continue;
Denis Vlasenko4b875702009-03-19 13:30:04 +00008089 t = trap[sig];
8090 /* non-trapped SIGINT is handled separately by raise_interrupt,
8091 * don't upset it by resetting gotsig[SIGINT-1] */
8092 if (sig == SIGINT && !t)
8093 continue;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008094
8095 TRACE(("sig %d is active, will run handler '%s'\n", sig, t));
Denis Vlasenko4b875702009-03-19 13:30:04 +00008096 *g = 0;
8097 if (!t)
8098 continue;
8099 want_exexit = evalstring(t, SKIPEVAL);
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008100 exitstatus = savestatus;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008101 if (want_exexit) {
Denis Vlasenkob21f3792009-03-19 23:09:58 +00008102 TRACE(("dotrap returns %d\n", want_exexit));
Denis Vlasenko4b875702009-03-19 13:30:04 +00008103 return want_exexit;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008104 }
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008105 }
8106
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008107 TRACE(("dotrap returns 0\n"));
Denis Vlasenko991a1da2008-02-10 19:02:53 +00008108 return 0;
Denis Vlasenkofc06f292007-02-23 21:09:35 +00008109}
8110
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00008111/* forward declarations - evaluation is fairly recursive business... */
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008112static void evalloop(union node *, int);
8113static void evalfor(union node *, int);
8114static void evalcase(union node *, int);
8115static void evalsubshell(union node *, int);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00008116static void expredir(union node *);
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008117static void evalpipe(union node *, int);
8118static void evalcommand(union node *, int);
Eric Andersenc470f442003-07-28 09:56:35 +00008119static int evalbltin(const struct builtincmd *, int, char **);
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008120static void prehash(union node *);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00008121
Eric Andersen62483552001-07-10 06:09:16 +00008122/*
Eric Andersenc470f442003-07-28 09:56:35 +00008123 * Evaluate a parse tree. The value is left in the global variable
8124 * exitstatus.
Eric Andersen62483552001-07-10 06:09:16 +00008125 */
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008126static void
Eric Andersenc470f442003-07-28 09:56:35 +00008127evaltree(union node *n, int flags)
Eric Andersen62483552001-07-10 06:09:16 +00008128{
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008129 struct jmploc *volatile savehandler = exception_handler;
8130 struct jmploc jmploc;
Eric Andersenc470f442003-07-28 09:56:35 +00008131 int checkexit = 0;
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008132 void (*evalfn)(union node *, int);
Eric Andersenc470f442003-07-28 09:56:35 +00008133 int status;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008134 int int_level;
8135
8136 SAVE_INT(int_level);
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008137
Eric Andersenc470f442003-07-28 09:56:35 +00008138 if (n == NULL) {
8139 TRACE(("evaltree(NULL) called\n"));
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008140 goto out1;
Eric Andersen62483552001-07-10 06:09:16 +00008141 }
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008142 TRACE(("evaltree(%p: %d, %d) called\n", n, n->type, flags));
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008143
8144 exception_handler = &jmploc;
8145 {
8146 int err = setjmp(jmploc.loc);
8147 if (err) {
8148 /* if it was a signal, check for trap handlers */
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008149 if (exception_type == EXSIG) {
Denis Vlasenkob21f3792009-03-19 23:09:58 +00008150 TRACE(("exception %d (EXSIG) in evaltree, err=%d\n",
8151 exception_type, err));
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008152 goto out;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008153 }
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008154 /* continue on the way out */
Denis Vlasenkob21f3792009-03-19 23:09:58 +00008155 TRACE(("exception %d in evaltree, propagating err=%d\n",
8156 exception_type, err));
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008157 exception_handler = savehandler;
8158 longjmp(exception_handler->loc, err);
8159 }
8160 }
8161
Eric Andersenc470f442003-07-28 09:56:35 +00008162 switch (n->type) {
8163 default:
Denis Vlasenkoa7189f02006-11-17 20:29:00 +00008164#if DEBUG
Eric Andersenc470f442003-07-28 09:56:35 +00008165 out1fmt("Node type = %d\n", n->type);
Denys Vlasenko8131eea2009-11-02 14:19:51 +01008166 fflush_all();
Eric Andersenc470f442003-07-28 09:56:35 +00008167 break;
8168#endif
8169 case NNOT:
8170 evaltree(n->nnot.com, EV_TESTED);
8171 status = !exitstatus;
8172 goto setstatus;
8173 case NREDIR:
8174 expredir(n->nredir.redirect);
8175 status = redirectsafe(n->nredir.redirect, REDIR_PUSH);
8176 if (!status) {
8177 evaltree(n->nredir.n, flags & EV_TESTED);
8178 status = exitstatus;
8179 }
Denis Vlasenko34c73c42008-08-16 11:48:02 +00008180 popredir(/*drop:*/ 0, /*restore:*/ 0 /* not sure */);
Eric Andersenc470f442003-07-28 09:56:35 +00008181 goto setstatus;
8182 case NCMD:
8183 evalfn = evalcommand;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008184 checkexit:
Eric Andersenc470f442003-07-28 09:56:35 +00008185 if (eflag && !(flags & EV_TESTED))
8186 checkexit = ~0;
8187 goto calleval;
8188 case NFOR:
8189 evalfn = evalfor;
8190 goto calleval;
8191 case NWHILE:
8192 case NUNTIL:
8193 evalfn = evalloop;
8194 goto calleval;
8195 case NSUBSHELL:
8196 case NBACKGND:
8197 evalfn = evalsubshell;
8198 goto calleval;
8199 case NPIPE:
8200 evalfn = evalpipe;
8201 goto checkexit;
8202 case NCASE:
8203 evalfn = evalcase;
8204 goto calleval;
8205 case NAND:
8206 case NOR:
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008207 case NSEMI: {
8208
Eric Andersenc470f442003-07-28 09:56:35 +00008209#if NAND + 1 != NOR
8210#error NAND + 1 != NOR
8211#endif
8212#if NOR + 1 != NSEMI
8213#error NOR + 1 != NSEMI
8214#endif
Denis Vlasenko87d5fd92008-07-26 13:48:35 +00008215 unsigned is_or = n->type - NAND;
Eric Andersenc470f442003-07-28 09:56:35 +00008216 evaltree(
8217 n->nbinary.ch1,
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008218 (flags | ((is_or >> 1) - 1)) & EV_TESTED
Eric Andersenc470f442003-07-28 09:56:35 +00008219 );
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008220 if (!exitstatus == is_or)
Eric Andersenc470f442003-07-28 09:56:35 +00008221 break;
8222 if (!evalskip) {
8223 n = n->nbinary.ch2;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008224 evaln:
Eric Andersenc470f442003-07-28 09:56:35 +00008225 evalfn = evaltree;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008226 calleval:
Eric Andersenc470f442003-07-28 09:56:35 +00008227 evalfn(n, flags);
8228 break;
8229 }
8230 break;
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008231 }
Eric Andersenc470f442003-07-28 09:56:35 +00008232 case NIF:
8233 evaltree(n->nif.test, EV_TESTED);
8234 if (evalskip)
8235 break;
8236 if (exitstatus == 0) {
8237 n = n->nif.ifpart;
8238 goto evaln;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008239 }
8240 if (n->nif.elsepart) {
Eric Andersenc470f442003-07-28 09:56:35 +00008241 n = n->nif.elsepart;
8242 goto evaln;
8243 }
8244 goto success;
8245 case NDEFUN:
8246 defun(n->narg.text, n->narg.next);
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008247 success:
Eric Andersenc470f442003-07-28 09:56:35 +00008248 status = 0;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008249 setstatus:
Eric Andersenc470f442003-07-28 09:56:35 +00008250 exitstatus = status;
8251 break;
8252 }
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008253
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008254 out:
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +00008255 exception_handler = savehandler;
8256 out1:
8257 if (checkexit & exitstatus)
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00008258 evalskip |= SKIPEVAL;
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02008259 else if (pending_sig && dotrap())
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00008260 goto exexit;
8261
8262 if (flags & EV_EXIT) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008263 exexit:
Denis Vlasenkob012b102007-02-19 22:43:01 +00008264 raise_exception(EXEXIT);
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00008265 }
Denis Vlasenko653d8e72009-03-19 21:59:35 +00008266
8267 RESTORE_INT(int_level);
8268 TRACE(("leaving evaltree (no interrupts)\n"));
Eric Andersen62483552001-07-10 06:09:16 +00008269}
8270
Eric Andersenc470f442003-07-28 09:56:35 +00008271#if !defined(__alpha__) || (defined(__GNUC__) && __GNUC__ >= 3)
8272static
8273#endif
8274void evaltreenr(union node *, int) __attribute__ ((alias("evaltree"),__noreturn__));
8275
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008276static void
Eric Andersenc470f442003-07-28 09:56:35 +00008277evalloop(union node *n, int flags)
Eric Andersencb57d552001-06-28 07:25:16 +00008278{
8279 int status;
8280
8281 loopnest++;
8282 status = 0;
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008283 flags &= EV_TESTED;
Eric Andersencb57d552001-06-28 07:25:16 +00008284 for (;;) {
Eric Andersenc470f442003-07-28 09:56:35 +00008285 int i;
8286
Eric Andersencb57d552001-06-28 07:25:16 +00008287 evaltree(n->nbinary.ch1, EV_TESTED);
8288 if (evalskip) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008289 skipping:
8290 if (evalskip == SKIPCONT && --skipcount <= 0) {
Eric Andersencb57d552001-06-28 07:25:16 +00008291 evalskip = 0;
8292 continue;
8293 }
8294 if (evalskip == SKIPBREAK && --skipcount <= 0)
8295 evalskip = 0;
8296 break;
8297 }
Eric Andersenc470f442003-07-28 09:56:35 +00008298 i = exitstatus;
8299 if (n->type != NWHILE)
8300 i = !i;
8301 if (i != 0)
8302 break;
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008303 evaltree(n->nbinary.ch2, flags);
Eric Andersencb57d552001-06-28 07:25:16 +00008304 status = exitstatus;
8305 if (evalskip)
8306 goto skipping;
8307 }
8308 loopnest--;
8309 exitstatus = status;
8310}
8311
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008312static void
Eric Andersenc470f442003-07-28 09:56:35 +00008313evalfor(union node *n, int flags)
Eric Andersencb57d552001-06-28 07:25:16 +00008314{
8315 struct arglist arglist;
8316 union node *argp;
8317 struct strlist *sp;
8318 struct stackmark smark;
8319
8320 setstackmark(&smark);
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00008321 arglist.list = NULL;
Eric Andersencb57d552001-06-28 07:25:16 +00008322 arglist.lastp = &arglist.list;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008323 for (argp = n->nfor.args; argp; argp = argp->narg.next) {
Eric Andersencb57d552001-06-28 07:25:16 +00008324 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE | EXP_RECORD);
Eric Andersenc470f442003-07-28 09:56:35 +00008325 /* XXX */
Eric Andersencb57d552001-06-28 07:25:16 +00008326 if (evalskip)
8327 goto out;
8328 }
8329 *arglist.lastp = NULL;
8330
8331 exitstatus = 0;
8332 loopnest++;
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008333 flags &= EV_TESTED;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008334 for (sp = arglist.list; sp; sp = sp->next) {
Eric Andersencb57d552001-06-28 07:25:16 +00008335 setvar(n->nfor.var, sp->text, 0);
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008336 evaltree(n->nfor.body, flags);
Eric Andersencb57d552001-06-28 07:25:16 +00008337 if (evalskip) {
8338 if (evalskip == SKIPCONT && --skipcount <= 0) {
8339 evalskip = 0;
8340 continue;
8341 }
8342 if (evalskip == SKIPBREAK && --skipcount <= 0)
8343 evalskip = 0;
8344 break;
8345 }
8346 }
8347 loopnest--;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008348 out:
Eric Andersencb57d552001-06-28 07:25:16 +00008349 popstackmark(&smark);
8350}
8351
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008352static void
Eric Andersenc470f442003-07-28 09:56:35 +00008353evalcase(union node *n, int flags)
Eric Andersencb57d552001-06-28 07:25:16 +00008354{
8355 union node *cp;
8356 union node *patp;
8357 struct arglist arglist;
8358 struct stackmark smark;
8359
8360 setstackmark(&smark);
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00008361 arglist.list = NULL;
Eric Andersencb57d552001-06-28 07:25:16 +00008362 arglist.lastp = &arglist.list;
Eric Andersencb57d552001-06-28 07:25:16 +00008363 expandarg(n->ncase.expr, &arglist, EXP_TILDE);
Eric Andersenc470f442003-07-28 09:56:35 +00008364 exitstatus = 0;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008365 for (cp = n->ncase.cases; cp && evalskip == 0; cp = cp->nclist.next) {
8366 for (patp = cp->nclist.pattern; patp; patp = patp->narg.next) {
Eric Andersencb57d552001-06-28 07:25:16 +00008367 if (casematch(patp, arglist.list->text)) {
8368 if (evalskip == 0) {
8369 evaltree(cp->nclist.body, flags);
8370 }
8371 goto out;
8372 }
8373 }
8374 }
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008375 out:
Eric Andersencb57d552001-06-28 07:25:16 +00008376 popstackmark(&smark);
8377}
8378
Eric Andersenc470f442003-07-28 09:56:35 +00008379/*
8380 * Kick off a subshell to evaluate a tree.
8381 */
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008382static void
Eric Andersenc470f442003-07-28 09:56:35 +00008383evalsubshell(union node *n, int flags)
8384{
8385 struct job *jp;
8386 int backgnd = (n->type == NBACKGND);
8387 int status;
8388
8389 expredir(n->nredir.redirect);
8390 if (!backgnd && flags & EV_EXIT && !trap[0])
8391 goto nofork;
Denis Vlasenkob012b102007-02-19 22:43:01 +00008392 INT_OFF;
Denis Vlasenko68404f12008-03-17 09:00:54 +00008393 jp = makejob(/*n,*/ 1);
Eric Andersenc470f442003-07-28 09:56:35 +00008394 if (forkshell(jp, n, backgnd) == 0) {
Denis Vlasenkob012b102007-02-19 22:43:01 +00008395 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +00008396 flags |= EV_EXIT;
8397 if (backgnd)
8398 flags &=~ EV_TESTED;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00008399 nofork:
Eric Andersenc470f442003-07-28 09:56:35 +00008400 redirect(n->nredir.redirect, 0);
8401 evaltreenr(n->nredir.n, flags);
8402 /* never returns */
8403 }
8404 status = 0;
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00008405 if (!backgnd)
Eric Andersenc470f442003-07-28 09:56:35 +00008406 status = waitforjob(jp);
8407 exitstatus = status;
Denis Vlasenkob012b102007-02-19 22:43:01 +00008408 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +00008409}
8410
Eric Andersenc470f442003-07-28 09:56:35 +00008411/*
8412 * Compute the names of the files in a redirection list.
8413 */
Denis Vlasenko99eb8502007-02-23 21:09:49 +00008414static void fixredir(union node *, const char *, int);
Eric Andersenc470f442003-07-28 09:56:35 +00008415static void
8416expredir(union node *n)
8417{
8418 union node *redir;
8419
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008420 for (redir = n; redir; redir = redir->nfile.next) {
Eric Andersenc470f442003-07-28 09:56:35 +00008421 struct arglist fn;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008422
Denis Vlasenkoc12d51e2008-02-19 23:31:05 +00008423 fn.list = NULL;
Eric Andersenc470f442003-07-28 09:56:35 +00008424 fn.lastp = &fn.list;
8425 switch (redir->type) {
8426 case NFROMTO:
8427 case NFROM:
8428 case NTO:
Denis Vlasenko559691a2008-10-05 18:39:31 +00008429#if ENABLE_ASH_BASH_COMPAT
8430 case NTO2:
8431#endif
Eric Andersenc470f442003-07-28 09:56:35 +00008432 case NCLOBBER:
8433 case NAPPEND:
8434 expandarg(redir->nfile.fname, &fn, EXP_TILDE | EXP_REDIR);
Denis Vlasenko559691a2008-10-05 18:39:31 +00008435#if ENABLE_ASH_BASH_COMPAT
8436 store_expfname:
8437#endif
Eric Andersenc470f442003-07-28 09:56:35 +00008438 redir->nfile.expfname = fn.list->text;
8439 break;
8440 case NFROMFD:
Denis Vlasenko559691a2008-10-05 18:39:31 +00008441 case NTOFD: /* >& */
Eric Andersenc470f442003-07-28 09:56:35 +00008442 if (redir->ndup.vname) {
8443 expandarg(redir->ndup.vname, &fn, EXP_FULL | EXP_TILDE);
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008444 if (fn.list == NULL)
Denis Vlasenkob012b102007-02-19 22:43:01 +00008445 ash_msg_and_raise_error("redir error");
Denis Vlasenko559691a2008-10-05 18:39:31 +00008446#if ENABLE_ASH_BASH_COMPAT
8447//FIXME: we used expandarg with different args!
8448 if (!isdigit_str9(fn.list->text)) {
8449 /* >&file, not >&fd */
8450 if (redir->nfile.fd != 1) /* 123>&file - BAD */
8451 ash_msg_and_raise_error("redir error");
8452 redir->type = NTO2;
8453 goto store_expfname;
8454 }
8455#endif
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008456 fixredir(redir, fn.list->text, 1);
Eric Andersenc470f442003-07-28 09:56:35 +00008457 }
8458 break;
8459 }
8460 }
8461}
8462
Eric Andersencb57d552001-06-28 07:25:16 +00008463/*
Eric Andersencb57d552001-06-28 07:25:16 +00008464 * Evaluate a pipeline. All the processes in the pipeline are children
8465 * of the process creating the pipeline. (This differs from some versions
8466 * of the shell, which make the last process in a pipeline the parent
8467 * of all the rest.)
8468 */
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008469static void
Eric Andersenc470f442003-07-28 09:56:35 +00008470evalpipe(union node *n, int flags)
Eric Andersencb57d552001-06-28 07:25:16 +00008471{
8472 struct job *jp;
8473 struct nodelist *lp;
8474 int pipelen;
8475 int prevfd;
8476 int pip[2];
8477
Eric Andersenc470f442003-07-28 09:56:35 +00008478 TRACE(("evalpipe(0x%lx) called\n", (long)n));
Eric Andersencb57d552001-06-28 07:25:16 +00008479 pipelen = 0;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008480 for (lp = n->npipe.cmdlist; lp; lp = lp->next)
Eric Andersencb57d552001-06-28 07:25:16 +00008481 pipelen++;
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008482 flags |= EV_EXIT;
Denis Vlasenkob012b102007-02-19 22:43:01 +00008483 INT_OFF;
Denis Vlasenko68404f12008-03-17 09:00:54 +00008484 jp = makejob(/*n,*/ pipelen);
Eric Andersencb57d552001-06-28 07:25:16 +00008485 prevfd = -1;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00008486 for (lp = n->npipe.cmdlist; lp; lp = lp->next) {
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008487 prehash(lp->n);
Eric Andersencb57d552001-06-28 07:25:16 +00008488 pip[1] = -1;
8489 if (lp->next) {
8490 if (pipe(pip) < 0) {
8491 close(prevfd);
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00008492 ash_msg_and_raise_error("pipe call failed");
Eric Andersencb57d552001-06-28 07:25:16 +00008493 }
8494 }
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00008495 if (forkshell(jp, lp->n, n->npipe.pipe_backgnd) == 0) {
Denis Vlasenkob012b102007-02-19 22:43:01 +00008496 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00008497 if (pip[1] >= 0) {
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008498 close(pip[0]);
Eric Andersencb57d552001-06-28 07:25:16 +00008499 }
Glenn L McGrath50812ff2002-08-23 13:14:48 +00008500 if (prevfd > 0) {
8501 dup2(prevfd, 0);
8502 close(prevfd);
8503 }
8504 if (pip[1] > 1) {
8505 dup2(pip[1], 1);
8506 close(pip[1]);
8507 }
Eric Andersenc470f442003-07-28 09:56:35 +00008508 evaltreenr(lp->n, flags);
8509 /* never returns */
Eric Andersencb57d552001-06-28 07:25:16 +00008510 }
8511 if (prevfd >= 0)
8512 close(prevfd);
8513 prevfd = pip[0];
Denis Vlasenkob9e70dd2009-03-20 01:24:08 +00008514 /* Don't want to trigger debugging */
8515 if (pip[1] != -1)
8516 close(pip[1]);
Eric Andersencb57d552001-06-28 07:25:16 +00008517 }
Denis Vlasenko2dc240c2008-07-24 06:07:50 +00008518 if (n->npipe.pipe_backgnd == 0) {
Eric Andersencb57d552001-06-28 07:25:16 +00008519 exitstatus = waitforjob(jp);
8520 TRACE(("evalpipe: job done exit status %d\n", exitstatus));
Eric Andersencb57d552001-06-28 07:25:16 +00008521 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00008522 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00008523}
8524
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008525/*
8526 * Controls whether the shell is interactive or not.
8527 */
8528static void
8529setinteractive(int on)
8530{
Denis Vlasenkob07a4962008-06-22 13:16:23 +00008531 static smallint is_interactive;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008532
8533 if (++on == is_interactive)
8534 return;
8535 is_interactive = on;
8536 setsignal(SIGINT);
8537 setsignal(SIGQUIT);
8538 setsignal(SIGTERM);
8539#if !ENABLE_FEATURE_SH_EXTRA_QUIET
8540 if (is_interactive > 1) {
8541 /* Looks like they want an interactive shell */
Denis Vlasenkoca525b42007-06-13 12:27:17 +00008542 static smallint did_banner;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008543
Denis Vlasenkoca525b42007-06-13 12:27:17 +00008544 if (!did_banner) {
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008545 /* note: ash and hush share this string */
8546 out1fmt("\n\n%s %s\n"
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008547 "Enter 'help' for a list of built-in commands."
8548 "\n\n",
Denys Vlasenkoc34c0332009-09-29 12:25:30 +02008549 bb_banner,
8550 "built-in shell (ash)"
8551 );
Denis Vlasenkoca525b42007-06-13 12:27:17 +00008552 did_banner = 1;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008553 }
8554 }
8555#endif
8556}
8557
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008558static void
8559optschanged(void)
8560{
8561#if DEBUG
8562 opentrace();
8563#endif
8564 setinteractive(iflag);
8565 setjobctl(mflag);
Denis Vlasenkob07a4962008-06-22 13:16:23 +00008566#if ENABLE_FEATURE_EDITING_VI
8567 if (viflag)
8568 line_input_state->flags |= VI_MODE;
8569 else
8570 line_input_state->flags &= ~VI_MODE;
8571#else
8572 viflag = 0; /* forcibly keep the option off */
8573#endif
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00008574}
8575
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008576static struct localvar *localvars;
8577
8578/*
8579 * Called after a function returns.
8580 * Interrupts must be off.
8581 */
8582static void
8583poplocalvars(void)
8584{
8585 struct localvar *lvp;
8586 struct var *vp;
8587
8588 while ((lvp = localvars) != NULL) {
8589 localvars = lvp->next;
8590 vp = lvp->vp;
Denys Vlasenko883cea42009-07-11 15:31:59 +02008591 TRACE(("poplocalvar %s\n", vp ? vp->text : "-"));
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008592 if (vp == NULL) { /* $- saved */
8593 memcpy(optlist, lvp->text, sizeof(optlist));
8594 free((char*)lvp->text);
8595 optschanged();
8596 } else if ((lvp->flags & (VUNSET|VSTRFIXED)) == VUNSET) {
8597 unsetvar(vp->text);
8598 } else {
8599 if (vp->func)
8600 (*vp->func)(strchrnul(lvp->text, '=') + 1);
8601 if ((vp->flags & (VTEXTFIXED|VSTACK)) == 0)
8602 free((char*)vp->text);
8603 vp->flags = lvp->flags;
8604 vp->text = lvp->text;
8605 }
8606 free(lvp);
8607 }
8608}
8609
8610static int
8611evalfun(struct funcnode *func, int argc, char **argv, int flags)
8612{
8613 volatile struct shparam saveparam;
8614 struct localvar *volatile savelocalvars;
8615 struct jmploc *volatile savehandler;
8616 struct jmploc jmploc;
8617 int e;
8618
8619 saveparam = shellparam;
8620 savelocalvars = localvars;
8621 e = setjmp(jmploc.loc);
8622 if (e) {
8623 goto funcdone;
8624 }
8625 INT_OFF;
8626 savehandler = exception_handler;
8627 exception_handler = &jmploc;
8628 localvars = NULL;
Denis Vlasenko01631112007-12-16 17:20:38 +00008629 shellparam.malloced = 0;
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008630 func->count++;
8631 funcnest++;
8632 INT_ON;
8633 shellparam.nparam = argc - 1;
8634 shellparam.p = argv + 1;
8635#if ENABLE_ASH_GETOPTS
8636 shellparam.optind = 1;
8637 shellparam.optoff = -1;
8638#endif
8639 evaltree(&func->n, flags & EV_TESTED);
Denis Vlasenko01631112007-12-16 17:20:38 +00008640 funcdone:
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008641 INT_OFF;
8642 funcnest--;
8643 freefunc(func);
8644 poplocalvars();
8645 localvars = savelocalvars;
8646 freeparam(&shellparam);
8647 shellparam = saveparam;
8648 exception_handler = savehandler;
8649 INT_ON;
8650 evalskip &= ~SKIPFUNC;
8651 return e;
8652}
8653
Denis Vlasenko131ae172007-02-18 13:00:19 +00008654#if ENABLE_ASH_CMDCMD
Denis Vlasenkoaa744452007-02-23 01:04:22 +00008655static char **
8656parse_command_args(char **argv, const char **path)
Eric Andersenc470f442003-07-28 09:56:35 +00008657{
8658 char *cp, c;
8659
8660 for (;;) {
8661 cp = *++argv;
8662 if (!cp)
8663 return 0;
8664 if (*cp++ != '-')
8665 break;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00008666 c = *cp++;
8667 if (!c)
Eric Andersenc470f442003-07-28 09:56:35 +00008668 break;
8669 if (c == '-' && !*cp) {
8670 argv++;
8671 break;
8672 }
8673 do {
8674 switch (c) {
8675 case 'p':
Denis Vlasenkof5f75c52007-06-12 22:35:19 +00008676 *path = bb_default_path;
Eric Andersenc470f442003-07-28 09:56:35 +00008677 break;
8678 default:
8679 /* run 'typecmd' for other options */
8680 return 0;
8681 }
Denis Vlasenko9650f362007-02-23 01:04:37 +00008682 c = *cp++;
8683 } while (c);
Eric Andersenc470f442003-07-28 09:56:35 +00008684 }
8685 return argv;
8686}
8687#endif
8688
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008689/*
8690 * Make a variable a local variable. When a variable is made local, it's
8691 * value and flags are saved in a localvar structure. The saved values
8692 * will be restored when the shell function returns. We handle the name
8693 * "-" as a special case.
8694 */
8695static void
8696mklocal(char *name)
8697{
8698 struct localvar *lvp;
8699 struct var **vpp;
8700 struct var *vp;
8701
8702 INT_OFF;
Denis Vlasenko838ffd52008-02-21 04:32:08 +00008703 lvp = ckzalloc(sizeof(struct localvar));
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008704 if (LONE_DASH(name)) {
8705 char *p;
8706 p = ckmalloc(sizeof(optlist));
8707 lvp->text = memcpy(p, optlist, sizeof(optlist));
8708 vp = NULL;
8709 } else {
8710 char *eq;
8711
8712 vpp = hashvar(name);
8713 vp = *findvar(vpp, name);
8714 eq = strchr(name, '=');
8715 if (vp == NULL) {
8716 if (eq)
8717 setvareq(name, VSTRFIXED);
8718 else
8719 setvar(name, NULL, VSTRFIXED);
8720 vp = *vpp; /* the new variable */
8721 lvp->flags = VUNSET;
8722 } else {
8723 lvp->text = vp->text;
8724 lvp->flags = vp->flags;
8725 vp->flags |= VSTRFIXED|VTEXTFIXED;
8726 if (eq)
8727 setvareq(name, 0);
8728 }
8729 }
8730 lvp->vp = vp;
8731 lvp->next = localvars;
8732 localvars = lvp;
8733 INT_ON;
8734}
8735
8736/*
8737 * The "local" command.
8738 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008739static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008740localcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008741{
8742 char *name;
8743
8744 argv = argptr;
8745 while ((name = *argv++) != NULL) {
8746 mklocal(name);
8747 }
8748 return 0;
8749}
8750
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008751static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008752falsecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00008753{
8754 return 1;
8755}
8756
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008757static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008758truecmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00008759{
8760 return 0;
8761}
8762
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008763static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008764execcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00008765{
Denis Vlasenko68404f12008-03-17 09:00:54 +00008766 if (argv[1]) {
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00008767 iflag = 0; /* exit on error */
8768 mflag = 0;
8769 optschanged();
8770 shellexec(argv + 1, pathval(), 0);
8771 }
8772 return 0;
8773}
8774
8775/*
8776 * The return command.
8777 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008778static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008779returncmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00008780{
8781 /*
8782 * If called outside a function, do what ksh does;
8783 * skip the rest of the file.
8784 */
8785 evalskip = funcnest ? SKIPFUNC : SKIPFILE;
8786 return argv[1] ? number(argv[1]) : exitstatus;
8787}
8788
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00008789/* Forward declarations for builtintab[] */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008790static int breakcmd(int, char **) FAST_FUNC;
8791static int dotcmd(int, char **) FAST_FUNC;
8792static int evalcmd(int, char **) FAST_FUNC;
8793static int exitcmd(int, char **) FAST_FUNC;
8794static int exportcmd(int, char **) FAST_FUNC;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00008795#if ENABLE_ASH_GETOPTS
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008796static int getoptscmd(int, char **) FAST_FUNC;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00008797#endif
Denis Vlasenko52764022007-02-24 13:42:56 +00008798#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008799static int helpcmd(int, char **) FAST_FUNC;
Denis Vlasenko52764022007-02-24 13:42:56 +00008800#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00008801#if ENABLE_SH_MATH_SUPPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008802static int letcmd(int, char **) FAST_FUNC;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00008803#endif
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008804static int readcmd(int, char **) FAST_FUNC;
8805static int setcmd(int, char **) FAST_FUNC;
8806static int shiftcmd(int, char **) FAST_FUNC;
8807static int timescmd(int, char **) FAST_FUNC;
8808static int trapcmd(int, char **) FAST_FUNC;
8809static int umaskcmd(int, char **) FAST_FUNC;
8810static int unsetcmd(int, char **) FAST_FUNC;
8811static int ulimitcmd(int, char **) FAST_FUNC;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00008812
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008813#define BUILTIN_NOSPEC "0"
8814#define BUILTIN_SPECIAL "1"
8815#define BUILTIN_REGULAR "2"
8816#define BUILTIN_SPEC_REG "3"
8817#define BUILTIN_ASSIGN "4"
8818#define BUILTIN_SPEC_ASSG "5"
8819#define BUILTIN_REG_ASSG "6"
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008820#define BUILTIN_SPEC_REG_ASSG "7"
8821
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008822/* Stubs for calling non-FAST_FUNC's */
Denys Vlasenko2634bf32009-06-09 18:40:07 +02008823#if ENABLE_ASH_BUILTIN_ECHO
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008824static int FAST_FUNC echocmd(int argc, char **argv) { return echo_main(argc, argv); }
Denys Vlasenko2634bf32009-06-09 18:40:07 +02008825#endif
8826#if ENABLE_ASH_BUILTIN_PRINTF
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008827static int FAST_FUNC printfcmd(int argc, char **argv) { return printf_main(argc, argv); }
Denys Vlasenko2634bf32009-06-09 18:40:07 +02008828#endif
8829#if ENABLE_ASH_BUILTIN_TEST
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008830static int FAST_FUNC testcmd(int argc, char **argv) { return test_main(argc, argv); }
Denys Vlasenko2634bf32009-06-09 18:40:07 +02008831#endif
Denis Vlasenko468aea22008-04-01 14:47:57 +00008832
Denis Vlasenkof7d56652008-03-25 05:51:41 +00008833/* Keep these in proper order since it is searched via bsearch() */
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008834static const struct builtincmd builtintab[] = {
8835 { BUILTIN_SPEC_REG ".", dotcmd },
8836 { BUILTIN_SPEC_REG ":", truecmd },
8837#if ENABLE_ASH_BUILTIN_TEST
Denis Vlasenkocd2663f2008-06-01 22:36:39 +00008838 { BUILTIN_REGULAR "[", testcmd },
Denis Vlasenko80591b02008-03-25 07:49:43 +00008839#if ENABLE_ASH_BASH_COMPAT
Denis Vlasenkocd2663f2008-06-01 22:36:39 +00008840 { BUILTIN_REGULAR "[[", testcmd },
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008841#endif
Denis Vlasenko80591b02008-03-25 07:49:43 +00008842#endif
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008843#if ENABLE_ASH_ALIAS
8844 { BUILTIN_REG_ASSG "alias", aliascmd },
8845#endif
8846#if JOBS
8847 { BUILTIN_REGULAR "bg", fg_bgcmd },
8848#endif
8849 { BUILTIN_SPEC_REG "break", breakcmd },
8850 { BUILTIN_REGULAR "cd", cdcmd },
8851 { BUILTIN_NOSPEC "chdir", cdcmd },
8852#if ENABLE_ASH_CMDCMD
8853 { BUILTIN_REGULAR "command", commandcmd },
8854#endif
8855 { BUILTIN_SPEC_REG "continue", breakcmd },
8856#if ENABLE_ASH_BUILTIN_ECHO
8857 { BUILTIN_REGULAR "echo", echocmd },
8858#endif
8859 { BUILTIN_SPEC_REG "eval", evalcmd },
8860 { BUILTIN_SPEC_REG "exec", execcmd },
8861 { BUILTIN_SPEC_REG "exit", exitcmd },
8862 { BUILTIN_SPEC_REG_ASSG "export", exportcmd },
8863 { BUILTIN_REGULAR "false", falsecmd },
8864#if JOBS
8865 { BUILTIN_REGULAR "fg", fg_bgcmd },
8866#endif
8867#if ENABLE_ASH_GETOPTS
8868 { BUILTIN_REGULAR "getopts", getoptscmd },
8869#endif
8870 { BUILTIN_NOSPEC "hash", hashcmd },
8871#if !ENABLE_FEATURE_SH_EXTRA_QUIET
8872 { BUILTIN_NOSPEC "help", helpcmd },
8873#endif
8874#if JOBS
8875 { BUILTIN_REGULAR "jobs", jobscmd },
8876 { BUILTIN_REGULAR "kill", killcmd },
8877#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00008878#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008879 { BUILTIN_NOSPEC "let", letcmd },
8880#endif
8881 { BUILTIN_ASSIGN "local", localcmd },
Denis Vlasenkocd2663f2008-06-01 22:36:39 +00008882#if ENABLE_ASH_BUILTIN_PRINTF
8883 { BUILTIN_REGULAR "printf", printfcmd },
8884#endif
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008885 { BUILTIN_NOSPEC "pwd", pwdcmd },
8886 { BUILTIN_REGULAR "read", readcmd },
8887 { BUILTIN_SPEC_REG_ASSG "readonly", exportcmd },
8888 { BUILTIN_SPEC_REG "return", returncmd },
8889 { BUILTIN_SPEC_REG "set", setcmd },
8890 { BUILTIN_SPEC_REG "shift", shiftcmd },
8891 { BUILTIN_SPEC_REG "source", dotcmd },
8892#if ENABLE_ASH_BUILTIN_TEST
Denis Vlasenkocd2663f2008-06-01 22:36:39 +00008893 { BUILTIN_REGULAR "test", testcmd },
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008894#endif
8895 { BUILTIN_SPEC_REG "times", timescmd },
8896 { BUILTIN_SPEC_REG "trap", trapcmd },
8897 { BUILTIN_REGULAR "true", truecmd },
8898 { BUILTIN_NOSPEC "type", typecmd },
8899 { BUILTIN_NOSPEC "ulimit", ulimitcmd },
8900 { BUILTIN_REGULAR "umask", umaskcmd },
8901#if ENABLE_ASH_ALIAS
8902 { BUILTIN_REGULAR "unalias", unaliascmd },
8903#endif
8904 { BUILTIN_SPEC_REG "unset", unsetcmd },
8905 { BUILTIN_REGULAR "wait", waitcmd },
8906};
8907
Denis Vlasenko80591b02008-03-25 07:49:43 +00008908/* Should match the above table! */
8909#define COMMANDCMD (builtintab + \
8910 2 + \
8911 1 * ENABLE_ASH_BUILTIN_TEST + \
8912 1 * ENABLE_ASH_BUILTIN_TEST * ENABLE_ASH_BASH_COMPAT + \
8913 1 * ENABLE_ASH_ALIAS + \
8914 1 * ENABLE_ASH_JOB_CONTROL + \
8915 3)
8916#define EXECCMD (builtintab + \
8917 2 + \
8918 1 * ENABLE_ASH_BUILTIN_TEST + \
8919 1 * ENABLE_ASH_BUILTIN_TEST * ENABLE_ASH_BASH_COMPAT + \
8920 1 * ENABLE_ASH_ALIAS + \
8921 1 * ENABLE_ASH_JOB_CONTROL + \
8922 3 + \
8923 1 * ENABLE_ASH_CMDCMD + \
8924 1 + \
8925 ENABLE_ASH_BUILTIN_ECHO + \
8926 1)
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008927
8928/*
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008929 * Search the table of builtin commands.
8930 */
8931static struct builtincmd *
8932find_builtin(const char *name)
8933{
8934 struct builtincmd *bp;
8935
8936 bp = bsearch(
Denis Vlasenko80b8b392007-06-25 10:55:35 +00008937 name, builtintab, ARRAY_SIZE(builtintab), sizeof(builtintab[0]),
Denis Vlasenko5651bfc2007-02-23 21:08:58 +00008938 pstrcmp
8939 );
8940 return bp;
8941}
8942
8943/*
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008944 * Execute a simple command.
8945 */
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008946static int
8947isassignment(const char *p)
Paul Foxc3850c82005-07-20 18:23:39 +00008948{
8949 const char *q = endofname(p);
8950 if (p == q)
8951 return 0;
8952 return *q == '=';
8953}
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02008954static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00008955bltincmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008956{
8957 /* Preserve exitstatus of a previous possible redirection
8958 * as POSIX mandates */
8959 return back_exitstatus;
8960}
Denys Vlasenko641dd7b2009-06-11 19:30:19 +02008961static void
Eric Andersenc470f442003-07-28 09:56:35 +00008962evalcommand(union node *cmd, int flags)
8963{
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00008964 static const struct builtincmd null_bltin = {
8965 "\0\0", bltincmd /* why three NULs? */
Denis Vlasenko4fe15f32007-02-23 01:05:26 +00008966 };
Eric Andersenc470f442003-07-28 09:56:35 +00008967 struct stackmark smark;
8968 union node *argp;
8969 struct arglist arglist;
8970 struct arglist varlist;
8971 char **argv;
8972 int argc;
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00008973 const struct strlist *sp;
Eric Andersenc470f442003-07-28 09:56:35 +00008974 struct cmdentry cmdentry;
8975 struct job *jp;
8976 char *lastarg;
8977 const char *path;
8978 int spclbltin;
Eric Andersenc470f442003-07-28 09:56:35 +00008979 int status;
8980 char **nargv;
Paul Foxc3850c82005-07-20 18:23:39 +00008981 struct builtincmd *bcmd;
Denis Vlasenko34c73c42008-08-16 11:48:02 +00008982 smallint cmd_is_exec;
8983 smallint pseudovarflag = 0;
Eric Andersenc470f442003-07-28 09:56:35 +00008984
8985 /* First expand the arguments. */
8986 TRACE(("evalcommand(0x%lx, %d) called\n", (long)cmd, flags));
8987 setstackmark(&smark);
8988 back_exitstatus = 0;
8989
8990 cmdentry.cmdtype = CMDBUILTIN;
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00008991 cmdentry.u.cmd = &null_bltin;
Eric Andersenc470f442003-07-28 09:56:35 +00008992 varlist.lastp = &varlist.list;
8993 *varlist.lastp = NULL;
8994 arglist.lastp = &arglist.list;
8995 *arglist.lastp = NULL;
8996
8997 argc = 0;
Denis Vlasenkob012b102007-02-19 22:43:01 +00008998 if (cmd->ncmd.args) {
Paul Foxc3850c82005-07-20 18:23:39 +00008999 bcmd = find_builtin(cmd->ncmd.args->narg.text);
9000 pseudovarflag = bcmd && IS_BUILTIN_ASSIGN(bcmd);
9001 }
9002
Eric Andersenc470f442003-07-28 09:56:35 +00009003 for (argp = cmd->ncmd.args; argp; argp = argp->narg.next) {
9004 struct strlist **spp;
9005
9006 spp = arglist.lastp;
"Vladimir N. Oleynik"bef14d72005-09-05 13:25:11 +00009007 if (pseudovarflag && isassignment(argp->narg.text))
Paul Foxc3850c82005-07-20 18:23:39 +00009008 expandarg(argp, &arglist, EXP_VARTILDE);
9009 else
9010 expandarg(argp, &arglist, EXP_FULL | EXP_TILDE);
9011
Eric Andersenc470f442003-07-28 09:56:35 +00009012 for (sp = *spp; sp; sp = sp->next)
9013 argc++;
9014 }
9015
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +00009016 argv = nargv = stalloc(sizeof(char *) * (argc + 1));
Denis Vlasenko2da584f2007-02-19 22:44:05 +00009017 for (sp = arglist.list; sp; sp = sp->next) {
Eric Andersenc470f442003-07-28 09:56:35 +00009018 TRACE(("evalcommand arg: %s\n", sp->text));
9019 *nargv++ = sp->text;
9020 }
9021 *nargv = NULL;
9022
9023 lastarg = NULL;
9024 if (iflag && funcnest == 0 && argc > 0)
9025 lastarg = nargv[-1];
9026
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009027 preverrout_fd = 2;
Eric Andersenc470f442003-07-28 09:56:35 +00009028 expredir(cmd->ncmd.redirect);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009029 status = redirectsafe(cmd->ncmd.redirect, REDIR_PUSH | REDIR_SAVEFD2);
Eric Andersenc470f442003-07-28 09:56:35 +00009030
9031 path = vpath.text;
9032 for (argp = cmd->ncmd.assign; argp; argp = argp->narg.next) {
9033 struct strlist **spp;
9034 char *p;
9035
9036 spp = varlist.lastp;
9037 expandarg(argp, &varlist, EXP_VARTILDE);
9038
9039 /*
9040 * Modify the command lookup path, if a PATH= assignment
9041 * is present
9042 */
9043 p = (*spp)->text;
9044 if (varequal(p, path))
9045 path = p;
9046 }
9047
9048 /* Print the command if xflag is set. */
9049 if (xflag) {
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009050 int n;
9051 const char *p = " %s";
Eric Andersenc470f442003-07-28 09:56:35 +00009052
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009053 p++;
Denis Vlasenko0de37e12007-10-17 11:08:53 +00009054 fdprintf(preverrout_fd, p, expandstr(ps4val()));
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009055
9056 sp = varlist.list;
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +00009057 for (n = 0; n < 2; n++) {
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009058 while (sp) {
Denis Vlasenko0de37e12007-10-17 11:08:53 +00009059 fdprintf(preverrout_fd, p, sp->text);
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009060 sp = sp->next;
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +00009061 if (*p == '%') {
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009062 p--;
9063 }
9064 }
9065 sp = arglist.list;
9066 }
Denis Vlasenko0e6f6612008-02-15 15:02:15 +00009067 safe_write(preverrout_fd, "\n", 1);
Eric Andersenc470f442003-07-28 09:56:35 +00009068 }
9069
9070 cmd_is_exec = 0;
9071 spclbltin = -1;
9072
9073 /* Now locate the command. */
9074 if (argc) {
9075 const char *oldpath;
9076 int cmd_flag = DO_ERR;
9077
9078 path += 5;
9079 oldpath = path;
9080 for (;;) {
9081 find_command(argv[0], &cmdentry, cmd_flag, path);
9082 if (cmdentry.cmdtype == CMDUNKNOWN) {
Denys Vlasenko8131eea2009-11-02 14:19:51 +01009083 flush_stdout_stderr();
Denis Vlasenko6514c5e2008-07-24 13:41:37 +00009084 status = 127;
Eric Andersenc470f442003-07-28 09:56:35 +00009085 goto bail;
9086 }
9087
9088 /* implement bltin and command here */
9089 if (cmdentry.cmdtype != CMDBUILTIN)
9090 break;
9091 if (spclbltin < 0)
9092 spclbltin = IS_BUILTIN_SPECIAL(cmdentry.u.cmd);
9093 if (cmdentry.u.cmd == EXECCMD)
Denis Vlasenko34c73c42008-08-16 11:48:02 +00009094 cmd_is_exec = 1;
Denis Vlasenko131ae172007-02-18 13:00:19 +00009095#if ENABLE_ASH_CMDCMD
Eric Andersenc470f442003-07-28 09:56:35 +00009096 if (cmdentry.u.cmd == COMMANDCMD) {
Eric Andersenc470f442003-07-28 09:56:35 +00009097 path = oldpath;
9098 nargv = parse_command_args(argv, &path);
9099 if (!nargv)
9100 break;
9101 argc -= nargv - argv;
9102 argv = nargv;
9103 cmd_flag |= DO_NOFUNC;
9104 } else
9105#endif
9106 break;
9107 }
9108 }
9109
9110 if (status) {
9111 /* We have a redirection error. */
9112 if (spclbltin > 0)
Denis Vlasenkob012b102007-02-19 22:43:01 +00009113 raise_exception(EXERROR);
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009114 bail:
Eric Andersenc470f442003-07-28 09:56:35 +00009115 exitstatus = status;
9116 goto out;
9117 }
9118
9119 /* Execute the command. */
9120 switch (cmdentry.cmdtype) {
9121 default:
Denis Vlasenkobe54d6b2008-10-27 14:25:52 +00009122
Denis Vlasenko9bc80d72008-04-12 20:07:53 +00009123#if ENABLE_FEATURE_SH_NOFORK
Denis Vlasenkobe54d6b2008-10-27 14:25:52 +00009124/* Hmmm... shouldn't it happen somewhere in forkshell() instead?
9125 * Why "fork off a child process if necessary" doesn't apply to NOFORK? */
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00009126 {
9127 /* find_command() encodes applet_no as (-2 - applet_no) */
9128 int applet_no = (- cmdentry.u.index - 2);
Denis Vlasenko9bc80d72008-04-12 20:07:53 +00009129 if (applet_no >= 0 && APPLET_IS_NOFORK(applet_no)) {
Denis Vlasenko9bc80d72008-04-12 20:07:53 +00009130 listsetvar(varlist.list, VEXPORT|VSTACK);
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00009131 /* run <applet>_main() */
9132 exitstatus = run_nofork_applet(applet_no, argv);
Denis Vlasenko9bc80d72008-04-12 20:07:53 +00009133 break;
9134 }
Denis Vlasenko7465dbc2008-04-13 02:25:53 +00009135 }
Denis Vlasenko9bc80d72008-04-12 20:07:53 +00009136#endif
Eric Andersenc470f442003-07-28 09:56:35 +00009137 /* Fork off a child process if necessary. */
9138 if (!(flags & EV_EXIT) || trap[0]) {
Denis Vlasenkob012b102007-02-19 22:43:01 +00009139 INT_OFF;
Denis Vlasenko68404f12008-03-17 09:00:54 +00009140 jp = makejob(/*cmd,*/ 1);
Eric Andersenc470f442003-07-28 09:56:35 +00009141 if (forkshell(jp, cmd, FORK_FG) != 0) {
9142 exitstatus = waitforjob(jp);
Denis Vlasenkob012b102007-02-19 22:43:01 +00009143 INT_ON;
Denis Vlasenko653d8e72009-03-19 21:59:35 +00009144 TRACE(("forked child exited with %d\n", exitstatus));
Eric Andersenc470f442003-07-28 09:56:35 +00009145 break;
9146 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00009147 FORCE_INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +00009148 }
9149 listsetvar(varlist.list, VEXPORT|VSTACK);
9150 shellexec(argv, path, cmdentry.u.index);
9151 /* NOTREACHED */
9152
9153 case CMDBUILTIN:
9154 cmdenviron = varlist.list;
9155 if (cmdenviron) {
9156 struct strlist *list = cmdenviron;
9157 int i = VNOSET;
9158 if (spclbltin > 0 || argc == 0) {
9159 i = 0;
9160 if (cmd_is_exec && argc > 1)
9161 i = VEXPORT;
9162 }
9163 listsetvar(list, i);
9164 }
Denis Vlasenkobe54d6b2008-10-27 14:25:52 +00009165 /* Tight loop with builtins only:
9166 * "while kill -0 $child; do true; done"
9167 * will never exit even if $child died, unless we do this
9168 * to reap the zombie and make kill detect that it's gone: */
9169 dowait(DOWAIT_NONBLOCK, NULL);
9170
Eric Andersenc470f442003-07-28 09:56:35 +00009171 if (evalbltin(cmdentry.u.cmd, argc, argv)) {
9172 int exit_status;
Denis Vlasenko7f88e342009-03-19 03:36:18 +00009173 int i = exception_type;
Eric Andersenc470f442003-07-28 09:56:35 +00009174 if (i == EXEXIT)
9175 goto raise;
Eric Andersenc470f442003-07-28 09:56:35 +00009176 exit_status = 2;
Eric Andersenc470f442003-07-28 09:56:35 +00009177 if (i == EXINT)
Denis Vlasenko991a1da2008-02-10 19:02:53 +00009178 exit_status = 128 + SIGINT;
Eric Andersenc470f442003-07-28 09:56:35 +00009179 if (i == EXSIG)
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02009180 exit_status = 128 + pending_sig;
Eric Andersenc470f442003-07-28 09:56:35 +00009181 exitstatus = exit_status;
Eric Andersenc470f442003-07-28 09:56:35 +00009182 if (i == EXINT || spclbltin > 0) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009183 raise:
Denis Vlasenko2da584f2007-02-19 22:44:05 +00009184 longjmp(exception_handler->loc, 1);
Eric Andersenc470f442003-07-28 09:56:35 +00009185 }
Denis Vlasenkob012b102007-02-19 22:43:01 +00009186 FORCE_INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +00009187 }
9188 break;
9189
9190 case CMDFUNCTION:
9191 listsetvar(varlist.list, 0);
Denis Vlasenkobe54d6b2008-10-27 14:25:52 +00009192 /* See above for the rationale */
9193 dowait(DOWAIT_NONBLOCK, NULL);
Eric Andersenc470f442003-07-28 09:56:35 +00009194 if (evalfun(cmdentry.u.func, argc, argv, flags))
9195 goto raise;
9196 break;
9197 }
9198
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009199 out:
Denis Vlasenko34c73c42008-08-16 11:48:02 +00009200 popredir(/*drop:*/ cmd_is_exec, /*restore:*/ cmd_is_exec);
Denis Vlasenko6514c5e2008-07-24 13:41:37 +00009201 if (lastarg) {
Eric Andersenc470f442003-07-28 09:56:35 +00009202 /* dsl: I think this is intended to be used to support
9203 * '_' in 'vi' command mode during line editing...
9204 * However I implemented that within libedit itself.
9205 */
9206 setvar("_", lastarg, 0);
Denis Vlasenko6514c5e2008-07-24 13:41:37 +00009207 }
Eric Andersenc470f442003-07-28 09:56:35 +00009208 popstackmark(&smark);
9209}
9210
9211static int
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009212evalbltin(const struct builtincmd *cmd, int argc, char **argv)
9213{
Eric Andersenc470f442003-07-28 09:56:35 +00009214 char *volatile savecmdname;
9215 struct jmploc *volatile savehandler;
9216 struct jmploc jmploc;
9217 int i;
9218
9219 savecmdname = commandname;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009220 i = setjmp(jmploc.loc);
9221 if (i)
Eric Andersenc470f442003-07-28 09:56:35 +00009222 goto cmddone;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00009223 savehandler = exception_handler;
9224 exception_handler = &jmploc;
Eric Andersenc470f442003-07-28 09:56:35 +00009225 commandname = argv[0];
9226 argptr = argv + 1;
9227 optptr = NULL; /* initialize nextopt */
9228 exitstatus = (*cmd->builtin)(argc, argv);
Denis Vlasenkob012b102007-02-19 22:43:01 +00009229 flush_stdout_stderr();
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009230 cmddone:
Glenn L McGrath7b8765c2003-08-29 07:29:30 +00009231 exitstatus |= ferror(stdout);
Rob Landleyf296f0b2006-07-06 01:09:21 +00009232 clearerr(stdout);
Eric Andersenc470f442003-07-28 09:56:35 +00009233 commandname = savecmdname;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00009234 exception_handler = savehandler;
Eric Andersenc470f442003-07-28 09:56:35 +00009235
9236 return i;
9237}
9238
Denis Vlasenkoaa744452007-02-23 01:04:22 +00009239static int
9240goodname(const char *p)
Glenn L McGrath16e45d72004-02-04 08:24:39 +00009241{
9242 return !*endofname(p);
9243}
9244
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009245
Glenn L McGrath50812ff2002-08-23 13:14:48 +00009246/*
9247 * Search for a command. This is called before we fork so that the
9248 * location of the command will be available in the parent as well as
Glenn L McGrath16e45d72004-02-04 08:24:39 +00009249 * the child. The check for "goodname" is an overly conservative
9250 * check that the name will not be subject to expansion.
Glenn L McGrath50812ff2002-08-23 13:14:48 +00009251 */
Eric Andersenc470f442003-07-28 09:56:35 +00009252static void
9253prehash(union node *n)
Glenn L McGrath50812ff2002-08-23 13:14:48 +00009254{
9255 struct cmdentry entry;
9256
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +00009257 if (n->type == NCMD && n->ncmd.args && goodname(n->ncmd.args->narg.text))
9258 find_command(n->ncmd.args->narg.text, &entry, 0, pathval());
Glenn L McGrath50812ff2002-08-23 13:14:48 +00009259}
9260
Eric Andersencb57d552001-06-28 07:25:16 +00009261
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00009262/* ============ Builtin commands
9263 *
9264 * Builtin commands whose functions are closely tied to evaluation
9265 * are implemented here.
Eric Andersencb57d552001-06-28 07:25:16 +00009266 */
9267
9268/*
Eric Andersencb57d552001-06-28 07:25:16 +00009269 * Handle break and continue commands. Break, continue, and return are
9270 * all handled by setting the evalskip flag. The evaluation routines
9271 * above all check this flag, and if it is set they start skipping
9272 * commands rather than executing them. The variable skipcount is
9273 * the number of loops to break/continue, or the number of function
9274 * levels to return. (The latter is always 1.) It should probably
9275 * be an error to break out of more loops than exist, but it isn't
9276 * in the standard shell so we don't make it one here.
9277 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009278static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00009279breakcmd(int argc UNUSED_PARAM, char **argv)
Eric Andersencb57d552001-06-28 07:25:16 +00009280{
Denis Vlasenko68404f12008-03-17 09:00:54 +00009281 int n = argv[1] ? number(argv[1]) : 1;
Eric Andersencb57d552001-06-28 07:25:16 +00009282
Aaron Lehmann2aef3a62001-12-31 06:03:12 +00009283 if (n <= 0)
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +02009284 ash_msg_and_raise_error(msg_illnum, argv[1]);
Eric Andersencb57d552001-06-28 07:25:16 +00009285 if (n > loopnest)
9286 n = loopnest;
9287 if (n > 0) {
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +00009288 evalskip = (**argv == 'c') ? SKIPCONT : SKIPBREAK;
Eric Andersencb57d552001-06-28 07:25:16 +00009289 skipcount = n;
9290 }
9291 return 0;
9292}
9293
Eric Andersenc470f442003-07-28 09:56:35 +00009294
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009295/* ============ input.c
9296 *
Eric Andersen90898442003-08-06 11:20:52 +00009297 * This implements the input routines used by the parser.
Eric Andersencb57d552001-06-28 07:25:16 +00009298 */
Denis Vlasenko99eb8502007-02-23 21:09:49 +00009299
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009300enum {
9301 INPUT_PUSH_FILE = 1,
9302 INPUT_NOFILE_OK = 2,
9303};
Eric Andersencb57d552001-06-28 07:25:16 +00009304
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009305static smallint checkkwd;
Denis Vlasenko99eb8502007-02-23 21:09:49 +00009306/* values of checkkwd variable */
9307#define CHKALIAS 0x1
9308#define CHKKWD 0x2
9309#define CHKNL 0x4
9310
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009311/*
9312 * Push a string back onto the input at this current parsefile level.
9313 * We handle aliases this way.
9314 */
9315#if !ENABLE_ASH_ALIAS
9316#define pushstring(s, ap) pushstring(s)
9317#endif
9318static void
9319pushstring(char *s, struct alias *ap)
9320{
9321 struct strpush *sp;
9322 int len;
9323
9324 len = strlen(s);
9325 INT_OFF;
9326 if (g_parsefile->strpush) {
9327 sp = ckzalloc(sizeof(*sp));
9328 sp->prev = g_parsefile->strpush;
9329 } else {
9330 sp = &(g_parsefile->basestrpush);
9331 }
9332 g_parsefile->strpush = sp;
9333 sp->prev_string = g_parsefile->next_to_pgetc;
9334 sp->prev_left_in_line = g_parsefile->left_in_line;
9335#if ENABLE_ASH_ALIAS
9336 sp->ap = ap;
9337 if (ap) {
9338 ap->flag |= ALIASINUSE;
9339 sp->string = s;
9340 }
9341#endif
9342 g_parsefile->next_to_pgetc = s;
9343 g_parsefile->left_in_line = len;
9344 INT_ON;
9345}
9346
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009347static void
9348popstring(void)
Eric Andersenc470f442003-07-28 09:56:35 +00009349{
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009350 struct strpush *sp = g_parsefile->strpush;
Eric Andersenc470f442003-07-28 09:56:35 +00009351
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009352 INT_OFF;
Denis Vlasenko131ae172007-02-18 13:00:19 +00009353#if ENABLE_ASH_ALIAS
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009354 if (sp->ap) {
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009355 if (g_parsefile->next_to_pgetc[-1] == ' '
9356 || g_parsefile->next_to_pgetc[-1] == '\t'
9357 ) {
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009358 checkkwd |= CHKALIAS;
Glenn L McGrath28939ad2004-07-21 10:20:19 +00009359 }
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009360 if (sp->string != sp->ap->val) {
9361 free(sp->string);
9362 }
9363 sp->ap->flag &= ~ALIASINUSE;
9364 if (sp->ap->flag & ALIASDEAD) {
9365 unalias(sp->ap->name);
9366 }
Glenn L McGrath28939ad2004-07-21 10:20:19 +00009367 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009368#endif
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009369 g_parsefile->next_to_pgetc = sp->prev_string;
9370 g_parsefile->left_in_line = sp->prev_left_in_line;
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009371 g_parsefile->strpush = sp->prev;
9372 if (sp != &(g_parsefile->basestrpush))
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009373 free(sp);
9374 INT_ON;
9375}
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009376
Denis Vlasenkoe27dafd2008-11-28 04:01:03 +00009377//FIXME: BASH_COMPAT with "...&" does TWO pungetc():
9378//it peeks whether it is &>, and then pushes back both chars.
9379//This function needs to save last *next_to_pgetc to buf[0]
9380//to make two pungetc() reliable. Currently,
9381// pgetc (out of buf: does preadfd), pgetc, pungetc, pungetc won't work...
Denis Vlasenkoaa744452007-02-23 01:04:22 +00009382static int
9383preadfd(void)
Eric Andersencb57d552001-06-28 07:25:16 +00009384{
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00009385 int nr;
Denis Vlasenko6a0ad252008-07-25 13:34:05 +00009386 char *buf = g_parsefile->buf;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00009387
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009388 g_parsefile->next_to_pgetc = buf;
Denis Vlasenko38f63192007-01-22 09:03:07 +00009389#if ENABLE_FEATURE_EDITING
Denis Vlasenko85c24712008-03-17 09:04:04 +00009390 retry:
Denis Vlasenko727752d2008-11-28 03:41:47 +00009391 if (!iflag || g_parsefile->fd != STDIN_FILENO)
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009392 nr = nonblock_safe_read(g_parsefile->fd, buf, BUFSIZ - 1);
Eric Andersenc470f442003-07-28 09:56:35 +00009393 else {
Denis Vlasenko38f63192007-01-22 09:03:07 +00009394#if ENABLE_FEATURE_TAB_COMPLETION
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009395 line_input_state->path_lookup = pathval();
Eric Andersen4a79c0e2004-09-08 10:01:07 +00009396#endif
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009397 nr = read_line_input(cmdedit_prompt, buf, BUFSIZ, line_input_state);
9398 if (nr == 0) {
9399 /* Ctrl+C pressed */
9400 if (trap[SIGINT]) {
Glenn L McGrath16e45d72004-02-04 08:24:39 +00009401 buf[0] = '\n';
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009402 buf[1] = '\0';
Glenn L McGrath16e45d72004-02-04 08:24:39 +00009403 raise(SIGINT);
9404 return 1;
9405 }
Eric Andersenc470f442003-07-28 09:56:35 +00009406 goto retry;
9407 }
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00009408 if (nr < 0 && errno == 0) {
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00009409 /* Ctrl+D pressed */
Eric Andersenc470f442003-07-28 09:56:35 +00009410 nr = 0;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00009411 }
Eric Andersencb57d552001-06-28 07:25:16 +00009412 }
9413#else
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00009414 nr = nonblock_safe_read(g_parsefile->fd, buf, BUFSIZ - 1);
Eric Andersencb57d552001-06-28 07:25:16 +00009415#endif
9416
Denis Vlasenkoe376d452008-02-20 22:23:24 +00009417#if 0
9418/* nonblock_safe_read() handles this problem */
Eric Andersencb57d552001-06-28 07:25:16 +00009419 if (nr < 0) {
Eric Andersencb57d552001-06-28 07:25:16 +00009420 if (parsefile->fd == 0 && errno == EWOULDBLOCK) {
Denis Vlasenkod37f2222007-08-19 13:42:08 +00009421 int flags = fcntl(0, F_GETFL);
Denis Vlasenko9cb220b2007-12-09 10:03:28 +00009422 if (flags >= 0 && (flags & O_NONBLOCK)) {
9423 flags &= ~O_NONBLOCK;
Eric Andersencb57d552001-06-28 07:25:16 +00009424 if (fcntl(0, F_SETFL, flags) >= 0) {
9425 out2str("sh: turning off NDELAY mode\n");
9426 goto retry;
9427 }
9428 }
9429 }
9430 }
Denis Vlasenkoe376d452008-02-20 22:23:24 +00009431#endif
Eric Andersencb57d552001-06-28 07:25:16 +00009432 return nr;
9433}
9434
9435/*
9436 * Refill the input buffer and return the next input character:
9437 *
9438 * 1) If a string was pushed back on the input, pop it;
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009439 * 2) If an EOF was pushed back (g_parsefile->left_in_line < -BIGNUM)
9440 * or we are reading from a string so we can't refill the buffer,
9441 * return EOF.
Denys Vlasenko883cea42009-07-11 15:31:59 +02009442 * 3) If there is more stuff in this buffer, use it else call read to fill it.
Eric Andersencb57d552001-06-28 07:25:16 +00009443 * 4) Process input up to the next newline, deleting nul characters.
9444 */
Denis Vlasenko727752d2008-11-28 03:41:47 +00009445//#define pgetc_debug(...) bb_error_msg(__VA_ARGS__)
9446#define pgetc_debug(...) ((void)0)
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009447static int
Eric Andersenc470f442003-07-28 09:56:35 +00009448preadbuffer(void)
Eric Andersencb57d552001-06-28 07:25:16 +00009449{
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009450 char *q;
Eric Andersencb57d552001-06-28 07:25:16 +00009451 int more;
Eric Andersencb57d552001-06-28 07:25:16 +00009452
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009453 while (g_parsefile->strpush) {
Denis Vlasenko131ae172007-02-18 13:00:19 +00009454#if ENABLE_ASH_ALIAS
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009455 if (g_parsefile->left_in_line == -1
9456 && g_parsefile->strpush->ap
9457 && g_parsefile->next_to_pgetc[-1] != ' '
9458 && g_parsefile->next_to_pgetc[-1] != '\t'
Denis Vlasenko16898402008-11-25 01:34:52 +00009459 ) {
Denis Vlasenko727752d2008-11-28 03:41:47 +00009460 pgetc_debug("preadbuffer PEOA");
Eric Andersencb57d552001-06-28 07:25:16 +00009461 return PEOA;
9462 }
Eric Andersen2870d962001-07-02 17:27:21 +00009463#endif
Eric Andersencb57d552001-06-28 07:25:16 +00009464 popstring();
Denis Vlasenko727752d2008-11-28 03:41:47 +00009465 /* try "pgetc" now: */
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009466 pgetc_debug("preadbuffer internal pgetc at %d:%p'%s'",
9467 g_parsefile->left_in_line,
9468 g_parsefile->next_to_pgetc,
9469 g_parsefile->next_to_pgetc);
9470 if (--g_parsefile->left_in_line >= 0)
9471 return (unsigned char)(*g_parsefile->next_to_pgetc++);
Eric Andersencb57d552001-06-28 07:25:16 +00009472 }
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009473 /* on both branches above g_parsefile->left_in_line < 0.
Denis Vlasenko727752d2008-11-28 03:41:47 +00009474 * "pgetc" needs refilling.
9475 */
9476
Denis Vlasenkoe27dafd2008-11-28 04:01:03 +00009477 /* -90 is our -BIGNUM. Below we use -99 to mark "EOF on read",
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009478 * pungetc() may increment it a few times.
Denis Vlasenkoe27dafd2008-11-28 04:01:03 +00009479 * Assuming it won't increment it to less than -90.
Denis Vlasenko727752d2008-11-28 03:41:47 +00009480 */
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009481 if (g_parsefile->left_in_line < -90 || g_parsefile->buf == NULL) {
Denis Vlasenko727752d2008-11-28 03:41:47 +00009482 pgetc_debug("preadbuffer PEOF1");
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009483 /* even in failure keep left_in_line and next_to_pgetc
9484 * in lock step, for correct multi-layer pungetc.
9485 * left_in_line was decremented before preadbuffer(),
9486 * must inc next_to_pgetc: */
9487 g_parsefile->next_to_pgetc++;
Eric Andersencb57d552001-06-28 07:25:16 +00009488 return PEOF;
Denis Vlasenko727752d2008-11-28 03:41:47 +00009489 }
Eric Andersencb57d552001-06-28 07:25:16 +00009490
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009491 more = g_parsefile->left_in_buffer;
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009492 if (more <= 0) {
Denis Vlasenko727752d2008-11-28 03:41:47 +00009493 flush_stdout_stderr();
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009494 again:
9495 more = preadfd();
9496 if (more <= 0) {
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009497 /* don't try reading again */
9498 g_parsefile->left_in_line = -99;
Denis Vlasenko727752d2008-11-28 03:41:47 +00009499 pgetc_debug("preadbuffer PEOF2");
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009500 g_parsefile->next_to_pgetc++;
Eric Andersencb57d552001-06-28 07:25:16 +00009501 return PEOF;
9502 }
9503 }
9504
Denis Vlasenko727752d2008-11-28 03:41:47 +00009505 /* Find out where's the end of line.
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009506 * Set g_parsefile->left_in_line
9507 * and g_parsefile->left_in_buffer acordingly.
Denis Vlasenko727752d2008-11-28 03:41:47 +00009508 * NUL chars are deleted.
9509 */
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009510 q = g_parsefile->next_to_pgetc;
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009511 for (;;) {
Denis Vlasenko727752d2008-11-28 03:41:47 +00009512 char c;
Eric Andersencb57d552001-06-28 07:25:16 +00009513
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009514 more--;
Eric Andersenc470f442003-07-28 09:56:35 +00009515
Denis Vlasenko727752d2008-11-28 03:41:47 +00009516 c = *q;
9517 if (c == '\0') {
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009518 memmove(q, q + 1, more);
Denis Vlasenko727752d2008-11-28 03:41:47 +00009519 } else {
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009520 q++;
9521 if (c == '\n') {
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009522 g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009523 break;
9524 }
Eric Andersencb57d552001-06-28 07:25:16 +00009525 }
9526
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009527 if (more <= 0) {
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009528 g_parsefile->left_in_line = q - g_parsefile->next_to_pgetc - 1;
9529 if (g_parsefile->left_in_line < 0)
Eric Andersencb57d552001-06-28 07:25:16 +00009530 goto again;
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009531 break;
Eric Andersencb57d552001-06-28 07:25:16 +00009532 }
9533 }
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009534 g_parsefile->left_in_buffer = more;
Eric Andersencb57d552001-06-28 07:25:16 +00009535
Eric Andersencb57d552001-06-28 07:25:16 +00009536 if (vflag) {
Denis Vlasenko727752d2008-11-28 03:41:47 +00009537 char save = *q;
9538 *q = '\0';
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009539 out2str(g_parsefile->next_to_pgetc);
Denis Vlasenko727752d2008-11-28 03:41:47 +00009540 *q = save;
Eric Andersencb57d552001-06-28 07:25:16 +00009541 }
9542
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009543 pgetc_debug("preadbuffer at %d:%p'%s'",
9544 g_parsefile->left_in_line,
9545 g_parsefile->next_to_pgetc,
9546 g_parsefile->next_to_pgetc);
Denys Vlasenkocd716832009-11-28 22:14:02 +01009547 return (unsigned char)*g_parsefile->next_to_pgetc++;
Eric Andersencb57d552001-06-28 07:25:16 +00009548}
9549
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009550#define pgetc_as_macro() \
9551 (--g_parsefile->left_in_line >= 0 \
Denys Vlasenkocd716832009-11-28 22:14:02 +01009552 ? (unsigned char)*g_parsefile->next_to_pgetc++ \
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009553 : preadbuffer() \
9554 )
Denis Vlasenko727752d2008-11-28 03:41:47 +00009555
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009556static int
9557pgetc(void)
9558{
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009559 pgetc_debug("pgetc_fast at %d:%p'%s'",
9560 g_parsefile->left_in_line,
9561 g_parsefile->next_to_pgetc,
9562 g_parsefile->next_to_pgetc);
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009563 return pgetc_as_macro();
9564}
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00009565
9566#if ENABLE_ASH_OPTIMIZE_FOR_SIZE
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01009567# define pgetc_fast() pgetc()
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009568#else
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01009569# define pgetc_fast() pgetc_as_macro()
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009570#endif
9571
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009572#if ENABLE_ASH_ALIAS
9573static int
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01009574pgetc_without_PEOA(void)
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009575{
9576 int c;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009577 do {
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009578 pgetc_debug("pgetc_fast at %d:%p'%s'",
9579 g_parsefile->left_in_line,
9580 g_parsefile->next_to_pgetc,
9581 g_parsefile->next_to_pgetc);
Denis Vlasenko834dee72008-10-07 09:18:30 +00009582 c = pgetc_fast();
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009583 } while (c == PEOA);
9584 return c;
9585}
9586#else
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01009587# define pgetc_without_PEOA() pgetc()
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009588#endif
9589
9590/*
9591 * Read a line from the script.
9592 */
9593static char *
9594pfgets(char *line, int len)
9595{
9596 char *p = line;
9597 int nleft = len;
9598 int c;
9599
9600 while (--nleft > 0) {
Denys Vlasenko2ce42e92009-11-29 02:18:13 +01009601 c = pgetc_without_PEOA();
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009602 if (c == PEOF) {
9603 if (p == line)
9604 return NULL;
9605 break;
9606 }
9607 *p++ = c;
9608 if (c == '\n')
9609 break;
9610 }
9611 *p = '\0';
9612 return line;
9613}
9614
Eric Andersenc470f442003-07-28 09:56:35 +00009615/*
9616 * Undo the last call to pgetc. Only one character may be pushed back.
9617 * PEOF may be pushed back.
9618 */
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009619static void
Eric Andersenc470f442003-07-28 09:56:35 +00009620pungetc(void)
9621{
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009622 g_parsefile->left_in_line++;
9623 g_parsefile->next_to_pgetc--;
9624 pgetc_debug("pushed back to %d:%p'%s'",
9625 g_parsefile->left_in_line,
9626 g_parsefile->next_to_pgetc,
9627 g_parsefile->next_to_pgetc);
Eric Andersencb57d552001-06-28 07:25:16 +00009628}
9629
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009630/*
9631 * To handle the "." command, a stack of input files is used. Pushfile
9632 * adds a new entry to the stack and popfile restores the previous level.
9633 */
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009634static void
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009635pushfile(void)
Eric Andersenc470f442003-07-28 09:56:35 +00009636{
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009637 struct parsefile *pf;
9638
Denis Vlasenko597906c2008-02-20 16:38:54 +00009639 pf = ckzalloc(sizeof(*pf));
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009640 pf->prev = g_parsefile;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009641 pf->fd = -1;
Denis Vlasenko597906c2008-02-20 16:38:54 +00009642 /*pf->strpush = NULL; - ckzalloc did it */
9643 /*pf->basestrpush.prev = NULL;*/
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009644 g_parsefile = pf;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009645}
9646
9647static void
9648popfile(void)
9649{
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009650 struct parsefile *pf = g_parsefile;
Eric Andersenc470f442003-07-28 09:56:35 +00009651
Denis Vlasenkob012b102007-02-19 22:43:01 +00009652 INT_OFF;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009653 if (pf->fd >= 0)
9654 close(pf->fd);
Denis Vlasenko60818682007-09-28 22:07:23 +00009655 free(pf->buf);
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009656 while (pf->strpush)
9657 popstring();
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009658 g_parsefile = pf->prev;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009659 free(pf);
Denis Vlasenkob012b102007-02-19 22:43:01 +00009660 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +00009661}
9662
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009663/*
9664 * Return to top level.
9665 */
9666static void
9667popallfiles(void)
9668{
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009669 while (g_parsefile != &basepf)
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009670 popfile();
9671}
9672
9673/*
9674 * Close the file(s) that the shell is reading commands from. Called
9675 * after a fork is done.
9676 */
9677static void
9678closescript(void)
9679{
9680 popallfiles();
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009681 if (g_parsefile->fd > 0) {
9682 close(g_parsefile->fd);
9683 g_parsefile->fd = 0;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009684 }
9685}
9686
9687/*
9688 * Like setinputfile, but takes an open file descriptor. Call this with
9689 * interrupts off.
9690 */
9691static void
9692setinputfd(int fd, int push)
9693{
Denis Vlasenko96e1b382007-09-30 23:50:48 +00009694 close_on_exec_on(fd);
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009695 if (push) {
9696 pushfile();
Denis Vlasenko727752d2008-11-28 03:41:47 +00009697 g_parsefile->buf = NULL;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009698 }
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009699 g_parsefile->fd = fd;
9700 if (g_parsefile->buf == NULL)
9701 g_parsefile->buf = ckmalloc(IBUFSIZ);
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009702 g_parsefile->left_in_buffer = 0;
9703 g_parsefile->left_in_line = 0;
9704 g_parsefile->linno = 1;
Denis Vlasenko4d2183b2007-02-23 01:05:38 +00009705}
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009706
Eric Andersenc470f442003-07-28 09:56:35 +00009707/*
9708 * Set the input to take input from a file. If push is set, push the
9709 * old input onto the stack first.
9710 */
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009711static int
9712setinputfile(const char *fname, int flags)
Eric Andersenc470f442003-07-28 09:56:35 +00009713{
9714 int fd;
9715 int fd2;
9716
Denis Vlasenkob012b102007-02-19 22:43:01 +00009717 INT_OFF;
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009718 fd = open(fname, O_RDONLY);
9719 if (fd < 0) {
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009720 if (flags & INPUT_NOFILE_OK)
9721 goto out;
Denis Vlasenko9604e1b2009-03-03 18:47:56 +00009722 ash_msg_and_raise_error("can't open '%s'", fname);
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009723 }
Eric Andersenc470f442003-07-28 09:56:35 +00009724 if (fd < 10) {
9725 fd2 = copyfd(fd, 10);
9726 close(fd);
9727 if (fd2 < 0)
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +00009728 ash_msg_and_raise_error("out of file descriptors");
Eric Andersenc470f442003-07-28 09:56:35 +00009729 fd = fd2;
9730 }
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009731 setinputfd(fd, flags & INPUT_PUSH_FILE);
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009732 out:
Denis Vlasenkob012b102007-02-19 22:43:01 +00009733 INT_ON;
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +00009734 return fd;
Eric Andersenc470f442003-07-28 09:56:35 +00009735}
9736
Eric Andersencb57d552001-06-28 07:25:16 +00009737/*
9738 * Like setinputfile, but takes input from a string.
9739 */
Eric Andersenc470f442003-07-28 09:56:35 +00009740static void
9741setinputstring(char *string)
Eric Andersen62483552001-07-10 06:09:16 +00009742{
Denis Vlasenkob012b102007-02-19 22:43:01 +00009743 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +00009744 pushfile();
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009745 g_parsefile->next_to_pgetc = string;
9746 g_parsefile->left_in_line = strlen(string);
Denis Vlasenkob07a4962008-06-22 13:16:23 +00009747 g_parsefile->buf = NULL;
Denis Vlasenko41eb3002008-11-28 03:42:31 +00009748 g_parsefile->linno = 1;
Denis Vlasenkob012b102007-02-19 22:43:01 +00009749 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00009750}
9751
9752
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00009753/* ============ mail.c
9754 *
9755 * Routines to check for mail.
Eric Andersencb57d552001-06-28 07:25:16 +00009756 */
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00009757
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00009758#if ENABLE_ASH_MAIL
Eric Andersencb57d552001-06-28 07:25:16 +00009759
Eric Andersencb57d552001-06-28 07:25:16 +00009760#define MAXMBOXES 10
9761
Eric Andersenc470f442003-07-28 09:56:35 +00009762/* times of mailboxes */
9763static time_t mailtime[MAXMBOXES];
9764/* Set if MAIL or MAILPATH is changed. */
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +00009765static smallint mail_var_path_changed;
Eric Andersencb57d552001-06-28 07:25:16 +00009766
Eric Andersencb57d552001-06-28 07:25:16 +00009767/*
Eric Andersenc470f442003-07-28 09:56:35 +00009768 * Print appropriate message(s) if mail has arrived.
9769 * If mail_var_path_changed is set,
9770 * then the value of MAIL has mail_var_path_changed,
9771 * so we just update the values.
Eric Andersencb57d552001-06-28 07:25:16 +00009772 */
Eric Andersenc470f442003-07-28 09:56:35 +00009773static void
9774chkmail(void)
Eric Andersencb57d552001-06-28 07:25:16 +00009775{
Eric Andersencb57d552001-06-28 07:25:16 +00009776 const char *mpath;
9777 char *p;
9778 char *q;
Eric Andersenc470f442003-07-28 09:56:35 +00009779 time_t *mtp;
Eric Andersencb57d552001-06-28 07:25:16 +00009780 struct stackmark smark;
9781 struct stat statb;
9782
Eric Andersencb57d552001-06-28 07:25:16 +00009783 setstackmark(&smark);
Eric Andersenc470f442003-07-28 09:56:35 +00009784 mpath = mpathset() ? mpathval() : mailval();
9785 for (mtp = mailtime; mtp < mailtime + MAXMBOXES; mtp++) {
Denys Vlasenko82a6fb32009-06-14 19:42:12 +02009786 p = path_advance(&mpath, nullstr);
Eric Andersencb57d552001-06-28 07:25:16 +00009787 if (p == NULL)
9788 break;
9789 if (*p == '\0')
9790 continue;
Denis Vlasenkof7d56652008-03-25 05:51:41 +00009791 for (q = p; *q; q++)
9792 continue;
Denis Vlasenkoa7189f02006-11-17 20:29:00 +00009793#if DEBUG
Eric Andersencb57d552001-06-28 07:25:16 +00009794 if (q[-1] != '/')
9795 abort();
9796#endif
Eric Andersenc470f442003-07-28 09:56:35 +00009797 q[-1] = '\0'; /* delete trailing '/' */
9798 if (stat(p, &statb) < 0) {
9799 *mtp = 0;
9800 continue;
Eric Andersencb57d552001-06-28 07:25:16 +00009801 }
Eric Andersenc470f442003-07-28 09:56:35 +00009802 if (!mail_var_path_changed && statb.st_mtime != *mtp) {
9803 fprintf(
9804 stderr, snlfmt,
9805 pathopt ? pathopt : "you have mail"
9806 );
9807 }
9808 *mtp = statb.st_mtime;
Eric Andersencb57d552001-06-28 07:25:16 +00009809 }
Eric Andersenc470f442003-07-28 09:56:35 +00009810 mail_var_path_changed = 0;
Eric Andersencb57d552001-06-28 07:25:16 +00009811 popstackmark(&smark);
9812}
Eric Andersencb57d552001-06-28 07:25:16 +00009813
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009814static void FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00009815changemail(const char *val UNUSED_PARAM)
Eric Andersenc470f442003-07-28 09:56:35 +00009816{
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +00009817 mail_var_path_changed = 1;
Eric Andersenc470f442003-07-28 09:56:35 +00009818}
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +00009819
Denis Vlasenko131ae172007-02-18 13:00:19 +00009820#endif /* ASH_MAIL */
Eric Andersenc470f442003-07-28 09:56:35 +00009821
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00009822
9823/* ============ ??? */
9824
Eric Andersencb57d552001-06-28 07:25:16 +00009825/*
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009826 * Set the shell parameters.
Eric Andersencb57d552001-06-28 07:25:16 +00009827 */
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009828static void
9829setparam(char **argv)
Eric Andersencb57d552001-06-28 07:25:16 +00009830{
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009831 char **newparam;
9832 char **ap;
9833 int nparam;
Eric Andersencb57d552001-06-28 07:25:16 +00009834
Denis Vlasenkof7d56652008-03-25 05:51:41 +00009835 for (nparam = 0; argv[nparam]; nparam++)
9836 continue;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009837 ap = newparam = ckmalloc((nparam + 1) * sizeof(*ap));
9838 while (*argv) {
9839 *ap++ = ckstrdup(*argv++);
Eric Andersencb57d552001-06-28 07:25:16 +00009840 }
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009841 *ap = NULL;
9842 freeparam(&shellparam);
Denis Vlasenko01631112007-12-16 17:20:38 +00009843 shellparam.malloced = 1;
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009844 shellparam.nparam = nparam;
9845 shellparam.p = newparam;
9846#if ENABLE_ASH_GETOPTS
9847 shellparam.optind = 1;
9848 shellparam.optoff = -1;
9849#endif
Eric Andersencb57d552001-06-28 07:25:16 +00009850}
9851
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00009852/*
Denis Vlasenko0dec6de2007-02-23 21:10:47 +00009853 * Process shell options. The global variable argptr contains a pointer
9854 * to the argument list; we advance it past the options.
Denis Vlasenko94e87bc2008-02-14 16:51:58 +00009855 *
9856 * SUSv3 section 2.8.1 "Consequences of Shell Errors" says:
9857 * For a non-interactive shell, an error condition encountered
9858 * by a special built-in ... shall cause the shell to write a diagnostic message
9859 * to standard error and exit as shown in the following table:
Denis Vlasenko56244732008-02-17 15:14:04 +00009860 * Error Special Built-In
Denis Vlasenko94e87bc2008-02-14 16:51:58 +00009861 * ...
9862 * Utility syntax error (option or operand error) Shall exit
9863 * ...
9864 * However, in bug 1142 (http://busybox.net/bugs/view.php?id=1142)
9865 * we see that bash does not do that (set "finishes" with error code 1 instead,
9866 * and shell continues), and people rely on this behavior!
9867 * Testcase:
9868 * set -o barfoo 2>/dev/null
9869 * echo $?
9870 *
9871 * Oh well. Let's mimic that.
Denis Vlasenkobc54cff2007-02-23 01:05:52 +00009872 */
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009873static int
Denis Vlasenkodddfaff2008-05-06 15:30:27 +00009874plus_minus_o(char *name, int val)
Eric Andersen62483552001-07-10 06:09:16 +00009875{
9876 int i;
9877
Denis Vlasenkoa624c112007-02-19 22:45:43 +00009878 if (name) {
9879 for (i = 0; i < NOPTS; i++) {
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +00009880 if (strcmp(name, optnames(i)) == 0) {
Eric Andersenc470f442003-07-28 09:56:35 +00009881 optlist[i] = val;
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009882 return 0;
Eric Andersen62483552001-07-10 06:09:16 +00009883 }
Denis Vlasenkoa624c112007-02-19 22:45:43 +00009884 }
Denis Vlasenkodddfaff2008-05-06 15:30:27 +00009885 ash_msg("illegal option %co %s", val ? '-' : '+', name);
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009886 return 1;
Eric Andersen62483552001-07-10 06:09:16 +00009887 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00009888 for (i = 0; i < NOPTS; i++) {
Denis Vlasenkodddfaff2008-05-06 15:30:27 +00009889 if (val) {
9890 out1fmt("%-16s%s\n", optnames(i), optlist[i] ? "on" : "off");
9891 } else {
9892 out1fmt("set %co %s\n", optlist[i] ? '-' : '+', optnames(i));
9893 }
Denis Vlasenko6b06cb82008-05-15 21:30:45 +00009894 }
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009895 return 0;
Eric Andersen62483552001-07-10 06:09:16 +00009896}
Denis Vlasenkoaa744452007-02-23 01:04:22 +00009897static void
9898setoption(int flag, int val)
9899{
9900 int i;
9901
9902 for (i = 0; i < NOPTS; i++) {
9903 if (optletters(i) == flag) {
9904 optlist[i] = val;
9905 return;
9906 }
9907 }
Denis Vlasenkodddfaff2008-05-06 15:30:27 +00009908 ash_msg_and_raise_error("illegal option %c%c", val ? '-' : '+', flag);
Denis Vlasenkoaa744452007-02-23 01:04:22 +00009909 /* NOTREACHED */
9910}
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009911static int
Eric Andersenc470f442003-07-28 09:56:35 +00009912options(int cmdline)
Eric Andersencb57d552001-06-28 07:25:16 +00009913{
9914 char *p;
9915 int val;
9916 int c;
9917
9918 if (cmdline)
9919 minusc = NULL;
9920 while ((p = *argptr) != NULL) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009921 c = *p++;
Denis Vlasenko8fdc4b72007-07-14 11:33:10 +00009922 if (c != '-' && c != '+')
9923 break;
9924 argptr++;
9925 val = 0; /* val = 0 if c == '+' */
Denis Vlasenko5cedb752007-02-18 19:56:41 +00009926 if (c == '-') {
Eric Andersencb57d552001-06-28 07:25:16 +00009927 val = 1;
Denis Vlasenko9f739442006-12-16 23:49:13 +00009928 if (p[0] == '\0' || LONE_DASH(p)) {
Eric Andersen2870d962001-07-02 17:27:21 +00009929 if (!cmdline) {
9930 /* "-" means turn off -x and -v */
9931 if (p[0] == '\0')
9932 xflag = vflag = 0;
9933 /* "--" means reset params */
9934 else if (*argptr == NULL)
Eric Andersencb57d552001-06-28 07:25:16 +00009935 setparam(argptr);
Eric Andersen2870d962001-07-02 17:27:21 +00009936 }
Eric Andersenc470f442003-07-28 09:56:35 +00009937 break; /* "-" or "--" terminates options */
Eric Andersencb57d552001-06-28 07:25:16 +00009938 }
Eric Andersencb57d552001-06-28 07:25:16 +00009939 }
Denis Vlasenko8fdc4b72007-07-14 11:33:10 +00009940 /* first char was + or - */
Eric Andersencb57d552001-06-28 07:25:16 +00009941 while ((c = *p++) != '\0') {
Denis Vlasenko8fdc4b72007-07-14 11:33:10 +00009942 /* bash 3.2 indeed handles -c CMD and +c CMD the same */
Eric Andersencb57d552001-06-28 07:25:16 +00009943 if (c == 'c' && cmdline) {
Denis Vlasenko8fdc4b72007-07-14 11:33:10 +00009944 minusc = p; /* command is after shell args */
Eric Andersencb57d552001-06-28 07:25:16 +00009945 } else if (c == 'o') {
Denis Vlasenkodddfaff2008-05-06 15:30:27 +00009946 if (plus_minus_o(*argptr, val)) {
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009947 /* it already printed err message */
9948 return 1; /* error */
9949 }
Eric Andersencb57d552001-06-28 07:25:16 +00009950 if (*argptr)
9951 argptr++;
Denis Vlasenko8fdc4b72007-07-14 11:33:10 +00009952 } else if (cmdline && (c == 'l')) { /* -l or +l == --login */
9953 isloginsh = 1;
9954 /* bash does not accept +-login, we also won't */
9955 } else if (cmdline && val && (c == '-')) { /* long options */
Glenn L McGrath9fef17d2002-08-22 18:41:20 +00009956 if (strcmp(p, "login") == 0)
Robert Griebl64f70cc2002-05-14 23:22:06 +00009957 isloginsh = 1;
9958 break;
Eric Andersencb57d552001-06-28 07:25:16 +00009959 } else {
9960 setoption(c, val);
9961 }
9962 }
9963 }
Denis Vlasenko28bf6712008-02-14 15:01:47 +00009964 return 0;
Eric Andersencb57d552001-06-28 07:25:16 +00009965}
9966
Eric Andersencb57d552001-06-28 07:25:16 +00009967/*
Eric Andersencb57d552001-06-28 07:25:16 +00009968 * The shift builtin command.
9969 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +02009970static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00009971shiftcmd(int argc UNUSED_PARAM, char **argv)
Eric Andersencb57d552001-06-28 07:25:16 +00009972{
9973 int n;
9974 char **ap1, **ap2;
9975
9976 n = 1;
Denis Vlasenko68404f12008-03-17 09:00:54 +00009977 if (argv[1])
Eric Andersencb57d552001-06-28 07:25:16 +00009978 n = number(argv[1]);
9979 if (n > shellparam.nparam)
Denis Vlasenkoc90e1be2008-07-30 15:35:05 +00009980 n = 0; /* bash compat, was = shellparam.nparam; */
Denis Vlasenkob012b102007-02-19 22:43:01 +00009981 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +00009982 shellparam.nparam -= n;
Denis Vlasenko2da584f2007-02-19 22:44:05 +00009983 for (ap1 = shellparam.p; --n >= 0; ap1++) {
Denis Vlasenko01631112007-12-16 17:20:38 +00009984 if (shellparam.malloced)
Denis Vlasenkob012b102007-02-19 22:43:01 +00009985 free(*ap1);
Eric Andersencb57d552001-06-28 07:25:16 +00009986 }
9987 ap2 = shellparam.p;
Denis Vlasenkof7d56652008-03-25 05:51:41 +00009988 while ((*ap2++ = *ap1++) != NULL)
9989 continue;
Denis Vlasenko131ae172007-02-18 13:00:19 +00009990#if ENABLE_ASH_GETOPTS
Eric Andersencb57d552001-06-28 07:25:16 +00009991 shellparam.optind = 1;
9992 shellparam.optoff = -1;
Eric Andersenc470f442003-07-28 09:56:35 +00009993#endif
Denis Vlasenkob012b102007-02-19 22:43:01 +00009994 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +00009995 return 0;
9996}
9997
Eric Andersencb57d552001-06-28 07:25:16 +00009998/*
Denis Vlasenkoaa744452007-02-23 01:04:22 +00009999 * POSIX requires that 'set' (but not export or readonly) output the
10000 * variables in lexicographic order - by the locale's collating order (sigh).
10001 * Maybe we could keep them in an ordered balanced binary tree
10002 * instead of hashed lists.
10003 * For now just roll 'em through qsort for printing...
10004 */
10005static int
10006showvars(const char *sep_prefix, int on, int off)
10007{
10008 const char *sep;
10009 char **ep, **epend;
10010
10011 ep = listvars(on, off, &epend);
10012 qsort(ep, epend - ep, sizeof(char *), vpcmp);
10013
Denis Vlasenko2de3d9f2007-02-23 21:10:23 +000010014 sep = *sep_prefix ? " " : sep_prefix;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010015
10016 for (; ep < epend; ep++) {
10017 const char *p;
10018 const char *q;
10019
10020 p = strchrnul(*ep, '=');
10021 q = nullstr;
10022 if (*p)
10023 q = single_quote(++p);
10024 out1fmt("%s%s%.*s%s\n", sep_prefix, sep, (int)(p - *ep), *ep, q);
10025 }
10026 return 0;
10027}
10028
10029/*
Eric Andersencb57d552001-06-28 07:25:16 +000010030 * The set command builtin.
10031 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010032static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000010033setcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersencb57d552001-06-28 07:25:16 +000010034{
Denis Vlasenko28bf6712008-02-14 15:01:47 +000010035 int retval;
10036
Denis Vlasenko68404f12008-03-17 09:00:54 +000010037 if (!argv[1])
Eric Andersenc470f442003-07-28 09:56:35 +000010038 return showvars(nullstr, 0, VUNSET);
Denis Vlasenkob012b102007-02-19 22:43:01 +000010039 INT_OFF;
Denis Vlasenko28bf6712008-02-14 15:01:47 +000010040 retval = 1;
10041 if (!options(0)) { /* if no parse error... */
10042 retval = 0;
10043 optschanged();
10044 if (*argptr != NULL) {
10045 setparam(argptr);
10046 }
Eric Andersencb57d552001-06-28 07:25:16 +000010047 }
Denis Vlasenkob012b102007-02-19 22:43:01 +000010048 INT_ON;
Denis Vlasenko28bf6712008-02-14 15:01:47 +000010049 return retval;
Eric Andersencb57d552001-06-28 07:25:16 +000010050}
10051
Denis Vlasenko131ae172007-02-18 13:00:19 +000010052#if ENABLE_ASH_RANDOM_SUPPORT
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010053static void FAST_FUNC
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +000010054change_random(const char *value)
Eric Andersenef02f822004-03-11 13:34:24 +000010055{
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020010056 uint32_t t;
10057
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010058 if (value == NULL) {
Eric Andersen16767e22004-03-16 05:14:10 +000010059 /* "get", generate */
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020010060 t = next_random(&random_gen);
Eric Andersen16767e22004-03-16 05:14:10 +000010061 /* set without recursion */
Denis Vlasenko448d30e2008-06-27 00:24:11 +000010062 setvar(vrandom.text, utoa(t), VNOFUNC);
Eric Andersen16767e22004-03-16 05:14:10 +000010063 vrandom.flags &= ~VNOFUNC;
10064 } else {
10065 /* set/reset */
Denys Vlasenko3ea2e822009-10-09 20:59:04 +020010066 t = strtoul(value, NULL, 10);
10067 INIT_RANDOM_T(&random_gen, (t ? t : 1), t);
Eric Andersen16767e22004-03-16 05:14:10 +000010068 }
Eric Andersenef02f822004-03-11 13:34:24 +000010069}
Eric Andersen16767e22004-03-16 05:14:10 +000010070#endif
10071
Denis Vlasenko131ae172007-02-18 13:00:19 +000010072#if ENABLE_ASH_GETOPTS
Eric Andersencb57d552001-06-28 07:25:16 +000010073static int
Eric Andersenc470f442003-07-28 09:56:35 +000010074getopts(char *optstr, char *optvar, char **optfirst, int *param_optind, int *optoff)
Eric Andersencb57d552001-06-28 07:25:16 +000010075{
10076 char *p, *q;
10077 char c = '?';
10078 int done = 0;
10079 int err = 0;
Eric Andersena48b0a32003-10-22 10:56:47 +000010080 char s[12];
10081 char **optnext;
Eric Andersencb57d552001-06-28 07:25:16 +000010082
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010083 if (*param_optind < 1)
Eric Andersena48b0a32003-10-22 10:56:47 +000010084 return 1;
10085 optnext = optfirst + *param_optind - 1;
10086
Denis Vlasenko6b06cb82008-05-15 21:30:45 +000010087 if (*param_optind <= 1 || *optoff < 0 || (int)strlen(optnext[-1]) < *optoff)
Eric Andersencb57d552001-06-28 07:25:16 +000010088 p = NULL;
10089 else
Eric Andersena48b0a32003-10-22 10:56:47 +000010090 p = optnext[-1] + *optoff;
Eric Andersencb57d552001-06-28 07:25:16 +000010091 if (p == NULL || *p == '\0') {
10092 /* Current word is done, advance */
Eric Andersencb57d552001-06-28 07:25:16 +000010093 p = *optnext;
10094 if (p == NULL || *p != '-' || *++p == '\0') {
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010095 atend:
Eric Andersencb57d552001-06-28 07:25:16 +000010096 p = NULL;
10097 done = 1;
10098 goto out;
10099 }
10100 optnext++;
Denis Vlasenko9f739442006-12-16 23:49:13 +000010101 if (LONE_DASH(p)) /* check for "--" */
Eric Andersencb57d552001-06-28 07:25:16 +000010102 goto atend;
10103 }
10104
10105 c = *p++;
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +000010106 for (q = optstr; *q != c;) {
Eric Andersencb57d552001-06-28 07:25:16 +000010107 if (*q == '\0') {
10108 if (optstr[0] == ':') {
10109 s[0] = c;
10110 s[1] = '\0';
10111 err |= setvarsafe("OPTARG", s, 0);
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010112 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000010113 fprintf(stderr, "Illegal option -%c\n", c);
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010114 unsetvar("OPTARG");
Eric Andersencb57d552001-06-28 07:25:16 +000010115 }
10116 c = '?';
Eric Andersenc470f442003-07-28 09:56:35 +000010117 goto out;
Eric Andersencb57d552001-06-28 07:25:16 +000010118 }
10119 if (*++q == ':')
10120 q++;
10121 }
10122
10123 if (*++q == ':') {
10124 if (*p == '\0' && (p = *optnext) == NULL) {
10125 if (optstr[0] == ':') {
10126 s[0] = c;
10127 s[1] = '\0';
10128 err |= setvarsafe("OPTARG", s, 0);
10129 c = ':';
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010130 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000010131 fprintf(stderr, "No arg for -%c option\n", c);
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010132 unsetvar("OPTARG");
Eric Andersencb57d552001-06-28 07:25:16 +000010133 c = '?';
10134 }
Eric Andersenc470f442003-07-28 09:56:35 +000010135 goto out;
Eric Andersencb57d552001-06-28 07:25:16 +000010136 }
10137
10138 if (p == *optnext)
10139 optnext++;
Eric Andersenc470f442003-07-28 09:56:35 +000010140 err |= setvarsafe("OPTARG", p, 0);
Eric Andersencb57d552001-06-28 07:25:16 +000010141 p = NULL;
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010142 } else
Eric Andersenc470f442003-07-28 09:56:35 +000010143 err |= setvarsafe("OPTARG", nullstr, 0);
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010144 out:
Eric Andersencb57d552001-06-28 07:25:16 +000010145 *optoff = p ? p - *(optnext - 1) : -1;
Eric Andersenc470f442003-07-28 09:56:35 +000010146 *param_optind = optnext - optfirst + 1;
10147 fmtstr(s, sizeof(s), "%d", *param_optind);
Eric Andersencb57d552001-06-28 07:25:16 +000010148 err |= setvarsafe("OPTIND", s, VNOFUNC);
10149 s[0] = c;
10150 s[1] = '\0';
10151 err |= setvarsafe(optvar, s, 0);
10152 if (err) {
Eric Andersenc470f442003-07-28 09:56:35 +000010153 *param_optind = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010154 *optoff = -1;
Denis Vlasenkob012b102007-02-19 22:43:01 +000010155 flush_stdout_stderr();
10156 raise_exception(EXERROR);
Eric Andersencb57d552001-06-28 07:25:16 +000010157 }
10158 return done;
10159}
Eric Andersenc470f442003-07-28 09:56:35 +000010160
10161/*
10162 * The getopts builtin. Shellparam.optnext points to the next argument
10163 * to be processed. Shellparam.optptr points to the next character to
10164 * be processed in the current argument. If shellparam.optnext is NULL,
10165 * then it's the first time getopts has been called.
10166 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020010167static int FAST_FUNC
Eric Andersenc470f442003-07-28 09:56:35 +000010168getoptscmd(int argc, char **argv)
10169{
10170 char **optbase;
10171
10172 if (argc < 3)
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +000010173 ash_msg_and_raise_error("usage: getopts optstring var [arg]");
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010174 if (argc == 3) {
Eric Andersenc470f442003-07-28 09:56:35 +000010175 optbase = shellparam.p;
10176 if (shellparam.optind > shellparam.nparam + 1) {
10177 shellparam.optind = 1;
10178 shellparam.optoff = -1;
10179 }
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010180 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000010181 optbase = &argv[3];
10182 if (shellparam.optind > argc - 2) {
10183 shellparam.optind = 1;
10184 shellparam.optoff = -1;
10185 }
10186 }
10187
10188 return getopts(argv[1], argv[2], optbase, &shellparam.optind,
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010189 &shellparam.optoff);
Eric Andersenc470f442003-07-28 09:56:35 +000010190}
Denis Vlasenko131ae172007-02-18 13:00:19 +000010191#endif /* ASH_GETOPTS */
Eric Andersencb57d552001-06-28 07:25:16 +000010192
Eric Andersencb57d552001-06-28 07:25:16 +000010193
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010194/* ============ Shell parser */
Eric Andersencb57d552001-06-28 07:25:16 +000010195
Denis Vlasenkob07a4962008-06-22 13:16:23 +000010196struct heredoc {
10197 struct heredoc *next; /* next here document in list */
10198 union node *here; /* redirection node */
10199 char *eofmark; /* string indicating end of input */
10200 smallint striptabs; /* if set, strip leading tabs */
10201};
10202
10203static smallint tokpushback; /* last token pushed back */
10204static smallint parsebackquote; /* nonzero if we are inside backquotes */
10205static smallint quoteflag; /* set if (part of) last token was quoted */
10206static token_id_t lasttoken; /* last token read (integer id Txxx) */
10207static struct heredoc *heredoclist; /* list of here documents to read */
10208static char *wordtext; /* text of last word returned by readtoken */
10209static struct nodelist *backquotelist;
10210static union node *redirnode;
10211static struct heredoc *heredoc;
Denis Vlasenko99eb8502007-02-23 21:09:49 +000010212
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010213/*
10214 * Called when an unexpected token is read during the parse. The argument
10215 * is the token that is expected, or -1 if more than one type of token can
10216 * occur at this point.
10217 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000010218static void raise_error_unexpected_syntax(int) NORETURN;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010219static void
10220raise_error_unexpected_syntax(int token)
10221{
10222 char msg[64];
10223 int l;
10224
Denis Vlasenko7b2294e2008-11-28 03:50:46 +000010225 l = sprintf(msg, "unexpected %s", tokname(lasttoken));
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010226 if (token >= 0)
10227 sprintf(msg + l, " (expecting %s)", tokname(token));
10228 raise_error_syntax(msg);
10229 /* NOTREACHED */
10230}
Eric Andersencb57d552001-06-28 07:25:16 +000010231
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010232#define EOFMARKLEN 79
Eric Andersencb57d552001-06-28 07:25:16 +000010233
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010234/* parsing is heavily cross-recursive, need these forward decls */
10235static union node *andor(void);
10236static union node *pipeline(void);
10237static union node *parse_command(void);
10238static void parseheredoc(void);
10239static char peektoken(void);
10240static int readtoken(void);
Eric Andersencb57d552001-06-28 07:25:16 +000010241
Eric Andersenc470f442003-07-28 09:56:35 +000010242static union node *
10243list(int nlflag)
Eric Andersencb57d552001-06-28 07:25:16 +000010244{
10245 union node *n1, *n2, *n3;
10246 int tok;
10247
Eric Andersenc470f442003-07-28 09:56:35 +000010248 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10249 if (nlflag == 2 && peektoken())
Eric Andersencb57d552001-06-28 07:25:16 +000010250 return NULL;
10251 n1 = NULL;
10252 for (;;) {
10253 n2 = andor();
10254 tok = readtoken();
10255 if (tok == TBACKGND) {
Eric Andersenc470f442003-07-28 09:56:35 +000010256 if (n2->type == NPIPE) {
Denis Vlasenko2dc240c2008-07-24 06:07:50 +000010257 n2->npipe.pipe_backgnd = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010258 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000010259 if (n2->type != NREDIR) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010260 n3 = stzalloc(sizeof(struct nredir));
Eric Andersenc470f442003-07-28 09:56:35 +000010261 n3->nredir.n = n2;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010262 /*n3->nredir.redirect = NULL; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000010263 n2 = n3;
10264 }
10265 n2->type = NBACKGND;
Eric Andersencb57d552001-06-28 07:25:16 +000010266 }
10267 }
10268 if (n1 == NULL) {
10269 n1 = n2;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010270 } else {
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010271 n3 = stzalloc(sizeof(struct nbinary));
Eric Andersencb57d552001-06-28 07:25:16 +000010272 n3->type = NSEMI;
10273 n3->nbinary.ch1 = n1;
10274 n3->nbinary.ch2 = n2;
10275 n1 = n3;
10276 }
10277 switch (tok) {
10278 case TBACKGND:
10279 case TSEMI:
10280 tok = readtoken();
10281 /* fall through */
10282 case TNL:
10283 if (tok == TNL) {
10284 parseheredoc();
Eric Andersenc470f442003-07-28 09:56:35 +000010285 if (nlflag == 1)
Eric Andersencb57d552001-06-28 07:25:16 +000010286 return n1;
10287 } else {
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010288 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010289 }
Eric Andersenc470f442003-07-28 09:56:35 +000010290 checkkwd = CHKNL | CHKKWD | CHKALIAS;
Manuel Novoa III 16815d42001-08-10 19:36:07 +000010291 if (peektoken())
Eric Andersencb57d552001-06-28 07:25:16 +000010292 return n1;
10293 break;
10294 case TEOF:
10295 if (heredoclist)
10296 parseheredoc();
10297 else
Eric Andersenc470f442003-07-28 09:56:35 +000010298 pungetc(); /* push back EOF on input */
Eric Andersencb57d552001-06-28 07:25:16 +000010299 return n1;
10300 default:
Eric Andersenc470f442003-07-28 09:56:35 +000010301 if (nlflag == 1)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010302 raise_error_unexpected_syntax(-1);
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010303 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010304 return n1;
10305 }
10306 }
10307}
10308
Eric Andersenc470f442003-07-28 09:56:35 +000010309static union node *
10310andor(void)
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010311{
Eric Andersencb57d552001-06-28 07:25:16 +000010312 union node *n1, *n2, *n3;
10313 int t;
10314
Eric Andersencb57d552001-06-28 07:25:16 +000010315 n1 = pipeline();
10316 for (;;) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010317 t = readtoken();
10318 if (t == TAND) {
Eric Andersencb57d552001-06-28 07:25:16 +000010319 t = NAND;
10320 } else if (t == TOR) {
10321 t = NOR;
10322 } else {
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010323 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010324 return n1;
10325 }
Eric Andersenc470f442003-07-28 09:56:35 +000010326 checkkwd = CHKNL | CHKKWD | CHKALIAS;
Eric Andersencb57d552001-06-28 07:25:16 +000010327 n2 = pipeline();
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010328 n3 = stzalloc(sizeof(struct nbinary));
Eric Andersencb57d552001-06-28 07:25:16 +000010329 n3->type = t;
10330 n3->nbinary.ch1 = n1;
10331 n3->nbinary.ch2 = n2;
10332 n1 = n3;
10333 }
10334}
10335
Eric Andersenc470f442003-07-28 09:56:35 +000010336static union node *
10337pipeline(void)
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010338{
Eric Andersencb57d552001-06-28 07:25:16 +000010339 union node *n1, *n2, *pipenode;
10340 struct nodelist *lp, *prev;
10341 int negate;
10342
10343 negate = 0;
10344 TRACE(("pipeline: entered\n"));
10345 if (readtoken() == TNOT) {
10346 negate = !negate;
Eric Andersenc470f442003-07-28 09:56:35 +000010347 checkkwd = CHKKWD | CHKALIAS;
Eric Andersencb57d552001-06-28 07:25:16 +000010348 } else
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010349 tokpushback = 1;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010350 n1 = parse_command();
Eric Andersencb57d552001-06-28 07:25:16 +000010351 if (readtoken() == TPIPE) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010352 pipenode = stzalloc(sizeof(struct npipe));
Eric Andersencb57d552001-06-28 07:25:16 +000010353 pipenode->type = NPIPE;
Denis Vlasenko2dc240c2008-07-24 06:07:50 +000010354 /*pipenode->npipe.pipe_backgnd = 0; - stzalloc did it */
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010355 lp = stzalloc(sizeof(struct nodelist));
Eric Andersencb57d552001-06-28 07:25:16 +000010356 pipenode->npipe.cmdlist = lp;
10357 lp->n = n1;
10358 do {
10359 prev = lp;
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010360 lp = stzalloc(sizeof(struct nodelist));
Eric Andersenc470f442003-07-28 09:56:35 +000010361 checkkwd = CHKNL | CHKKWD | CHKALIAS;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010362 lp->n = parse_command();
Eric Andersencb57d552001-06-28 07:25:16 +000010363 prev->next = lp;
10364 } while (readtoken() == TPIPE);
10365 lp->next = NULL;
10366 n1 = pipenode;
10367 }
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010368 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010369 if (negate) {
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010370 n2 = stzalloc(sizeof(struct nnot));
Eric Andersencb57d552001-06-28 07:25:16 +000010371 n2->type = NNOT;
10372 n2->nnot.com = n1;
10373 return n2;
Denis Vlasenko2da584f2007-02-19 22:44:05 +000010374 }
10375 return n1;
Eric Andersencb57d552001-06-28 07:25:16 +000010376}
10377
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010378static union node *
10379makename(void)
10380{
10381 union node *n;
10382
Denis Vlasenko597906c2008-02-20 16:38:54 +000010383 n = stzalloc(sizeof(struct narg));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010384 n->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010385 /*n->narg.next = NULL; - stzalloc did it */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010386 n->narg.text = wordtext;
10387 n->narg.backquote = backquotelist;
10388 return n;
10389}
10390
10391static void
10392fixredir(union node *n, const char *text, int err)
10393{
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000010394 int fd;
10395
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010396 TRACE(("Fix redir %s %d\n", text, err));
10397 if (!err)
10398 n->ndup.vname = NULL;
10399
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000010400 fd = bb_strtou(text, NULL, 10);
10401 if (!errno && fd >= 0)
10402 n->ndup.dupfd = fd;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010403 else if (LONE_DASH(text))
10404 n->ndup.dupfd = -1;
10405 else {
10406 if (err)
Denis Vlasenko559691a2008-10-05 18:39:31 +000010407 raise_error_syntax("bad fd number");
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010408 n->ndup.vname = makename();
10409 }
10410}
10411
10412/*
10413 * Returns true if the text contains nothing to expand (no dollar signs
10414 * or backquotes).
10415 */
10416static int
Denis Vlasenko68819d12008-12-15 11:26:36 +000010417noexpand(const char *text)
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010418{
Denys Vlasenkocd716832009-11-28 22:14:02 +010010419 unsigned char c;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010420
Denys Vlasenkocd716832009-11-28 22:14:02 +010010421 while ((c = *text++) != '\0') {
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010422 if (c == CTLQUOTEMARK)
10423 continue;
10424 if (c == CTLESC)
Denys Vlasenkocd716832009-11-28 22:14:02 +010010425 text++;
Denys Vlasenko76bc2d62009-11-29 01:37:46 +010010426 else if (SIT(c, BASESYNTAX) == CCTL)
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010427 return 0;
10428 }
10429 return 1;
10430}
10431
10432static void
10433parsefname(void)
10434{
10435 union node *n = redirnode;
10436
10437 if (readtoken() != TWORD)
10438 raise_error_unexpected_syntax(-1);
10439 if (n->type == NHERE) {
10440 struct heredoc *here = heredoc;
10441 struct heredoc *p;
10442 int i;
10443
10444 if (quoteflag == 0)
10445 n->type = NXHERE;
10446 TRACE(("Here document %d\n", n->type));
10447 if (!noexpand(wordtext) || (i = strlen(wordtext)) == 0 || i > EOFMARKLEN)
Denis Vlasenko559691a2008-10-05 18:39:31 +000010448 raise_error_syntax("illegal eof marker for << redirection");
Denys Vlasenkob6c84342009-08-29 20:23:20 +020010449 rmescapes(wordtext, 0);
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010450 here->eofmark = wordtext;
10451 here->next = NULL;
10452 if (heredoclist == NULL)
10453 heredoclist = here;
10454 else {
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010455 for (p = heredoclist; p->next; p = p->next)
10456 continue;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010457 p->next = here;
10458 }
10459 } else if (n->type == NTOFD || n->type == NFROMFD) {
10460 fixredir(n, wordtext, 0);
10461 } else {
10462 n->nfile.fname = makename();
10463 }
10464}
Eric Andersencb57d552001-06-28 07:25:16 +000010465
Eric Andersenc470f442003-07-28 09:56:35 +000010466static union node *
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010467simplecmd(void)
10468{
10469 union node *args, **app;
10470 union node *n = NULL;
10471 union node *vars, **vpp;
10472 union node **rpp, *redir;
10473 int savecheckkwd;
Denis Vlasenko80591b02008-03-25 07:49:43 +000010474#if ENABLE_ASH_BASH_COMPAT
10475 smallint double_brackets_flag = 0;
10476#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010477
10478 args = NULL;
10479 app = &args;
10480 vars = NULL;
10481 vpp = &vars;
10482 redir = NULL;
10483 rpp = &redir;
10484
10485 savecheckkwd = CHKALIAS;
10486 for (;;) {
Denis Vlasenko80591b02008-03-25 07:49:43 +000010487 int t;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010488 checkkwd = savecheckkwd;
Denis Vlasenko80591b02008-03-25 07:49:43 +000010489 t = readtoken();
10490 switch (t) {
10491#if ENABLE_ASH_BASH_COMPAT
10492 case TAND: /* "&&" */
10493 case TOR: /* "||" */
10494 if (!double_brackets_flag) {
10495 tokpushback = 1;
10496 goto out;
10497 }
10498 wordtext = (char *) (t == TAND ? "-a" : "-o");
10499#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010500 case TWORD:
Denis Vlasenko597906c2008-02-20 16:38:54 +000010501 n = stzalloc(sizeof(struct narg));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010502 n->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010503 /*n->narg.next = NULL; - stzalloc did it */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010504 n->narg.text = wordtext;
Denis Vlasenko80591b02008-03-25 07:49:43 +000010505#if ENABLE_ASH_BASH_COMPAT
10506 if (strcmp("[[", wordtext) == 0)
10507 double_brackets_flag = 1;
10508 else if (strcmp("]]", wordtext) == 0)
10509 double_brackets_flag = 0;
10510#endif
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010511 n->narg.backquote = backquotelist;
10512 if (savecheckkwd && isassignment(wordtext)) {
10513 *vpp = n;
10514 vpp = &n->narg.next;
10515 } else {
10516 *app = n;
10517 app = &n->narg.next;
10518 savecheckkwd = 0;
10519 }
10520 break;
10521 case TREDIR:
10522 *rpp = n = redirnode;
10523 rpp = &n->nfile.next;
10524 parsefname(); /* read name of redirection file */
10525 break;
10526 case TLP:
10527 if (args && app == &args->narg.next
10528 && !vars && !redir
10529 ) {
10530 struct builtincmd *bcmd;
10531 const char *name;
10532
10533 /* We have a function */
10534 if (readtoken() != TRP)
10535 raise_error_unexpected_syntax(TRP);
10536 name = n->narg.text;
10537 if (!goodname(name)
10538 || ((bcmd = find_builtin(name)) && IS_BUILTIN_SPECIAL(bcmd))
10539 ) {
Denis Vlasenko559691a2008-10-05 18:39:31 +000010540 raise_error_syntax("bad function name");
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010541 }
10542 n->type = NDEFUN;
10543 checkkwd = CHKNL | CHKKWD | CHKALIAS;
10544 n->narg.next = parse_command();
10545 return n;
10546 }
10547 /* fall through */
10548 default:
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010549 tokpushback = 1;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010550 goto out;
10551 }
10552 }
10553 out:
10554 *app = NULL;
10555 *vpp = NULL;
10556 *rpp = NULL;
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010557 n = stzalloc(sizeof(struct ncmd));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010558 n->type = NCMD;
10559 n->ncmd.args = args;
10560 n->ncmd.assign = vars;
10561 n->ncmd.redirect = redir;
10562 return n;
10563}
10564
10565static union node *
10566parse_command(void)
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010567{
Eric Andersencb57d552001-06-28 07:25:16 +000010568 union node *n1, *n2;
10569 union node *ap, **app;
10570 union node *cp, **cpp;
10571 union node *redir, **rpp;
Eric Andersenc470f442003-07-28 09:56:35 +000010572 union node **rpp2;
Eric Andersencb57d552001-06-28 07:25:16 +000010573 int t;
10574
10575 redir = NULL;
Eric Andersenc470f442003-07-28 09:56:35 +000010576 rpp2 = &redir;
Eric Andersen88cec252001-09-06 17:35:20 +000010577
Eric Andersencb57d552001-06-28 07:25:16 +000010578 switch (readtoken()) {
Eric Andersenc470f442003-07-28 09:56:35 +000010579 default:
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010580 raise_error_unexpected_syntax(-1);
Eric Andersenc470f442003-07-28 09:56:35 +000010581 /* NOTREACHED */
Eric Andersencb57d552001-06-28 07:25:16 +000010582 case TIF:
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010583 n1 = stzalloc(sizeof(struct nif));
Eric Andersencb57d552001-06-28 07:25:16 +000010584 n1->type = NIF;
10585 n1->nif.test = list(0);
10586 if (readtoken() != TTHEN)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010587 raise_error_unexpected_syntax(TTHEN);
Eric Andersencb57d552001-06-28 07:25:16 +000010588 n1->nif.ifpart = list(0);
10589 n2 = n1;
10590 while (readtoken() == TELIF) {
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010591 n2->nif.elsepart = stzalloc(sizeof(struct nif));
Eric Andersencb57d552001-06-28 07:25:16 +000010592 n2 = n2->nif.elsepart;
10593 n2->type = NIF;
10594 n2->nif.test = list(0);
10595 if (readtoken() != TTHEN)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010596 raise_error_unexpected_syntax(TTHEN);
Eric Andersencb57d552001-06-28 07:25:16 +000010597 n2->nif.ifpart = list(0);
10598 }
10599 if (lasttoken == TELSE)
10600 n2->nif.elsepart = list(0);
10601 else {
10602 n2->nif.elsepart = NULL;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010603 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010604 }
Eric Andersenc470f442003-07-28 09:56:35 +000010605 t = TFI;
Eric Andersencb57d552001-06-28 07:25:16 +000010606 break;
10607 case TWHILE:
Eric Andersenc470f442003-07-28 09:56:35 +000010608 case TUNTIL: {
Eric Andersencb57d552001-06-28 07:25:16 +000010609 int got;
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010610 n1 = stzalloc(sizeof(struct nbinary));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010611 n1->type = (lasttoken == TWHILE) ? NWHILE : NUNTIL;
Eric Andersencb57d552001-06-28 07:25:16 +000010612 n1->nbinary.ch1 = list(0);
Denis Vlasenkoaa744452007-02-23 01:04:22 +000010613 got = readtoken();
10614 if (got != TDO) {
Denis Vlasenko131ae172007-02-18 13:00:19 +000010615 TRACE(("expecting DO got %s %s\n", tokname(got),
10616 got == TWORD ? wordtext : ""));
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010617 raise_error_unexpected_syntax(TDO);
Eric Andersencb57d552001-06-28 07:25:16 +000010618 }
10619 n1->nbinary.ch2 = list(0);
Eric Andersenc470f442003-07-28 09:56:35 +000010620 t = TDONE;
Eric Andersencb57d552001-06-28 07:25:16 +000010621 break;
10622 }
10623 case TFOR:
Denis Vlasenko2dc240c2008-07-24 06:07:50 +000010624 if (readtoken() != TWORD || quoteflag || !goodname(wordtext))
Denis Vlasenko559691a2008-10-05 18:39:31 +000010625 raise_error_syntax("bad for loop variable");
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010626 n1 = stzalloc(sizeof(struct nfor));
Eric Andersencb57d552001-06-28 07:25:16 +000010627 n1->type = NFOR;
10628 n1->nfor.var = wordtext;
Eric Andersenc470f442003-07-28 09:56:35 +000010629 checkkwd = CHKKWD | CHKALIAS;
Eric Andersencb57d552001-06-28 07:25:16 +000010630 if (readtoken() == TIN) {
10631 app = &ap;
10632 while (readtoken() == TWORD) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010633 n2 = stzalloc(sizeof(struct narg));
Eric Andersencb57d552001-06-28 07:25:16 +000010634 n2->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010635 /*n2->narg.next = NULL; - stzalloc did it */
Eric Andersencb57d552001-06-28 07:25:16 +000010636 n2->narg.text = wordtext;
10637 n2->narg.backquote = backquotelist;
10638 *app = n2;
10639 app = &n2->narg.next;
10640 }
10641 *app = NULL;
10642 n1->nfor.args = ap;
10643 if (lasttoken != TNL && lasttoken != TSEMI)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010644 raise_error_unexpected_syntax(-1);
Eric Andersencb57d552001-06-28 07:25:16 +000010645 } else {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010646 n2 = stzalloc(sizeof(struct narg));
Eric Andersencb57d552001-06-28 07:25:16 +000010647 n2->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010648 /*n2->narg.next = NULL; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000010649 n2->narg.text = (char *)dolatstr;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010650 /*n2->narg.backquote = NULL;*/
Eric Andersencb57d552001-06-28 07:25:16 +000010651 n1->nfor.args = n2;
10652 /*
10653 * Newline or semicolon here is optional (but note
10654 * that the original Bourne shell only allowed NL).
10655 */
10656 if (lasttoken != TNL && lasttoken != TSEMI)
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010657 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010658 }
Eric Andersenc470f442003-07-28 09:56:35 +000010659 checkkwd = CHKNL | CHKKWD | CHKALIAS;
Eric Andersencb57d552001-06-28 07:25:16 +000010660 if (readtoken() != TDO)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010661 raise_error_unexpected_syntax(TDO);
Eric Andersencb57d552001-06-28 07:25:16 +000010662 n1->nfor.body = list(0);
Eric Andersenc470f442003-07-28 09:56:35 +000010663 t = TDONE;
Eric Andersencb57d552001-06-28 07:25:16 +000010664 break;
10665 case TCASE:
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010666 n1 = stzalloc(sizeof(struct ncase));
Eric Andersencb57d552001-06-28 07:25:16 +000010667 n1->type = NCASE;
10668 if (readtoken() != TWORD)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010669 raise_error_unexpected_syntax(TWORD);
Denis Vlasenko597906c2008-02-20 16:38:54 +000010670 n1->ncase.expr = n2 = stzalloc(sizeof(struct narg));
Eric Andersencb57d552001-06-28 07:25:16 +000010671 n2->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010672 /*n2->narg.next = NULL; - stzalloc did it */
Eric Andersencb57d552001-06-28 07:25:16 +000010673 n2->narg.text = wordtext;
10674 n2->narg.backquote = backquotelist;
Eric Andersencb57d552001-06-28 07:25:16 +000010675 do {
Eric Andersenc470f442003-07-28 09:56:35 +000010676 checkkwd = CHKKWD | CHKALIAS;
Eric Andersencb57d552001-06-28 07:25:16 +000010677 } while (readtoken() == TNL);
10678 if (lasttoken != TIN)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010679 raise_error_unexpected_syntax(TIN);
Eric Andersencb57d552001-06-28 07:25:16 +000010680 cpp = &n1->ncase.cases;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010681 next_case:
Eric Andersenc470f442003-07-28 09:56:35 +000010682 checkkwd = CHKNL | CHKKWD;
10683 t = readtoken();
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010684 while (t != TESAC) {
Eric Andersencb57d552001-06-28 07:25:16 +000010685 if (lasttoken == TLP)
10686 readtoken();
Denis Vlasenko838ffd52008-02-21 04:32:08 +000010687 *cpp = cp = stzalloc(sizeof(struct nclist));
Eric Andersencb57d552001-06-28 07:25:16 +000010688 cp->type = NCLIST;
10689 app = &cp->nclist.pattern;
10690 for (;;) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010691 *app = ap = stzalloc(sizeof(struct narg));
Eric Andersencb57d552001-06-28 07:25:16 +000010692 ap->type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000010693 /*ap->narg.next = NULL; - stzalloc did it */
Eric Andersencb57d552001-06-28 07:25:16 +000010694 ap->narg.text = wordtext;
10695 ap->narg.backquote = backquotelist;
Eric Andersenc470f442003-07-28 09:56:35 +000010696 if (readtoken() != TPIPE)
Eric Andersencb57d552001-06-28 07:25:16 +000010697 break;
10698 app = &ap->narg.next;
10699 readtoken();
10700 }
Denis Vlasenko597906c2008-02-20 16:38:54 +000010701 //ap->narg.next = NULL;
Eric Andersencb57d552001-06-28 07:25:16 +000010702 if (lasttoken != TRP)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010703 raise_error_unexpected_syntax(TRP);
Eric Andersenc470f442003-07-28 09:56:35 +000010704 cp->nclist.body = list(2);
Eric Andersencb57d552001-06-28 07:25:16 +000010705
Eric Andersenc470f442003-07-28 09:56:35 +000010706 cpp = &cp->nclist.next;
10707
10708 checkkwd = CHKNL | CHKKWD;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010709 t = readtoken();
10710 if (t != TESAC) {
Eric Andersencb57d552001-06-28 07:25:16 +000010711 if (t != TENDCASE)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010712 raise_error_unexpected_syntax(TENDCASE);
10713 goto next_case;
Eric Andersencb57d552001-06-28 07:25:16 +000010714 }
Eric Andersenc470f442003-07-28 09:56:35 +000010715 }
Eric Andersencb57d552001-06-28 07:25:16 +000010716 *cpp = NULL;
Eric Andersenc470f442003-07-28 09:56:35 +000010717 goto redir;
Eric Andersencb57d552001-06-28 07:25:16 +000010718 case TLP:
Denis Vlasenko597906c2008-02-20 16:38:54 +000010719 n1 = stzalloc(sizeof(struct nredir));
Eric Andersencb57d552001-06-28 07:25:16 +000010720 n1->type = NSUBSHELL;
10721 n1->nredir.n = list(0);
Denis Vlasenko597906c2008-02-20 16:38:54 +000010722 /*n1->nredir.redirect = NULL; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000010723 t = TRP;
Eric Andersencb57d552001-06-28 07:25:16 +000010724 break;
10725 case TBEGIN:
10726 n1 = list(0);
Eric Andersenc470f442003-07-28 09:56:35 +000010727 t = TEND;
Eric Andersencb57d552001-06-28 07:25:16 +000010728 break;
Eric Andersencb57d552001-06-28 07:25:16 +000010729 case TWORD:
Eric Andersenc470f442003-07-28 09:56:35 +000010730 case TREDIR:
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010731 tokpushback = 1;
Eric Andersenc470f442003-07-28 09:56:35 +000010732 return simplecmd();
Eric Andersencb57d552001-06-28 07:25:16 +000010733 }
10734
Eric Andersenc470f442003-07-28 09:56:35 +000010735 if (readtoken() != t)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000010736 raise_error_unexpected_syntax(t);
Eric Andersenc470f442003-07-28 09:56:35 +000010737
Denis Vlasenko5cedb752007-02-18 19:56:41 +000010738 redir:
Eric Andersencb57d552001-06-28 07:25:16 +000010739 /* Now check for redirection which may follow command */
Eric Andersenc470f442003-07-28 09:56:35 +000010740 checkkwd = CHKKWD | CHKALIAS;
10741 rpp = rpp2;
Eric Andersencb57d552001-06-28 07:25:16 +000010742 while (readtoken() == TREDIR) {
10743 *rpp = n2 = redirnode;
10744 rpp = &n2->nfile.next;
10745 parsefname();
10746 }
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010747 tokpushback = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010748 *rpp = NULL;
10749 if (redir) {
10750 if (n1->type != NSUBSHELL) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000010751 n2 = stzalloc(sizeof(struct nredir));
Eric Andersencb57d552001-06-28 07:25:16 +000010752 n2->type = NREDIR;
10753 n2->nredir.n = n1;
10754 n1 = n2;
10755 }
10756 n1->nredir.redirect = redir;
10757 }
Eric Andersencb57d552001-06-28 07:25:16 +000010758 return n1;
10759}
10760
Denis Vlasenkoef527f52008-06-23 01:52:30 +000010761#if ENABLE_ASH_BASH_COMPAT
10762static int decode_dollar_squote(void)
10763{
10764 static const char C_escapes[] ALIGN1 = "nrbtfav""x\\01234567";
10765 int c, cnt;
10766 char *p;
10767 char buf[4];
10768
10769 c = pgetc();
10770 p = strchr(C_escapes, c);
10771 if (p) {
10772 buf[0] = c;
10773 p = buf;
10774 cnt = 3;
10775 if ((unsigned char)(c - '0') <= 7) { /* \ooo */
10776 do {
10777 c = pgetc();
10778 *++p = c;
10779 } while ((unsigned char)(c - '0') <= 7 && --cnt);
10780 pungetc();
10781 } else if (c == 'x') { /* \xHH */
10782 do {
10783 c = pgetc();
10784 *++p = c;
10785 } while (isxdigit(c) && --cnt);
10786 pungetc();
10787 if (cnt == 3) { /* \x but next char is "bad" */
10788 c = 'x';
10789 goto unrecognized;
10790 }
10791 } else { /* simple seq like \\ or \t */
10792 p++;
10793 }
10794 *p = '\0';
10795 p = buf;
10796 c = bb_process_escape_sequence((void*)&p);
10797 } else { /* unrecognized "\z": print both chars unless ' or " */
10798 if (c != '\'' && c != '"') {
10799 unrecognized:
10800 c |= 0x100; /* "please encode \, then me" */
10801 }
10802 }
10803 return c;
10804}
10805#endif
10806
Eric Andersencb57d552001-06-28 07:25:16 +000010807/*
10808 * If eofmark is NULL, read a word or a redirection symbol. If eofmark
10809 * is not NULL, read a here document. In the latter case, eofmark is the
10810 * word which marks the end of the document and striptabs is true if
Denys Vlasenkocd716832009-11-28 22:14:02 +010010811 * leading tabs should be stripped from the document. The argument c
Eric Andersencb57d552001-06-28 07:25:16 +000010812 * is the first character of the input token or document.
10813 *
10814 * Because C does not have internal subroutines, I have simulated them
10815 * using goto's to implement the subroutine linkage. The following macros
10816 * will run code that appears at the end of readtoken1.
10817 */
Eric Andersen2870d962001-07-02 17:27:21 +000010818#define CHECKEND() {goto checkend; checkend_return:;}
10819#define PARSEREDIR() {goto parseredir; parseredir_return:;}
10820#define PARSESUB() {goto parsesub; parsesub_return:;}
10821#define PARSEBACKQOLD() {oldstyle = 1; goto parsebackq; parsebackq_oldreturn:;}
10822#define PARSEBACKQNEW() {oldstyle = 0; goto parsebackq; parsebackq_newreturn:;}
10823#define PARSEARITH() {goto parsearith; parsearith_return:;}
Eric Andersencb57d552001-06-28 07:25:16 +000010824static int
Denys Vlasenkocd716832009-11-28 22:14:02 +010010825readtoken1(int c, int syntax, char *eofmark, int striptabs)
Manuel Novoa III 16815d42001-08-10 19:36:07 +000010826{
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010827 /* NB: syntax parameter fits into smallint */
Denys Vlasenkocd716832009-11-28 22:14:02 +010010828 /* c parameter is an unsigned char or PEOF or PEOA */
Eric Andersencb57d552001-06-28 07:25:16 +000010829 char *out;
10830 int len;
10831 char line[EOFMARKLEN + 1];
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010832 struct nodelist *bqlist;
10833 smallint quotef;
10834 smallint dblquote;
10835 smallint oldstyle;
10836 smallint prevsyntax; /* syntax before arithmetic */
Denis Vlasenko46a53062007-09-24 18:30:02 +000010837#if ENABLE_ASH_EXPAND_PRMT
10838 smallint pssyntax; /* we are expanding a prompt string */
10839#endif
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010840 int varnest; /* levels of variables expansion */
10841 int arinest; /* levels of arithmetic expansion */
10842 int parenlevel; /* levels of parens in arithmetic */
10843 int dqvarnest; /* levels of variables expansion within double quotes */
10844
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000010845 IF_ASH_BASH_COMPAT(smallint bash_dollar_squote = 0;)
Denis Vlasenkoef527f52008-06-23 01:52:30 +000010846
Eric Andersencb57d552001-06-28 07:25:16 +000010847#if __GNUC__
10848 /* Avoid longjmp clobbering */
10849 (void) &out;
10850 (void) &quotef;
10851 (void) &dblquote;
10852 (void) &varnest;
10853 (void) &arinest;
10854 (void) &parenlevel;
10855 (void) &dqvarnest;
10856 (void) &oldstyle;
10857 (void) &prevsyntax;
10858 (void) &syntax;
10859#endif
Denis Vlasenko41eb3002008-11-28 03:42:31 +000010860 startlinno = g_parsefile->linno;
Eric Andersencb57d552001-06-28 07:25:16 +000010861 bqlist = NULL;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010862 quotef = 0;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010863 oldstyle = 0;
10864 prevsyntax = 0;
Denis Vlasenko46a53062007-09-24 18:30:02 +000010865#if ENABLE_ASH_EXPAND_PRMT
10866 pssyntax = (syntax == PSSYNTAX);
10867 if (pssyntax)
10868 syntax = DQSYNTAX;
10869#endif
10870 dblquote = (syntax == DQSYNTAX);
Eric Andersencb57d552001-06-28 07:25:16 +000010871 varnest = 0;
10872 arinest = 0;
10873 parenlevel = 0;
10874 dqvarnest = 0;
10875
10876 STARTSTACKSTR(out);
Denis Vlasenko176d49d2008-10-06 09:51:47 +000010877 loop:
10878 /* For each line, until end of word */
10879 {
Eric Andersenc470f442003-07-28 09:56:35 +000010880 CHECKEND(); /* set c to PEOF if at end of here document */
10881 for (;;) { /* until end of line or end of word */
10882 CHECKSTRSPACE(4, out); /* permit 4 calls to USTPUTC */
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000010883 switch (SIT(c, syntax)) {
Eric Andersenc470f442003-07-28 09:56:35 +000010884 case CNL: /* '\n' */
Eric Andersencb57d552001-06-28 07:25:16 +000010885 if (syntax == BASESYNTAX)
Eric Andersenc470f442003-07-28 09:56:35 +000010886 goto endword; /* exit outer loop */
Eric Andersencb57d552001-06-28 07:25:16 +000010887 USTPUTC(c, out);
Denis Vlasenko41eb3002008-11-28 03:42:31 +000010888 g_parsefile->linno++;
Eric Andersencb57d552001-06-28 07:25:16 +000010889 if (doprompt)
10890 setprompt(2);
Eric Andersencb57d552001-06-28 07:25:16 +000010891 c = pgetc();
Eric Andersenc470f442003-07-28 09:56:35 +000010892 goto loop; /* continue outer loop */
Eric Andersencb57d552001-06-28 07:25:16 +000010893 case CWORD:
10894 USTPUTC(c, out);
10895 break;
10896 case CCTL:
Eric Andersenc470f442003-07-28 09:56:35 +000010897 if (eofmark == NULL || dblquote)
Eric Andersencb57d552001-06-28 07:25:16 +000010898 USTPUTC(CTLESC, out);
Denis Vlasenkoef527f52008-06-23 01:52:30 +000010899#if ENABLE_ASH_BASH_COMPAT
10900 if (c == '\\' && bash_dollar_squote) {
10901 c = decode_dollar_squote();
10902 if (c & 0x100) {
10903 USTPUTC('\\', out);
10904 c = (unsigned char)c;
10905 }
10906 }
10907#endif
Eric Andersencb57d552001-06-28 07:25:16 +000010908 USTPUTC(c, out);
10909 break;
Eric Andersenc470f442003-07-28 09:56:35 +000010910 case CBACK: /* backslash */
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010010911 c = pgetc_without_PEOA();
Eric Andersencb57d552001-06-28 07:25:16 +000010912 if (c == PEOF) {
Eric Andersenc470f442003-07-28 09:56:35 +000010913 USTPUTC(CTLESC, out);
Eric Andersencb57d552001-06-28 07:25:16 +000010914 USTPUTC('\\', out);
10915 pungetc();
10916 } else if (c == '\n') {
10917 if (doprompt)
10918 setprompt(2);
Eric Andersencb57d552001-06-28 07:25:16 +000010919 } else {
Denis Vlasenko46a53062007-09-24 18:30:02 +000010920#if ENABLE_ASH_EXPAND_PRMT
10921 if (c == '$' && pssyntax) {
10922 USTPUTC(CTLESC, out);
10923 USTPUTC('\\', out);
10924 }
10925#endif
Denis Vlasenkoef527f52008-06-23 01:52:30 +000010926 if (dblquote && c != '\\'
10927 && c != '`' && c != '$'
10928 && (c != '"' || eofmark != NULL)
Eric Andersenc470f442003-07-28 09:56:35 +000010929 ) {
10930 USTPUTC(CTLESC, out);
Eric Andersencb57d552001-06-28 07:25:16 +000010931 USTPUTC('\\', out);
Eric Andersenc470f442003-07-28 09:56:35 +000010932 }
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000010933 if (SIT(c, SQSYNTAX) == CCTL)
Eric Andersencb57d552001-06-28 07:25:16 +000010934 USTPUTC(CTLESC, out);
Eric Andersencb57d552001-06-28 07:25:16 +000010935 USTPUTC(c, out);
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010936 quotef = 1;
Eric Andersencb57d552001-06-28 07:25:16 +000010937 }
10938 break;
10939 case CSQUOTE:
Eric Andersencb57d552001-06-28 07:25:16 +000010940 syntax = SQSYNTAX;
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010941 quotemark:
Eric Andersenc470f442003-07-28 09:56:35 +000010942 if (eofmark == NULL) {
10943 USTPUTC(CTLQUOTEMARK, out);
10944 }
Eric Andersencb57d552001-06-28 07:25:16 +000010945 break;
10946 case CDQUOTE:
Eric Andersencb57d552001-06-28 07:25:16 +000010947 syntax = DQSYNTAX;
10948 dblquote = 1;
Eric Andersenc470f442003-07-28 09:56:35 +000010949 goto quotemark;
Eric Andersencb57d552001-06-28 07:25:16 +000010950 case CENDQUOTE:
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000010951 IF_ASH_BASH_COMPAT(bash_dollar_squote = 0;)
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000010952 if (eofmark != NULL && arinest == 0
10953 && varnest == 0
10954 ) {
Eric Andersencb57d552001-06-28 07:25:16 +000010955 USTPUTC(c, out);
10956 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000010957 if (dqvarnest == 0) {
Eric Andersencb57d552001-06-28 07:25:16 +000010958 syntax = BASESYNTAX;
10959 dblquote = 0;
10960 }
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010961 quotef = 1;
Eric Andersenc470f442003-07-28 09:56:35 +000010962 goto quotemark;
Eric Andersencb57d552001-06-28 07:25:16 +000010963 }
10964 break;
Eric Andersenc470f442003-07-28 09:56:35 +000010965 case CVAR: /* '$' */
10966 PARSESUB(); /* parse substitution */
Eric Andersencb57d552001-06-28 07:25:16 +000010967 break;
Eric Andersenc470f442003-07-28 09:56:35 +000010968 case CENDVAR: /* '}' */
Eric Andersencb57d552001-06-28 07:25:16 +000010969 if (varnest > 0) {
10970 varnest--;
10971 if (dqvarnest > 0) {
10972 dqvarnest--;
10973 }
10974 USTPUTC(CTLENDVAR, out);
10975 } else {
10976 USTPUTC(c, out);
10977 }
10978 break;
Mike Frysinger98c52642009-04-02 10:02:37 +000010979#if ENABLE_SH_MATH_SUPPORT
Eric Andersenc470f442003-07-28 09:56:35 +000010980 case CLP: /* '(' in arithmetic */
Eric Andersencb57d552001-06-28 07:25:16 +000010981 parenlevel++;
10982 USTPUTC(c, out);
10983 break;
Eric Andersenc470f442003-07-28 09:56:35 +000010984 case CRP: /* ')' in arithmetic */
Eric Andersencb57d552001-06-28 07:25:16 +000010985 if (parenlevel > 0) {
10986 USTPUTC(c, out);
10987 --parenlevel;
10988 } else {
10989 if (pgetc() == ')') {
10990 if (--arinest == 0) {
10991 USTPUTC(CTLENDARI, out);
10992 syntax = prevsyntax;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000010993 dblquote = (syntax == DQSYNTAX);
Eric Andersencb57d552001-06-28 07:25:16 +000010994 } else
10995 USTPUTC(')', out);
10996 } else {
10997 /*
10998 * unbalanced parens
10999 * (don't 2nd guess - no error)
11000 */
11001 pungetc();
11002 USTPUTC(')', out);
11003 }
11004 }
11005 break;
11006#endif
Eric Andersenc470f442003-07-28 09:56:35 +000011007 case CBQUOTE: /* '`' */
Eric Andersencb57d552001-06-28 07:25:16 +000011008 PARSEBACKQOLD();
11009 break;
Eric Andersen2870d962001-07-02 17:27:21 +000011010 case CENDFILE:
Eric Andersenc470f442003-07-28 09:56:35 +000011011 goto endword; /* exit outer loop */
Eric Andersencb57d552001-06-28 07:25:16 +000011012 case CIGN:
11013 break;
11014 default:
Denis Vlasenko834dee72008-10-07 09:18:30 +000011015 if (varnest == 0) {
11016#if ENABLE_ASH_BASH_COMPAT
11017 if (c == '&') {
11018 if (pgetc() == '>')
11019 c = 0x100 + '>'; /* flag &> */
11020 pungetc();
11021 }
11022#endif
Eric Andersenc470f442003-07-28 09:56:35 +000011023 goto endword; /* exit outer loop */
Denis Vlasenko834dee72008-10-07 09:18:30 +000011024 }
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010011025 IF_ASH_ALIAS(if (c != PEOA))
Eric Andersencb57d552001-06-28 07:25:16 +000011026 USTPUTC(c, out);
Eric Andersen3102ac42001-07-06 04:26:23 +000011027
Eric Andersencb57d552001-06-28 07:25:16 +000011028 }
Denis Vlasenko834dee72008-10-07 09:18:30 +000011029 c = pgetc_fast();
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000011030 } /* for (;;) */
Eric Andersencb57d552001-06-28 07:25:16 +000011031 }
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000011032 endword:
Mike Frysinger98c52642009-04-02 10:02:37 +000011033#if ENABLE_SH_MATH_SUPPORT
Eric Andersencb57d552001-06-28 07:25:16 +000011034 if (syntax == ARISYNTAX)
Denis Vlasenko559691a2008-10-05 18:39:31 +000011035 raise_error_syntax("missing '))'");
Eric Andersenc470f442003-07-28 09:56:35 +000011036#endif
Denis Vlasenko99eb8502007-02-23 21:09:49 +000011037 if (syntax != BASESYNTAX && !parsebackquote && eofmark == NULL)
Denis Vlasenko559691a2008-10-05 18:39:31 +000011038 raise_error_syntax("unterminated quoted string");
Eric Andersencb57d552001-06-28 07:25:16 +000011039 if (varnest != 0) {
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011040 startlinno = g_parsefile->linno;
Eric Andersenc470f442003-07-28 09:56:35 +000011041 /* { */
Denis Vlasenko559691a2008-10-05 18:39:31 +000011042 raise_error_syntax("missing '}'");
Eric Andersencb57d552001-06-28 07:25:16 +000011043 }
11044 USTPUTC('\0', out);
Eric Andersenc470f442003-07-28 09:56:35 +000011045 len = out - (char *)stackblock();
Eric Andersencb57d552001-06-28 07:25:16 +000011046 out = stackblock();
11047 if (eofmark == NULL) {
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000011048 if ((c == '>' || c == '<' IF_ASH_BASH_COMPAT( || c == 0x100 + '>'))
Denis Vlasenko834dee72008-10-07 09:18:30 +000011049 && quotef == 0
11050 ) {
Denis Vlasenko559691a2008-10-05 18:39:31 +000011051 if (isdigit_str9(out)) {
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000011052 PARSEREDIR(); /* passed as params: out, c */
11053 lasttoken = TREDIR;
11054 return lasttoken;
11055 }
11056 /* else: non-number X seen, interpret it
11057 * as "NNNX>file" = "NNNX >file" */
Eric Andersencb57d552001-06-28 07:25:16 +000011058 }
Denis Vlasenkoef527f52008-06-23 01:52:30 +000011059 pungetc();
Eric Andersencb57d552001-06-28 07:25:16 +000011060 }
11061 quoteflag = quotef;
11062 backquotelist = bqlist;
11063 grabstackblock(len);
11064 wordtext = out;
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000011065 lasttoken = TWORD;
11066 return lasttoken;
Eric Andersencb57d552001-06-28 07:25:16 +000011067/* end of readtoken routine */
11068
Eric Andersencb57d552001-06-28 07:25:16 +000011069/*
11070 * Check to see whether we are at the end of the here document. When this
11071 * is called, c is set to the first character of the next input line. If
11072 * we are at the end of the here document, this routine sets the c to PEOF.
11073 */
Eric Andersenc470f442003-07-28 09:56:35 +000011074checkend: {
11075 if (eofmark) {
Denis Vlasenko131ae172007-02-18 13:00:19 +000011076#if ENABLE_ASH_ALIAS
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010011077 if (c == PEOA)
11078 c = pgetc_without_PEOA();
Eric Andersenc470f442003-07-28 09:56:35 +000011079#endif
11080 if (striptabs) {
11081 while (c == '\t') {
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010011082 c = pgetc_without_PEOA();
Eric Andersencb57d552001-06-28 07:25:16 +000011083 }
Eric Andersenc470f442003-07-28 09:56:35 +000011084 }
11085 if (c == *eofmark) {
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000011086 if (pfgets(line, sizeof(line)) != NULL) {
Eric Andersenc470f442003-07-28 09:56:35 +000011087 char *p, *q;
Eric Andersencb57d552001-06-28 07:25:16 +000011088
Eric Andersenc470f442003-07-28 09:56:35 +000011089 p = line;
Denis Vlasenkof7d56652008-03-25 05:51:41 +000011090 for (q = eofmark + 1; *q && *p == *q; p++, q++)
11091 continue;
Eric Andersenc470f442003-07-28 09:56:35 +000011092 if (*p == '\n' && *q == '\0') {
11093 c = PEOF;
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011094 g_parsefile->linno++;
Eric Andersenc470f442003-07-28 09:56:35 +000011095 needprompt = doprompt;
11096 } else {
11097 pushstring(line, NULL);
Eric Andersencb57d552001-06-28 07:25:16 +000011098 }
11099 }
11100 }
11101 }
Eric Andersenc470f442003-07-28 09:56:35 +000011102 goto checkend_return;
11103}
Eric Andersencb57d552001-06-28 07:25:16 +000011104
Eric Andersencb57d552001-06-28 07:25:16 +000011105/*
11106 * Parse a redirection operator. The variable "out" points to a string
11107 * specifying the fd to be redirected. The variable "c" contains the
11108 * first character of the redirection operator.
11109 */
Eric Andersenc470f442003-07-28 09:56:35 +000011110parseredir: {
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000011111 /* out is already checked to be a valid number or "" */
11112 int fd = (*out == '\0' ? -1 : atoi(out));
Eric Andersenc470f442003-07-28 09:56:35 +000011113 union node *np;
Eric Andersencb57d552001-06-28 07:25:16 +000011114
Denis Vlasenko597906c2008-02-20 16:38:54 +000011115 np = stzalloc(sizeof(struct nfile));
Eric Andersenc470f442003-07-28 09:56:35 +000011116 if (c == '>') {
11117 np->nfile.fd = 1;
11118 c = pgetc();
11119 if (c == '>')
11120 np->type = NAPPEND;
11121 else if (c == '|')
11122 np->type = NCLOBBER;
11123 else if (c == '&')
11124 np->type = NTOFD;
Denis Vlasenko559691a2008-10-05 18:39:31 +000011125 /* it also can be NTO2 (>&file), but we can't figure it out yet */
Eric Andersenc470f442003-07-28 09:56:35 +000011126 else {
11127 np->type = NTO;
11128 pungetc();
Eric Andersencb57d552001-06-28 07:25:16 +000011129 }
Denis Vlasenko834dee72008-10-07 09:18:30 +000011130 }
11131#if ENABLE_ASH_BASH_COMPAT
11132 else if (c == 0x100 + '>') { /* this flags &> redirection */
11133 np->nfile.fd = 1;
11134 pgetc(); /* this is '>', no need to check */
11135 np->type = NTO2;
11136 }
11137#endif
11138 else { /* c == '<' */
Denis Vlasenko597906c2008-02-20 16:38:54 +000011139 /*np->nfile.fd = 0; - stzalloc did it */
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011140 c = pgetc();
11141 switch (c) {
Eric Andersenc470f442003-07-28 09:56:35 +000011142 case '<':
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000011143 if (sizeof(struct nfile) != sizeof(struct nhere)) {
Denis Vlasenko597906c2008-02-20 16:38:54 +000011144 np = stzalloc(sizeof(struct nhere));
11145 /*np->nfile.fd = 0; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000011146 }
11147 np->type = NHERE;
Denis Vlasenko838ffd52008-02-21 04:32:08 +000011148 heredoc = stzalloc(sizeof(struct heredoc));
Eric Andersenc470f442003-07-28 09:56:35 +000011149 heredoc->here = np;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011150 c = pgetc();
11151 if (c == '-') {
Eric Andersenc470f442003-07-28 09:56:35 +000011152 heredoc->striptabs = 1;
11153 } else {
Denis Vlasenko838ffd52008-02-21 04:32:08 +000011154 /*heredoc->striptabs = 0; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000011155 pungetc();
11156 }
11157 break;
11158
11159 case '&':
11160 np->type = NFROMFD;
11161 break;
11162
11163 case '>':
11164 np->type = NFROMTO;
11165 break;
11166
11167 default:
11168 np->type = NFROM;
11169 pungetc();
11170 break;
11171 }
Eric Andersencb57d552001-06-28 07:25:16 +000011172 }
Denis Vlasenko6fbb43b2008-07-24 19:44:41 +000011173 if (fd >= 0)
11174 np->nfile.fd = fd;
Eric Andersenc470f442003-07-28 09:56:35 +000011175 redirnode = np;
11176 goto parseredir_return;
11177}
Eric Andersencb57d552001-06-28 07:25:16 +000011178
Eric Andersencb57d552001-06-28 07:25:16 +000011179/*
11180 * Parse a substitution. At this point, we have read the dollar sign
11181 * and nothing else.
11182 */
Denis Vlasenkocc571512007-02-23 21:10:35 +000011183
11184/* is_special(c) evaluates to 1 for c in "!#$*-0123456789?@"; 0 otherwise
11185 * (assuming ascii char codes, as the original implementation did) */
11186#define is_special(c) \
Denis Vlasenkoef527f52008-06-23 01:52:30 +000011187 (((unsigned)(c) - 33 < 32) \
11188 && ((0xc1ff920dU >> ((unsigned)(c) - 33)) & 1))
Eric Andersenc470f442003-07-28 09:56:35 +000011189parsesub: {
Denys Vlasenkocd716832009-11-28 22:14:02 +010011190 unsigned char subtype;
Eric Andersenc470f442003-07-28 09:56:35 +000011191 int typeloc;
11192 int flags;
11193 char *p;
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000011194 static const char types[] ALIGN1 = "}-+?=";
Eric Andersencb57d552001-06-28 07:25:16 +000011195
Eric Andersenc470f442003-07-28 09:56:35 +000011196 c = pgetc();
Denys Vlasenkocd716832009-11-28 22:14:02 +010011197 if (c > 255 /* PEOA or PEOF */
Denis Vlasenkoef527f52008-06-23 01:52:30 +000011198 || (c != '(' && c != '{' && !is_name(c) && !is_special(c))
Eric Andersenc470f442003-07-28 09:56:35 +000011199 ) {
Denis Vlasenkoef527f52008-06-23 01:52:30 +000011200#if ENABLE_ASH_BASH_COMPAT
11201 if (c == '\'')
11202 bash_dollar_squote = 1;
11203 else
11204#endif
11205 USTPUTC('$', out);
Eric Andersenc470f442003-07-28 09:56:35 +000011206 pungetc();
11207 } else if (c == '(') { /* $(command) or $((arith)) */
11208 if (pgetc() == '(') {
Mike Frysinger98c52642009-04-02 10:02:37 +000011209#if ENABLE_SH_MATH_SUPPORT
Eric Andersenc470f442003-07-28 09:56:35 +000011210 PARSEARITH();
11211#else
Mike Frysinger98a6f562008-06-09 09:38:45 +000011212 raise_error_syntax("you disabled math support for $((arith)) syntax");
Eric Andersenc470f442003-07-28 09:56:35 +000011213#endif
Glenn L McGrath9fef17d2002-08-22 18:41:20 +000011214 } else {
Eric Andersenc470f442003-07-28 09:56:35 +000011215 pungetc();
11216 PARSEBACKQNEW();
11217 }
11218 } else {
11219 USTPUTC(CTLVAR, out);
11220 typeloc = out - (char *)stackblock();
11221 USTPUTC(VSNORMAL, out);
11222 subtype = VSNORMAL;
11223 if (c == '{') {
11224 c = pgetc();
11225 if (c == '#') {
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011226 c = pgetc();
11227 if (c == '}')
Eric Andersenc470f442003-07-28 09:56:35 +000011228 c = '#';
11229 else
11230 subtype = VSLENGTH;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011231 } else
Eric Andersenc470f442003-07-28 09:56:35 +000011232 subtype = 0;
11233 }
Denys Vlasenkocd716832009-11-28 22:14:02 +010011234 if (c <= 255 /* not PEOA or PEOF */ && is_name(c)) {
Eric Andersenc470f442003-07-28 09:56:35 +000011235 do {
11236 STPUTC(c, out);
Eric Andersencb57d552001-06-28 07:25:16 +000011237 c = pgetc();
Denys Vlasenkocd716832009-11-28 22:14:02 +010011238 } while (c <= 255 /* not PEOA or PEOF */ && is_in_name(c));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011239 } else if (isdigit(c)) {
Eric Andersenc470f442003-07-28 09:56:35 +000011240 do {
11241 STPUTC(c, out);
11242 c = pgetc();
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011243 } while (isdigit(c));
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000011244 } else if (is_special(c)) {
Eric Andersenc470f442003-07-28 09:56:35 +000011245 USTPUTC(c, out);
11246 c = pgetc();
Denis Vlasenko559691a2008-10-05 18:39:31 +000011247 } else {
11248 badsub:
11249 raise_error_syntax("bad substitution");
11250 }
Cristian Ionescu-Idbohrn301f5ec2009-10-05 02:07:23 +020011251 if (c != '}' && subtype == VSLENGTH)
11252 goto badsub;
Eric Andersencb57d552001-06-28 07:25:16 +000011253
Eric Andersenc470f442003-07-28 09:56:35 +000011254 STPUTC('=', out);
11255 flags = 0;
11256 if (subtype == 0) {
11257 switch (c) {
11258 case ':':
Eric Andersenc470f442003-07-28 09:56:35 +000011259 c = pgetc();
Denis Vlasenko92e13c22008-03-25 01:17:40 +000011260#if ENABLE_ASH_BASH_COMPAT
11261 if (c == ':' || c == '$' || isdigit(c)) {
11262 pungetc();
11263 subtype = VSSUBSTR;
11264 break;
11265 }
11266#endif
11267 flags = VSNUL;
Eric Andersenc470f442003-07-28 09:56:35 +000011268 /*FALLTHROUGH*/
11269 default:
11270 p = strchr(types, c);
11271 if (p == NULL)
11272 goto badsub;
11273 subtype = p - types + VSNORMAL;
11274 break;
11275 case '%':
Denis Vlasenko92e13c22008-03-25 01:17:40 +000011276 case '#': {
11277 int cc = c;
11278 subtype = c == '#' ? VSTRIMLEFT : VSTRIMRIGHT;
11279 c = pgetc();
11280 if (c == cc)
11281 subtype++;
11282 else
11283 pungetc();
11284 break;
11285 }
11286#if ENABLE_ASH_BASH_COMPAT
11287 case '/':
11288 subtype = VSREPLACE;
11289 c = pgetc();
11290 if (c == '/')
11291 subtype++; /* VSREPLACEALL */
11292 else
11293 pungetc();
11294 break;
11295#endif
Eric Andersencb57d552001-06-28 07:25:16 +000011296 }
Eric Andersenc470f442003-07-28 09:56:35 +000011297 } else {
11298 pungetc();
11299 }
11300 if (dblquote || arinest)
11301 flags |= VSQUOTE;
Denys Vlasenkocd716832009-11-28 22:14:02 +010011302 ((unsigned char *)stackblock())[typeloc] = subtype | flags;
Eric Andersenc470f442003-07-28 09:56:35 +000011303 if (subtype != VSNORMAL) {
11304 varnest++;
11305 if (dblquote || arinest) {
11306 dqvarnest++;
Eric Andersencb57d552001-06-28 07:25:16 +000011307 }
11308 }
11309 }
Eric Andersenc470f442003-07-28 09:56:35 +000011310 goto parsesub_return;
11311}
Eric Andersencb57d552001-06-28 07:25:16 +000011312
Eric Andersencb57d552001-06-28 07:25:16 +000011313/*
11314 * Called to parse command substitutions. Newstyle is set if the command
11315 * is enclosed inside $(...); nlpp is a pointer to the head of the linked
11316 * list of commands (passed by reference), and savelen is the number of
11317 * characters on the top of the stack which must be preserved.
11318 */
Eric Andersenc470f442003-07-28 09:56:35 +000011319parsebackq: {
11320 struct nodelist **nlpp;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000011321 smallint savepbq;
Eric Andersenc470f442003-07-28 09:56:35 +000011322 union node *n;
11323 char *volatile str;
11324 struct jmploc jmploc;
11325 struct jmploc *volatile savehandler;
11326 size_t savelen;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000011327 smallint saveprompt = 0;
11328
Eric Andersencb57d552001-06-28 07:25:16 +000011329#ifdef __GNUC__
Eric Andersenc470f442003-07-28 09:56:35 +000011330 (void) &saveprompt;
Eric Andersencb57d552001-06-28 07:25:16 +000011331#endif
Eric Andersenc470f442003-07-28 09:56:35 +000011332 savepbq = parsebackquote;
11333 if (setjmp(jmploc.loc)) {
Denis Vlasenko60818682007-09-28 22:07:23 +000011334 free(str);
Eric Andersenc470f442003-07-28 09:56:35 +000011335 parsebackquote = 0;
Denis Vlasenko2da584f2007-02-19 22:44:05 +000011336 exception_handler = savehandler;
11337 longjmp(exception_handler->loc, 1);
Eric Andersenc470f442003-07-28 09:56:35 +000011338 }
Denis Vlasenkob012b102007-02-19 22:43:01 +000011339 INT_OFF;
Eric Andersenc470f442003-07-28 09:56:35 +000011340 str = NULL;
11341 savelen = out - (char *)stackblock();
11342 if (savelen > 0) {
11343 str = ckmalloc(savelen);
11344 memcpy(str, stackblock(), savelen);
11345 }
Denis Vlasenko2da584f2007-02-19 22:44:05 +000011346 savehandler = exception_handler;
11347 exception_handler = &jmploc;
Denis Vlasenkob012b102007-02-19 22:43:01 +000011348 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +000011349 if (oldstyle) {
11350 /* We must read until the closing backquote, giving special
11351 treatment to some slashes, and then push the string and
11352 reread it as input, interpreting it normally. */
11353 char *pout;
11354 int pc;
11355 size_t psavelen;
11356 char *pstr;
11357
11358
11359 STARTSTACKSTR(pout);
11360 for (;;) {
11361 if (needprompt) {
11362 setprompt(2);
Eric Andersenc470f442003-07-28 09:56:35 +000011363 }
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011364 pc = pgetc();
11365 switch (pc) {
Eric Andersenc470f442003-07-28 09:56:35 +000011366 case '`':
11367 goto done;
11368
11369 case '\\':
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011370 pc = pgetc();
11371 if (pc == '\n') {
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011372 g_parsefile->linno++;
Eric Andersenc470f442003-07-28 09:56:35 +000011373 if (doprompt)
11374 setprompt(2);
11375 /*
11376 * If eating a newline, avoid putting
11377 * the newline into the new character
11378 * stream (via the STPUTC after the
11379 * switch).
11380 */
11381 continue;
11382 }
11383 if (pc != '\\' && pc != '`' && pc != '$'
Denys Vlasenko76bc2d62009-11-29 01:37:46 +010011384 && (!dblquote || pc != '"')
11385 ) {
Eric Andersenc470f442003-07-28 09:56:35 +000011386 STPUTC('\\', pout);
Denys Vlasenko76bc2d62009-11-29 01:37:46 +010011387 }
Denys Vlasenkocd716832009-11-28 22:14:02 +010011388 if (pc <= 255 /* not PEOA or PEOF */) {
Eric Andersenc470f442003-07-28 09:56:35 +000011389 break;
11390 }
11391 /* fall through */
11392
11393 case PEOF:
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010011394 IF_ASH_ALIAS(case PEOA:)
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011395 startlinno = g_parsefile->linno;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000011396 raise_error_syntax("EOF in backquote substitution");
Eric Andersenc470f442003-07-28 09:56:35 +000011397
11398 case '\n':
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011399 g_parsefile->linno++;
Eric Andersenc470f442003-07-28 09:56:35 +000011400 needprompt = doprompt;
11401 break;
11402
11403 default:
11404 break;
11405 }
11406 STPUTC(pc, pout);
11407 }
Denis Vlasenko5cedb752007-02-18 19:56:41 +000011408 done:
Eric Andersenc470f442003-07-28 09:56:35 +000011409 STPUTC('\0', pout);
11410 psavelen = pout - (char *)stackblock();
11411 if (psavelen > 0) {
11412 pstr = grabstackstr(pout);
11413 setinputstring(pstr);
11414 }
11415 }
11416 nlpp = &bqlist;
11417 while (*nlpp)
11418 nlpp = &(*nlpp)->next;
Denis Vlasenko597906c2008-02-20 16:38:54 +000011419 *nlpp = stzalloc(sizeof(**nlpp));
11420 /* (*nlpp)->next = NULL; - stzalloc did it */
Eric Andersenc470f442003-07-28 09:56:35 +000011421 parsebackquote = oldstyle;
11422
11423 if (oldstyle) {
11424 saveprompt = doprompt;
11425 doprompt = 0;
Eric Andersencb57d552001-06-28 07:25:16 +000011426 }
11427
Eric Andersenc470f442003-07-28 09:56:35 +000011428 n = list(2);
11429
11430 if (oldstyle)
11431 doprompt = saveprompt;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011432 else if (readtoken() != TRP)
11433 raise_error_unexpected_syntax(TRP);
Eric Andersenc470f442003-07-28 09:56:35 +000011434
11435 (*nlpp)->n = n;
11436 if (oldstyle) {
11437 /*
11438 * Start reading from old file again, ignoring any pushed back
11439 * tokens left from the backquote parsing
11440 */
11441 popfile();
11442 tokpushback = 0;
11443 }
11444 while (stackblocksize() <= savelen)
11445 growstackblock();
11446 STARTSTACKSTR(out);
11447 if (str) {
11448 memcpy(out, str, savelen);
11449 STADJUST(savelen, out);
Denis Vlasenkob012b102007-02-19 22:43:01 +000011450 INT_OFF;
11451 free(str);
Eric Andersenc470f442003-07-28 09:56:35 +000011452 str = NULL;
Denis Vlasenkob012b102007-02-19 22:43:01 +000011453 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +000011454 }
11455 parsebackquote = savepbq;
Denis Vlasenko2da584f2007-02-19 22:44:05 +000011456 exception_handler = savehandler;
Eric Andersenc470f442003-07-28 09:56:35 +000011457 if (arinest || dblquote)
11458 USTPUTC(CTLBACKQ | CTLQUOTE, out);
11459 else
11460 USTPUTC(CTLBACKQ, out);
11461 if (oldstyle)
11462 goto parsebackq_oldreturn;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000011463 goto parsebackq_newreturn;
Eric Andersenc470f442003-07-28 09:56:35 +000011464}
11465
Mike Frysinger98c52642009-04-02 10:02:37 +000011466#if ENABLE_SH_MATH_SUPPORT
Eric Andersencb57d552001-06-28 07:25:16 +000011467/*
11468 * Parse an arithmetic expansion (indicate start of one and set state)
11469 */
Eric Andersenc470f442003-07-28 09:56:35 +000011470parsearith: {
Eric Andersenc470f442003-07-28 09:56:35 +000011471 if (++arinest == 1) {
11472 prevsyntax = syntax;
11473 syntax = ARISYNTAX;
11474 USTPUTC(CTLARI, out);
11475 if (dblquote)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000011476 USTPUTC('"', out);
Eric Andersenc470f442003-07-28 09:56:35 +000011477 else
Denis Vlasenkoa624c112007-02-19 22:45:43 +000011478 USTPUTC(' ', out);
Eric Andersenc470f442003-07-28 09:56:35 +000011479 } else {
11480 /*
11481 * we collapse embedded arithmetic expansion to
11482 * parenthesis, which should be equivalent
11483 */
11484 USTPUTC('(', out);
Eric Andersencb57d552001-06-28 07:25:16 +000011485 }
Eric Andersenc470f442003-07-28 09:56:35 +000011486 goto parsearith_return;
11487}
11488#endif
Eric Andersencb57d552001-06-28 07:25:16 +000011489
Eric Andersenc470f442003-07-28 09:56:35 +000011490} /* end of readtoken */
11491
Eric Andersencb57d552001-06-28 07:25:16 +000011492/*
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011493 * Read the next input token.
11494 * If the token is a word, we set backquotelist to the list of cmds in
11495 * backquotes. We set quoteflag to true if any part of the word was
11496 * quoted.
11497 * If the token is TREDIR, then we set redirnode to a structure containing
11498 * the redirection.
11499 * In all cases, the variable startlinno is set to the number of the line
11500 * on which the token starts.
11501 *
11502 * [Change comment: here documents and internal procedures]
11503 * [Readtoken shouldn't have any arguments. Perhaps we should make the
11504 * word parsing code into a separate routine. In this case, readtoken
11505 * doesn't need to have any internal procedures, but parseword does.
11506 * We could also make parseoperator in essence the main routine, and
11507 * have parseword (readtoken1?) handle both words and redirection.]
Eric Andersencb57d552001-06-28 07:25:16 +000011508 */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011509#define NEW_xxreadtoken
11510#ifdef NEW_xxreadtoken
11511/* singles must be first! */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000011512static const char xxreadtoken_chars[7] ALIGN1 = {
Denis Vlasenko834dee72008-10-07 09:18:30 +000011513 '\n', '(', ')', /* singles */
11514 '&', '|', ';', /* doubles */
11515 0
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000011516};
Eric Andersencb57d552001-06-28 07:25:16 +000011517
Denis Vlasenko834dee72008-10-07 09:18:30 +000011518#define xxreadtoken_singles 3
11519#define xxreadtoken_doubles 3
11520
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000011521static const char xxreadtoken_tokens[] ALIGN1 = {
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011522 TNL, TLP, TRP, /* only single occurrence allowed */
11523 TBACKGND, TPIPE, TSEMI, /* if single occurrence */
11524 TEOF, /* corresponds to trailing nul */
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000011525 TAND, TOR, TENDCASE /* if double occurrence */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011526};
11527
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011528static int
11529xxreadtoken(void)
11530{
11531 int c;
11532
11533 if (tokpushback) {
11534 tokpushback = 0;
11535 return lasttoken;
Eric Andersencb57d552001-06-28 07:25:16 +000011536 }
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011537 if (needprompt) {
11538 setprompt(2);
11539 }
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011540 startlinno = g_parsefile->linno;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011541 for (;;) { /* until token or start of word found */
Denis Vlasenko834dee72008-10-07 09:18:30 +000011542 c = pgetc_fast();
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000011543 if (c == ' ' || c == '\t' IF_ASH_ALIAS( || c == PEOA))
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011544 continue;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011545
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011546 if (c == '#') {
11547 while ((c = pgetc()) != '\n' && c != PEOF)
11548 continue;
11549 pungetc();
11550 } else if (c == '\\') {
11551 if (pgetc() != '\n') {
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011552 pungetc();
Denis Vlasenko834dee72008-10-07 09:18:30 +000011553 break; /* return readtoken1(...) */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011554 }
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011555 startlinno = ++g_parsefile->linno;
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011556 if (doprompt)
11557 setprompt(2);
11558 } else {
11559 const char *p;
11560
11561 p = xxreadtoken_chars + sizeof(xxreadtoken_chars) - 1;
11562 if (c != PEOF) {
11563 if (c == '\n') {
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011564 g_parsefile->linno++;
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011565 needprompt = doprompt;
11566 }
11567
11568 p = strchr(xxreadtoken_chars, c);
Denis Vlasenko834dee72008-10-07 09:18:30 +000011569 if (p == NULL)
11570 break; /* return readtoken1(...) */
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011571
Denis Vlasenko834dee72008-10-07 09:18:30 +000011572 if ((int)(p - xxreadtoken_chars) >= xxreadtoken_singles) {
11573 int cc = pgetc();
11574 if (cc == c) { /* double occurrence? */
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011575 p += xxreadtoken_doubles + 1;
11576 } else {
11577 pungetc();
Denis Vlasenko834dee72008-10-07 09:18:30 +000011578#if ENABLE_ASH_BASH_COMPAT
11579 if (c == '&' && cc == '>') /* &> */
11580 break; /* return readtoken1(...) */
11581#endif
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011582 }
11583 }
11584 }
11585 lasttoken = xxreadtoken_tokens[p - xxreadtoken_chars];
11586 return lasttoken;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011587 }
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011588 } /* for (;;) */
Denis Vlasenko834dee72008-10-07 09:18:30 +000011589
11590 return readtoken1(c, BASESYNTAX, (char *) NULL, 0);
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011591}
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011592#else /* old xxreadtoken */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011593#define RETURN(token) return lasttoken = token
11594static int
11595xxreadtoken(void)
11596{
11597 int c;
11598
11599 if (tokpushback) {
11600 tokpushback = 0;
11601 return lasttoken;
11602 }
11603 if (needprompt) {
11604 setprompt(2);
11605 }
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011606 startlinno = g_parsefile->linno;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011607 for (;;) { /* until token or start of word found */
Denis Vlasenko834dee72008-10-07 09:18:30 +000011608 c = pgetc_fast();
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011609 switch (c) {
11610 case ' ': case '\t':
Denys Vlasenko2ce42e92009-11-29 02:18:13 +010011611 IF_ASH_ALIAS(case PEOA:)
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011612 continue;
11613 case '#':
Denis Vlasenkof7d56652008-03-25 05:51:41 +000011614 while ((c = pgetc()) != '\n' && c != PEOF)
11615 continue;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011616 pungetc();
11617 continue;
11618 case '\\':
11619 if (pgetc() == '\n') {
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011620 startlinno = ++g_parsefile->linno;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011621 if (doprompt)
11622 setprompt(2);
11623 continue;
11624 }
11625 pungetc();
11626 goto breakloop;
11627 case '\n':
Denis Vlasenko41eb3002008-11-28 03:42:31 +000011628 g_parsefile->linno++;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011629 needprompt = doprompt;
11630 RETURN(TNL);
11631 case PEOF:
11632 RETURN(TEOF);
11633 case '&':
11634 if (pgetc() == '&')
11635 RETURN(TAND);
11636 pungetc();
11637 RETURN(TBACKGND);
11638 case '|':
11639 if (pgetc() == '|')
11640 RETURN(TOR);
11641 pungetc();
11642 RETURN(TPIPE);
11643 case ';':
11644 if (pgetc() == ';')
11645 RETURN(TENDCASE);
11646 pungetc();
11647 RETURN(TSEMI);
11648 case '(':
11649 RETURN(TLP);
11650 case ')':
11651 RETURN(TRP);
11652 default:
11653 goto breakloop;
11654 }
11655 }
11656 breakloop:
11657 return readtoken1(c, BASESYNTAX, (char *)NULL, 0);
11658#undef RETURN
11659}
Denis Vlasenko176d49d2008-10-06 09:51:47 +000011660#endif /* old xxreadtoken */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011661
11662static int
11663readtoken(void)
11664{
11665 int t;
11666#if DEBUG
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000011667 smallint alreadyseen = tokpushback;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011668#endif
11669
11670#if ENABLE_ASH_ALIAS
11671 top:
11672#endif
11673
11674 t = xxreadtoken();
11675
11676 /*
11677 * eat newlines
11678 */
11679 if (checkkwd & CHKNL) {
11680 while (t == TNL) {
11681 parseheredoc();
11682 t = xxreadtoken();
11683 }
11684 }
11685
11686 if (t != TWORD || quoteflag) {
11687 goto out;
11688 }
11689
11690 /*
11691 * check for keywords
11692 */
11693 if (checkkwd & CHKKWD) {
11694 const char *const *pp;
11695
11696 pp = findkwd(wordtext);
11697 if (pp) {
11698 lasttoken = t = pp - tokname_array;
11699 TRACE(("keyword %s recognized\n", tokname(t)));
11700 goto out;
11701 }
11702 }
11703
11704 if (checkkwd & CHKALIAS) {
11705#if ENABLE_ASH_ALIAS
11706 struct alias *ap;
11707 ap = lookupalias(wordtext, 1);
11708 if (ap != NULL) {
11709 if (*ap->val) {
11710 pushstring(ap->val, ap);
11711 }
11712 goto top;
11713 }
11714#endif
11715 }
11716 out:
11717 checkkwd = 0;
11718#if DEBUG
11719 if (!alreadyseen)
11720 TRACE(("token %s %s\n", tokname(t), t == TWORD ? wordtext : ""));
11721 else
11722 TRACE(("reread token %s %s\n", tokname(t), t == TWORD ? wordtext : ""));
11723#endif
11724 return t;
Eric Andersencb57d552001-06-28 07:25:16 +000011725}
11726
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011727static char
11728peektoken(void)
11729{
11730 int t;
11731
11732 t = readtoken();
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000011733 tokpushback = 1;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011734 return tokname_array[t][0];
11735}
Eric Andersencb57d552001-06-28 07:25:16 +000011736
11737/*
Denys Vlasenko86e83ec2009-07-23 22:07:07 +020011738 * Read and parse a command. Returns NODE_EOF on end of file.
11739 * (NULL is a valid parse tree indicating a blank line.)
Eric Andersencb57d552001-06-28 07:25:16 +000011740 */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011741static union node *
11742parsecmd(int interact)
Eric Andersen90898442003-08-06 11:20:52 +000011743{
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011744 int t;
Eric Andersencb57d552001-06-28 07:25:16 +000011745
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011746 tokpushback = 0;
11747 doprompt = interact;
11748 if (doprompt)
11749 setprompt(doprompt);
11750 needprompt = 0;
11751 t = readtoken();
11752 if (t == TEOF)
Denys Vlasenko86e83ec2009-07-23 22:07:07 +020011753 return NODE_EOF;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011754 if (t == TNL)
11755 return NULL;
Denis Vlasenkobcceb0c2007-09-21 18:06:20 +000011756 tokpushback = 1;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011757 return list(1);
11758}
11759
11760/*
11761 * Input any here documents.
11762 */
11763static void
11764parseheredoc(void)
11765{
11766 struct heredoc *here;
11767 union node *n;
11768
11769 here = heredoclist;
Denis Vlasenko838ffd52008-02-21 04:32:08 +000011770 heredoclist = NULL;
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011771
11772 while (here) {
11773 if (needprompt) {
11774 setprompt(2);
11775 }
11776 readtoken1(pgetc(), here->here->type == NHERE? SQSYNTAX : DQSYNTAX,
11777 here->eofmark, here->striptabs);
Denis Vlasenko597906c2008-02-20 16:38:54 +000011778 n = stzalloc(sizeof(struct narg));
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011779 n->narg.type = NARG;
Denis Vlasenko597906c2008-02-20 16:38:54 +000011780 /*n->narg.next = NULL; - stzalloc did it */
Denis Vlasenkoaa744452007-02-23 01:04:22 +000011781 n->narg.text = wordtext;
11782 n->narg.backquote = backquotelist;
11783 here->here->nhere.doc = n;
11784 here = here->next;
Eric Andersencb57d552001-06-28 07:25:16 +000011785 }
Eric Andersencb57d552001-06-28 07:25:16 +000011786}
11787
11788
11789/*
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +000011790 * called by editline -- any expansions to the prompt should be added here.
Eric Andersencb57d552001-06-28 07:25:16 +000011791 */
Denis Vlasenko131ae172007-02-18 13:00:19 +000011792#if ENABLE_ASH_EXPAND_PRMT
"Vladimir N. Oleynik"bef14d72005-09-05 13:25:11 +000011793static const char *
11794expandstr(const char *ps)
11795{
11796 union node n;
11797
Denis Vlasenko5c2b8142009-03-19 01:59:59 +000011798 /* XXX Fix (char *) cast. It _is_ a bug. ps is variable's value,
11799 * and token processing _can_ alter it (delete NULs etc). */
"Vladimir N. Oleynik"bef14d72005-09-05 13:25:11 +000011800 setinputstring((char *)ps);
Denis Vlasenko46a53062007-09-24 18:30:02 +000011801 readtoken1(pgetc(), PSSYNTAX, nullstr, 0);
"Vladimir N. Oleynik"bef14d72005-09-05 13:25:11 +000011802 popfile();
11803
11804 n.narg.type = NARG;
11805 n.narg.next = NULL;
11806 n.narg.text = wordtext;
11807 n.narg.backquote = backquotelist;
11808
11809 expandarg(&n, NULL, 0);
11810 return stackblock();
11811}
11812#endif
11813
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011814/*
11815 * Execute a command or commands contained in a string.
11816 */
11817static int
11818evalstring(char *s, int mask)
Eric Andersenc470f442003-07-28 09:56:35 +000011819{
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011820 union node *n;
11821 struct stackmark smark;
11822 int skip;
11823
11824 setinputstring(s);
11825 setstackmark(&smark);
11826
11827 skip = 0;
Denys Vlasenko86e83ec2009-07-23 22:07:07 +020011828 while ((n = parsecmd(0)) != NODE_EOF) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011829 evaltree(n, 0);
11830 popstackmark(&smark);
11831 skip = evalskip;
11832 if (skip)
11833 break;
11834 }
11835 popfile();
11836
11837 skip &= mask;
11838 evalskip = skip;
11839 return skip;
Eric Andersenc470f442003-07-28 09:56:35 +000011840}
11841
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011842/*
11843 * The eval command.
11844 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020011845static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000011846evalcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011847{
11848 char *p;
11849 char *concat;
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011850
Denis Vlasenko68404f12008-03-17 09:00:54 +000011851 if (argv[1]) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011852 p = argv[1];
Denis Vlasenko68404f12008-03-17 09:00:54 +000011853 argv += 2;
11854 if (argv[0]) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011855 STARTSTACKSTR(concat);
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011856 for (;;) {
11857 concat = stack_putstr(p, concat);
Denis Vlasenko68404f12008-03-17 09:00:54 +000011858 p = *argv++;
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011859 if (p == NULL)
11860 break;
11861 STPUTC(' ', concat);
11862 }
11863 STPUTC('\0', concat);
11864 p = grabstackstr(concat);
11865 }
11866 evalstring(p, ~SKIPEVAL);
11867
11868 }
11869 return exitstatus;
11870}
11871
11872/*
Denys Vlasenko285ad152009-12-04 23:02:27 +010011873 * Read and execute commands.
11874 * "Top" is nonzero for the top level command loop;
11875 * it turns on prompting if the shell is interactive.
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011876 */
11877static int
11878cmdloop(int top)
11879{
11880 union node *n;
11881 struct stackmark smark;
11882 int inter;
11883 int numeof = 0;
11884
11885 TRACE(("cmdloop(%d) called\n", top));
11886 for (;;) {
11887 int skip;
11888
11889 setstackmark(&smark);
11890#if JOBS
Denis Vlasenkob07a4962008-06-22 13:16:23 +000011891 if (doing_jobctl)
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011892 showjobs(stderr, SHOW_CHANGED);
11893#endif
11894 inter = 0;
11895 if (iflag && top) {
11896 inter++;
11897#if ENABLE_ASH_MAIL
11898 chkmail();
11899#endif
11900 }
11901 n = parsecmd(inter);
Denys Vlasenko7cee00e2009-07-24 01:08:03 +020011902#if DEBUG
11903 if (DEBUG > 2 && debug && (n != NODE_EOF))
Denys Vlasenko883cea42009-07-11 15:31:59 +020011904 showtree(n);
Denis Vlasenko135cecb2009-04-12 00:00:57 +000011905#endif
Denys Vlasenko86e83ec2009-07-23 22:07:07 +020011906 if (n == NODE_EOF) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011907 if (!top || numeof >= 50)
11908 break;
11909 if (!stoppedjobs()) {
11910 if (!Iflag)
11911 break;
11912 out2str("\nUse \"exit\" to leave shell.\n");
11913 }
11914 numeof++;
11915 } else if (nflag == 0) {
Denis Vlasenkofcfaf2e2007-07-14 18:45:37 +000011916 /* job_warning can only be 2,1,0. Here 2->1, 1/0->0 */
11917 job_warning >>= 1;
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011918 numeof = 0;
11919 evaltree(n, 0);
11920 }
11921 popstackmark(&smark);
11922 skip = evalskip;
11923
11924 if (skip) {
11925 evalskip = 0;
11926 return skip & SKIPEVAL;
11927 }
11928 }
11929 return 0;
11930}
11931
Denis Vlasenko0dec6de2007-02-23 21:10:47 +000011932/*
11933 * Take commands from a file. To be compatible we should do a path
11934 * search for the file, which is necessary to find sub-commands.
11935 */
11936static char *
11937find_dot_file(char *name)
11938{
11939 char *fullname;
11940 const char *path = pathval();
11941 struct stat statb;
11942
11943 /* don't try this for absolute or relative paths */
11944 if (strchr(name, '/'))
11945 return name;
11946
Denis Vlasenko8ad78e12009-02-15 12:40:30 +000011947 /* IIRC standards do not say whether . is to be searched.
11948 * And it is even smaller this way, making it unconditional for now:
11949 */
11950 if (1) { /* ENABLE_ASH_BASH_COMPAT */
11951 fullname = name;
11952 goto try_cur_dir;
11953 }
11954
Denys Vlasenko82a6fb32009-06-14 19:42:12 +020011955 while ((fullname = path_advance(&path, name)) != NULL) {
Denis Vlasenko8ad78e12009-02-15 12:40:30 +000011956 try_cur_dir:
Denis Vlasenko0dec6de2007-02-23 21:10:47 +000011957 if ((stat(fullname, &statb) == 0) && S_ISREG(statb.st_mode)) {
11958 /*
11959 * Don't bother freeing here, since it will
11960 * be freed by the caller.
11961 */
11962 return fullname;
11963 }
Denys Vlasenko82a6fb32009-06-14 19:42:12 +020011964 if (fullname != name)
11965 stunalloc(fullname);
Denis Vlasenko0dec6de2007-02-23 21:10:47 +000011966 }
11967
11968 /* not found in the PATH */
11969 ash_msg_and_raise_error("%s: not found", name);
11970 /* NOTREACHED */
11971}
11972
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020011973static int FAST_FUNC
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011974dotcmd(int argc, char **argv)
11975{
11976 struct strlist *sp;
11977 volatile struct shparam saveparam;
11978 int status = 0;
11979
11980 for (sp = cmdenviron; sp; sp = sp->next)
Denis Vlasenko4222ae42007-02-25 02:37:49 +000011981 setvareq(ckstrdup(sp->text), VSTRFIXED | VTEXTFIXED);
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011982
Denis Vlasenko68404f12008-03-17 09:00:54 +000011983 if (argv[1]) { /* That's what SVR2 does */
11984 char *fullname = find_dot_file(argv[1]);
11985 argv += 2;
11986 argc -= 2;
11987 if (argc) { /* argc > 0, argv[0] != NULL */
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011988 saveparam = shellparam;
Denis Vlasenko01631112007-12-16 17:20:38 +000011989 shellparam.malloced = 0;
Denis Vlasenko68404f12008-03-17 09:00:54 +000011990 shellparam.nparam = argc;
11991 shellparam.p = argv;
Denis Vlasenko0c032a42007-02-23 01:03:40 +000011992 };
11993
11994 setinputfile(fullname, INPUT_PUSH_FILE);
11995 commandname = fullname;
11996 cmdloop(0);
11997 popfile();
11998
Denis Vlasenko68404f12008-03-17 09:00:54 +000011999 if (argc) {
Denis Vlasenko0c032a42007-02-23 01:03:40 +000012000 freeparam(&shellparam);
12001 shellparam = saveparam;
12002 };
12003 status = exitstatus;
12004 }
12005 return status;
12006}
12007
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012008static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012009exitcmd(int argc UNUSED_PARAM, char **argv)
Denis Vlasenko0c032a42007-02-23 01:03:40 +000012010{
12011 if (stoppedjobs())
12012 return 0;
Denis Vlasenko68404f12008-03-17 09:00:54 +000012013 if (argv[1])
Denis Vlasenko0c032a42007-02-23 01:03:40 +000012014 exitstatus = number(argv[1]);
12015 raise_exception(EXEXIT);
12016 /* NOTREACHED */
12017}
12018
Denis Vlasenko0c032a42007-02-23 01:03:40 +000012019/*
12020 * Read a file containing shell functions.
12021 */
12022static void
12023readcmdfile(char *name)
12024{
12025 setinputfile(name, INPUT_PUSH_FILE);
12026 cmdloop(0);
12027 popfile();
12028}
12029
12030
Denis Vlasenkocc571512007-02-23 21:10:35 +000012031/* ============ find_command inplementation */
12032
12033/*
12034 * Resolve a command name. If you change this routine, you may have to
12035 * change the shellexec routine as well.
12036 */
12037static void
12038find_command(char *name, struct cmdentry *entry, int act, const char *path)
12039{
12040 struct tblentry *cmdp;
12041 int idx;
12042 int prev;
12043 char *fullname;
12044 struct stat statb;
12045 int e;
12046 int updatetbl;
12047 struct builtincmd *bcmd;
12048
12049 /* If name contains a slash, don't use PATH or hash table */
12050 if (strchr(name, '/') != NULL) {
12051 entry->u.index = -1;
12052 if (act & DO_ABS) {
12053 while (stat(name, &statb) < 0) {
12054#ifdef SYSV
12055 if (errno == EINTR)
12056 continue;
12057#endif
12058 entry->cmdtype = CMDUNKNOWN;
12059 return;
12060 }
12061 }
12062 entry->cmdtype = CMDNORMAL;
12063 return;
12064 }
12065
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000012066/* #if ENABLE_FEATURE_SH_STANDALONE... moved after builtin check */
Denis Vlasenkocc571512007-02-23 21:10:35 +000012067
12068 updatetbl = (path == pathval());
12069 if (!updatetbl) {
12070 act |= DO_ALTPATH;
12071 if (strstr(path, "%builtin") != NULL)
12072 act |= DO_ALTBLTIN;
12073 }
12074
12075 /* If name is in the table, check answer will be ok */
12076 cmdp = cmdlookup(name, 0);
12077 if (cmdp != NULL) {
12078 int bit;
12079
12080 switch (cmdp->cmdtype) {
12081 default:
12082#if DEBUG
12083 abort();
12084#endif
12085 case CMDNORMAL:
12086 bit = DO_ALTPATH;
12087 break;
12088 case CMDFUNCTION:
12089 bit = DO_NOFUNC;
12090 break;
12091 case CMDBUILTIN:
12092 bit = DO_ALTBLTIN;
12093 break;
12094 }
12095 if (act & bit) {
12096 updatetbl = 0;
12097 cmdp = NULL;
12098 } else if (cmdp->rehash == 0)
12099 /* if not invalidated by cd, we're done */
12100 goto success;
12101 }
12102
12103 /* If %builtin not in path, check for builtin next */
12104 bcmd = find_builtin(name);
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +000012105 if (bcmd) {
12106 if (IS_BUILTIN_REGULAR(bcmd))
12107 goto builtin_success;
12108 if (act & DO_ALTPATH) {
12109 if (!(act & DO_ALTBLTIN))
12110 goto builtin_success;
12111 } else if (builtinloc <= 0) {
12112 goto builtin_success;
Denis Vlasenko8e858e22007-03-07 09:35:43 +000012113 }
Denis Vlasenkof98dc4d2007-02-23 21:11:02 +000012114 }
Denis Vlasenkocc571512007-02-23 21:10:35 +000012115
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000012116#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko7465dbc2008-04-13 02:25:53 +000012117 {
12118 int applet_no = find_applet_by_name(name);
12119 if (applet_no >= 0) {
12120 entry->cmdtype = CMDNORMAL;
12121 entry->u.index = -2 - applet_no;
12122 return;
12123 }
Denis Vlasenkof20de5b2007-04-29 23:42:54 +000012124 }
12125#endif
12126
Denis Vlasenkocc571512007-02-23 21:10:35 +000012127 /* We have to search path. */
12128 prev = -1; /* where to start */
12129 if (cmdp && cmdp->rehash) { /* doing a rehash */
12130 if (cmdp->cmdtype == CMDBUILTIN)
12131 prev = builtinloc;
12132 else
12133 prev = cmdp->param.index;
12134 }
12135
12136 e = ENOENT;
12137 idx = -1;
12138 loop:
Denys Vlasenko82a6fb32009-06-14 19:42:12 +020012139 while ((fullname = path_advance(&path, name)) != NULL) {
Denis Vlasenkocc571512007-02-23 21:10:35 +000012140 stunalloc(fullname);
Denis Vlasenkodee82b62007-07-29 14:05:27 +000012141 /* NB: code below will still use fullname
12142 * despite it being "unallocated" */
Denis Vlasenkocc571512007-02-23 21:10:35 +000012143 idx++;
12144 if (pathopt) {
12145 if (prefix(pathopt, "builtin")) {
12146 if (bcmd)
12147 goto builtin_success;
12148 continue;
Denis Vlasenko4a9ca132008-04-12 20:07:08 +000012149 }
12150 if ((act & DO_NOFUNC)
12151 || !prefix(pathopt, "func")
12152 ) { /* ignore unimplemented options */
Denis Vlasenkocc571512007-02-23 21:10:35 +000012153 continue;
12154 }
12155 }
12156 /* if rehash, don't redo absolute path names */
12157 if (fullname[0] == '/' && idx <= prev) {
12158 if (idx < prev)
12159 continue;
12160 TRACE(("searchexec \"%s\": no change\n", name));
12161 goto success;
12162 }
12163 while (stat(fullname, &statb) < 0) {
12164#ifdef SYSV
12165 if (errno == EINTR)
12166 continue;
12167#endif
12168 if (errno != ENOENT && errno != ENOTDIR)
12169 e = errno;
12170 goto loop;
12171 }
12172 e = EACCES; /* if we fail, this will be the error */
12173 if (!S_ISREG(statb.st_mode))
12174 continue;
12175 if (pathopt) { /* this is a %func directory */
12176 stalloc(strlen(fullname) + 1);
Denis Vlasenkodee82b62007-07-29 14:05:27 +000012177 /* NB: stalloc will return space pointed by fullname
12178 * (because we don't have any intervening allocations
12179 * between stunalloc above and this stalloc) */
Denis Vlasenkocc571512007-02-23 21:10:35 +000012180 readcmdfile(fullname);
12181 cmdp = cmdlookup(name, 0);
12182 if (cmdp == NULL || cmdp->cmdtype != CMDFUNCTION)
12183 ash_msg_and_raise_error("%s not defined in %s", name, fullname);
12184 stunalloc(fullname);
12185 goto success;
12186 }
12187 TRACE(("searchexec \"%s\" returns \"%s\"\n", name, fullname));
12188 if (!updatetbl) {
12189 entry->cmdtype = CMDNORMAL;
12190 entry->u.index = idx;
12191 return;
12192 }
12193 INT_OFF;
12194 cmdp = cmdlookup(name, 1);
12195 cmdp->cmdtype = CMDNORMAL;
12196 cmdp->param.index = idx;
12197 INT_ON;
12198 goto success;
12199 }
12200
12201 /* We failed. If there was an entry for this command, delete it */
12202 if (cmdp && updatetbl)
12203 delete_cmd_entry();
12204 if (act & DO_ERR)
12205 ash_msg("%s: %s", name, errmsg(e, "not found"));
12206 entry->cmdtype = CMDUNKNOWN;
12207 return;
12208
12209 builtin_success:
12210 if (!updatetbl) {
12211 entry->cmdtype = CMDBUILTIN;
12212 entry->u.cmd = bcmd;
12213 return;
12214 }
12215 INT_OFF;
12216 cmdp = cmdlookup(name, 1);
12217 cmdp->cmdtype = CMDBUILTIN;
12218 cmdp->param.cmd = bcmd;
12219 INT_ON;
12220 success:
12221 cmdp->rehash = 0;
12222 entry->cmdtype = cmdp->cmdtype;
12223 entry->u = cmdp->param;
12224}
12225
12226
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000012227/* ============ trap.c */
Eric Andersenc470f442003-07-28 09:56:35 +000012228
Eric Andersencb57d552001-06-28 07:25:16 +000012229/*
Eric Andersencb57d552001-06-28 07:25:16 +000012230 * The trap builtin.
12231 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012232static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012233trapcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersencb57d552001-06-28 07:25:16 +000012234{
12235 char *action;
12236 char **ap;
12237 int signo;
12238
Eric Andersenc470f442003-07-28 09:56:35 +000012239 nextopt(nullstr);
12240 ap = argptr;
12241 if (!*ap) {
Denis Vlasenko2da584f2007-02-19 22:44:05 +000012242 for (signo = 0; signo < NSIG; signo++) {
Denys Vlasenko21d87d42009-09-25 00:06:51 +020012243 char *tr = trap_ptr[signo];
12244 if (tr) {
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +020012245 /* note: bash adds "SIG", but only if invoked
12246 * as "bash". If called as "sh", or if set -o posix,
12247 * then it prints short signal names.
12248 * We are printing short names: */
12249 out1fmt("trap -- %s %s\n",
Denys Vlasenko21d87d42009-09-25 00:06:51 +020012250 single_quote(tr),
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +000012251 get_signame(signo));
Denys Vlasenko726e1a02009-09-25 02:58:20 +020012252 /* trap_ptr != trap only if we are in special-cased `trap` code.
12253 * In this case, we will exit very soon, no need to free(). */
Denys Vlasenkoe74aaf92009-09-27 02:05:45 +020012254 /* if (trap_ptr != trap && tp[0]) */
Denys Vlasenko726e1a02009-09-25 02:58:20 +020012255 /* free(tr); */
Eric Andersencb57d552001-06-28 07:25:16 +000012256 }
12257 }
Denys Vlasenko726e1a02009-09-25 02:58:20 +020012258 /*
Denys Vlasenko21d87d42009-09-25 00:06:51 +020012259 if (trap_ptr != trap) {
12260 free(trap_ptr);
12261 trap_ptr = trap;
12262 }
Denys Vlasenko726e1a02009-09-25 02:58:20 +020012263 */
Eric Andersencb57d552001-06-28 07:25:16 +000012264 return 0;
12265 }
Denys Vlasenko21d87d42009-09-25 00:06:51 +020012266
Denis Vlasenko4e19a9c2008-07-26 13:45:57 +000012267 action = NULL;
12268 if (ap[1])
Eric Andersencb57d552001-06-28 07:25:16 +000012269 action = *ap++;
12270 while (*ap) {
Denis Vlasenko5cedb752007-02-18 19:56:41 +000012271 signo = get_signum(*ap);
12272 if (signo < 0)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012273 ash_msg_and_raise_error("%s: bad trap", *ap);
12274 INT_OFF;
Eric Andersencb57d552001-06-28 07:25:16 +000012275 if (action) {
Denis Vlasenko9f739442006-12-16 23:49:13 +000012276 if (LONE_DASH(action))
Eric Andersencb57d552001-06-28 07:25:16 +000012277 action = NULL;
12278 else
Denis Vlasenko0c032a42007-02-23 01:03:40 +000012279 action = ckstrdup(action);
Eric Andersencb57d552001-06-28 07:25:16 +000012280 }
Denis Vlasenko60818682007-09-28 22:07:23 +000012281 free(trap[signo]);
Eric Andersencb57d552001-06-28 07:25:16 +000012282 trap[signo] = action;
12283 if (signo != 0)
12284 setsignal(signo);
Denis Vlasenkob012b102007-02-19 22:43:01 +000012285 INT_ON;
Eric Andersencb57d552001-06-28 07:25:16 +000012286 ap++;
12287 }
12288 return 0;
12289}
12290
Eric Andersenc470f442003-07-28 09:56:35 +000012291
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000012292/* ============ Builtins */
Eric Andersenc470f442003-07-28 09:56:35 +000012293
Denis Vlasenko8e1c7152007-01-22 07:21:38 +000012294#if !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000012295/*
12296 * Lists available builtins
12297 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012298static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012299helpcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersenc470f442003-07-28 09:56:35 +000012300{
Denis Vlasenko6b06cb82008-05-15 21:30:45 +000012301 unsigned col;
12302 unsigned i;
Eric Andersenc470f442003-07-28 09:56:35 +000012303
Denys Vlasenkod6b05eb2009-06-06 20:59:55 +020012304 out1fmt(
Denis Vlasenko34d4d892009-04-04 20:24:37 +000012305 "Built-in commands:\n"
12306 "------------------\n");
Denis Vlasenkob71c6682007-07-21 15:08:09 +000012307 for (col = 0, i = 0; i < ARRAY_SIZE(builtintab); i++) {
Eric Andersenc470f442003-07-28 09:56:35 +000012308 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '),
Denis Vlasenko52764022007-02-24 13:42:56 +000012309 builtintab[i].name + 1);
Eric Andersenc470f442003-07-28 09:56:35 +000012310 if (col > 60) {
12311 out1fmt("\n");
12312 col = 0;
12313 }
12314 }
Denis Vlasenko80d14be2007-04-10 23:03:30 +000012315#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000012316 {
12317 const char *a = applet_names;
12318 while (*a) {
12319 col += out1fmt("%c%s", ((col == 0) ? '\t' : ' '), a);
12320 if (col > 60) {
12321 out1fmt("\n");
12322 col = 0;
12323 }
12324 a += strlen(a) + 1;
Eric Andersenc470f442003-07-28 09:56:35 +000012325 }
12326 }
12327#endif
12328 out1fmt("\n\n");
12329 return EXIT_SUCCESS;
12330}
Denis Vlasenko131ae172007-02-18 13:00:19 +000012331#endif /* FEATURE_SH_EXTRA_QUIET */
Eric Andersenc470f442003-07-28 09:56:35 +000012332
Eric Andersencb57d552001-06-28 07:25:16 +000012333/*
Eric Andersencb57d552001-06-28 07:25:16 +000012334 * The export and readonly commands.
12335 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012336static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012337exportcmd(int argc UNUSED_PARAM, char **argv)
Eric Andersencb57d552001-06-28 07:25:16 +000012338{
12339 struct var *vp;
12340 char *name;
12341 const char *p;
Eric Andersenc470f442003-07-28 09:56:35 +000012342 char **aptr;
Denis Vlasenkob7304742008-10-20 08:15:51 +000012343 int flag = argv[0][0] == 'r' ? VREADONLY : VEXPORT;
Eric Andersencb57d552001-06-28 07:25:16 +000012344
Denis Vlasenko2da584f2007-02-19 22:44:05 +000012345 if (nextopt("p") != 'p') {
12346 aptr = argptr;
12347 name = *aptr;
12348 if (name) {
12349 do {
12350 p = strchr(name, '=');
12351 if (p != NULL) {
12352 p++;
12353 } else {
12354 vp = *findvar(hashvar(name), name);
12355 if (vp) {
12356 vp->flags |= flag;
12357 continue;
12358 }
Eric Andersencb57d552001-06-28 07:25:16 +000012359 }
Denis Vlasenko2da584f2007-02-19 22:44:05 +000012360 setvar(name, p, flag);
12361 } while ((name = *++aptr) != NULL);
12362 return 0;
12363 }
Eric Andersencb57d552001-06-28 07:25:16 +000012364 }
Denis Vlasenko2da584f2007-02-19 22:44:05 +000012365 showvars(argv[0], flag, 0);
Eric Andersencb57d552001-06-28 07:25:16 +000012366 return 0;
12367}
12368
Eric Andersencb57d552001-06-28 07:25:16 +000012369/*
Denis Vlasenko5651bfc2007-02-23 21:08:58 +000012370 * Delete a function if it exists.
Eric Andersencb57d552001-06-28 07:25:16 +000012371 */
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000012372static void
Denis Vlasenko5651bfc2007-02-23 21:08:58 +000012373unsetfunc(const char *name)
Aaron Lehmannb6ecbdc2001-12-06 03:37:38 +000012374{
Denis Vlasenko5651bfc2007-02-23 21:08:58 +000012375 struct tblentry *cmdp;
Eric Andersencb57d552001-06-28 07:25:16 +000012376
Denis Vlasenko5651bfc2007-02-23 21:08:58 +000012377 cmdp = cmdlookup(name, 0);
12378 if (cmdp!= NULL && cmdp->cmdtype == CMDFUNCTION)
12379 delete_cmd_entry();
Eric Andersenc470f442003-07-28 09:56:35 +000012380}
12381
Eric Andersencb57d552001-06-28 07:25:16 +000012382/*
Eric Andersencb57d552001-06-28 07:25:16 +000012383 * The unset builtin command. We unset the function before we unset the
12384 * variable to allow a function to be unset when there is a readonly variable
12385 * with the same name.
12386 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012387static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012388unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersencb57d552001-06-28 07:25:16 +000012389{
12390 char **ap;
12391 int i;
Eric Andersenc470f442003-07-28 09:56:35 +000012392 int flag = 0;
Eric Andersencb57d552001-06-28 07:25:16 +000012393 int ret = 0;
12394
12395 while ((i = nextopt("vf")) != '\0') {
Eric Andersenc470f442003-07-28 09:56:35 +000012396 flag = i;
Eric Andersencb57d552001-06-28 07:25:16 +000012397 }
Eric Andersencb57d552001-06-28 07:25:16 +000012398
Denis Vlasenko2da584f2007-02-19 22:44:05 +000012399 for (ap = argptr; *ap; ap++) {
Eric Andersenc470f442003-07-28 09:56:35 +000012400 if (flag != 'f') {
12401 i = unsetvar(*ap);
12402 ret |= i;
12403 if (!(i & 2))
12404 continue;
12405 }
12406 if (flag != 'v')
Eric Andersencb57d552001-06-28 07:25:16 +000012407 unsetfunc(*ap);
Eric Andersencb57d552001-06-28 07:25:16 +000012408 }
Eric Andersenc470f442003-07-28 09:56:35 +000012409 return ret & 1;
Eric Andersencb57d552001-06-28 07:25:16 +000012410}
12411
12412
"Vladimir N. Oleynik"fb29b462006-01-15 14:21:01 +000012413/* setmode.c */
Eric Andersencb57d552001-06-28 07:25:16 +000012414
Eric Andersenc470f442003-07-28 09:56:35 +000012415#include <sys/times.h>
12416
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000012417static const unsigned char timescmd_str[] ALIGN1 = {
Manuel Novoa III 4456f252003-08-13 17:48:47 +000012418 ' ', offsetof(struct tms, tms_utime),
12419 '\n', offsetof(struct tms, tms_stime),
12420 ' ', offsetof(struct tms, tms_cutime),
12421 '\n', offsetof(struct tms, tms_cstime),
12422 0
12423};
Eric Andersencb57d552001-06-28 07:25:16 +000012424
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012425static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012426timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Manuel Novoa III 4456f252003-08-13 17:48:47 +000012427{
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000012428 long clk_tck, s, t;
Manuel Novoa III 4456f252003-08-13 17:48:47 +000012429 const unsigned char *p;
12430 struct tms buf;
12431
12432 clk_tck = sysconf(_SC_CLK_TCK);
Eric Andersencb57d552001-06-28 07:25:16 +000012433 times(&buf);
Manuel Novoa III 4456f252003-08-13 17:48:47 +000012434
12435 p = timescmd_str;
12436 do {
12437 t = *(clock_t *)(((char *) &buf) + p[1]);
12438 s = t / clk_tck;
12439 out1fmt("%ldm%ld.%.3lds%c",
12440 s/60, s%60,
12441 ((t - s * clk_tck) * 1000) / clk_tck,
12442 p[0]);
12443 } while (*(p += 2));
12444
Eric Andersencb57d552001-06-28 07:25:16 +000012445 return 0;
12446}
12447
Mike Frysinger98c52642009-04-02 10:02:37 +000012448#if ENABLE_SH_MATH_SUPPORT
Eric Andersenc470f442003-07-28 09:56:35 +000012449/*
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +000012450 * The let builtin. partial stolen from GNU Bash, the Bourne Again SHell.
12451 * Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc.
Eric Andersen90898442003-08-06 11:20:52 +000012452 *
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +000012453 * Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru>
Eric Andersenc470f442003-07-28 09:56:35 +000012454 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012455static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012456letcmd(int argc UNUSED_PARAM, char **argv)
Eric Andersenc470f442003-07-28 09:56:35 +000012457{
Denis Vlasenko68404f12008-03-17 09:00:54 +000012458 arith_t i;
Eric Andersenc470f442003-07-28 09:56:35 +000012459
Denis Vlasenko68404f12008-03-17 09:00:54 +000012460 argv++;
12461 if (!*argv)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012462 ash_msg_and_raise_error("expression expected");
Denis Vlasenko68404f12008-03-17 09:00:54 +000012463 do {
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +000012464 i = ash_arith(*argv);
Denis Vlasenko68404f12008-03-17 09:00:54 +000012465 } while (*++argv);
Eric Andersenc470f442003-07-28 09:56:35 +000012466
Denis Vlasenkod9e15f22006-11-27 16:49:55 +000012467 return !i;
Eric Andersenc470f442003-07-28 09:56:35 +000012468}
Mike Frysinger98c52642009-04-02 10:02:37 +000012469#endif /* SH_MATH_SUPPORT */
Eric Andersenc470f442003-07-28 09:56:35 +000012470
Eric Andersenc470f442003-07-28 09:56:35 +000012471
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000012472/* ============ miscbltin.c
12473 *
Eric Andersenaff114c2004-04-14 17:51:38 +000012474 * Miscellaneous builtins.
Eric Andersenc470f442003-07-28 09:56:35 +000012475 */
12476
12477#undef rflag
12478
Denis Vlasenko83e5d6f2006-12-18 21:49:06 +000012479#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 1
Eric Andersenc470f442003-07-28 09:56:35 +000012480typedef enum __rlimit_resource rlim_t;
12481#endif
Eric Andersen74bcd162001-07-30 21:41:37 +000012482
Eric Andersenc470f442003-07-28 09:56:35 +000012483/*
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012484 * The read builtin. Options:
12485 * -r Do not interpret '\' specially
12486 * -s Turn off echo (tty only)
12487 * -n NCHARS Read NCHARS max
12488 * -p PROMPT Display PROMPT on stderr (if input is from tty)
12489 * -t SECONDS Timeout after SECONDS (tty or pipe only)
12490 * -u FD Read from given FD instead of fd 0
Eric Andersenc470f442003-07-28 09:56:35 +000012491 * This uses unbuffered input, which may be avoidable in some cases.
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012492 * TODO: bash also has:
12493 * -a ARRAY Read into array[0],[1],etc
12494 * -d DELIM End on DELIM char, not newline
12495 * -e Use line editing (tty only)
Eric Andersenc470f442003-07-28 09:56:35 +000012496 */
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012497static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012498readcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersenc470f442003-07-28 09:56:35 +000012499{
Denis Vlasenko9cd4c762008-06-18 19:22:19 +000012500 static const char *const arg_REPLY[] = { "REPLY", NULL };
12501
Eric Andersenc470f442003-07-28 09:56:35 +000012502 char **ap;
12503 int backslash;
12504 char c;
12505 int rflag;
12506 char *prompt;
12507 const char *ifs;
12508 char *p;
12509 int startword;
12510 int status;
12511 int i;
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012512 int fd = 0;
Denis Vlasenko131ae172007-02-18 13:00:19 +000012513#if ENABLE_ASH_READ_NCHARS
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012514 int nchars = 0; /* if != 0, -n is in effect */
Paul Fox02eb9342005-09-07 16:56:02 +000012515 int silent = 0;
12516 struct termios tty, old_tty;
12517#endif
Denis Vlasenko131ae172007-02-18 13:00:19 +000012518#if ENABLE_ASH_READ_TIMEOUT
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012519 unsigned end_ms = 0;
12520 unsigned timeout = 0;
Paul Fox02eb9342005-09-07 16:56:02 +000012521#endif
Eric Andersenc470f442003-07-28 09:56:35 +000012522
12523 rflag = 0;
12524 prompt = NULL;
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012525 while ((i = nextopt("p:u:r"
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000012526 IF_ASH_READ_TIMEOUT("t:")
12527 IF_ASH_READ_NCHARS("n:s")
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012528 )) != '\0') {
Denis Vlasenkobf0a2012006-12-26 10:42:51 +000012529 switch (i) {
Paul Fox02eb9342005-09-07 16:56:02 +000012530 case 'p':
Eric Andersenc470f442003-07-28 09:56:35 +000012531 prompt = optionarg;
Paul Fox02eb9342005-09-07 16:56:02 +000012532 break;
Denis Vlasenko131ae172007-02-18 13:00:19 +000012533#if ENABLE_ASH_READ_NCHARS
Paul Fox02eb9342005-09-07 16:56:02 +000012534 case 'n':
Denis Vlasenko037576d2007-10-20 18:30:38 +000012535 nchars = bb_strtou(optionarg, NULL, 10);
12536 if (nchars < 0 || errno)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012537 ash_msg_and_raise_error("invalid count");
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012538 /* nchars == 0: off (bash 3.2 does this too) */
Paul Fox02eb9342005-09-07 16:56:02 +000012539 break;
12540 case 's':
12541 silent = 1;
12542 break;
Ned Ludd2123b7c2005-02-09 21:07:23 +000012543#endif
Denis Vlasenko131ae172007-02-18 13:00:19 +000012544#if ENABLE_ASH_READ_TIMEOUT
Paul Fox02eb9342005-09-07 16:56:02 +000012545 case 't':
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012546 timeout = bb_strtou(optionarg, NULL, 10);
12547 if (errno || timeout > UINT_MAX / 2048)
12548 ash_msg_and_raise_error("invalid timeout");
12549 timeout *= 1000;
12550#if 0 /* even bash have no -t N.NNN support */
Denis Vlasenko037576d2007-10-20 18:30:38 +000012551 ts.tv_sec = bb_strtou(optionarg, &p, 10);
Paul Fox02eb9342005-09-07 16:56:02 +000012552 ts.tv_usec = 0;
Denis Vlasenko037576d2007-10-20 18:30:38 +000012553 /* EINVAL means number is ok, but not terminated by NUL */
12554 if (*p == '.' && errno == EINVAL) {
Paul Fox02eb9342005-09-07 16:56:02 +000012555 char *p2;
12556 if (*++p) {
12557 int scale;
Denis Vlasenko037576d2007-10-20 18:30:38 +000012558 ts.tv_usec = bb_strtou(p, &p2, 10);
12559 if (errno)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012560 ash_msg_and_raise_error("invalid timeout");
Paul Fox02eb9342005-09-07 16:56:02 +000012561 scale = p2 - p;
12562 /* normalize to usec */
12563 if (scale > 6)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012564 ash_msg_and_raise_error("invalid timeout");
Paul Fox02eb9342005-09-07 16:56:02 +000012565 while (scale++ < 6)
12566 ts.tv_usec *= 10;
12567 }
Denis Vlasenko037576d2007-10-20 18:30:38 +000012568 } else if (ts.tv_sec < 0 || errno) {
Denis Vlasenkob012b102007-02-19 22:43:01 +000012569 ash_msg_and_raise_error("invalid timeout");
Paul Fox02eb9342005-09-07 16:56:02 +000012570 }
Denis Vlasenko037576d2007-10-20 18:30:38 +000012571 if (!(ts.tv_sec | ts.tv_usec)) { /* both are 0? */
Denis Vlasenkob012b102007-02-19 22:43:01 +000012572 ash_msg_and_raise_error("invalid timeout");
Denis Vlasenko037576d2007-10-20 18:30:38 +000012573 }
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012574#endif /* if 0 */
Paul Fox02eb9342005-09-07 16:56:02 +000012575 break;
12576#endif
12577 case 'r':
12578 rflag = 1;
12579 break;
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012580 case 'u':
12581 fd = bb_strtou(optionarg, NULL, 10);
12582 if (fd < 0 || errno)
12583 ash_msg_and_raise_error("invalid file descriptor");
12584 break;
Paul Fox02eb9342005-09-07 16:56:02 +000012585 default:
12586 break;
12587 }
Eric Andersenc470f442003-07-28 09:56:35 +000012588 }
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012589 if (prompt && isatty(fd)) {
Eric Andersenc470f442003-07-28 09:56:35 +000012590 out2str(prompt);
Eric Andersenc470f442003-07-28 09:56:35 +000012591 }
Denis Vlasenko5cedb752007-02-18 19:56:41 +000012592 ap = argptr;
12593 if (*ap == NULL)
Denis Vlasenko9cd4c762008-06-18 19:22:19 +000012594 ap = (char**)arg_REPLY;
Denis Vlasenko5cedb752007-02-18 19:56:41 +000012595 ifs = bltinlookup("IFS");
12596 if (ifs == NULL)
Eric Andersenc470f442003-07-28 09:56:35 +000012597 ifs = defifs;
Denis Vlasenko131ae172007-02-18 13:00:19 +000012598#if ENABLE_ASH_READ_NCHARS
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012599 tcgetattr(fd, &tty);
12600 old_tty = tty;
12601 if (nchars || silent) {
12602 if (nchars) {
12603 tty.c_lflag &= ~ICANON;
12604 tty.c_cc[VMIN] = nchars < 256 ? nchars : 255;
Paul Fox02eb9342005-09-07 16:56:02 +000012605 }
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012606 if (silent) {
12607 tty.c_lflag &= ~(ECHO | ECHOK | ECHONL);
12608 }
12609 /* if tcgetattr failed, tcsetattr will fail too.
12610 * Ignoring, it's harmless. */
12611 tcsetattr(fd, TCSANOW, &tty);
Paul Fox02eb9342005-09-07 16:56:02 +000012612 }
12613#endif
Paul Fox02eb9342005-09-07 16:56:02 +000012614
Eric Andersenc470f442003-07-28 09:56:35 +000012615 status = 0;
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012616 startword = 2;
Eric Andersenc470f442003-07-28 09:56:35 +000012617 backslash = 0;
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012618#if ENABLE_ASH_READ_TIMEOUT
12619 if (timeout) /* NB: ensuring end_ms is nonzero */
12620 end_ms = ((unsigned)(monotonic_us() / 1000) + timeout) | 1;
12621#endif
Eric Andersenc470f442003-07-28 09:56:35 +000012622 STARTSTACKSTR(p);
Denis Vlasenko037576d2007-10-20 18:30:38 +000012623 do {
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012624 const char *is_ifs;
12625
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012626#if ENABLE_ASH_READ_TIMEOUT
12627 if (end_ms) {
12628 struct pollfd pfd[1];
12629 pfd[0].fd = fd;
12630 pfd[0].events = POLLIN;
12631 timeout = end_ms - (unsigned)(monotonic_us() / 1000);
12632 if ((int)timeout <= 0 /* already late? */
12633 || safe_poll(pfd, 1, timeout) != 1 /* no? wait... */
12634 ) { /* timed out! */
12635#if ENABLE_ASH_READ_NCHARS
12636 tcsetattr(fd, TCSANOW, &old_tty);
12637#endif
12638 return 1;
12639 }
12640 }
12641#endif
12642 if (nonblock_safe_read(fd, &c, 1) != 1) {
Eric Andersenc470f442003-07-28 09:56:35 +000012643 status = 1;
12644 break;
12645 }
12646 if (c == '\0')
12647 continue;
12648 if (backslash) {
12649 backslash = 0;
12650 if (c != '\n')
12651 goto put;
12652 continue;
12653 }
12654 if (!rflag && c == '\\') {
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012655 backslash = 1;
Eric Andersenc470f442003-07-28 09:56:35 +000012656 continue;
12657 }
12658 if (c == '\n')
12659 break;
Denis Vlasenkof6fbd622009-03-31 19:36:58 +000012660 /* $IFS splitting */
Denis Vlasenko551ffdc2009-04-01 19:48:05 +000012661/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_06_05 */
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012662 is_ifs = strchr(ifs, c);
12663 if (startword && is_ifs) {
12664 if (isspace(c))
12665 continue;
Denis Vlasenkof6fbd622009-03-31 19:36:58 +000012666 /* it is a non-space ifs char */
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012667 startword--;
12668 if (startword == 1) /* first one? */
Denis Vlasenkof6fbd622009-03-31 19:36:58 +000012669 continue; /* yes, it is not next word yet */
Eric Andersenc470f442003-07-28 09:56:35 +000012670 }
12671 startword = 0;
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012672 if (ap[1] != NULL && is_ifs) {
12673 const char *beg;
Eric Andersenc470f442003-07-28 09:56:35 +000012674 STACKSTRNUL(p);
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012675 beg = stackblock();
12676 setvar(*ap, beg, 0);
Eric Andersenc470f442003-07-28 09:56:35 +000012677 ap++;
Denis Vlasenkof6fbd622009-03-31 19:36:58 +000012678 /* can we skip one non-space ifs char? (2: yes) */
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012679 startword = isspace(c) ? 2 : 1;
Eric Andersenc470f442003-07-28 09:56:35 +000012680 STARTSTACKSTR(p);
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012681 continue;
Eric Andersenc470f442003-07-28 09:56:35 +000012682 }
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012683 put:
12684 STPUTC(c, p);
Eric Andersenc470f442003-07-28 09:56:35 +000012685 }
Denis Vlasenko037576d2007-10-20 18:30:38 +000012686/* end of do {} while: */
Denis Vlasenko131ae172007-02-18 13:00:19 +000012687#if ENABLE_ASH_READ_NCHARS
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012688 while (--nchars);
Denis Vlasenko037576d2007-10-20 18:30:38 +000012689#else
12690 while (1);
12691#endif
12692
12693#if ENABLE_ASH_READ_NCHARS
Denis Vlasenko59f351c2008-03-25 00:07:12 +000012694 tcsetattr(fd, TCSANOW, &old_tty);
Paul Fox02eb9342005-09-07 16:56:02 +000012695#endif
12696
Eric Andersenc470f442003-07-28 09:56:35 +000012697 STACKSTRNUL(p);
Denis Vlasenko46aeab92009-03-31 19:18:17 +000012698 /* Remove trailing space ifs chars */
12699 while ((char *)stackblock() <= --p && isspace(*p) && strchr(ifs, *p) != NULL)
Eric Andersenc470f442003-07-28 09:56:35 +000012700 *p = '\0';
12701 setvar(*ap, stackblock(), 0);
12702 while (*++ap != NULL)
12703 setvar(*ap, nullstr, 0);
12704 return status;
12705}
12706
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012707static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012708umaskcmd(int argc UNUSED_PARAM, char **argv)
Eric Andersenc470f442003-07-28 09:56:35 +000012709{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +000012710 static const char permuser[3] ALIGN1 = "ugo";
12711 static const char permmode[3] ALIGN1 = "rwx";
12712 static const short permmask[] ALIGN2 = {
Eric Andersenc470f442003-07-28 09:56:35 +000012713 S_IRUSR, S_IWUSR, S_IXUSR,
12714 S_IRGRP, S_IWGRP, S_IXGRP,
12715 S_IROTH, S_IWOTH, S_IXOTH
12716 };
12717
Denis Vlasenkoeb858492009-04-18 02:06:54 +000012718 /* TODO: use bb_parse_mode() instead */
12719
Eric Andersenc470f442003-07-28 09:56:35 +000012720 char *ap;
12721 mode_t mask;
12722 int i;
12723 int symbolic_mode = 0;
12724
12725 while (nextopt("S") != '\0') {
12726 symbolic_mode = 1;
12727 }
12728
Denis Vlasenkob012b102007-02-19 22:43:01 +000012729 INT_OFF;
Eric Andersenc470f442003-07-28 09:56:35 +000012730 mask = umask(0);
12731 umask(mask);
Denis Vlasenkob012b102007-02-19 22:43:01 +000012732 INT_ON;
Eric Andersenc470f442003-07-28 09:56:35 +000012733
Denis Vlasenko5cedb752007-02-18 19:56:41 +000012734 ap = *argptr;
12735 if (ap == NULL) {
Eric Andersenc470f442003-07-28 09:56:35 +000012736 if (symbolic_mode) {
12737 char buf[18];
12738 char *p = buf;
12739
12740 for (i = 0; i < 3; i++) {
12741 int j;
12742
12743 *p++ = permuser[i];
12744 *p++ = '=';
12745 for (j = 0; j < 3; j++) {
12746 if ((mask & permmask[3 * i + j]) == 0) {
12747 *p++ = permmode[j];
12748 }
12749 }
12750 *p++ = ',';
12751 }
12752 *--p = 0;
12753 puts(buf);
12754 } else {
12755 out1fmt("%.4o\n", mask);
12756 }
12757 } else {
Denis Vlasenkoaa744452007-02-23 01:04:22 +000012758 if (isdigit((unsigned char) *ap)) {
Eric Andersenc470f442003-07-28 09:56:35 +000012759 mask = 0;
12760 do {
12761 if (*ap >= '8' || *ap < '0')
Denys Vlasenkoecc2a2e2009-08-29 22:53:41 +020012762 ash_msg_and_raise_error(msg_illnum, argv[1]);
Eric Andersenc470f442003-07-28 09:56:35 +000012763 mask = (mask << 3) + (*ap - '0');
12764 } while (*++ap != '\0');
12765 umask(mask);
12766 } else {
12767 mask = ~mask & 0777;
12768 if (!bb_parse_mode(ap, &mask)) {
Denis Vlasenko3af3e5b2007-03-05 00:24:52 +000012769 ash_msg_and_raise_error("illegal mode: %s", ap);
Eric Andersenc470f442003-07-28 09:56:35 +000012770 }
12771 umask(~mask & 0777);
12772 }
12773 }
12774 return 0;
12775}
12776
12777/*
12778 * ulimit builtin
12779 *
12780 * This code, originally by Doug Gwyn, Doug Kingston, Eric Gisin, and
12781 * Michael Rendell was ripped from pdksh 5.0.8 and hacked for use with
12782 * ash by J.T. Conklin.
12783 *
12784 * Public domain.
12785 */
Eric Andersenc470f442003-07-28 09:56:35 +000012786struct limits {
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012787 uint8_t cmd; /* RLIMIT_xxx fit into it */
12788 uint8_t factor_shift; /* shift by to get rlim_{cur,max} values */
Eric Andersenc470f442003-07-28 09:56:35 +000012789 char option;
12790};
12791
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012792static const struct limits limits_tbl[] = {
Eric Andersenc470f442003-07-28 09:56:35 +000012793#ifdef RLIMIT_CPU
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012794 { RLIMIT_CPU, 0, 't' },
Eric Andersenc470f442003-07-28 09:56:35 +000012795#endif
12796#ifdef RLIMIT_FSIZE
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012797 { RLIMIT_FSIZE, 9, 'f' },
Eric Andersenc470f442003-07-28 09:56:35 +000012798#endif
12799#ifdef RLIMIT_DATA
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012800 { RLIMIT_DATA, 10, 'd' },
Eric Andersenc470f442003-07-28 09:56:35 +000012801#endif
12802#ifdef RLIMIT_STACK
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012803 { RLIMIT_STACK, 10, 's' },
Eric Andersenc470f442003-07-28 09:56:35 +000012804#endif
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012805#ifdef RLIMIT_CORE
12806 { RLIMIT_CORE, 9, 'c' },
Eric Andersenc470f442003-07-28 09:56:35 +000012807#endif
12808#ifdef RLIMIT_RSS
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012809 { RLIMIT_RSS, 10, 'm' },
Eric Andersenc470f442003-07-28 09:56:35 +000012810#endif
12811#ifdef RLIMIT_MEMLOCK
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012812 { RLIMIT_MEMLOCK, 10, 'l' },
Eric Andersenc470f442003-07-28 09:56:35 +000012813#endif
12814#ifdef RLIMIT_NPROC
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012815 { RLIMIT_NPROC, 0, 'p' },
Eric Andersenc470f442003-07-28 09:56:35 +000012816#endif
12817#ifdef RLIMIT_NOFILE
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012818 { RLIMIT_NOFILE, 0, 'n' },
Eric Andersenc470f442003-07-28 09:56:35 +000012819#endif
Glenn L McGrath76620622004-01-13 10:19:37 +000012820#ifdef RLIMIT_AS
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012821 { RLIMIT_AS, 10, 'v' },
Eric Andersenc470f442003-07-28 09:56:35 +000012822#endif
Glenn L McGrath76620622004-01-13 10:19:37 +000012823#ifdef RLIMIT_LOCKS
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012824 { RLIMIT_LOCKS, 0, 'w' },
Eric Andersenc470f442003-07-28 09:56:35 +000012825#endif
Eric Andersenc470f442003-07-28 09:56:35 +000012826};
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012827static const char limits_name[] =
12828#ifdef RLIMIT_CPU
12829 "time(seconds)" "\0"
12830#endif
12831#ifdef RLIMIT_FSIZE
12832 "file(blocks)" "\0"
12833#endif
12834#ifdef RLIMIT_DATA
12835 "data(kb)" "\0"
12836#endif
12837#ifdef RLIMIT_STACK
12838 "stack(kb)" "\0"
12839#endif
12840#ifdef RLIMIT_CORE
12841 "coredump(blocks)" "\0"
12842#endif
12843#ifdef RLIMIT_RSS
12844 "memory(kb)" "\0"
12845#endif
12846#ifdef RLIMIT_MEMLOCK
12847 "locked memory(kb)" "\0"
12848#endif
12849#ifdef RLIMIT_NPROC
12850 "process" "\0"
12851#endif
12852#ifdef RLIMIT_NOFILE
12853 "nofiles" "\0"
12854#endif
12855#ifdef RLIMIT_AS
12856 "vmemory(kb)" "\0"
12857#endif
12858#ifdef RLIMIT_LOCKS
12859 "locks" "\0"
12860#endif
12861;
Eric Andersenc470f442003-07-28 09:56:35 +000012862
Glenn L McGrath76620622004-01-13 10:19:37 +000012863enum limtype { SOFT = 0x1, HARD = 0x2 };
12864
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000012865static void
12866printlim(enum limtype how, const struct rlimit *limit,
Glenn L McGrath76620622004-01-13 10:19:37 +000012867 const struct limits *l)
12868{
12869 rlim_t val;
12870
12871 val = limit->rlim_max;
12872 if (how & SOFT)
12873 val = limit->rlim_cur;
12874
12875 if (val == RLIM_INFINITY)
12876 out1fmt("unlimited\n");
12877 else {
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012878 val >>= l->factor_shift;
Glenn L McGrath76620622004-01-13 10:19:37 +000012879 out1fmt("%lld\n", (long long) val);
12880 }
12881}
12882
Denys Vlasenkod5f1b1b2009-06-05 12:06:05 +020012883static int FAST_FUNC
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012884ulimitcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM)
Eric Andersenc470f442003-07-28 09:56:35 +000012885{
Denys Vlasenko76622db2009-10-04 01:14:19 +020012886 rlim_t val;
Glenn L McGrath76620622004-01-13 10:19:37 +000012887 enum limtype how = SOFT | HARD;
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000012888 const struct limits *l;
12889 int set, all = 0;
12890 int optc, what;
12891 struct rlimit limit;
Eric Andersenc470f442003-07-28 09:56:35 +000012892
12893 what = 'f';
Glenn L McGrath16e45d72004-02-04 08:24:39 +000012894 while ((optc = nextopt("HSa"
12895#ifdef RLIMIT_CPU
12896 "t"
12897#endif
12898#ifdef RLIMIT_FSIZE
12899 "f"
12900#endif
12901#ifdef RLIMIT_DATA
12902 "d"
12903#endif
12904#ifdef RLIMIT_STACK
12905 "s"
12906#endif
12907#ifdef RLIMIT_CORE
12908 "c"
12909#endif
12910#ifdef RLIMIT_RSS
12911 "m"
12912#endif
12913#ifdef RLIMIT_MEMLOCK
12914 "l"
12915#endif
12916#ifdef RLIMIT_NPROC
12917 "p"
12918#endif
12919#ifdef RLIMIT_NOFILE
12920 "n"
12921#endif
12922#ifdef RLIMIT_AS
12923 "v"
12924#endif
12925#ifdef RLIMIT_LOCKS
12926 "w"
12927#endif
Denis Vlasenkoa0f82e92007-02-18 12:35:30 +000012928 )) != '\0')
Eric Andersenc470f442003-07-28 09:56:35 +000012929 switch (optc) {
12930 case 'H':
12931 how = HARD;
12932 break;
12933 case 'S':
12934 how = SOFT;
12935 break;
12936 case 'a':
12937 all = 1;
12938 break;
12939 default:
12940 what = optc;
12941 }
12942
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012943 for (l = limits_tbl; l->option != what; l++)
12944 continue;
Eric Andersenc470f442003-07-28 09:56:35 +000012945
12946 set = *argptr ? 1 : 0;
Denys Vlasenko76622db2009-10-04 01:14:19 +020012947 val = 0;
Eric Andersenc470f442003-07-28 09:56:35 +000012948 if (set) {
12949 char *p = *argptr;
12950
12951 if (all || argptr[1])
Denis Vlasenkob012b102007-02-19 22:43:01 +000012952 ash_msg_and_raise_error("too many arguments");
Eric Andersen81fe1232003-07-29 06:38:40 +000012953 if (strncmp(p, "unlimited\n", 9) == 0)
Eric Andersenc470f442003-07-28 09:56:35 +000012954 val = RLIM_INFINITY;
12955 else {
Denys Vlasenko76622db2009-10-04 01:14:19 +020012956 if (sizeof(val) == sizeof(int))
12957 val = bb_strtou(p, NULL, 10);
12958 else if (sizeof(val) == sizeof(long))
12959 val = bb_strtoul(p, NULL, 10);
12960 else
12961 val = bb_strtoull(p, NULL, 10);
12962 if (errno)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012963 ash_msg_and_raise_error("bad number");
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012964 val <<= l->factor_shift;
Eric Andersenc470f442003-07-28 09:56:35 +000012965 }
12966 }
12967 if (all) {
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012968 const char *lname = limits_name;
12969 for (l = limits_tbl; l != &limits_tbl[ARRAY_SIZE(limits_tbl)]; l++) {
Eric Andersenc470f442003-07-28 09:56:35 +000012970 getrlimit(l->cmd, &limit);
Denis Vlasenkoa59f4352007-10-29 19:17:29 +000012971 out1fmt("%-20s ", lname);
12972 lname += strlen(lname) + 1;
Glenn L McGrath76620622004-01-13 10:19:37 +000012973 printlim(how, &limit, l);
Eric Andersenc470f442003-07-28 09:56:35 +000012974 }
12975 return 0;
12976 }
12977
12978 getrlimit(l->cmd, &limit);
12979 if (set) {
12980 if (how & HARD)
12981 limit.rlim_max = val;
12982 if (how & SOFT)
12983 limit.rlim_cur = val;
12984 if (setrlimit(l->cmd, &limit) < 0)
Denis Vlasenkob012b102007-02-19 22:43:01 +000012985 ash_msg_and_raise_error("error setting limit (%m)");
Eric Andersenc470f442003-07-28 09:56:35 +000012986 } else {
Glenn L McGrath76620622004-01-13 10:19:37 +000012987 printlim(how, &limit, l);
Eric Andersenc470f442003-07-28 09:56:35 +000012988 }
12989 return 0;
12990}
12991
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000012992/* ============ main() and helpers */
12993
12994/*
12995 * Called to exit the shell.
Denis Vlasenkoa624c112007-02-19 22:45:43 +000012996 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000012997static void exitshell(void) NORETURN;
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000012998static void
12999exitshell(void)
13000{
13001 struct jmploc loc;
13002 char *p;
13003 int status;
13004
13005 status = exitstatus;
13006 TRACE(("pid %d, exitshell(%d)\n", getpid(), status));
13007 if (setjmp(loc.loc)) {
Denis Vlasenko7f88e342009-03-19 03:36:18 +000013008 if (exception_type == EXEXIT)
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000013009/* dash bug: it just does _exit(exitstatus) here
13010 * but we have to do setjobctl(0) first!
13011 * (bug is still not fixed in dash-0.5.3 - if you run dash
13012 * under Midnight Commander, on exit from dash MC is backgrounded) */
13013 status = exitstatus;
13014 goto out;
13015 }
13016 exception_handler = &loc;
13017 p = trap[0];
13018 if (p) {
13019 trap[0] = NULL;
13020 evalstring(p, 0);
Denys Vlasenko0800e3a2009-09-24 03:09:26 +020013021 free(p);
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000013022 }
13023 flush_stdout_stderr();
13024 out:
13025 setjobctl(0);
13026 _exit(status);
13027 /* NOTREACHED */
13028}
13029
Denis Vlasenko5c67e3e2007-02-23 01:05:03 +000013030static void
13031init(void)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013032{
13033 /* from input.c: */
Denis Vlasenko41eb3002008-11-28 03:42:31 +000013034 basepf.next_to_pgetc = basepf.buf = basebuf;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013035
13036 /* from trap.c: */
13037 signal(SIGCHLD, SIG_DFL);
Denys Vlasenko7a7b0342009-12-04 04:18:31 +010013038 /* bash re-enables SIGHUP which is SIG_IGNed on entry.
13039 * Try: "trap '' HUP; bash; echo RET" and type "kill -HUP $$"
13040 */
13041 signal(SIGHUP, SIG_DFL);
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013042
13043 /* from var.c: */
13044 {
13045 char **envp;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013046 const char *p;
13047 struct stat st1, st2;
13048
13049 initvar();
13050 for (envp = environ; envp && *envp; envp++) {
13051 if (strchr(*envp, '=')) {
13052 setvareq(*envp, VEXPORT|VTEXTFIXED);
13053 }
13054 }
13055
Denys Vlasenko7bb346f2009-10-06 22:09:50 +020013056 setvar("PPID", utoa(getppid()), 0);
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013057
13058 p = lookupvar("PWD");
13059 if (p)
13060 if (*p != '/' || stat(p, &st1) || stat(".", &st2)
13061 || st1.st_dev != st2.st_dev || st1.st_ino != st2.st_ino)
13062 p = '\0';
13063 setpwd(p, 0);
13064 }
13065}
13066
13067/*
13068 * Process the shell command line arguments.
13069 */
13070static void
Denis Vlasenko68404f12008-03-17 09:00:54 +000013071procargs(char **argv)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013072{
13073 int i;
13074 const char *xminusc;
13075 char **xargv;
13076
13077 xargv = argv;
13078 arg0 = xargv[0];
Denis Vlasenko68404f12008-03-17 09:00:54 +000013079 /* if (xargv[0]) - mmm, this is always true! */
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013080 xargv++;
13081 for (i = 0; i < NOPTS; i++)
13082 optlist[i] = 2;
13083 argptr = xargv;
Denis Vlasenko28bf6712008-02-14 15:01:47 +000013084 if (options(1)) {
13085 /* it already printed err message */
13086 raise_exception(EXERROR);
13087 }
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013088 xargv = argptr;
13089 xminusc = minusc;
13090 if (*xargv == NULL) {
13091 if (xminusc)
13092 ash_msg_and_raise_error(bb_msg_requires_arg, "-c");
13093 sflag = 1;
13094 }
13095 if (iflag == 2 && sflag == 1 && isatty(0) && isatty(1))
13096 iflag = 1;
13097 if (mflag == 2)
13098 mflag = iflag;
13099 for (i = 0; i < NOPTS; i++)
13100 if (optlist[i] == 2)
13101 optlist[i] = 0;
13102#if DEBUG == 2
13103 debug = 1;
13104#endif
13105 /* POSIX 1003.2: first arg after -c cmd is $0, remainder $1... */
13106 if (xminusc) {
13107 minusc = *xargv++;
13108 if (*xargv)
13109 goto setarg0;
13110 } else if (!sflag) {
13111 setinputfile(*xargv, 0);
13112 setarg0:
13113 arg0 = *xargv++;
13114 commandname = arg0;
13115 }
13116
13117 shellparam.p = xargv;
13118#if ENABLE_ASH_GETOPTS
13119 shellparam.optind = 1;
13120 shellparam.optoff = -1;
13121#endif
Denis Vlasenko01631112007-12-16 17:20:38 +000013122 /* assert(shellparam.malloced == 0 && shellparam.nparam == 0); */
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013123 while (*xargv) {
13124 shellparam.nparam++;
13125 xargv++;
13126 }
13127 optschanged();
13128}
13129
13130/*
13131 * Read /etc/profile or .profile.
13132 */
13133static void
13134read_profile(const char *name)
13135{
13136 int skip;
13137
13138 if (setinputfile(name, INPUT_PUSH_FILE | INPUT_NOFILE_OK) < 0)
13139 return;
13140 skip = cmdloop(0);
13141 popfile();
13142 if (skip)
13143 exitshell();
13144}
13145
Denis Vlasenko0c032a42007-02-23 01:03:40 +000013146/*
13147 * This routine is called when an error or an interrupt occurs in an
13148 * interactive shell and control is returned to the main command loop.
13149 */
13150static void
13151reset(void)
13152{
13153 /* from eval.c: */
13154 evalskip = 0;
13155 loopnest = 0;
13156 /* from input.c: */
Denis Vlasenko41eb3002008-11-28 03:42:31 +000013157 g_parsefile->left_in_buffer = 0;
13158 g_parsefile->left_in_line = 0; /* clear input buffer */
Denis Vlasenko0c032a42007-02-23 01:03:40 +000013159 popallfiles();
13160 /* from parser.c: */
13161 tokpushback = 0;
13162 checkkwd = 0;
13163 /* from redir.c: */
Denis Vlasenko34c73c42008-08-16 11:48:02 +000013164 clearredir(/*drop:*/ 0);
Denis Vlasenko0c032a42007-02-23 01:03:40 +000013165}
13166
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013167#if PROFILE
13168static short profile_buf[16384];
13169extern int etext();
13170#endif
13171
Denis Vlasenkobc54cff2007-02-23 01:05:52 +000013172/*
13173 * Main routine. We initialize things, parse the arguments, execute
13174 * profiles if we're a login shell, and then call cmdloop to execute
13175 * commands. The setjmp call sets up the location to jump to when an
13176 * exception occurs. When an exception occurs the variable "state"
13177 * is used to figure out how far we had gotten.
13178 */
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000013179int ash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +000013180int ash_main(int argc UNUSED_PARAM, char **argv)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013181{
Mike Frysinger98c52642009-04-02 10:02:37 +000013182 const char *shinit;
Denis Vlasenko4e12b1a2008-12-23 23:36:47 +000013183 volatile smallint state;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013184 struct jmploc jmploc;
13185 struct stackmark smark;
13186
Denis Vlasenko01631112007-12-16 17:20:38 +000013187 /* Initialize global data */
13188 INIT_G_misc();
13189 INIT_G_memstack();
13190 INIT_G_var();
Denis Vlasenkoee87ebf2007-12-21 22:18:16 +000013191#if ENABLE_ASH_ALIAS
Denis Vlasenko01631112007-12-16 17:20:38 +000013192 INIT_G_alias();
Denis Vlasenkoee87ebf2007-12-21 22:18:16 +000013193#endif
Denis Vlasenko01631112007-12-16 17:20:38 +000013194 INIT_G_cmdtable();
13195
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013196#if PROFILE
13197 monitor(4, etext, profile_buf, sizeof(profile_buf), 50);
13198#endif
13199
13200#if ENABLE_FEATURE_EDITING
13201 line_input_state = new_line_input_t(FOR_SHELL | WITH_PATH_LOOKUP);
13202#endif
13203 state = 0;
13204 if (setjmp(jmploc.loc)) {
Denis Vlasenko7f88e342009-03-19 03:36:18 +000013205 smallint e;
Denis Vlasenko4e12b1a2008-12-23 23:36:47 +000013206 smallint s;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013207
13208 reset();
13209
Denis Vlasenko7f88e342009-03-19 03:36:18 +000013210 e = exception_type;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013211 if (e == EXERROR)
13212 exitstatus = 2;
13213 s = state;
13214 if (e == EXEXIT || s == 0 || iflag == 0 || shlvl)
13215 exitshell();
Denis Vlasenko7f88e342009-03-19 03:36:18 +000013216 if (e == EXINT)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013217 outcslow('\n', stderr);
Denis Vlasenko7f88e342009-03-19 03:36:18 +000013218
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013219 popstackmark(&smark);
13220 FORCE_INT_ON; /* enable interrupts */
13221 if (s == 1)
13222 goto state1;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +000013223 if (s == 2)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013224 goto state2;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +000013225 if (s == 3)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013226 goto state3;
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +000013227 goto state4;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013228 }
13229 exception_handler = &jmploc;
13230#if DEBUG
13231 opentrace();
Denis Vlasenko653d8e72009-03-19 21:59:35 +000013232 TRACE(("Shell args: "));
Denis Vlasenkofe1f00a2007-02-23 01:04:50 +000013233 trace_puts_args(argv);
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013234#endif
13235 rootpid = getpid();
13236
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013237 init();
13238 setstackmark(&smark);
Denis Vlasenko68404f12008-03-17 09:00:54 +000013239 procargs(argv);
13240
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013241#if ENABLE_FEATURE_EDITING_SAVEHISTORY
13242 if (iflag) {
13243 const char *hp = lookupvar("HISTFILE");
13244
13245 if (hp == NULL) {
13246 hp = lookupvar("HOME");
13247 if (hp != NULL) {
13248 char *defhp = concat_path_file(hp, ".ash_history");
13249 setvar("HISTFILE", defhp, 0);
13250 free(defhp);
13251 }
13252 }
13253 }
13254#endif
Denis Vlasenko4e12b1a2008-12-23 23:36:47 +000013255 if (/* argv[0] && */ argv[0][0] == '-')
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013256 isloginsh = 1;
13257 if (isloginsh) {
13258 state = 1;
13259 read_profile("/etc/profile");
13260 state1:
13261 state = 2;
13262 read_profile(".profile");
13263 }
13264 state2:
13265 state = 3;
13266 if (
13267#ifndef linux
Denis Vlasenko0c032a42007-02-23 01:03:40 +000013268 getuid() == geteuid() && getgid() == getegid() &&
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013269#endif
Denis Vlasenko0c032a42007-02-23 01:03:40 +000013270 iflag
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013271 ) {
13272 shinit = lookupvar("ENV");
13273 if (shinit != NULL && *shinit != '\0') {
13274 read_profile(shinit);
13275 }
13276 }
13277 state3:
13278 state = 4;
Denis Vlasenko5c2b8142009-03-19 01:59:59 +000013279 if (minusc) {
13280 /* evalstring pushes parsefile stack.
13281 * Ensure we don't falsely claim that 0 (stdin)
Denis Vlasenko5368ad52009-03-20 10:20:08 +000013282 * is one of stacked source fds.
13283 * Testcase: ash -c 'exec 1>&0' must not complain. */
Denis Vlasenko5c2b8142009-03-19 01:59:59 +000013284 if (!sflag)
13285 g_parsefile->fd = -1;
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013286 evalstring(minusc, 0);
Denis Vlasenko5c2b8142009-03-19 01:59:59 +000013287 }
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013288
13289 if (sflag || minusc == NULL) {
Denys Vlasenko0337e032009-11-29 00:12:30 +010013290#if defined MAX_HISTORY && MAX_HISTORY > 0 && ENABLE_FEATURE_EDITING_SAVEHISTORY
Denis Vlasenko2f5d0cd2008-06-23 13:24:19 +000013291 if (iflag) {
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013292 const char *hp = lookupvar("HISTFILE");
Denis Vlasenko5c2b8142009-03-19 01:59:59 +000013293 if (hp)
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013294 line_input_state->hist_file = hp;
13295 }
13296#endif
13297 state4: /* XXX ??? - why isn't this before the "if" statement */
13298 cmdloop(1);
13299 }
13300#if PROFILE
13301 monitor(0);
13302#endif
13303#ifdef GPROF
13304 {
13305 extern void _mcleanup(void);
13306 _mcleanup();
13307 }
13308#endif
13309 exitshell();
13310 /* NOTREACHED */
13311}
13312
Denis Vlasenkoa624c112007-02-19 22:45:43 +000013313
Eric Andersendf82f612001-06-28 07:46:40 +000013314/*-
13315 * Copyright (c) 1989, 1991, 1993, 1994
Eric Andersen2870d962001-07-02 17:27:21 +000013316 * The Regents of the University of California. All rights reserved.
Eric Andersendf82f612001-06-28 07:46:40 +000013317 *
13318 * This code is derived from software contributed to Berkeley by
13319 * Kenneth Almquist.
13320 *
13321 * Redistribution and use in source and binary forms, with or without
13322 * modification, are permitted provided that the following conditions
13323 * are met:
13324 * 1. Redistributions of source code must retain the above copyright
13325 * notice, this list of conditions and the following disclaimer.
13326 * 2. Redistributions in binary form must reproduce the above copyright
13327 * notice, this list of conditions and the following disclaimer in the
13328 * documentation and/or other materials provided with the distribution.
"Vladimir N. Oleynik"ddc280e2005-12-15 12:01:49 +000013329 * 3. Neither the name of the University nor the names of its contributors
Eric Andersendf82f612001-06-28 07:46:40 +000013330 * may be used to endorse or promote products derived from this software
13331 * without specific prior written permission.
13332 *
13333 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
13334 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
13335 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
13336 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
13337 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
13338 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
13339 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
13340 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
13341 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
13342 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
13343 * SUCH DAMAGE.
13344 */