blob: e636f5829c35ca428e4f028dca0d15c92ca02f0d [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 Vlasenko6c9be7f2009-04-07 02:29:51 +000024 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000025 * parse_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 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000045 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000046 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000047 * &> and >& redirection of stdout+stderr
48 * Brace expansion
49 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000050 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000051 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000052 * TODOs:
53 * grep for "TODO" and fix (some of them are easy)
Eric Andersen83a2ae22001-05-07 17:59:25 +000054 * change { and } from special chars to reserved words
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000055 * builtins: return, ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000056 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000057 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000058 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000059 * SIGHUP handling
60 * ^Z handling (and explain it in comments for mere humans)
61 * separate job control from interactiveness
62 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
63 * functions
Eric Andersen25f27032001-04-26 23:22:31 +000064 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000065 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000066 */
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +000067
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000068#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenko424f79b2009-03-22 14:23:34 +000069//TODO: pull in some .h and find out whether we have SINGLE_APPLET_MAIN?
Denis Vlasenko61befda2008-11-25 01:36:03 +000070//#include "applet_tables.h" doesn't work
Denis Vlasenkobe709c22008-07-28 00:01:16 +000071#include <glob.h>
72/* #include <dmalloc.h> */
73#if ENABLE_HUSH_CASE
74#include <fnmatch.h>
75#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000076#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000077#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000078#ifndef PIPE_BUF
79# define PIPE_BUF 4096 /* amount of buffering in a pipe */
80#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000081
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000082#ifdef WANT_TO_TEST_NOMMU
83# undef BB_MMU
84# undef USE_FOR_NOMMU
85# undef USE_FOR_MMU
86# define BB_MMU 0
87# define USE_FOR_NOMMU(...) __VA_ARGS__
88# define USE_FOR_MMU(...)
89#endif
90
Denis Vlasenko61befda2008-11-25 01:36:03 +000091#if defined SINGLE_APPLET_MAIN
92/* STANDALONE does not make sense, and won't compile */
93#undef CONFIG_FEATURE_SH_STANDALONE
94#undef ENABLE_FEATURE_SH_STANDALONE
95#undef USE_FEATURE_SH_STANDALONE
96#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
97#define ENABLE_FEATURE_SH_STANDALONE 0
98#define USE_FEATURE_SH_STANDALONE(...)
99#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
100#endif
101
Denis Vlasenko05743d72008-02-10 12:10:08 +0000102#if !ENABLE_HUSH_INTERACTIVE
103#undef ENABLE_FEATURE_EDITING
104#define ENABLE_FEATURE_EDITING 0
105#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
106#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000107#endif
108
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000109/* Do we support ANY keywords? */
110#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
111#define HAS_KEYWORDS 1
112#define IF_HAS_KEYWORDS(...) __VA_ARGS__
113#define IF_HAS_NO_KEYWORDS(...)
114#else
115#define HAS_KEYWORDS 0
116#define IF_HAS_KEYWORDS(...)
117#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
118#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000119
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000120/* Keep unconditionally on for now */
121#define HUSH_DEBUG 1
122/* In progress... */
123#define ENABLE_HUSH_FUNCTIONS 0
124
125
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000126/* If you comment out one of these below, it will be #defined later
127 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000129/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000130#define debug_printf_parse(...) do {} while (0)
131#define debug_print_tree(a, b) do {} while (0)
132#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000133#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000134#define debug_printf_jobs(...) do {} while (0)
135#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000136#define debug_printf_glob(...) do {} while (0)
137#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000138#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000139#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000140
141#ifndef debug_printf
142#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000143#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000144
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000145#ifndef debug_printf_parse
146#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000147#endif
148
149#ifndef debug_printf_exec
150#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
151#endif
152
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000153#ifndef debug_printf_env
154#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
155#endif
156
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000157#ifndef debug_printf_jobs
158#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000159#define DEBUG_JOBS 1
160#else
161#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000162#endif
163
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000164#ifndef debug_printf_expand
165#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
166#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000167#else
168#define DEBUG_EXPAND 0
169#endif
170
171#ifndef debug_printf_glob
172#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
173#define DEBUG_GLOB 1
174#else
175#define DEBUG_GLOB 0
176#endif
177
178#ifndef debug_printf_list
179#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000180#endif
181
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000182#ifndef debug_printf_subst
183#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
184#endif
185
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000186#ifndef debug_printf_clean
187/* broken, of course, but OK for testing */
188static const char *indenter(int i)
189{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000190 static const char blanks[] ALIGN1 =
191 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000192 return &blanks[sizeof(blanks) - i - 1];
193}
194#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000195#define DEBUG_CLEAN 1
Denis Vlasenkoa0e65122009-04-05 23:39:14 +0000196#else
197#define DEBUG_CLEAN 0
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000198#endif
199
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000200#if DEBUG_EXPAND
201static void debug_print_strings(const char *prefix, char **vv)
202{
203 fprintf(stderr, "%s:\n", prefix);
204 while (*vv)
205 fprintf(stderr, " '%s'\n", *vv++);
206}
207#else
208#define debug_print_strings(prefix, vv) ((void)0)
209#endif
210
Denis Vlasenkof962a032007-11-23 12:50:54 +0000211/*
212 * Leak hunting. Use hush_leaktool.sh for post-processing.
213 */
214#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000215static void *xxmalloc(int lineno, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000216{
217 void *ptr = xmalloc((size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000218 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000219 return ptr;
220}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000221static void *xxrealloc(int lineno, void *ptr, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000222{
223 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000224 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000225 return ptr;
226}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000227static char *xxstrdup(int lineno, const char *str)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000228{
229 char *ptr = xstrdup(str);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000230 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000231 return ptr;
232}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000233static void xxfree(void *ptr)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000234{
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000235 fdprintf(2, "free %p\n", ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000236 free(ptr);
237}
238#define xmalloc(s) xxmalloc(__LINE__, s)
239#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
240#define xstrdup(s) xxstrdup(__LINE__, s)
241#define free(p) xxfree(p)
242#endif
243
244
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000245#define ERR_PTR ((void*)(long)1)
246
Mike Frysinger258275d2009-04-05 21:19:43 +0000247static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000248
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000249#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000250
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000251#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000252
Denis Vlasenko55789c62008-06-18 16:30:42 +0000253/* The descrip member of this structure is only used to make
254 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000255static const struct {
256 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000257 signed char default_fd;
258 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000259} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000260 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000261 { O_RDONLY, 0, "<" },
262 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
263 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000264 { O_RDONLY, 0, "<<" },
265 { O_CREAT|O_RDWR, 1, "<>" },
266/* Should not be needed. Bogus default_fd helps in debugging */
267/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000268};
269
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000270typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000271 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000272#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000273 RES_IF ,
274 RES_THEN ,
275 RES_ELIF ,
276 RES_ELSE ,
277 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000278#endif
279#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000280 RES_FOR ,
281 RES_WHILE ,
282 RES_UNTIL ,
283 RES_DO ,
284 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000285#endif
286#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000287 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000288#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000289#if ENABLE_HUSH_CASE
290 RES_CASE ,
291 /* two pseudo-keywords support contrived "case" syntax: */
292 RES_MATCH , /* "word)" */
293 RES_CASEI , /* "this command is inside CASE" */
294 RES_ESAC ,
295#endif
296 RES_XXXX ,
297 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000298} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000299
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000300typedef struct o_string {
301 char *data;
302 int length; /* position where data is appended */
303 int maxlen;
304 /* Protect newly added chars against globbing
305 * (by prepending \ to *, ?, [, \) */
306 smallint o_escape;
307 smallint o_glob;
308 smallint nonnull;
309 smallint has_empty_slot;
310 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
311} o_string;
312enum {
313 MAYBE_ASSIGNMENT = 0,
314 DEFINITELY_ASSIGNMENT = 1,
315 NOT_ASSIGNMENT = 2,
316 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
317};
318/* Used for initialization: o_string foo = NULL_O_STRING; */
319#define NULL_O_STRING { NULL }
320
321/* I can almost use ordinary FILE*. Is open_memstream() universally
322 * available? Where is it documented? */
323typedef struct in_str {
324 const char *p;
325 /* eof_flag=1: last char in ->p is really an EOF */
326 char eof_flag; /* meaningless if ->p == NULL */
327 char peek_buf[2];
328#if ENABLE_HUSH_INTERACTIVE
329 smallint promptme;
330 smallint promptmode; /* 0: PS1, 1: PS2 */
331#endif
332 FILE *file;
333 int (*get) (struct in_str *);
334 int (*peek) (struct in_str *);
335} in_str;
336#define i_getch(input) ((input)->get(input))
337#define i_peek(input) ((input)->peek(input))
338
Eric Andersen25f27032001-04-26 23:22:31 +0000339struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000340 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000341 char *rd_filename; /* filename */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000342 int rd_fd; /* file descriptor being redirected */
343 int rd_dup; /* -1, or file descriptor being duplicated */
344 smallint rd_type; /* (enum redir_type) */
345 /* note: for heredocs, rd_filename contains heredoc delimiter,
346 * and subsequently heredoc itself; and rd_dup is
347 * "do we need to trim leading tabs?" bool flag
348 */
Eric Andersen25f27032001-04-26 23:22:31 +0000349};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000350typedef enum redir_type {
351 REDIRECT_INVALID = 0,
352 REDIRECT_INPUT = 1,
353 REDIRECT_OVERWRITE = 2,
354 REDIRECT_APPEND = 3,
355 REDIRECT_HEREDOC = 4,
356 REDIRECT_IO = 5,
357 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
358} redir_type;
359
Eric Andersen25f27032001-04-26 23:22:31 +0000360
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000361struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000362 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000363 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000364 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000365 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000366 struct pipe *group; /* if non-NULL, this "command" is { list },
367 * ( list ), or a compound statement */
368#if !BB_MMU
369 char *group_as_string;
370#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000371 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000372 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000373};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000374/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
375 * and on execution these are substituted with their values.
376 * Substitution can make _several_ words out of one argv[n]!
377 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000378 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000379 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000380#define GRP_NORMAL 0
381#define GRP_SUBSHELL 1
382#if ENABLE_HUSH_FUNCTIONS
383#define GRP_FUNCTION 2
384#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000385
386struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000387 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000388 int num_cmds; /* total number of commands in job */
389 int alive_cmds; /* number of commands running (not exited) */
390 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000391#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000392 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000393 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000394 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000395#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000396 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000397 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000398 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
399 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000400};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000401typedef enum pipe_style {
402 PIPE_SEQ = 1,
403 PIPE_AND = 2,
404 PIPE_OR = 3,
405 PIPE_BG = 4,
406} pipe_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000407
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000408/* This holds pointers to the various results of parsing */
409struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000410 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000411 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000412 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000413 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000414 /* last command in pipe (being constructed right now) */
415 struct command *command;
416 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000417 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000418#if !BB_MMU
419 o_string as_string;
420#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000421#if HAS_KEYWORDS
422 smallint ctx_res_w;
423 smallint ctx_inverted; /* "! cmd | cmd" */
424#if ENABLE_HUSH_CASE
425 smallint ctx_dsemicolon; /* ";;" seen */
426#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000427 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
428 int old_flag;
429 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000430 * example: "if pipe1; pipe2; then pipe3; fi"
431 * when we see "if" or "then", we malloc and copy current context,
432 * and make ->stack point to it. then we parse pipeN.
433 * when closing "then" / fi" / whatever is found,
434 * we move list_head into ->stack->command->group,
435 * copy ->stack into current context, and delete ->stack.
436 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000437 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000438 struct parse_context *stack;
439#endif
440};
441
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000442/* On program start, environ points to initial environment.
443 * putenv adds new pointers into it, unsetenv removes them.
444 * Neither of these (de)allocates the strings.
445 * setenv allocates new strings in malloc space and does putenv,
446 * and thus setenv is unusable (leaky) for shell's purposes */
447#define setenv(...) setenv_is_leaky_dont_use()
448struct variable {
449 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000450 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000451 int max_len; /* if > 0, name is part of initial env; else name is malloced */
452 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000453 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000454};
455
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000456enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000457 BC_BREAK = 1,
458 BC_CONTINUE = 2,
459};
460
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000461
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000462/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000463/* Sorted roughly by size (smaller offsets == smaller code) */
464struct globals {
465#if ENABLE_HUSH_INTERACTIVE
466 /* 'interactive_fd' is a fd# open to ctty, if we have one
467 * _AND_ if we decided to act interactively */
468 int interactive_fd;
469 const char *PS1;
470 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000471#define G_interactive_fd (G.interactive_fd)
472#else
473#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000474#endif
475#if ENABLE_FEATURE_EDITING
476 line_input_t *line_input_state;
477#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000478 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000479 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000480#if ENABLE_HUSH_JOB
481 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000482 pid_t saved_tty_pgrp;
483 int last_jobid;
484 struct pipe *job_list;
485 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000486//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000487#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000488 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000489#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000490 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000491#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000492 smallint fake_mode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000493 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000494 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000495 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000496 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000497 /* how many non-NULL argv's we have. NB: $# + 1 */
498 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000499 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000500#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000501 char *argv0_for_re_execing;
502 char **argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000503#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000504#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000505 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000506 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000507#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000508 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000509 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000510 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000511 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000512 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000513// unsigned count_SIGCHLD;
514// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000515 /* which signals have non-DFL handler (even with no traps set)? */
516 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000517 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000518 sigset_t blocked_set;
519 sigset_t inherited_set;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000520 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
521#if ENABLE_FEATURE_SH_STANDALONE
522 struct nofork_save_area nofork_save;
523#endif
524#if ENABLE_HUSH_JOB
525 sigjmp_buf toplevel_jb;
526#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000527};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000528#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000529/* Not #defining name to G.name - this quickly gets unwieldy
530 * (too many defines). Also, I actually prefer to see when a variable
531 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000532#define INIT_G() do { \
533 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
534} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000535
536
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000537/* Function prototypes for builtins */
538static int builtin_cd(char **argv);
539static int builtin_echo(char **argv);
540static int builtin_eval(char **argv);
541static int builtin_exec(char **argv);
542static int builtin_exit(char **argv);
543static int builtin_export(char **argv);
544#if ENABLE_HUSH_JOB
545static int builtin_fg_bg(char **argv);
546static int builtin_jobs(char **argv);
547#endif
548#if ENABLE_HUSH_HELP
549static int builtin_help(char **argv);
550#endif
551static int builtin_pwd(char **argv);
552static int builtin_read(char **argv);
553static int builtin_test(char **argv);
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000554static int builtin_trap(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000555static int builtin_true(char **argv);
556static int builtin_set(char **argv);
557static int builtin_shift(char **argv);
558static int builtin_source(char **argv);
559static int builtin_umask(char **argv);
560static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000561static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000562#if ENABLE_HUSH_LOOPS
563static int builtin_break(char **argv);
564static int builtin_continue(char **argv);
565#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000566
567/* Table of built-in functions. They can be forked or not, depending on
568 * context: within pipes, they fork. As simple commands, they do not.
569 * When used in non-forking context, they can change global variables
570 * in the parent shell process. If forked, of course they cannot.
571 * For example, 'unset foo | whatever' will parse and run, but foo will
572 * still be set at the end. */
573struct built_in_command {
574 const char *cmd;
575 int (*function)(char **argv);
576#if ENABLE_HUSH_HELP
577 const char *descr;
578#define BLTIN(cmd, func, help) { cmd, func, help }
579#else
580#define BLTIN(cmd, func, help) { cmd, func }
581#endif
582};
583
584/* For now, echo and test are unconditionally enabled.
585 * Maybe make it configurable? */
586static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000587 BLTIN("." , builtin_source , "Run commands in a file"),
588 BLTIN(":" , builtin_true , "No-op"),
589 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000590#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000591 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000592#endif
593#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000594 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000595#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000596 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000597#if ENABLE_HUSH_LOOPS
598 BLTIN("continue", builtin_continue, "Start new loop iteration"),
599#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000600 BLTIN("echo" , builtin_echo , "Write to stdout"),
601 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
602 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
603 BLTIN("exit" , builtin_exit , "Exit"),
604 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000605#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000606 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000607#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000609 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000610#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000611#if ENABLE_HUSH_JOB
612 BLTIN("jobs" , builtin_jobs , "List active jobs"),
613#endif
614 BLTIN("pwd" , builtin_pwd , "Print current directory"),
615 BLTIN("read" , builtin_read , "Input environment variable"),
616// BLTIN("return" , builtin_return , "Return from a function"),
617 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
618 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
619 BLTIN("test" , builtin_test , "Test condition"),
620 BLTIN("trap" , builtin_trap , "Trap signals"),
621// BLTIN("ulimit" , builtin_return , "Control resource limits"),
622 BLTIN("umask" , builtin_umask , "Set file creation mask"),
623 BLTIN("unset" , builtin_unset , "Unset environment variable"),
624 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000625};
626
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000627
Mike Frysinger6379bb42009-03-28 18:55:03 +0000628static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000629{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000630 /* Was using fancy stuff:
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000631 * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000632 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000633 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
634#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerdfa9de72009-04-03 22:48:10 +0000635 if (G_interactive_fd)
636 fp = bb_error_msg;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000637#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000638 fp(msg ? "%s: %s" : notice, notice, msg);
639}
Mike Frysinger5a828452009-03-28 19:09:04 +0000640#if 1
641#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000642#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000643/* Debug -- trick gcc to expand __LINE__ and convert to string */
644#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
645#define _syntax(msg, line) __syntax(msg, line)
646#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000647#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000648
Denis Vlasenko552433b2009-04-04 19:29:21 +0000649
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000650static int glob_needed(const char *s)
651{
652 while (*s) {
653 if (*s == '\\')
654 s++;
655 if (*s == '*' || *s == '[' || *s == '?')
656 return 1;
657 s++;
658 }
659 return 0;
660}
661
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000662static int is_assignment(const char *s)
663{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000664 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000665 return 0;
666 s++;
667 while (isalnum(*s) || *s == '_')
668 s++;
669 return *s == '=';
670}
671
Denis Vlasenko55789c62008-06-18 16:30:42 +0000672/* Replace each \x with x in place, return ptr past NUL. */
673static char *unbackslash(char *src)
674{
675 char *dst = src;
676 while (1) {
677 if (*src == '\\')
678 src++;
679 if ((*dst++ = *src++) == '\0')
680 break;
681 }
682 return dst;
683}
684
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000685static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000686{
687 int i;
688 unsigned count1;
689 unsigned count2;
690 char **v;
691
692 v = strings;
693 count1 = 0;
694 if (v) {
695 while (*v) {
696 count1++;
697 v++;
698 }
699 }
700 count2 = 0;
701 v = add;
702 while (*v) {
703 count2++;
704 v++;
705 }
706 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
707 v[count1 + count2] = NULL;
708 i = count2;
709 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000710 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000711 return v;
712}
713
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000714static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000715{
716 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000717 v[0] = add;
718 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000719 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000720}
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000721
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000722static void putenv_all(char **strings)
723{
724 if (!strings)
725 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000726 while (*strings) {
727 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000728 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000729 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000730}
731
732static char **putenv_all_and_save_old(char **strings)
733{
734 char **old = NULL;
735 char **s = strings;
736
737 if (!strings)
738 return old;
739 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000740 char *v, *eq;
741
742 eq = strchr(*strings, '=');
743 if (eq) {
744 *eq = '\0';
745 v = getenv(*strings);
746 *eq = '=';
747 if (v) {
748 /* v points to VAL in VAR=VAL, go back to VAR */
749 v -= (eq - *strings) + 1;
750 old = add_string_to_strings(old, v);
751 }
752 }
753 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000754 }
755 putenv_all(s);
756 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000757}
758
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000759static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000760{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000761 char **v;
762
763 if (!strings)
764 return;
765
766 v = strings;
767 while (*v) {
768 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000769 debug_printf_env("unsetenv '%s'\n", *v);
770 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000771 }
772 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000773 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000774 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000775}
776
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000777static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000778{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000779 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000780}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000781
782
Denis Vlasenkod5762932009-03-31 11:22:57 +0000783/* Basic theory of signal handling in shell
784 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000785 * This does not describe what hush does, rather, it is current understanding
786 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000787 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
788 *
789 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
790 * is finished or backgrounded. It is the same in interactive and
791 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000792 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000793 * ^C or ^Z from keyboard seem to execute "at once" because it usually
794 * backgrounds (i.e. stops) or kills all members of currently running
795 * pipe.
796 *
797 * Wait builtin in interruptible by signals for which user trap is set
798 * or by SIGINT in interactive shell.
799 *
800 * Trap handlers will execute even within trap handlers. (right?)
801 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000802 * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000803 *
804 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000805 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000806 *
807 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000808 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000809 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000810 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
811 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000812 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000813 * Siganls which differ from SIG_DFL action
814 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000815 *
816 * SIGQUIT: ignore
817 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000818 * SIGHUP (interactive):
819 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000820 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000821 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
822 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000823 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000824 * of the command line, show prompt. NB: ^C does not send SIGINT
825 * to interactive shell while shell is waiting for a pipe,
826 * since shell is bg'ed (is not in foreground process group).
827 * (check/expand this)
828 * Example 1: this waits 5 sec, but does not execute ls:
829 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
830 * Example 2: this does not wait and does not execute ls:
831 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
832 * Example 3: this does not wait 5 sec, but executes ls:
833 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000834 *
835 * (What happens to signals which are IGN on shell start?)
836 * (What happens with signal mask on shell start?)
837 *
838 * Implementation in hush
839 * ======================
840 * We use in-kernel pending signal mask to determine which signals were sent.
841 * We block all signals which we don't want to take action immediately,
842 * i.e. we block all signals which need to have special handling as described
843 * above, and all signals which have traps set.
844 * After each pipe execution, we extract any pending signals via sigtimedwait()
845 * and act on them.
846 *
847 * unsigned non_DFL_mask: a mask of such "special" signals
848 * sigset_t blocked_set: current blocked signal set
849 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000850 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000851 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000852 * "trap 'cmd' SIGxxx":
853 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000854 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000855 * nothing for {} child shell (say, "true | { true; true; } | true")
856 * unset all traps if () shell. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000857 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000858 * POSIX says pending signal mask is cleared in child - no need to clear it.
859 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000860 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000861 * Note: as a result, we do not use signal handlers much. The only uses
862 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
863 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000864 */
865
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000866//static void SIGCHLD_handler(int sig UNUSED_PARAM)
867//{
868// G.count_SIGCHLD++;
869//}
870
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000871static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000872{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000873 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000874 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000875 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000876
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000877 if (sig)
878 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000879 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000880 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000881 if (sig <= 0)
882 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000883 jump_in:
884 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000885 if (G.traps && G.traps[sig]) {
886 if (G.traps[sig][0]) {
887 /* We have user-defined handler */
888 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000889 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000890 builtin_eval(argv);
891 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000892 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000893 } /* else: "" trap, ignoring signal */
894 continue;
895 }
896 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000897 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000898// case SIGCHLD:
899// G.count_SIGCHLD++;
900// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000901 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000902 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000903 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000904 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000905//TODO
906// case SIGHUP: ...
907// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +0000908 default: /* ignored: */
909 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000910 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000911 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000912 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000913 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000914}
915
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000916#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +0000917
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000918/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
919#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +0000920/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000921#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
922
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000923/* Restores tty foreground process group, and exits.
924 * May be called as signal handler for fatal signal
925 * (will faithfully resend signal to itself, producing correct exit state)
926 * or called directly with -EXITCODE.
927 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000928static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000929static void sigexit(int sig)
930{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000931 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000932 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000933
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000934 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000935 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000936 if (G_interactive_fd && getpid() == G.root_pid)
937 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000938
939 /* Not a signal, just exit */
940 if (sig <= 0)
941 _exit(- sig);
942
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000943 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000944}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000945#else
946
947#define disable_restore_tty_pgrp_on_exit() ((void)0)
948#define enable_restore_tty_pgrp_on_exit() ((void)0)
949
Denis Vlasenkoe0755e52009-04-03 21:16:45 +0000950#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000951
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000952/* Restores tty foreground process group, and exits. */
953static void hush_exit(int exitcode) NORETURN;
954static void hush_exit(int exitcode)
955{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000956 if (G.traps && G.traps[0] && G.traps[0][0]) {
957 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
Denis Vlasenkof9375282009-04-05 19:13:39 +0000958//TODO: do we need to prevent recursion?
Denis Vlasenkod5762932009-03-31 11:22:57 +0000959 builtin_eval(argv);
960 free(argv[1]);
961 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000962
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000963#if ENABLE_HUSH_JOB
964 fflush(NULL); /* flush all streams */
965 sigexit(- (exitcode & 0xff));
966#else
967 exit(exitcode);
968#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000969}
970
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000971
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000972static const char *set_cwd(void)
973{
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000974 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
975 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +0000976 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000977 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000978 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
979 if (!G.cwd)
980 G.cwd = bb_msg_unknown;
981 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000982}
983
Denis Vlasenko83506862007-11-23 13:11:42 +0000984
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000985/* Get/check local shell variables */
986static struct variable *get_local_var(const char *name)
987{
988 struct variable *cur;
989 int len;
990
991 if (!name)
992 return NULL;
993 len = strlen(name);
994 for (cur = G.top_var; cur; cur = cur->next) {
995 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
996 return cur;
997 }
998 return NULL;
999}
1000
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001001static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001002{
1003 struct variable *var = get_local_var(src);
1004 if (var)
1005 return strchr(var->varstr, '=') + 1;
1006 return NULL;
1007}
1008
1009/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001010 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001011 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001012 * 0: do not export
1013 * 1: export
1014 * -1: if NAME is set, leave export status alone
1015 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001016 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001017 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001018#if BB_MMU
1019#define set_local_var(str, flg_export, flg_read_only) \
1020 set_local_var(str, flg_export)
1021#endif
1022static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001023{
1024 struct variable *cur;
1025 char *value;
1026 int name_len;
1027
1028 value = strchr(str, '=');
1029 if (!value) { /* not expected to ever happen? */
1030 free(str);
1031 return -1;
1032 }
1033
1034 name_len = value - str + 1; /* including '=' */
1035 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1036 while (1) {
1037 if (strncmp(cur->varstr, str, name_len) != 0) {
1038 if (!cur->next) {
1039 /* Bail out. Note that now cur points
1040 * to last var in linked list */
1041 break;
1042 }
1043 cur = cur->next;
1044 continue;
1045 }
1046 /* We found an existing var with this name */
1047 *value = '\0';
1048 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001049#if !BB_MMU
1050 if (!flg_read_only)
1051#endif
1052 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001053 free(str);
1054 return -1;
1055 }
1056 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1057 unsetenv(str); /* just in case */
1058 *value = '=';
1059 if (strcmp(cur->varstr, str) == 0) {
1060 free_and_exp:
1061 free(str);
1062 goto exp;
1063 }
1064 if (cur->max_len >= strlen(str)) {
1065 /* This one is from startup env, reuse space */
1066 strcpy(cur->varstr, str);
1067 goto free_and_exp;
1068 }
1069 /* max_len == 0 signifies "malloced" var, which we can
1070 * (and has to) free */
1071 if (!cur->max_len)
1072 free(cur->varstr);
1073 cur->max_len = 0;
1074 goto set_str_and_exp;
1075 }
1076
1077 /* Not found - create next variable struct */
1078 cur->next = xzalloc(sizeof(*cur));
1079 cur = cur->next;
1080
1081 set_str_and_exp:
1082 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001083#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001084 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001085#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001086 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001087 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001088 cur->flg_export = 1;
1089 if (cur->flg_export) {
1090 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1091 return putenv(cur->varstr);
1092 }
1093 return 0;
1094}
1095
Mike Frysingerd690f682009-03-30 06:50:54 +00001096static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001097{
1098 struct variable *cur;
1099 struct variable *prev = prev; /* for gcc */
1100 int name_len;
1101
1102 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001103 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001104 name_len = strlen(name);
1105 cur = G.top_var;
1106 while (cur) {
1107 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1108 if (cur->flg_read_only) {
1109 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001110 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001111 }
1112 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1113 * is ro, and we cannot reach this code on the 1st pass */
1114 prev->next = cur->next;
1115 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1116 bb_unsetenv(cur->varstr);
1117 if (!cur->max_len)
1118 free(cur->varstr);
1119 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001120 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001121 }
1122 prev = cur;
1123 cur = cur->next;
1124 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001125 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001126}
1127
Mike Frysinger98c52642009-04-02 10:02:37 +00001128#if ENABLE_SH_MATH_SUPPORT
1129#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1130#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1131static char *endofname(const char *name)
1132{
1133 char *p;
1134
1135 p = (char *) name;
1136 if (!is_name(*p))
1137 return p;
1138 while (*++p) {
1139 if (!is_in_name(*p))
1140 break;
1141 }
1142 return p;
1143}
1144
1145static void arith_set_local_var(const char *name, const char *val, int flags)
1146{
1147 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001148 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001149 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001150}
1151#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001152
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001153
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001154/*
1155 * in_str support
1156 */
1157static int static_get(struct in_str *i)
1158{
1159 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001160 if (ch != '\0')
1161 return ch;
1162 i->p--;
1163 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001164}
1165
1166static int static_peek(struct in_str *i)
1167{
1168 return *i->p;
1169}
1170
1171#if ENABLE_HUSH_INTERACTIVE
1172
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001173static void cmdedit_set_initial_prompt(void)
1174{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001175 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1176 G.PS1 = getenv("PS1");
1177 if (G.PS1 == NULL)
1178 G.PS1 = "\\w \\$ ";
1179 } else
1180 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001181}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001182
1183static const char* setup_prompt_string(int promptmode)
1184{
1185 const char *prompt_str;
1186 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001187 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1188 /* Set up the prompt */
1189 if (promptmode == 0) { /* PS1 */
1190 free((char*)G.PS1);
1191 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1192 prompt_str = G.PS1;
1193 } else
1194 prompt_str = G.PS2;
1195 } else
1196 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001197 debug_printf("result '%s'\n", prompt_str);
1198 return prompt_str;
1199}
1200
1201static void get_user_input(struct in_str *i)
1202{
1203 int r;
1204 const char *prompt_str;
1205
1206 prompt_str = setup_prompt_string(i->promptmode);
1207#if ENABLE_FEATURE_EDITING
1208 /* Enable command line editing only while a command line
1209 * is actually being read */
1210 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001211 G.flag_SIGINT = 0;
1212 /* buglet: SIGINT will not make new prompt to appear _at once_,
1213 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001214 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001215 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001216 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001217 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001218 i->eof_flag = (r < 0);
1219 if (i->eof_flag) { /* EOF/error detected */
1220 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1221 G.user_input_buf[1] = '\0';
1222 }
1223#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001224 do {
1225 G.flag_SIGINT = 0;
1226 fputs(prompt_str, stdout);
1227 fflush(stdout);
1228 G.user_input_buf[0] = r = fgetc(i->file);
1229 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001230//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001231 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001232 i->eof_flag = (r == EOF);
1233#endif
1234 i->p = G.user_input_buf;
1235}
1236
1237#endif /* INTERACTIVE */
1238
1239/* This is the magic location that prints prompts
1240 * and gets data back from the user */
1241static int file_get(struct in_str *i)
1242{
1243 int ch;
1244
1245 /* If there is data waiting, eat it up */
1246 if (i->p && *i->p) {
1247#if ENABLE_HUSH_INTERACTIVE
1248 take_cached:
1249#endif
1250 ch = *i->p++;
1251 if (i->eof_flag && !*i->p)
1252 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001253 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001254 } else {
1255 /* need to double check i->file because we might be doing something
1256 * more complicated by now, like sourcing or substituting. */
1257#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001258 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001259 do {
1260 get_user_input(i);
1261 } while (!*i->p); /* need non-empty line */
1262 i->promptmode = 1; /* PS2 */
1263 i->promptme = 0;
1264 goto take_cached;
1265 }
1266#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001267 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001268 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001269 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001270#if ENABLE_HUSH_INTERACTIVE
1271 if (ch == '\n')
1272 i->promptme = 1;
1273#endif
1274 return ch;
1275}
1276
Denis Vlasenko913a2012009-04-05 22:17:04 +00001277/* All callers guarantee this routine will never
1278 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001279 */
1280static int file_peek(struct in_str *i)
1281{
1282 int ch;
1283 if (i->p && *i->p) {
1284 if (i->eof_flag && !i->p[1])
1285 return EOF;
1286 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001287 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001288 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001289 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001290 i->eof_flag = (ch == EOF);
1291 i->peek_buf[0] = ch;
1292 i->peek_buf[1] = '\0';
1293 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001294 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001295 return ch;
1296}
1297
1298static void setup_file_in_str(struct in_str *i, FILE *f)
1299{
1300 i->peek = file_peek;
1301 i->get = file_get;
1302#if ENABLE_HUSH_INTERACTIVE
1303 i->promptme = 1;
1304 i->promptmode = 0; /* PS1 */
1305#endif
1306 i->file = f;
1307 i->p = NULL;
1308}
1309
1310static void setup_string_in_str(struct in_str *i, const char *s)
1311{
1312 i->peek = static_peek;
1313 i->get = static_get;
1314#if ENABLE_HUSH_INTERACTIVE
1315 i->promptme = 1;
1316 i->promptmode = 0; /* PS1 */
1317#endif
1318 i->p = s;
1319 i->eof_flag = 0;
1320}
1321
1322
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001323/*
1324 * o_string support
1325 */
1326#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001327
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001328static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001329{
1330 o->length = 0;
1331 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001332 if (o->data)
1333 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001334}
1335
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001336static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001337{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001338 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001339 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001340}
1341
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001342static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1343{
1344 free(o->data);
1345}
1346
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001347static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001348{
1349 if (o->length + len > o->maxlen) {
1350 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1351 o->data = xrealloc(o->data, 1 + o->maxlen);
1352 }
1353}
1354
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001355static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001356{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001357 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1358 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001359 o->data[o->length] = ch;
1360 o->length++;
1361 o->data[o->length] = '\0';
1362}
1363
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001364static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001365{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001366 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001367 memcpy(&o->data[o->length], str, len);
1368 o->length += len;
1369 o->data[o->length] = '\0';
1370}
1371
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001372#if !BB_MMU
1373static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001374{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001375 o_addblock(o, str, strlen(str));
1376}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001377static void nommu_addchr(o_string *o, int ch)
1378{
1379 if (o)
1380 o_addchr(o, ch);
1381}
1382#else
1383#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001384#endif
1385
1386static void o_addstr_with_NUL(o_string *o, const char *str)
1387{
1388 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001389}
1390
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001391static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001392{
1393 while (len) {
1394 o_addchr(o, *str);
1395 if (*str++ == '\\'
1396 && (*str != '*' && *str != '?' && *str != '[')
1397 ) {
1398 o_addchr(o, '\\');
1399 }
1400 len--;
1401 }
1402}
1403
Eric Andersen25f27032001-04-26 23:22:31 +00001404/* My analysis of quoting semantics tells me that state information
1405 * is associated with a destination, not a source.
1406 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001407static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001408{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001409 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001410 char *found = strchr("*?[\\", ch);
1411 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001412 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001413 o_grow_by(o, sz);
1414 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001415 o->data[o->length] = '\\';
1416 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001417 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001418 o->data[o->length] = ch;
1419 o->length++;
1420 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001421}
1422
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001423static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001424{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001425 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001426 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001427 sz++;
1428 o->data[o->length] = '\\';
1429 o->length++;
1430 }
1431 o_grow_by(o, sz);
1432 o->data[o->length] = ch;
1433 o->length++;
1434 o->data[o->length] = '\0';
1435}
1436
1437static void o_addQstr(o_string *o, const char *str, int len)
1438{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001439 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001440 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001441 return;
1442 }
1443 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001444 char ch;
1445 int sz;
1446 int ordinary_cnt = strcspn(str, "*?[\\");
1447 if (ordinary_cnt > len) /* paranoia */
1448 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001449 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001450 if (ordinary_cnt == len)
1451 return;
1452 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001453 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001454
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001455 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001456 sz = 1;
1457 if (ch) { /* it is necessarily one of "*?[\\" */
1458 sz++;
1459 o->data[o->length] = '\\';
1460 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001461 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001462 o_grow_by(o, sz);
1463 o->data[o->length] = ch;
1464 o->length++;
1465 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001466 }
1467}
1468
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001469/* A special kind of o_string for $VAR and `cmd` expansion.
1470 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001471 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001472 * list[i] contains an INDEX (int!) into this string data.
1473 * It means that if list[] needs to grow, data needs to be moved higher up
1474 * but list[i]'s need not be modified.
1475 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001476 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001477 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1478 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001479#if DEBUG_EXPAND || DEBUG_GLOB
1480static void debug_print_list(const char *prefix, o_string *o, int n)
1481{
1482 char **list = (char**)o->data;
1483 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1484 int i = 0;
1485 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1486 prefix, list, n, string_start, o->length, o->maxlen);
1487 while (i < n) {
1488 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1489 o->data + (int)list[i] + string_start,
1490 o->data + (int)list[i] + string_start);
1491 i++;
1492 }
1493 if (n) {
1494 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001495 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001496 }
1497}
1498#else
1499#define debug_print_list(prefix, o, n) ((void)0)
1500#endif
1501
1502/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1503 * in list[n] so that it points past last stored byte so far.
1504 * It returns n+1. */
1505static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001506{
1507 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001508 int string_start;
1509 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001510
1511 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001512 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1513 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001514 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001515 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001516 /* list[n] points to string_start, make space for 16 more pointers */
1517 o->maxlen += 0x10 * sizeof(list[0]);
1518 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001519 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001520 memmove(list + n + 0x10, list + n, string_len);
1521 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001522 } else {
1523 debug_printf_list("list[%d]=%d string_start=%d\n",
1524 n, string_len, string_start);
1525 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001526 } else {
1527 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001528 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1529 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001530 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1531 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001532 o->has_empty_slot = 0;
1533 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001534 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001535 return n + 1;
1536}
1537
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001538/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001539static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001540{
1541 char **list = (char**)o->data;
1542 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1543
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001544 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001545}
1546
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001547/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001548 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001549static int o_glob(o_string *o, int n)
1550{
1551 glob_t globdata;
1552 int gr;
1553 char *pattern;
1554
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001555 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001556 if (!o->data)
1557 return o_save_ptr_helper(o, n);
1558 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001559 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001560 if (!glob_needed(pattern)) {
1561 literal:
1562 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001563 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001564 return o_save_ptr_helper(o, n);
1565 }
1566
1567 memset(&globdata, 0, sizeof(globdata));
1568 gr = glob(pattern, 0, NULL, &globdata);
1569 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1570 if (gr == GLOB_NOSPACE)
1571 bb_error_msg_and_die("out of memory during glob");
1572 if (gr == GLOB_NOMATCH) {
1573 globfree(&globdata);
1574 goto literal;
1575 }
1576 if (gr != 0) { /* GLOB_ABORTED ? */
1577//TODO: testcase for bad glob pattern behavior
1578 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1579 }
1580 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1581 char **argv = globdata.gl_pathv;
1582 o->length = pattern - o->data; /* "forget" pattern */
1583 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001584 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001585 n = o_save_ptr_helper(o, n);
1586 argv++;
1587 if (!*argv)
1588 break;
1589 }
1590 }
1591 globfree(&globdata);
1592 if (DEBUG_GLOB)
1593 debug_print_list("o_glob returning", o, n);
1594 return n;
1595}
1596
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001597/* If o->o_glob == 1, glob the string so far remembered.
1598 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001599static int o_save_ptr(o_string *o, int n)
1600{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001601 if (o->o_glob) { /* if globbing is requested */
1602 /* If o->has_empty_slot, list[n] was already globbed
1603 * (if it was requested back then when it was filled)
1604 * so don't do that again! */
1605 if (!o->has_empty_slot)
1606 return o_glob(o, n); /* o_save_ptr_helper is inside */
1607 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001608 return o_save_ptr_helper(o, n);
1609}
1610
1611/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001612static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001613{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001614 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001615 int string_start;
1616
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001617 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1618 if (DEBUG_EXPAND)
1619 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001620 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001621 list = (char**)o->data;
1622 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1623 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001624 while (n) {
1625 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001626 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001627 }
1628 return list;
1629}
1630
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001631
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001632/* Expansion can recurse */
1633#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001634static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001635#endif
1636static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001637#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001638#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001639 parse_stream_dquoted(dest, input, dquote_end)
1640#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001641static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001642 o_string *dest,
1643 struct in_str *input,
1644 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001645
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001646/* expand_strvec_to_strvec() takes a list of strings, expands
1647 * all variable references within and returns a pointer to
1648 * a list of expanded strings, possibly with larger number
1649 * of strings. (Think VAR="a b"; echo $VAR).
1650 * This new list is allocated as a single malloc block.
1651 * NULL-terminated list of char* pointers is at the beginning of it,
1652 * followed by strings themself.
1653 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001654
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001655/* Store given string, finalizing the word and starting new one whenever
1656 * we encounter IFS char(s). This is used for expanding variable values.
1657 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1658static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001659{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001660 while (1) {
1661 int word_len = strcspn(str, G.ifs);
1662 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001663 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001664 o_addQstr(output, str, word_len);
1665 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001666 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001667 str += word_len;
1668 }
1669 if (!*str) /* EOL - do not finalize word */
1670 break;
1671 o_addchr(output, '\0');
1672 debug_print_list("expand_on_ifs", output, n);
1673 n = o_save_ptr(output, n);
1674 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001675 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001676 debug_print_list("expand_on_ifs[1]", output, n);
1677 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001678}
1679
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001680/* Expand all variable references in given string, adding words to list[]
1681 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1682 * to be filled). This routine is extremely tricky: has to deal with
1683 * variables/parameters with whitespace, $* and $@, and constructs like
1684 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1685static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001686{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001687 /* or_mask is either 0 (normal case) or 0x80
1688 * (expansion of right-hand side of assignment == 1-element expand.
1689 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001690
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001691 char first_ch, ored_ch;
1692 int i;
1693 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001694 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001695
Mike Frysingera4f331d2009-04-07 06:03:22 +00001696 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001697 ored_ch = 0;
1698
1699 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1700 debug_print_list("expand_vars_to_list", output, n);
1701 n = o_save_ptr(output, n);
1702 debug_print_list("expand_vars_to_list[0]", output, n);
1703
1704 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1705#if ENABLE_HUSH_TICK
1706 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001707#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001708#if ENABLE_SH_MATH_SUPPORT
1709 char arith_buf[sizeof(arith_t)*3 + 2];
1710#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001711 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001712 debug_print_list("expand_vars_to_list[1]", output, n);
1713 arg = ++p;
1714 p = strchr(p, SPECIAL_VAR_SYMBOL);
1715
1716 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1717 /* "$@" is special. Even if quoted, it can still
1718 * expand to nothing (not even an empty string) */
1719 if ((first_ch & 0x7f) != '@')
1720 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001721
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001722 val = NULL;
1723 switch (first_ch & 0x7f) {
1724 /* Highest bit in first_ch indicates that var is double-quoted */
1725 case '$': /* pid */
1726 val = utoa(G.root_pid);
1727 break;
1728 case '!': /* bg pid */
1729 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1730 break;
1731 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001732 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001733 break;
1734 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001735 if (arg[1] != SPECIAL_VAR_SYMBOL)
1736 /* actually, it's a ${#var} */
1737 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001738 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1739 break;
1740 case '*':
1741 case '@':
1742 i = 1;
1743 if (!G.global_argv[i])
1744 break;
1745 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1746 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001747 smallint sv = output->o_escape;
1748 /* unquoted var's contents should be globbed, so don't escape */
1749 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001750 while (G.global_argv[i]) {
1751 n = expand_on_ifs(output, n, G.global_argv[i]);
1752 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1753 if (G.global_argv[i++][0] && G.global_argv[i]) {
1754 /* this argv[] is not empty and not last:
1755 * put terminating NUL, start new word */
1756 o_addchr(output, '\0');
1757 debug_print_list("expand_vars_to_list[2]", output, n);
1758 n = o_save_ptr(output, n);
1759 debug_print_list("expand_vars_to_list[3]", output, n);
1760 }
1761 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001762 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001763 } else
1764 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1765 * and in this case should treat it like '$*' - see 'else...' below */
1766 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1767 while (1) {
1768 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1769 if (++i >= G.global_argc)
1770 break;
1771 o_addchr(output, '\0');
1772 debug_print_list("expand_vars_to_list[4]", output, n);
1773 n = o_save_ptr(output, n);
1774 }
1775 } else { /* quoted $*: add as one word */
1776 while (1) {
1777 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1778 if (!G.global_argv[++i])
1779 break;
1780 if (G.ifs[0])
1781 o_addchr(output, G.ifs[0]);
1782 }
1783 }
1784 break;
1785 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1786 /* "Empty variable", used to make "" etc to not disappear */
1787 arg++;
1788 ored_ch = 0x80;
1789 break;
1790#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001791 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001792 *p = '\0';
1793 arg++;
1794//TODO: can we just stuff it into "output" directly?
1795 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001796 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001797 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1798 val = subst_result.data;
1799 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001800#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001801#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001802 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001803 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001804 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001805 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001806 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001807
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001808 arg++; /* skip '+' */
1809 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001810 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001811
1812 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
Denis Vlasenkob1d11bf2009-04-06 12:24:58 +00001813 exp_str = NULL;
1814 if (strchr(arg, '$') != NULL
1815#if ENABLE_HUSH_TICK
1816 || strchr(arg, '`') != NULL
1817#endif
1818 ) {
1819 /* We need to expand. Example:
1820 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1821 */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001822 struct in_str input;
1823 o_string dest = NULL_O_STRING;
1824
1825 setup_string_in_str(&input, arg);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001826 parse_stream_dquoted(NULL, &dest, &input, EOF);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001827 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1828 exp_str = expand_string_to_string(dest.data);
1829 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
Denis Vlasenko5e883fb2009-04-06 12:28:34 +00001830 o_free_unsafe(&dest);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001831 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001832 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001833 hooks.setvar = arith_set_local_var;
1834 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001835 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1836 free(exp_str);
1837
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001838 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001839 switch (errcode) {
1840 case -3: maybe_die("arith", "exponent less than 0"); break;
1841 case -2: maybe_die("arith", "divide by zero"); break;
1842 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001843 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001844 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001845 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001846 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001847 sprintf(arith_buf, arith_t_fmt, res);
1848 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001849 break;
1850 }
1851#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001852 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001853 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001854 bool exp_len = false;
1855 bool exp_null = false;
1856 char *var = arg;
1857 char exp_save = exp_save; /* for compiler */
1858 char exp_op = exp_op; /* for compiler */
1859 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001860 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001861
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001862 *p = '\0';
1863 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001864
1865 /* prepare for expansions */
1866 if (var[0] == '#') {
1867 /* handle length expansion ${#var} */
1868 exp_len = true;
1869 ++var;
1870 } else {
1871 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00001872 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00001873 if (!var[exp_off])
1874 exp_off = 0;
1875 if (exp_off) {
1876 exp_save = var[exp_off];
1877 exp_null = exp_save == ':';
1878 exp_word = var + exp_off;
1879 if (exp_null) ++exp_word;
1880 exp_op = *exp_word++;
1881 var[exp_off] = '\0';
1882 }
1883 }
1884
1885 /* lookup the variable in question */
1886 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001887 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001888 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001889 if (i < G.global_argc)
1890 val = G.global_argv[i];
1891 /* else val remains NULL: $N with too big N */
1892 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001893 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001894
1895 /* handle any expansions */
1896 if (exp_len) {
1897 debug_printf_expand("expand: length of '%s' = ", val);
1898 val = utoa(val ? strlen(val) : 0);
1899 debug_printf_expand("%s\n", val);
1900 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00001901 if (exp_op == '%' || exp_op == '#') {
1902 /* we need to do a pattern match */
1903 bool zero;
1904 char *loc;
1905 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
1906 if (exp_op == *exp_word) /* ## or %% */
1907 ++exp_word;
1908 val = dyn_val = xstrdup(val);
1909 loc = scan(dyn_val, exp_word, zero);
1910 if (zero)
1911 val = loc;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001912 else
Mike Frysingera4f331d2009-04-07 06:03:22 +00001913 *loc = '\0';
1914 } else {
1915 /* we need to do an expansion */
1916 int exp_test = (!val || (exp_null && !val[0]));
1917 if (exp_op == '+')
1918 exp_test = !exp_test;
1919 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1920 exp_null ? "true" : "false", exp_test);
1921 if (exp_test) {
1922 if (exp_op == '?')
1923 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1924 else
1925 val = exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001926
Mike Frysingera4f331d2009-04-07 06:03:22 +00001927 if (exp_op == '=') {
1928 if (isdigit(var[0]) || var[0] == '#') {
1929 maybe_die(var, "special vars cannot assign in this way");
1930 val = NULL;
1931 } else {
1932 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1933 sprintf(new_var, "%s=%s", var, val);
1934 set_local_var(new_var, -1, 0);
1935 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001936 }
1937 }
1938 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00001939
Mike Frysinger6379bb42009-03-28 18:55:03 +00001940 var[exp_off] = exp_save;
1941 }
1942
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001943 arg[0] = first_ch;
1944#if ENABLE_HUSH_TICK
1945 store_val:
1946#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001947 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001948 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001949 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001950 /* unquoted var's contents should be globbed, so don't escape */
1951 smallint sv = output->o_escape;
1952 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001953 n = expand_on_ifs(output, n, val);
1954 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001955 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001956 }
1957 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001958 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001960 } /* default: */
1961 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001962 if (val) {
1963 o_addQstr(output, val, strlen(val));
1964 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00001965 free(dyn_val);
1966 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001967 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001968 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001969 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001970
1971#if ENABLE_HUSH_TICK
1972 o_free(&subst_result);
1973#endif
1974 arg = ++p;
1975 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1976
1977 if (arg[0]) {
1978 debug_print_list("expand_vars_to_list[a]", output, n);
1979 /* this part is literal, and it was already pre-quoted
1980 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001981 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001982 debug_print_list("expand_vars_to_list[b]", output, n);
1983 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
1984 && !(ored_ch & 0x80) /* and all vars were not quoted. */
1985 ) {
1986 n--;
1987 /* allow to reuse list[n] later without re-growth */
1988 output->has_empty_slot = 1;
1989 } else {
1990 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00001991 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001993}
1994
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001995static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001996{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001997 int n;
1998 char **list;
1999 char **v;
2000 o_string output = NULL_O_STRING;
2001
2002 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002003 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004 /* (unquoted $var will temporarily switch it off) */
2005 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002006 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002007
2008 n = 0;
2009 v = argv;
2010 while (*v) {
2011 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2012 v++;
2013 }
2014 debug_print_list("expand_variables", &output, n);
2015
2016 /* output.data (malloced in one block) gets returned in "list" */
2017 list = o_finalize_list(&output, n);
2018 debug_print_strings("expand_variables[1]", list);
2019 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002020}
2021
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002022static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002023{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002024 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002025}
2026
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002027/* Used for expansion of right hand of assignments */
2028/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2029 * "v=/bin/c*" */
2030static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002031{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002032 char *argv[2], **list;
2033
2034 argv[0] = (char*)str;
2035 argv[1] = NULL;
2036 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2037 if (HUSH_DEBUG)
2038 if (!list[0] || list[1])
2039 bb_error_msg_and_die("BUG in varexp2");
2040 /* actually, just move string 2*sizeof(char*) bytes back */
2041 overlapping_strcpy((char*)list, list[0]);
2042 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2043 return (char*)list;
2044}
2045
2046/* Used for "eval" builtin */
2047static char* expand_strvec_to_string(char **argv)
2048{
2049 char **list;
2050
2051 list = expand_variables(argv, 0x80);
2052 /* Convert all NULs to spaces */
2053 if (list[0]) {
2054 int n = 1;
2055 while (list[n]) {
2056 if (HUSH_DEBUG)
2057 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2058 bb_error_msg_and_die("BUG in varexp3");
2059 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2060 n++;
2061 }
2062 }
2063 overlapping_strcpy((char*)list, list[0]);
2064 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2065 return (char*)list;
2066}
2067
2068static char **expand_assignments(char **argv, int count)
2069{
2070 int i;
2071 char **p = NULL;
2072 /* Expand assignments into one string each */
2073 for (i = 0; i < count; i++) {
2074 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2075 }
2076 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002077}
2078
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002079
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002080#if BB_MMU
2081void re_execute_shell(const char *s, int is_heredoc); /* never called */
2082#define clean_up_after_re_execute() ((void)0)
2083static void reset_traps_to_defaults(void)
2084{
2085 unsigned sig;
2086 int dirty;
2087
2088 if (!G.traps)
2089 return;
2090 dirty = 0;
2091 for (sig = 0; sig < NSIG; sig++) {
2092 if (!G.traps[sig])
2093 continue;
2094 free(G.traps[sig]);
2095 G.traps[sig] = NULL;
2096 /* There is no signal for 0 (EXIT) */
2097 if (sig == 0)
2098 continue;
2099 /* there was a trap handler, we are removing it
2100 * (if sig has non-DFL handling,
2101 * we don't need to do anything) */
2102 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2103 continue;
2104 sigdelset(&G.blocked_set, sig);
2105 dirty = 1;
2106 }
2107 if (dirty)
2108 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2109}
2110
2111#else /* !BB_MMU */
2112
2113static void re_execute_shell(const char *s, int is_heredoc) NORETURN;
2114static void re_execute_shell(const char *s, int is_heredoc)
2115{
2116 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
2117 struct variable *cur;
2118 char **argv, **pp, **pp2;
2119 unsigned cnt;
2120
2121 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2122 , (unsigned) G.root_pid
2123 , (unsigned) G.last_bg_pid
2124 , (unsigned) G.last_exitcode
2125 USE_HUSH_LOOPS(, G.depth_of_loop)
2126 );
2127 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...>
2128 * 3:-c 4:<cmd> <argN...> 5:NULL
2129 */
2130 cnt = 5 + G.global_argc;
2131 for (cur = G.top_var; cur; cur = cur->next) {
2132 if (!cur->flg_export || cur->flg_read_only)
2133 cnt += 2;
2134 }
2135 G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt);
2136 *pp++ = (char *) G.argv0_for_re_execing;
2137 *pp++ = param_buf;
2138 for (cur = G.top_var; cur; cur = cur->next) {
2139 if (cur->varstr == hush_version_str)
2140 continue;
2141 if (cur->flg_read_only) {
2142 *pp++ = (char *) "-R";
2143 *pp++ = cur->varstr;
2144 } else if (!cur->flg_export) {
2145 *pp++ = (char *) "-V";
2146 *pp++ = cur->varstr;
2147 }
2148 }
2149//TODO: pass functions
2150 /* We can pass activated traps here. Say, -Tnn:trap_string
2151 *
2152 * However, POSIX says that subshells reset signals with traps
2153 * to SIG_DFL.
2154 * I tested bash-3.2 and it not only does that with true subshells
2155 * of the form ( list ), but with any forked children shells.
2156 * I set trap "echo W" WINCH; and then tried:
2157 *
2158 * { echo 1; sleep 20; echo 2; } &
2159 * while true; do echo 1; sleep 20; echo 2; break; done &
2160 * true | { echo 1; sleep 20; echo 2; } | cat
2161 *
2162 * In all these cases sending SIGWINCH to the child shell
2163 * did not run the trap. If I add trap "echo V" WINCH;
2164 * _inside_ group (just before echo 1), it works.
2165 *
2166 * I conclude it means we don't need to pass active traps here.
2167 * exec syscall below resets them to SIG_DFL for us.
2168 */
2169 *pp++ = (char *) (is_heredoc ? "-<" : "-c");
2170 *pp++ = (char *) s;
2171 pp2 = G.global_argv;
2172 while (*pp2)
2173 *pp++ = *pp2++;
2174 /* *pp = NULL; - is already there */
2175
2176 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2177 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2178 execv(bb_busybox_exec_path, G.argv_from_re_execing);
2179 /* Fallback. Useful for init=/bin/hush usage etc */
2180 if (G.argv0_for_re_execing[0] == '/')
2181 execv(G.argv0_for_re_execing, G.argv_from_re_execing);
2182 xfunc_error_retval = 127;
2183 bb_error_msg_and_die("can't re-execute the shell");
2184}
2185
2186static void clean_up_after_re_execute(void)
2187{
2188 char **pp = G.argv_from_re_execing;
2189 if (pp) {
2190 /* Must match re_execute_shell's allocations (if any) */
2191 free(pp);
2192 G.argv_from_re_execing = NULL;
2193 }
2194}
2195#endif /* !BB_MMU */
2196
2197
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002198static void setup_heredoc(int fd, const char *heredoc)
2199{
2200 struct fd_pair pair;
2201 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002202 int len, written;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002203
2204 xpiped_pair(pair);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002205 xmove_fd(pair.rd, fd);
2206
2207 len = strlen(heredoc);
2208 /* Try writing without forking. Newer kernels have
2209 * dynamically growing pipes. Must use non-blocking write! */
2210 ndelay_on(pair.wr);
2211 while (1) {
2212 written = write(pair.wr, heredoc, len);
2213 if (written <= 0)
2214 break;
2215 len -= written;
2216 if (len == 0) {
2217 close(pair.wr);
2218 return;
2219 }
2220 heredoc += written;
2221 }
2222 ndelay_off(pair.wr);
2223
2224 /* Okay, pipe buffer was not big enough */
2225 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002226 * for the unsuspecting parent process. Child creates a grandchild
2227 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002228 * (that exec happens after we return from this function) */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002229 pid = vfork();
2230 if (pid < 0)
2231 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002232 if (pid == 0) {
2233 /* child */
2234 pid = BB_MMU ? fork() : vfork();
2235 if (pid < 0)
2236 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2237 if (pid != 0)
2238 _exit(0);
2239 /* grandchild */
2240 close(fd); /* read side of the pipe */
2241#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002242 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002243 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002244#else
2245 /* Delegate blocking writes to another process */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002246 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002247 xmove_fd(pair.wr, STDOUT_FILENO);
2248 re_execute_shell(heredoc, 1);
2249#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002250 }
2251 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002252 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002253 clean_up_after_re_execute();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002254 close(pair.wr);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002255 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002256}
2257
Eric Andersen25f27032001-04-26 23:22:31 +00002258/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2259 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002260static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002261{
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002262//TODO: no callers ever check return value - ?!
Eric Andersen25f27032001-04-26 23:22:31 +00002263 int openfd, mode;
2264 struct redir_struct *redir;
2265
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002266 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002267 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002268 if (squirrel && redir->rd_fd < 3) {
2269 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002270 }
2271 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2272 * of the heredoc */
2273 debug_printf_parse("set heredoc '%s'\n",
2274 redir->rd_filename);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002275 setup_heredoc(redir->rd_fd, redir->rd_filename);
Eric Andersen817e73c2001-06-06 17:56:09 +00002276 continue;
2277 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002278
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002279 if (redir->rd_dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002280 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002281 if (redir->rd_filename == NULL) {
2282 /* Something went wrong in the parse.
2283 * Pretend it didn't happen */
2284 continue;
2285 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002286 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002287//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002288 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002289 openfd = open_or_warn(p, mode);
2290 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002291 if (openfd < 0) {
2292 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002293 * bash and ash both lose it as well (though zsh doesn't!) */
2294//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002295 return 1;
2296 }
2297 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002298 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002299 }
2300
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002301 if (openfd != redir->rd_fd) {
2302 if (squirrel && redir->rd_fd < 3) {
2303 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002304 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002305 if (openfd == -3) {
Mike Frysingerdc417802009-04-06 12:35:41 +00002306 /* "-" means "close me" and we use -3 for that */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002307 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002308 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002309 dup2(openfd, redir->rd_fd);
2310 if (redir->rd_dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002311 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002312 }
Eric Andersen25f27032001-04-26 23:22:31 +00002313 }
2314 }
2315 return 0;
2316}
2317
2318static void restore_redirects(int squirrel[])
2319{
2320 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002321 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002322 fd = squirrel[i];
2323 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002324 /* We simply die on error */
2325 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002326 }
2327 }
2328}
2329
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002330
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002331#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002332#define free_pipe_list(head, indent) free_pipe_list(head)
2333#define free_pipe(pi, indent) free_pipe(pi)
2334#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002335static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002336
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002337/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002338static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002339{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002340 char **p;
2341 struct command *command;
2342 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002343 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002344
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002345 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002346 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002347 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2348 for (i = 0; i < pi->num_cmds; i++) {
2349 command = &pi->cmds[i];
2350 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2351 if (command->argv) {
2352 for (a = 0, p = command->argv; *p; a++, p++) {
2353 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2354 }
2355 free_strings(command->argv);
2356 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002357 }
2358 /* not "else if": on syntax error, we may have both! */
2359 if (command->group) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002360 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002361 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002362 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002363 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002364 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002365#if !BB_MMU
2366 free(command->group_as_string);
2367 command->group_as_string = NULL;
2368#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002369 for (r = command->redirects; r; r = rnext) {
2370 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002371 if (r->rd_dup == -1) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002372 /* guard against the case >$FOO, where foo is unset or blank */
2373 if (r->rd_filename) {
2374 debug_printf_clean(" %s\n", r->rd_filename);
2375 free(r->rd_filename);
2376 r->rd_filename = NULL;
2377 }
2378 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002379 debug_printf_clean("&%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002380 }
2381 rnext = r->next;
2382 free(r);
2383 }
2384 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002385 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002386 free(pi->cmds); /* children are an array, they get freed all at once */
2387 pi->cmds = NULL;
2388#if ENABLE_HUSH_JOB
2389 free(pi->cmdtext);
2390 pi->cmdtext = NULL;
2391#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002392}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002393
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002394static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002395{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002396 struct pipe *pi, *next;
2397
2398 for (pi = head; pi; pi = next) {
2399#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002400 debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002401#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002402 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002403 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2404 next = pi->next;
2405 /*pi->next = NULL;*/
2406 free(pi);
2407 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002408}
2409
2410
2411#if !BB_MMU
2412typedef struct nommu_save_t {
2413 char **new_env;
2414 char **old_env;
2415 char **argv;
2416} nommu_save_t;
2417#else
2418#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2419 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2420#define pseudo_exec(nommu_save, command, argv_expanded) \
2421 pseudo_exec(command, argv_expanded)
2422#endif
2423
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002424/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002425 * Never returns.
2426 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002427 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002428 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002429static void pseudo_exec_argv(nommu_save_t *nommu_save,
2430 char **argv, int assignment_cnt,
2431 char **argv_expanded) NORETURN;
2432static void pseudo_exec_argv(nommu_save_t *nommu_save,
2433 char **argv, int assignment_cnt,
2434 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002435{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002436 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002437
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002438 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002439 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002440 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002441
Denis Vlasenko9504e442008-10-29 01:19:15 +00002442 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002443#if BB_MMU
2444 putenv_all(new_env);
2445 free(new_env); /* optional */
2446#else
2447 nommu_save->new_env = new_env;
2448 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002449#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002450 if (argv_expanded) {
2451 argv = argv_expanded;
2452 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002453 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002454#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002455 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002456#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002457 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002458
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002459 /* On NOMMU, we must never block!
2460 * Example: { sleep 99999 | read line } & echo Ok
2461 * read builtin will block on read syscall, leaving parent blocked
2462 * in vfork. Therefore we can't do this:
2463 */
2464#if BB_MMU
2465 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002466 * Depending on context, this might be redundant. But it's
2467 * easier to waste a few CPU cycles than it is to figure out
2468 * if this is one of those cases.
2469 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002470 {
2471 int rcode;
2472 const struct built_in_command *x;
2473 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2474 if (strcmp(argv[0], x->cmd) == 0) {
2475 debug_printf_exec("running builtin '%s'\n",
2476 argv[0]);
2477 rcode = x->function(argv);
2478 fflush(NULL);
2479 _exit(rcode);
2480 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002481 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002482 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002483#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002484
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002485#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002486 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002487 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002488 int a = find_applet_by_name(argv[0]);
2489 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002490#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002491 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002492 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002493 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002494 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002495#endif
2496 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002497 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002498 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2499 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002500 /* If they called chroot or otherwise made the binary no longer
2501 * executable, fall through */
2502 }
2503 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002504#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002505
2506 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002507 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002508 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002509 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002510 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002511}
2512
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002513static int run_list(struct pipe *pi);
2514
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002515/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002516 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002517static void pseudo_exec(nommu_save_t *nommu_save,
2518 struct command *command,
2519 char **argv_expanded) NORETURN;
2520static void pseudo_exec(nommu_save_t *nommu_save,
2521 struct command *command,
2522 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002523{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002524 if (command->argv) {
2525 pseudo_exec_argv(nommu_save, command->argv,
2526 command->assignment_cnt, argv_expanded);
2527 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002528
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002529 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002530 /* Cases when we are here:
2531 * ( list )
2532 * { list } &
2533 * ... | ( list ) | ...
2534 * ... | { list } | ...
2535 */
2536#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002537 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002538 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002539 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002540 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002541 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002542 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002543 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002544#else
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002545 re_execute_shell(command->group_as_string, 0);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002546#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002547 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002548
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002549 /* Case when we are here: ... | >file */
2550 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002551 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002552}
2553
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002554#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002555static const char *get_cmdtext(struct pipe *pi)
2556{
2557 char **argv;
2558 char *p;
2559 int len;
2560
2561 /* This is subtle. ->cmdtext is created only on first backgrounding.
2562 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002563 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002564 if (pi->cmdtext)
2565 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002566 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002567 if (!argv || !argv[0]) {
2568 pi->cmdtext = xzalloc(1);
2569 return pi->cmdtext;
2570 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002571
2572 len = 0;
2573 do len += strlen(*argv) + 1; while (*++argv);
2574 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002575 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002576 do {
2577 len = strlen(*argv);
2578 memcpy(p, *argv, len);
2579 p += len;
2580 *p++ = ' ';
2581 } while (*++argv);
2582 p[-1] = '\0';
2583 return pi->cmdtext;
2584}
2585
Eric Andersenbafd94f2001-05-02 16:11:59 +00002586static void insert_bg_job(struct pipe *pi)
2587{
2588 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002589 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002590
2591 /* Linear search for the ID of the job to use */
2592 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002593 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002594 if (thejob->jobid >= pi->jobid)
2595 pi->jobid = thejob->jobid + 1;
2596
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002597 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002598 if (!G.job_list) {
2599 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002600 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002601 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002602 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002603 thejob->next = xmalloc(sizeof(*thejob));
2604 thejob = thejob->next;
2605 }
2606
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002607 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002608 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002609 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2610 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2611 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002612// TODO: do we really need to have so many fields which are just dead weight
2613// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002614 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002615 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002616 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002617 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002618 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002619
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002620 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002621 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002622 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002623 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002624 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002625 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002626}
2627
Eric Andersenbafd94f2001-05-02 16:11:59 +00002628static void remove_bg_job(struct pipe *pi)
2629{
2630 struct pipe *prev_pipe;
2631
Denis Vlasenko87a86552008-07-29 19:43:10 +00002632 if (pi == G.job_list) {
2633 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002634 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002635 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002636 while (prev_pipe->next != pi)
2637 prev_pipe = prev_pipe->next;
2638 prev_pipe->next = pi->next;
2639 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002640 if (G.job_list)
2641 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002642 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002643 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002644}
Eric Andersen028b65b2001-06-28 01:10:11 +00002645
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002646/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002647static void delete_finished_bg_job(struct pipe *pi)
2648{
2649 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002650 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002651 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002652 free(pi);
2653}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002654#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002655
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002656/* Check to see if any processes have exited -- if they
2657 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002658static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002659{
Eric Andersenc798b072001-06-22 06:23:03 +00002660 int attributes;
2661 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002662#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002663 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002664#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002665 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002666 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002667
Denis Vlasenkod5762932009-03-31 11:22:57 +00002668 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2669
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002670 errno = 0;
2671// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2672// /* avoid doing syscall, nothing there anyway */
2673// return rcode;
2674
Eric Andersenc798b072001-06-22 06:23:03 +00002675 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002676 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002677 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002678
Denis Vlasenko1359da62007-04-21 23:27:30 +00002679/* Do we do this right?
2680 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002681 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002682 * [3]+ Stopped sleep 20 | false
2683 * bash-3.00# echo $?
2684 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2685 */
2686
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002687//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2688//are stopped. Testcase: "cat | cat" in a script (not on command line)
2689// + killall -STOP cat
2690
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002691 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002692 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002693 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002694 int dead;
2695
2696// i = G.count_SIGCHLD;
2697 childpid = waitpid(-1, &status, attributes);
2698 if (childpid <= 0) {
2699 if (childpid && errno != ECHILD)
2700 bb_perror_msg("waitpid");
2701// else /* Until next SIGCHLD, waitpid's are useless */
2702// G.handled_SIGCHLD = i;
2703 break;
2704 }
2705 dead = WIFEXITED(status) || WIFSIGNALED(status);
2706
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002707#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002708 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002709 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002710 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2711 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002712 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002713 childpid, WTERMSIG(status), WEXITSTATUS(status));
2714 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002715 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002716 childpid, WEXITSTATUS(status));
2717#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002718 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002719 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002720 for (i = 0; i < fg_pipe->num_cmds; i++) {
2721 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2722 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002723 continue;
2724 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2725 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002726 fg_pipe->cmds[i].pid = 0;
2727 fg_pipe->alive_cmds--;
2728 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002729 /* last process gives overall exitstatus */
2730 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002731 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002732 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002733 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002734 fg_pipe->cmds[i].is_stopped = 1;
2735 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002736 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002737 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2738 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2739 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002740 /* All processes in fg pipe have exited/stopped */
2741#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002742 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002743 insert_bg_job(fg_pipe);
2744#endif
2745 return rcode;
2746 }
2747 /* There are still running processes in the fg pipe */
2748 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002749 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002750 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002751 }
2752
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002753#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002754 /* We asked to wait for bg or orphaned children */
2755 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002756 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002757 for (i = 0; i < pi->num_cmds; i++) {
2758 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002759 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002760 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002761 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002762 /* Happens when shell is used as init process (init=/bin/sh) */
2763 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002764 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002765
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002766 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002767 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002768 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002769 pi->cmds[i].pid = 0;
2770 pi->alive_cmds--;
2771 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002772 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002773 printf(JOB_STATUS_FORMAT, pi->jobid,
2774 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002775 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002776 }
2777 } else {
2778 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002779 pi->cmds[i].is_stopped = 1;
2780 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002781 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002782#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002783 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002784
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002785 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002786}
2787
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002788#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002789static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2790{
2791 pid_t p;
2792 int rcode = checkjobs(fg_pipe);
2793 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002794 p = getpgid(0); /* pgid of our process */
2795 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002796 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002797 return rcode;
2798}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002799#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002800
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002801/* Start all the jobs, but don't wait for anything to finish.
2802 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002803 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002804 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002805 * to finish to determine the exit status of the pipe. If the pipe
2806 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002807 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002808 * return value.
2809 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002810 * Returns -1 only if started some children. IOW: we have to
2811 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002812 *
2813 * The only case when we do not need to [v]fork is when the pipe
2814 * is single, non-backgrounded, non-subshell command. Examples:
2815 * cmd ; ... { list } ; ...
2816 * cmd && ... { list } && ...
2817 * cmd || ... { list } || ...
2818 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2819 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002820 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002821 *
2822 * Cases when we must fork:
2823 * non-single: cmd | cmd
2824 * backgrounded: cmd & { list } &
2825 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002826 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002827static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002828{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002829 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002830 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002831 int nextin;
2832 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002833 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002834 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002835 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002836 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002837 /* it is not always needed, but we aim to smaller code */
2838 int squirrel[] = { -1, -1, -1 };
2839 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002840
Denis Vlasenko552433b2009-04-04 19:29:21 +00002841 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002842
Denis Vlasenko552433b2009-04-04 19:29:21 +00002843 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002844 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002845 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002846 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002847
Denis Vlasenko552433b2009-04-04 19:29:21 +00002848 if (pi->num_cmds != 1
2849 || pi->followup == PIPE_BG
2850 || command->grp_type == GRP_SUBSHELL
2851 ) {
2852 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002853 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002854
Denis Vlasenko552433b2009-04-04 19:29:21 +00002855 pi->alive_cmds = 1;
2856
2857 debug_printf_exec(": group:%p argv:'%s'\n",
2858 command->group, command->argv ? command->argv[0] : "NONE");
2859
2860 if (command->group) {
2861#if ENABLE_HUSH_FUNCTIONS
2862 if (command->grp_type == GRP_FUNCTION) {
2863 /* func () { list } */
2864 bb_error_msg("here we ought to remember function definition, and go on");
2865 return EXIT_SUCCESS;
2866 }
2867#endif
2868 /* { list } */
2869 debug_printf("non-subshell group\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002870 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002871 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002872 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002873 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002874 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002875 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002876 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002877 }
2878
Denis Vlasenko552433b2009-04-04 19:29:21 +00002879 argv = command->argv ? command->argv : (char **) &null_ptr;
2880 {
2881 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002882 char **new_env = NULL;
2883 char **old_env = NULL;
2884
Denis Vlasenko552433b2009-04-04 19:29:21 +00002885 if (argv[command->assignment_cnt] == NULL) {
2886 /* Assignments, but no command */
2887 /* Ensure redirects take effect. Try "a=t >file" */
2888 setup_redirects(command, squirrel);
2889 restore_redirects(squirrel);
2890 /* Set shell variables */
2891 while (*argv) {
2892 p = expand_string_to_string(*argv);
2893 debug_printf_exec("set shell var:'%s'->'%s'\n",
2894 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002895 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002896 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00002897 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00002898 /* Do we need to flag set_local_var() errors?
2899 * "assignment to readonly var" and "putenv error"
2900 */
2901 return EXIT_SUCCESS;
Eric Andersen78a7c992001-05-15 16:30:25 +00002902 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002903
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002904 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00002905 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002906
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002907 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002908 if (strcmp(argv_expanded[0], x->cmd) != 0)
2909 continue;
2910 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2911 debug_printf("exec with redirects only\n");
2912 setup_redirects(command, NULL);
2913 rcode = EXIT_SUCCESS;
2914 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002915 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002916 debug_printf("builtin inline %s\n", argv_expanded[0]);
2917 /* XXX setup_redirects acts on file descriptors, not FILEs.
2918 * This is perfect for work that comes after exec().
2919 * Is it really safe for inline use? Experimentally,
2920 * things seem to work with glibc. */
2921 setup_redirects(command, squirrel);
2922 new_env = expand_assignments(argv, command->assignment_cnt);
2923 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002924 debug_printf_exec(": builtin '%s' '%s'...\n",
2925 x->cmd, argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002926 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002927#if ENABLE_FEATURE_SH_STANDALONE
2928 clean_up_and_ret:
2929#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002930 restore_redirects(squirrel);
2931 free_strings_and_unsetenv(new_env, 1);
2932 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002933 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002934 clean_up_and_ret1:
2935 free(argv_expanded);
2936 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2937 debug_printf_exec("run_pipe return %d\n", rcode);
2938 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002939 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002940#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002941 i = find_applet_by_name(argv_expanded[0]);
2942 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2943 setup_redirects(command, squirrel);
2944 save_nofork_data(&G.nofork_save);
2945 new_env = expand_assignments(argv, command->assignment_cnt);
2946 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002947 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2948 argv_expanded[0], argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002949 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2950 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002951 }
2952#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00002953 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00002954 }
2955
Denis Vlasenko552433b2009-04-04 19:29:21 +00002956 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002957 /* NB: argv_expanded may already be created, and that
2958 * might include `cmd` runs! Do not rerun it! We *must*
2959 * use argv_expanded if it's non-NULL */
2960
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002961 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002962 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002963 nextin = 0;
2964
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002965 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002966#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002967 volatile nommu_save_t nommu_save;
2968 nommu_save.new_env = NULL;
2969 nommu_save.old_env = NULL;
2970 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002971#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002972 command = &(pi->cmds[i]);
2973 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002974 debug_printf_exec(": pipe member '%s' '%s'...\n",
2975 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002976 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002977 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00002978 }
Eric Andersen25f27032001-04-26 23:22:31 +00002979
2980 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002981 pipefds[0] = 0;
2982 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002983 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002984 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002985
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002986 command->pid = BB_MMU ? fork() : vfork();
2987 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002988#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002989 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00002990
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002991 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002992 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002993 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002994 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002995 pgrp = pi->pgrp;
2996 if (pgrp < 0) /* true for 1st process only */
2997 pgrp = getpid();
2998 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002999 /* We do it in *every* child, not just first,
3000 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003001 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003002 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003003 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003004#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003005 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003006 xmove_fd(pipefds[1], 1); /* write end */
3007 if (pipefds[0] > 1)
3008 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003009 /* Like bash, explicit redirects override pipes,
3010 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003011 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003012
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003013 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003014 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3015
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003016 /* Stores to nommu_save list of env vars putenv'ed
3017 * (NOMMU, on MMU we don't need that) */
3018 /* cast away volatility... */
3019 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003020 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003021 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003022
Denis Vlasenkof9375282009-04-05 19:13:39 +00003023 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003024 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003025#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003026 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003027 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003028 free(nommu_save.argv);
3029 free_strings_and_unsetenv(nommu_save.new_env, 1);
3030 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003031#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003032 free(argv_expanded);
3033 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003034 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003035 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003036 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003037 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003038 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003039#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003040 /* Second and next children need to know pid of first one */
3041 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003042 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003043#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003044 }
Eric Andersen25f27032001-04-26 23:22:31 +00003045
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003046 if (i)
3047 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003048 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003049 close(pipefds[1]); /* write end */
3050 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003051 nextin = pipefds[0];
3052 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003053
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003054 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003055 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3056 return 1;
3057 }
3058
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003059 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003060 return -1;
3061}
3062
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003063#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003064static void debug_print_tree(struct pipe *pi, int lvl)
3065{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003066 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003067 [PIPE_SEQ] = "SEQ",
3068 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003069 [PIPE_OR ] = "OR" ,
3070 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003071 };
3072 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003073 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003074#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003075 [RES_IF ] = "IF" ,
3076 [RES_THEN ] = "THEN" ,
3077 [RES_ELIF ] = "ELIF" ,
3078 [RES_ELSE ] = "ELSE" ,
3079 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003080#endif
3081#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003082 [RES_FOR ] = "FOR" ,
3083 [RES_WHILE] = "WHILE",
3084 [RES_UNTIL] = "UNTIL",
3085 [RES_DO ] = "DO" ,
3086 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003087#endif
3088#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003089 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003090#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003091#if ENABLE_HUSH_CASE
3092 [RES_CASE ] = "CASE" ,
3093 [RES_MATCH] = "MATCH",
3094 [RES_CASEI] = "CASEI",
3095 [RES_ESAC ] = "ESAC" ,
3096#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003097 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003098 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003099 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003100 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003101 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003102 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003103#if ENABLE_HUSH_FUNCTIONS
3104 "func()",
3105#endif
3106 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003107
3108 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003109
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003110 pin = 0;
3111 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003112 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3113 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003114 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003115 while (prn < pi->num_cmds) {
3116 struct command *command = &pi->cmds[prn];
3117 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003118
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003119 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003120 lvl*2, "", prn,
3121 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003122 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003123 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003124 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003125 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003126 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003127 prn++;
3128 continue;
3129 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003130 if (argv) while (*argv) {
3131 fprintf(stderr, " '%s'", *argv);
3132 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003133 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003134 fprintf(stderr, "\n");
3135 prn++;
3136 }
3137 pi = pi->next;
3138 pin++;
3139 }
3140}
3141#endif
3142
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003143/* NB: called by pseudo_exec, and therefore must not modify any
3144 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003145static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003146{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003147#if ENABLE_HUSH_CASE
3148 char *case_word = NULL;
3149#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003150#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003151 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003152 char *for_varname = NULL;
3153 char **for_lcur = NULL;
3154 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003155#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003156 smallint last_followup;
3157 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003158#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003159 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003160#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003161 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003162#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003163#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003164 smallint rword; /* enum reserved_style */
3165 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003166#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003167
Denis Vlasenko87a86552008-07-29 19:43:10 +00003168 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003169
Denis Vlasenko06810332007-05-21 23:30:54 +00003170#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003171 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003172 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3173 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003174 continue;
3175 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003176 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003177 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003178 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003179 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003180 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003181 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003182 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003183 continue;
3184 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003185 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3186 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003187 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003188 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003189 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003190 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003191 }
3192 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003193#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003194
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003195 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003196 * in order to return, no direct "return" statements please.
3197 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003198
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003199////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003200
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003201#if ENABLE_HUSH_JOB
3202 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3203 * We are saving state before entering outermost list ("while...done")
3204 * so that ctrl-Z will correctly background _entire_ outermost list,
3205 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003206 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003207 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003208 /* ctrl-Z forked and we are parent; or ctrl-C.
3209 * Sighandler has longjmped us here */
3210 signal(SIGINT, SIG_IGN);
3211 signal(SIGTSTP, SIG_IGN);
3212 /* Restore level (we can be coming from deep inside
3213 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003214 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003215#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003216 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003217 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003218 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003219 }
3220#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003221//// if (G.ctrl_z_flag) {
3222//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3223//// * Remember this child as background job */
3224//// insert_bg_job(pi);
3225//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003226 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003227 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003228//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003229 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003230 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003231 rcode = 0;
3232 goto ret;
3233 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003234//// /* ctrl-Z handler will store pid etc in pi */
3235//// G.toplevel_list = pi;
3236//// G.ctrl_z_flag = 0;
3237////#if ENABLE_FEATURE_SH_STANDALONE
3238//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
3239////#endif
3240//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3241//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003242 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003243#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003244
Denis Vlasenko0e151382009-04-06 18:40:31 +00003245#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003246 rword = RES_NONE;
3247 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003248#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003249 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003250 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003251
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003252 /* Go through list of pipes, (maybe) executing them. */
3253 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003254 if (G.flag_SIGINT)
3255 break;
3256
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003257 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003258 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3259 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003260#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003261 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003262 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003263 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003264 /* start of a loop: remember where loop starts */
3265 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003266 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003267 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003268#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003269 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003270 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003271 if ((rcode == 0 && last_followup == PIPE_OR)
3272 || (rcode != 0 && last_followup == PIPE_AND)
3273 ) {
3274 /* It is "<true> || CMD" or "<false> && CMD"
3275 * and we should not execute CMD */
3276 debug_printf_exec("skipped cmd because of || or &&\n");
3277 last_followup = pi->followup;
3278 continue;
3279 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003280 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003281 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003282 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003283#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003284 if (cond_code) {
3285 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003286 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003287 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003288 /* "if <false> THEN cmd": skip cmd */
3289 continue;
3290 }
3291 } else {
3292 if (rword == RES_ELSE || rword == RES_ELIF) {
3293 /* "if <true> then ... ELSE/ELIF cmd":
3294 * skip cmd and all following ones */
3295 break;
3296 }
3297 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003298#endif
3299#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003300 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003301 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003302 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003303
3304 static const char encoded_dollar_at[] ALIGN1 = {
3305 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3306 }; /* encoded representation of "$@" */
3307 static const char *const encoded_dollar_at_argv[] = {
3308 encoded_dollar_at, NULL
3309 }; /* argv list with one element: "$@" */
3310 char **vals;
3311
3312 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003313 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003314 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003315 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003316 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003317 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003318 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003319 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003320 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003321 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003322 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003323 debug_print_strings("for_list made from", vals);
3324 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003325 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003326 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003327 for_varname = pi->cmds[0].argv[0];
3328 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003329 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003330 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003331 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003332 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003333 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003334 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003335 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003336 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003337 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003338 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003339 /* Insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003340//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003341 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3342 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003343 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003344 if (rword == RES_IN) {
3345 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3346 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003347 if (rword == RES_DONE) {
3348 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003349 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003350#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003351#if ENABLE_HUSH_CASE
3352 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003353 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003354 continue;
3355 }
3356 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003357 char **argv;
3358
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003359 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3360 break;
3361 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003362 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003363 while (*argv) {
3364 char *pattern = expand_string_to_string(*argv);
3365 /* TODO: which FNM_xxx flags to use? */
3366 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3367 free(pattern);
3368 if (cond_code == 0) { /* match! we will execute this branch */
3369 free(case_word); /* make future "word)" stop */
3370 case_word = NULL;
3371 break;
3372 }
3373 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003374 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003375 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003376 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003377 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003378 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003379 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003380 }
3381#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003382 /* Just pressing <enter> in shell should check for jobs.
3383 * OTOH, in non-interactive shell this is useless
3384 * and only leads to extra job checks */
3385 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003386 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003387 goto check_jobs_and_continue;
3388 continue;
3389 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003390
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003391 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003392 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003393 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003394 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003395 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003396 {
3397 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003398#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003399 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003400#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003401 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3402 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003403 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003404 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003405 G.last_exitcode = rcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003406 debug_printf_exec(": builtin exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003407 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003408#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003409 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003410 if (G.flag_break_continue) {
3411 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003412 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003413 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003414 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003415 G.depth_break_continue--;
3416 if (G.depth_break_continue == 0)
3417 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003418 /* else: e.g. "continue 2" should *break* once, *then* continue */
3419 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003420 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003421 goto check_jobs_and_break;
3422 /* "continue": simulate end of loop */
3423 rword = RES_DONE;
3424 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003425 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003426#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003427 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003428 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003429 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003430 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3431 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003432 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003433#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003434 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003435 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003436#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003437 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003438 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003439 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003440#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003441 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003442 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003443 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003444 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003445 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003446 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003447#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003448 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003449 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003450 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003451 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003452 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003453 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003454 }
3455 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003456
3457 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003458#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003459 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003460 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003461#endif
3462#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003463 /* Beware of "while false; true; do ..."! */
3464 if (pi->next && pi->next->res_word == RES_DO) {
3465 if (rword == RES_WHILE) {
3466 if (rcode) {
3467 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003468 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003469 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3470 goto check_jobs_and_break;
3471 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003472 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003473 if (rword == RES_UNTIL) {
3474 if (!rcode) {
3475 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003476 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003477 checkjobs(NULL);
3478 break;
3479 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003480 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003481 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003482#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003483
3484 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003485 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003486 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003487
3488#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003489//// if (G.ctrl_z_flag) {
3490//// /* ctrl-Z forked somewhere in the past, we are the child,
3491//// * and now we completed running the list. Exit. */
3492//////TODO: _exit?
3493//// exit(rcode);
3494//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003495 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003496 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003497//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003498//// signal(SIGTSTP, SIG_IGN);
3499//// signal(SIGINT, SIG_IGN);
3500//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003501#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003502 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003503#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003504 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003505 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003506 free(for_list);
3507#endif
3508#if ENABLE_HUSH_CASE
3509 free(case_word);
3510#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003511 return rcode;
3512}
3513
Eric Andersen25f27032001-04-26 23:22:31 +00003514/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003515static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003516{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003517 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003518 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003519 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003520 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003521 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003522 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003523 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003524 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003525 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003526 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003527 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003528 return rcode;
3529}
3530
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003531
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003532static struct pipe *new_pipe(void)
3533{
Eric Andersen25f27032001-04-26 23:22:31 +00003534 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003535 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003536 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003537 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003538 return pi;
3539}
3540
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003541/* Command (member of a pipe) is complete. The only possible error here
3542 * is out of memory, in which case xmalloc exits. */
3543static int done_command(struct parse_context *ctx)
3544{
3545 /* The command is really already in the pipe structure, so
3546 * advance the pipe counter and make a new, null command. */
3547 struct pipe *pi = ctx->pipe;
3548 struct command *command = ctx->command;
3549
3550 if (command) {
3551 if (command->group == NULL
3552 && command->argv == NULL
3553 && command->redirects == NULL
3554 ) {
3555 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003556 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003557 return pi->num_cmds;
3558 }
3559 pi->num_cmds++;
3560 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003561 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003562 } else {
3563 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3564 }
3565
3566 /* Only real trickiness here is that the uncommitted
3567 * command structure is not counted in pi->num_cmds. */
3568 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3569 command = &pi->cmds[pi->num_cmds];
3570 memset(command, 0, sizeof(*command));
3571
3572 ctx->command = command;
3573 /* but ctx->pipe and ctx->list_head remain unchanged */
3574
3575 return pi->num_cmds; /* used only for 0/nonzero check */
3576}
3577
3578static void done_pipe(struct parse_context *ctx, pipe_style type)
3579{
3580 int not_null;
3581
3582 debug_printf_parse("done_pipe entered, followup %d\n", type);
3583 /* Close previous command */
3584 not_null = done_command(ctx);
3585 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003586#if HAS_KEYWORDS
3587 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3588 ctx->ctx_inverted = 0;
3589 ctx->pipe->res_word = ctx->ctx_res_w;
3590#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003591
3592 /* Without this check, even just <enter> on command line generates
3593 * tree of three NOPs (!). Which is harmless but annoying.
3594 * IOW: it is safe to do it unconditionally.
3595 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003596 * and other cases to work. */
3597 if (not_null
3598#if HAS_KEYWORDS
3599 || ctx->ctx_res_w == RES_FI
3600 || ctx->ctx_res_w == RES_DONE
3601 || ctx->ctx_res_w == RES_FOR
3602 || ctx->ctx_res_w == RES_IN
3603 || ctx->ctx_res_w == RES_ESAC
3604#endif
3605 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003606 struct pipe *new_p;
3607 debug_printf_parse("done_pipe: adding new pipe: "
3608 "not_null:%d ctx->ctx_res_w:%d\n",
3609 not_null, ctx->ctx_res_w);
3610 new_p = new_pipe();
3611 ctx->pipe->next = new_p;
3612 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003613 /* RES_THEN, RES_DO etc are "sticky" -
3614 * they remain set for commands inside if/while.
3615 * This is used to control execution.
3616 * RES_FOR and RES_IN are NOT sticky (needed to support
3617 * cases where variable or value happens to match a keyword):
3618 */
3619#if ENABLE_HUSH_LOOPS
3620 if (ctx->ctx_res_w == RES_FOR
3621 || ctx->ctx_res_w == RES_IN)
3622 ctx->ctx_res_w = RES_NONE;
3623#endif
3624#if ENABLE_HUSH_CASE
3625 if (ctx->ctx_res_w == RES_MATCH)
3626 ctx->ctx_res_w = RES_CASEI;
3627#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003628 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003629 /* Create the memory for command, roughly:
3630 * ctx->pipe->cmds = new struct command;
3631 * ctx->command = &ctx->pipe->cmds[0];
3632 */
3633 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003634 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003635 }
3636 debug_printf_parse("done_pipe return\n");
3637}
3638
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003639static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003640{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003641 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003642 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003643 /* Create the memory for command, roughly:
3644 * ctx->pipe->cmds = new struct command;
3645 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003646 */
3647 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003648}
3649
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003650/* If a reserved word is found and processed, parse context is modified
3651 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003652 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003653#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003654struct reserved_combo {
3655 char literal[6];
3656 unsigned char res;
3657 unsigned char assignment_flag;
3658 int flag;
3659};
3660enum {
3661 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003662#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003663 FLAG_IF = (1 << RES_IF ),
3664 FLAG_THEN = (1 << RES_THEN ),
3665 FLAG_ELIF = (1 << RES_ELIF ),
3666 FLAG_ELSE = (1 << RES_ELSE ),
3667 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003668#endif
3669#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003670 FLAG_FOR = (1 << RES_FOR ),
3671 FLAG_WHILE = (1 << RES_WHILE),
3672 FLAG_UNTIL = (1 << RES_UNTIL),
3673 FLAG_DO = (1 << RES_DO ),
3674 FLAG_DONE = (1 << RES_DONE ),
3675 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003676#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003677#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003678 FLAG_MATCH = (1 << RES_MATCH),
3679 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003680#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003681 FLAG_START = (1 << RES_XXXX ),
3682};
3683
3684static const struct reserved_combo* match_reserved_word(o_string *word)
3685{
Eric Andersen25f27032001-04-26 23:22:31 +00003686 /* Mostly a list of accepted follow-up reserved words.
3687 * FLAG_END means we are done with the sequence, and are ready
3688 * to turn the compound list into a command.
3689 * FLAG_START means the word must start a new compound list.
3690 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003691 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003692#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003693 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3694 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3695 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3696 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3697 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3698 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003699#endif
3700#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003701 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3702 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3703 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3704 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3705 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3706 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003707#endif
3708#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003709 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3710 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003711#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003712 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003713 const struct reserved_combo *r;
3714
3715 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3716 if (strcmp(word->data, r->literal) == 0)
3717 return r;
3718 }
3719 return NULL;
3720}
3721static int reserved_word(o_string *word, struct parse_context *ctx)
3722{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003723#if ENABLE_HUSH_CASE
3724 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003725 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003726 };
3727#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003728 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003729
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003730 r = match_reserved_word(word);
3731 if (!r)
3732 return 0;
3733
3734 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003735#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003736 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3737 /* "case word IN ..." - IN part starts first match part */
3738 r = &reserved_match;
3739 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003740#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003741 if (r->flag == 0) { /* '!' */
3742 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003743 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003744 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003745 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003746 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003747 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003748 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003749 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003750 struct parse_context *old;
3751 old = xmalloc(sizeof(*old));
3752 debug_printf_parse("push stack %p\n", old);
3753 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003754 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003755 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003756 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003757 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003758 ctx->ctx_res_w = RES_SNTX;
3759 return 1;
3760 }
3761 ctx->ctx_res_w = r->res;
3762 ctx->old_flag = r->flag;
3763 if (ctx->old_flag & FLAG_END) {
3764 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003765 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003766 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003767 old = ctx->stack;
3768 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003769 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003770#if !BB_MMU
3771 o_addstr(&old->as_string, ctx->as_string.data);
3772 o_free_unsafe(&ctx->as_string);
3773 old->command->group_as_string = xstrdup(old->as_string.data);
3774 debug_printf_parse("pop, remembering as:'%s'\n",
3775 old->command->group_as_string);
3776#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003777 *ctx = *old; /* physical copy */
3778 free(old);
3779 }
3780 word->o_assignment = r->assignment_flag;
3781 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003782}
Denis Vlasenko06810332007-05-21 23:30:54 +00003783#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003784
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003785/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003786 * Normal return is 0. Syntax errors return 1.
3787 * Note: on return, word is reset, but not o_free'd!
3788 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003789static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003790{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003791 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003792
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003793 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003794 if (word->length == 0 && word->nonnull == 0) {
3795 debug_printf_parse("done_word return 0: true null, ignored\n");
3796 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003797 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003798 /* If this word wasn't an assignment, next ones definitely
3799 * can't be assignments. Even if they look like ones. */
3800 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3801 && word->o_assignment != WORD_IS_KEYWORD
3802 ) {
3803 word->o_assignment = NOT_ASSIGNMENT;
3804 } else {
3805 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003806 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003807 word->o_assignment = MAYBE_ASSIGNMENT;
3808 }
3809
Eric Andersen25f27032001-04-26 23:22:31 +00003810 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003811 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3812 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003813 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3814 * "2.7 Redirection
3815 * ...the word that follows the redirection operator
3816 * shall be subjected to tilde expansion, parameter expansion,
3817 * command substitution, arithmetic expansion, and quote
3818 * removal. Pathname expansion shall not be performed
3819 * on the word by a non-interactive shell; an interactive
3820 * shell may perform it, but shall do so only when
3821 * the expansion would result in one word."
3822 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003823 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003824 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003825 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003826 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003827 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003828 /* NB: bash allows e.g.:
3829 * if true; then { echo foo; } fi
3830 * while if false; then false; fi do break; done
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003831 * and disallows:
3832 * while if false; then false; fi; do; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003833 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003834 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003835 syntax(word->data);
3836 debug_printf_parse("done_word return 1: syntax error, "
3837 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003838 return 1;
3839 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003840#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003841#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003842 if (ctx->ctx_dsemicolon
3843 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3844 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003845 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003846 /* ctx->ctx_res_w = RES_MATCH; */
3847 ctx->ctx_dsemicolon = 0;
3848 } else
3849#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003850 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003851#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003852 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3853 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003854#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003855 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003856 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3857 if (reserved_word(word, ctx)) {
3858 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003859 debug_printf_parse("done_word return %d\n",
3860 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003861 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003862 }
Eric Andersen25f27032001-04-26 23:22:31 +00003863 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003864#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003865 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003866 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3867 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003868 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003869 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003870 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003871 char *p = word->data;
3872 while (p[0] == SPECIAL_VAR_SYMBOL
3873 && (p[1] & 0x7f) == '@'
3874 && p[2] == SPECIAL_VAR_SYMBOL
3875 ) {
3876 p += 3;
3877 }
3878 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003879 /* saw no "$@", or not only "$@" but some
3880 * real text is there too */
3881 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003882 * e.g. "", $empty"" etc to not disappear */
3883 o_addchr(word, SPECIAL_VAR_SYMBOL);
3884 o_addchr(word, SPECIAL_VAR_SYMBOL);
3885 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003886 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003887 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003888 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003889 }
Eric Andersen25f27032001-04-26 23:22:31 +00003890
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003891 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003892 ctx->pending_redirect = NULL;
3893
Denis Vlasenko06810332007-05-21 23:30:54 +00003894#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003895 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003896 /* NB: basically, this makes hush see "for v in ..." syntax as if
3897 * as it is "for v; in ...". FOR and IN become two pipe structs
3898 * in parse tree. */
3899 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003900//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003901 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003902 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003903#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003904#if ENABLE_HUSH_CASE
3905 /* Force CASE to have just one word */
3906 if (ctx->ctx_res_w == RES_CASE) {
3907 done_pipe(ctx, PIPE_SEQ);
3908 }
3909#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003910 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003911 return 0;
3912}
3913
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003914
3915/* Peek ahead in the input to find out if we have a "&n" construct,
3916 * as in "2>&1", that represents duplicating a file descriptor.
3917 * Return: -3 if >&- "close fd" construct is seen,
3918 * -2 (syntax error), -1 if no & was seen, or the number found.
3919 */
3920#if BB_MMU
3921#define redirect_dup_num(as_string, input) \
3922 redirect_dup_num(input)
3923#endif
3924static int redirect_dup_num(o_string *as_string, struct in_str *input)
3925{
3926 int ch, d, ok;
3927
3928 ch = i_peek(input);
3929 if (ch != '&')
3930 return -1;
3931
3932 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003933 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003934 ch = i_peek(input);
3935 if (ch == '-') {
3936 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003937 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003938 return -3; /* "-" represents "close me" */
3939 }
3940 d = 0;
3941 ok = 0;
3942 while (ch != EOF && isdigit(ch)) {
3943 d = d*10 + (ch-'0');
3944 ok = 1;
3945 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003946 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003947 ch = i_peek(input);
3948 }
3949 if (ok) return d;
3950
3951//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3952
3953 bb_error_msg("ambiguous redirect");
3954 return -2;
3955}
3956
3957/* Return code is 0 normally, 1 if a syntax error is detected
3958 */
3959static int parse_redirect(struct parse_context *ctx,
3960 int fd,
3961 redir_type style,
3962 struct in_str *input)
3963{
3964 struct command *command = ctx->command;
3965 struct redir_struct *redir;
3966 struct redir_struct **redirp;
3967 int dup_num;
3968
3969 dup_num = -1;
3970 if (style != REDIRECT_HEREDOC) {
3971 /* Check for a '2>&1' type redirect */
3972 dup_num = redirect_dup_num(&ctx->as_string, input);
3973 if (dup_num == -2)
3974 return 1; /* syntax error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003975 } else {
3976 int ch = i_peek(input);
3977 dup_num = (ch == '-');
3978 if (dup_num) { /* <<-... */
3979 ch = i_getch(input);
3980 nommu_addchr(&ctx->as_string, ch);
3981 ch = i_peek(input);
3982 }
3983 /* <<[-] word is the same as <<[-]word */
3984 while (ch == ' ' || ch == '\t') {
3985 ch = i_getch(input);
3986 nommu_addchr(&ctx->as_string, ch);
3987 ch = i_peek(input);
3988 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003989 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003990
3991 if (style == REDIRECT_OVERWRITE && dup_num == -1) {
3992 int ch = i_peek(input);
3993 if (ch == '|') {
3994 /* >|FILE redirect ("clobbering" >).
3995 * Since we do not support "set -o noclobber" yet,
3996 * >| and > are the same for now. Just eat |.
3997 */
3998 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003999 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004000 }
4001 }
4002
4003 /* Create a new redir_struct and append it to the linked list */
4004 redirp = &command->redirects;
4005 while ((redir = *redirp) != NULL) {
4006 redirp = &(redir->next);
4007 }
4008 *redirp = redir = xzalloc(sizeof(*redir));
4009 /* redir->next = NULL; */
4010 /* redir->rd_filename = NULL; */
4011 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004012 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004013
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004014 debug_printf_parse("redirect type %d %s\n", redir->rd_fd, redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004015
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004016 redir->rd_dup = dup_num;
4017 if (style != REDIRECT_HEREDOC && dup_num != -1) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004018 /* Erik had a check here that the file descriptor in question
4019 * is legit; I postpone that to "run time"
4020 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004021 debug_printf_parse("duplicating redirect '%d>&%d'\n", redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004022 } else {
4023 /* Set ctx->pending_redirect, so we know what to do at the
4024 * end of the next parsed word. */
4025 ctx->pending_redirect = redir;
4026 }
4027 return 0;
4028}
4029
Eric Andersen25f27032001-04-26 23:22:31 +00004030/* If a redirect is immediately preceded by a number, that number is
4031 * supposed to tell which file descriptor to redirect. This routine
4032 * looks for such preceding numbers. In an ideal world this routine
4033 * needs to handle all the following classes of redirects...
4034 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4035 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4036 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4037 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004038 *
4039 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4040 * "2.7 Redirection
4041 * ... If n is quoted, the number shall not be recognized as part of
4042 * the redirection expression. For example:
4043 * echo \2>a
4044 * writes the character 2 into file a"
4045 * I am not sure we do it right (and not sure we care)
4046 *
4047 * A -1 return means no valid number was found,
4048 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004049 */
4050static int redirect_opt_num(o_string *o)
4051{
4052 int num;
4053
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004054 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004055 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004056 num = bb_strtou(o->data, NULL, 10);
4057 if (errno || num < 0)
4058 return -1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004059 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004060 return num;
4061}
4062
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004063#if BB_MMU
4064#define fetch_till_str(as_string, input, word, skip_tabs) \
4065 fetch_till_str(input, word, skip_tabs)
4066#endif
4067static char *fetch_till_str(o_string *as_string,
4068 struct in_str *input,
4069 const char *word,
4070 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004071{
4072 o_string heredoc = NULL_O_STRING;
4073 int past_EOL = 0;
4074 int ch;
4075
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004076 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004077 while (1) {
4078 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004079 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004080 if (ch == '\n') {
4081 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4082 heredoc.data[past_EOL] = '\0';
4083 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4084 return heredoc.data;
4085 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004086 do {
4087 o_addchr(&heredoc, ch);
4088 past_EOL = heredoc.length;
4089 jump_in:
4090 do {
4091 ch = i_getch(input);
4092 nommu_addchr(as_string, ch);
4093 } while (skip_tabs && ch == '\t');
4094 } while (ch == '\n');
4095 }
4096 if (ch == EOF) {
4097 o_free_unsafe(&heredoc);
4098 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004099 }
4100 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004101 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004102 }
4103}
4104
4105static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4106{
4107 struct pipe *pi = ctx->list_head;
4108
4109 while (pi) {
4110 int i;
4111 struct command *cmd = pi->cmds;
4112
4113 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4114 pi->num_cmds,
4115 cmd->argv ? cmd->argv[0] : "NONE");
4116 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004117 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004118
4119 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4120 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004121 while (redir) {
4122 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004123 char *p;
4124
4125 if (heredoc_cnt <= 0)
4126 return 1; /* error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004127 redir->rd_type = REDIRECT_HEREDOC2;
4128 /* redir->dup is (ab)used to indicate <<- */
4129 p = fetch_till_str(&ctx->as_string, input,
4130 redir->rd_filename, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004131 if (!p)
4132 return 1; /* unexpected EOF */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004133 free(redir->rd_filename);
4134 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004135 heredoc_cnt--;
4136 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004137 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004138 }
4139 cmd++;
4140 }
4141 pi = pi->next;
4142 }
4143 /* Should be 0. If it isn't, it's a parse error */
4144 return heredoc_cnt;
4145}
4146
4147
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004148#if BB_MMU
4149#define parse_stream(pstring, input, end_trigger) \
4150 parse_stream(input, end_trigger)
4151#endif
4152static struct pipe *parse_stream(char **pstring,
4153 struct in_str *input,
4154 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004155static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00004156
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004157#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004158static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004159{
4160 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004161 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004162
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004163 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004164 pid = BB_MMU ? fork() : vfork();
4165 if (pid < 0)
4166 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004167
Denis Vlasenko05743d72008-02-10 12:10:08 +00004168 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004169 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004170 /* Process substitution is not considered to be usual
4171 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004172 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4173 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004174 bb_signals(0
4175 + (1 << SIGTSTP)
4176 + (1 << SIGTTIN)
4177 + (1 << SIGTTOU)
4178 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004179 close(channel[0]); /* NB: close _first_, then move fd! */
4180 xmove_fd(channel[1], 1);
4181 /* Prevent it from trying to handle ctrl-z etc */
4182 USE_HUSH_JOB(G.run_list_level = 1;)
4183#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004184 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004185 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004186 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004187#else
4188 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004189 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4190 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004191 * echo OK
4192 */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00004193 re_execute_shell(s, 0);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004194#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004195 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004196
4197 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004198 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004199 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00004200 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004201 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004202 return pf;
4203}
4204
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004205/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004206static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004207{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004208 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004209 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004210 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004211
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004212 pf = generate_stream_from_string(s);
4213 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004214 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004215 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004216
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004217 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004218 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004219 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004220 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004221 if (ch == '\n') {
4222 eol_cnt++;
4223 continue;
4224 }
4225 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004226 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004227 eol_cnt--;
4228 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004229 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004230 }
4231
4232 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004233 /* Note: we got EOF, and we just close the read end of the pipe.
4234 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004235 * Try these:
4236 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4237 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004238 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004239 fclose(pf);
4240 debug_printf("closed FILE from child. return 0\n");
4241 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004242}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004243#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004244
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004245static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004246 struct in_str *input, int ch)
4247{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004248 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004249 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004250 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004251 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004252 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004253 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004254
4255 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004256#if ENABLE_HUSH_FUNCTIONS
4257 if (ch == 'F') { /* function definition? */
4258 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
4259 //command->fname = dest->data;
4260 command->grp_type = GRP_FUNCTION;
4261//TODO: review every o_reset() location... do they handle all o_string fields correctly?
4262 memset(dest, 0, sizeof(*dest));
4263 }
4264#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004265 if (command->argv /* word [word](... */
4266 || dest->length /* word(... */
4267 || dest->nonnull /* ""(... */
4268 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004269 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004270 debug_printf_parse("parse_group return 1: "
4271 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004272 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004273 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004274 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004275 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004276 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004277 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004278 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004279 {
4280#if !BB_MMU
4281 char *as_string = NULL;
4282#endif
4283 pipe_list = parse_stream(&as_string, input, endch);
4284#if !BB_MMU
4285 if (as_string)
4286 o_addstr(&ctx->as_string, as_string);
4287#endif
4288 /* empty ()/{} or parse error? */
4289 if (!pipe_list || pipe_list == ERR_PTR) {
4290#if !BB_MMU
4291 free(as_string);
4292#endif
4293 syntax(NULL);
4294 debug_printf_parse("parse_group return 1: "
4295 "parse_stream returned %p\n", pipe_list);
4296 return 1;
4297 }
4298 command->group = pipe_list;
4299#if !BB_MMU
4300 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4301 command->group_as_string = as_string;
4302 debug_printf_parse("end of group, remembering as:'%s'\n",
4303 command->group_as_string);
4304#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004305 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004306 debug_printf_parse("parse_group return 0\n");
4307 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004308 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004309}
4310
Mike Frysinger98c52642009-04-02 10:02:37 +00004311#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004312/* Subroutines for copying $(...) and `...` things */
4313static void add_till_backquote(o_string *dest, struct in_str *input);
4314/* '...' */
4315static void add_till_single_quote(o_string *dest, struct in_str *input)
4316{
4317 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004318 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004319 if (ch == EOF)
4320 break;
4321 if (ch == '\'')
4322 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004323 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004324 }
4325}
4326/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4327static void add_till_double_quote(o_string *dest, struct in_str *input)
4328{
4329 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004330 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004331 if (ch == '"')
4332 break;
4333 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004334 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004335 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004336 }
4337 if (ch == EOF)
4338 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004339 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004340 if (ch == '`') {
4341 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004342 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004343 continue;
4344 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004345 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004346 }
4347}
4348/* Process `cmd` - copy contents until "`" is seen. Complicated by
4349 * \` quoting.
4350 * "Within the backquoted style of command substitution, backslash
4351 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4352 * The search for the matching backquote shall be satisfied by the first
4353 * backquote found without a preceding backslash; during this search,
4354 * if a non-escaped backquote is encountered within a shell comment,
4355 * a here-document, an embedded command substitution of the $(command)
4356 * form, or a quoted string, undefined results occur. A single-quoted
4357 * or double-quoted string that begins, but does not end, within the
4358 * "`...`" sequence produces undefined results."
4359 * Example Output
4360 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4361 */
4362static void add_till_backquote(o_string *dest, struct in_str *input)
4363{
4364 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004365 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004366 if (ch == '`')
4367 break;
4368 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004369 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004370 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004371 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004372 ch = ch2;
4373 }
4374 if (ch == EOF)
4375 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004376 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004377 }
4378}
4379/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4380 * quoting and nested ()s.
4381 * "With the $(command) style of command substitution, all characters
4382 * following the open parenthesis to the matching closing parenthesis
4383 * constitute the command. Any valid shell script can be used for command,
4384 * except a script consisting solely of redirections which produces
4385 * unspecified results."
4386 * Example Output
4387 * echo $(echo '(TEST)' BEST) (TEST) BEST
4388 * echo $(echo 'TEST)' BEST) TEST) BEST
4389 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4390 */
Mike Frysinger98c52642009-04-02 10:02:37 +00004391static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004392{
4393 int count = 0;
4394 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004395 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004396 if (ch == EOF)
4397 break;
4398 if (ch == '(')
4399 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004400 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004401 if (--count < 0) {
4402 if (!dbl)
4403 break;
4404 if (i_peek(input) == ')') {
4405 i_getch(input);
4406 break;
4407 }
4408 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004409 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004410 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004411 if (ch == '\'') {
4412 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004413 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004414 continue;
4415 }
4416 if (ch == '"') {
4417 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004418 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004419 continue;
4420 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004421 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
4422 ch = i_getch(input);
4423 if (ch == EOF)
4424 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004425 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004426 continue;
4427 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004428 }
4429}
Mike Frysinger98c52642009-04-02 10:02:37 +00004430#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004431
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004432/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004433#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004434#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004435 handle_dollar(dest, input)
4436#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004437static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004438 o_string *dest,
4439 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004440{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004441 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004442 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004443 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004444
4445 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004446 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004447 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004448 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004449 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004450 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004451 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004452 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004453 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004454 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004455 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004456 if (!isalnum(ch) && ch != '_')
4457 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004458 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004459 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004460 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004461 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004462 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004463 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004464 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004465 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004466 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004467 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004468 o_addchr(dest, ch | quote_mask);
4469 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004470 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004471 case '$': /* pid */
4472 case '!': /* last bg pid */
4473 case '?': /* last exit code */
4474 case '#': /* number of args */
4475 case '*': /* args */
4476 case '@': /* args */
4477 goto make_one_char_var;
4478 case '{': {
4479 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004480
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004481 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004482 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004483 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004484 /* XXX maybe someone will try to escape the '}' */
4485 expansion = 0;
4486 first_char = true;
4487 all_digits = false;
4488 while (1) {
4489 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004490 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004491 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004492 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004493
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004494 if (first_char) {
4495 if (ch == '#')
4496 /* ${#var}: length of var contents */
4497 goto char_ok;
4498 else if (isdigit(ch)) {
4499 all_digits = true;
4500 goto char_ok;
4501 }
4502 }
4503
4504 if (expansion < 2
4505 && ( (all_digits && !isdigit(ch))
4506 || (!all_digits && !isalnum(ch) && ch != '_')
4507 )
4508 ) {
4509 /* handle parameter expansions
4510 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4511 */
4512 if (first_char)
4513 goto case_default;
4514 switch (ch) {
4515 case ':': /* null modifier */
4516 if (expansion == 0) {
4517 debug_printf_parse(": null modifier\n");
4518 ++expansion;
4519 break;
4520 }
4521 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004522 case '#': /* remove prefix */
4523 case '%': /* remove suffix */
4524 if (expansion == 0) {
4525 debug_printf_parse(": remove suffix/prefix\n");
4526 expansion = 2;
4527 break;
4528 }
4529 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004530 case '-': /* default value */
4531 case '=': /* assign default */
4532 case '+': /* alternative */
4533 case '?': /* error indicate */
4534 debug_printf_parse(": parameter expansion\n");
4535 expansion = 2;
4536 break;
4537 default:
4538 case_default:
4539 syntax("unterminated ${name}");
4540 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4541 return 1;
4542 }
4543 }
4544 char_ok:
4545 debug_printf_parse(": '%c'\n", ch);
4546 o_addchr(dest, ch | quote_mask);
4547 quote_mask = 0;
4548 first_char = false;
4549 }
4550 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4551 break;
4552 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004553#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004554 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004555# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004556 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004557# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004558 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004559 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004560# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004561 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004562 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004563 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004564 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4565 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004566# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004567 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004568# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004569 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004570# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004571 if (as_string) {
4572 o_addstr(as_string, dest->data + pos);
4573 o_addchr(as_string, ')');
4574 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004575 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004576# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004577 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004578 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004579 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004580# endif
4581# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004582 //int pos = dest->length;
4583 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4584 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004585# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004586 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004587# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004588 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004589# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004590 if (as_string) {
4591 o_addstr(as_string, dest->data + pos);
4592 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004593 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004594# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004595 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4596 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004597# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004598 break;
4599 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004600#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004601 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004602 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004603 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004604 ch = i_peek(input);
4605 if (isalnum(ch)) { /* it's $_name or $_123 */
4606 ch = '_';
4607 goto make_var;
4608 }
4609 /* else: it's $_ */
4610 /* TODO: */
4611 /* $_ Shell or shell script name; or last cmd name */
4612 /* $- Option flags set by set builtin or shell options (-i etc) */
4613 default:
4614 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004615 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004616 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004617 return 0;
4618}
4619
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004620#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004621#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004622 parse_stream_dquoted(dest, input, dquote_end)
4623#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004624static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004625 o_string *dest,
4626 struct in_str *input,
4627 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004628{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004629 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004630 int next;
4631
4632 again:
4633 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004634 if (ch != EOF)
4635 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004636 if (ch == dquote_end) { /* may be only '"' or EOF */
4637 dest->nonnull = 1;
4638 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004639 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004640 debug_printf_parse("parse_stream_dquoted return 0\n");
4641 return 0;
4642 }
4643 if (ch == EOF) {
4644 syntax("unterminated \"");
4645 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4646 return 1;
4647 }
4648 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004649 if (ch != '\n') {
4650 next = i_peek(input);
4651 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004652 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4653 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004654 if (ch == '\\') {
4655 if (next == EOF) {
4656 syntax("\\<eof>");
4657 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4658 return 1;
4659 }
4660 /* bash:
4661 * "The backslash retains its special meaning [in "..."]
4662 * only when followed by one of the following characters:
4663 * $, `, ", \, or <newline>. A double quote may be quoted
4664 * within double quotes by preceding it with a backslash.
4665 * If enabled, history expansion will be performed unless
4666 * an ! appearing in double quotes is escaped using
4667 * a backslash. The backslash preceding the ! is not removed."
4668 */
4669 if (strchr("$`\"\\", next) != NULL) {
4670 o_addqchr(dest, i_getch(input));
4671 } else {
4672 o_addqchr(dest, '\\');
4673 }
4674 goto again;
4675 }
4676 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004677 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004678 debug_printf_parse("parse_stream_dquoted return 1: "
4679 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004680 return 1;
4681 }
4682 goto again;
4683 }
4684#if ENABLE_HUSH_TICK
4685 if (ch == '`') {
4686 //int pos = dest->length;
4687 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4688 o_addchr(dest, 0x80 | '`');
4689 add_till_backquote(dest, input);
4690 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4691 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004692 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004693 }
4694#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004695 o_addQchr(dest, ch);
4696 if (ch == '='
4697 && (dest->o_assignment == MAYBE_ASSIGNMENT
4698 || dest->o_assignment == WORD_IS_KEYWORD)
4699 && is_assignment(dest->data)
4700 ) {
4701 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4702 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004703 goto again;
4704}
4705
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004706/*
4707 * Scan input until EOF or end_trigger char.
4708 * Return a list of pipes to execute, or NULL on EOF
4709 * or if end_trigger character is met.
4710 * On syntax error, exit is shell is not interactive,
4711 * reset parsing machinery and start parsing anew,
4712 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004713 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004714static struct pipe *parse_stream(char **pstring,
4715 struct in_str *input,
4716 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004717{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004718 struct parse_context ctx;
4719 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004720 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004721 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004722
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004723 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004724 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004725 * found. When recursing, quote state is passed in via dest->o_escape.
4726 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004727 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4728 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004729
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004730 G.ifs = get_local_var_value("IFS");
4731 if (G.ifs == NULL)
4732 G.ifs = " \t\n";
4733
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004734 reset:
4735#if ENABLE_HUSH_INTERACTIVE
4736 input->promptmode = 0; /* PS1 */
4737#endif
4738 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4739 initialize_context(&ctx);
4740 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004741 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004742 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004743 const char *is_ifs;
4744 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004745 int ch;
4746 int next;
4747 int redir_fd;
4748 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004749
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004750 if (is_in_dquote) {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004751 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004752 goto parse_error;
4753 }
4754 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004755 is_in_dquote = 0;
4756 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004757 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004758 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4759 ch, ch, dest.o_escape);
4760 if (ch == EOF) {
4761 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004762
4763 if (heredoc_cnt) {
4764 syntax("unterminated here document");
4765 goto parse_error;
4766 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004767 if (done_word(&dest, &ctx)) {
4768 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004769 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004770 o_free(&dest);
4771 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004772 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004773 /* If we got nothing... */
4774// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004775 if (pi->num_cmds == 0
4776 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4777 ) {
4778 free_pipe_list(pi, 0);
4779 pi = NULL;
4780 }
4781 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004782#if !BB_MMU
4783 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4784 if (pstring)
4785 *pstring = ctx.as_string.data;
4786 else
4787 o_free_unsafe(&ctx.as_string);
4788#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004789 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004790 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004791 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004792 is_ifs = strchr(G.ifs, ch);
4793 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4794 "\\$\"" USE_HUSH_TICK("`") /* always special */
4795 , ch);
4796
4797 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004798 o_addQchr(&dest, ch);
4799 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4800 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004801 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004802 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004803 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004804 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004805 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004806 continue;
4807 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004808
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004809 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004810 if (done_word(&dest, &ctx)) {
4811 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004812 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004813 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004814#if ENABLE_HUSH_CASE
4815 /* "case ... in <newline> word) ..." -
4816 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004817 if (ctx.command->argv == NULL
4818 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004819 ) {
4820 continue;
4821 }
4822#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004823 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004824 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004825 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4826 if (heredoc_cnt) {
4827 if (fetch_heredocs(heredoc_cnt, &ctx, input))
4828 goto parse_error;
4829 heredoc_cnt = 0;
4830 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004831 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004832 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004833 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004834 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004835 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004836 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004837 if (end_trigger && end_trigger == ch
4838 && (heredoc_cnt == 0 || end_trigger != ';')
4839 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004840//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004841 if (heredoc_cnt) {
4842 /* This is technically valid:
4843 * { cat <<HERE; }; echo Ok
4844 * heredoc
4845 * heredoc
4846 * heredoc
4847 * HERE
4848 * but we don't support this.
4849 * We require heredoc to be in enclosing {}/(),
4850 * if any.
4851 */
4852 syntax("unterminated here document");
4853 goto parse_error;
4854 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004855 if (done_word(&dest, &ctx)) {
4856 goto parse_error;
4857 }
4858 done_pipe(&ctx, PIPE_SEQ);
4859 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004860 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004861 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004862 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004863 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004864 debug_printf_parse("parse_stream return %p: "
4865 "end_trigger char found\n",
4866 ctx.list_head);
4867 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004868#if !BB_MMU
4869 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4870 if (pstring)
4871 *pstring = ctx.as_string.data;
4872 else
4873 o_free_unsafe(&ctx.as_string);
4874#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004875 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004876 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004877 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004878 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004879 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004880
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004881 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004882 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004883 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004884 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004885 }
4886
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004887 next = '\0';
4888 if (ch != '\n') {
4889 next = i_peek(input);
4890 }
4891
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004892 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004893 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004894 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004895 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004896 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004897 if (ch == EOF || ch == '\n')
4898 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004899 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004900 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004901 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004902//TODO: go back one char?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004903 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00004904 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004905 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004906 }
4907 break;
4908 case '\\':
4909 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004910 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004911 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004912 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004913 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004914 ch = i_getch(input);
4915 o_addchr(&dest, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004916 nommu_addchr(&ctx.as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004917 break;
4918 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004919 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004920 debug_printf_parse("parse_stream parse error: "
4921 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004922 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004923 }
Eric Andersen25f27032001-04-26 23:22:31 +00004924 break;
4925 case '\'':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004926 dest.nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004927 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004928 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004929 if (ch == EOF) {
4930 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004931 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004932 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004933 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004934 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004935 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004936 if (dest.o_assignment == NOT_ASSIGNMENT)
4937 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004938 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004939 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004940 }
Eric Andersen25f27032001-04-26 23:22:31 +00004941 break;
4942 case '"':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004943 dest.nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004944 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004945 if (dest.o_assignment == NOT_ASSIGNMENT)
4946 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004947 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004948#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004949 case '`': {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004950 //int pos = dest.length;
4951 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4952 o_addchr(&dest, '`');
4953 add_till_backquote(&dest, input);
4954 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4955 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004956 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004957 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004958#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004959 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004960 redir_fd = redirect_opt_num(&dest);
4961 if (done_word(&dest, &ctx)) {
4962 goto parse_error;
4963 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004964 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004965 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004966 redir_style = REDIRECT_APPEND;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004967 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004968 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004969 }
4970#if 0
4971 else if (next == '(') {
4972 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004973 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004974 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004975#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004976 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4977 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004978 break;
4979 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004980 redir_fd = redirect_opt_num(&dest);
4981 if (done_word(&dest, &ctx)) {
4982 goto parse_error;
4983 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004984 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004985 if (next == '<') {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004986 redir_style = REDIRECT_HEREDOC;
4987 heredoc_cnt++;
4988 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004989 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004990 nommu_addchr(&ctx.as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004991 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004992 redir_style = REDIRECT_IO;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004993 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004994 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004995 }
4996#if 0
4997 else if (next == '(') {
4998 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004999 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005000 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005001#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005002 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5003 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005004 break;
5005 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005006#if ENABLE_HUSH_CASE
5007 case_semi:
5008#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005009 if (done_word(&dest, &ctx)) {
5010 goto parse_error;
5011 }
5012 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005013#if ENABLE_HUSH_CASE
5014 /* Eat multiple semicolons, detect
5015 * whether it means something special */
5016 while (1) {
5017 ch = i_peek(input);
5018 if (ch != ';')
5019 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005020 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005021 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005022 if (ctx.ctx_res_w == RES_CASEI) {
5023 ctx.ctx_dsemicolon = 1;
5024 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005025 break;
5026 }
5027 }
5028#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005029 new_cmd:
5030 /* We just finished a cmd. New one may start
5031 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005032 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005033 break;
5034 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005035 if (done_word(&dest, &ctx)) {
5036 goto parse_error;
5037 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005038 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005039 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005040 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005041 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005042 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005043 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005044 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005045 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005046 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005047 if (done_word(&dest, &ctx)) {
5048 goto parse_error;
5049 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005050#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005051 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005052 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005053#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005054 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005055 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005056 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005057 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005058 } else {
5059 /* we could pick up a file descriptor choice here
5060 * with redirect_opt_num(), but bash doesn't do it.
5061 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005062 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005063 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005064 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005065 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005066#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005067 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005068 if (ctx.ctx_res_w == RES_MATCH
5069 && ctx.command->argv == NULL /* not (word|(... */
5070 && dest.length == 0 /* not word(... */
5071 && dest.nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005072 ) {
5073 continue;
5074 }
5075#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005076#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005077 if (dest.length != 0 /* not just () but word() */
5078 && dest.nonnull == 0 /* not a"b"c() */
5079 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005080//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005081 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005082 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005083 ) {
5084 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005085 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005086//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005087 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005088//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005089 ch = i_getch(input);
5090 } while (ch == ' ' || ch == '\n');
5091 if (ch != '{') {
5092 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005093 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005094 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005095 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005096 }
5097#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005098 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005099 if (parse_group(&dest, &ctx, input, ch) != 0) {
5100 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005101 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005102 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005103 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005104#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005105 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005106 goto case_semi;
5107#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005108 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005109 /* proper use of this character is caught by end_trigger:
5110 * if we see {, we call parse_group(..., end_trigger='}')
5111 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005112 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005113 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005114 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005115 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005116 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005117 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005118 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005119
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005120 parse_error:
5121 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005122 struct parse_context *pctx;
5123 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005124
5125 /* Clean up allocated tree.
5126 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005127 * Run them from interactive shell, watch pmap `pidof hush`.
5128 * while if false; then false; fi do break; done
5129 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005130 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005131 * Samples to catch leaks at execution:
5132 * while if (true | {true;}); then echo ok; fi; do break; done
5133 * 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 +00005134 */
5135 pctx = &ctx;
5136 do {
5137 /* Update pipe/command counts,
5138 * otherwise freeing may miss some */
5139 done_pipe(pctx, PIPE_SEQ);
5140 debug_printf_clean("freeing list %p from ctx %p\n",
5141 pctx->list_head, pctx);
5142 debug_print_tree(pctx->list_head, 0);
5143 free_pipe_list(pctx->list_head, 0);
5144 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005145#if !BB_MMU
5146 o_free_unsafe(&pctx->as_string);
5147#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005148 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005149 if (pctx != &ctx) {
5150 free(pctx);
5151 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005152 IF_HAS_KEYWORDS(pctx = p2;)
5153 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005154 /* Free text, clear all dest fields */
5155 o_free(&dest);
5156 /* If we are not in top-level parse, we return,
5157 * our caller will propagate error.
5158 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005159 if (end_trigger != ';') {
5160#if !BB_MMU
5161 if (pstring)
5162 *pstring = NULL;
5163#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005164 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005165 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005166 /* Discard cached input, force prompt */
5167 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005168 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005169 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005170 }
Eric Andersen25f27032001-04-26 23:22:31 +00005171}
5172
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005173/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005174 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5175 * end_trigger controls how often we stop parsing
5176 * NUL: parse all, execute, return
5177 * ';': parse till ';' or newline, execute, repeat till EOF
5178 */
5179static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005180{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005181 while (1) {
5182 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005183
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005184 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005185 if (!pipe_list) /* EOF */
5186 break;
5187 debug_print_tree(pipe_list, 0);
5188 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5189 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005190 }
Eric Andersen25f27032001-04-26 23:22:31 +00005191}
5192
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005193static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005194{
5195 struct in_str input;
5196 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005197 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005198}
5199
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005200static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005201{
Eric Andersen25f27032001-04-26 23:22:31 +00005202 struct in_str input;
5203 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005204 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005205}
5206
Denis Vlasenkof9375282009-04-05 19:13:39 +00005207/* Called a few times only (or even once if "sh -c") */
5208static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005209{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005210 unsigned sig;
5211 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005212
Denis Vlasenkof9375282009-04-05 19:13:39 +00005213 mask = (1 << SIGQUIT);
5214 if (G_interactive_fd) {
5215 mask = 0
5216 | (1 << SIGQUIT)
5217 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005218//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005219#if ENABLE_HUSH_JOB
5220 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5221#endif
5222 | (1 << SIGINT)
5223 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005224 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005225 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005226
Denis Vlasenkof9375282009-04-05 19:13:39 +00005227 if (!second_time)
5228 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5229 sig = 0;
5230 while (mask) {
5231 if (mask & 1)
5232 sigaddset(&G.blocked_set, sig);
5233 mask >>= 1;
5234 sig++;
5235 }
5236 sigdelset(&G.blocked_set, SIGCHLD);
5237
5238 sigprocmask(SIG_SETMASK, &G.blocked_set,
5239 second_time ? NULL : &G.inherited_set);
5240 /* POSIX allows shell to re-enable SIGCHLD
5241 * even if it was SIG_IGN on entry */
5242// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5243 if (!second_time)
5244 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5245}
5246
5247#if ENABLE_HUSH_JOB
5248/* helper */
5249static void maybe_set_to_sigexit(int sig)
5250{
5251 void (*handler)(int);
5252 /* non_DFL_mask'ed signals are, well, masked,
5253 * no need to set handler for them.
5254 */
5255 if (!((G.non_DFL_mask >> sig) & 1)) {
5256 handler = signal(sig, sigexit);
5257 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5258 signal(sig, handler);
5259 }
5260}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005261/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005262static void set_fatal_handlers(void)
5263{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005264 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005265 if (HUSH_DEBUG) {
5266 maybe_set_to_sigexit(SIGILL );
5267 maybe_set_to_sigexit(SIGFPE );
5268 maybe_set_to_sigexit(SIGBUS );
5269 maybe_set_to_sigexit(SIGSEGV);
5270 maybe_set_to_sigexit(SIGTRAP);
5271 } /* else: hush is perfect. what SEGV? */
5272 maybe_set_to_sigexit(SIGABRT);
5273 /* bash 3.2 seems to handle these just like 'fatal' ones */
5274 maybe_set_to_sigexit(SIGPIPE);
5275 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005276//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005277 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005278 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005279 * if we aren't interactive... but in this case
5280 * we never want to restore pgrp on exit, and this fn is not called */
5281 /*maybe_set_to_sigexit(SIGTERM);*/
5282 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005283}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005284#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005285
Denis Vlasenkod5762932009-03-31 11:22:57 +00005286static int set_mode(const char cstate, const char mode)
5287{
5288 int state = (cstate == '-' ? 1 : 0);
5289 switch (mode) {
5290 case 'n': G.fake_mode = state; break;
5291 case 'x': /*G.debug_mode = state;*/ break;
5292 default: return EXIT_FAILURE;
5293 }
5294 return EXIT_SUCCESS;
5295}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005296
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005297int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005298int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005299{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005300 static const struct variable const_shell_ver = {
5301 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005302 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005303 .max_len = 1, /* 0 can provoke free(name) */
5304 .flg_export = 1,
5305 .flg_read_only = 1,
5306 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005307 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005308 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005309 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005310 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005311
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005312 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005313 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005314 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005315#if !BB_MMU
5316 G.argv0_for_re_execing = argv[0];
5317#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005318 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005319 G.shell_ver = const_shell_ver; /* copying struct here */
5320 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005321 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005322 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5323 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005324 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005325 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005326 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005327 if (e) while (*e) {
5328 char *value = strchr(*e, '=');
5329 if (value) { /* paranoia */
5330 cur_var->next = xzalloc(sizeof(*cur_var));
5331 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005332 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005333 cur_var->max_len = strlen(*e);
5334 cur_var->flg_export = 1;
5335 }
5336 e++;
5337 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005338 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005339 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005340#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005341 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005342#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005343 G.global_argc = argc;
5344 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005345 /* Initialize some more globals to non-zero values */
5346 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005347#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005348 if (ENABLE_FEATURE_EDITING)
5349 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005350 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005351#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005352
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005353 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005354 * block_signals(0) if we are going to execute "sh <script>",
5355 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005356 * If we later decide that we are interactive, we run block_signals(0)
5357 * (or re-run block_signals(1) if we ran block_signals(0) before)
5358 * in order to intercept (more) signals.
5359 */
5360
5361 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005362 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005363 while (1) {
5364 opt = getopt(argc, argv, "c:xins"
5365#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005366 "<:$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005367#endif
5368 );
5369 if (opt <= 0)
5370 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005371 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005372 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005373 if (!G.root_pid)
5374 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005375 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005376 if (!argv[optind]) {
5377 /* -c 'script' (no params): prevent empty $0 */
5378 *--G.global_argv = argv[0];
5379 optind--;
5380 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005381 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005382 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005383 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005384 goto final_return;
5385 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005386 /* Well, we cannot just declare interactiveness,
5387 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005388 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005389 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005390 case 's':
5391 /* "-s" means "read from stdin", but this is how we always
5392 * operate, so simply do nothing here. */
5393 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005394#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005395 case '<': /* "big heredoc" support */
5396 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5397 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005398 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005399 G.root_pid = bb_strtou(optarg, &optarg, 16);
5400 optarg++;
5401 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5402 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005403 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005404# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005405 optarg++;
5406 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005407# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005408 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005409 case 'R':
5410 case 'V':
5411 set_local_var(xstrdup(optarg), 0, opt == 'R');
5412 break;
5413#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005414 case 'n':
5415 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005416 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005417 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005418 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005419#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005420 fprintf(stderr, "Usage: sh [FILE]...\n"
5421 " or: sh -c command [args]...\n\n");
5422 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005423#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005424 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005425#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005426 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005427 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005428
5429 if (!G.root_pid)
5430 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005431
5432 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005433 if (argv[0] && argv[0][0] == '-') {
5434 FILE *input;
5435 /* XXX what should argv be while sourcing /etc/profile? */
5436 debug_printf("sourcing /etc/profile\n");
5437 input = fopen_for_read("/etc/profile");
5438 if (input != NULL) {
5439 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005440 block_signals(0); /* 0: called 1st time */
5441 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005442 parse_and_run_file(input);
5443 fclose(input);
5444 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005445 /* bash: after sourcing /etc/profile,
5446 * tries to source (in the given order):
5447 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5448 * stopping of first found. --noprofile turns this off.
5449 * bash also sources ~/.bash_logout on exit.
5450 * If called as sh, skips .bash_XXX files.
5451 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005452 }
5453
Denis Vlasenkof9375282009-04-05 19:13:39 +00005454 if (argv[optind]) {
5455 FILE *input;
5456 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005457 * "bash <script>" (which is never interactive (unless -i?))
5458 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005459 * If called as sh, does the same but with $ENV.
5460 */
5461 debug_printf("running script '%s'\n", argv[optind]);
5462 G.global_argv = argv + optind;
5463 G.global_argc = argc - optind;
5464 input = xfopen_for_read(argv[optind]);
5465 close_on_exec_on(fileno(input));
5466 if (!signal_mask_is_inited)
5467 block_signals(0); /* 0: called 1st time */
5468 parse_and_run_file(input);
5469#if ENABLE_FEATURE_CLEAN_UP
5470 fclose(input);
5471#endif
5472 goto final_return;
5473 }
5474
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005475 /* Up to here, shell was non-interactive. Now it may become one.
5476 * NB: don't forget to (re)run block_signals(0/1) as needed.
5477 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005478
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005479 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005480 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005481 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005482 * no arguments remaining or the -s flag given
5483 * standard input is a terminal
5484 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005485 * Refer to Posix.2, the description of the 'sh' utility.
5486 */
5487#if ENABLE_HUSH_JOB
5488 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005489 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005490 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005491//TODO: "interactive" and "have job control" are two different things.
5492//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5493//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005494 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005495 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005496 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5497 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005498 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005499 G_interactive_fd = dup(STDIN_FILENO);
5500 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005501 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005502 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005503 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005504// TODO: track & disallow any attempts of user
5505// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005506 }
Eric Andersen25f27032001-04-26 23:22:31 +00005507 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005508 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005509 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005510 pid_t shell_pgrp;
5511
5512 /* We are indeed interactive shell, and we will perform
5513 * job control. Setting up for that. */
5514
5515 close_on_exec_on(G_interactive_fd);
5516 /* If we were run as 'hush &', sleep until we are
5517 * in the foreground (tty pgrp == our pgrp).
5518 * If we get started under a job aware app (like bash),
5519 * make sure we are now in charge so we don't fight over
5520 * who gets the foreground */
5521 while (1) {
5522 shell_pgrp = getpgrp();
5523 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5524 if (G.saved_tty_pgrp == shell_pgrp)
5525 break;
5526 /* send TTIN to ourself (should stop us) */
5527 kill(- shell_pgrp, SIGTTIN);
5528 }
5529 /* Block some signals */
5530 block_signals(signal_mask_is_inited);
5531 /* Set other signals to restore saved_tty_pgrp */
5532 set_fatal_handlers();
5533 /* Put ourselves in our own process group */
5534 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5535 /* Grab control of the terminal */
5536 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005537 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005538 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005539 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005540 if (setjmp(die_jmp)) {
5541 /* xfunc has failed! die die die */
5542 hush_exit(xfunc_error_retval);
5543 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005544 } else if (!signal_mask_is_inited) {
5545 block_signals(0); /* 0: called 1st time */
5546 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005547#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005548 /* No job control compiled in, only prompt/line editing */
5549 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005550 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5551 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005552 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005553 G_interactive_fd = dup(STDIN_FILENO);
5554 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005555 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005556 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005557 }
5558 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005559 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005560 close_on_exec_on(G_interactive_fd);
5561 block_signals(signal_mask_is_inited);
5562 } else if (!signal_mask_is_inited) {
5563 block_signals(0);
5564 }
5565#else
5566 /* We have interactiveness code disabled */
5567 if (!signal_mask_is_inited) {
5568 block_signals(0);
5569 }
5570#endif
5571 /* bash:
5572 * if interactive but not a login shell, sources ~/.bashrc
5573 * (--norc turns this off, --rcfile <file> overrides)
5574 */
5575
5576 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005577 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005578 printf("Enter 'help' for a list of built-in commands.\n\n");
5579 }
5580
Denis Vlasenkof9375282009-04-05 19:13:39 +00005581 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005582
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005583 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005584#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005585 if (G.cwd != bb_msg_unknown)
5586 free((char*)G.cwd);
5587 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005588 while (cur_var) {
5589 struct variable *tmp = cur_var;
5590 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005591 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005592 cur_var = cur_var->next;
5593 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005594 }
Eric Andersen25f27032001-04-26 23:22:31 +00005595#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005596 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005597}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005598
5599
5600#if ENABLE_LASH
5601int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5602int lash_main(int argc, char **argv)
5603{
5604 //bb_error_msg("lash is deprecated, please use hush instead");
5605 return hush_main(argc, argv);
5606}
5607#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005608
5609
5610/*
5611 * Built-ins
5612 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005613static int builtin_trap(char **argv)
5614{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005615 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005616 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005617 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005618
5619 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005620 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005621
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005622 argv++;
5623 if (!*argv) {
5624 /* No args: print all trapped. This isn't 100% correct as we
5625 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005626 */
5627 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005628 if (G.traps[i])
5629 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005630 return EXIT_SUCCESS;
5631 }
5632
Denis Vlasenkod5762932009-03-31 11:22:57 +00005633 new_cmd = NULL;
5634 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005635 /* If first arg is decimal: reset all specified signals */
5636 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005637 if (errno == 0) {
5638 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005639 set_all:
5640 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005641 while (*argv) {
5642 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005643 if (sig < 0 || sig >= NSIG) {
5644 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005645 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005646 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5647 continue;
5648 }
5649
Denis Vlasenkod5762932009-03-31 11:22:57 +00005650 free(G.traps[sig]);
5651 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005652
Denis Vlasenkod5762932009-03-31 11:22:57 +00005653 debug_printf("trap: setting SIG%s (%i) to '%s'",
5654 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005655
5656 /* There is no signal for 0 (EXIT) */
5657 if (sig == 0)
5658 continue;
5659
5660 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005661 sigaddset(&G.blocked_set, sig);
5662 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005663 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005664 * (if sig has non-DFL handling,
5665 * we don't need to do anything) */
5666 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5667 continue;
5668 sigdelset(&G.blocked_set, sig);
5669 }
5670 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005671 }
5672 return ret;
5673 }
5674
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005675 /* First arg is "-": reset all specified to default */
5676 /* First arg is "": ignore all specified */
5677 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005678 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005679 bb_error_msg("trap: invalid arguments");
5680 return EXIT_FAILURE;
5681 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005682 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005683 new_cmd = *argv;
5684 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005685 goto set_all;
5686}
5687
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005688static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005689{
5690 return 0;
5691}
5692
5693static int builtin_test(char **argv)
5694{
5695 int argc = 0;
5696 while (*argv) {
5697 argc++;
5698 argv++;
5699 }
5700 return test_main(argc, argv - argc);
5701}
5702
5703static int builtin_echo(char **argv)
5704{
5705 int argc = 0;
5706 while (*argv) {
5707 argc++;
5708 argv++;
5709 }
5710 return echo_main(argc, argv - argc);
5711}
5712
5713static int builtin_eval(char **argv)
5714{
5715 int rcode = EXIT_SUCCESS;
5716
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005717 if (*++argv) {
5718 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005719 /* bash:
5720 * eval "echo Hi; done" ("done" is syntax error):
5721 * "echo Hi" will not execute too.
5722 */
5723 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005724 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005725 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005726 }
5727 return rcode;
5728}
5729
5730static int builtin_cd(char **argv)
5731{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005732 const char *newdir = argv[1];
5733 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005734 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5735 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5736 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005737 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005738 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005739 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005740 /* Mimic bash message exactly */
5741 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005742 return EXIT_FAILURE;
5743 }
5744 set_cwd();
5745 return EXIT_SUCCESS;
5746}
5747
5748static int builtin_exec(char **argv)
5749{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005750 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005751 return EXIT_SUCCESS; /* bash does this */
5752 {
5753#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005754 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005755#endif
5756// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005757 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005758 /* never returns */
5759 }
5760}
5761
5762static int builtin_exit(char **argv)
5763{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005764 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005765// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5766 //puts("exit"); /* bash does it */
5767// TODO: warn if we have background jobs: "There are stopped jobs"
5768// On second consecutive 'exit', exit anyway.
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005769 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005770 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005771 /* mimic bash: exit 123abc == exit 255 + error msg */
5772 xfunc_error_retval = 255;
5773 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005774 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005775}
5776
5777static int builtin_export(char **argv)
5778{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005779 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005780 // TODO:
5781 // ash emits: export VAR='VAL'
5782 // bash: declare -x VAR="VAL"
5783 // (both also escape as needed (quotes, $, etc))
5784 char **e = environ;
5785 if (e)
5786 while (*e)
5787 puts(*e++);
5788 return EXIT_SUCCESS;
5789 }
5790
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005791 do {
5792 const char *value;
5793 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005794
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005795 value = strchr(name, '=');
5796 if (!value) {
5797 /* They are exporting something without a =VALUE */
5798 struct variable *var;
5799
5800 var = get_local_var(name);
5801 if (var) {
5802 var->flg_export = 1;
5803 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
5804 putenv(var->varstr);
5805 }
5806 /* bash does not return an error when trying to export
5807 * an undefined variable. Do likewise. */
5808 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005809 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005810 set_local_var(xstrdup(name), 1, 0);
5811 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005812
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005813 return EXIT_SUCCESS;
5814}
5815
5816#if ENABLE_HUSH_JOB
5817/* built-in 'fg' and 'bg' handler */
5818static int builtin_fg_bg(char **argv)
5819{
5820 int i, jobnum;
5821 struct pipe *pi;
5822
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005823 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005824 return EXIT_FAILURE;
5825 /* If they gave us no args, assume they want the last backgrounded task */
5826 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005827 for (pi = G.job_list; pi; pi = pi->next) {
5828 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005829 goto found;
5830 }
5831 }
5832 bb_error_msg("%s: no current job", argv[0]);
5833 return EXIT_FAILURE;
5834 }
5835 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5836 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5837 return EXIT_FAILURE;
5838 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005839 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005840 if (pi->jobid == jobnum) {
5841 goto found;
5842 }
5843 }
5844 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5845 return EXIT_FAILURE;
5846 found:
5847 // TODO: bash prints a string representation
5848 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005849 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005850 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005851 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005852 }
5853
5854 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005855 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5856 for (i = 0; i < pi->num_cmds; i++) {
5857 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5858 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005859 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005860 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005861
5862 i = kill(- pi->pgrp, SIGCONT);
5863 if (i < 0) {
5864 if (errno == ESRCH) {
5865 delete_finished_bg_job(pi);
5866 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005867 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005868 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005869 }
5870
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005871 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005872 remove_bg_job(pi);
5873 return checkjobs_and_fg_shell(pi);
5874 }
5875 return EXIT_SUCCESS;
5876}
5877#endif
5878
5879#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005880static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005881{
5882 const struct built_in_command *x;
5883
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005884 printf("\n"
5885 "Built-in commands:\n"
5886 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005887 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5888 printf("%s\t%s\n", x->cmd, x->descr);
5889 }
5890 printf("\n\n");
5891 return EXIT_SUCCESS;
5892}
5893#endif
5894
5895#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005896static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005897{
5898 struct pipe *job;
5899 const char *status_string;
5900
Denis Vlasenko87a86552008-07-29 19:43:10 +00005901 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005902 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005903 status_string = "Stopped";
5904 else
5905 status_string = "Running";
5906
5907 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5908 }
5909 return EXIT_SUCCESS;
5910}
5911#endif
5912
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005913static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005914{
5915 puts(set_cwd());
5916 return EXIT_SUCCESS;
5917}
5918
5919static int builtin_read(char **argv)
5920{
5921 char *string;
5922 const char *name = argv[1] ? argv[1] : "REPLY";
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00005923//TODO: check that argv[1] is a valid variable name
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005924
5925 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005926 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005927}
5928
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005929/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5930 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005931 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005932 * set [-abCefhmnuvx] [-o option] [argument...]
5933 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005934 * set -- [argument...]
5935 * set -o
5936 * set +o
5937 * Implementations shall support the options in both their hyphen and
5938 * plus-sign forms. These options can also be specified as options to sh.
5939 * Examples:
5940 * Write out all variables and their values: set
5941 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5942 * Turn on the -x and -v options: set -xv
5943 * Unset all positional parameters: set --
5944 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5945 * Set the positional parameters to the expansion of x, even if x expands
5946 * with a leading '-' or '+': set -- $x
5947 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005948 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005949 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005950static int builtin_set(char **argv)
5951{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005952 int n;
5953 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005954 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005955
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005956 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005957 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005958 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005959 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005960 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005961 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005962
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005963 do {
5964 if (!strcmp(arg, "--")) {
5965 ++argv;
5966 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005967 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005968
5969 if (arg[0] == '+' || arg[0] == '-') {
5970 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005971 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005972 goto error;
5973 continue;
5974 }
5975
5976 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005977 } while ((arg = *++argv) != NULL);
5978 /* Now argv[0] is 1st argument */
5979
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005980 /* Only reset global_argv if we didn't process anything */
5981 if (arg == NULL)
5982 return EXIT_SUCCESS;
5983 set_argv:
5984
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005985 /* NB: G.global_argv[0] ($0) is never freed/changed */
5986 g_argv = G.global_argv;
5987 if (G.global_args_malloced) {
5988 pp = g_argv;
5989 while (*++pp)
5990 free(*pp);
5991 g_argv[1] = NULL;
5992 } else {
5993 G.global_args_malloced = 1;
5994 pp = xzalloc(sizeof(pp[0]) * 2);
5995 pp[0] = g_argv[0]; /* retain $0 */
5996 g_argv = pp;
5997 }
5998 /* This realloc's G.global_argv */
5999 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6000
6001 n = 1;
6002 while (*++pp)
6003 n++;
6004 G.global_argc = n;
6005
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006006 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006007
6008 /* Nothing known, so abort */
6009 error:
6010 bb_error_msg("set: %s: invalid option", arg);
6011 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006012}
6013
6014static int builtin_shift(char **argv)
6015{
6016 int n = 1;
6017 if (argv[1]) {
6018 n = atoi(argv[1]);
6019 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006020 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006021 if (G.global_args_malloced) {
6022 int m = 1;
6023 while (m <= n)
6024 free(G.global_argv[m++]);
6025 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006026 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006027 memmove(&G.global_argv[1], &G.global_argv[n+1],
6028 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006029 return EXIT_SUCCESS;
6030 }
6031 return EXIT_FAILURE;
6032}
6033
6034static int builtin_source(char **argv)
6035{
6036 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006037
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006038 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006039 return EXIT_FAILURE;
6040
6041 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006042 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006043 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006044 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006045 return EXIT_FAILURE;
6046 }
6047 close_on_exec_on(fileno(input));
6048
6049 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006050//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006051 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006052 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006053 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006054 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006055 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006056 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006057}
6058
6059static int builtin_umask(char **argv)
6060{
6061 mode_t new_umask;
6062 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006063 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006064//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006065 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006066 if (errno) {
6067 //Message? bash examples:
6068 //bash: umask: 'q': invalid symbolic mode operator
6069 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006070 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006071 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006072 } else {
6073 new_umask = umask(0);
6074 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006075 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006076 }
6077 umask(new_umask);
6078 return EXIT_SUCCESS;
6079}
6080
Mike Frysingerd690f682009-03-30 06:50:54 +00006081/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006082static int builtin_unset(char **argv)
6083{
Mike Frysingerd690f682009-03-30 06:50:54 +00006084 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006085 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006086
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006087 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006088 return EXIT_SUCCESS;
6089
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006090 var = 'v';
6091 if (argv[0][0] == '-') {
6092 switch (argv[0][1]) {
6093 case 'v':
6094 case 'f':
6095 var = argv[0][1];
6096 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006097 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006098 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006099 return EXIT_FAILURE;
6100 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006101//TODO: disallow "unset -vf ..." too
6102 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006103 }
6104
6105 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006106 while (*argv) {
6107 if (var == 'v') {
6108 if (unset_local_var(*argv)) {
6109 /* unset <nonexistent_var> doesn't fail.
6110 * Error is when one tries to unset RO var.
6111 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006112 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006113 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006114 }
6115#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006116 else {
6117 unset_local_func(*argv);
6118 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006119#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006120 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006121 }
6122 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006123}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006124
Mike Frysinger56bdea12009-03-28 20:01:58 +00006125/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6126static int builtin_wait(char **argv)
6127{
6128 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006129 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006130
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006131 if (*++argv == NULL) {
6132 /* Don't care about wait results */
6133 /* Note 1: must wait until there are no more children */
6134 /* Note 2: must be interruptible */
6135 /* Examples:
6136 * $ sleep 3 & sleep 6 & wait
6137 * [1] 30934 sleep 3
6138 * [2] 30935 sleep 6
6139 * [1] Done sleep 3
6140 * [2] Done sleep 6
6141 * $ sleep 3 & sleep 6 & wait
6142 * [1] 30936 sleep 3
6143 * [2] 30937 sleep 6
6144 * [1] Done sleep 3
6145 * ^C <-- after ~4 sec from keyboard
6146 * $
6147 */
6148 sigaddset(&G.blocked_set, SIGCHLD);
6149 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6150 while (1) {
6151 checkjobs(NULL);
6152 if (errno == ECHILD)
6153 break;
6154 /* Wait for SIGCHLD or any other signal of interest */
6155 /* sigtimedwait with infinite timeout: */
6156 sig = sigwaitinfo(&G.blocked_set, NULL);
6157 if (sig > 0) {
6158 sig = check_and_run_traps(sig);
6159 if (sig && sig != SIGCHLD) { /* see note 2 */
6160 ret = 128 + sig;
6161 break;
6162 }
6163 }
6164 }
6165 sigdelset(&G.blocked_set, SIGCHLD);
6166 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6167 return ret;
6168 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006169
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006170 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006171 while (*argv) {
6172 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006173 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006174 /* mimic bash message */
6175 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006176 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006177 }
6178 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006179 if (WIFSIGNALED(status))
6180 ret = 128 + WTERMSIG(status);
6181 else if (WIFEXITED(status))
6182 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006183 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006184 ret = EXIT_FAILURE;
6185 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006186 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006187 ret = 127;
6188 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006189 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006190 }
6191
6192 return ret;
6193}
6194
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006195#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006196static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006197{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006198 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006199 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006200 return EXIT_SUCCESS; /* bash compat */
6201 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006202 G.flag_break_continue++; /* BC_BREAK = 1 */
6203 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006204 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006205 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6206 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006207 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006208 G.flag_break_continue = BC_BREAK;
6209 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006210 }
6211 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006212 if (G.depth_of_loop < G.depth_break_continue)
6213 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006214 return EXIT_SUCCESS;
6215}
6216
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006217static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006218{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006219 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6220 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006221}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006222#endif