blob: d82be3d70aaff84e3333f014c0a91f47cee0b06e [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 Vlasenkoaf07b7c2009-04-07 13:26:18 +0000917/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
918#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
919/* After [v]fork, in parent: do not restore tty pgrp on xfunc death */
920#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
921
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000922/* Restores tty foreground process group, and exits.
923 * May be called as signal handler for fatal signal
924 * (will faithfully resend signal to itself, producing correct exit state)
925 * or called directly with -EXITCODE.
926 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000927static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000928static void sigexit(int sig)
929{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000930 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000931 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000932
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000933 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000934 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000935 if (G_interactive_fd && getpid() == G.root_pid)
936 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000937
938 /* Not a signal, just exit */
939 if (sig <= 0)
940 _exit(- sig);
941
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000942 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000943}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000944#else
945
946#define disable_restore_tty_pgrp_on_exit() ((void)0)
947#define enable_restore_tty_pgrp_on_exit() ((void)0)
948
Denis Vlasenkoe0755e52009-04-03 21:16:45 +0000949#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000950
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000951/* Restores tty foreground process group, and exits. */
952static void hush_exit(int exitcode) NORETURN;
953static void hush_exit(int exitcode)
954{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000955 if (G.traps && G.traps[0] && G.traps[0][0]) {
956 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
Denis Vlasenkof9375282009-04-05 19:13:39 +0000957//TODO: do we need to prevent recursion?
Denis Vlasenkod5762932009-03-31 11:22:57 +0000958 builtin_eval(argv);
959 free(argv[1]);
960 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000961
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000962#if ENABLE_HUSH_JOB
963 fflush(NULL); /* flush all streams */
964 sigexit(- (exitcode & 0xff));
965#else
966 exit(exitcode);
967#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000968}
969
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000970
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000971static const char *set_cwd(void)
972{
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000973 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
974 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +0000975 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000976 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000977 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
978 if (!G.cwd)
979 G.cwd = bb_msg_unknown;
980 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000981}
982
Denis Vlasenko83506862007-11-23 13:11:42 +0000983
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000984/* Get/check local shell variables */
985static struct variable *get_local_var(const char *name)
986{
987 struct variable *cur;
988 int len;
989
990 if (!name)
991 return NULL;
992 len = strlen(name);
993 for (cur = G.top_var; cur; cur = cur->next) {
994 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
995 return cur;
996 }
997 return NULL;
998}
999
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001000static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001001{
1002 struct variable *var = get_local_var(src);
1003 if (var)
1004 return strchr(var->varstr, '=') + 1;
1005 return NULL;
1006}
1007
1008/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001009 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001010 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001011 * 0: do not export
1012 * 1: export
1013 * -1: if NAME is set, leave export status alone
1014 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001015 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001016 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001017#if BB_MMU
1018#define set_local_var(str, flg_export, flg_read_only) \
1019 set_local_var(str, flg_export)
1020#endif
1021static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001022{
1023 struct variable *cur;
1024 char *value;
1025 int name_len;
1026
1027 value = strchr(str, '=');
1028 if (!value) { /* not expected to ever happen? */
1029 free(str);
1030 return -1;
1031 }
1032
1033 name_len = value - str + 1; /* including '=' */
1034 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1035 while (1) {
1036 if (strncmp(cur->varstr, str, name_len) != 0) {
1037 if (!cur->next) {
1038 /* Bail out. Note that now cur points
1039 * to last var in linked list */
1040 break;
1041 }
1042 cur = cur->next;
1043 continue;
1044 }
1045 /* We found an existing var with this name */
1046 *value = '\0';
1047 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001048#if !BB_MMU
1049 if (!flg_read_only)
1050#endif
1051 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001052 free(str);
1053 return -1;
1054 }
1055 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1056 unsetenv(str); /* just in case */
1057 *value = '=';
1058 if (strcmp(cur->varstr, str) == 0) {
1059 free_and_exp:
1060 free(str);
1061 goto exp;
1062 }
1063 if (cur->max_len >= strlen(str)) {
1064 /* This one is from startup env, reuse space */
1065 strcpy(cur->varstr, str);
1066 goto free_and_exp;
1067 }
1068 /* max_len == 0 signifies "malloced" var, which we can
1069 * (and has to) free */
1070 if (!cur->max_len)
1071 free(cur->varstr);
1072 cur->max_len = 0;
1073 goto set_str_and_exp;
1074 }
1075
1076 /* Not found - create next variable struct */
1077 cur->next = xzalloc(sizeof(*cur));
1078 cur = cur->next;
1079
1080 set_str_and_exp:
1081 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001082#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001083 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001084#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001085 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001086 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001087 cur->flg_export = 1;
1088 if (cur->flg_export) {
1089 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1090 return putenv(cur->varstr);
1091 }
1092 return 0;
1093}
1094
Mike Frysingerd690f682009-03-30 06:50:54 +00001095static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001096{
1097 struct variable *cur;
1098 struct variable *prev = prev; /* for gcc */
1099 int name_len;
1100
1101 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001102 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001103 name_len = strlen(name);
1104 cur = G.top_var;
1105 while (cur) {
1106 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1107 if (cur->flg_read_only) {
1108 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001109 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001110 }
1111 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1112 * is ro, and we cannot reach this code on the 1st pass */
1113 prev->next = cur->next;
1114 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1115 bb_unsetenv(cur->varstr);
1116 if (!cur->max_len)
1117 free(cur->varstr);
1118 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001119 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001120 }
1121 prev = cur;
1122 cur = cur->next;
1123 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001124 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001125}
1126
Mike Frysinger98c52642009-04-02 10:02:37 +00001127#if ENABLE_SH_MATH_SUPPORT
1128#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1129#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1130static char *endofname(const char *name)
1131{
1132 char *p;
1133
1134 p = (char *) name;
1135 if (!is_name(*p))
1136 return p;
1137 while (*++p) {
1138 if (!is_in_name(*p))
1139 break;
1140 }
1141 return p;
1142}
1143
1144static void arith_set_local_var(const char *name, const char *val, int flags)
1145{
1146 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001147 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001148 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001149}
1150#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001151
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001152
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001153/*
1154 * in_str support
1155 */
1156static int static_get(struct in_str *i)
1157{
1158 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001159 if (ch != '\0')
1160 return ch;
1161 i->p--;
1162 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001163}
1164
1165static int static_peek(struct in_str *i)
1166{
1167 return *i->p;
1168}
1169
1170#if ENABLE_HUSH_INTERACTIVE
1171
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001172static void cmdedit_set_initial_prompt(void)
1173{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001174 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1175 G.PS1 = getenv("PS1");
1176 if (G.PS1 == NULL)
1177 G.PS1 = "\\w \\$ ";
1178 } else
1179 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001180}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001181
1182static const char* setup_prompt_string(int promptmode)
1183{
1184 const char *prompt_str;
1185 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001186 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1187 /* Set up the prompt */
1188 if (promptmode == 0) { /* PS1 */
1189 free((char*)G.PS1);
1190 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1191 prompt_str = G.PS1;
1192 } else
1193 prompt_str = G.PS2;
1194 } else
1195 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001196 debug_printf("result '%s'\n", prompt_str);
1197 return prompt_str;
1198}
1199
1200static void get_user_input(struct in_str *i)
1201{
1202 int r;
1203 const char *prompt_str;
1204
1205 prompt_str = setup_prompt_string(i->promptmode);
1206#if ENABLE_FEATURE_EDITING
1207 /* Enable command line editing only while a command line
1208 * is actually being read */
1209 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001210 G.flag_SIGINT = 0;
1211 /* buglet: SIGINT will not make new prompt to appear _at once_,
1212 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001213 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001214 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001215 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001216 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001217 i->eof_flag = (r < 0);
1218 if (i->eof_flag) { /* EOF/error detected */
1219 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1220 G.user_input_buf[1] = '\0';
1221 }
1222#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001223 do {
1224 G.flag_SIGINT = 0;
1225 fputs(prompt_str, stdout);
1226 fflush(stdout);
1227 G.user_input_buf[0] = r = fgetc(i->file);
1228 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001229//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001230 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001231 i->eof_flag = (r == EOF);
1232#endif
1233 i->p = G.user_input_buf;
1234}
1235
1236#endif /* INTERACTIVE */
1237
1238/* This is the magic location that prints prompts
1239 * and gets data back from the user */
1240static int file_get(struct in_str *i)
1241{
1242 int ch;
1243
1244 /* If there is data waiting, eat it up */
1245 if (i->p && *i->p) {
1246#if ENABLE_HUSH_INTERACTIVE
1247 take_cached:
1248#endif
1249 ch = *i->p++;
1250 if (i->eof_flag && !*i->p)
1251 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001252 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001253 } else {
1254 /* need to double check i->file because we might be doing something
1255 * more complicated by now, like sourcing or substituting. */
1256#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001257 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001258 do {
1259 get_user_input(i);
1260 } while (!*i->p); /* need non-empty line */
1261 i->promptmode = 1; /* PS2 */
1262 i->promptme = 0;
1263 goto take_cached;
1264 }
1265#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001266 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001267 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001268 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001269#if ENABLE_HUSH_INTERACTIVE
1270 if (ch == '\n')
1271 i->promptme = 1;
1272#endif
1273 return ch;
1274}
1275
Denis Vlasenko913a2012009-04-05 22:17:04 +00001276/* All callers guarantee this routine will never
1277 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001278 */
1279static int file_peek(struct in_str *i)
1280{
1281 int ch;
1282 if (i->p && *i->p) {
1283 if (i->eof_flag && !i->p[1])
1284 return EOF;
1285 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001286 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001287 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001288 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001289 i->eof_flag = (ch == EOF);
1290 i->peek_buf[0] = ch;
1291 i->peek_buf[1] = '\0';
1292 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001293 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001294 return ch;
1295}
1296
1297static void setup_file_in_str(struct in_str *i, FILE *f)
1298{
1299 i->peek = file_peek;
1300 i->get = file_get;
1301#if ENABLE_HUSH_INTERACTIVE
1302 i->promptme = 1;
1303 i->promptmode = 0; /* PS1 */
1304#endif
1305 i->file = f;
1306 i->p = NULL;
1307}
1308
1309static void setup_string_in_str(struct in_str *i, const char *s)
1310{
1311 i->peek = static_peek;
1312 i->get = static_get;
1313#if ENABLE_HUSH_INTERACTIVE
1314 i->promptme = 1;
1315 i->promptmode = 0; /* PS1 */
1316#endif
1317 i->p = s;
1318 i->eof_flag = 0;
1319}
1320
1321
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001322/*
1323 * o_string support
1324 */
1325#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001326
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001327static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001328{
1329 o->length = 0;
1330 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001331 if (o->data)
1332 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001333}
1334
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001335static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001336{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001337 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001338 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001339}
1340
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001341static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1342{
1343 free(o->data);
1344}
1345
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001346static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001347{
1348 if (o->length + len > o->maxlen) {
1349 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1350 o->data = xrealloc(o->data, 1 + o->maxlen);
1351 }
1352}
1353
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001354static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001355{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001356 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1357 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001358 o->data[o->length] = ch;
1359 o->length++;
1360 o->data[o->length] = '\0';
1361}
1362
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001363static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001364{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001365 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001366 memcpy(&o->data[o->length], str, len);
1367 o->length += len;
1368 o->data[o->length] = '\0';
1369}
1370
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001371#if !BB_MMU
1372static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001373{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001374 o_addblock(o, str, strlen(str));
1375}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001376static void nommu_addchr(o_string *o, int ch)
1377{
1378 if (o)
1379 o_addchr(o, ch);
1380}
1381#else
1382#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001383#endif
1384
1385static void o_addstr_with_NUL(o_string *o, const char *str)
1386{
1387 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001388}
1389
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001390static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001391{
1392 while (len) {
1393 o_addchr(o, *str);
1394 if (*str++ == '\\'
1395 && (*str != '*' && *str != '?' && *str != '[')
1396 ) {
1397 o_addchr(o, '\\');
1398 }
1399 len--;
1400 }
1401}
1402
Eric Andersen25f27032001-04-26 23:22:31 +00001403/* My analysis of quoting semantics tells me that state information
1404 * is associated with a destination, not a source.
1405 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001406static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001407{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001408 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001409 char *found = strchr("*?[\\", ch);
1410 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001411 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001412 o_grow_by(o, sz);
1413 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001414 o->data[o->length] = '\\';
1415 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001416 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001417 o->data[o->length] = ch;
1418 o->length++;
1419 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001420}
1421
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001422static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001423{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001424 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001425 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001426 sz++;
1427 o->data[o->length] = '\\';
1428 o->length++;
1429 }
1430 o_grow_by(o, sz);
1431 o->data[o->length] = ch;
1432 o->length++;
1433 o->data[o->length] = '\0';
1434}
1435
1436static void o_addQstr(o_string *o, const char *str, int len)
1437{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001438 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001439 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001440 return;
1441 }
1442 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001443 char ch;
1444 int sz;
1445 int ordinary_cnt = strcspn(str, "*?[\\");
1446 if (ordinary_cnt > len) /* paranoia */
1447 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001448 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001449 if (ordinary_cnt == len)
1450 return;
1451 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001452 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001453
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001454 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001455 sz = 1;
1456 if (ch) { /* it is necessarily one of "*?[\\" */
1457 sz++;
1458 o->data[o->length] = '\\';
1459 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001460 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001461 o_grow_by(o, sz);
1462 o->data[o->length] = ch;
1463 o->length++;
1464 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001465 }
1466}
1467
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001468/* A special kind of o_string for $VAR and `cmd` expansion.
1469 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001470 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001471 * list[i] contains an INDEX (int!) into this string data.
1472 * It means that if list[] needs to grow, data needs to be moved higher up
1473 * but list[i]'s need not be modified.
1474 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001475 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001476 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1477 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001478#if DEBUG_EXPAND || DEBUG_GLOB
1479static void debug_print_list(const char *prefix, o_string *o, int n)
1480{
1481 char **list = (char**)o->data;
1482 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1483 int i = 0;
1484 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1485 prefix, list, n, string_start, o->length, o->maxlen);
1486 while (i < n) {
1487 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1488 o->data + (int)list[i] + string_start,
1489 o->data + (int)list[i] + string_start);
1490 i++;
1491 }
1492 if (n) {
1493 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001494 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001495 }
1496}
1497#else
1498#define debug_print_list(prefix, o, n) ((void)0)
1499#endif
1500
1501/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1502 * in list[n] so that it points past last stored byte so far.
1503 * It returns n+1. */
1504static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001505{
1506 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001507 int string_start;
1508 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001509
1510 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001511 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1512 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001513 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001514 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001515 /* list[n] points to string_start, make space for 16 more pointers */
1516 o->maxlen += 0x10 * sizeof(list[0]);
1517 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001518 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001519 memmove(list + n + 0x10, list + n, string_len);
1520 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001521 } else {
1522 debug_printf_list("list[%d]=%d string_start=%d\n",
1523 n, string_len, string_start);
1524 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001525 } else {
1526 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001527 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1528 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001529 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1530 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001531 o->has_empty_slot = 0;
1532 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001533 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001534 return n + 1;
1535}
1536
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001537/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001538static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001539{
1540 char **list = (char**)o->data;
1541 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1542
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001543 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001544}
1545
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001546/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001547 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001548static int o_glob(o_string *o, int n)
1549{
1550 glob_t globdata;
1551 int gr;
1552 char *pattern;
1553
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001554 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001555 if (!o->data)
1556 return o_save_ptr_helper(o, n);
1557 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001558 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001559 if (!glob_needed(pattern)) {
1560 literal:
1561 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001562 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001563 return o_save_ptr_helper(o, n);
1564 }
1565
1566 memset(&globdata, 0, sizeof(globdata));
1567 gr = glob(pattern, 0, NULL, &globdata);
1568 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1569 if (gr == GLOB_NOSPACE)
1570 bb_error_msg_and_die("out of memory during glob");
1571 if (gr == GLOB_NOMATCH) {
1572 globfree(&globdata);
1573 goto literal;
1574 }
1575 if (gr != 0) { /* GLOB_ABORTED ? */
1576//TODO: testcase for bad glob pattern behavior
1577 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1578 }
1579 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1580 char **argv = globdata.gl_pathv;
1581 o->length = pattern - o->data; /* "forget" pattern */
1582 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001583 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001584 n = o_save_ptr_helper(o, n);
1585 argv++;
1586 if (!*argv)
1587 break;
1588 }
1589 }
1590 globfree(&globdata);
1591 if (DEBUG_GLOB)
1592 debug_print_list("o_glob returning", o, n);
1593 return n;
1594}
1595
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001596/* If o->o_glob == 1, glob the string so far remembered.
1597 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001598static int o_save_ptr(o_string *o, int n)
1599{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001600 if (o->o_glob) { /* if globbing is requested */
1601 /* If o->has_empty_slot, list[n] was already globbed
1602 * (if it was requested back then when it was filled)
1603 * so don't do that again! */
1604 if (!o->has_empty_slot)
1605 return o_glob(o, n); /* o_save_ptr_helper is inside */
1606 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001607 return o_save_ptr_helper(o, n);
1608}
1609
1610/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001611static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001612{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001613 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001614 int string_start;
1615
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001616 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1617 if (DEBUG_EXPAND)
1618 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001619 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001620 list = (char**)o->data;
1621 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1622 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001623 while (n) {
1624 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001625 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001626 }
1627 return list;
1628}
1629
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001630
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001631/* Expansion can recurse */
1632#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001633static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001634#endif
1635static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001636#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001637#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001638 parse_stream_dquoted(dest, input, dquote_end)
1639#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001640static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001641 o_string *dest,
1642 struct in_str *input,
1643 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001644
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001645/* expand_strvec_to_strvec() takes a list of strings, expands
1646 * all variable references within and returns a pointer to
1647 * a list of expanded strings, possibly with larger number
1648 * of strings. (Think VAR="a b"; echo $VAR).
1649 * This new list is allocated as a single malloc block.
1650 * NULL-terminated list of char* pointers is at the beginning of it,
1651 * followed by strings themself.
1652 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001653
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001654/* Store given string, finalizing the word and starting new one whenever
1655 * we encounter IFS char(s). This is used for expanding variable values.
1656 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1657static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001658{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001659 while (1) {
1660 int word_len = strcspn(str, G.ifs);
1661 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001662 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001663 o_addQstr(output, str, word_len);
1664 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001665 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001666 str += word_len;
1667 }
1668 if (!*str) /* EOL - do not finalize word */
1669 break;
1670 o_addchr(output, '\0');
1671 debug_print_list("expand_on_ifs", output, n);
1672 n = o_save_ptr(output, n);
1673 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001674 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001675 debug_print_list("expand_on_ifs[1]", output, n);
1676 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001677}
1678
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001679/* Expand all variable references in given string, adding words to list[]
1680 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1681 * to be filled). This routine is extremely tricky: has to deal with
1682 * variables/parameters with whitespace, $* and $@, and constructs like
1683 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1684static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001685{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001686 /* or_mask is either 0 (normal case) or 0x80
1687 * (expansion of right-hand side of assignment == 1-element expand.
1688 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001689
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001690 char first_ch, ored_ch;
1691 int i;
1692 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001693 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001694
Mike Frysingera4f331d2009-04-07 06:03:22 +00001695 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001696 ored_ch = 0;
1697
1698 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1699 debug_print_list("expand_vars_to_list", output, n);
1700 n = o_save_ptr(output, n);
1701 debug_print_list("expand_vars_to_list[0]", output, n);
1702
1703 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1704#if ENABLE_HUSH_TICK
1705 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001706#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001707#if ENABLE_SH_MATH_SUPPORT
1708 char arith_buf[sizeof(arith_t)*3 + 2];
1709#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001710 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001711 debug_print_list("expand_vars_to_list[1]", output, n);
1712 arg = ++p;
1713 p = strchr(p, SPECIAL_VAR_SYMBOL);
1714
1715 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1716 /* "$@" is special. Even if quoted, it can still
1717 * expand to nothing (not even an empty string) */
1718 if ((first_ch & 0x7f) != '@')
1719 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001720
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001721 val = NULL;
1722 switch (first_ch & 0x7f) {
1723 /* Highest bit in first_ch indicates that var is double-quoted */
1724 case '$': /* pid */
1725 val = utoa(G.root_pid);
1726 break;
1727 case '!': /* bg pid */
1728 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1729 break;
1730 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001731 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001732 break;
1733 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001734 if (arg[1] != SPECIAL_VAR_SYMBOL)
1735 /* actually, it's a ${#var} */
1736 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001737 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1738 break;
1739 case '*':
1740 case '@':
1741 i = 1;
1742 if (!G.global_argv[i])
1743 break;
1744 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1745 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001746 smallint sv = output->o_escape;
1747 /* unquoted var's contents should be globbed, so don't escape */
1748 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001749 while (G.global_argv[i]) {
1750 n = expand_on_ifs(output, n, G.global_argv[i]);
1751 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1752 if (G.global_argv[i++][0] && G.global_argv[i]) {
1753 /* this argv[] is not empty and not last:
1754 * put terminating NUL, start new word */
1755 o_addchr(output, '\0');
1756 debug_print_list("expand_vars_to_list[2]", output, n);
1757 n = o_save_ptr(output, n);
1758 debug_print_list("expand_vars_to_list[3]", output, n);
1759 }
1760 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001761 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001762 } else
1763 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1764 * and in this case should treat it like '$*' - see 'else...' below */
1765 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1766 while (1) {
1767 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1768 if (++i >= G.global_argc)
1769 break;
1770 o_addchr(output, '\0');
1771 debug_print_list("expand_vars_to_list[4]", output, n);
1772 n = o_save_ptr(output, n);
1773 }
1774 } else { /* quoted $*: add as one word */
1775 while (1) {
1776 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1777 if (!G.global_argv[++i])
1778 break;
1779 if (G.ifs[0])
1780 o_addchr(output, G.ifs[0]);
1781 }
1782 }
1783 break;
1784 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1785 /* "Empty variable", used to make "" etc to not disappear */
1786 arg++;
1787 ored_ch = 0x80;
1788 break;
1789#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001790 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001791 *p = '\0';
1792 arg++;
1793//TODO: can we just stuff it into "output" directly?
1794 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001795 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001796 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1797 val = subst_result.data;
1798 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001799#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001800#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001801 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001802 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001803 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001804 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001805 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001806
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001807 arg++; /* skip '+' */
1808 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001809 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001810
1811 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
Denis Vlasenkob1d11bf2009-04-06 12:24:58 +00001812 exp_str = NULL;
1813 if (strchr(arg, '$') != NULL
1814#if ENABLE_HUSH_TICK
1815 || strchr(arg, '`') != NULL
1816#endif
1817 ) {
1818 /* We need to expand. Example:
1819 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1820 */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001821 struct in_str input;
1822 o_string dest = NULL_O_STRING;
1823
1824 setup_string_in_str(&input, arg);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001825 parse_stream_dquoted(NULL, &dest, &input, EOF);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001826 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1827 exp_str = expand_string_to_string(dest.data);
1828 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
Denis Vlasenko5e883fb2009-04-06 12:28:34 +00001829 o_free_unsafe(&dest);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001830 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001831 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001832 hooks.setvar = arith_set_local_var;
1833 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001834 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1835 free(exp_str);
1836
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001837 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001838 switch (errcode) {
1839 case -3: maybe_die("arith", "exponent less than 0"); break;
1840 case -2: maybe_die("arith", "divide by zero"); break;
1841 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001842 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001843 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001844 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001845 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001846 sprintf(arith_buf, arith_t_fmt, res);
1847 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001848 break;
1849 }
1850#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001851 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001852 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001853 bool exp_len = false;
1854 bool exp_null = false;
1855 char *var = arg;
1856 char exp_save = exp_save; /* for compiler */
1857 char exp_op = exp_op; /* for compiler */
1858 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001859 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001860
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001861 *p = '\0';
1862 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001863
1864 /* prepare for expansions */
1865 if (var[0] == '#') {
1866 /* handle length expansion ${#var} */
1867 exp_len = true;
1868 ++var;
1869 } else {
1870 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00001871 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00001872 if (!var[exp_off])
1873 exp_off = 0;
1874 if (exp_off) {
1875 exp_save = var[exp_off];
1876 exp_null = exp_save == ':';
1877 exp_word = var + exp_off;
1878 if (exp_null) ++exp_word;
1879 exp_op = *exp_word++;
1880 var[exp_off] = '\0';
1881 }
1882 }
1883
1884 /* lookup the variable in question */
1885 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001886 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001887 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001888 if (i < G.global_argc)
1889 val = G.global_argv[i];
1890 /* else val remains NULL: $N with too big N */
1891 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001892 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001893
1894 /* handle any expansions */
1895 if (exp_len) {
1896 debug_printf_expand("expand: length of '%s' = ", val);
1897 val = utoa(val ? strlen(val) : 0);
1898 debug_printf_expand("%s\n", val);
1899 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00001900 if (exp_op == '%' || exp_op == '#') {
1901 /* we need to do a pattern match */
1902 bool zero;
1903 char *loc;
1904 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
1905 if (exp_op == *exp_word) /* ## or %% */
1906 ++exp_word;
1907 val = dyn_val = xstrdup(val);
1908 loc = scan(dyn_val, exp_word, zero);
1909 if (zero)
1910 val = loc;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001911 else
Mike Frysingera4f331d2009-04-07 06:03:22 +00001912 *loc = '\0';
1913 } else {
1914 /* we need to do an expansion */
1915 int exp_test = (!val || (exp_null && !val[0]));
1916 if (exp_op == '+')
1917 exp_test = !exp_test;
1918 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1919 exp_null ? "true" : "false", exp_test);
1920 if (exp_test) {
1921 if (exp_op == '?')
1922 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1923 else
1924 val = exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001925
Mike Frysingera4f331d2009-04-07 06:03:22 +00001926 if (exp_op == '=') {
1927 if (isdigit(var[0]) || var[0] == '#') {
1928 maybe_die(var, "special vars cannot assign in this way");
1929 val = NULL;
1930 } else {
1931 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1932 sprintf(new_var, "%s=%s", var, val);
1933 set_local_var(new_var, -1, 0);
1934 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001935 }
1936 }
1937 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00001938
Mike Frysinger6379bb42009-03-28 18:55:03 +00001939 var[exp_off] = exp_save;
1940 }
1941
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001942 arg[0] = first_ch;
1943#if ENABLE_HUSH_TICK
1944 store_val:
1945#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001946 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001947 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001948 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001949 /* unquoted var's contents should be globbed, so don't escape */
1950 smallint sv = output->o_escape;
1951 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001952 n = expand_on_ifs(output, n, val);
1953 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001954 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001955 }
1956 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001957 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001958 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001959 } /* default: */
1960 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001961 if (val) {
1962 o_addQstr(output, val, strlen(val));
1963 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00001964 free(dyn_val);
1965 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001966 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001967 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001968 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001969
1970#if ENABLE_HUSH_TICK
1971 o_free(&subst_result);
1972#endif
1973 arg = ++p;
1974 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1975
1976 if (arg[0]) {
1977 debug_print_list("expand_vars_to_list[a]", output, n);
1978 /* this part is literal, and it was already pre-quoted
1979 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001980 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001981 debug_print_list("expand_vars_to_list[b]", output, n);
1982 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
1983 && !(ored_ch & 0x80) /* and all vars were not quoted. */
1984 ) {
1985 n--;
1986 /* allow to reuse list[n] later without re-growth */
1987 output->has_empty_slot = 1;
1988 } else {
1989 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00001990 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001991 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001992}
1993
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001994static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001995{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001996 int n;
1997 char **list;
1998 char **v;
1999 o_string output = NULL_O_STRING;
2000
2001 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002002 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002003 /* (unquoted $var will temporarily switch it off) */
2004 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002005 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002006
2007 n = 0;
2008 v = argv;
2009 while (*v) {
2010 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2011 v++;
2012 }
2013 debug_print_list("expand_variables", &output, n);
2014
2015 /* output.data (malloced in one block) gets returned in "list" */
2016 list = o_finalize_list(&output, n);
2017 debug_print_strings("expand_variables[1]", list);
2018 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002019}
2020
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002021static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002022{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002023 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002024}
2025
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002026/* Used for expansion of right hand of assignments */
2027/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2028 * "v=/bin/c*" */
2029static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002030{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002031 char *argv[2], **list;
2032
2033 argv[0] = (char*)str;
2034 argv[1] = NULL;
2035 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2036 if (HUSH_DEBUG)
2037 if (!list[0] || list[1])
2038 bb_error_msg_and_die("BUG in varexp2");
2039 /* actually, just move string 2*sizeof(char*) bytes back */
2040 overlapping_strcpy((char*)list, list[0]);
2041 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2042 return (char*)list;
2043}
2044
2045/* Used for "eval" builtin */
2046static char* expand_strvec_to_string(char **argv)
2047{
2048 char **list;
2049
2050 list = expand_variables(argv, 0x80);
2051 /* Convert all NULs to spaces */
2052 if (list[0]) {
2053 int n = 1;
2054 while (list[n]) {
2055 if (HUSH_DEBUG)
2056 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2057 bb_error_msg_and_die("BUG in varexp3");
2058 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2059 n++;
2060 }
2061 }
2062 overlapping_strcpy((char*)list, list[0]);
2063 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2064 return (char*)list;
2065}
2066
2067static char **expand_assignments(char **argv, int count)
2068{
2069 int i;
2070 char **p = NULL;
2071 /* Expand assignments into one string each */
2072 for (i = 0; i < count; i++) {
2073 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2074 }
2075 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002076}
2077
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002078
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002079#if BB_MMU
2080void re_execute_shell(const char *s, int is_heredoc); /* never called */
2081#define clean_up_after_re_execute() ((void)0)
2082static void reset_traps_to_defaults(void)
2083{
2084 unsigned sig;
2085 int dirty;
2086
2087 if (!G.traps)
2088 return;
2089 dirty = 0;
2090 for (sig = 0; sig < NSIG; sig++) {
2091 if (!G.traps[sig])
2092 continue;
2093 free(G.traps[sig]);
2094 G.traps[sig] = NULL;
2095 /* There is no signal for 0 (EXIT) */
2096 if (sig == 0)
2097 continue;
2098 /* there was a trap handler, we are removing it
2099 * (if sig has non-DFL handling,
2100 * we don't need to do anything) */
2101 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2102 continue;
2103 sigdelset(&G.blocked_set, sig);
2104 dirty = 1;
2105 }
2106 if (dirty)
2107 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2108}
2109
2110#else /* !BB_MMU */
2111
2112static void re_execute_shell(const char *s, int is_heredoc) NORETURN;
2113static void re_execute_shell(const char *s, int is_heredoc)
2114{
2115 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
2116 struct variable *cur;
2117 char **argv, **pp, **pp2;
2118 unsigned cnt;
2119
2120 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2121 , (unsigned) G.root_pid
2122 , (unsigned) G.last_bg_pid
2123 , (unsigned) G.last_exitcode
2124 USE_HUSH_LOOPS(, G.depth_of_loop)
2125 );
2126 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...>
2127 * 3:-c 4:<cmd> <argN...> 5:NULL
2128 */
2129 cnt = 5 + G.global_argc;
2130 for (cur = G.top_var; cur; cur = cur->next) {
2131 if (!cur->flg_export || cur->flg_read_only)
2132 cnt += 2;
2133 }
2134 G.argv_from_re_execing = pp = xzalloc(sizeof(argv[0]) * cnt);
2135 *pp++ = (char *) G.argv0_for_re_execing;
2136 *pp++ = param_buf;
2137 for (cur = G.top_var; cur; cur = cur->next) {
2138 if (cur->varstr == hush_version_str)
2139 continue;
2140 if (cur->flg_read_only) {
2141 *pp++ = (char *) "-R";
2142 *pp++ = cur->varstr;
2143 } else if (!cur->flg_export) {
2144 *pp++ = (char *) "-V";
2145 *pp++ = cur->varstr;
2146 }
2147 }
2148//TODO: pass functions
2149 /* We can pass activated traps here. Say, -Tnn:trap_string
2150 *
2151 * However, POSIX says that subshells reset signals with traps
2152 * to SIG_DFL.
2153 * I tested bash-3.2 and it not only does that with true subshells
2154 * of the form ( list ), but with any forked children shells.
2155 * I set trap "echo W" WINCH; and then tried:
2156 *
2157 * { echo 1; sleep 20; echo 2; } &
2158 * while true; do echo 1; sleep 20; echo 2; break; done &
2159 * true | { echo 1; sleep 20; echo 2; } | cat
2160 *
2161 * In all these cases sending SIGWINCH to the child shell
2162 * did not run the trap. If I add trap "echo V" WINCH;
2163 * _inside_ group (just before echo 1), it works.
2164 *
2165 * I conclude it means we don't need to pass active traps here.
2166 * exec syscall below resets them to SIG_DFL for us.
2167 */
2168 *pp++ = (char *) (is_heredoc ? "-<" : "-c");
2169 *pp++ = (char *) s;
2170 pp2 = G.global_argv;
2171 while (*pp2)
2172 *pp++ = *pp2++;
2173 /* *pp = NULL; - is already there */
2174
2175 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2176 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2177 execv(bb_busybox_exec_path, G.argv_from_re_execing);
2178 /* Fallback. Useful for init=/bin/hush usage etc */
2179 if (G.argv0_for_re_execing[0] == '/')
2180 execv(G.argv0_for_re_execing, G.argv_from_re_execing);
2181 xfunc_error_retval = 127;
2182 bb_error_msg_and_die("can't re-execute the shell");
2183}
2184
2185static void clean_up_after_re_execute(void)
2186{
2187 char **pp = G.argv_from_re_execing;
2188 if (pp) {
2189 /* Must match re_execute_shell's allocations (if any) */
2190 free(pp);
2191 G.argv_from_re_execing = NULL;
2192 }
2193}
2194#endif /* !BB_MMU */
2195
2196
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002197static void setup_heredoc(int fd, const char *heredoc)
2198{
2199 struct fd_pair pair;
2200 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002201 int len, written;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002202
2203 xpiped_pair(pair);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002204 xmove_fd(pair.rd, fd);
2205
2206 len = strlen(heredoc);
2207 /* Try writing without forking. Newer kernels have
2208 * dynamically growing pipes. Must use non-blocking write! */
2209 ndelay_on(pair.wr);
2210 while (1) {
2211 written = write(pair.wr, heredoc, len);
2212 if (written <= 0)
2213 break;
2214 len -= written;
2215 if (len == 0) {
2216 close(pair.wr);
2217 return;
2218 }
2219 heredoc += written;
2220 }
2221 ndelay_off(pair.wr);
2222
2223 /* Okay, pipe buffer was not big enough */
2224 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002225 * for the unsuspecting parent process. Child creates a grandchild
2226 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002227 * (that exec happens after we return from this function) */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002228 pid = vfork();
2229 if (pid < 0)
2230 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002231 if (pid == 0) {
2232 /* child */
2233 pid = BB_MMU ? fork() : vfork();
2234 if (pid < 0)
2235 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2236 if (pid != 0)
2237 _exit(0);
2238 /* grandchild */
2239 close(fd); /* read side of the pipe */
2240#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002241 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002242 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002243#else
2244 /* Delegate blocking writes to another process */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002245 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002246 xmove_fd(pair.wr, STDOUT_FILENO);
2247 re_execute_shell(heredoc, 1);
2248#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002249 }
2250 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002251 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002252 clean_up_after_re_execute();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002253 close(pair.wr);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002254 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002255}
2256
Eric Andersen25f27032001-04-26 23:22:31 +00002257/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2258 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002259static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002260{
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002261//TODO: no callers ever check return value - ?!
Eric Andersen25f27032001-04-26 23:22:31 +00002262 int openfd, mode;
2263 struct redir_struct *redir;
2264
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002265 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002266 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002267 if (squirrel && redir->rd_fd < 3) {
2268 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002269 }
2270 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2271 * of the heredoc */
2272 debug_printf_parse("set heredoc '%s'\n",
2273 redir->rd_filename);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002274 setup_heredoc(redir->rd_fd, redir->rd_filename);
Eric Andersen817e73c2001-06-06 17:56:09 +00002275 continue;
2276 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002277
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002278 if (redir->rd_dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002279 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002280 if (redir->rd_filename == NULL) {
2281 /* Something went wrong in the parse.
2282 * Pretend it didn't happen */
2283 continue;
2284 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002285 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002286//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002287 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002288 openfd = open_or_warn(p, mode);
2289 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002290 if (openfd < 0) {
2291 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002292 * bash and ash both lose it as well (though zsh doesn't!) */
2293//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002294 return 1;
2295 }
2296 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002297 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002298 }
2299
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002300 if (openfd != redir->rd_fd) {
2301 if (squirrel && redir->rd_fd < 3) {
2302 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002303 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002304 if (openfd == -3) {
Mike Frysingerdc417802009-04-06 12:35:41 +00002305 /* "-" means "close me" and we use -3 for that */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002306 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002307 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002308 dup2(openfd, redir->rd_fd);
2309 if (redir->rd_dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002310 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002311 }
Eric Andersen25f27032001-04-26 23:22:31 +00002312 }
2313 }
2314 return 0;
2315}
2316
2317static void restore_redirects(int squirrel[])
2318{
2319 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002320 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002321 fd = squirrel[i];
2322 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002323 /* We simply die on error */
2324 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002325 }
2326 }
2327}
2328
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002329
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002330#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002331#define free_pipe_list(head, indent) free_pipe_list(head)
2332#define free_pipe(pi, indent) free_pipe(pi)
2333#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002334static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002335
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002336/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002337static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002338{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002339 char **p;
2340 struct command *command;
2341 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002342 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002343
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002344 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002345 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002346 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2347 for (i = 0; i < pi->num_cmds; i++) {
2348 command = &pi->cmds[i];
2349 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2350 if (command->argv) {
2351 for (a = 0, p = command->argv; *p; a++, p++) {
2352 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2353 }
2354 free_strings(command->argv);
2355 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002356 }
2357 /* not "else if": on syntax error, we may have both! */
2358 if (command->group) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002359 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002360 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002361 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002362 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002363 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002364#if !BB_MMU
2365 free(command->group_as_string);
2366 command->group_as_string = NULL;
2367#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002368 for (r = command->redirects; r; r = rnext) {
2369 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002370 if (r->rd_dup == -1) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002371 /* guard against the case >$FOO, where foo is unset or blank */
2372 if (r->rd_filename) {
2373 debug_printf_clean(" %s\n", r->rd_filename);
2374 free(r->rd_filename);
2375 r->rd_filename = NULL;
2376 }
2377 } else {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002378 debug_printf_clean("&%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002379 }
2380 rnext = r->next;
2381 free(r);
2382 }
2383 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002384 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002385 free(pi->cmds); /* children are an array, they get freed all at once */
2386 pi->cmds = NULL;
2387#if ENABLE_HUSH_JOB
2388 free(pi->cmdtext);
2389 pi->cmdtext = NULL;
2390#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002391}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002392
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002393static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002394{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002395 struct pipe *pi, *next;
2396
2397 for (pi = head; pi; pi = next) {
2398#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002399 debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002400#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002401 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002402 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2403 next = pi->next;
2404 /*pi->next = NULL;*/
2405 free(pi);
2406 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002407}
2408
2409
2410#if !BB_MMU
2411typedef struct nommu_save_t {
2412 char **new_env;
2413 char **old_env;
2414 char **argv;
2415} nommu_save_t;
2416#else
2417#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2418 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2419#define pseudo_exec(nommu_save, command, argv_expanded) \
2420 pseudo_exec(command, argv_expanded)
2421#endif
2422
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002423/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002424 * Never returns.
2425 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002426 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002427 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002428static void pseudo_exec_argv(nommu_save_t *nommu_save,
2429 char **argv, int assignment_cnt,
2430 char **argv_expanded) NORETURN;
2431static void pseudo_exec_argv(nommu_save_t *nommu_save,
2432 char **argv, int assignment_cnt,
2433 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002434{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002435 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002436
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002437 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002438 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002439 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002440
Denis Vlasenko9504e442008-10-29 01:19:15 +00002441 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002442#if BB_MMU
2443 putenv_all(new_env);
2444 free(new_env); /* optional */
2445#else
2446 nommu_save->new_env = new_env;
2447 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002448#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002449 if (argv_expanded) {
2450 argv = argv_expanded;
2451 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002452 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002453#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002454 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002455#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002456 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002457
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002458 /* On NOMMU, we must never block!
2459 * Example: { sleep 99999 | read line } & echo Ok
2460 * read builtin will block on read syscall, leaving parent blocked
2461 * in vfork. Therefore we can't do this:
2462 */
2463#if BB_MMU
2464 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002465 * Depending on context, this might be redundant. But it's
2466 * easier to waste a few CPU cycles than it is to figure out
2467 * if this is one of those cases.
2468 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002469 {
2470 int rcode;
2471 const struct built_in_command *x;
2472 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2473 if (strcmp(argv[0], x->cmd) == 0) {
2474 debug_printf_exec("running builtin '%s'\n",
2475 argv[0]);
2476 rcode = x->function(argv);
2477 fflush(NULL);
2478 _exit(rcode);
2479 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002480 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002481 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002482#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002483
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002484#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002485 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002486 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002487 int a = find_applet_by_name(argv[0]);
2488 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002489#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002490 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002491 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002492 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002493 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002494#endif
2495 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002496 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002497 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2498 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002499 /* If they called chroot or otherwise made the binary no longer
2500 * executable, fall through */
2501 }
2502 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002503#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002504
2505 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002506 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002507 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002508 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002509 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002510}
2511
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002512static int run_list(struct pipe *pi);
2513
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002514/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002515 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002516static void pseudo_exec(nommu_save_t *nommu_save,
2517 struct command *command,
2518 char **argv_expanded) NORETURN;
2519static void pseudo_exec(nommu_save_t *nommu_save,
2520 struct command *command,
2521 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002522{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002523 if (command->argv) {
2524 pseudo_exec_argv(nommu_save, command->argv,
2525 command->assignment_cnt, argv_expanded);
2526 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002527
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002528 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002529 /* Cases when we are here:
2530 * ( list )
2531 * { list } &
2532 * ... | ( list ) | ...
2533 * ... | { list } | ...
2534 */
2535#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002536 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002537 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002538 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002539 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002540 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002541 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002542 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002543#else
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002544 re_execute_shell(command->group_as_string, 0);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002545#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002546 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002547
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002548 /* Case when we are here: ... | >file */
2549 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002550 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002551}
2552
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002553#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002554static const char *get_cmdtext(struct pipe *pi)
2555{
2556 char **argv;
2557 char *p;
2558 int len;
2559
2560 /* This is subtle. ->cmdtext is created only on first backgrounding.
2561 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002562 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002563 if (pi->cmdtext)
2564 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002565 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002566 if (!argv || !argv[0]) {
2567 pi->cmdtext = xzalloc(1);
2568 return pi->cmdtext;
2569 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002570
2571 len = 0;
2572 do len += strlen(*argv) + 1; while (*++argv);
2573 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002574 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002575 do {
2576 len = strlen(*argv);
2577 memcpy(p, *argv, len);
2578 p += len;
2579 *p++ = ' ';
2580 } while (*++argv);
2581 p[-1] = '\0';
2582 return pi->cmdtext;
2583}
2584
Eric Andersenbafd94f2001-05-02 16:11:59 +00002585static void insert_bg_job(struct pipe *pi)
2586{
2587 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002588 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002589
2590 /* Linear search for the ID of the job to use */
2591 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002592 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002593 if (thejob->jobid >= pi->jobid)
2594 pi->jobid = thejob->jobid + 1;
2595
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002596 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002597 if (!G.job_list) {
2598 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002599 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002600 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002601 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002602 thejob->next = xmalloc(sizeof(*thejob));
2603 thejob = thejob->next;
2604 }
2605
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002606 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002607 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002608 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2609 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2610 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002611// TODO: do we really need to have so many fields which are just dead weight
2612// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002613 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002614 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002615 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002616 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002617 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002618
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002619 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002620 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002621 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002622 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002623 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002624 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002625}
2626
Eric Andersenbafd94f2001-05-02 16:11:59 +00002627static void remove_bg_job(struct pipe *pi)
2628{
2629 struct pipe *prev_pipe;
2630
Denis Vlasenko87a86552008-07-29 19:43:10 +00002631 if (pi == G.job_list) {
2632 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002633 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002634 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002635 while (prev_pipe->next != pi)
2636 prev_pipe = prev_pipe->next;
2637 prev_pipe->next = pi->next;
2638 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002639 if (G.job_list)
2640 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002641 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002642 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002643}
Eric Andersen028b65b2001-06-28 01:10:11 +00002644
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002645/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002646static void delete_finished_bg_job(struct pipe *pi)
2647{
2648 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002649 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002650 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002651 free(pi);
2652}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002653#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002654
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002655/* Check to see if any processes have exited -- if they
2656 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002657static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002658{
Eric Andersenc798b072001-06-22 06:23:03 +00002659 int attributes;
2660 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002661#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002662 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002663#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002664 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002665 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002666
Denis Vlasenkod5762932009-03-31 11:22:57 +00002667 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2668
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002669 errno = 0;
2670// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2671// /* avoid doing syscall, nothing there anyway */
2672// return rcode;
2673
Eric Andersenc798b072001-06-22 06:23:03 +00002674 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002675 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002676 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002677
Denis Vlasenko1359da62007-04-21 23:27:30 +00002678/* Do we do this right?
2679 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002680 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002681 * [3]+ Stopped sleep 20 | false
2682 * bash-3.00# echo $?
2683 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2684 */
2685
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002686//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2687//are stopped. Testcase: "cat | cat" in a script (not on command line)
2688// + killall -STOP cat
2689
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002690 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002691 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002692 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002693 int dead;
2694
2695// i = G.count_SIGCHLD;
2696 childpid = waitpid(-1, &status, attributes);
2697 if (childpid <= 0) {
2698 if (childpid && errno != ECHILD)
2699 bb_perror_msg("waitpid");
2700// else /* Until next SIGCHLD, waitpid's are useless */
2701// G.handled_SIGCHLD = i;
2702 break;
2703 }
2704 dead = WIFEXITED(status) || WIFSIGNALED(status);
2705
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002706#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002707 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002708 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002709 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2710 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002711 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002712 childpid, WTERMSIG(status), WEXITSTATUS(status));
2713 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002714 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002715 childpid, WEXITSTATUS(status));
2716#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002717 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002718 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002719 for (i = 0; i < fg_pipe->num_cmds; i++) {
2720 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2721 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002722 continue;
2723 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2724 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002725 fg_pipe->cmds[i].pid = 0;
2726 fg_pipe->alive_cmds--;
2727 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002728 /* last process gives overall exitstatus */
2729 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002730 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002731 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002732 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002733 fg_pipe->cmds[i].is_stopped = 1;
2734 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002735 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002736 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2737 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2738 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002739 /* All processes in fg pipe have exited/stopped */
2740#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002741 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002742 insert_bg_job(fg_pipe);
2743#endif
2744 return rcode;
2745 }
2746 /* There are still running processes in the fg pipe */
2747 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002748 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002749 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002750 }
2751
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002752#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002753 /* We asked to wait for bg or orphaned children */
2754 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002755 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002756 for (i = 0; i < pi->num_cmds; i++) {
2757 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002758 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002759 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002760 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002761 /* Happens when shell is used as init process (init=/bin/sh) */
2762 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002763 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002764
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002765 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002766 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002767 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002768 pi->cmds[i].pid = 0;
2769 pi->alive_cmds--;
2770 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002771 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002772 printf(JOB_STATUS_FORMAT, pi->jobid,
2773 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002774 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002775 }
2776 } else {
2777 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002778 pi->cmds[i].is_stopped = 1;
2779 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002780 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002781#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002782 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002783
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002784 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002785}
2786
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002787#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002788static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2789{
2790 pid_t p;
2791 int rcode = checkjobs(fg_pipe);
2792 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002793 p = getpgid(0); /* pgid of our process */
2794 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002795 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002796 return rcode;
2797}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002798#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002799
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002800/* Start all the jobs, but don't wait for anything to finish.
2801 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002802 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002803 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002804 * to finish to determine the exit status of the pipe. If the pipe
2805 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002806 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002807 * return value.
2808 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002809 * Returns -1 only if started some children. IOW: we have to
2810 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002811 *
2812 * The only case when we do not need to [v]fork is when the pipe
2813 * is single, non-backgrounded, non-subshell command. Examples:
2814 * cmd ; ... { list } ; ...
2815 * cmd && ... { list } && ...
2816 * cmd || ... { list } || ...
2817 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2818 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002819 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002820 *
2821 * Cases when we must fork:
2822 * non-single: cmd | cmd
2823 * backgrounded: cmd & { list } &
2824 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002825 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002826static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002827{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002828 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002829 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002830 int nextin;
2831 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002832 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002833 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002834 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002835 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002836 /* it is not always needed, but we aim to smaller code */
2837 int squirrel[] = { -1, -1, -1 };
2838 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002839
Denis Vlasenko552433b2009-04-04 19:29:21 +00002840 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002841
Denis Vlasenko552433b2009-04-04 19:29:21 +00002842 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002843 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002844 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002845 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002846
Denis Vlasenko552433b2009-04-04 19:29:21 +00002847 if (pi->num_cmds != 1
2848 || pi->followup == PIPE_BG
2849 || command->grp_type == GRP_SUBSHELL
2850 ) {
2851 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002852 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002853
Denis Vlasenko552433b2009-04-04 19:29:21 +00002854 pi->alive_cmds = 1;
2855
2856 debug_printf_exec(": group:%p argv:'%s'\n",
2857 command->group, command->argv ? command->argv[0] : "NONE");
2858
2859 if (command->group) {
2860#if ENABLE_HUSH_FUNCTIONS
2861 if (command->grp_type == GRP_FUNCTION) {
2862 /* func () { list } */
2863 bb_error_msg("here we ought to remember function definition, and go on");
2864 return EXIT_SUCCESS;
2865 }
2866#endif
2867 /* { list } */
2868 debug_printf("non-subshell group\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002869 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002870 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002871 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002872 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002873 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002874 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002875 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002876 }
2877
Denis Vlasenko552433b2009-04-04 19:29:21 +00002878 argv = command->argv ? command->argv : (char **) &null_ptr;
2879 {
2880 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002881 char **new_env = NULL;
2882 char **old_env = NULL;
2883
Denis Vlasenko552433b2009-04-04 19:29:21 +00002884 if (argv[command->assignment_cnt] == NULL) {
2885 /* Assignments, but no command */
2886 /* Ensure redirects take effect. Try "a=t >file" */
2887 setup_redirects(command, squirrel);
2888 restore_redirects(squirrel);
2889 /* Set shell variables */
2890 while (*argv) {
2891 p = expand_string_to_string(*argv);
2892 debug_printf_exec("set shell var:'%s'->'%s'\n",
2893 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002894 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002895 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00002896 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00002897 /* Do we need to flag set_local_var() errors?
2898 * "assignment to readonly var" and "putenv error"
2899 */
2900 return EXIT_SUCCESS;
Eric Andersen78a7c992001-05-15 16:30:25 +00002901 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002902
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002903 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00002904 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002905
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002906 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002907 if (strcmp(argv_expanded[0], x->cmd) != 0)
2908 continue;
2909 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2910 debug_printf("exec with redirects only\n");
2911 setup_redirects(command, NULL);
2912 rcode = EXIT_SUCCESS;
2913 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002914 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002915 debug_printf("builtin inline %s\n", argv_expanded[0]);
2916 /* XXX setup_redirects acts on file descriptors, not FILEs.
2917 * This is perfect for work that comes after exec().
2918 * Is it really safe for inline use? Experimentally,
2919 * things seem to work with glibc. */
2920 setup_redirects(command, squirrel);
2921 new_env = expand_assignments(argv, command->assignment_cnt);
2922 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002923 debug_printf_exec(": builtin '%s' '%s'...\n",
2924 x->cmd, argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002925 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002926#if ENABLE_FEATURE_SH_STANDALONE
2927 clean_up_and_ret:
2928#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002929 restore_redirects(squirrel);
2930 free_strings_and_unsetenv(new_env, 1);
2931 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002932 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002933 clean_up_and_ret1:
2934 free(argv_expanded);
2935 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2936 debug_printf_exec("run_pipe return %d\n", rcode);
2937 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002938 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002939#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002940 i = find_applet_by_name(argv_expanded[0]);
2941 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2942 setup_redirects(command, squirrel);
2943 save_nofork_data(&G.nofork_save);
2944 new_env = expand_assignments(argv, command->assignment_cnt);
2945 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002946 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2947 argv_expanded[0], argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002948 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2949 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002950 }
2951#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00002952 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00002953 }
2954
Denis Vlasenko552433b2009-04-04 19:29:21 +00002955 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002956 /* NB: argv_expanded may already be created, and that
2957 * might include `cmd` runs! Do not rerun it! We *must*
2958 * use argv_expanded if it's non-NULL */
2959
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002960 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002961 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002962 nextin = 0;
2963
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002964 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002965#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002966 volatile nommu_save_t nommu_save;
2967 nommu_save.new_env = NULL;
2968 nommu_save.old_env = NULL;
2969 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002970#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002971 command = &(pi->cmds[i]);
2972 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002973 debug_printf_exec(": pipe member '%s' '%s'...\n",
2974 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002975 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002976 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00002977 }
Eric Andersen25f27032001-04-26 23:22:31 +00002978
2979 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002980 pipefds[0] = 0;
2981 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002982 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002983 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002984
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002985 command->pid = BB_MMU ? fork() : vfork();
2986 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002987#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002988 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00002989
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002990 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002991 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002992 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002993 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002994 pgrp = pi->pgrp;
2995 if (pgrp < 0) /* true for 1st process only */
2996 pgrp = getpid();
2997 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002998 /* We do it in *every* child, not just first,
2999 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003000 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003001 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003002 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003003#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003004 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003005 xmove_fd(pipefds[1], 1); /* write end */
3006 if (pipefds[0] > 1)
3007 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003008 /* Like bash, explicit redirects override pipes,
3009 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003010 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003011
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003012 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003013 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3014
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003015 /* Stores to nommu_save list of env vars putenv'ed
3016 * (NOMMU, on MMU we don't need that) */
3017 /* cast away volatility... */
3018 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003019 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003020 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003021
Denis Vlasenkof9375282009-04-05 19:13:39 +00003022 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003023 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003024#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003025 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003026 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003027 free(nommu_save.argv);
3028 free_strings_and_unsetenv(nommu_save.new_env, 1);
3029 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003030#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003031 free(argv_expanded);
3032 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003033 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003034 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003035 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003036 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003037 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003038#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003039 /* Second and next children need to know pid of first one */
3040 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003041 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003042#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003043 }
Eric Andersen25f27032001-04-26 23:22:31 +00003044
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003045 if (i)
3046 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003047 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003048 close(pipefds[1]); /* write end */
3049 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003050 nextin = pipefds[0];
3051 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003052
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003053 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003054 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3055 return 1;
3056 }
3057
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003058 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003059 return -1;
3060}
3061
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003062#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003063static void debug_print_tree(struct pipe *pi, int lvl)
3064{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003065 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003066 [PIPE_SEQ] = "SEQ",
3067 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003068 [PIPE_OR ] = "OR" ,
3069 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003070 };
3071 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003072 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003073#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003074 [RES_IF ] = "IF" ,
3075 [RES_THEN ] = "THEN" ,
3076 [RES_ELIF ] = "ELIF" ,
3077 [RES_ELSE ] = "ELSE" ,
3078 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003079#endif
3080#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003081 [RES_FOR ] = "FOR" ,
3082 [RES_WHILE] = "WHILE",
3083 [RES_UNTIL] = "UNTIL",
3084 [RES_DO ] = "DO" ,
3085 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003086#endif
3087#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003088 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003089#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003090#if ENABLE_HUSH_CASE
3091 [RES_CASE ] = "CASE" ,
3092 [RES_MATCH] = "MATCH",
3093 [RES_CASEI] = "CASEI",
3094 [RES_ESAC ] = "ESAC" ,
3095#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003096 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003097 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003098 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003099 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003100 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003101 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003102#if ENABLE_HUSH_FUNCTIONS
3103 "func()",
3104#endif
3105 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003106
3107 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003108
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003109 pin = 0;
3110 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003111 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3112 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003113 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003114 while (prn < pi->num_cmds) {
3115 struct command *command = &pi->cmds[prn];
3116 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003117
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003118 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003119 lvl*2, "", prn,
3120 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003121 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003122 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003123 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003124 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003125 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003126 prn++;
3127 continue;
3128 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003129 if (argv) while (*argv) {
3130 fprintf(stderr, " '%s'", *argv);
3131 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003132 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003133 fprintf(stderr, "\n");
3134 prn++;
3135 }
3136 pi = pi->next;
3137 pin++;
3138 }
3139}
3140#endif
3141
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003142/* NB: called by pseudo_exec, and therefore must not modify any
3143 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003144static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003145{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003146#if ENABLE_HUSH_CASE
3147 char *case_word = NULL;
3148#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003149#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003150 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003151 char *for_varname = NULL;
3152 char **for_lcur = NULL;
3153 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003154#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003155 smallint last_followup;
3156 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003157#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003158 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003159#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003160 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003161#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003162#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003163 smallint rword; /* enum reserved_style */
3164 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003165#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003166
Denis Vlasenko87a86552008-07-29 19:43:10 +00003167 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003168
Denis Vlasenko06810332007-05-21 23:30:54 +00003169#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003170 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003171 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3172 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003173 continue;
3174 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003175 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003176 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003177 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003178 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003179 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003180 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003181 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003182 continue;
3183 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003184 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3185 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003186 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003187 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003188 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003189 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003190 }
3191 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003192#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003193
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003194 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003195 * in order to return, no direct "return" statements please.
3196 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003197
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003198////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003199
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003200#if ENABLE_HUSH_JOB
3201 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3202 * We are saving state before entering outermost list ("while...done")
3203 * so that ctrl-Z will correctly background _entire_ outermost list,
3204 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003205 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003206 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003207 /* ctrl-Z forked and we are parent; or ctrl-C.
3208 * Sighandler has longjmped us here */
3209 signal(SIGINT, SIG_IGN);
3210 signal(SIGTSTP, SIG_IGN);
3211 /* Restore level (we can be coming from deep inside
3212 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003213 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003214#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003215 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003216 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003217 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003218 }
3219#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003220//// if (G.ctrl_z_flag) {
3221//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3222//// * Remember this child as background job */
3223//// insert_bg_job(pi);
3224//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003225 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003226 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003227//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003228 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003229 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003230 rcode = 0;
3231 goto ret;
3232 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003233//// /* ctrl-Z handler will store pid etc in pi */
3234//// G.toplevel_list = pi;
3235//// G.ctrl_z_flag = 0;
3236////#if ENABLE_FEATURE_SH_STANDALONE
3237//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
3238////#endif
3239//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3240//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003241 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003242#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003243
Denis Vlasenko0e151382009-04-06 18:40:31 +00003244#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003245 rword = RES_NONE;
3246 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003247#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003248 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003249 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003250
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003251 /* Go through list of pipes, (maybe) executing them. */
3252 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003253 if (G.flag_SIGINT)
3254 break;
3255
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003256 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003257 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3258 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003259#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003260 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003261 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003262 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003263 /* start of a loop: remember where loop starts */
3264 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003265 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003266 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003267#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003268 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003269 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003270 if ((rcode == 0 && last_followup == PIPE_OR)
3271 || (rcode != 0 && last_followup == PIPE_AND)
3272 ) {
3273 /* It is "<true> || CMD" or "<false> && CMD"
3274 * and we should not execute CMD */
3275 debug_printf_exec("skipped cmd because of || or &&\n");
3276 last_followup = pi->followup;
3277 continue;
3278 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003279 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003280 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003281 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003282#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003283 if (cond_code) {
3284 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003285 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003286 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003287 /* "if <false> THEN cmd": skip cmd */
3288 continue;
3289 }
3290 } else {
3291 if (rword == RES_ELSE || rword == RES_ELIF) {
3292 /* "if <true> then ... ELSE/ELIF cmd":
3293 * skip cmd and all following ones */
3294 break;
3295 }
3296 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003297#endif
3298#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003299 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003300 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003301 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003302
3303 static const char encoded_dollar_at[] ALIGN1 = {
3304 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3305 }; /* encoded representation of "$@" */
3306 static const char *const encoded_dollar_at_argv[] = {
3307 encoded_dollar_at, NULL
3308 }; /* argv list with one element: "$@" */
3309 char **vals;
3310
3311 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003312 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003313 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003314 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003315 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003316 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003317 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003318 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003319 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003320 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003321 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003322 debug_print_strings("for_list made from", vals);
3323 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003324 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003325 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003326 for_varname = pi->cmds[0].argv[0];
3327 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003328 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003329 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003330 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003331 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003332 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003333 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003334 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003335 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003336 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003337 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003338 /* Insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003339//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003340 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3341 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003342 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003343 if (rword == RES_IN) {
3344 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3345 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003346 if (rword == RES_DONE) {
3347 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003348 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003349#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003350#if ENABLE_HUSH_CASE
3351 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003352 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003353 continue;
3354 }
3355 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003356 char **argv;
3357
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003358 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3359 break;
3360 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003361 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003362 while (*argv) {
3363 char *pattern = expand_string_to_string(*argv);
3364 /* TODO: which FNM_xxx flags to use? */
3365 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3366 free(pattern);
3367 if (cond_code == 0) { /* match! we will execute this branch */
3368 free(case_word); /* make future "word)" stop */
3369 case_word = NULL;
3370 break;
3371 }
3372 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003373 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003374 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003375 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003376 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003377 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003378 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003379 }
3380#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003381 /* Just pressing <enter> in shell should check for jobs.
3382 * OTOH, in non-interactive shell this is useless
3383 * and only leads to extra job checks */
3384 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003385 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003386 goto check_jobs_and_continue;
3387 continue;
3388 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003389
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003390 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003391 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003392 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003393 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003394 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003395 {
3396 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003397#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003398 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003399#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003400 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3401 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003402 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003403 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003404 G.last_exitcode = rcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003405 debug_printf_exec(": builtin exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003406 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003407#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003408 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003409 if (G.flag_break_continue) {
3410 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003411 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003412 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003413 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003414 G.depth_break_continue--;
3415 if (G.depth_break_continue == 0)
3416 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003417 /* else: e.g. "continue 2" should *break* once, *then* continue */
3418 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003419 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003420 goto check_jobs_and_break;
3421 /* "continue": simulate end of loop */
3422 rword = RES_DONE;
3423 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003424 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003425#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003426 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003427 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003428 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003429 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3430 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003431 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003432#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003433 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003434 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003435#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003436 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003437 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003438 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003439#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003440 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003441 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003442 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003443 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003444 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003445 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003446#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003447 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003448 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003449 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003450 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003451 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003452 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003453 }
3454 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003455
3456 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003457#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003458 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003459 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003460#endif
3461#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003462 /* Beware of "while false; true; do ..."! */
3463 if (pi->next && pi->next->res_word == RES_DO) {
3464 if (rword == RES_WHILE) {
3465 if (rcode) {
3466 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003467 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003468 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3469 goto check_jobs_and_break;
3470 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003471 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003472 if (rword == RES_UNTIL) {
3473 if (!rcode) {
3474 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003475 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003476 checkjobs(NULL);
3477 break;
3478 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003479 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003480 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003481#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003482
3483 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003484 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003485 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003486
3487#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003488//// if (G.ctrl_z_flag) {
3489//// /* ctrl-Z forked somewhere in the past, we are the child,
3490//// * and now we completed running the list. Exit. */
3491//////TODO: _exit?
3492//// exit(rcode);
3493//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003494 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003495 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003496//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003497//// signal(SIGTSTP, SIG_IGN);
3498//// signal(SIGINT, SIG_IGN);
3499//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003500#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003501 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003502#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003503 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003504 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003505 free(for_list);
3506#endif
3507#if ENABLE_HUSH_CASE
3508 free(case_word);
3509#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003510 return rcode;
3511}
3512
Eric Andersen25f27032001-04-26 23:22:31 +00003513/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003514static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003515{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003516 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003517 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003518 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003519 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003520 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003521 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003522 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003523 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003524 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003525 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003526 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003527 return rcode;
3528}
3529
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003530
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003531static struct pipe *new_pipe(void)
3532{
Eric Andersen25f27032001-04-26 23:22:31 +00003533 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003534 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003535 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003536 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003537 return pi;
3538}
3539
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003540/* Command (member of a pipe) is complete. The only possible error here
3541 * is out of memory, in which case xmalloc exits. */
3542static int done_command(struct parse_context *ctx)
3543{
3544 /* The command is really already in the pipe structure, so
3545 * advance the pipe counter and make a new, null command. */
3546 struct pipe *pi = ctx->pipe;
3547 struct command *command = ctx->command;
3548
3549 if (command) {
3550 if (command->group == NULL
3551 && command->argv == NULL
3552 && command->redirects == NULL
3553 ) {
3554 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003555 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003556 return pi->num_cmds;
3557 }
3558 pi->num_cmds++;
3559 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003560 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003561 } else {
3562 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3563 }
3564
3565 /* Only real trickiness here is that the uncommitted
3566 * command structure is not counted in pi->num_cmds. */
3567 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3568 command = &pi->cmds[pi->num_cmds];
3569 memset(command, 0, sizeof(*command));
3570
3571 ctx->command = command;
3572 /* but ctx->pipe and ctx->list_head remain unchanged */
3573
3574 return pi->num_cmds; /* used only for 0/nonzero check */
3575}
3576
3577static void done_pipe(struct parse_context *ctx, pipe_style type)
3578{
3579 int not_null;
3580
3581 debug_printf_parse("done_pipe entered, followup %d\n", type);
3582 /* Close previous command */
3583 not_null = done_command(ctx);
3584 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003585#if HAS_KEYWORDS
3586 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3587 ctx->ctx_inverted = 0;
3588 ctx->pipe->res_word = ctx->ctx_res_w;
3589#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003590
3591 /* Without this check, even just <enter> on command line generates
3592 * tree of three NOPs (!). Which is harmless but annoying.
3593 * IOW: it is safe to do it unconditionally.
3594 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003595 * and other cases to work. */
3596 if (not_null
3597#if HAS_KEYWORDS
3598 || ctx->ctx_res_w == RES_FI
3599 || ctx->ctx_res_w == RES_DONE
3600 || ctx->ctx_res_w == RES_FOR
3601 || ctx->ctx_res_w == RES_IN
3602 || ctx->ctx_res_w == RES_ESAC
3603#endif
3604 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003605 struct pipe *new_p;
3606 debug_printf_parse("done_pipe: adding new pipe: "
3607 "not_null:%d ctx->ctx_res_w:%d\n",
3608 not_null, ctx->ctx_res_w);
3609 new_p = new_pipe();
3610 ctx->pipe->next = new_p;
3611 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003612 /* RES_THEN, RES_DO etc are "sticky" -
3613 * they remain set for commands inside if/while.
3614 * This is used to control execution.
3615 * RES_FOR and RES_IN are NOT sticky (needed to support
3616 * cases where variable or value happens to match a keyword):
3617 */
3618#if ENABLE_HUSH_LOOPS
3619 if (ctx->ctx_res_w == RES_FOR
3620 || ctx->ctx_res_w == RES_IN)
3621 ctx->ctx_res_w = RES_NONE;
3622#endif
3623#if ENABLE_HUSH_CASE
3624 if (ctx->ctx_res_w == RES_MATCH)
3625 ctx->ctx_res_w = RES_CASEI;
3626#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003627 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003628 /* Create the memory for command, roughly:
3629 * ctx->pipe->cmds = new struct command;
3630 * ctx->command = &ctx->pipe->cmds[0];
3631 */
3632 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003633 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003634 }
3635 debug_printf_parse("done_pipe return\n");
3636}
3637
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003638static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003639{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003640 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003641 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003642 /* Create the memory for command, roughly:
3643 * ctx->pipe->cmds = new struct command;
3644 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003645 */
3646 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003647}
3648
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003649/* If a reserved word is found and processed, parse context is modified
3650 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003651 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003652#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003653struct reserved_combo {
3654 char literal[6];
3655 unsigned char res;
3656 unsigned char assignment_flag;
3657 int flag;
3658};
3659enum {
3660 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003661#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003662 FLAG_IF = (1 << RES_IF ),
3663 FLAG_THEN = (1 << RES_THEN ),
3664 FLAG_ELIF = (1 << RES_ELIF ),
3665 FLAG_ELSE = (1 << RES_ELSE ),
3666 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003667#endif
3668#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003669 FLAG_FOR = (1 << RES_FOR ),
3670 FLAG_WHILE = (1 << RES_WHILE),
3671 FLAG_UNTIL = (1 << RES_UNTIL),
3672 FLAG_DO = (1 << RES_DO ),
3673 FLAG_DONE = (1 << RES_DONE ),
3674 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003675#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003676#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003677 FLAG_MATCH = (1 << RES_MATCH),
3678 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003679#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003680 FLAG_START = (1 << RES_XXXX ),
3681};
3682
3683static const struct reserved_combo* match_reserved_word(o_string *word)
3684{
Eric Andersen25f27032001-04-26 23:22:31 +00003685 /* Mostly a list of accepted follow-up reserved words.
3686 * FLAG_END means we are done with the sequence, and are ready
3687 * to turn the compound list into a command.
3688 * FLAG_START means the word must start a new compound list.
3689 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003690 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003691#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003692 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3693 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3694 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3695 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3696 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3697 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003698#endif
3699#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003700 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3701 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3702 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3703 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3704 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3705 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003706#endif
3707#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003708 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3709 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003710#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003711 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003712 const struct reserved_combo *r;
3713
3714 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3715 if (strcmp(word->data, r->literal) == 0)
3716 return r;
3717 }
3718 return NULL;
3719}
3720static int reserved_word(o_string *word, struct parse_context *ctx)
3721{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003722#if ENABLE_HUSH_CASE
3723 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003724 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003725 };
3726#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003727 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003728
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003729 r = match_reserved_word(word);
3730 if (!r)
3731 return 0;
3732
3733 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003734#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003735 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3736 /* "case word IN ..." - IN part starts first match part */
3737 r = &reserved_match;
3738 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003739#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003740 if (r->flag == 0) { /* '!' */
3741 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003742 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003743 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003744 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003745 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003746 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003747 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003748 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003749 struct parse_context *old;
3750 old = xmalloc(sizeof(*old));
3751 debug_printf_parse("push stack %p\n", old);
3752 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003753 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003754 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003755 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003756 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003757 ctx->ctx_res_w = RES_SNTX;
3758 return 1;
3759 }
3760 ctx->ctx_res_w = r->res;
3761 ctx->old_flag = r->flag;
3762 if (ctx->old_flag & FLAG_END) {
3763 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003764 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003765 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003766 old = ctx->stack;
3767 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003768 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003769#if !BB_MMU
3770 o_addstr(&old->as_string, ctx->as_string.data);
3771 o_free_unsafe(&ctx->as_string);
3772 old->command->group_as_string = xstrdup(old->as_string.data);
3773 debug_printf_parse("pop, remembering as:'%s'\n",
3774 old->command->group_as_string);
3775#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003776 *ctx = *old; /* physical copy */
3777 free(old);
3778 }
3779 word->o_assignment = r->assignment_flag;
3780 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003781}
Denis Vlasenko06810332007-05-21 23:30:54 +00003782#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003783
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003784/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003785 * Normal return is 0. Syntax errors return 1.
3786 * Note: on return, word is reset, but not o_free'd!
3787 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003788static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003789{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003790 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003791
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003792 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003793 if (word->length == 0 && word->nonnull == 0) {
3794 debug_printf_parse("done_word return 0: true null, ignored\n");
3795 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003796 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003797 /* If this word wasn't an assignment, next ones definitely
3798 * can't be assignments. Even if they look like ones. */
3799 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3800 && word->o_assignment != WORD_IS_KEYWORD
3801 ) {
3802 word->o_assignment = NOT_ASSIGNMENT;
3803 } else {
3804 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003805 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003806 word->o_assignment = MAYBE_ASSIGNMENT;
3807 }
3808
Eric Andersen25f27032001-04-26 23:22:31 +00003809 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003810 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3811 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003812 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3813 * "2.7 Redirection
3814 * ...the word that follows the redirection operator
3815 * shall be subjected to tilde expansion, parameter expansion,
3816 * command substitution, arithmetic expansion, and quote
3817 * removal. Pathname expansion shall not be performed
3818 * on the word by a non-interactive shell; an interactive
3819 * shell may perform it, but shall do so only when
3820 * the expansion would result in one word."
3821 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003822 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003823 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003824 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003825 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003826 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003827 /* NB: bash allows e.g.:
3828 * if true; then { echo foo; } fi
3829 * while if false; then false; fi do break; done
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003830 * and disallows:
3831 * while if false; then false; fi; do; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003832 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003833 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003834 syntax(word->data);
3835 debug_printf_parse("done_word return 1: syntax error, "
3836 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003837 return 1;
3838 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003839#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003840#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003841 if (ctx->ctx_dsemicolon
3842 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3843 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003844 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003845 /* ctx->ctx_res_w = RES_MATCH; */
3846 ctx->ctx_dsemicolon = 0;
3847 } else
3848#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003849 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003850#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003851 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3852 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003853#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003854 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003855 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3856 if (reserved_word(word, ctx)) {
3857 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003858 debug_printf_parse("done_word return %d\n",
3859 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003860 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003861 }
Eric Andersen25f27032001-04-26 23:22:31 +00003862 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003863#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003864 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003865 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3866 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003867 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003868 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003869 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003870 char *p = word->data;
3871 while (p[0] == SPECIAL_VAR_SYMBOL
3872 && (p[1] & 0x7f) == '@'
3873 && p[2] == SPECIAL_VAR_SYMBOL
3874 ) {
3875 p += 3;
3876 }
3877 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003878 /* saw no "$@", or not only "$@" but some
3879 * real text is there too */
3880 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003881 * e.g. "", $empty"" etc to not disappear */
3882 o_addchr(word, SPECIAL_VAR_SYMBOL);
3883 o_addchr(word, SPECIAL_VAR_SYMBOL);
3884 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003885 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003886 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003887 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003888 }
Eric Andersen25f27032001-04-26 23:22:31 +00003889
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003890 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003891 ctx->pending_redirect = NULL;
3892
Denis Vlasenko06810332007-05-21 23:30:54 +00003893#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003894 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003895 /* NB: basically, this makes hush see "for v in ..." syntax as if
3896 * as it is "for v; in ...". FOR and IN become two pipe structs
3897 * in parse tree. */
3898 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003899//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003900 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003901 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003902#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003903#if ENABLE_HUSH_CASE
3904 /* Force CASE to have just one word */
3905 if (ctx->ctx_res_w == RES_CASE) {
3906 done_pipe(ctx, PIPE_SEQ);
3907 }
3908#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003909 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003910 return 0;
3911}
3912
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003913
3914/* Peek ahead in the input to find out if we have a "&n" construct,
3915 * as in "2>&1", that represents duplicating a file descriptor.
3916 * Return: -3 if >&- "close fd" construct is seen,
3917 * -2 (syntax error), -1 if no & was seen, or the number found.
3918 */
3919#if BB_MMU
3920#define redirect_dup_num(as_string, input) \
3921 redirect_dup_num(input)
3922#endif
3923static int redirect_dup_num(o_string *as_string, struct in_str *input)
3924{
3925 int ch, d, ok;
3926
3927 ch = i_peek(input);
3928 if (ch != '&')
3929 return -1;
3930
3931 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003932 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003933 ch = i_peek(input);
3934 if (ch == '-') {
3935 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003936 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003937 return -3; /* "-" represents "close me" */
3938 }
3939 d = 0;
3940 ok = 0;
3941 while (ch != EOF && isdigit(ch)) {
3942 d = d*10 + (ch-'0');
3943 ok = 1;
3944 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003945 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003946 ch = i_peek(input);
3947 }
3948 if (ok) return d;
3949
3950//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
3951
3952 bb_error_msg("ambiguous redirect");
3953 return -2;
3954}
3955
3956/* Return code is 0 normally, 1 if a syntax error is detected
3957 */
3958static int parse_redirect(struct parse_context *ctx,
3959 int fd,
3960 redir_type style,
3961 struct in_str *input)
3962{
3963 struct command *command = ctx->command;
3964 struct redir_struct *redir;
3965 struct redir_struct **redirp;
3966 int dup_num;
3967
3968 dup_num = -1;
3969 if (style != REDIRECT_HEREDOC) {
3970 /* Check for a '2>&1' type redirect */
3971 dup_num = redirect_dup_num(&ctx->as_string, input);
3972 if (dup_num == -2)
3973 return 1; /* syntax error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003974 } else {
3975 int ch = i_peek(input);
3976 dup_num = (ch == '-');
3977 if (dup_num) { /* <<-... */
3978 ch = i_getch(input);
3979 nommu_addchr(&ctx->as_string, ch);
3980 ch = i_peek(input);
3981 }
3982 /* <<[-] word is the same as <<[-]word */
3983 while (ch == ' ' || ch == '\t') {
3984 ch = i_getch(input);
3985 nommu_addchr(&ctx->as_string, ch);
3986 ch = i_peek(input);
3987 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003988 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003989
3990 if (style == REDIRECT_OVERWRITE && dup_num == -1) {
3991 int ch = i_peek(input);
3992 if (ch == '|') {
3993 /* >|FILE redirect ("clobbering" >).
3994 * Since we do not support "set -o noclobber" yet,
3995 * >| and > are the same for now. Just eat |.
3996 */
3997 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003998 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003999 }
4000 }
4001
4002 /* Create a new redir_struct and append it to the linked list */
4003 redirp = &command->redirects;
4004 while ((redir = *redirp) != NULL) {
4005 redirp = &(redir->next);
4006 }
4007 *redirp = redir = xzalloc(sizeof(*redir));
4008 /* redir->next = NULL; */
4009 /* redir->rd_filename = NULL; */
4010 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004011 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004012
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004013 debug_printf_parse("redirect type %d %s\n", redir->rd_fd, redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004014
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004015 redir->rd_dup = dup_num;
4016 if (style != REDIRECT_HEREDOC && dup_num != -1) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004017 /* Erik had a check here that the file descriptor in question
4018 * is legit; I postpone that to "run time"
4019 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004020 debug_printf_parse("duplicating redirect '%d>&%d'\n", redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004021 } else {
4022 /* Set ctx->pending_redirect, so we know what to do at the
4023 * end of the next parsed word. */
4024 ctx->pending_redirect = redir;
4025 }
4026 return 0;
4027}
4028
Eric Andersen25f27032001-04-26 23:22:31 +00004029/* If a redirect is immediately preceded by a number, that number is
4030 * supposed to tell which file descriptor to redirect. This routine
4031 * looks for such preceding numbers. In an ideal world this routine
4032 * needs to handle all the following classes of redirects...
4033 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4034 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4035 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4036 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004037 *
4038 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4039 * "2.7 Redirection
4040 * ... If n is quoted, the number shall not be recognized as part of
4041 * the redirection expression. For example:
4042 * echo \2>a
4043 * writes the character 2 into file a"
4044 * I am not sure we do it right (and not sure we care)
4045 *
4046 * A -1 return means no valid number was found,
4047 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004048 */
4049static int redirect_opt_num(o_string *o)
4050{
4051 int num;
4052
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004053 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004054 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004055 num = bb_strtou(o->data, NULL, 10);
4056 if (errno || num < 0)
4057 return -1;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004058 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004059 return num;
4060}
4061
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004062#if BB_MMU
4063#define fetch_till_str(as_string, input, word, skip_tabs) \
4064 fetch_till_str(input, word, skip_tabs)
4065#endif
4066static char *fetch_till_str(o_string *as_string,
4067 struct in_str *input,
4068 const char *word,
4069 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004070{
4071 o_string heredoc = NULL_O_STRING;
4072 int past_EOL = 0;
4073 int ch;
4074
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004075 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004076 while (1) {
4077 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004078 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004079 if (ch == '\n') {
4080 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4081 heredoc.data[past_EOL] = '\0';
4082 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4083 return heredoc.data;
4084 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004085 do {
4086 o_addchr(&heredoc, ch);
4087 past_EOL = heredoc.length;
4088 jump_in:
4089 do {
4090 ch = i_getch(input);
4091 nommu_addchr(as_string, ch);
4092 } while (skip_tabs && ch == '\t');
4093 } while (ch == '\n');
4094 }
4095 if (ch == EOF) {
4096 o_free_unsafe(&heredoc);
4097 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004098 }
4099 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004100 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004101 }
4102}
4103
4104static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4105{
4106 struct pipe *pi = ctx->list_head;
4107
4108 while (pi) {
4109 int i;
4110 struct command *cmd = pi->cmds;
4111
4112 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4113 pi->num_cmds,
4114 cmd->argv ? cmd->argv[0] : "NONE");
4115 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004116 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004117
4118 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4119 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004120 while (redir) {
4121 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004122 char *p;
4123
4124 if (heredoc_cnt <= 0)
4125 return 1; /* error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004126 redir->rd_type = REDIRECT_HEREDOC2;
4127 /* redir->dup is (ab)used to indicate <<- */
4128 p = fetch_till_str(&ctx->as_string, input,
4129 redir->rd_filename, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004130 if (!p)
4131 return 1; /* unexpected EOF */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004132 free(redir->rd_filename);
4133 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004134 heredoc_cnt--;
4135 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004136 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004137 }
4138 cmd++;
4139 }
4140 pi = pi->next;
4141 }
4142 /* Should be 0. If it isn't, it's a parse error */
4143 return heredoc_cnt;
4144}
4145
4146
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004147#if BB_MMU
4148#define parse_stream(pstring, input, end_trigger) \
4149 parse_stream(input, end_trigger)
4150#endif
4151static struct pipe *parse_stream(char **pstring,
4152 struct in_str *input,
4153 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004154static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00004155
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004156#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004157static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004158{
4159 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004160 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004161
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004162 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004163 pid = BB_MMU ? fork() : vfork();
4164 if (pid < 0)
4165 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004166
Denis Vlasenko05743d72008-02-10 12:10:08 +00004167 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004168 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004169 /* Process substitution is not considered to be usual
4170 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004171 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4172 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004173 bb_signals(0
4174 + (1 << SIGTSTP)
4175 + (1 << SIGTTIN)
4176 + (1 << SIGTTOU)
4177 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004178 close(channel[0]); /* NB: close _first_, then move fd! */
4179 xmove_fd(channel[1], 1);
4180 /* Prevent it from trying to handle ctrl-z etc */
4181 USE_HUSH_JOB(G.run_list_level = 1;)
4182#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004183 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004184 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004185 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004186#else
4187 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004188 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4189 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004190 * echo OK
4191 */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00004192 re_execute_shell(s, 0);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004193#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004194 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004195
4196 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004197 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004198 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00004199 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004200 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004201 return pf;
4202}
4203
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004204/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004205static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004206{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004207 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004208 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004209 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004210
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004211 pf = generate_stream_from_string(s);
4212 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004213 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004214 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004215
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004216 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004217 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004218 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004219 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004220 if (ch == '\n') {
4221 eol_cnt++;
4222 continue;
4223 }
4224 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004225 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004226 eol_cnt--;
4227 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004228 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004229 }
4230
4231 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004232 /* Note: we got EOF, and we just close the read end of the pipe.
4233 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004234 * Try these:
4235 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4236 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004237 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004238 fclose(pf);
4239 debug_printf("closed FILE from child. return 0\n");
4240 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004241}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004242#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004243
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004244static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004245 struct in_str *input, int ch)
4246{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004247 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004248 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004249 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004250 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004251 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004252 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004253
4254 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004255#if ENABLE_HUSH_FUNCTIONS
4256 if (ch == 'F') { /* function definition? */
4257 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
4258 //command->fname = dest->data;
4259 command->grp_type = GRP_FUNCTION;
4260//TODO: review every o_reset() location... do they handle all o_string fields correctly?
4261 memset(dest, 0, sizeof(*dest));
4262 }
4263#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004264 if (command->argv /* word [word](... */
4265 || dest->length /* word(... */
4266 || dest->nonnull /* ""(... */
4267 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004268 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004269 debug_printf_parse("parse_group return 1: "
4270 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004271 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004272 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004273 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004274 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004275 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004276 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004277 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004278 {
4279#if !BB_MMU
4280 char *as_string = NULL;
4281#endif
4282 pipe_list = parse_stream(&as_string, input, endch);
4283#if !BB_MMU
4284 if (as_string)
4285 o_addstr(&ctx->as_string, as_string);
4286#endif
4287 /* empty ()/{} or parse error? */
4288 if (!pipe_list || pipe_list == ERR_PTR) {
4289#if !BB_MMU
4290 free(as_string);
4291#endif
4292 syntax(NULL);
4293 debug_printf_parse("parse_group return 1: "
4294 "parse_stream returned %p\n", pipe_list);
4295 return 1;
4296 }
4297 command->group = pipe_list;
4298#if !BB_MMU
4299 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4300 command->group_as_string = as_string;
4301 debug_printf_parse("end of group, remembering as:'%s'\n",
4302 command->group_as_string);
4303#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004304 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004305 debug_printf_parse("parse_group return 0\n");
4306 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004307 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004308}
4309
Mike Frysinger98c52642009-04-02 10:02:37 +00004310#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004311/* Subroutines for copying $(...) and `...` things */
4312static void add_till_backquote(o_string *dest, struct in_str *input);
4313/* '...' */
4314static void add_till_single_quote(o_string *dest, struct in_str *input)
4315{
4316 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004317 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004318 if (ch == EOF)
4319 break;
4320 if (ch == '\'')
4321 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004322 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004323 }
4324}
4325/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4326static void add_till_double_quote(o_string *dest, struct in_str *input)
4327{
4328 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004329 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004330 if (ch == '"')
4331 break;
4332 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004333 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004334 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004335 }
4336 if (ch == EOF)
4337 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004338 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004339 if (ch == '`') {
4340 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004341 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004342 continue;
4343 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004344 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004345 }
4346}
4347/* Process `cmd` - copy contents until "`" is seen. Complicated by
4348 * \` quoting.
4349 * "Within the backquoted style of command substitution, backslash
4350 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4351 * The search for the matching backquote shall be satisfied by the first
4352 * backquote found without a preceding backslash; during this search,
4353 * if a non-escaped backquote is encountered within a shell comment,
4354 * a here-document, an embedded command substitution of the $(command)
4355 * form, or a quoted string, undefined results occur. A single-quoted
4356 * or double-quoted string that begins, but does not end, within the
4357 * "`...`" sequence produces undefined results."
4358 * Example Output
4359 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4360 */
4361static void add_till_backquote(o_string *dest, struct in_str *input)
4362{
4363 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004364 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004365 if (ch == '`')
4366 break;
4367 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004368 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004369 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004370 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004371 ch = ch2;
4372 }
4373 if (ch == EOF)
4374 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004375 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004376 }
4377}
4378/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4379 * quoting and nested ()s.
4380 * "With the $(command) style of command substitution, all characters
4381 * following the open parenthesis to the matching closing parenthesis
4382 * constitute the command. Any valid shell script can be used for command,
4383 * except a script consisting solely of redirections which produces
4384 * unspecified results."
4385 * Example Output
4386 * echo $(echo '(TEST)' BEST) (TEST) BEST
4387 * echo $(echo 'TEST)' BEST) TEST) BEST
4388 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4389 */
Mike Frysinger98c52642009-04-02 10:02:37 +00004390static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004391{
4392 int count = 0;
4393 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004394 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004395 if (ch == EOF)
4396 break;
4397 if (ch == '(')
4398 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004399 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004400 if (--count < 0) {
4401 if (!dbl)
4402 break;
4403 if (i_peek(input) == ')') {
4404 i_getch(input);
4405 break;
4406 }
4407 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004408 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004409 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004410 if (ch == '\'') {
4411 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004412 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004413 continue;
4414 }
4415 if (ch == '"') {
4416 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004417 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004418 continue;
4419 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004420 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
4421 ch = i_getch(input);
4422 if (ch == EOF)
4423 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004424 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004425 continue;
4426 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004427 }
4428}
Mike Frysinger98c52642009-04-02 10:02:37 +00004429#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004430
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004431/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004432#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004433#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004434 handle_dollar(dest, input)
4435#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004436static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004437 o_string *dest,
4438 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004439{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004440 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004441 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004442 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004443
4444 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004445 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004446 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004447 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004448 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004449 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004450 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004451 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004452 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004453 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004454 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004455 if (!isalnum(ch) && ch != '_')
4456 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004457 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004458 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004459 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004460 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004461 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004462 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004463 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004464 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004465 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004466 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004467 o_addchr(dest, ch | quote_mask);
4468 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004469 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004470 case '$': /* pid */
4471 case '!': /* last bg pid */
4472 case '?': /* last exit code */
4473 case '#': /* number of args */
4474 case '*': /* args */
4475 case '@': /* args */
4476 goto make_one_char_var;
4477 case '{': {
4478 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004479
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004480 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004481 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004482 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004483 /* XXX maybe someone will try to escape the '}' */
4484 expansion = 0;
4485 first_char = true;
4486 all_digits = false;
4487 while (1) {
4488 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004489 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004490 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004491 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004492
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004493 if (first_char) {
4494 if (ch == '#')
4495 /* ${#var}: length of var contents */
4496 goto char_ok;
4497 else if (isdigit(ch)) {
4498 all_digits = true;
4499 goto char_ok;
4500 }
4501 }
4502
4503 if (expansion < 2
4504 && ( (all_digits && !isdigit(ch))
4505 || (!all_digits && !isalnum(ch) && ch != '_')
4506 )
4507 ) {
4508 /* handle parameter expansions
4509 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4510 */
4511 if (first_char)
4512 goto case_default;
4513 switch (ch) {
4514 case ':': /* null modifier */
4515 if (expansion == 0) {
4516 debug_printf_parse(": null modifier\n");
4517 ++expansion;
4518 break;
4519 }
4520 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004521 case '#': /* remove prefix */
4522 case '%': /* remove suffix */
4523 if (expansion == 0) {
4524 debug_printf_parse(": remove suffix/prefix\n");
4525 expansion = 2;
4526 break;
4527 }
4528 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004529 case '-': /* default value */
4530 case '=': /* assign default */
4531 case '+': /* alternative */
4532 case '?': /* error indicate */
4533 debug_printf_parse(": parameter expansion\n");
4534 expansion = 2;
4535 break;
4536 default:
4537 case_default:
4538 syntax("unterminated ${name}");
4539 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4540 return 1;
4541 }
4542 }
4543 char_ok:
4544 debug_printf_parse(": '%c'\n", ch);
4545 o_addchr(dest, ch | quote_mask);
4546 quote_mask = 0;
4547 first_char = false;
4548 }
4549 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4550 break;
4551 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004552#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004553 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004554# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004555 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004556# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004557 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004558 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004559# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004560 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004561 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004562 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004563 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4564 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004565# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004566 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004567# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004568 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004569# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004570 if (as_string) {
4571 o_addstr(as_string, dest->data + pos);
4572 o_addchr(as_string, ')');
4573 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004574 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004575# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004576 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004577 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004578 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004579# endif
4580# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004581 //int pos = dest->length;
4582 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4583 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004584# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004585 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004586# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004587 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004588# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004589 if (as_string) {
4590 o_addstr(as_string, dest->data + pos);
4591 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004592 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004593# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004594 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4595 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004596# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004597 break;
4598 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004599#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004600 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004601 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004602 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004603 ch = i_peek(input);
4604 if (isalnum(ch)) { /* it's $_name or $_123 */
4605 ch = '_';
4606 goto make_var;
4607 }
4608 /* else: it's $_ */
4609 /* TODO: */
4610 /* $_ Shell or shell script name; or last cmd name */
4611 /* $- Option flags set by set builtin or shell options (-i etc) */
4612 default:
4613 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004614 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004615 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004616 return 0;
4617}
4618
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004619#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004620#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004621 parse_stream_dquoted(dest, input, dquote_end)
4622#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004623static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004624 o_string *dest,
4625 struct in_str *input,
4626 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004627{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004628 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004629 int next;
4630
4631 again:
4632 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004633 if (ch != EOF)
4634 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004635 if (ch == dquote_end) { /* may be only '"' or EOF */
4636 dest->nonnull = 1;
4637 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004638 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004639 debug_printf_parse("parse_stream_dquoted return 0\n");
4640 return 0;
4641 }
4642 if (ch == EOF) {
4643 syntax("unterminated \"");
4644 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4645 return 1;
4646 }
4647 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004648 if (ch != '\n') {
4649 next = i_peek(input);
4650 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004651 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4652 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004653 if (ch == '\\') {
4654 if (next == EOF) {
4655 syntax("\\<eof>");
4656 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4657 return 1;
4658 }
4659 /* bash:
4660 * "The backslash retains its special meaning [in "..."]
4661 * only when followed by one of the following characters:
4662 * $, `, ", \, or <newline>. A double quote may be quoted
4663 * within double quotes by preceding it with a backslash.
4664 * If enabled, history expansion will be performed unless
4665 * an ! appearing in double quotes is escaped using
4666 * a backslash. The backslash preceding the ! is not removed."
4667 */
4668 if (strchr("$`\"\\", next) != NULL) {
4669 o_addqchr(dest, i_getch(input));
4670 } else {
4671 o_addqchr(dest, '\\');
4672 }
4673 goto again;
4674 }
4675 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004676 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004677 debug_printf_parse("parse_stream_dquoted return 1: "
4678 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004679 return 1;
4680 }
4681 goto again;
4682 }
4683#if ENABLE_HUSH_TICK
4684 if (ch == '`') {
4685 //int pos = dest->length;
4686 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4687 o_addchr(dest, 0x80 | '`');
4688 add_till_backquote(dest, input);
4689 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4690 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004691 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004692 }
4693#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004694 o_addQchr(dest, ch);
4695 if (ch == '='
4696 && (dest->o_assignment == MAYBE_ASSIGNMENT
4697 || dest->o_assignment == WORD_IS_KEYWORD)
4698 && is_assignment(dest->data)
4699 ) {
4700 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4701 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004702 goto again;
4703}
4704
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004705/*
4706 * Scan input until EOF or end_trigger char.
4707 * Return a list of pipes to execute, or NULL on EOF
4708 * or if end_trigger character is met.
4709 * On syntax error, exit is shell is not interactive,
4710 * reset parsing machinery and start parsing anew,
4711 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004712 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004713static struct pipe *parse_stream(char **pstring,
4714 struct in_str *input,
4715 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004716{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004717 struct parse_context ctx;
4718 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004719 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004720 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004721
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004722 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004723 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004724 * found. When recursing, quote state is passed in via dest->o_escape.
4725 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004726 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4727 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004728
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004729 G.ifs = get_local_var_value("IFS");
4730 if (G.ifs == NULL)
4731 G.ifs = " \t\n";
4732
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004733 reset:
4734#if ENABLE_HUSH_INTERACTIVE
4735 input->promptmode = 0; /* PS1 */
4736#endif
4737 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4738 initialize_context(&ctx);
4739 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004740 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004741 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004742 const char *is_ifs;
4743 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004744 int ch;
4745 int next;
4746 int redir_fd;
4747 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004748
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004749 if (is_in_dquote) {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004750 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004751 goto parse_error;
4752 }
4753 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004754 is_in_dquote = 0;
4755 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004756 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004757 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4758 ch, ch, dest.o_escape);
4759 if (ch == EOF) {
4760 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004761
4762 if (heredoc_cnt) {
4763 syntax("unterminated here document");
4764 goto parse_error;
4765 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004766 if (done_word(&dest, &ctx)) {
4767 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004768 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004769 o_free(&dest);
4770 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004771 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004772 /* If we got nothing... */
4773// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004774 if (pi->num_cmds == 0
4775 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4776 ) {
4777 free_pipe_list(pi, 0);
4778 pi = NULL;
4779 }
4780 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004781#if !BB_MMU
4782 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4783 if (pstring)
4784 *pstring = ctx.as_string.data;
4785 else
4786 o_free_unsafe(&ctx.as_string);
4787#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004788 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004789 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004790 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004791 is_ifs = strchr(G.ifs, ch);
4792 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4793 "\\$\"" USE_HUSH_TICK("`") /* always special */
4794 , ch);
4795
4796 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004797 o_addQchr(&dest, ch);
4798 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4799 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004800 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004801 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004802 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004803 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004804 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004805 continue;
4806 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004807
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004808 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004809 if (done_word(&dest, &ctx)) {
4810 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004811 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004812 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004813#if ENABLE_HUSH_CASE
4814 /* "case ... in <newline> word) ..." -
4815 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004816 if (ctx.command->argv == NULL
4817 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004818 ) {
4819 continue;
4820 }
4821#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004822 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004823 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004824 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
4825 if (heredoc_cnt) {
4826 if (fetch_heredocs(heredoc_cnt, &ctx, input))
4827 goto parse_error;
4828 heredoc_cnt = 0;
4829 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004830 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004831 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004832 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004833 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004834 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004835 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004836 if (end_trigger && end_trigger == ch
4837 && (heredoc_cnt == 0 || end_trigger != ';')
4838 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004839//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004840 if (heredoc_cnt) {
4841 /* This is technically valid:
4842 * { cat <<HERE; }; echo Ok
4843 * heredoc
4844 * heredoc
4845 * heredoc
4846 * HERE
4847 * but we don't support this.
4848 * We require heredoc to be in enclosing {}/(),
4849 * if any.
4850 */
4851 syntax("unterminated here document");
4852 goto parse_error;
4853 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004854 if (done_word(&dest, &ctx)) {
4855 goto parse_error;
4856 }
4857 done_pipe(&ctx, PIPE_SEQ);
4858 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004859 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004860 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004861 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004862 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004863 debug_printf_parse("parse_stream return %p: "
4864 "end_trigger char found\n",
4865 ctx.list_head);
4866 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004867#if !BB_MMU
4868 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4869 if (pstring)
4870 *pstring = ctx.as_string.data;
4871 else
4872 o_free_unsafe(&ctx.as_string);
4873#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004874 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004875 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004876 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004877 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004878 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004879
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004880 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004881 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004882 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004883 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004884 }
4885
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004886 next = '\0';
4887 if (ch != '\n') {
4888 next = i_peek(input);
4889 }
4890
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004891 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004892 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004893 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004894 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004895 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004896 if (ch == EOF || ch == '\n')
4897 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004898 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004899 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004900 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004901//TODO: go back one char?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004902 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00004903 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004904 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004905 }
4906 break;
4907 case '\\':
4908 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004909 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004910 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004911 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004912 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004913 ch = i_getch(input);
4914 o_addchr(&dest, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004915 nommu_addchr(&ctx.as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004916 break;
4917 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004918 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004919 debug_printf_parse("parse_stream parse error: "
4920 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004921 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004922 }
Eric Andersen25f27032001-04-26 23:22:31 +00004923 break;
4924 case '\'':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004925 dest.nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004926 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004927 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004928 if (ch == EOF) {
4929 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004930 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004931 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004932 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004933 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004934 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004935 if (dest.o_assignment == NOT_ASSIGNMENT)
4936 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004937 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004938 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004939 }
Eric Andersen25f27032001-04-26 23:22:31 +00004940 break;
4941 case '"':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004942 dest.nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004943 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004944 if (dest.o_assignment == NOT_ASSIGNMENT)
4945 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004946 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004947#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004948 case '`': {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004949 //int pos = dest.length;
4950 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4951 o_addchr(&dest, '`');
4952 add_till_backquote(&dest, input);
4953 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4954 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004955 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004956 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004957#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004958 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004959 redir_fd = redirect_opt_num(&dest);
4960 if (done_word(&dest, &ctx)) {
4961 goto parse_error;
4962 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004963 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004964 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004965 redir_style = REDIRECT_APPEND;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004966 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004967 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004968 }
4969#if 0
4970 else if (next == '(') {
4971 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004972 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004973 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004974#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004975 if (parse_redirect(&ctx, redir_fd, redir_style, input))
4976 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004977 break;
4978 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004979 redir_fd = redirect_opt_num(&dest);
4980 if (done_word(&dest, &ctx)) {
4981 goto parse_error;
4982 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004983 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004984 if (next == '<') {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004985 redir_style = REDIRECT_HEREDOC;
4986 heredoc_cnt++;
4987 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004988 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004989 nommu_addchr(&ctx.as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004990 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004991 redir_style = REDIRECT_IO;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004992 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004993 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004994 }
4995#if 0
4996 else if (next == '(') {
4997 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004998 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004999 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005000#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005001 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5002 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005003 break;
5004 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005005#if ENABLE_HUSH_CASE
5006 case_semi:
5007#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005008 if (done_word(&dest, &ctx)) {
5009 goto parse_error;
5010 }
5011 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005012#if ENABLE_HUSH_CASE
5013 /* Eat multiple semicolons, detect
5014 * whether it means something special */
5015 while (1) {
5016 ch = i_peek(input);
5017 if (ch != ';')
5018 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005019 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005020 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005021 if (ctx.ctx_res_w == RES_CASEI) {
5022 ctx.ctx_dsemicolon = 1;
5023 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005024 break;
5025 }
5026 }
5027#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005028 new_cmd:
5029 /* We just finished a cmd. New one may start
5030 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005031 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005032 break;
5033 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005034 if (done_word(&dest, &ctx)) {
5035 goto parse_error;
5036 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005037 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005038 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005039 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005040 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005041 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005042 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005043 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005044 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005045 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005046 if (done_word(&dest, &ctx)) {
5047 goto parse_error;
5048 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005049#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005050 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005051 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005052#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005053 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005054 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005055 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005056 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005057 } else {
5058 /* we could pick up a file descriptor choice here
5059 * with redirect_opt_num(), but bash doesn't do it.
5060 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005061 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005062 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005063 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005064 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005065#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005066 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005067 if (ctx.ctx_res_w == RES_MATCH
5068 && ctx.command->argv == NULL /* not (word|(... */
5069 && dest.length == 0 /* not word(... */
5070 && dest.nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005071 ) {
5072 continue;
5073 }
5074#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005075#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005076 if (dest.length != 0 /* not just () but word() */
5077 && dest.nonnull == 0 /* not a"b"c() */
5078 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005079//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005080 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005081 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005082 ) {
5083 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005084 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005085//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005086 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005087//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005088 ch = i_getch(input);
5089 } while (ch == ' ' || ch == '\n');
5090 if (ch != '{') {
5091 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005092 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005093 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005094 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005095 }
5096#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005097 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005098 if (parse_group(&dest, &ctx, input, ch) != 0) {
5099 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005100 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005101 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005102 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005103#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005104 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005105 goto case_semi;
5106#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005107 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005108 /* proper use of this character is caught by end_trigger:
5109 * if we see {, we call parse_group(..., end_trigger='}')
5110 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00005111 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005112 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005113 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005114 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005115 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005116 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005117 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005118
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005119 parse_error:
5120 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005121 struct parse_context *pctx;
5122 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005123
5124 /* Clean up allocated tree.
5125 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005126 * Run them from interactive shell, watch pmap `pidof hush`.
5127 * while if false; then false; fi do break; done
5128 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005129 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005130 * Samples to catch leaks at execution:
5131 * while if (true | {true;}); then echo ok; fi; do break; done
5132 * 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 +00005133 */
5134 pctx = &ctx;
5135 do {
5136 /* Update pipe/command counts,
5137 * otherwise freeing may miss some */
5138 done_pipe(pctx, PIPE_SEQ);
5139 debug_printf_clean("freeing list %p from ctx %p\n",
5140 pctx->list_head, pctx);
5141 debug_print_tree(pctx->list_head, 0);
5142 free_pipe_list(pctx->list_head, 0);
5143 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005144#if !BB_MMU
5145 o_free_unsafe(&pctx->as_string);
5146#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005147 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005148 if (pctx != &ctx) {
5149 free(pctx);
5150 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005151 IF_HAS_KEYWORDS(pctx = p2;)
5152 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005153 /* Free text, clear all dest fields */
5154 o_free(&dest);
5155 /* If we are not in top-level parse, we return,
5156 * our caller will propagate error.
5157 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005158 if (end_trigger != ';') {
5159#if !BB_MMU
5160 if (pstring)
5161 *pstring = NULL;
5162#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005163 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005164 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005165 /* Discard cached input, force prompt */
5166 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005167 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005168 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005169 }
Eric Andersen25f27032001-04-26 23:22:31 +00005170}
5171
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005172/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005173 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5174 * end_trigger controls how often we stop parsing
5175 * NUL: parse all, execute, return
5176 * ';': parse till ';' or newline, execute, repeat till EOF
5177 */
5178static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005179{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005180 while (1) {
5181 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005182
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005183 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005184 if (!pipe_list) /* EOF */
5185 break;
5186 debug_print_tree(pipe_list, 0);
5187 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5188 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005189 }
Eric Andersen25f27032001-04-26 23:22:31 +00005190}
5191
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005192static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005193{
5194 struct in_str input;
5195 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005196 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005197}
5198
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005199static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005200{
Eric Andersen25f27032001-04-26 23:22:31 +00005201 struct in_str input;
5202 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005203 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005204}
5205
Denis Vlasenkof9375282009-04-05 19:13:39 +00005206/* Called a few times only (or even once if "sh -c") */
5207static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005208{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005209 unsigned sig;
5210 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005211
Denis Vlasenkof9375282009-04-05 19:13:39 +00005212 mask = (1 << SIGQUIT);
5213 if (G_interactive_fd) {
5214 mask = 0
5215 | (1 << SIGQUIT)
5216 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005217//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005218#if ENABLE_HUSH_JOB
5219 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5220#endif
5221 | (1 << SIGINT)
5222 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005223 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005224 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005225
Denis Vlasenkof9375282009-04-05 19:13:39 +00005226 if (!second_time)
5227 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5228 sig = 0;
5229 while (mask) {
5230 if (mask & 1)
5231 sigaddset(&G.blocked_set, sig);
5232 mask >>= 1;
5233 sig++;
5234 }
5235 sigdelset(&G.blocked_set, SIGCHLD);
5236
5237 sigprocmask(SIG_SETMASK, &G.blocked_set,
5238 second_time ? NULL : &G.inherited_set);
5239 /* POSIX allows shell to re-enable SIGCHLD
5240 * even if it was SIG_IGN on entry */
5241// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5242 if (!second_time)
5243 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5244}
5245
5246#if ENABLE_HUSH_JOB
5247/* helper */
5248static void maybe_set_to_sigexit(int sig)
5249{
5250 void (*handler)(int);
5251 /* non_DFL_mask'ed signals are, well, masked,
5252 * no need to set handler for them.
5253 */
5254 if (!((G.non_DFL_mask >> sig) & 1)) {
5255 handler = signal(sig, sigexit);
5256 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5257 signal(sig, handler);
5258 }
5259}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005260/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005261static void set_fatal_handlers(void)
5262{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005263 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005264 if (HUSH_DEBUG) {
5265 maybe_set_to_sigexit(SIGILL );
5266 maybe_set_to_sigexit(SIGFPE );
5267 maybe_set_to_sigexit(SIGBUS );
5268 maybe_set_to_sigexit(SIGSEGV);
5269 maybe_set_to_sigexit(SIGTRAP);
5270 } /* else: hush is perfect. what SEGV? */
5271 maybe_set_to_sigexit(SIGABRT);
5272 /* bash 3.2 seems to handle these just like 'fatal' ones */
5273 maybe_set_to_sigexit(SIGPIPE);
5274 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005275//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005276 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005277 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005278 * if we aren't interactive... but in this case
5279 * we never want to restore pgrp on exit, and this fn is not called */
5280 /*maybe_set_to_sigexit(SIGTERM);*/
5281 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005282}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005283#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005284
Denis Vlasenkod5762932009-03-31 11:22:57 +00005285static int set_mode(const char cstate, const char mode)
5286{
5287 int state = (cstate == '-' ? 1 : 0);
5288 switch (mode) {
5289 case 'n': G.fake_mode = state; break;
5290 case 'x': /*G.debug_mode = state;*/ break;
5291 default: return EXIT_FAILURE;
5292 }
5293 return EXIT_SUCCESS;
5294}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005295
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005296int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005297int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005298{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005299 static const struct variable const_shell_ver = {
5300 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005301 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005302 .max_len = 1, /* 0 can provoke free(name) */
5303 .flg_export = 1,
5304 .flg_read_only = 1,
5305 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005306 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005307 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005308 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005309 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005310
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005311 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005312 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005313 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005314#if !BB_MMU
5315 G.argv0_for_re_execing = argv[0];
5316#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005317 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005318 G.shell_ver = const_shell_ver; /* copying struct here */
5319 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005320 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005321 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5322 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005323 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005324 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005325 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005326 if (e) while (*e) {
5327 char *value = strchr(*e, '=');
5328 if (value) { /* paranoia */
5329 cur_var->next = xzalloc(sizeof(*cur_var));
5330 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005331 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005332 cur_var->max_len = strlen(*e);
5333 cur_var->flg_export = 1;
5334 }
5335 e++;
5336 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005337 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005338 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005339#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005340 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005341#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005342 G.global_argc = argc;
5343 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005344 /* Initialize some more globals to non-zero values */
5345 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005346#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005347 if (ENABLE_FEATURE_EDITING)
5348 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005349 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005350#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005351
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005352 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005353 * block_signals(0) if we are going to execute "sh <script>",
5354 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005355 * If we later decide that we are interactive, we run block_signals(0)
5356 * (or re-run block_signals(1) if we ran block_signals(0) before)
5357 * in order to intercept (more) signals.
5358 */
5359
5360 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005361 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005362 while (1) {
5363 opt = getopt(argc, argv, "c:xins"
5364#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005365 "<:$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005366#endif
5367 );
5368 if (opt <= 0)
5369 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005370 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005371 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005372 if (!G.root_pid)
5373 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005374 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005375 if (!argv[optind]) {
5376 /* -c 'script' (no params): prevent empty $0 */
5377 *--G.global_argv = argv[0];
5378 optind--;
5379 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005380 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005381 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005382 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005383 goto final_return;
5384 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005385 /* Well, we cannot just declare interactiveness,
5386 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005387 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005388 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005389 case 's':
5390 /* "-s" means "read from stdin", but this is how we always
5391 * operate, so simply do nothing here. */
5392 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005393#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005394 case '<': /* "big heredoc" support */
5395 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5396 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005397 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005398 G.root_pid = bb_strtou(optarg, &optarg, 16);
5399 optarg++;
5400 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5401 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005402 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005403# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005404 optarg++;
5405 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005406# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005407 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005408 case 'R':
5409 case 'V':
5410 set_local_var(xstrdup(optarg), 0, opt == 'R');
5411 break;
5412#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005413 case 'n':
5414 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005415 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005416 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005417 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005418#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005419 fprintf(stderr, "Usage: sh [FILE]...\n"
5420 " or: sh -c command [args]...\n\n");
5421 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005422#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005423 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005424#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005425 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005426 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005427
5428 if (!G.root_pid)
5429 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005430
5431 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005432 if (argv[0] && argv[0][0] == '-') {
5433 FILE *input;
5434 /* XXX what should argv be while sourcing /etc/profile? */
5435 debug_printf("sourcing /etc/profile\n");
5436 input = fopen_for_read("/etc/profile");
5437 if (input != NULL) {
5438 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005439 block_signals(0); /* 0: called 1st time */
5440 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005441 parse_and_run_file(input);
5442 fclose(input);
5443 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005444 /* bash: after sourcing /etc/profile,
5445 * tries to source (in the given order):
5446 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5447 * stopping of first found. --noprofile turns this off.
5448 * bash also sources ~/.bash_logout on exit.
5449 * If called as sh, skips .bash_XXX files.
5450 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005451 }
5452
Denis Vlasenkof9375282009-04-05 19:13:39 +00005453 if (argv[optind]) {
5454 FILE *input;
5455 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005456 * "bash <script>" (which is never interactive (unless -i?))
5457 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005458 * If called as sh, does the same but with $ENV.
5459 */
5460 debug_printf("running script '%s'\n", argv[optind]);
5461 G.global_argv = argv + optind;
5462 G.global_argc = argc - optind;
5463 input = xfopen_for_read(argv[optind]);
5464 close_on_exec_on(fileno(input));
5465 if (!signal_mask_is_inited)
5466 block_signals(0); /* 0: called 1st time */
5467 parse_and_run_file(input);
5468#if ENABLE_FEATURE_CLEAN_UP
5469 fclose(input);
5470#endif
5471 goto final_return;
5472 }
5473
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005474 /* Up to here, shell was non-interactive. Now it may become one.
5475 * NB: don't forget to (re)run block_signals(0/1) as needed.
5476 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005477
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005478 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005479 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005480 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005481 * no arguments remaining or the -s flag given
5482 * standard input is a terminal
5483 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005484 * Refer to Posix.2, the description of the 'sh' utility.
5485 */
5486#if ENABLE_HUSH_JOB
5487 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005488 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005489 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005490//TODO: "interactive" and "have job control" are two different things.
5491//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5492//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005493 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005494 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005495 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5496 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005497 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005498 G_interactive_fd = dup(STDIN_FILENO);
5499 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005500 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005501 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005502 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005503// TODO: track & disallow any attempts of user
5504// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005505 }
Eric Andersen25f27032001-04-26 23:22:31 +00005506 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005507 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005508 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005509 pid_t shell_pgrp;
5510
5511 /* We are indeed interactive shell, and we will perform
5512 * job control. Setting up for that. */
5513
5514 close_on_exec_on(G_interactive_fd);
5515 /* If we were run as 'hush &', sleep until we are
5516 * in the foreground (tty pgrp == our pgrp).
5517 * If we get started under a job aware app (like bash),
5518 * make sure we are now in charge so we don't fight over
5519 * who gets the foreground */
5520 while (1) {
5521 shell_pgrp = getpgrp();
5522 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5523 if (G.saved_tty_pgrp == shell_pgrp)
5524 break;
5525 /* send TTIN to ourself (should stop us) */
5526 kill(- shell_pgrp, SIGTTIN);
5527 }
5528 /* Block some signals */
5529 block_signals(signal_mask_is_inited);
5530 /* Set other signals to restore saved_tty_pgrp */
5531 set_fatal_handlers();
5532 /* Put ourselves in our own process group */
5533 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5534 /* Grab control of the terminal */
5535 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005536 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005537 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005538 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005539 if (setjmp(die_jmp)) {
5540 /* xfunc has failed! die die die */
5541 hush_exit(xfunc_error_retval);
5542 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005543 } else if (!signal_mask_is_inited) {
5544 block_signals(0); /* 0: called 1st time */
5545 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005546#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005547 /* No job control compiled in, only prompt/line editing */
5548 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005549 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5550 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005551 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005552 G_interactive_fd = dup(STDIN_FILENO);
5553 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005554 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005555 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005556 }
5557 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005558 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005559 close_on_exec_on(G_interactive_fd);
5560 block_signals(signal_mask_is_inited);
5561 } else if (!signal_mask_is_inited) {
5562 block_signals(0);
5563 }
5564#else
5565 /* We have interactiveness code disabled */
5566 if (!signal_mask_is_inited) {
5567 block_signals(0);
5568 }
5569#endif
5570 /* bash:
5571 * if interactive but not a login shell, sources ~/.bashrc
5572 * (--norc turns this off, --rcfile <file> overrides)
5573 */
5574
5575 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005576 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005577 printf("Enter 'help' for a list of built-in commands.\n\n");
5578 }
5579
Denis Vlasenkof9375282009-04-05 19:13:39 +00005580 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005581
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005582 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005583#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005584 if (G.cwd != bb_msg_unknown)
5585 free((char*)G.cwd);
5586 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005587 while (cur_var) {
5588 struct variable *tmp = cur_var;
5589 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005590 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005591 cur_var = cur_var->next;
5592 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005593 }
Eric Andersen25f27032001-04-26 23:22:31 +00005594#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005595 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005596}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005597
5598
5599#if ENABLE_LASH
5600int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5601int lash_main(int argc, char **argv)
5602{
5603 //bb_error_msg("lash is deprecated, please use hush instead");
5604 return hush_main(argc, argv);
5605}
5606#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005607
5608
5609/*
5610 * Built-ins
5611 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005612static int builtin_trap(char **argv)
5613{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005614 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005615 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005616 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005617
5618 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005619 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005620
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005621 argv++;
5622 if (!*argv) {
5623 /* No args: print all trapped. This isn't 100% correct as we
5624 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005625 */
5626 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005627 if (G.traps[i])
5628 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005629 return EXIT_SUCCESS;
5630 }
5631
Denis Vlasenkod5762932009-03-31 11:22:57 +00005632 new_cmd = NULL;
5633 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005634 /* If first arg is decimal: reset all specified signals */
5635 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005636 if (errno == 0) {
5637 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005638 set_all:
5639 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005640 while (*argv) {
5641 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005642 if (sig < 0 || sig >= NSIG) {
5643 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005644 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005645 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5646 continue;
5647 }
5648
Denis Vlasenkod5762932009-03-31 11:22:57 +00005649 free(G.traps[sig]);
5650 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005651
Denis Vlasenkod5762932009-03-31 11:22:57 +00005652 debug_printf("trap: setting SIG%s (%i) to '%s'",
5653 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005654
5655 /* There is no signal for 0 (EXIT) */
5656 if (sig == 0)
5657 continue;
5658
5659 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005660 sigaddset(&G.blocked_set, sig);
5661 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005662 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005663 * (if sig has non-DFL handling,
5664 * we don't need to do anything) */
5665 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5666 continue;
5667 sigdelset(&G.blocked_set, sig);
5668 }
5669 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005670 }
5671 return ret;
5672 }
5673
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005674 /* First arg is "-": reset all specified to default */
5675 /* First arg is "": ignore all specified */
5676 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005677 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005678 bb_error_msg("trap: invalid arguments");
5679 return EXIT_FAILURE;
5680 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005681 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005682 new_cmd = *argv;
5683 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005684 goto set_all;
5685}
5686
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005687static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005688{
5689 return 0;
5690}
5691
5692static int builtin_test(char **argv)
5693{
5694 int argc = 0;
5695 while (*argv) {
5696 argc++;
5697 argv++;
5698 }
5699 return test_main(argc, argv - argc);
5700}
5701
5702static int builtin_echo(char **argv)
5703{
5704 int argc = 0;
5705 while (*argv) {
5706 argc++;
5707 argv++;
5708 }
5709 return echo_main(argc, argv - argc);
5710}
5711
5712static int builtin_eval(char **argv)
5713{
5714 int rcode = EXIT_SUCCESS;
5715
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005716 if (*++argv) {
5717 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005718 /* bash:
5719 * eval "echo Hi; done" ("done" is syntax error):
5720 * "echo Hi" will not execute too.
5721 */
5722 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005723 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005724 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005725 }
5726 return rcode;
5727}
5728
5729static int builtin_cd(char **argv)
5730{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005731 const char *newdir = argv[1];
5732 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005733 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5734 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5735 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005736 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005737 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005738 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005739 /* Mimic bash message exactly */
5740 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005741 return EXIT_FAILURE;
5742 }
5743 set_cwd();
5744 return EXIT_SUCCESS;
5745}
5746
5747static int builtin_exec(char **argv)
5748{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005749 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005750 return EXIT_SUCCESS; /* bash does this */
5751 {
5752#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005753 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005754#endif
5755// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005756 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005757 /* never returns */
5758 }
5759}
5760
5761static int builtin_exit(char **argv)
5762{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00005763 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005764// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5765 //puts("exit"); /* bash does it */
5766// TODO: warn if we have background jobs: "There are stopped jobs"
5767// On second consecutive 'exit', exit anyway.
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005768 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005769 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005770 /* mimic bash: exit 123abc == exit 255 + error msg */
5771 xfunc_error_retval = 255;
5772 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005773 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005774}
5775
5776static int builtin_export(char **argv)
5777{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005778 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005779 // TODO:
5780 // ash emits: export VAR='VAL'
5781 // bash: declare -x VAR="VAL"
5782 // (both also escape as needed (quotes, $, etc))
5783 char **e = environ;
5784 if (e)
5785 while (*e)
5786 puts(*e++);
5787 return EXIT_SUCCESS;
5788 }
5789
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005790 do {
5791 const char *value;
5792 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005793
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005794 value = strchr(name, '=');
5795 if (!value) {
5796 /* They are exporting something without a =VALUE */
5797 struct variable *var;
5798
5799 var = get_local_var(name);
5800 if (var) {
5801 var->flg_export = 1;
5802 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
5803 putenv(var->varstr);
5804 }
5805 /* bash does not return an error when trying to export
5806 * an undefined variable. Do likewise. */
5807 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005808 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005809 set_local_var(xstrdup(name), 1, 0);
5810 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005811
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005812 return EXIT_SUCCESS;
5813}
5814
5815#if ENABLE_HUSH_JOB
5816/* built-in 'fg' and 'bg' handler */
5817static int builtin_fg_bg(char **argv)
5818{
5819 int i, jobnum;
5820 struct pipe *pi;
5821
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005822 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005823 return EXIT_FAILURE;
5824 /* If they gave us no args, assume they want the last backgrounded task */
5825 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005826 for (pi = G.job_list; pi; pi = pi->next) {
5827 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005828 goto found;
5829 }
5830 }
5831 bb_error_msg("%s: no current job", argv[0]);
5832 return EXIT_FAILURE;
5833 }
5834 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5835 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5836 return EXIT_FAILURE;
5837 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005838 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005839 if (pi->jobid == jobnum) {
5840 goto found;
5841 }
5842 }
5843 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5844 return EXIT_FAILURE;
5845 found:
5846 // TODO: bash prints a string representation
5847 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005848 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005849 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005850 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005851 }
5852
5853 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005854 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5855 for (i = 0; i < pi->num_cmds; i++) {
5856 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5857 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005858 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005859 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005860
5861 i = kill(- pi->pgrp, SIGCONT);
5862 if (i < 0) {
5863 if (errno == ESRCH) {
5864 delete_finished_bg_job(pi);
5865 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005866 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005867 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005868 }
5869
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005870 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005871 remove_bg_job(pi);
5872 return checkjobs_and_fg_shell(pi);
5873 }
5874 return EXIT_SUCCESS;
5875}
5876#endif
5877
5878#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005879static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005880{
5881 const struct built_in_command *x;
5882
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005883 printf("\n"
5884 "Built-in commands:\n"
5885 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005886 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5887 printf("%s\t%s\n", x->cmd, x->descr);
5888 }
5889 printf("\n\n");
5890 return EXIT_SUCCESS;
5891}
5892#endif
5893
5894#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005895static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005896{
5897 struct pipe *job;
5898 const char *status_string;
5899
Denis Vlasenko87a86552008-07-29 19:43:10 +00005900 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005901 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005902 status_string = "Stopped";
5903 else
5904 status_string = "Running";
5905
5906 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5907 }
5908 return EXIT_SUCCESS;
5909}
5910#endif
5911
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005912static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005913{
5914 puts(set_cwd());
5915 return EXIT_SUCCESS;
5916}
5917
5918static int builtin_read(char **argv)
5919{
5920 char *string;
5921 const char *name = argv[1] ? argv[1] : "REPLY";
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00005922//TODO: check that argv[1] is a valid variable name
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005923
5924 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005925 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005926}
5927
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005928/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5929 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005930 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005931 * set [-abCefhmnuvx] [-o option] [argument...]
5932 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005933 * set -- [argument...]
5934 * set -o
5935 * set +o
5936 * Implementations shall support the options in both their hyphen and
5937 * plus-sign forms. These options can also be specified as options to sh.
5938 * Examples:
5939 * Write out all variables and their values: set
5940 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5941 * Turn on the -x and -v options: set -xv
5942 * Unset all positional parameters: set --
5943 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5944 * Set the positional parameters to the expansion of x, even if x expands
5945 * with a leading '-' or '+': set -- $x
5946 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005947 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005948 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005949static int builtin_set(char **argv)
5950{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005951 int n;
5952 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005953 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005954
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005955 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005956 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005957 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005958 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005959 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005960 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005961
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005962 do {
5963 if (!strcmp(arg, "--")) {
5964 ++argv;
5965 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005966 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005967
5968 if (arg[0] == '+' || arg[0] == '-') {
5969 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005970 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005971 goto error;
5972 continue;
5973 }
5974
5975 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005976 } while ((arg = *++argv) != NULL);
5977 /* Now argv[0] is 1st argument */
5978
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005979 /* Only reset global_argv if we didn't process anything */
5980 if (arg == NULL)
5981 return EXIT_SUCCESS;
5982 set_argv:
5983
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005984 /* NB: G.global_argv[0] ($0) is never freed/changed */
5985 g_argv = G.global_argv;
5986 if (G.global_args_malloced) {
5987 pp = g_argv;
5988 while (*++pp)
5989 free(*pp);
5990 g_argv[1] = NULL;
5991 } else {
5992 G.global_args_malloced = 1;
5993 pp = xzalloc(sizeof(pp[0]) * 2);
5994 pp[0] = g_argv[0]; /* retain $0 */
5995 g_argv = pp;
5996 }
5997 /* This realloc's G.global_argv */
5998 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5999
6000 n = 1;
6001 while (*++pp)
6002 n++;
6003 G.global_argc = n;
6004
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006005 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006006
6007 /* Nothing known, so abort */
6008 error:
6009 bb_error_msg("set: %s: invalid option", arg);
6010 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006011}
6012
6013static int builtin_shift(char **argv)
6014{
6015 int n = 1;
6016 if (argv[1]) {
6017 n = atoi(argv[1]);
6018 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006019 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006020 if (G.global_args_malloced) {
6021 int m = 1;
6022 while (m <= n)
6023 free(G.global_argv[m++]);
6024 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006025 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006026 memmove(&G.global_argv[1], &G.global_argv[n+1],
6027 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006028 return EXIT_SUCCESS;
6029 }
6030 return EXIT_FAILURE;
6031}
6032
6033static int builtin_source(char **argv)
6034{
6035 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006036
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006037 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006038 return EXIT_FAILURE;
6039
6040 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006041 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006042 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006043 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006044 return EXIT_FAILURE;
6045 }
6046 close_on_exec_on(fileno(input));
6047
6048 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006049//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006050 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006051 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006052 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006053 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006054 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006055 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006056}
6057
6058static int builtin_umask(char **argv)
6059{
6060 mode_t new_umask;
6061 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006062 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006063//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006064 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006065 if (errno) {
6066 //Message? bash examples:
6067 //bash: umask: 'q': invalid symbolic mode operator
6068 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006069 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006070 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006071 } else {
6072 new_umask = umask(0);
6073 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006074 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006075 }
6076 umask(new_umask);
6077 return EXIT_SUCCESS;
6078}
6079
Mike Frysingerd690f682009-03-30 06:50:54 +00006080/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006081static int builtin_unset(char **argv)
6082{
Mike Frysingerd690f682009-03-30 06:50:54 +00006083 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006084 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006085
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006086 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006087 return EXIT_SUCCESS;
6088
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006089 var = 'v';
6090 if (argv[0][0] == '-') {
6091 switch (argv[0][1]) {
6092 case 'v':
6093 case 'f':
6094 var = argv[0][1];
6095 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006096 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006097 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006098 return EXIT_FAILURE;
6099 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006100//TODO: disallow "unset -vf ..." too
6101 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006102 }
6103
6104 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006105 while (*argv) {
6106 if (var == 'v') {
6107 if (unset_local_var(*argv)) {
6108 /* unset <nonexistent_var> doesn't fail.
6109 * Error is when one tries to unset RO var.
6110 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006111 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006112 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006113 }
6114#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006115 else {
6116 unset_local_func(*argv);
6117 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006118#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006119 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006120 }
6121 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006122}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006123
Mike Frysinger56bdea12009-03-28 20:01:58 +00006124/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6125static int builtin_wait(char **argv)
6126{
6127 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006128 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006129
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006130 if (*++argv == NULL) {
6131 /* Don't care about wait results */
6132 /* Note 1: must wait until there are no more children */
6133 /* Note 2: must be interruptible */
6134 /* Examples:
6135 * $ sleep 3 & sleep 6 & wait
6136 * [1] 30934 sleep 3
6137 * [2] 30935 sleep 6
6138 * [1] Done sleep 3
6139 * [2] Done sleep 6
6140 * $ sleep 3 & sleep 6 & wait
6141 * [1] 30936 sleep 3
6142 * [2] 30937 sleep 6
6143 * [1] Done sleep 3
6144 * ^C <-- after ~4 sec from keyboard
6145 * $
6146 */
6147 sigaddset(&G.blocked_set, SIGCHLD);
6148 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6149 while (1) {
6150 checkjobs(NULL);
6151 if (errno == ECHILD)
6152 break;
6153 /* Wait for SIGCHLD or any other signal of interest */
6154 /* sigtimedwait with infinite timeout: */
6155 sig = sigwaitinfo(&G.blocked_set, NULL);
6156 if (sig > 0) {
6157 sig = check_and_run_traps(sig);
6158 if (sig && sig != SIGCHLD) { /* see note 2 */
6159 ret = 128 + sig;
6160 break;
6161 }
6162 }
6163 }
6164 sigdelset(&G.blocked_set, SIGCHLD);
6165 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6166 return ret;
6167 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006168
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006169 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006170 while (*argv) {
6171 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006172 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006173 /* mimic bash message */
6174 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006175 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006176 }
6177 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006178 if (WIFSIGNALED(status))
6179 ret = 128 + WTERMSIG(status);
6180 else if (WIFEXITED(status))
6181 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006182 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006183 ret = EXIT_FAILURE;
6184 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006185 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006186 ret = 127;
6187 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006188 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006189 }
6190
6191 return ret;
6192}
6193
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006194#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006195static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006196{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006197 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006198 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006199 return EXIT_SUCCESS; /* bash compat */
6200 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006201 G.flag_break_continue++; /* BC_BREAK = 1 */
6202 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006203 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006204 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6205 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006206 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006207 G.flag_break_continue = BC_BREAK;
6208 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006209 }
6210 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006211 if (G.depth_of_loop < G.depth_break_continue)
6212 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006213 return EXIT_SUCCESS;
6214}
6215
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006216static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006217{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006218 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6219 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006220}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006221#endif