blob: 119518bd15fb42ce4f189ae76da7229d8d230dfa [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003 * A prototype Bourne shell grammar parser.
4 * Intended to follow the original Thompson and Ritchie
5 * "small and simple is beautiful" philosophy, which
6 * incidentally is a good match to today's BusyBox.
Eric Andersen25f27032001-04-26 23:22:31 +00007 *
8 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00009 * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com>
Eric Andersen25f27032001-04-26 23:22:31 +000010 *
11 * Credits:
12 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000013 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
14 * execution engine, the builtins, and much of the underlying
15 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000016 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000017 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
18 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19 * Troan, which they placed in the public domain. I don't know
20 * how much of the Johnson/Troan code has survived the repeated
21 * rewrites.
22 *
Eric Andersen25f27032001-04-26 23:22:31 +000023 * Other credits:
Denis Vlasenkoa8442002008-06-14 11:00:17 +000024 * o_addchr() derived from similar w_addchar function in glibc-2.2.
Eric Andersen25f27032001-04-26 23:22:31 +000025 * setup_redirect(), redirect_opt_num(), and big chunks of main()
Denis Vlasenko424f79b2009-03-22 14:23:34 +000026 * and many builtins derived from contributions by Erik Andersen.
27 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000028 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000040 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000041 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000042 * <(list) and >(list) Process Substitution
Eric Andersen25f27032001-04-26 23:22:31 +000043 * Here Documents ( << word )
44 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000045 * Tilde Expansion
Mike Frysinger6379bb42009-03-28 18:55:03 +000046 * Parameter Expansion for substring processing ${var#word} ${var%word}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000047 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000048 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000049 * &> and >& redirection of stdout+stderr
50 * Brace expansion
51 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000052 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000053 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000054 * TODOs:
55 * grep for "TODO" and fix (some of them are easy)
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * change { and } from special chars to reserved words
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000057 * builtins: return, ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000058 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000059 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000060 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000061 * SIGHUP handling
62 * ^Z handling (and explain it in comments for mere humans)
63 * separate job control from interactiveness
64 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
65 * functions
Eric Andersen25f27032001-04-26 23:22:31 +000066 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000067 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000068 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000069
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000070#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenko424f79b2009-03-22 14:23:34 +000071//TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN?
Denis Vlasenko61befda2008-11-25 01:36:03 +000072//#include "applet_tables.h" doesn't work
Denis Vlasenkobe709c22008-07-28 00:01:16 +000073#include <glob.h>
74/* #include <dmalloc.h> */
75#if ENABLE_HUSH_CASE
76#include <fnmatch.h>
77#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000078#include "math.h"
79
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000080#ifdef WANT_TO_TEST_NOMMU
81# undef BB_MMU
82# undef USE_FOR_NOMMU
83# undef USE_FOR_MMU
84# define BB_MMU 0
85# define USE_FOR_NOMMU(...) __VA_ARGS__
86# define USE_FOR_MMU(...)
87#endif
88
Denis Vlasenko61befda2008-11-25 01:36:03 +000089#if defined SINGLE_APPLET_MAIN
90/* STANDALONE does not make sense, and won't compile */
91#undef CONFIG_FEATURE_SH_STANDALONE
92#undef ENABLE_FEATURE_SH_STANDALONE
93#undef USE_FEATURE_SH_STANDALONE
94#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
95#define ENABLE_FEATURE_SH_STANDALONE 0
96#define USE_FEATURE_SH_STANDALONE(...)
97#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
98#endif
99
Denis Vlasenko05743d72008-02-10 12:10:08 +0000100#if !ENABLE_HUSH_INTERACTIVE
101#undef ENABLE_FEATURE_EDITING
102#define ENABLE_FEATURE_EDITING 0
103#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
104#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000105#endif
106
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000107/* Do we support ANY keywords? */
108#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
109#define HAS_KEYWORDS 1
110#define IF_HAS_KEYWORDS(...) __VA_ARGS__
111#define IF_HAS_NO_KEYWORDS(...)
112#else
113#define HAS_KEYWORDS 0
114#define IF_HAS_KEYWORDS(...)
115#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
116#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000117
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000118/* Keep unconditionally on for now */
119#define HUSH_DEBUG 1
120/* In progress... */
121#define ENABLE_HUSH_FUNCTIONS 0
122
123
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000124/* If you comment out one of these below, it will be #defined later
125 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000126#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000127/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf_parse(...) do {} while (0)
129#define debug_print_tree(a, b) do {} while (0)
130#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000131#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000132#define debug_printf_jobs(...) do {} while (0)
133#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000134#define debug_printf_glob(...) do {} while (0)
135#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000136#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000137#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000138
139#ifndef debug_printf
140#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000141#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000142
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000143#ifndef debug_printf_parse
144#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000145#endif
146
147#ifndef debug_printf_exec
148#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
149#endif
150
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000151#ifndef debug_printf_env
152#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
153#endif
154
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000155#ifndef debug_printf_jobs
156#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000157#define DEBUG_JOBS 1
158#else
159#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000160#endif
161
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000162#ifndef debug_printf_expand
163#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
164#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000165#else
166#define DEBUG_EXPAND 0
167#endif
168
169#ifndef debug_printf_glob
170#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
171#define DEBUG_GLOB 1
172#else
173#define DEBUG_GLOB 0
174#endif
175
176#ifndef debug_printf_list
177#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000178#endif
179
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000180#ifndef debug_printf_subst
181#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
182#endif
183
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000184#ifndef debug_printf_clean
185/* broken, of course, but OK for testing */
186static const char *indenter(int i)
187{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000188 static const char blanks[] ALIGN1 =
189 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000190 return &blanks[sizeof(blanks) - i - 1];
191}
192#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000193#define DEBUG_CLEAN 1
Denis Vlasenkoa0e65122009-04-05 23:39:14 +0000194#else
195#define DEBUG_CLEAN 0
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000196#endif
197
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000198#if DEBUG_EXPAND
199static void debug_print_strings(const char *prefix, char **vv)
200{
201 fprintf(stderr, "%s:\n", prefix);
202 while (*vv)
203 fprintf(stderr, " '%s'\n", *vv++);
204}
205#else
206#define debug_print_strings(prefix, vv) ((void)0)
207#endif
208
Denis Vlasenkof962a032007-11-23 12:50:54 +0000209/*
210 * Leak hunting. Use hush_leaktool.sh for post-processing.
211 */
212#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000213static void *xxmalloc(int lineno, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000214{
215 void *ptr = xmalloc((size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000216 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000217 return ptr;
218}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000219static void *xxrealloc(int lineno, void *ptr, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000220{
221 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000222 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000223 return ptr;
224}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000225static char *xxstrdup(int lineno, const char *str)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000226{
227 char *ptr = xstrdup(str);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000228 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000229 return ptr;
230}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000231static void xxfree(void *ptr)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000232{
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000233 fdprintf(2, "free %p\n", ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000234 free(ptr);
235}
236#define xmalloc(s) xxmalloc(__LINE__, s)
237#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
238#define xstrdup(s) xxstrdup(__LINE__, s)
239#define free(p) xxfree(p)
240#endif
241
242
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000243#define ERR_PTR ((void*)(long)1)
244
Mike Frysinger258275d2009-04-05 21:19:43 +0000245static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000246
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000247#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000248
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000249#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000250
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000251typedef enum redir_type {
Eric Andersen25f27032001-04-26 23:22:31 +0000252 REDIRECT_INPUT = 1,
253 REDIRECT_OVERWRITE = 2,
254 REDIRECT_APPEND = 3,
255 REDIRECT_HEREIS = 4,
256 REDIRECT_IO = 5
257} redir_type;
258
Denis Vlasenko55789c62008-06-18 16:30:42 +0000259/* The descrip member of this structure is only used to make
260 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000261static const struct {
262 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000263 signed char default_fd;
264 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000265} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000266 { 0, 0, "()" },
267 { O_RDONLY, 0, "<" },
268 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
269 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
270 { O_RDONLY, -1, "<<" },
271 { O_RDWR, 1, "<>" }
272};
273
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000274typedef enum pipe_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000275 PIPE_SEQ = 1,
276 PIPE_AND = 2,
277 PIPE_OR = 3,
278 PIPE_BG = 4,
279} pipe_style;
280
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000281typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000282 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000283#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000284 RES_IF ,
285 RES_THEN ,
286 RES_ELIF ,
287 RES_ELSE ,
288 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000289#endif
290#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000291 RES_FOR ,
292 RES_WHILE ,
293 RES_UNTIL ,
294 RES_DO ,
295 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000296#endif
297#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000298 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000299#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000300#if ENABLE_HUSH_CASE
301 RES_CASE ,
302 /* two pseudo-keywords support contrived "case" syntax: */
303 RES_MATCH , /* "word)" */
304 RES_CASEI , /* "this command is inside CASE" */
305 RES_ESAC ,
306#endif
307 RES_XXXX ,
308 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000309} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000310
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000311typedef struct o_string {
312 char *data;
313 int length; /* position where data is appended */
314 int maxlen;
315 /* Protect newly added chars against globbing
316 * (by prepending \ to *, ?, [, \) */
317 smallint o_escape;
318 smallint o_glob;
319 smallint nonnull;
320 smallint has_empty_slot;
321 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
322} o_string;
323enum {
324 MAYBE_ASSIGNMENT = 0,
325 DEFINITELY_ASSIGNMENT = 1,
326 NOT_ASSIGNMENT = 2,
327 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
328};
329/* Used for initialization: o_string foo = NULL_O_STRING; */
330#define NULL_O_STRING { NULL }
331
332/* I can almost use ordinary FILE*. Is open_memstream() universally
333 * available? Where is it documented? */
334typedef struct in_str {
335 const char *p;
336 /* eof_flag=1: last char in ->p is really an EOF */
337 char eof_flag; /* meaningless if ->p == NULL */
338 char peek_buf[2];
339#if ENABLE_HUSH_INTERACTIVE
340 smallint promptme;
341 smallint promptmode; /* 0: PS1, 1: PS2 */
342#endif
343 FILE *file;
344 int (*get) (struct in_str *);
345 int (*peek) (struct in_str *);
346} in_str;
347#define i_getch(input) ((input)->get(input))
348#define i_peek(input) ((input)->peek(input))
349
Eric Andersen25f27032001-04-26 23:22:31 +0000350struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000351 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000352 char *rd_filename; /* filename */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000353 int fd; /* file descriptor being redirected */
354 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000355 smallint /*enum redir_type*/ rd_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000356};
357
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000358struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000359 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000360 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000361 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000362 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000363 struct pipe *group; /* if non-NULL, this "command" is { list },
364 * ( list ), or a compound statement */
365#if !BB_MMU
366 char *group_as_string;
367#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000368 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000369 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000370};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000371/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
372 * and on execution these are substituted with their values.
373 * Substitution can make _several_ words out of one argv[n]!
374 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000375 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000376 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000377#define GRP_NORMAL 0
378#define GRP_SUBSHELL 1
379#if ENABLE_HUSH_FUNCTIONS
380#define GRP_FUNCTION 2
381#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000382
383struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000384 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000385 int num_cmds; /* total number of commands in job */
386 int alive_cmds; /* number of commands running (not exited) */
387 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000388#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000389 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000390 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000391 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000392#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000393 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000394 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000395 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
396 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000397};
398
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000399/* This holds pointers to the various results of parsing */
400struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000401 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000402 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000403 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000404 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000405 /* last command in pipe (being constructed right now) */
406 struct command *command;
407 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000408 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000409#if !BB_MMU
410 o_string as_string;
411#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000412#if HAS_KEYWORDS
413 smallint ctx_res_w;
414 smallint ctx_inverted; /* "! cmd | cmd" */
415#if ENABLE_HUSH_CASE
416 smallint ctx_dsemicolon; /* ";;" seen */
417#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000418 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
419 int old_flag;
420 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000421 * example: "if pipe1; pipe2; then pipe3; fi"
422 * when we see "if" or "then", we malloc and copy current context,
423 * and make ->stack point to it. then we parse pipeN.
424 * when closing "then" / fi" / whatever is found,
425 * we move list_head into ->stack->command->group,
426 * copy ->stack into current context, and delete ->stack.
427 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000428 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000429 struct parse_context *stack;
430#endif
431};
432
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000433/* On program start, environ points to initial environment.
434 * putenv adds new pointers into it, unsetenv removes them.
435 * Neither of these (de)allocates the strings.
436 * setenv allocates new strings in malloc space and does putenv,
437 * and thus setenv is unusable (leaky) for shell's purposes */
438#define setenv(...) setenv_is_leaky_dont_use()
439struct variable {
440 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000441 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000442 int max_len; /* if > 0, name is part of initial env; else name is malloced */
443 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000444 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000445};
446
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000447enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000448 BC_BREAK = 1,
449 BC_CONTINUE = 2,
450};
451
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000452
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000453/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000454/* Sorted roughly by size (smaller offsets == smaller code) */
455struct globals {
456#if ENABLE_HUSH_INTERACTIVE
457 /* 'interactive_fd' is a fd# open to ctty, if we have one
458 * _AND_ if we decided to act interactively */
459 int interactive_fd;
460 const char *PS1;
461 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000462#define G_interactive_fd (G.interactive_fd)
463#else
464#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000465#endif
466#if ENABLE_FEATURE_EDITING
467 line_input_t *line_input_state;
468#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000469 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000470 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000471#if ENABLE_HUSH_JOB
472 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000473 pid_t saved_tty_pgrp;
474 int last_jobid;
475 struct pipe *job_list;
476 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000477//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000478#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000479 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000480#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000481 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000482#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000483 smallint fake_mode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000484 /* These four support $?, $#, and $1 */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +0000485 smalluint last_return_code;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000486 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000487 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000488 /* how many non-NULL argv's we have. NB: $# + 1 */
489 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000490 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000491#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000492 char *argv0_for_re_execing;
493 char **argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000494#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000495#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000496 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000497 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000498#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000499 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000500 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000501 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000502 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000503 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000504// unsigned count_SIGCHLD;
505// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000506 /* which signals have non-DFL handler (even with no traps set)? */
507 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000508 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000509 sigset_t blocked_set;
510 sigset_t inherited_set;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000511 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
512#if ENABLE_FEATURE_SH_STANDALONE
513 struct nofork_save_area nofork_save;
514#endif
515#if ENABLE_HUSH_JOB
516 sigjmp_buf toplevel_jb;
517#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000518};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000519#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000520/* Not #defining name to G.name - this quickly gets unwieldy
521 * (too many defines). Also, I actually prefer to see when a variable
522 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000523#define INIT_G() do { \
524 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
525} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000526
527
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000528/* Function prototypes for builtins */
529static int builtin_cd(char **argv);
530static int builtin_echo(char **argv);
531static int builtin_eval(char **argv);
532static int builtin_exec(char **argv);
533static int builtin_exit(char **argv);
534static int builtin_export(char **argv);
535#if ENABLE_HUSH_JOB
536static int builtin_fg_bg(char **argv);
537static int builtin_jobs(char **argv);
538#endif
539#if ENABLE_HUSH_HELP
540static int builtin_help(char **argv);
541#endif
542static int builtin_pwd(char **argv);
543static int builtin_read(char **argv);
544static int builtin_test(char **argv);
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000545static int builtin_trap(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000546static int builtin_true(char **argv);
547static int builtin_set(char **argv);
548static int builtin_shift(char **argv);
549static int builtin_source(char **argv);
550static int builtin_umask(char **argv);
551static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000552static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000553#if ENABLE_HUSH_LOOPS
554static int builtin_break(char **argv);
555static int builtin_continue(char **argv);
556#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000557
558/* Table of built-in functions. They can be forked or not, depending on
559 * context: within pipes, they fork. As simple commands, they do not.
560 * When used in non-forking context, they can change global variables
561 * in the parent shell process. If forked, of course they cannot.
562 * For example, 'unset foo | whatever' will parse and run, but foo will
563 * still be set at the end. */
564struct built_in_command {
565 const char *cmd;
566 int (*function)(char **argv);
567#if ENABLE_HUSH_HELP
568 const char *descr;
569#define BLTIN(cmd, func, help) { cmd, func, help }
570#else
571#define BLTIN(cmd, func, help) { cmd, func }
572#endif
573};
574
575/* For now, echo and test are unconditionally enabled.
576 * Maybe make it configurable? */
577static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000578 BLTIN("." , builtin_source , "Run commands in a file"),
579 BLTIN(":" , builtin_true , "No-op"),
580 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000581#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000582 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000583#endif
584#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000585 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000586#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000587 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000588#if ENABLE_HUSH_LOOPS
589 BLTIN("continue", builtin_continue, "Start new loop iteration"),
590#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000591 BLTIN("echo" , builtin_echo , "Write to stdout"),
592 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
593 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
594 BLTIN("exit" , builtin_exit , "Exit"),
595 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000596#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000597 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000598#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000599#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000600 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000601#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000602#if ENABLE_HUSH_JOB
603 BLTIN("jobs" , builtin_jobs , "List active jobs"),
604#endif
605 BLTIN("pwd" , builtin_pwd , "Print current directory"),
606 BLTIN("read" , builtin_read , "Input environment variable"),
607// BLTIN("return" , builtin_return , "Return from a function"),
608 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
609 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
610 BLTIN("test" , builtin_test , "Test condition"),
611 BLTIN("trap" , builtin_trap , "Trap signals"),
612// BLTIN("ulimit" , builtin_return , "Control resource limits"),
613 BLTIN("umask" , builtin_umask , "Set file creation mask"),
614 BLTIN("unset" , builtin_unset , "Unset environment variable"),
615 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000616};
617
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000618
Mike Frysinger6379bb42009-03-28 18:55:03 +0000619static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000620{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000621 /* Was using fancy stuff:
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000622 * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000623 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000624 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
625#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerdfa9de72009-04-03 22:48:10 +0000626 if (G_interactive_fd)
627 fp = bb_error_msg;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000628#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000629 fp(msg ? "%s: %s" : notice, notice, msg);
630}
Mike Frysinger5a828452009-03-28 19:09:04 +0000631#if 1
632#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000633#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000634/* Debug -- trick gcc to expand __LINE__ and convert to string */
635#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
636#define _syntax(msg, line) __syntax(msg, line)
637#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000638#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000639
Denis Vlasenko552433b2009-04-04 19:29:21 +0000640
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000641static int glob_needed(const char *s)
642{
643 while (*s) {
644 if (*s == '\\')
645 s++;
646 if (*s == '*' || *s == '[' || *s == '?')
647 return 1;
648 s++;
649 }
650 return 0;
651}
652
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000653static int is_assignment(const char *s)
654{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000655 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000656 return 0;
657 s++;
658 while (isalnum(*s) || *s == '_')
659 s++;
660 return *s == '=';
661}
662
Denis Vlasenko55789c62008-06-18 16:30:42 +0000663/* Replace each \x with x in place, return ptr past NUL. */
664static char *unbackslash(char *src)
665{
666 char *dst = src;
667 while (1) {
668 if (*src == '\\')
669 src++;
670 if ((*dst++ = *src++) == '\0')
671 break;
672 }
673 return dst;
674}
675
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000676static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000677{
678 int i;
679 unsigned count1;
680 unsigned count2;
681 char **v;
682
683 v = strings;
684 count1 = 0;
685 if (v) {
686 while (*v) {
687 count1++;
688 v++;
689 }
690 }
691 count2 = 0;
692 v = add;
693 while (*v) {
694 count2++;
695 v++;
696 }
697 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
698 v[count1 + count2] = NULL;
699 i = count2;
700 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000701 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000702 return v;
703}
704
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000705static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000706{
707 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000708 v[0] = add;
709 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000710 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000711}
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000712
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000713static void putenv_all(char **strings)
714{
715 if (!strings)
716 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000717 while (*strings) {
718 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000719 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000720 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000721}
722
723static char **putenv_all_and_save_old(char **strings)
724{
725 char **old = NULL;
726 char **s = strings;
727
728 if (!strings)
729 return old;
730 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000731 char *v, *eq;
732
733 eq = strchr(*strings, '=');
734 if (eq) {
735 *eq = '\0';
736 v = getenv(*strings);
737 *eq = '=';
738 if (v) {
739 /* v points to VAL in VAR=VAL, go back to VAR */
740 v -= (eq - *strings) + 1;
741 old = add_string_to_strings(old, v);
742 }
743 }
744 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000745 }
746 putenv_all(s);
747 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000748}
749
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000750static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000751{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000752 char **v;
753
754 if (!strings)
755 return;
756
757 v = strings;
758 while (*v) {
759 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000760 debug_printf_env("unsetenv '%s'\n", *v);
761 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000762 }
763 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000764 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000765 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000766}
767
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000768static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000769{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000770 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000771}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000772
773
Denis Vlasenkod5762932009-03-31 11:22:57 +0000774/* Basic theory of signal handling in shell
775 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000776 * This does not describe what hush does, rather, it is current understanding
777 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000778 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
779 *
780 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
781 * is finished or backgrounded. It is the same in interactive and
782 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000783 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000784 * ^C or ^Z from keyboard seem to execute "at once" because it usually
785 * backgrounds (i.e. stops) or kills all members of currently running
786 * pipe.
787 *
788 * Wait builtin in interruptible by signals for which user trap is set
789 * or by SIGINT in interactive shell.
790 *
791 * Trap handlers will execute even within trap handlers. (right?)
792 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000793 * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000794 *
795 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000796 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000797 *
798 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000799 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000800 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000801 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
802 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000803 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000804 * Siganls which differ from SIG_DFL action
805 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000806 *
807 * SIGQUIT: ignore
808 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000809 * SIGHUP (interactive):
810 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000811 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000812 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
813 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000814 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000815 * of the command line, show prompt. NB: ^C does not send SIGINT
816 * to interactive shell while shell is waiting for a pipe,
817 * since shell is bg'ed (is not in foreground process group).
818 * (check/expand this)
819 * Example 1: this waits 5 sec, but does not execute ls:
820 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
821 * Example 2: this does not wait and does not execute ls:
822 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
823 * Example 3: this does not wait 5 sec, but executes ls:
824 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000825 *
826 * (What happens to signals which are IGN on shell start?)
827 * (What happens with signal mask on shell start?)
828 *
829 * Implementation in hush
830 * ======================
831 * We use in-kernel pending signal mask to determine which signals were sent.
832 * We block all signals which we don't want to take action immediately,
833 * i.e. we block all signals which need to have special handling as described
834 * above, and all signals which have traps set.
835 * After each pipe execution, we extract any pending signals via sigtimedwait()
836 * and act on them.
837 *
838 * unsigned non_DFL_mask: a mask of such "special" signals
839 * sigset_t blocked_set: current blocked signal set
840 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000841 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000842 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000843 * "trap 'cmd' SIGxxx":
844 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000845 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000846 * nothing for {} child shell (say, "true | { true; true; } | true")
847 * unset all traps if () shell. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000848 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000849 * POSIX says pending signal mask is cleared in child - no need to clear it.
850 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000851 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000852 * Note: as a result, we do not use signal handlers much. The only uses
853 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
854 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000855 */
856
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000857//static void SIGCHLD_handler(int sig UNUSED_PARAM)
858//{
859// G.count_SIGCHLD++;
860//}
861
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000862static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000863{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000864 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000865 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000866 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000867
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000868 if (sig)
869 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000870 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000871 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000872 if (sig <= 0)
873 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000874 jump_in:
875 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000876 if (G.traps && G.traps[sig]) {
877 if (G.traps[sig][0]) {
878 /* We have user-defined handler */
879 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
880 save_rcode = G.last_return_code;
881 builtin_eval(argv);
882 free(argv[1]);
883 G.last_return_code = save_rcode;
884 } /* else: "" trap, ignoring signal */
885 continue;
886 }
887 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000888 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000889// case SIGCHLD:
890// G.count_SIGCHLD++;
891// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000892 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000893 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000894 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000895 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000896//TODO
897// case SIGHUP: ...
898// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +0000899 default: /* ignored: */
900 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000901 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000902 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000903 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000904 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000905}
906
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000907#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000908/* Restores tty foreground process group, and exits.
909 * May be called as signal handler for fatal signal
910 * (will faithfully resend signal to itself, producing correct exit state)
911 * or called directly with -EXITCODE.
912 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000913static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000914static void sigexit(int sig)
915{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000916 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000917 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000918
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000919 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000920 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000921 if (G_interactive_fd && getpid() == G.root_pid)
922 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000923
924 /* Not a signal, just exit */
925 if (sig <= 0)
926 _exit(- sig);
927
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000928 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000929}
Denis Vlasenkoe0755e52009-04-03 21:16:45 +0000930#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000931
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000932/* Restores tty foreground process group, and exits. */
933static void hush_exit(int exitcode) NORETURN;
934static void hush_exit(int exitcode)
935{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000936 if (G.traps && G.traps[0] && G.traps[0][0]) {
937 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
Denis Vlasenkof9375282009-04-05 19:13:39 +0000938//TODO: do we need to prevent recursion?
Denis Vlasenkod5762932009-03-31 11:22:57 +0000939 builtin_eval(argv);
940 free(argv[1]);
941 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000942
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000943#if ENABLE_HUSH_JOB
944 fflush(NULL); /* flush all streams */
945 sigexit(- (exitcode & 0xff));
946#else
947 exit(exitcode);
948#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000949}
950
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000951
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000952static const char *set_cwd(void)
953{
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000954 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
955 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +0000956 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000957 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000958 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
959 if (!G.cwd)
960 G.cwd = bb_msg_unknown;
961 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000962}
963
Denis Vlasenko83506862007-11-23 13:11:42 +0000964
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000965/* Get/check local shell variables */
966static struct variable *get_local_var(const char *name)
967{
968 struct variable *cur;
969 int len;
970
971 if (!name)
972 return NULL;
973 len = strlen(name);
974 for (cur = G.top_var; cur; cur = cur->next) {
975 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
976 return cur;
977 }
978 return NULL;
979}
980
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000981static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000982{
983 struct variable *var = get_local_var(src);
984 if (var)
985 return strchr(var->varstr, '=') + 1;
986 return NULL;
987}
988
989/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +0000990 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +0000991 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +0000992 * 0: do not export
993 * 1: export
994 * -1: if NAME is set, leave export status alone
995 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +0000996 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +0000997 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +0000998#if BB_MMU
999#define set_local_var(str, flg_export, flg_read_only) \
1000 set_local_var(str, flg_export)
1001#endif
1002static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001003{
1004 struct variable *cur;
1005 char *value;
1006 int name_len;
1007
1008 value = strchr(str, '=');
1009 if (!value) { /* not expected to ever happen? */
1010 free(str);
1011 return -1;
1012 }
1013
1014 name_len = value - str + 1; /* including '=' */
1015 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1016 while (1) {
1017 if (strncmp(cur->varstr, str, name_len) != 0) {
1018 if (!cur->next) {
1019 /* Bail out. Note that now cur points
1020 * to last var in linked list */
1021 break;
1022 }
1023 cur = cur->next;
1024 continue;
1025 }
1026 /* We found an existing var with this name */
1027 *value = '\0';
1028 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001029#if !BB_MMU
1030 if (!flg_read_only)
1031#endif
1032 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001033 free(str);
1034 return -1;
1035 }
1036 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1037 unsetenv(str); /* just in case */
1038 *value = '=';
1039 if (strcmp(cur->varstr, str) == 0) {
1040 free_and_exp:
1041 free(str);
1042 goto exp;
1043 }
1044 if (cur->max_len >= strlen(str)) {
1045 /* This one is from startup env, reuse space */
1046 strcpy(cur->varstr, str);
1047 goto free_and_exp;
1048 }
1049 /* max_len == 0 signifies "malloced" var, which we can
1050 * (and has to) free */
1051 if (!cur->max_len)
1052 free(cur->varstr);
1053 cur->max_len = 0;
1054 goto set_str_and_exp;
1055 }
1056
1057 /* Not found - create next variable struct */
1058 cur->next = xzalloc(sizeof(*cur));
1059 cur = cur->next;
1060
1061 set_str_and_exp:
1062 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001063#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001064 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001065#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001066 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001067 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001068 cur->flg_export = 1;
1069 if (cur->flg_export) {
1070 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1071 return putenv(cur->varstr);
1072 }
1073 return 0;
1074}
1075
Mike Frysingerd690f682009-03-30 06:50:54 +00001076static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001077{
1078 struct variable *cur;
1079 struct variable *prev = prev; /* for gcc */
1080 int name_len;
1081
1082 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001083 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001084 name_len = strlen(name);
1085 cur = G.top_var;
1086 while (cur) {
1087 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1088 if (cur->flg_read_only) {
1089 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001090 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001091 }
1092 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1093 * is ro, and we cannot reach this code on the 1st pass */
1094 prev->next = cur->next;
1095 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1096 bb_unsetenv(cur->varstr);
1097 if (!cur->max_len)
1098 free(cur->varstr);
1099 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001100 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001101 }
1102 prev = cur;
1103 cur = cur->next;
1104 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001105 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001106}
1107
Mike Frysinger98c52642009-04-02 10:02:37 +00001108#if ENABLE_SH_MATH_SUPPORT
1109#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1110#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1111static char *endofname(const char *name)
1112{
1113 char *p;
1114
1115 p = (char *) name;
1116 if (!is_name(*p))
1117 return p;
1118 while (*++p) {
1119 if (!is_in_name(*p))
1120 break;
1121 }
1122 return p;
1123}
1124
1125static void arith_set_local_var(const char *name, const char *val, int flags)
1126{
1127 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001128 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001129 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001130}
1131#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001132
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001133
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001134/*
1135 * in_str support
1136 */
1137static int static_get(struct in_str *i)
1138{
1139 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001140 if (ch != '\0')
1141 return ch;
1142 i->p--;
1143 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001144}
1145
1146static int static_peek(struct in_str *i)
1147{
1148 return *i->p;
1149}
1150
1151#if ENABLE_HUSH_INTERACTIVE
1152
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001153static void cmdedit_set_initial_prompt(void)
1154{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001155 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1156 G.PS1 = getenv("PS1");
1157 if (G.PS1 == NULL)
1158 G.PS1 = "\\w \\$ ";
1159 } else
1160 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001161}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001162
1163static const char* setup_prompt_string(int promptmode)
1164{
1165 const char *prompt_str;
1166 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001167 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1168 /* Set up the prompt */
1169 if (promptmode == 0) { /* PS1 */
1170 free((char*)G.PS1);
1171 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1172 prompt_str = G.PS1;
1173 } else
1174 prompt_str = G.PS2;
1175 } else
1176 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001177 debug_printf("result '%s'\n", prompt_str);
1178 return prompt_str;
1179}
1180
1181static void get_user_input(struct in_str *i)
1182{
1183 int r;
1184 const char *prompt_str;
1185
1186 prompt_str = setup_prompt_string(i->promptmode);
1187#if ENABLE_FEATURE_EDITING
1188 /* Enable command line editing only while a command line
1189 * is actually being read */
1190 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001191 G.flag_SIGINT = 0;
1192 /* buglet: SIGINT will not make new prompt to appear _at once_,
1193 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001194 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001195 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001196 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001197 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001198 i->eof_flag = (r < 0);
1199 if (i->eof_flag) { /* EOF/error detected */
1200 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1201 G.user_input_buf[1] = '\0';
1202 }
1203#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001204 do {
1205 G.flag_SIGINT = 0;
1206 fputs(prompt_str, stdout);
1207 fflush(stdout);
1208 G.user_input_buf[0] = r = fgetc(i->file);
1209 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001210//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001211 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001212 i->eof_flag = (r == EOF);
1213#endif
1214 i->p = G.user_input_buf;
1215}
1216
1217#endif /* INTERACTIVE */
1218
1219/* This is the magic location that prints prompts
1220 * and gets data back from the user */
1221static int file_get(struct in_str *i)
1222{
1223 int ch;
1224
1225 /* If there is data waiting, eat it up */
1226 if (i->p && *i->p) {
1227#if ENABLE_HUSH_INTERACTIVE
1228 take_cached:
1229#endif
1230 ch = *i->p++;
1231 if (i->eof_flag && !*i->p)
1232 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001233 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001234 } else {
1235 /* need to double check i->file because we might be doing something
1236 * more complicated by now, like sourcing or substituting. */
1237#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001238 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001239 do {
1240 get_user_input(i);
1241 } while (!*i->p); /* need non-empty line */
1242 i->promptmode = 1; /* PS2 */
1243 i->promptme = 0;
1244 goto take_cached;
1245 }
1246#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001247 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001248 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001249 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001250#if ENABLE_HUSH_INTERACTIVE
1251 if (ch == '\n')
1252 i->promptme = 1;
1253#endif
1254 return ch;
1255}
1256
Denis Vlasenko913a2012009-04-05 22:17:04 +00001257/* All callers guarantee this routine will never
1258 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001259 */
1260static int file_peek(struct in_str *i)
1261{
1262 int ch;
1263 if (i->p && *i->p) {
1264 if (i->eof_flag && !i->p[1])
1265 return EOF;
1266 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001267 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001268 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001269 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001270 i->eof_flag = (ch == EOF);
1271 i->peek_buf[0] = ch;
1272 i->peek_buf[1] = '\0';
1273 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001274 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001275 return ch;
1276}
1277
1278static void setup_file_in_str(struct in_str *i, FILE *f)
1279{
1280 i->peek = file_peek;
1281 i->get = file_get;
1282#if ENABLE_HUSH_INTERACTIVE
1283 i->promptme = 1;
1284 i->promptmode = 0; /* PS1 */
1285#endif
1286 i->file = f;
1287 i->p = NULL;
1288}
1289
1290static void setup_string_in_str(struct in_str *i, const char *s)
1291{
1292 i->peek = static_peek;
1293 i->get = static_get;
1294#if ENABLE_HUSH_INTERACTIVE
1295 i->promptme = 1;
1296 i->promptmode = 0; /* PS1 */
1297#endif
1298 i->p = s;
1299 i->eof_flag = 0;
1300}
1301
1302
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001303/*
1304 * o_string support
1305 */
1306#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001307
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001308static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001309{
1310 o->length = 0;
1311 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001312 if (o->data)
1313 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001314}
1315
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001316static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001317{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001318 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001319 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001320}
1321
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001322static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1323{
1324 free(o->data);
1325}
1326
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001327static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001328{
1329 if (o->length + len > o->maxlen) {
1330 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1331 o->data = xrealloc(o->data, 1 + o->maxlen);
1332 }
1333}
1334
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001335static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001336{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001337 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1338 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001339 o->data[o->length] = ch;
1340 o->length++;
1341 o->data[o->length] = '\0';
1342}
1343
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001344static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001345{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001346 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001347 memcpy(&o->data[o->length], str, len);
1348 o->length += len;
1349 o->data[o->length] = '\0';
1350}
1351
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001352#if !BB_MMU
1353static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001354{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001355 o_addblock(o, str, strlen(str));
1356}
1357#endif
1358
1359static void o_addstr_with_NUL(o_string *o, const char *str)
1360{
1361 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001362}
1363
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001364static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001365{
1366 while (len) {
1367 o_addchr(o, *str);
1368 if (*str++ == '\\'
1369 && (*str != '*' && *str != '?' && *str != '[')
1370 ) {
1371 o_addchr(o, '\\');
1372 }
1373 len--;
1374 }
1375}
1376
Eric Andersen25f27032001-04-26 23:22:31 +00001377/* My analysis of quoting semantics tells me that state information
1378 * is associated with a destination, not a source.
1379 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001380static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001381{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001382 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001383 char *found = strchr("*?[\\", ch);
1384 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001385 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001386 o_grow_by(o, sz);
1387 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001388 o->data[o->length] = '\\';
1389 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001390 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001391 o->data[o->length] = ch;
1392 o->length++;
1393 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001394}
1395
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001396static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001397{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001398 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001399 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001400 sz++;
1401 o->data[o->length] = '\\';
1402 o->length++;
1403 }
1404 o_grow_by(o, sz);
1405 o->data[o->length] = ch;
1406 o->length++;
1407 o->data[o->length] = '\0';
1408}
1409
1410static void o_addQstr(o_string *o, const char *str, int len)
1411{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001412 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001413 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001414 return;
1415 }
1416 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001417 char ch;
1418 int sz;
1419 int ordinary_cnt = strcspn(str, "*?[\\");
1420 if (ordinary_cnt > len) /* paranoia */
1421 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001422 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001423 if (ordinary_cnt == len)
1424 return;
1425 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001426 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001427
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001428 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001429 sz = 1;
1430 if (ch) { /* it is necessarily one of "*?[\\" */
1431 sz++;
1432 o->data[o->length] = '\\';
1433 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001434 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001435 o_grow_by(o, sz);
1436 o->data[o->length] = ch;
1437 o->length++;
1438 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001439 }
1440}
1441
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001442/* A special kind of o_string for $VAR and `cmd` expansion.
1443 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001444 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001445 * list[i] contains an INDEX (int!) into this string data.
1446 * It means that if list[] needs to grow, data needs to be moved higher up
1447 * but list[i]'s need not be modified.
1448 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001449 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001450 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1451 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001452#if DEBUG_EXPAND || DEBUG_GLOB
1453static void debug_print_list(const char *prefix, o_string *o, int n)
1454{
1455 char **list = (char**)o->data;
1456 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1457 int i = 0;
1458 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1459 prefix, list, n, string_start, o->length, o->maxlen);
1460 while (i < n) {
1461 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1462 o->data + (int)list[i] + string_start,
1463 o->data + (int)list[i] + string_start);
1464 i++;
1465 }
1466 if (n) {
1467 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001468 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001469 }
1470}
1471#else
1472#define debug_print_list(prefix, o, n) ((void)0)
1473#endif
1474
1475/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1476 * in list[n] so that it points past last stored byte so far.
1477 * It returns n+1. */
1478static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001479{
1480 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001481 int string_start;
1482 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001483
1484 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001485 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1486 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001487 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001488 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001489 /* list[n] points to string_start, make space for 16 more pointers */
1490 o->maxlen += 0x10 * sizeof(list[0]);
1491 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001492 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001493 memmove(list + n + 0x10, list + n, string_len);
1494 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001495 } else {
1496 debug_printf_list("list[%d]=%d string_start=%d\n",
1497 n, string_len, string_start);
1498 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001499 } else {
1500 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001501 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1502 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001503 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1504 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001505 o->has_empty_slot = 0;
1506 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001507 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001508 return n + 1;
1509}
1510
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001511/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001512static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001513{
1514 char **list = (char**)o->data;
1515 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1516
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001517 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001518}
1519
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001520/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001521 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001522static int o_glob(o_string *o, int n)
1523{
1524 glob_t globdata;
1525 int gr;
1526 char *pattern;
1527
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001528 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001529 if (!o->data)
1530 return o_save_ptr_helper(o, n);
1531 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001532 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001533 if (!glob_needed(pattern)) {
1534 literal:
1535 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001536 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001537 return o_save_ptr_helper(o, n);
1538 }
1539
1540 memset(&globdata, 0, sizeof(globdata));
1541 gr = glob(pattern, 0, NULL, &globdata);
1542 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1543 if (gr == GLOB_NOSPACE)
1544 bb_error_msg_and_die("out of memory during glob");
1545 if (gr == GLOB_NOMATCH) {
1546 globfree(&globdata);
1547 goto literal;
1548 }
1549 if (gr != 0) { /* GLOB_ABORTED ? */
1550//TODO: testcase for bad glob pattern behavior
1551 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1552 }
1553 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1554 char **argv = globdata.gl_pathv;
1555 o->length = pattern - o->data; /* "forget" pattern */
1556 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001557 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001558 n = o_save_ptr_helper(o, n);
1559 argv++;
1560 if (!*argv)
1561 break;
1562 }
1563 }
1564 globfree(&globdata);
1565 if (DEBUG_GLOB)
1566 debug_print_list("o_glob returning", o, n);
1567 return n;
1568}
1569
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001570/* If o->o_glob == 1, glob the string so far remembered.
1571 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001572static int o_save_ptr(o_string *o, int n)
1573{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001574 if (o->o_glob) { /* if globbing is requested */
1575 /* If o->has_empty_slot, list[n] was already globbed
1576 * (if it was requested back then when it was filled)
1577 * so don't do that again! */
1578 if (!o->has_empty_slot)
1579 return o_glob(o, n); /* o_save_ptr_helper is inside */
1580 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001581 return o_save_ptr_helper(o, n);
1582}
1583
1584/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001585static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001586{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001587 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001588 int string_start;
1589
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001590 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1591 if (DEBUG_EXPAND)
1592 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001593 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001594 list = (char**)o->data;
1595 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1596 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001597 while (n) {
1598 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001599 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001600 }
1601 return list;
1602}
1603
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001604
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001605/* Expansion can recurse */
1606#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001607static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001608#endif
1609static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001610#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001611#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001612 parse_stream_dquoted(dest, input, dquote_end)
1613#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001614static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001615 o_string *dest,
1616 struct in_str *input,
1617 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001618
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001619/* expand_strvec_to_strvec() takes a list of strings, expands
1620 * all variable references within and returns a pointer to
1621 * a list of expanded strings, possibly with larger number
1622 * of strings. (Think VAR="a b"; echo $VAR).
1623 * This new list is allocated as a single malloc block.
1624 * NULL-terminated list of char* pointers is at the beginning of it,
1625 * followed by strings themself.
1626 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001627
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001628/* Store given string, finalizing the word and starting new one whenever
1629 * we encounter IFS char(s). This is used for expanding variable values.
1630 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1631static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001632{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001633 while (1) {
1634 int word_len = strcspn(str, G.ifs);
1635 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001636 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001637 o_addQstr(output, str, word_len);
1638 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001639 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001640 str += word_len;
1641 }
1642 if (!*str) /* EOL - do not finalize word */
1643 break;
1644 o_addchr(output, '\0');
1645 debug_print_list("expand_on_ifs", output, n);
1646 n = o_save_ptr(output, n);
1647 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001648 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001649 debug_print_list("expand_on_ifs[1]", output, n);
1650 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001651}
1652
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001653/* Expand all variable references in given string, adding words to list[]
1654 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1655 * to be filled). This routine is extremely tricky: has to deal with
1656 * variables/parameters with whitespace, $* and $@, and constructs like
1657 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1658static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001659{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001660 /* or_mask is either 0 (normal case) or 0x80
1661 * (expansion of right-hand side of assignment == 1-element expand.
1662 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001663
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001664 char first_ch, ored_ch;
1665 int i;
1666 const char *val;
1667 char *p;
1668
1669 ored_ch = 0;
1670
1671 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1672 debug_print_list("expand_vars_to_list", output, n);
1673 n = o_save_ptr(output, n);
1674 debug_print_list("expand_vars_to_list[0]", output, n);
1675
1676 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1677#if ENABLE_HUSH_TICK
1678 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001679#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001680#if ENABLE_SH_MATH_SUPPORT
1681 char arith_buf[sizeof(arith_t)*3 + 2];
1682#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001683 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001684 debug_print_list("expand_vars_to_list[1]", output, n);
1685 arg = ++p;
1686 p = strchr(p, SPECIAL_VAR_SYMBOL);
1687
1688 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1689 /* "$@" is special. Even if quoted, it can still
1690 * expand to nothing (not even an empty string) */
1691 if ((first_ch & 0x7f) != '@')
1692 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001693
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001694 val = NULL;
1695 switch (first_ch & 0x7f) {
1696 /* Highest bit in first_ch indicates that var is double-quoted */
1697 case '$': /* pid */
1698 val = utoa(G.root_pid);
1699 break;
1700 case '!': /* bg pid */
1701 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1702 break;
1703 case '?': /* exitcode */
1704 val = utoa(G.last_return_code);
1705 break;
1706 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001707 if (arg[1] != SPECIAL_VAR_SYMBOL)
1708 /* actually, it's a ${#var} */
1709 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001710 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1711 break;
1712 case '*':
1713 case '@':
1714 i = 1;
1715 if (!G.global_argv[i])
1716 break;
1717 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1718 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001719 smallint sv = output->o_escape;
1720 /* unquoted var's contents should be globbed, so don't escape */
1721 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001722 while (G.global_argv[i]) {
1723 n = expand_on_ifs(output, n, G.global_argv[i]);
1724 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1725 if (G.global_argv[i++][0] && G.global_argv[i]) {
1726 /* this argv[] is not empty and not last:
1727 * put terminating NUL, start new word */
1728 o_addchr(output, '\0');
1729 debug_print_list("expand_vars_to_list[2]", output, n);
1730 n = o_save_ptr(output, n);
1731 debug_print_list("expand_vars_to_list[3]", output, n);
1732 }
1733 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001734 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001735 } else
1736 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1737 * and in this case should treat it like '$*' - see 'else...' below */
1738 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1739 while (1) {
1740 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1741 if (++i >= G.global_argc)
1742 break;
1743 o_addchr(output, '\0');
1744 debug_print_list("expand_vars_to_list[4]", output, n);
1745 n = o_save_ptr(output, n);
1746 }
1747 } else { /* quoted $*: add as one word */
1748 while (1) {
1749 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1750 if (!G.global_argv[++i])
1751 break;
1752 if (G.ifs[0])
1753 o_addchr(output, G.ifs[0]);
1754 }
1755 }
1756 break;
1757 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1758 /* "Empty variable", used to make "" etc to not disappear */
1759 arg++;
1760 ored_ch = 0x80;
1761 break;
1762#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001763 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001764 *p = '\0';
1765 arg++;
1766//TODO: can we just stuff it into "output" directly?
1767 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001768 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001769 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1770 val = subst_result.data;
1771 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001772#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001773#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001774 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001775 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001776 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001777 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001778 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001779
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001780 arg++; /* skip '+' */
1781 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001782 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001783
1784 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
1785 exp_str = arg;
1786 while (1) {
1787 unsigned char c = *exp_str++;
1788 if (c == '\0') {
1789 exp_str = NULL;
1790 goto skip_expand;
1791 }
1792 if (isdigit(c))
1793 continue;
1794 if (strchr(" \t+-*/%_", c) != NULL)
1795 continue;
1796 c |= 0x20; /* tolower */
1797 if (c >= 'a' && c <= 'z')
1798 continue;
1799 break;
1800 }
1801 /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */
1802 {
1803 struct in_str input;
1804 o_string dest = NULL_O_STRING;
1805
1806 setup_string_in_str(&input, arg);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001807 parse_stream_dquoted(NULL, &dest, &input, EOF);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001808 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1809 exp_str = expand_string_to_string(dest.data);
1810 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1811 o_free(&dest);
1812 }
1813 skip_expand:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001814 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001815 hooks.setvar = arith_set_local_var;
1816 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001817 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1818 free(exp_str);
1819
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001820 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001821 switch (errcode) {
1822 case -3: maybe_die("arith", "exponent less than 0"); break;
1823 case -2: maybe_die("arith", "divide by zero"); break;
1824 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001825 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001826 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001827 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001828 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001829 sprintf(arith_buf, arith_t_fmt, res);
1830 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001831 break;
1832 }
1833#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001834 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001835 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001836 bool exp_len = false;
1837 bool exp_null = false;
1838 char *var = arg;
1839 char exp_save = exp_save; /* for compiler */
1840 char exp_op = exp_op; /* for compiler */
1841 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001842 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001843
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001844 *p = '\0';
1845 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001846
1847 /* prepare for expansions */
1848 if (var[0] == '#') {
1849 /* handle length expansion ${#var} */
1850 exp_len = true;
1851 ++var;
1852 } else {
1853 /* maybe handle parameter expansion */
1854 exp_off = strcspn(var, ":-=+?");
1855 if (!var[exp_off])
1856 exp_off = 0;
1857 if (exp_off) {
1858 exp_save = var[exp_off];
1859 exp_null = exp_save == ':';
1860 exp_word = var + exp_off;
1861 if (exp_null) ++exp_word;
1862 exp_op = *exp_word++;
1863 var[exp_off] = '\0';
1864 }
1865 }
1866
1867 /* lookup the variable in question */
1868 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001869 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001870 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001871 if (i < G.global_argc)
1872 val = G.global_argv[i];
1873 /* else val remains NULL: $N with too big N */
1874 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001875 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001876
1877 /* handle any expansions */
1878 if (exp_len) {
1879 debug_printf_expand("expand: length of '%s' = ", val);
1880 val = utoa(val ? strlen(val) : 0);
1881 debug_printf_expand("%s\n", val);
1882 } else if (exp_off) {
1883 /* we need to do an expansion */
1884 int exp_test = (!val || (exp_null && !val[0]));
1885 if (exp_op == '+')
1886 exp_test = !exp_test;
1887 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1888 exp_null ? "true" : "false", exp_test);
1889 if (exp_test) {
1890 if (exp_op == '?')
1891 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1892 else
1893 val = exp_word;
1894
1895 if (exp_op == '=') {
1896 if (isdigit(var[0]) || var[0] == '#') {
1897 maybe_die(var, "special vars cannot assign in this way");
1898 val = NULL;
1899 } else {
1900 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1901 sprintf(new_var, "%s=%s", var, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001902 set_local_var(new_var, -1, 0);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001903 }
1904 }
1905 }
1906 var[exp_off] = exp_save;
1907 }
1908
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001909 arg[0] = first_ch;
1910#if ENABLE_HUSH_TICK
1911 store_val:
1912#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001913 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001914 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001916 /* unquoted var's contents should be globbed, so don't escape */
1917 smallint sv = output->o_escape;
1918 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001919 n = expand_on_ifs(output, n, val);
1920 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001921 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001922 }
1923 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001924 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001925 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001926 } /* default: */
1927 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001928 if (val) {
1929 o_addQstr(output, val, strlen(val));
1930 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001931 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001932 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001933 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001934
1935#if ENABLE_HUSH_TICK
1936 o_free(&subst_result);
1937#endif
1938 arg = ++p;
1939 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1940
1941 if (arg[0]) {
1942 debug_print_list("expand_vars_to_list[a]", output, n);
1943 /* this part is literal, and it was already pre-quoted
1944 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001945 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001946 debug_print_list("expand_vars_to_list[b]", output, n);
1947 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
1948 && !(ored_ch & 0x80) /* and all vars were not quoted. */
1949 ) {
1950 n--;
1951 /* allow to reuse list[n] later without re-growth */
1952 output->has_empty_slot = 1;
1953 } else {
1954 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00001955 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001956 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001957}
1958
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001960{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001961 int n;
1962 char **list;
1963 char **v;
1964 o_string output = NULL_O_STRING;
1965
1966 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001967 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001968 /* (unquoted $var will temporarily switch it off) */
1969 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001970 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001971
1972 n = 0;
1973 v = argv;
1974 while (*v) {
1975 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
1976 v++;
1977 }
1978 debug_print_list("expand_variables", &output, n);
1979
1980 /* output.data (malloced in one block) gets returned in "list" */
1981 list = o_finalize_list(&output, n);
1982 debug_print_strings("expand_variables[1]", list);
1983 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00001984}
1985
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001986static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00001987{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001988 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00001989}
1990
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001991/* Used for expansion of right hand of assignments */
1992/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
1993 * "v=/bin/c*" */
1994static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001995{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001996 char *argv[2], **list;
1997
1998 argv[0] = (char*)str;
1999 argv[1] = NULL;
2000 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2001 if (HUSH_DEBUG)
2002 if (!list[0] || list[1])
2003 bb_error_msg_and_die("BUG in varexp2");
2004 /* actually, just move string 2*sizeof(char*) bytes back */
2005 overlapping_strcpy((char*)list, list[0]);
2006 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2007 return (char*)list;
2008}
2009
2010/* Used for "eval" builtin */
2011static char* expand_strvec_to_string(char **argv)
2012{
2013 char **list;
2014
2015 list = expand_variables(argv, 0x80);
2016 /* Convert all NULs to spaces */
2017 if (list[0]) {
2018 int n = 1;
2019 while (list[n]) {
2020 if (HUSH_DEBUG)
2021 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2022 bb_error_msg_and_die("BUG in varexp3");
2023 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2024 n++;
2025 }
2026 }
2027 overlapping_strcpy((char*)list, list[0]);
2028 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2029 return (char*)list;
2030}
2031
2032static char **expand_assignments(char **argv, int count)
2033{
2034 int i;
2035 char **p = NULL;
2036 /* Expand assignments into one string each */
2037 for (i = 0; i < count; i++) {
2038 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2039 }
2040 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002041}
2042
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002043
Eric Andersen25f27032001-04-26 23:22:31 +00002044/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2045 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002046static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002047{
2048 int openfd, mode;
2049 struct redir_struct *redir;
2050
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002051 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002052 if (redir->dup == -1 && redir->rd_filename == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002053 /* something went wrong in the parse. Pretend it didn't happen */
2054 continue;
2055 }
Eric Andersen25f27032001-04-26 23:22:31 +00002056 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002057 char *p;
Denis Vlasenko55789c62008-06-18 16:30:42 +00002058 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002059//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002060 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002061 openfd = open_or_warn(p, mode);
2062 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002063 if (openfd < 0) {
2064 /* this could get lost if stderr has been redirected, but
2065 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002066 return 1;
2067 }
2068 } else {
2069 openfd = redir->dup;
2070 }
2071
2072 if (openfd != redir->fd) {
2073 if (squirrel && redir->fd < 3) {
2074 squirrel[redir->fd] = dup(redir->fd);
2075 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002076 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002077 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00002078 } else {
2079 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00002080 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002081 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002082 }
Eric Andersen25f27032001-04-26 23:22:31 +00002083 }
2084 }
2085 return 0;
2086}
2087
2088static void restore_redirects(int squirrel[])
2089{
2090 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002091 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002092 fd = squirrel[i];
2093 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002094 /* We simply die on error */
2095 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002096 }
2097 }
2098}
2099
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002100
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002101#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002102#define free_pipe_list(head, indent) free_pipe_list(head)
2103#define free_pipe(pi, indent) free_pipe(pi)
2104#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002105static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002106
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002107/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002108static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002109{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002110 char **p;
2111 struct command *command;
2112 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002113 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002114
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002115 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002116 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002117 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2118 for (i = 0; i < pi->num_cmds; i++) {
2119 command = &pi->cmds[i];
2120 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2121 if (command->argv) {
2122 for (a = 0, p = command->argv; *p; a++, p++) {
2123 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2124 }
2125 free_strings(command->argv);
2126 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002127 }
2128 /* not "else if": on syntax error, we may have both! */
2129 if (command->group) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002130 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002131 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002132 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002133 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002134 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002135#if !BB_MMU
2136 free(command->group_as_string);
2137 command->group_as_string = NULL;
2138#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002139 for (r = command->redirects; r; r = rnext) {
2140 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
2141 if (r->dup == -1) {
2142 /* guard against the case >$FOO, where foo is unset or blank */
2143 if (r->rd_filename) {
2144 debug_printf_clean(" %s\n", r->rd_filename);
2145 free(r->rd_filename);
2146 r->rd_filename = NULL;
2147 }
2148 } else {
2149 debug_printf_clean("&%d\n", r->dup);
2150 }
2151 rnext = r->next;
2152 free(r);
2153 }
2154 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002155 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002156 free(pi->cmds); /* children are an array, they get freed all at once */
2157 pi->cmds = NULL;
2158#if ENABLE_HUSH_JOB
2159 free(pi->cmdtext);
2160 pi->cmdtext = NULL;
2161#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002162}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002163
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002164static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002165{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002166 struct pipe *pi, *next;
2167
2168 for (pi = head; pi; pi = next) {
2169#if HAS_KEYWORDS
2170 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
2171#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002172 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002173 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2174 next = pi->next;
2175 /*pi->next = NULL;*/
2176 free(pi);
2177 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002178}
2179
2180
2181#if !BB_MMU
2182typedef struct nommu_save_t {
2183 char **new_env;
2184 char **old_env;
2185 char **argv;
2186} nommu_save_t;
2187#else
2188#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2189 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2190#define pseudo_exec(nommu_save, command, argv_expanded) \
2191 pseudo_exec(command, argv_expanded)
2192#endif
2193
Denis Vlasenko05743d72008-02-10 12:10:08 +00002194/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00002195 * Never returns.
2196 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002197 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002198 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002199static void pseudo_exec_argv(nommu_save_t *nommu_save,
2200 char **argv, int assignment_cnt,
2201 char **argv_expanded) NORETURN;
2202static void pseudo_exec_argv(nommu_save_t *nommu_save,
2203 char **argv, int assignment_cnt,
2204 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002205{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002206 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002207
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002208 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002209 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002210 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002211
Denis Vlasenko9504e442008-10-29 01:19:15 +00002212 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002213#if BB_MMU
2214 putenv_all(new_env);
2215 free(new_env); /* optional */
2216#else
2217 nommu_save->new_env = new_env;
2218 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002219#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002220 if (argv_expanded) {
2221 argv = argv_expanded;
2222 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002223 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002224#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002225 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002226#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002227 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002228
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002229 /* On NOMMU, we must never block!
2230 * Example: { sleep 99999 | read line } & echo Ok
2231 * read builtin will block on read syscall, leaving parent blocked
2232 * in vfork. Therefore we can't do this:
2233 */
2234#if BB_MMU
2235 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002236 * Depending on context, this might be redundant. But it's
2237 * easier to waste a few CPU cycles than it is to figure out
2238 * if this is one of those cases.
2239 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002240 {
2241 int rcode;
2242 const struct built_in_command *x;
2243 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2244 if (strcmp(argv[0], x->cmd) == 0) {
2245 debug_printf_exec("running builtin '%s'\n",
2246 argv[0]);
2247 rcode = x->function(argv);
2248 fflush(NULL);
2249 _exit(rcode);
2250 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002251 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002252 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002253#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002254
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002255#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002256 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002257 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002258 int a = find_applet_by_name(argv[0]);
2259 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002260#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002261 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002262 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002263 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002264 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002265#endif
2266 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002267 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002268 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2269 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002270 /* If they called chroot or otherwise made the binary no longer
2271 * executable, fall through */
2272 }
2273 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002274#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002275
2276 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002277 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002278 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002279 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002280 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002281}
2282
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002283#if BB_MMU
2284static void reset_traps_to_defaults(void)
2285{
2286 unsigned sig;
2287 int dirty;
2288
2289 if (!G.traps)
2290 return;
2291 dirty = 0;
2292 for (sig = 0; sig < NSIG; sig++) {
2293 if (!G.traps[sig])
2294 continue;
2295 free(G.traps[sig]);
2296 G.traps[sig] = NULL;
2297 /* There is no signal for 0 (EXIT) */
2298 if (sig == 0)
2299 continue;
2300 /* there was a trap handler, we are removing it
2301 * (if sig has non-DFL handling,
2302 * we don't need to do anything) */
2303 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2304 continue;
2305 sigdelset(&G.blocked_set, sig);
2306 dirty = 1;
2307 }
2308 if (dirty)
2309 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2310}
2311#define clean_up_after_re_execute() ((void)0)
2312
2313#else /* !BB_MMU */
2314
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002315static void re_execute_shell(const char *s) NORETURN;
2316static void re_execute_shell(const char *s)
2317{
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002318 struct variable *cur;
Denis Vlasenko30db43b2009-04-05 02:10:39 +00002319 char **argv, **pp, **pp2;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002320 unsigned cnt;
2321
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002322 /* 1:hush 2:-$<pid> 3:-!<pid> 4:-?<exitcode> 5:-D<depth> <vars...>
2323 * 6:-c 7:<cmd> <argN...> 8:NULL
Denis Vlasenko30db43b2009-04-05 02:10:39 +00002324 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002325 cnt = 8 + G.global_argc;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002326 for (cur = G.top_var; cur; cur = cur->next) {
2327 if (!cur->flg_export || cur->flg_read_only)
2328 cnt += 2;
2329 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002330 G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt);
2331 *pp++ = (char *) G.argv0_for_re_execing;
2332 *pp++ = xasprintf("-$%u", (unsigned) G.root_pid);
2333 *pp++ = xasprintf("-!%u", (unsigned) G.last_bg_pid);
2334 *pp++ = xasprintf("-?%u", (unsigned) G.last_return_code);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00002335#if ENABLE_HUSH_LOOPS
Denis Vlasenko16a0c742009-04-05 01:46:59 +00002336 *pp++ = xasprintf("-D%u", G.depth_of_loop);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00002337#endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002338 for (cur = G.top_var; cur; cur = cur->next) {
2339 if (cur->varstr == hush_version_str)
2340 continue;
2341 if (cur->flg_read_only) {
2342 *pp++ = (char *) "-R";
2343 *pp++ = cur->varstr;
2344 } else if (!cur->flg_export) {
2345 *pp++ = (char *) "-V";
2346 *pp++ = cur->varstr;
2347 }
2348 }
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002349//TODO: pass functions
2350 /* We can pass activated traps here. Say, -Tnn:trap_string
2351 *
2352 * However, POSIX says that subshells reset signals with traps
2353 * to SIG_DFL.
2354 * I tested bash-3.2 and it not only does that with true subshells
2355 * of the form ( list ), but with any forked children shells.
2356 * I set trap "echo W" WINCH; and then tried:
2357 *
2358 * { echo 1; sleep 20; echo 2; } &
2359 * while true; do echo 1; sleep 20; echo 2; break; done &
2360 * true | { echo 1; sleep 20; echo 2; } | cat
2361 *
2362 * In all these cases sending SIGWINCH to the child shell
2363 * did not run the trap. If I add trap "echo V" WINCH;
2364 * _inside_ group (just before echo 1), it works.
2365 *
2366 * I conclude it means we don't need to pass active traps here.
2367 * exec syscall below resets them to SIG_DFL for us.
2368 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002369 *pp++ = (char *) "-c";
2370 *pp++ = (char *) s;
Denis Vlasenko30db43b2009-04-05 02:10:39 +00002371 pp2 = G.global_argv;
2372 while (*pp2)
2373 *pp++ = *pp2++;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00002374 /* *pp = NULL; - is already there */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002375
2376 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002377 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002378 execv(bb_busybox_exec_path, G.argv_from_re_execing);
2379 /* Fallback. Useful for init=/bin/hush usage etc */
2380 if (G.argv0_for_re_execing[0] == '/')
2381 execv(G.argv0_for_re_execing, G.argv_from_re_execing);
2382 xfunc_error_retval = 127;
2383 bb_error_msg_and_die("can't re-execute the shell");
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002384}
2385
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002386static void clean_up_after_re_execute(void)
2387{
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002388 char **pp = G.argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002389 if (pp) {
2390 /* Must match re_execute_shell's allocations */
2391 free(pp[1]);
2392 free(pp[2]);
2393 free(pp[3]);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002394#if ENABLE_HUSH_LOOPS
2395 free(pp[4]);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00002396#endif
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002397 free(pp);
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002398 G.argv_from_re_execing = NULL;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002399 }
2400}
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002401#endif
2402
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002403static int run_list(struct pipe *pi);
2404
Denis Vlasenko05743d72008-02-10 12:10:08 +00002405/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00002406 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002407static void pseudo_exec(nommu_save_t *nommu_save,
2408 struct command *command,
2409 char **argv_expanded) NORETURN;
2410static void pseudo_exec(nommu_save_t *nommu_save,
2411 struct command *command,
2412 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002413{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002414 if (command->argv) {
2415 pseudo_exec_argv(nommu_save, command->argv,
2416 command->assignment_cnt, argv_expanded);
2417 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002418
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002419 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002420 /* Cases when we are here:
2421 * ( list )
2422 * { list } &
2423 * ... | ( list ) | ...
2424 * ... | { list } | ...
2425 */
2426#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002427 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002428 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002429 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002430 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002431 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002432 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002433 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002434#else
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002435 re_execute_shell(command->group_as_string);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002436#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002437 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002438
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002439 /* Case when we are here: ... | >file */
2440 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002441 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002442}
2443
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002444#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002445static const char *get_cmdtext(struct pipe *pi)
2446{
2447 char **argv;
2448 char *p;
2449 int len;
2450
2451 /* This is subtle. ->cmdtext is created only on first backgrounding.
2452 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002453 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002454 if (pi->cmdtext)
2455 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002456 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002457 if (!argv || !argv[0]) {
2458 pi->cmdtext = xzalloc(1);
2459 return pi->cmdtext;
2460 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002461
2462 len = 0;
2463 do len += strlen(*argv) + 1; while (*++argv);
2464 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002465 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002466 do {
2467 len = strlen(*argv);
2468 memcpy(p, *argv, len);
2469 p += len;
2470 *p++ = ' ';
2471 } while (*++argv);
2472 p[-1] = '\0';
2473 return pi->cmdtext;
2474}
2475
Eric Andersenbafd94f2001-05-02 16:11:59 +00002476static void insert_bg_job(struct pipe *pi)
2477{
2478 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002479 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002480
2481 /* Linear search for the ID of the job to use */
2482 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002483 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002484 if (thejob->jobid >= pi->jobid)
2485 pi->jobid = thejob->jobid + 1;
2486
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002487 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002488 if (!G.job_list) {
2489 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002490 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002491 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002492 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002493 thejob->next = xmalloc(sizeof(*thejob));
2494 thejob = thejob->next;
2495 }
2496
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002497 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002498 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002499 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2500 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2501 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002502// TODO: do we really need to have so many fields which are just dead weight
2503// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002504 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002505 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002506 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002507 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002508 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002509
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002510 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002511 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002512 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002513 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002514 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002515 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002516}
2517
Eric Andersenbafd94f2001-05-02 16:11:59 +00002518static void remove_bg_job(struct pipe *pi)
2519{
2520 struct pipe *prev_pipe;
2521
Denis Vlasenko87a86552008-07-29 19:43:10 +00002522 if (pi == G.job_list) {
2523 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002524 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002525 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002526 while (prev_pipe->next != pi)
2527 prev_pipe = prev_pipe->next;
2528 prev_pipe->next = pi->next;
2529 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002530 if (G.job_list)
2531 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002532 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002533 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002534}
Eric Andersen028b65b2001-06-28 01:10:11 +00002535
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002536/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002537static void delete_finished_bg_job(struct pipe *pi)
2538{
2539 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002540 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002541 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002542 free(pi);
2543}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002544#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002545
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002546/* Check to see if any processes have exited -- if they
2547 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002548static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002549{
Eric Andersenc798b072001-06-22 06:23:03 +00002550 int attributes;
2551 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002552#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002553 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002554#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002555 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002556 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002557
Denis Vlasenkod5762932009-03-31 11:22:57 +00002558 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2559
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002560 errno = 0;
2561// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2562// /* avoid doing syscall, nothing there anyway */
2563// return rcode;
2564
Eric Andersenc798b072001-06-22 06:23:03 +00002565 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002566 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002567 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002568
Denis Vlasenko1359da62007-04-21 23:27:30 +00002569/* Do we do this right?
2570 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002571 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002572 * [3]+ Stopped sleep 20 | false
2573 * bash-3.00# echo $?
2574 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2575 */
2576
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002577//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2578//are stopped. Testcase: "cat | cat" in a script (not on command line)
2579// + killall -STOP cat
2580
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002581 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002582 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002583 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002584 int dead;
2585
2586// i = G.count_SIGCHLD;
2587 childpid = waitpid(-1, &status, attributes);
2588 if (childpid <= 0) {
2589 if (childpid && errno != ECHILD)
2590 bb_perror_msg("waitpid");
2591// else /* Until next SIGCHLD, waitpid's are useless */
2592// G.handled_SIGCHLD = i;
2593 break;
2594 }
2595 dead = WIFEXITED(status) || WIFSIGNALED(status);
2596
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002597#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002598 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002599 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002600 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2601 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002602 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002603 childpid, WTERMSIG(status), WEXITSTATUS(status));
2604 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002605 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002606 childpid, WEXITSTATUS(status));
2607#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002608 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002609 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002610 for (i = 0; i < fg_pipe->num_cmds; i++) {
2611 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2612 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002613 continue;
2614 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2615 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002616 fg_pipe->cmds[i].pid = 0;
2617 fg_pipe->alive_cmds--;
2618 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002619 /* last process gives overall exitstatus */
2620 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002621 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002622 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002623 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002624 fg_pipe->cmds[i].is_stopped = 1;
2625 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002626 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002627 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2628 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2629 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002630 /* All processes in fg pipe have exited/stopped */
2631#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002632 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002633 insert_bg_job(fg_pipe);
2634#endif
2635 return rcode;
2636 }
2637 /* There are still running processes in the fg pipe */
2638 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002639 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002640 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002641 }
2642
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002643#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002644 /* We asked to wait for bg or orphaned children */
2645 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002646 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002647 for (i = 0; i < pi->num_cmds; i++) {
2648 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002649 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002650 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002651 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002652 /* Happens when shell is used as init process (init=/bin/sh) */
2653 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002654 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002655
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002656 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002657 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002658 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002659 pi->cmds[i].pid = 0;
2660 pi->alive_cmds--;
2661 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002662 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002663 printf(JOB_STATUS_FORMAT, pi->jobid,
2664 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002665 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002666 }
2667 } else {
2668 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002669 pi->cmds[i].is_stopped = 1;
2670 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002671 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002672#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002673 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002674
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002675 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002676}
2677
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002678#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002679static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2680{
2681 pid_t p;
2682 int rcode = checkjobs(fg_pipe);
2683 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002684 p = getpgid(0); /* pgid of our process */
2685 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002686 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002687 return rcode;
2688}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002689#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002690
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002691/* Start all the jobs, but don't wait for anything to finish.
2692 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002693 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002694 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002695 * to finish to determine the exit status of the pipe. If the pipe
2696 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002697 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002698 * return value.
2699 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002700 * Returns -1 only if started some children. IOW: we have to
2701 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002702 *
2703 * The only case when we do not need to [v]fork is when the pipe
2704 * is single, non-backgrounded, non-subshell command. Examples:
2705 * cmd ; ... { list } ; ...
2706 * cmd && ... { list } && ...
2707 * cmd || ... { list } || ...
2708 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2709 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002710 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002711 *
2712 * Cases when we must fork:
2713 * non-single: cmd | cmd
2714 * backgrounded: cmd & { list } &
2715 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002716 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002717static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002718{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002719 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002720 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002721 int nextin;
2722 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002723 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002724 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002725 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002726 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002727 /* it is not always needed, but we aim to smaller code */
2728 int squirrel[] = { -1, -1, -1 };
2729 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002730
Denis Vlasenko552433b2009-04-04 19:29:21 +00002731 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002732
Denis Vlasenko552433b2009-04-04 19:29:21 +00002733 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002734 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002735 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002736 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002737
Denis Vlasenko552433b2009-04-04 19:29:21 +00002738 if (pi->num_cmds != 1
2739 || pi->followup == PIPE_BG
2740 || command->grp_type == GRP_SUBSHELL
2741 ) {
2742 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002743 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002744
Denis Vlasenko552433b2009-04-04 19:29:21 +00002745 pi->alive_cmds = 1;
2746
2747 debug_printf_exec(": group:%p argv:'%s'\n",
2748 command->group, command->argv ? command->argv[0] : "NONE");
2749
2750 if (command->group) {
2751#if ENABLE_HUSH_FUNCTIONS
2752 if (command->grp_type == GRP_FUNCTION) {
2753 /* func () { list } */
2754 bb_error_msg("here we ought to remember function definition, and go on");
2755 return EXIT_SUCCESS;
2756 }
2757#endif
2758 /* { list } */
2759 debug_printf("non-subshell group\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002760 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002761 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002762 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002763 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002764 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002765 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002766 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002767 }
2768
Denis Vlasenko552433b2009-04-04 19:29:21 +00002769 argv = command->argv ? command->argv : (char **) &null_ptr;
2770 {
2771 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002772 char **new_env = NULL;
2773 char **old_env = NULL;
2774
Denis Vlasenko552433b2009-04-04 19:29:21 +00002775 if (argv[command->assignment_cnt] == NULL) {
2776 /* Assignments, but no command */
2777 /* Ensure redirects take effect. Try "a=t >file" */
2778 setup_redirects(command, squirrel);
2779 restore_redirects(squirrel);
2780 /* Set shell variables */
2781 while (*argv) {
2782 p = expand_string_to_string(*argv);
2783 debug_printf_exec("set shell var:'%s'->'%s'\n",
2784 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002785 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002786 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00002787 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00002788 /* Do we need to flag set_local_var() errors?
2789 * "assignment to readonly var" and "putenv error"
2790 */
2791 return EXIT_SUCCESS;
Eric Andersen78a7c992001-05-15 16:30:25 +00002792 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002793
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002794 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00002795 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002796
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002797 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002798 if (strcmp(argv_expanded[0], x->cmd) != 0)
2799 continue;
2800 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2801 debug_printf("exec with redirects only\n");
2802 setup_redirects(command, NULL);
2803 rcode = EXIT_SUCCESS;
2804 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002805 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002806 debug_printf("builtin inline %s\n", argv_expanded[0]);
2807 /* XXX setup_redirects acts on file descriptors, not FILEs.
2808 * This is perfect for work that comes after exec().
2809 * Is it really safe for inline use? Experimentally,
2810 * things seem to work with glibc. */
2811 setup_redirects(command, squirrel);
2812 new_env = expand_assignments(argv, command->assignment_cnt);
2813 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002814 debug_printf_exec(": builtin '%s' '%s'...\n",
2815 x->cmd, argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002816 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002817#if ENABLE_FEATURE_SH_STANDALONE
2818 clean_up_and_ret:
2819#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002820 restore_redirects(squirrel);
2821 free_strings_and_unsetenv(new_env, 1);
2822 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002823 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002824 clean_up_and_ret1:
2825 free(argv_expanded);
2826 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2827 debug_printf_exec("run_pipe return %d\n", rcode);
2828 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002829 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002830#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002831 i = find_applet_by_name(argv_expanded[0]);
2832 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2833 setup_redirects(command, squirrel);
2834 save_nofork_data(&G.nofork_save);
2835 new_env = expand_assignments(argv, command->assignment_cnt);
2836 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002837 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2838 argv_expanded[0], argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002839 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2840 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002841 }
2842#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00002843 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00002844 }
2845
Denis Vlasenko552433b2009-04-04 19:29:21 +00002846 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002847 /* NB: argv_expanded may already be created, and that
2848 * might include `cmd` runs! Do not rerun it! We *must*
2849 * use argv_expanded if it's non-NULL */
2850
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002851 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002852 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002853 nextin = 0;
2854
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002855 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002856#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002857 volatile nommu_save_t nommu_save;
2858 nommu_save.new_env = NULL;
2859 nommu_save.old_env = NULL;
2860 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002861#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002862 command = &(pi->cmds[i]);
2863 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002864 debug_printf_exec(": pipe member '%s' '%s'...\n",
2865 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002866 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002867 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00002868 }
Eric Andersen25f27032001-04-26 23:22:31 +00002869
2870 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002871 pipefds[0] = 0;
2872 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002873 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002874 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002875
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002876 command->pid = BB_MMU ? fork() : vfork();
2877 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002878#if ENABLE_HUSH_JOB
Denis Vlasenkof9375282009-04-05 19:13:39 +00002879 die_sleep = 0; /* do not restore tty pgrp on xfunc death */
Denis Vlasenkod5762932009-03-31 11:22:57 +00002880
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002881 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002882 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002883 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002884 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002885 pgrp = pi->pgrp;
2886 if (pgrp < 0) /* true for 1st process only */
2887 pgrp = getpid();
2888 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002889 /* We do it in *every* child, not just first,
2890 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002891 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002892 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002893 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002894#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00002895 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002896 xmove_fd(pipefds[1], 1); /* write end */
2897 if (pipefds[0] > 1)
2898 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00002899 /* Like bash, explicit redirects override pipes,
2900 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002901 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002902
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002903 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002904 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
2905
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002906 /* Stores to nommu_save list of env vars putenv'ed
2907 * (NOMMU, on MMU we don't need that) */
2908 /* cast away volatility... */
2909 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002910 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00002911 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002912
Denis Vlasenkof9375282009-04-05 19:13:39 +00002913 /* parent or error */
2914#if ENABLE_HUSH_JOB
2915 die_sleep = -1; /* restore tty pgrp on xfunc death */
2916#endif
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002917#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002918 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00002919 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002920 free(nommu_save.argv);
2921 free_strings_and_unsetenv(nommu_save.new_env, 1);
2922 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002923#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002924 free(argv_expanded);
2925 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002926 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002927 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00002928 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002929 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002930 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002931#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002932 /* Second and next children need to know pid of first one */
2933 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002934 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002935#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002936 }
Eric Andersen25f27032001-04-26 23:22:31 +00002937
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002938 if (i)
2939 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002940 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002941 close(pipefds[1]); /* write end */
2942 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00002943 nextin = pipefds[0];
2944 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002945
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002946 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002947 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2948 return 1;
2949 }
2950
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002951 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00002952 return -1;
2953}
2954
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002955#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002956static void debug_print_tree(struct pipe *pi, int lvl)
2957{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002958 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002959 [PIPE_SEQ] = "SEQ",
2960 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002961 [PIPE_OR ] = "OR" ,
2962 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002963 };
2964 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002965 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002966#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002967 [RES_IF ] = "IF" ,
2968 [RES_THEN ] = "THEN" ,
2969 [RES_ELIF ] = "ELIF" ,
2970 [RES_ELSE ] = "ELSE" ,
2971 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002972#endif
2973#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002974 [RES_FOR ] = "FOR" ,
2975 [RES_WHILE] = "WHILE",
2976 [RES_UNTIL] = "UNTIL",
2977 [RES_DO ] = "DO" ,
2978 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002979#endif
2980#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002981 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002982#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002983#if ENABLE_HUSH_CASE
2984 [RES_CASE ] = "CASE" ,
2985 [RES_MATCH] = "MATCH",
2986 [RES_CASEI] = "CASEI",
2987 [RES_ESAC ] = "ESAC" ,
2988#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00002989 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002990 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002991 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002992 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002993 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00002994 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002995#if ENABLE_HUSH_FUNCTIONS
2996 "func()",
2997#endif
2998 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002999
3000 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003001
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003002 pin = 0;
3003 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003004 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3005 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003006 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003007 while (prn < pi->num_cmds) {
3008 struct command *command = &pi->cmds[prn];
3009 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003010
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003011 fprintf(stderr, "%*s prog %d assignment_cnt:%d",
3012 lvl*2, "", prn,
3013 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003014 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003015 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003016 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003017 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003018 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003019 prn++;
3020 continue;
3021 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003022 if (argv) while (*argv) {
3023 fprintf(stderr, " '%s'", *argv);
3024 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003025 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003026 fprintf(stderr, "\n");
3027 prn++;
3028 }
3029 pi = pi->next;
3030 pin++;
3031 }
3032}
3033#endif
3034
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003035/* NB: called by pseudo_exec, and therefore must not modify any
3036 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003037static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003038{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003039#if ENABLE_HUSH_CASE
3040 char *case_word = NULL;
3041#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003042#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003043 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003044 char *for_varname = NULL;
3045 char **for_lcur = NULL;
3046 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003047#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003048 smallint flag_skip = 1;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003049 smalluint rcode = 0; /* probably just for compiler */
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003050#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003051 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003052#else
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003053 enum { cond_code = 0, };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003054#endif
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003055 /*enum reserved_style*/ smallint rword = RES_NONE;
3056 /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003057
Denis Vlasenko87a86552008-07-29 19:43:10 +00003058 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003059
Denis Vlasenko06810332007-05-21 23:30:54 +00003060#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003061 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003062 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3063 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003064 continue;
3065 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003066 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003067 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003068 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003069 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003070 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003071 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003072 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003073 continue;
3074 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003075 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3076 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003077 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003078 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003079 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003080 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003081 }
3082 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003083#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003084
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003085 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003086 * in order to return, no direct "return" statements please.
3087 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003088
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003089////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003090
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003091#if ENABLE_HUSH_JOB
3092 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3093 * We are saving state before entering outermost list ("while...done")
3094 * so that ctrl-Z will correctly background _entire_ outermost list,
3095 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003096 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003097 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003098 /* ctrl-Z forked and we are parent; or ctrl-C.
3099 * Sighandler has longjmped us here */
3100 signal(SIGINT, SIG_IGN);
3101 signal(SIGTSTP, SIG_IGN);
3102 /* Restore level (we can be coming from deep inside
3103 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003104 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003105#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003106 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003107 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003108 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003109 }
3110#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003111//// if (G.ctrl_z_flag) {
3112//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3113//// * Remember this child as background job */
3114//// insert_bg_job(pi);
3115//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003116 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003117 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003118//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003119 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003120 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003121 rcode = 0;
3122 goto ret;
3123 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003124//// /* ctrl-Z handler will store pid etc in pi */
3125//// G.toplevel_list = pi;
3126//// G.ctrl_z_flag = 0;
3127////#if ENABLE_FEATURE_SH_STANDALONE
3128//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
3129////#endif
3130//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3131//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003132 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003133#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003134
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003135 /* Go through list of pipes, (maybe) executing them. */
3136 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003137 if (G.flag_SIGINT)
3138 break;
3139
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003140 IF_HAS_KEYWORDS(rword = pi->res_word;)
3141 IF_HAS_NO_KEYWORDS(rword = RES_NONE;)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003142 debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n",
3143 rword, cond_code, skip_more_for_this_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003144#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003145 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003146 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003147 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003148 /* start of a loop: remember where loop starts */
3149 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003150 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003151 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003152#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003153 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003154 if (pi->followup == PIPE_SEQ)
3155 flag_skip = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003156 /* it is "<false> && CMD" or "<true> || CMD"
3157 * and we should not execute CMD */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003158 continue;
3159 }
3160 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003161 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00003162#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003163 if (cond_code) {
3164 if (rword == RES_THEN) {
3165 /* "if <false> THEN cmd": skip cmd */
3166 continue;
3167 }
3168 } else {
3169 if (rword == RES_ELSE || rword == RES_ELIF) {
3170 /* "if <true> then ... ELSE/ELIF cmd":
3171 * skip cmd and all following ones */
3172 break;
3173 }
3174 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003175#endif
3176#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003177 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003178 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003179 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003180
3181 static const char encoded_dollar_at[] ALIGN1 = {
3182 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3183 }; /* encoded representation of "$@" */
3184 static const char *const encoded_dollar_at_argv[] = {
3185 encoded_dollar_at, NULL
3186 }; /* argv list with one element: "$@" */
3187 char **vals;
3188
3189 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003190 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003191 /* if no variable values after "in" we skip "for" */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003192 if (!pi->next->cmds[0].argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003193 break;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003194 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003195 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003196 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003197 debug_print_strings("for_list made from", vals);
3198 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003199 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003200 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003201 for_varname = pi->cmds[0].argv[0];
3202 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003203 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003204 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003205 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003206 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003207 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003208 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003209 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003210 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003211 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003212 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003213 /* insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003214//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003215 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3216 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003217 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003218 if (rword == RES_IN) {
3219 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3220 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003221 if (rword == RES_DONE) {
3222 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003223 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003224#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003225#if ENABLE_HUSH_CASE
3226 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003227 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003228 continue;
3229 }
3230 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003231 char **argv;
3232
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003233 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3234 break;
3235 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003236 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003237 while (*argv) {
3238 char *pattern = expand_string_to_string(*argv);
3239 /* TODO: which FNM_xxx flags to use? */
3240 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3241 free(pattern);
3242 if (cond_code == 0) { /* match! we will execute this branch */
3243 free(case_word); /* make future "word)" stop */
3244 case_word = NULL;
3245 break;
3246 }
3247 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003248 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003249 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003250 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003251 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003252 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003253 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003254 }
3255#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003256 /* Just pressing <enter> in shell should check for jobs.
3257 * OTOH, in non-interactive shell this is useless
3258 * and only leads to extra job checks */
3259 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003260 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003261 goto check_jobs_and_continue;
3262 continue;
3263 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003264
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003265 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003266 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003267 * after run_pipe() to collect any background children,
3268 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003269 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003270 {
3271 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003272#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003273 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003274#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003275 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3276 if (r != -1) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003277 /* we only ran a builtin: rcode is already known
3278 * and we don't need to wait for anything. */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003279 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003280#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003281 /* was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003282 if (G.flag_break_continue) {
3283 smallint fbc = G.flag_break_continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003284 /* we might fall into outer *loop*,
3285 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003286 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003287 G.depth_break_continue--;
3288 if (G.depth_break_continue == 0)
3289 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003290 /* else: e.g. "continue 2" should *break* once, *then* continue */
3291 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003292 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003293 goto check_jobs_and_break;
3294 /* "continue": simulate end of loop */
3295 rword = RES_DONE;
3296 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003297 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003298#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003299 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003300 /* what does bash do with attempts to background builtins? */
3301 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003302 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3303 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003304 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003305#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003306 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003307 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003308#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003309 rcode = 0; /* EXIT_SUCCESS */
3310 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003311#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003312 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003313 /* waits for completion, then fg's main shell */
3314 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003315 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003316 debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode);
3317 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003318#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003319 { /* this one just waits for completion */
3320 rcode = checkjobs(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003321 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003322 debug_printf_exec(": checkjobs returned %d\n", rcode);
3323 }
Eric Andersen25f27032001-04-26 23:22:31 +00003324 }
3325 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003326 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko87a86552008-07-29 19:43:10 +00003327 G.last_return_code = rcode;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003328
3329 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003330#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003331 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003332 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003333#endif
3334#if ENABLE_HUSH_LOOPS
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003335 if (rword == RES_WHILE) {
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003336 if (rcode) {
3337 rcode = 0; /* "while false; do...done" - exitcode 0 */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003338 goto check_jobs_and_break;
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003339 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003340 }
3341 if (rword == RES_UNTIL) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003342 if (!rcode) {
3343 check_jobs_and_break:
3344 checkjobs(NULL);
3345 break;
3346 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003347 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003348#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003349 if ((rcode == 0 && pi->followup == PIPE_OR)
3350 || (rcode != 0 && pi->followup == PIPE_AND)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003351 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003352 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003353 }
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003354
3355 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003356 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003357 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003358
3359#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003360//// if (G.ctrl_z_flag) {
3361//// /* ctrl-Z forked somewhere in the past, we are the child,
3362//// * and now we completed running the list. Exit. */
3363//////TODO: _exit?
3364//// exit(rcode);
3365//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003366 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003367 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003368//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003369//// signal(SIGTSTP, SIG_IGN);
3370//// signal(SIGINT, SIG_IGN);
3371//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003372#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003373 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003374#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003375 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003376 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003377 free(for_list);
3378#endif
3379#if ENABLE_HUSH_CASE
3380 free(case_word);
3381#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003382 return rcode;
3383}
3384
Eric Andersen25f27032001-04-26 23:22:31 +00003385/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003386static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003387{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003388 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003389 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003390 if (!G.fake_mode) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003391 debug_printf_exec(": run_list with %d members\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003392 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003393 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003394 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003395 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003396 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003397 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003398 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003399 return rcode;
3400}
3401
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003402
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003403/* Peek ahead in the in_str to find out if we have a "&n" construct,
3404 * as in "2>&1", that represents duplicating a file descriptor.
3405 * Return either -2 (syntax error), -1 (no &), or the number found.
3406 */
3407static int redirect_dup_num(struct in_str *input)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003408{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003409 int ch, d = 0, ok = 0;
3410 ch = i_peek(input);
3411 if (ch != '&') return -1;
3412
3413 i_getch(input); /* get the & */
3414 ch = i_peek(input);
3415 if (ch == '-') {
3416 i_getch(input);
3417 return -3; /* "-" represents "close me" */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003418 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003419 while (isdigit(ch)) {
3420 d = d*10 + (ch-'0');
3421 ok = 1;
3422 i_getch(input);
3423 ch = i_peek(input);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003424 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003425 if (ok) return d;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003426
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003427 bb_error_msg("ambiguous redirect");
3428 return -2;
Eric Andersen78a7c992001-05-15 16:30:25 +00003429}
3430
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003431/* The src parameter allows us to peek forward to a possible &n syntax
Eric Andersen25f27032001-04-26 23:22:31 +00003432 * for file descriptor duplication, e.g., "2>&1".
3433 * Return code is 0 normally, 1 if a syntax error is detected in src.
3434 * Resource errors (in xmalloc) cause the process to exit */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003435static int setup_redirect(struct parse_context *ctx,
3436 int fd,
3437 redir_type style,
3438 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003439{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003440 struct command *command = ctx->command;
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003441 struct redir_struct *redir;
3442 struct redir_struct **redirp;
3443 int dup_num;
3444
3445 /* Check for a '2>&1' type redirect */
3446 dup_num = redirect_dup_num(input);
3447 if (dup_num == -2)
3448 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00003449
3450 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003451 redirp = &command->redirects;
3452 while ((redir = *redirp) != NULL) {
3453 redirp = &(redir->next);
Eric Andersen25f27032001-04-26 23:22:31 +00003454 }
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003455 *redirp = redir = xzalloc(sizeof(*redir));
Denis Vlasenkoff097622007-10-01 10:00:45 +00003456 /* redir->next = NULL; */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003457 /* redir->rd_filename = NULL; */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003458 redir->rd_type = style;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003459 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00003460
3461 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
3462
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003463 redir->dup = dup_num;
3464 if (dup_num != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00003465 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00003466 * is legit; I postpone that to "run time"
3467 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00003468 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
3469 } else {
3470 /* We do _not_ try to open the file that src points to,
3471 * since we need to return and let src be expanded first.
3472 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00003473 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00003474 ctx->pending_redirect = redir;
3475 }
3476 return 0;
3477}
3478
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003479
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003480static struct pipe *new_pipe(void)
3481{
Eric Andersen25f27032001-04-26 23:22:31 +00003482 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003483 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003484 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003485 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003486 return pi;
3487}
3488
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003489/* Command (member of a pipe) is complete. The only possible error here
3490 * is out of memory, in which case xmalloc exits. */
3491static int done_command(struct parse_context *ctx)
3492{
3493 /* The command is really already in the pipe structure, so
3494 * advance the pipe counter and make a new, null command. */
3495 struct pipe *pi = ctx->pipe;
3496 struct command *command = ctx->command;
3497
3498 if (command) {
3499 if (command->group == NULL
3500 && command->argv == NULL
3501 && command->redirects == NULL
3502 ) {
3503 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
3504 return pi->num_cmds;
3505 }
3506 pi->num_cmds++;
3507 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
3508 } else {
3509 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3510 }
3511
3512 /* Only real trickiness here is that the uncommitted
3513 * command structure is not counted in pi->num_cmds. */
3514 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3515 command = &pi->cmds[pi->num_cmds];
3516 memset(command, 0, sizeof(*command));
3517
3518 ctx->command = command;
3519 /* but ctx->pipe and ctx->list_head remain unchanged */
3520
3521 return pi->num_cmds; /* used only for 0/nonzero check */
3522}
3523
3524static void done_pipe(struct parse_context *ctx, pipe_style type)
3525{
3526 int not_null;
3527
3528 debug_printf_parse("done_pipe entered, followup %d\n", type);
3529 /* Close previous command */
3530 not_null = done_command(ctx);
3531 ctx->pipe->followup = type;
3532 IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;)
3533 IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;)
3534 IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;)
3535
3536 /* Without this check, even just <enter> on command line generates
3537 * tree of three NOPs (!). Which is harmless but annoying.
3538 * IOW: it is safe to do it unconditionally.
3539 * RES_NONE case is for "for a in; do ..." (empty IN set)
3540 * to work, possibly other cases too. */
3541 if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) {
3542 struct pipe *new_p;
3543 debug_printf_parse("done_pipe: adding new pipe: "
3544 "not_null:%d ctx->ctx_res_w:%d\n",
3545 not_null, ctx->ctx_res_w);
3546 new_p = new_pipe();
3547 ctx->pipe->next = new_p;
3548 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003549 /* RES_THEN, RES_DO etc are "sticky" -
3550 * they remain set for commands inside if/while.
3551 * This is used to control execution.
3552 * RES_FOR and RES_IN are NOT sticky (needed to support
3553 * cases where variable or value happens to match a keyword):
3554 */
3555#if ENABLE_HUSH_LOOPS
3556 if (ctx->ctx_res_w == RES_FOR
3557 || ctx->ctx_res_w == RES_IN)
3558 ctx->ctx_res_w = RES_NONE;
3559#endif
3560#if ENABLE_HUSH_CASE
3561 if (ctx->ctx_res_w == RES_MATCH)
3562 ctx->ctx_res_w = RES_CASEI;
3563#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003564 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003565 /* Create the memory for command, roughly:
3566 * ctx->pipe->cmds = new struct command;
3567 * ctx->command = &ctx->pipe->cmds[0];
3568 */
3569 done_command(ctx);
3570 }
3571 debug_printf_parse("done_pipe return\n");
3572}
3573
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003574static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003575{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003576 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003577 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003578 /* Create the memory for command, roughly:
3579 * ctx->pipe->cmds = new struct command;
3580 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003581 */
3582 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003583}
3584
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003585
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003586/* If a reserved word is found and processed, parse context is modified
3587 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003588 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003589#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003590struct reserved_combo {
3591 char literal[6];
3592 unsigned char res;
3593 unsigned char assignment_flag;
3594 int flag;
3595};
3596enum {
3597 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003598#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003599 FLAG_IF = (1 << RES_IF ),
3600 FLAG_THEN = (1 << RES_THEN ),
3601 FLAG_ELIF = (1 << RES_ELIF ),
3602 FLAG_ELSE = (1 << RES_ELSE ),
3603 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003604#endif
3605#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003606 FLAG_FOR = (1 << RES_FOR ),
3607 FLAG_WHILE = (1 << RES_WHILE),
3608 FLAG_UNTIL = (1 << RES_UNTIL),
3609 FLAG_DO = (1 << RES_DO ),
3610 FLAG_DONE = (1 << RES_DONE ),
3611 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003612#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003613#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003614 FLAG_MATCH = (1 << RES_MATCH),
3615 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003616#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003617 FLAG_START = (1 << RES_XXXX ),
3618};
3619
3620static const struct reserved_combo* match_reserved_word(o_string *word)
3621{
Eric Andersen25f27032001-04-26 23:22:31 +00003622 /* Mostly a list of accepted follow-up reserved words.
3623 * FLAG_END means we are done with the sequence, and are ready
3624 * to turn the compound list into a command.
3625 * FLAG_START means the word must start a new compound list.
3626 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003627 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003628#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003629 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3630 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3631 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3632 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3633 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3634 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003635#endif
3636#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003637 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3638 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3639 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3640 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3641 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3642 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003643#endif
3644#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003645 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3646 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003647#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003648 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003649 const struct reserved_combo *r;
3650
3651 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3652 if (strcmp(word->data, r->literal) == 0)
3653 return r;
3654 }
3655 return NULL;
3656}
3657static int reserved_word(o_string *word, struct parse_context *ctx)
3658{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003659#if ENABLE_HUSH_CASE
3660 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003661 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003662 };
3663#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003664 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003665
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003666 r = match_reserved_word(word);
3667 if (!r)
3668 return 0;
3669
3670 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003671#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003672 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3673 /* "case word IN ..." - IN part starts first match part */
3674 r = &reserved_match;
3675 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003676#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003677 if (r->flag == 0) { /* '!' */
3678 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003679 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003680 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003681 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003682 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003683 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003684 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003685 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003686 struct parse_context *old;
3687 old = xmalloc(sizeof(*old));
3688 debug_printf_parse("push stack %p\n", old);
3689 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003690 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003691 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003692 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003693 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003694 ctx->ctx_res_w = RES_SNTX;
3695 return 1;
3696 }
3697 ctx->ctx_res_w = r->res;
3698 ctx->old_flag = r->flag;
3699 if (ctx->old_flag & FLAG_END) {
3700 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003701 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003702 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003703 old = ctx->stack;
3704 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003705 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003706#if !BB_MMU
3707 o_addstr(&old->as_string, ctx->as_string.data);
3708 o_free_unsafe(&ctx->as_string);
3709 old->command->group_as_string = xstrdup(old->as_string.data);
3710 debug_printf_parse("pop, remembering as:'%s'\n",
3711 old->command->group_as_string);
3712#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003713 *ctx = *old; /* physical copy */
3714 free(old);
3715 }
3716 word->o_assignment = r->assignment_flag;
3717 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003718}
Denis Vlasenko06810332007-05-21 23:30:54 +00003719#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003720
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003721/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003722 * Normal return is 0. Syntax errors return 1.
3723 * Note: on return, word is reset, but not o_free'd!
3724 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003725static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003726{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003727 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003728
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003729 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003730 if (word->length == 0 && word->nonnull == 0) {
3731 debug_printf_parse("done_word return 0: true null, ignored\n");
3732 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003733 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003734 /* If this word wasn't an assignment, next ones definitely
3735 * can't be assignments. Even if they look like ones. */
3736 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3737 && word->o_assignment != WORD_IS_KEYWORD
3738 ) {
3739 word->o_assignment = NOT_ASSIGNMENT;
3740 } else {
3741 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003742 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003743 word->o_assignment = MAYBE_ASSIGNMENT;
3744 }
3745
Eric Andersen25f27032001-04-26 23:22:31 +00003746 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003747 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3748 * only if run as "bash", not "sh" */
3749 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003750 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003751 debug_printf("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003752 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003753 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003754 /* NB: bash allows e.g.:
3755 * if true; then { echo foo; } fi
3756 * while if false; then false; fi do break; done
3757 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003758 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003759 syntax(word->data);
3760 debug_printf_parse("done_word return 1: syntax error, "
3761 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003762 return 1;
3763 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003764#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003765#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003766 if (ctx->ctx_dsemicolon
3767 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3768 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003769 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003770 /* ctx->ctx_res_w = RES_MATCH; */
3771 ctx->ctx_dsemicolon = 0;
3772 } else
3773#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003774 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003775#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003776 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3777 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003778#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003779 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003780 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3781 if (reserved_word(word, ctx)) {
3782 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003783 debug_printf_parse("done_word return %d\n",
3784 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003785 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003786 }
Eric Andersen25f27032001-04-26 23:22:31 +00003787 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003788#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003789 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003790 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3791 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003792 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003793 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003794 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003795 char *p = word->data;
3796 while (p[0] == SPECIAL_VAR_SYMBOL
3797 && (p[1] & 0x7f) == '@'
3798 && p[2] == SPECIAL_VAR_SYMBOL
3799 ) {
3800 p += 3;
3801 }
3802 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003803 /* saw no "$@", or not only "$@" but some
3804 * real text is there too */
3805 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003806 * e.g. "", $empty"" etc to not disappear */
3807 o_addchr(word, SPECIAL_VAR_SYMBOL);
3808 o_addchr(word, SPECIAL_VAR_SYMBOL);
3809 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003810 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003811 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003812 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003813 }
Eric Andersen25f27032001-04-26 23:22:31 +00003814
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003815 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003816 ctx->pending_redirect = NULL;
3817
Denis Vlasenko06810332007-05-21 23:30:54 +00003818#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003819 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003820 /* NB: basically, this makes hush see "for v in ..." syntax as if
3821 * as it is "for v; in ...". FOR and IN become two pipe structs
3822 * in parse tree. */
3823 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003824//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003825 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003826 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003827#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003828#if ENABLE_HUSH_CASE
3829 /* Force CASE to have just one word */
3830 if (ctx->ctx_res_w == RES_CASE) {
3831 done_pipe(ctx, PIPE_SEQ);
3832 }
3833#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003834 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003835 return 0;
3836}
3837
Eric Andersen25f27032001-04-26 23:22:31 +00003838/* If a redirect is immediately preceded by a number, that number is
3839 * supposed to tell which file descriptor to redirect. This routine
3840 * looks for such preceding numbers. In an ideal world this routine
3841 * needs to handle all the following classes of redirects...
3842 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3843 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3844 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3845 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3846 * A -1 output from this program means no valid number was found, so the
3847 * caller should use the appropriate default for this redirection.
3848 */
3849static int redirect_opt_num(o_string *o)
3850{
3851 int num;
3852
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003853 if (o->length == 0)
3854 return -1;
3855 for (num = 0; num < o->length; num++) {
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003856 if (!isdigit(o->data[num])) {
Eric Andersen25f27032001-04-26 23:22:31 +00003857 return -1;
3858 }
3859 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003860 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003861 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003862 return num;
3863}
3864
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003865#if BB_MMU
3866#define parse_stream(pstring, input, end_trigger) \
3867 parse_stream(input, end_trigger)
3868#endif
3869static struct pipe *parse_stream(char **pstring,
3870 struct in_str *input,
3871 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003872static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00003873
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003874#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003875static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003876{
3877 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003878 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003879
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003880 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00003881 pid = BB_MMU ? fork() : vfork();
3882 if (pid < 0)
3883 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003884
Denis Vlasenko05743d72008-02-10 12:10:08 +00003885 if (pid == 0) { /* child */
Denis Vlasenkof9375282009-04-05 19:13:39 +00003886#if ENABLE_HUSH_JOB
3887 die_sleep = 0; /* do not restore tty pgrp on xfunc death */
3888#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003889 /* Process substitution is not considered to be usual
3890 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003891 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
3892 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00003893 bb_signals(0
3894 + (1 << SIGTSTP)
3895 + (1 << SIGTTIN)
3896 + (1 << SIGTTOU)
3897 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003898 close(channel[0]); /* NB: close _first_, then move fd! */
3899 xmove_fd(channel[1], 1);
3900 /* Prevent it from trying to handle ctrl-z etc */
3901 USE_HUSH_JOB(G.run_list_level = 1;)
3902#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003903 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003904 parse_and_run_string(s);
3905 _exit(G.last_return_code);
3906#else
3907 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00003908 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
3909 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003910 * echo OK
3911 */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003912 re_execute_shell(s);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003913#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003914 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003915
3916 /* parent */
Denis Vlasenkof9375282009-04-05 19:13:39 +00003917#if ENABLE_HUSH_JOB
3918 die_sleep = -1; /* restore tty pgrp on xfunc death */
3919#endif
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003920 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00003921 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003922 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003923 return pf;
3924}
3925
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003926/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003927static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003928{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003929 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003930 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003931 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003932
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003933 pf = generate_stream_from_string(s);
3934 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00003935 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003936 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00003937
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003938 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003939 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003940 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003941 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003942 if (ch == '\n') {
3943 eol_cnt++;
3944 continue;
3945 }
3946 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003947 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003948 eol_cnt--;
3949 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003950 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003951 }
3952
3953 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003954 /* Note: we got EOF, and we just close the read end of the pipe.
3955 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003956 * Try these:
3957 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
3958 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003959 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003960 fclose(pf);
3961 debug_printf("closed FILE from child. return 0\n");
3962 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003963}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003964#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003965
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003966static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003967 struct in_str *input, int ch)
3968{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003969 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003970 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003971 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003972 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003973 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003974 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003975
3976 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003977#if ENABLE_HUSH_FUNCTIONS
3978 if (ch == 'F') { /* function definition? */
3979 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
3980 //command->fname = dest->data;
3981 command->grp_type = GRP_FUNCTION;
3982//TODO: review every o_reset() location... do they handle all o_string fields correctly?
3983 memset(dest, 0, sizeof(*dest));
3984 }
3985#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003986 if (command->argv /* word [word](... */
3987 || dest->length /* word(... */
3988 || dest->nonnull /* ""(... */
3989 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003990 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003991 debug_printf_parse("parse_group return 1: "
3992 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003993 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003994 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00003995 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003996 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003997 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003998 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00003999 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004000 {
4001#if !BB_MMU
4002 char *as_string = NULL;
4003#endif
4004 pipe_list = parse_stream(&as_string, input, endch);
4005#if !BB_MMU
4006 if (as_string)
4007 o_addstr(&ctx->as_string, as_string);
4008#endif
4009 /* empty ()/{} or parse error? */
4010 if (!pipe_list || pipe_list == ERR_PTR) {
4011#if !BB_MMU
4012 free(as_string);
4013#endif
4014 syntax(NULL);
4015 debug_printf_parse("parse_group return 1: "
4016 "parse_stream returned %p\n", pipe_list);
4017 return 1;
4018 }
4019 command->group = pipe_list;
4020#if !BB_MMU
4021 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4022 command->group_as_string = as_string;
4023 debug_printf_parse("end of group, remembering as:'%s'\n",
4024 command->group_as_string);
4025#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004026 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004027 debug_printf_parse("parse_group return 0\n");
4028 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004029 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004030}
4031
Mike Frysinger98c52642009-04-02 10:02:37 +00004032#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004033/* Subroutines for copying $(...) and `...` things */
4034static void add_till_backquote(o_string *dest, struct in_str *input);
4035/* '...' */
4036static void add_till_single_quote(o_string *dest, struct in_str *input)
4037{
4038 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004039 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004040 if (ch == EOF)
4041 break;
4042 if (ch == '\'')
4043 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004044 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004045 }
4046}
4047/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4048static void add_till_double_quote(o_string *dest, struct in_str *input)
4049{
4050 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004051 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004052 if (ch == '"')
4053 break;
4054 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004055 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004056 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004057 }
4058 if (ch == EOF)
4059 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004060 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004061 if (ch == '`') {
4062 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004063 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004064 continue;
4065 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004066 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004067 }
4068}
4069/* Process `cmd` - copy contents until "`" is seen. Complicated by
4070 * \` quoting.
4071 * "Within the backquoted style of command substitution, backslash
4072 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4073 * The search for the matching backquote shall be satisfied by the first
4074 * backquote found without a preceding backslash; during this search,
4075 * if a non-escaped backquote is encountered within a shell comment,
4076 * a here-document, an embedded command substitution of the $(command)
4077 * form, or a quoted string, undefined results occur. A single-quoted
4078 * or double-quoted string that begins, but does not end, within the
4079 * "`...`" sequence produces undefined results."
4080 * Example Output
4081 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4082 */
4083static void add_till_backquote(o_string *dest, struct in_str *input)
4084{
4085 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004086 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004087 if (ch == '`')
4088 break;
4089 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004090 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004091 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004092 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004093 ch = ch2;
4094 }
4095 if (ch == EOF)
4096 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004097 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004098 }
4099}
4100/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4101 * quoting and nested ()s.
4102 * "With the $(command) style of command substitution, all characters
4103 * following the open parenthesis to the matching closing parenthesis
4104 * constitute the command. Any valid shell script can be used for command,
4105 * except a script consisting solely of redirections which produces
4106 * unspecified results."
4107 * Example Output
4108 * echo $(echo '(TEST)' BEST) (TEST) BEST
4109 * echo $(echo 'TEST)' BEST) TEST) BEST
4110 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4111 */
Mike Frysinger98c52642009-04-02 10:02:37 +00004112static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004113{
4114 int count = 0;
4115 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004116 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004117 if (ch == EOF)
4118 break;
4119 if (ch == '(')
4120 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004121 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004122 if (--count < 0) {
4123 if (!dbl)
4124 break;
4125 if (i_peek(input) == ')') {
4126 i_getch(input);
4127 break;
4128 }
4129 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004130 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004131 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004132 if (ch == '\'') {
4133 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004134 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004135 continue;
4136 }
4137 if (ch == '"') {
4138 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004139 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004140 continue;
4141 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004142 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
4143 ch = i_getch(input);
4144 if (ch == EOF)
4145 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004146 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004147 continue;
4148 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004149 }
4150}
Mike Frysinger98c52642009-04-02 10:02:37 +00004151#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004152
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004153/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004154#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004155#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004156 handle_dollar(dest, input)
4157#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004158static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004159 o_string *dest,
4160 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004161{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004162 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004163 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004164 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004165
4166 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004167 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004168 ch = i_getch(input);
4169#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004170 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004171#endif
Denis Vlasenkod4981312008-07-31 10:34:48 +00004172 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004173 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004174 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004175 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004176 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004177 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004178 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004179 if (!isalnum(ch) && ch != '_')
4180 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004181 ch = i_getch(input);
4182#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004183 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004184#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004185 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004186 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004187 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004188 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004189 ch = i_getch(input);
4190#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004191 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004192#endif
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004193 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004194 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004195 o_addchr(dest, ch | quote_mask);
4196 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004197 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004198 case '$': /* pid */
4199 case '!': /* last bg pid */
4200 case '?': /* last exit code */
4201 case '#': /* number of args */
4202 case '*': /* args */
4203 case '@': /* args */
4204 goto make_one_char_var;
4205 case '{': {
4206 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004207
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004208 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004209 ch = i_getch(input);
4210#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004211 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004212#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004213 /* XXX maybe someone will try to escape the '}' */
4214 expansion = 0;
4215 first_char = true;
4216 all_digits = false;
4217 while (1) {
4218 ch = i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004219#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004220 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004221#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004222 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004223 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004224
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004225 if (first_char) {
4226 if (ch == '#')
4227 /* ${#var}: length of var contents */
4228 goto char_ok;
4229 else if (isdigit(ch)) {
4230 all_digits = true;
4231 goto char_ok;
4232 }
4233 }
4234
4235 if (expansion < 2
4236 && ( (all_digits && !isdigit(ch))
4237 || (!all_digits && !isalnum(ch) && ch != '_')
4238 )
4239 ) {
4240 /* handle parameter expansions
4241 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4242 */
4243 if (first_char)
4244 goto case_default;
4245 switch (ch) {
4246 case ':': /* null modifier */
4247 if (expansion == 0) {
4248 debug_printf_parse(": null modifier\n");
4249 ++expansion;
4250 break;
4251 }
4252 goto case_default;
4253#if 0 /* not implemented yet :( */
4254 case '#': /* remove prefix */
4255 case '%': /* remove suffix */
4256 if (expansion == 0) {
4257 debug_printf_parse(": remove suffix/prefix\n");
4258 expansion = 2;
4259 break;
4260 }
4261 goto case_default;
Mike Frysinger98c52642009-04-02 10:02:37 +00004262#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004263 case '-': /* default value */
4264 case '=': /* assign default */
4265 case '+': /* alternative */
4266 case '?': /* error indicate */
4267 debug_printf_parse(": parameter expansion\n");
4268 expansion = 2;
4269 break;
4270 default:
4271 case_default:
4272 syntax("unterminated ${name}");
4273 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4274 return 1;
4275 }
4276 }
4277 char_ok:
4278 debug_printf_parse(": '%c'\n", ch);
4279 o_addchr(dest, ch | quote_mask);
4280 quote_mask = 0;
4281 first_char = false;
4282 }
4283 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4284 break;
4285 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004286#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004287 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004288# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004289 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004290# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004291 ch = i_getch(input);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004292# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004293 if (as_string) o_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004294# endif
4295# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004296 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004297 ch = i_getch(input);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004298# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004299 if (as_string) o_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004300# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004301 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4302 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004303# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004304 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004305# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004306 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004307# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004308 if (as_string) {
4309 o_addstr(as_string, dest->data + pos);
4310 o_addchr(as_string, ')');
4311 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004312 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004313# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004314 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004315 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004316 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004317# endif
4318# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004319 //int pos = dest->length;
4320 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4321 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004322# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004323 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004324# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004325 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004326# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004327 if (as_string) {
4328 o_addstr(as_string, dest->data + pos);
4329 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004330 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004331# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004332 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4333 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004334# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004335 break;
4336 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004337#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004338 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004339 ch = i_getch(input);
4340#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004341 if (as_string) o_addchr(as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004342#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004343 ch = i_peek(input);
4344 if (isalnum(ch)) { /* it's $_name or $_123 */
4345 ch = '_';
4346 goto make_var;
4347 }
4348 /* else: it's $_ */
4349 /* TODO: */
4350 /* $_ Shell or shell script name; or last cmd name */
4351 /* $- Option flags set by set builtin or shell options (-i etc) */
4352 default:
4353 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004354 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004355 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004356 return 0;
4357}
4358
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004359#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004360#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004361 parse_stream_dquoted(dest, input, dquote_end)
4362#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004363static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004364 o_string *dest,
4365 struct in_str *input,
4366 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004367{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004368 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004369 int next;
4370
4371 again:
4372 ch = i_getch(input);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004373#if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004374 if (as_string && ch != EOF)
4375 o_addchr(as_string, ch);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004376#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004377 if (ch == dquote_end) { /* may be only '"' or EOF */
4378 dest->nonnull = 1;
4379 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004380 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004381 debug_printf_parse("parse_stream_dquoted return 0\n");
4382 return 0;
4383 }
4384 if (ch == EOF) {
4385 syntax("unterminated \"");
4386 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4387 return 1;
4388 }
4389 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004390 if (ch != '\n') {
4391 next = i_peek(input);
4392 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004393 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4394 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004395 if (ch == '\\') {
4396 if (next == EOF) {
4397 syntax("\\<eof>");
4398 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4399 return 1;
4400 }
4401 /* bash:
4402 * "The backslash retains its special meaning [in "..."]
4403 * only when followed by one of the following characters:
4404 * $, `, ", \, or <newline>. A double quote may be quoted
4405 * within double quotes by preceding it with a backslash.
4406 * If enabled, history expansion will be performed unless
4407 * an ! appearing in double quotes is escaped using
4408 * a backslash. The backslash preceding the ! is not removed."
4409 */
4410 if (strchr("$`\"\\", next) != NULL) {
4411 o_addqchr(dest, i_getch(input));
4412 } else {
4413 o_addqchr(dest, '\\');
4414 }
4415 goto again;
4416 }
4417 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004418 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004419 debug_printf_parse("parse_stream_dquoted return 1: "
4420 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004421 return 1;
4422 }
4423 goto again;
4424 }
4425#if ENABLE_HUSH_TICK
4426 if (ch == '`') {
4427 //int pos = dest->length;
4428 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4429 o_addchr(dest, 0x80 | '`');
4430 add_till_backquote(dest, input);
4431 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4432 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004433 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004434 }
4435#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004436 o_addQchr(dest, ch);
4437 if (ch == '='
4438 && (dest->o_assignment == MAYBE_ASSIGNMENT
4439 || dest->o_assignment == WORD_IS_KEYWORD)
4440 && is_assignment(dest->data)
4441 ) {
4442 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4443 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004444 goto again;
4445}
4446
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004447/*
4448 * Scan input until EOF or end_trigger char.
4449 * Return a list of pipes to execute, or NULL on EOF
4450 * or if end_trigger character is met.
4451 * On syntax error, exit is shell is not interactive,
4452 * reset parsing machinery and start parsing anew,
4453 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004454 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004455static struct pipe *parse_stream(char **pstring,
4456 struct in_str *input,
4457 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004458{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004459 struct parse_context ctx;
4460 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004461 int is_in_dquote;
Eric Andersen25f27032001-04-26 23:22:31 +00004462
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004463 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004464 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004465 * found. When recursing, quote state is passed in via dest->o_escape.
4466 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004467 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4468 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004469
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004470 G.ifs = get_local_var_value("IFS");
4471 if (G.ifs == NULL)
4472 G.ifs = " \t\n";
4473
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004474 reset:
4475#if ENABLE_HUSH_INTERACTIVE
4476 input->promptmode = 0; /* PS1 */
4477#endif
4478 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4479 initialize_context(&ctx);
4480 is_in_dquote = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004481 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004482 const char *is_ifs;
4483 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004484 int ch;
4485 int next;
4486 int redir_fd;
4487 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004488
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004489 if (is_in_dquote) {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004490 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004491 goto parse_error;
4492 }
4493 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004494 is_in_dquote = 0;
4495 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004496 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004497 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4498 ch, ch, dest.o_escape);
4499 if (ch == EOF) {
4500 struct pipe *pi;
4501 if (done_word(&dest, &ctx)) {
4502 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004503 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004504 o_free(&dest);
4505 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004506 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004507 /* If we got nothing... */
4508// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004509 if (pi->num_cmds == 0
4510 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4511 ) {
4512 free_pipe_list(pi, 0);
4513 pi = NULL;
4514 }
4515 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004516#if !BB_MMU
4517 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4518 if (pstring)
4519 *pstring = ctx.as_string.data;
4520 else
4521 o_free_unsafe(&ctx.as_string);
4522#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004523 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004524 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004525#if !BB_MMU
4526 o_addchr(&ctx.as_string, ch);
4527#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004528 is_ifs = strchr(G.ifs, ch);
4529 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4530 "\\$\"" USE_HUSH_TICK("`") /* always special */
4531 , ch);
4532
4533 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004534 o_addQchr(&dest, ch);
4535 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4536 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004537 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004538 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004539 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004540 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004541 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004542 continue;
4543 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004544
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004545 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004546 if (done_word(&dest, &ctx)) {
4547 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004548 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004549 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004550#if ENABLE_HUSH_CASE
4551 /* "case ... in <newline> word) ..." -
4552 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004553 if (ctx.command->argv == NULL
4554 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004555 ) {
4556 continue;
4557 }
4558#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004559 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004560 done_pipe(&ctx, PIPE_SEQ);
4561 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004562 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004563 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004564 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004565 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004566 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004567 if (end_trigger && end_trigger == ch) {
4568//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004569 if (done_word(&dest, &ctx)) {
4570 goto parse_error;
4571 }
4572 done_pipe(&ctx, PIPE_SEQ);
4573 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004574 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004575 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004576 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004577 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004578 debug_printf_parse("parse_stream return %p: "
4579 "end_trigger char found\n",
4580 ctx.list_head);
4581 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004582#if !BB_MMU
4583 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4584 if (pstring)
4585 *pstring = ctx.as_string.data;
4586 else
4587 o_free_unsafe(&ctx.as_string);
4588#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004589 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004590 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004591 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004592 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004593 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004594
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004595 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004596 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004597 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004598 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004599 }
4600
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004601 next = '\0';
4602 if (ch != '\n') {
4603 next = i_peek(input);
4604 }
4605
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004606 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004607 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004608 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004609 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004610 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004611 if (ch == EOF || ch == '\n')
4612 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004613 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004614 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004615 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004616#if !BB_MMU
4617//TODO: go back one char?
4618 o_addchr(&ctx.as_string, '\n');
4619#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004620 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004621 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004622 }
4623 break;
4624 case '\\':
4625 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004626 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004627 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004628 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004629 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004630 ch = i_getch(input);
4631 o_addchr(&dest, ch);
4632#if !BB_MMU
4633 o_addchr(&ctx.as_string, ch);
4634#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004635 break;
4636 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004637 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004638 debug_printf_parse("parse_stream parse error: "
4639 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004640 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004641 }
Eric Andersen25f27032001-04-26 23:22:31 +00004642 break;
4643 case '\'':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004644 dest.nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004645 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004646 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004647 if (ch == EOF) {
4648 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004649 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004650 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004651#if !BB_MMU
4652 o_addchr(&ctx.as_string, ch);
4653#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004654 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004655 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004656 if (dest.o_assignment == NOT_ASSIGNMENT)
4657 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004658 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004659 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004660 }
Eric Andersen25f27032001-04-26 23:22:31 +00004661 break;
4662 case '"':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004663 dest.nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004664 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004665 if (dest.o_assignment == NOT_ASSIGNMENT)
4666 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004667 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004668#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004669 case '`': {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004670 //int pos = dest.length;
4671 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4672 o_addchr(&dest, '`');
4673 add_till_backquote(&dest, input);
4674 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4675 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004676 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004677 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004678#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004679 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004680 redir_fd = redirect_opt_num(&dest);
4681 if (done_word(&dest, &ctx)) {
4682 goto parse_error;
4683 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004684 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004685 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004686 redir_style = REDIRECT_APPEND;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004687 ch = i_getch(input);
4688#if !BB_MMU
4689 o_addchr(&ctx.as_string, ch);
4690#endif
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004691 }
4692#if 0
4693 else if (next == '(') {
4694 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004695 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004696 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004697#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004698 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004699 break;
4700 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004701 redir_fd = redirect_opt_num(&dest);
4702 if (done_word(&dest, &ctx)) {
4703 goto parse_error;
4704 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004705 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004706 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004707 redir_style = REDIRECT_HEREIS;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004708 ch = i_getch(input);
4709#if !BB_MMU
4710 o_addchr(&ctx.as_string, ch);
4711#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004712 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004713 redir_style = REDIRECT_IO;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004714 ch = i_getch(input);
4715#if !BB_MMU
4716 o_addchr(&ctx.as_string, ch);
4717#endif
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004718 }
4719#if 0
4720 else if (next == '(') {
4721 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004722 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004723 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004724#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004725 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004726 break;
4727 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004728#if ENABLE_HUSH_CASE
4729 case_semi:
4730#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004731 if (done_word(&dest, &ctx)) {
4732 goto parse_error;
4733 }
4734 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004735#if ENABLE_HUSH_CASE
4736 /* Eat multiple semicolons, detect
4737 * whether it means something special */
4738 while (1) {
4739 ch = i_peek(input);
4740 if (ch != ';')
4741 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004742 ch = i_getch(input);
4743#if !BB_MMU
4744 o_addchr(&ctx.as_string, ch);
4745#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004746 if (ctx.ctx_res_w == RES_CASEI) {
4747 ctx.ctx_dsemicolon = 1;
4748 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004749 break;
4750 }
4751 }
4752#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004753 new_cmd:
4754 /* We just finished a cmd. New one may start
4755 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004756 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004757 break;
4758 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004759 if (done_word(&dest, &ctx)) {
4760 goto parse_error;
4761 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004762 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004763 ch = i_getch(input);
4764#if !BB_MMU
4765 o_addchr(&ctx.as_string, ch);
4766#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004767 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004768 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004769 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004770 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004771 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004772 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004773 if (done_word(&dest, &ctx)) {
4774 goto parse_error;
4775 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004776#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004777 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004778 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004779#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004780 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004781 ch = i_getch(input);
4782#if !BB_MMU
4783 o_addchr(&ctx.as_string, ch);
4784#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004785 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004786 } else {
4787 /* we could pick up a file descriptor choice here
4788 * with redirect_opt_num(), but bash doesn't do it.
4789 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004790 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004791 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004792 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004793 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004794#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004795 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004796 if (ctx.ctx_res_w == RES_MATCH
4797 && ctx.command->argv == NULL /* not (word|(... */
4798 && dest.length == 0 /* not word(... */
4799 && dest.nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004800 ) {
4801 continue;
4802 }
4803#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004804#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004805 if (dest.length != 0 /* not just () but word() */
4806 && dest.nonnull == 0 /* not a"b"c() */
4807 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004808//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004809 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004810 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004811 ) {
4812 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004813 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004814//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004815 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004816//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004817 ch = i_getch(input);
4818 } while (ch == ' ' || ch == '\n');
4819 if (ch != '{') {
4820 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004821 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004822 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004823 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004824 }
4825#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004826 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004827 if (parse_group(&dest, &ctx, input, ch) != 0) {
4828 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004829 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004830 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004831 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004832#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004833 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004834 goto case_semi;
4835#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004836 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004837 /* proper use of this character is caught by end_trigger:
4838 * if we see {, we call parse_group(..., end_trigger='}')
4839 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004840 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004841 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004842 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004843 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004844 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004845 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004846 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004847
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004848 parse_error:
4849 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004850 struct parse_context *pctx;
4851 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004852
4853 /* Clean up allocated tree.
4854 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004855 * Run them from interactive shell, watch pmap `pidof hush`.
4856 * while if false; then false; fi do break; done
4857 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004858 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004859 * Samples to catch leaks at execution:
4860 * while if (true | {true;}); then echo ok; fi; do break; done
4861 * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004862 */
4863 pctx = &ctx;
4864 do {
4865 /* Update pipe/command counts,
4866 * otherwise freeing may miss some */
4867 done_pipe(pctx, PIPE_SEQ);
4868 debug_printf_clean("freeing list %p from ctx %p\n",
4869 pctx->list_head, pctx);
4870 debug_print_tree(pctx->list_head, 0);
4871 free_pipe_list(pctx->list_head, 0);
4872 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004873#if !BB_MMU
4874 o_free_unsafe(&pctx->as_string);
4875#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004876 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004877 if (pctx != &ctx) {
4878 free(pctx);
4879 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004880 IF_HAS_KEYWORDS(pctx = p2;)
4881 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004882 /* Free text, clear all dest fields */
4883 o_free(&dest);
4884 /* If we are not in top-level parse, we return,
4885 * our caller will propagate error.
4886 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004887 if (end_trigger != ';') {
4888#if !BB_MMU
4889 if (pstring)
4890 *pstring = NULL;
4891#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004892 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004893 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004894 /* Discard cached input, force prompt */
4895 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004896 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004897 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004898 }
Eric Andersen25f27032001-04-26 23:22:31 +00004899}
4900
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004901/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004902 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
4903 * end_trigger controls how often we stop parsing
4904 * NUL: parse all, execute, return
4905 * ';': parse till ';' or newline, execute, repeat till EOF
4906 */
4907static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004908{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004909 while (1) {
4910 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004911
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004912 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004913 if (!pipe_list) /* EOF */
4914 break;
4915 debug_print_tree(pipe_list, 0);
4916 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
4917 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004918 }
Eric Andersen25f27032001-04-26 23:22:31 +00004919}
4920
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004921static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004922{
4923 struct in_str input;
4924 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004925 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00004926}
4927
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004928static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00004929{
Eric Andersen25f27032001-04-26 23:22:31 +00004930 struct in_str input;
4931 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004932 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00004933}
4934
Denis Vlasenkof9375282009-04-05 19:13:39 +00004935/* Called a few times only (or even once if "sh -c") */
4936static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00004937{
Denis Vlasenkof9375282009-04-05 19:13:39 +00004938 unsigned sig;
4939 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004940
Denis Vlasenkof9375282009-04-05 19:13:39 +00004941 mask = (1 << SIGQUIT);
4942 if (G_interactive_fd) {
4943 mask = 0
4944 | (1 << SIGQUIT)
4945 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00004946//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00004947#if ENABLE_HUSH_JOB
4948 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
4949#endif
4950 | (1 << SIGINT)
4951 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004952 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00004953 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00004954
Denis Vlasenkof9375282009-04-05 19:13:39 +00004955 if (!second_time)
4956 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
4957 sig = 0;
4958 while (mask) {
4959 if (mask & 1)
4960 sigaddset(&G.blocked_set, sig);
4961 mask >>= 1;
4962 sig++;
4963 }
4964 sigdelset(&G.blocked_set, SIGCHLD);
4965
4966 sigprocmask(SIG_SETMASK, &G.blocked_set,
4967 second_time ? NULL : &G.inherited_set);
4968 /* POSIX allows shell to re-enable SIGCHLD
4969 * even if it was SIG_IGN on entry */
4970// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
4971 if (!second_time)
4972 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
4973}
4974
4975#if ENABLE_HUSH_JOB
4976/* helper */
4977static void maybe_set_to_sigexit(int sig)
4978{
4979 void (*handler)(int);
4980 /* non_DFL_mask'ed signals are, well, masked,
4981 * no need to set handler for them.
4982 */
4983 if (!((G.non_DFL_mask >> sig) & 1)) {
4984 handler = signal(sig, sigexit);
4985 if (handler == SIG_IGN) /* oops... restore back to IGN! */
4986 signal(sig, handler);
4987 }
4988}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00004989/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00004990static void set_fatal_handlers(void)
4991{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004992 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00004993 if (HUSH_DEBUG) {
4994 maybe_set_to_sigexit(SIGILL );
4995 maybe_set_to_sigexit(SIGFPE );
4996 maybe_set_to_sigexit(SIGBUS );
4997 maybe_set_to_sigexit(SIGSEGV);
4998 maybe_set_to_sigexit(SIGTRAP);
4999 } /* else: hush is perfect. what SEGV? */
5000 maybe_set_to_sigexit(SIGABRT);
5001 /* bash 3.2 seems to handle these just like 'fatal' ones */
5002 maybe_set_to_sigexit(SIGPIPE);
5003 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005004//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005005 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005006 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005007 * if we aren't interactive... but in this case
5008 * we never want to restore pgrp on exit, and this fn is not called */
5009 /*maybe_set_to_sigexit(SIGTERM);*/
5010 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005011}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005012#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005013
Denis Vlasenkod5762932009-03-31 11:22:57 +00005014static int set_mode(const char cstate, const char mode)
5015{
5016 int state = (cstate == '-' ? 1 : 0);
5017 switch (mode) {
5018 case 'n': G.fake_mode = state; break;
5019 case 'x': /*G.debug_mode = state;*/ break;
5020 default: return EXIT_FAILURE;
5021 }
5022 return EXIT_SUCCESS;
5023}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005024
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005025int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005026int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005027{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005028 static const struct variable const_shell_ver = {
5029 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005030 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005031 .max_len = 1, /* 0 can provoke free(name) */
5032 .flg_export = 1,
5033 .flg_read_only = 1,
5034 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005035 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005036 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005037 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005038 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005039
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005040 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005041 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
5042 G.last_return_code = EXIT_SUCCESS;
5043#if !BB_MMU
5044 G.argv0_for_re_execing = argv[0];
5045#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005046 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005047 G.shell_ver = const_shell_ver; /* copying struct here */
5048 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005049 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005050 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5051 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005052 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005053 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005054 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005055 if (e) while (*e) {
5056 char *value = strchr(*e, '=');
5057 if (value) { /* paranoia */
5058 cur_var->next = xzalloc(sizeof(*cur_var));
5059 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005060 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005061 cur_var->max_len = strlen(*e);
5062 cur_var->flg_export = 1;
5063 }
5064 e++;
5065 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005066 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005067 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005068#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005069 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005070#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005071 G.global_argc = argc;
5072 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005073 /* Initialize some more globals to non-zero values */
5074 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005075#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005076 if (ENABLE_FEATURE_EDITING)
5077 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005078 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005079#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005080
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005081 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005082 * block_signals(0) if we are going to execute "sh <script>",
5083 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005084 * If we later decide that we are interactive, we run block_signals(0)
5085 * (or re-run block_signals(1) if we ran block_signals(0) before)
5086 * in order to intercept (more) signals.
5087 */
5088
5089 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005090 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005091 while (1) {
5092 opt = getopt(argc, argv, "c:xins"
5093#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005094 "$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005095#endif
5096 );
5097 if (opt <= 0)
5098 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005099 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005100 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005101 if (!G.root_pid)
5102 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005103 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005104 if (!argv[optind]) {
5105 /* -c 'script' (no params): prevent empty $0 */
5106 *--G.global_argv = argv[0];
5107 optind--;
5108 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005109 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005110 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005111 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005112 goto final_return;
5113 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005114 /* Well, we cannot just declare interactiveness,
5115 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005116 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005117 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005118 case 's':
5119 /* "-s" means "read from stdin", but this is how we always
5120 * operate, so simply do nothing here. */
5121 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005122#if !BB_MMU
5123 case '$':
5124 G.root_pid = xatoi_u(optarg);
5125 break;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005126 case '!':
5127 G.last_bg_pid = xatoi_u(optarg);
5128 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005129 case '?':
5130 G.last_return_code = xatoi_u(optarg);
5131 break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005132# if ENABLE_HUSH_LOOPS
Denis Vlasenko16a0c742009-04-05 01:46:59 +00005133 case 'D':
5134 G.depth_of_loop = xatoi_u(optarg);
5135 break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005136# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005137 case 'R':
5138 case 'V':
5139 set_local_var(xstrdup(optarg), 0, opt == 'R');
5140 break;
5141#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005142 case 'n':
5143 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005144 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005145 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005146 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005147#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005148 fprintf(stderr, "Usage: sh [FILE]...\n"
5149 " or: sh -c command [args]...\n\n");
5150 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005151#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005152 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005153#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005154 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005155 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005156
5157 if (!G.root_pid)
5158 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005159
5160 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005161 if (argv[0] && argv[0][0] == '-') {
5162 FILE *input;
5163 /* XXX what should argv be while sourcing /etc/profile? */
5164 debug_printf("sourcing /etc/profile\n");
5165 input = fopen_for_read("/etc/profile");
5166 if (input != NULL) {
5167 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005168 block_signals(0); /* 0: called 1st time */
5169 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005170 parse_and_run_file(input);
5171 fclose(input);
5172 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005173 /* bash: after sourcing /etc/profile,
5174 * tries to source (in the given order):
5175 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5176 * stopping of first found. --noprofile turns this off.
5177 * bash also sources ~/.bash_logout on exit.
5178 * If called as sh, skips .bash_XXX files.
5179 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005180 }
5181
Denis Vlasenkof9375282009-04-05 19:13:39 +00005182 if (argv[optind]) {
5183 FILE *input;
5184 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005185 * "bash <script>" (which is never interactive (unless -i?))
5186 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005187 * If called as sh, does the same but with $ENV.
5188 */
5189 debug_printf("running script '%s'\n", argv[optind]);
5190 G.global_argv = argv + optind;
5191 G.global_argc = argc - optind;
5192 input = xfopen_for_read(argv[optind]);
5193 close_on_exec_on(fileno(input));
5194 if (!signal_mask_is_inited)
5195 block_signals(0); /* 0: called 1st time */
5196 parse_and_run_file(input);
5197#if ENABLE_FEATURE_CLEAN_UP
5198 fclose(input);
5199#endif
5200 goto final_return;
5201 }
5202
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005203 /* Up to here, shell was non-interactive. Now it may become one.
5204 * NB: don't forget to (re)run block_signals(0/1) as needed.
5205 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005206
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005207 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005208 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005209 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005210 * no arguments remaining or the -s flag given
5211 * standard input is a terminal
5212 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005213 * Refer to Posix.2, the description of the 'sh' utility.
5214 */
5215#if ENABLE_HUSH_JOB
5216 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005217 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005218 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005219//TODO: "interactive" and "have job control" are two different things.
5220//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5221//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005222 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005223 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005224 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5225 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005226 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005227 G_interactive_fd = dup(STDIN_FILENO);
5228 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005229 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005230 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005231 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005232// TODO: track & disallow any attempts of user
5233// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005234 }
Eric Andersen25f27032001-04-26 23:22:31 +00005235 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005236 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005237 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005238 pid_t shell_pgrp;
5239
5240 /* We are indeed interactive shell, and we will perform
5241 * job control. Setting up for that. */
5242
5243 close_on_exec_on(G_interactive_fd);
5244 /* If we were run as 'hush &', sleep until we are
5245 * in the foreground (tty pgrp == our pgrp).
5246 * If we get started under a job aware app (like bash),
5247 * make sure we are now in charge so we don't fight over
5248 * who gets the foreground */
5249 while (1) {
5250 shell_pgrp = getpgrp();
5251 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5252 if (G.saved_tty_pgrp == shell_pgrp)
5253 break;
5254 /* send TTIN to ourself (should stop us) */
5255 kill(- shell_pgrp, SIGTTIN);
5256 }
5257 /* Block some signals */
5258 block_signals(signal_mask_is_inited);
5259 /* Set other signals to restore saved_tty_pgrp */
5260 set_fatal_handlers();
5261 /* Put ourselves in our own process group */
5262 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5263 /* Grab control of the terminal */
5264 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005265 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005266 * (we reset die_sleep = 0 whereever we [v]fork) */
5267 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005268 if (setjmp(die_jmp)) {
5269 /* xfunc has failed! die die die */
5270 hush_exit(xfunc_error_retval);
5271 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005272 } else if (!signal_mask_is_inited) {
5273 block_signals(0); /* 0: called 1st time */
5274 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005275#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005276 /* No job control compiled in, only prompt/line editing */
5277 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005278 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5279 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005280 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005281 G_interactive_fd = dup(STDIN_FILENO);
5282 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005283 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005284 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005285 }
5286 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005287 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005288 close_on_exec_on(G_interactive_fd);
5289 block_signals(signal_mask_is_inited);
5290 } else if (!signal_mask_is_inited) {
5291 block_signals(0);
5292 }
5293#else
5294 /* We have interactiveness code disabled */
5295 if (!signal_mask_is_inited) {
5296 block_signals(0);
5297 }
5298#endif
5299 /* bash:
5300 * if interactive but not a login shell, sources ~/.bashrc
5301 * (--norc turns this off, --rcfile <file> overrides)
5302 */
5303
5304 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005305 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005306 printf("Enter 'help' for a list of built-in commands.\n\n");
5307 }
5308
Denis Vlasenkof9375282009-04-05 19:13:39 +00005309 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005310
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005311 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005312#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005313 if (G.cwd != bb_msg_unknown)
5314 free((char*)G.cwd);
5315 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005316 while (cur_var) {
5317 struct variable *tmp = cur_var;
5318 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005319 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005320 cur_var = cur_var->next;
5321 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005322 }
Eric Andersen25f27032001-04-26 23:22:31 +00005323#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005324 hush_exit(G.last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00005325}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005326
5327
5328#if ENABLE_LASH
5329int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5330int lash_main(int argc, char **argv)
5331{
5332 //bb_error_msg("lash is deprecated, please use hush instead");
5333 return hush_main(argc, argv);
5334}
5335#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005336
5337
5338/*
5339 * Built-ins
5340 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005341static int builtin_trap(char **argv)
5342{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005343 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005344 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005345 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005346
5347 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005348 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005349
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005350 argv++;
5351 if (!*argv) {
5352 /* No args: print all trapped. This isn't 100% correct as we
5353 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005354 */
5355 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005356 if (G.traps[i])
5357 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005358 return EXIT_SUCCESS;
5359 }
5360
Denis Vlasenkod5762932009-03-31 11:22:57 +00005361 new_cmd = NULL;
5362 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005363 /* If first arg is decimal: reset all specified signals */
5364 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005365 if (errno == 0) {
5366 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005367 set_all:
5368 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005369 while (*argv) {
5370 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005371 if (sig < 0 || sig >= NSIG) {
5372 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005373 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005374 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5375 continue;
5376 }
5377
Denis Vlasenkod5762932009-03-31 11:22:57 +00005378 free(G.traps[sig]);
5379 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005380
Denis Vlasenkod5762932009-03-31 11:22:57 +00005381 debug_printf("trap: setting SIG%s (%i) to '%s'",
5382 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005383
5384 /* There is no signal for 0 (EXIT) */
5385 if (sig == 0)
5386 continue;
5387
5388 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005389 sigaddset(&G.blocked_set, sig);
5390 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005391 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005392 * (if sig has non-DFL handling,
5393 * we don't need to do anything) */
5394 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5395 continue;
5396 sigdelset(&G.blocked_set, sig);
5397 }
5398 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005399 }
5400 return ret;
5401 }
5402
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005403 /* First arg is "-": reset all specified to default */
5404 /* First arg is "": ignore all specified */
5405 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005406 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005407 bb_error_msg("trap: invalid arguments");
5408 return EXIT_FAILURE;
5409 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005410 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005411 new_cmd = *argv;
5412 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005413 goto set_all;
5414}
5415
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005416static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005417{
5418 return 0;
5419}
5420
5421static int builtin_test(char **argv)
5422{
5423 int argc = 0;
5424 while (*argv) {
5425 argc++;
5426 argv++;
5427 }
5428 return test_main(argc, argv - argc);
5429}
5430
5431static int builtin_echo(char **argv)
5432{
5433 int argc = 0;
5434 while (*argv) {
5435 argc++;
5436 argv++;
5437 }
5438 return echo_main(argc, argv - argc);
5439}
5440
5441static int builtin_eval(char **argv)
5442{
5443 int rcode = EXIT_SUCCESS;
5444
5445 if (argv[1]) {
5446 char *str = expand_strvec_to_string(argv + 1);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005447 /* bash:
5448 * eval "echo Hi; done" ("done" is syntax error):
5449 * "echo Hi" will not execute too.
5450 */
5451 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005452 free(str);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005453 rcode = G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005454 }
5455 return rcode;
5456}
5457
5458static int builtin_cd(char **argv)
5459{
5460 const char *newdir;
5461 if (argv[1] == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005462 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5463 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5464 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005465 newdir = getenv("HOME") ? : "/";
5466 } else
5467 newdir = argv[1];
5468 if (chdir(newdir)) {
5469 printf("cd: %s: %s\n", newdir, strerror(errno));
5470 return EXIT_FAILURE;
5471 }
5472 set_cwd();
5473 return EXIT_SUCCESS;
5474}
5475
5476static int builtin_exec(char **argv)
5477{
5478 if (argv[1] == NULL)
5479 return EXIT_SUCCESS; /* bash does this */
5480 {
5481#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005482 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005483#endif
5484// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005485 pseudo_exec_argv(&dummy, argv + 1, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005486 /* never returns */
5487 }
5488}
5489
5490static int builtin_exit(char **argv)
5491{
5492// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5493 //puts("exit"); /* bash does it */
5494// TODO: warn if we have background jobs: "There are stopped jobs"
5495// On second consecutive 'exit', exit anyway.
5496 if (argv[1] == NULL)
Denis Vlasenko87a86552008-07-29 19:43:10 +00005497 hush_exit(G.last_return_code);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005498 /* mimic bash: exit 123abc == exit 255 + error msg */
5499 xfunc_error_retval = 255;
5500 /* bash: exit -2 == exit 254, no error msg */
5501 hush_exit(xatoi(argv[1]) & 0xff);
5502}
5503
5504static int builtin_export(char **argv)
5505{
5506 const char *value;
5507 char *name = argv[1];
5508
5509 if (name == NULL) {
5510 // TODO:
5511 // ash emits: export VAR='VAL'
5512 // bash: declare -x VAR="VAL"
5513 // (both also escape as needed (quotes, $, etc))
5514 char **e = environ;
5515 if (e)
5516 while (*e)
5517 puts(*e++);
5518 return EXIT_SUCCESS;
5519 }
5520
5521 value = strchr(name, '=');
5522 if (!value) {
5523 /* They are exporting something without a =VALUE */
5524 struct variable *var;
5525
5526 var = get_local_var(name);
5527 if (var) {
5528 var->flg_export = 1;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005529 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005530 putenv(var->varstr);
5531 }
5532 /* bash does not return an error when trying to export
5533 * an undefined variable. Do likewise. */
5534 return EXIT_SUCCESS;
5535 }
5536
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005537 set_local_var(xstrdup(name), 1, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005538 return EXIT_SUCCESS;
5539}
5540
5541#if ENABLE_HUSH_JOB
5542/* built-in 'fg' and 'bg' handler */
5543static int builtin_fg_bg(char **argv)
5544{
5545 int i, jobnum;
5546 struct pipe *pi;
5547
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005548 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005549 return EXIT_FAILURE;
5550 /* If they gave us no args, assume they want the last backgrounded task */
5551 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005552 for (pi = G.job_list; pi; pi = pi->next) {
5553 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005554 goto found;
5555 }
5556 }
5557 bb_error_msg("%s: no current job", argv[0]);
5558 return EXIT_FAILURE;
5559 }
5560 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5561 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5562 return EXIT_FAILURE;
5563 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005564 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005565 if (pi->jobid == jobnum) {
5566 goto found;
5567 }
5568 }
5569 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5570 return EXIT_FAILURE;
5571 found:
5572 // TODO: bash prints a string representation
5573 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005574 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005575 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005576 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005577 }
5578
5579 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005580 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5581 for (i = 0; i < pi->num_cmds; i++) {
5582 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5583 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005584 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005585 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005586
5587 i = kill(- pi->pgrp, SIGCONT);
5588 if (i < 0) {
5589 if (errno == ESRCH) {
5590 delete_finished_bg_job(pi);
5591 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005592 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005593 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005594 }
5595
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005596 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005597 remove_bg_job(pi);
5598 return checkjobs_and_fg_shell(pi);
5599 }
5600 return EXIT_SUCCESS;
5601}
5602#endif
5603
5604#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005605static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005606{
5607 const struct built_in_command *x;
5608
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005609 printf("\n"
5610 "Built-in commands:\n"
5611 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005612 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5613 printf("%s\t%s\n", x->cmd, x->descr);
5614 }
5615 printf("\n\n");
5616 return EXIT_SUCCESS;
5617}
5618#endif
5619
5620#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005621static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005622{
5623 struct pipe *job;
5624 const char *status_string;
5625
Denis Vlasenko87a86552008-07-29 19:43:10 +00005626 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005627 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005628 status_string = "Stopped";
5629 else
5630 status_string = "Running";
5631
5632 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5633 }
5634 return EXIT_SUCCESS;
5635}
5636#endif
5637
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005638static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005639{
5640 puts(set_cwd());
5641 return EXIT_SUCCESS;
5642}
5643
5644static int builtin_read(char **argv)
5645{
5646 char *string;
5647 const char *name = argv[1] ? argv[1] : "REPLY";
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00005648//TODO: check that argv[1] is a valid variable name
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005649
5650 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005651 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005652}
5653
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005654/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5655 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005656 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005657 * set [-abCefhmnuvx] [-o option] [argument...]
5658 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005659 * set -- [argument...]
5660 * set -o
5661 * set +o
5662 * Implementations shall support the options in both their hyphen and
5663 * plus-sign forms. These options can also be specified as options to sh.
5664 * Examples:
5665 * Write out all variables and their values: set
5666 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5667 * Turn on the -x and -v options: set -xv
5668 * Unset all positional parameters: set --
5669 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5670 * Set the positional parameters to the expansion of x, even if x expands
5671 * with a leading '-' or '+': set -- $x
5672 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005673 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005674 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005675static int builtin_set(char **argv)
5676{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005677 int n;
5678 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005679 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005680
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005681 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005682 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005683 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005684 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005685 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005686 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005687
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005688 do {
5689 if (!strcmp(arg, "--")) {
5690 ++argv;
5691 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005692 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005693
5694 if (arg[0] == '+' || arg[0] == '-') {
5695 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005696 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005697 goto error;
5698 continue;
5699 }
5700
5701 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005702 } while ((arg = *++argv) != NULL);
5703 /* Now argv[0] is 1st argument */
5704
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005705 /* Only reset global_argv if we didn't process anything */
5706 if (arg == NULL)
5707 return EXIT_SUCCESS;
5708 set_argv:
5709
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005710 /* NB: G.global_argv[0] ($0) is never freed/changed */
5711 g_argv = G.global_argv;
5712 if (G.global_args_malloced) {
5713 pp = g_argv;
5714 while (*++pp)
5715 free(*pp);
5716 g_argv[1] = NULL;
5717 } else {
5718 G.global_args_malloced = 1;
5719 pp = xzalloc(sizeof(pp[0]) * 2);
5720 pp[0] = g_argv[0]; /* retain $0 */
5721 g_argv = pp;
5722 }
5723 /* This realloc's G.global_argv */
5724 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5725
5726 n = 1;
5727 while (*++pp)
5728 n++;
5729 G.global_argc = n;
5730
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005731 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005732
5733 /* Nothing known, so abort */
5734 error:
5735 bb_error_msg("set: %s: invalid option", arg);
5736 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005737}
5738
5739static int builtin_shift(char **argv)
5740{
5741 int n = 1;
5742 if (argv[1]) {
5743 n = atoi(argv[1]);
5744 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005745 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005746 if (G.global_args_malloced) {
5747 int m = 1;
5748 while (m <= n)
5749 free(G.global_argv[m++]);
5750 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005751 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005752 memmove(&G.global_argv[1], &G.global_argv[n+1],
5753 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005754 return EXIT_SUCCESS;
5755 }
5756 return EXIT_FAILURE;
5757}
5758
5759static int builtin_source(char **argv)
5760{
5761 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005762
5763 if (argv[1] == NULL)
5764 return EXIT_FAILURE;
5765
5766 /* XXX search through $PATH is missing */
Denis Vlasenko5415c852008-07-21 23:05:26 +00005767 input = fopen_for_read(argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005768 if (!input) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00005769 bb_error_msg("can't open '%s'", argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005770 return EXIT_FAILURE;
5771 }
5772 close_on_exec_on(fileno(input));
5773
5774 /* Now run the file */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005775 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005776 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00005777 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005778 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005779 fclose(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005780 return G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005781}
5782
5783static int builtin_umask(char **argv)
5784{
5785 mode_t new_umask;
5786 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005787 if (arg) {
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005788 new_umask = bb_strtou(arg, NULL, 8);
5789 if (errno)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005790 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005791 } else {
5792 new_umask = umask(0);
5793 printf("%.3o\n", (unsigned) new_umask);
5794 }
5795 umask(new_umask);
5796 return EXIT_SUCCESS;
5797}
5798
Mike Frysingerd690f682009-03-30 06:50:54 +00005799/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005800static int builtin_unset(char **argv)
5801{
Mike Frysingerd690f682009-03-30 06:50:54 +00005802 size_t i;
5803 int ret;
5804 bool var = true;
5805
5806 if (!argv[1])
5807 return EXIT_SUCCESS;
5808
5809 i = 0;
5810 if (argv[1][0] == '-') {
5811 switch (argv[1][1]) {
5812 case 'v': break;
5813 case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; }
5814 default:
5815 bb_error_msg("unset: %s: invalid option", argv[1]);
5816 return EXIT_FAILURE;
5817 }
5818 ++i;
5819 }
5820
5821 ret = EXIT_SUCCESS;
5822 while (argv[++i]) {
5823 if (var) {
5824 if (unset_local_var(argv[i]))
5825 ret = EXIT_FAILURE;
5826 }
5827#if ENABLE_HUSH_FUNCTIONS
5828 else
5829 unset_local_func(argv[i]);
5830#endif
5831 }
5832 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005833}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005834
Mike Frysinger56bdea12009-03-28 20:01:58 +00005835/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
5836static int builtin_wait(char **argv)
5837{
5838 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005839 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005840
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005841 if (*++argv == NULL) {
5842 /* Don't care about wait results */
5843 /* Note 1: must wait until there are no more children */
5844 /* Note 2: must be interruptible */
5845 /* Examples:
5846 * $ sleep 3 & sleep 6 & wait
5847 * [1] 30934 sleep 3
5848 * [2] 30935 sleep 6
5849 * [1] Done sleep 3
5850 * [2] Done sleep 6
5851 * $ sleep 3 & sleep 6 & wait
5852 * [1] 30936 sleep 3
5853 * [2] 30937 sleep 6
5854 * [1] Done sleep 3
5855 * ^C <-- after ~4 sec from keyboard
5856 * $
5857 */
5858 sigaddset(&G.blocked_set, SIGCHLD);
5859 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5860 while (1) {
5861 checkjobs(NULL);
5862 if (errno == ECHILD)
5863 break;
5864 /* Wait for SIGCHLD or any other signal of interest */
5865 /* sigtimedwait with infinite timeout: */
5866 sig = sigwaitinfo(&G.blocked_set, NULL);
5867 if (sig > 0) {
5868 sig = check_and_run_traps(sig);
5869 if (sig && sig != SIGCHLD) { /* see note 2 */
5870 ret = 128 + sig;
5871 break;
5872 }
5873 }
5874 }
5875 sigdelset(&G.blocked_set, SIGCHLD);
5876 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5877 return ret;
5878 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00005879
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005880 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005881 while (*argv) {
5882 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005883 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005884 /* mimic bash message */
5885 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005886 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005887 }
5888 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00005889 if (WIFSIGNALED(status))
5890 ret = 128 + WTERMSIG(status);
5891 else if (WIFEXITED(status))
5892 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00005893 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00005894 ret = EXIT_FAILURE;
5895 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005896 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005897 ret = 127;
5898 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00005899 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005900 }
5901
5902 return ret;
5903}
5904
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005905#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005906static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005907{
Denis Vlasenko87a86552008-07-29 19:43:10 +00005908 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005909 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005910 return EXIT_SUCCESS; /* bash compat */
5911 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005912 G.flag_break_continue++; /* BC_BREAK = 1 */
5913 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005914 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005915 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
5916 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005917 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005918 G.flag_break_continue = BC_BREAK;
5919 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005920 }
5921 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005922 if (G.depth_of_loop < G.depth_break_continue)
5923 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005924 return EXIT_SUCCESS;
5925}
5926
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005927static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005928{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005929 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
5930 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005931}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005932#endif