blob: 3388ad7f9cfc43c5228fe1c94c5eeffad1a06abf [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>
9 *
10 * Credits:
11 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000012 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
13 * execution engine, the builtins, and much of the underlying
14 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000015 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000016 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
17 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
18 * Troan, which they placed in the public domain. I don't know
19 * how much of the Johnson/Troan code has survived the repeated
20 * rewrites.
21 *
Eric Andersen25f27032001-04-26 23:22:31 +000022 * Other credits:
Denis Vlasenkoa8442002008-06-14 11:00:17 +000023 * o_addchr() derived from similar w_addchar function in glibc-2.2.
Eric Andersen25f27032001-04-26 23:22:31 +000024 * setup_redirect(), redirect_opt_num(), and big chunks of main()
Denis Vlasenko424f79b2009-03-22 14:23:34 +000025 * and many builtins derived from contributions by Erik Andersen.
26 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000027 *
28 * There are two big (and related) architecture differences between
29 * this parser and the lash parser. One is that this version is
30 * actually designed from the ground up to understand nearly all
31 * of the Bourne grammar. The second, consequential change is that
32 * the parser and input reader have been turned inside out. Now,
33 * the parser is in control, and asks for input as needed. The old
34 * way had the input reader in control, and it asked for parsing to
35 * take place as needed. The new way makes it much easier to properly
36 * handle the recursion implicit in the various substitutions, especially
37 * across continuation lines.
38 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000039 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000040 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000041 * <(list) and >(list) Process Substitution
Eric Andersen25f27032001-04-26 23:22:31 +000042 * Here Documents ( << word )
43 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 * Tilde Expansion
Mike Frysinger6379bb42009-03-28 18:55:03 +000045 * Parameter Expansion for substring processing ${var#word} ${var%word}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000046 *
47 * Bash stuff maybe optional enable:
48 * &> and >& redirection of stdout+stderr
49 * Brace expansion
50 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000051 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000052 *
Eric Andersen25f27032001-04-26 23:22:31 +000053 * Major bugs:
Denis Vlasenkob81b3df2007-04-28 16:48:04 +000054 * job handling woefully incomplete and buggy (improved --vda)
Eric Andersen25f27032001-04-26 23:22:31 +000055 * to-do:
Eric Andersen83a2ae22001-05-07 17:59:25 +000056 * port selected bugfixes from post-0.49 busybox lash - done?
Eric Andersen83a2ae22001-05-07 17:59:25 +000057 * change { and } from special chars to reserved words
Denis Vlasenkobcb25532008-07-28 23:04:34 +000058 * builtins: return, trap, ulimit
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +000059 * test magic exec with redirection only
Eric Andersen25f27032001-04-26 23:22:31 +000060 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000061 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000062 * propagate syntax errors, die on resource errors?
63 * continuation lines, both explicit and implicit - done?
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"
77
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000078#ifdef WANT_TO_TEST_NOMMU
79# undef BB_MMU
80# undef USE_FOR_NOMMU
81# undef USE_FOR_MMU
82# define BB_MMU 0
83# define USE_FOR_NOMMU(...) __VA_ARGS__
84# define USE_FOR_MMU(...)
85#endif
86
87#define HUSH_VER_STR "0.93"
Denis Vlasenkod01ff132007-05-02 21:40:23 +000088
Denis Vlasenko61befda2008-11-25 01:36:03 +000089#if defined SINGLE_APPLET_MAIN
90/* STANDALONE does not make sense, and won't compile */
91#undef CONFIG_FEATURE_SH_STANDALONE
92#undef ENABLE_FEATURE_SH_STANDALONE
93#undef USE_FEATURE_SH_STANDALONE
94#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
95#define ENABLE_FEATURE_SH_STANDALONE 0
96#define USE_FEATURE_SH_STANDALONE(...)
97#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
98#endif
99
Denis Vlasenko05743d72008-02-10 12:10:08 +0000100#if !ENABLE_HUSH_INTERACTIVE
101#undef ENABLE_FEATURE_EDITING
102#define ENABLE_FEATURE_EDITING 0
103#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
104#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000105#endif
106
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000107/* Do we support ANY keywords? */
108#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
109#define HAS_KEYWORDS 1
110#define IF_HAS_KEYWORDS(...) __VA_ARGS__
111#define IF_HAS_NO_KEYWORDS(...)
112#else
113#define HAS_KEYWORDS 0
114#define IF_HAS_KEYWORDS(...)
115#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
116#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000117
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000118/* Keep unconditionally on for now */
119#define HUSH_DEBUG 1
120/* In progress... */
121#define ENABLE_HUSH_FUNCTIONS 0
122
123
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000124/* If you comment out one of these below, it will be #defined later
125 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000126#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000127/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf_parse(...) do {} while (0)
129#define debug_print_tree(a, b) do {} while (0)
130#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000131#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000132#define debug_printf_jobs(...) do {} while (0)
133#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000134#define debug_printf_glob(...) do {} while (0)
135#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000136#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000137#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000138
139#ifndef debug_printf
140#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000141#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000142
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000143#ifndef debug_printf_parse
144#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000145#endif
146
147#ifndef debug_printf_exec
148#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
149#endif
150
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000151#ifndef debug_printf_env
152#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
153#endif
154
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000155#ifndef debug_printf_jobs
156#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000157#define DEBUG_JOBS 1
158#else
159#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000160#endif
161
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000162#ifndef debug_printf_expand
163#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
164#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000165#else
166#define DEBUG_EXPAND 0
167#endif
168
169#ifndef debug_printf_glob
170#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
171#define DEBUG_GLOB 1
172#else
173#define DEBUG_GLOB 0
174#endif
175
176#ifndef debug_printf_list
177#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000178#endif
179
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000180#ifndef debug_printf_subst
181#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
182#endif
183
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000184#ifndef debug_printf_clean
185/* broken, of course, but OK for testing */
186static const char *indenter(int i)
187{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000188 static const char blanks[] ALIGN1 =
189 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000190 return &blanks[sizeof(blanks) - i - 1];
191}
192#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000193#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000194#endif
195
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000196#if DEBUG_EXPAND
197static void debug_print_strings(const char *prefix, char **vv)
198{
199 fprintf(stderr, "%s:\n", prefix);
200 while (*vv)
201 fprintf(stderr, " '%s'\n", *vv++);
202}
203#else
204#define debug_print_strings(prefix, vv) ((void)0)
205#endif
206
Denis Vlasenkof962a032007-11-23 12:50:54 +0000207/*
208 * Leak hunting. Use hush_leaktool.sh for post-processing.
209 */
210#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000211static void *xxmalloc(int lineno, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000212{
213 void *ptr = xmalloc((size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000214 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000215 return ptr;
216}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000217static void *xxrealloc(int lineno, void *ptr, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000218{
219 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000220 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000221 return ptr;
222}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000223static char *xxstrdup(int lineno, const char *str)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000224{
225 char *ptr = xstrdup(str);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000226 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000227 return ptr;
228}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000229static void xxfree(void *ptr)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000230{
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000231 fdprintf(2, "free %p\n", ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000232 free(ptr);
233}
234#define xmalloc(s) xxmalloc(__LINE__, s)
235#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
236#define xstrdup(s) xxstrdup(__LINE__, s)
237#define free(p) xxfree(p)
238#endif
239
240
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000241#define ERR_PTR ((void*)(long)1)
242
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000243static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000244
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000245#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000246
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000247#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000248
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000249typedef enum redir_type {
Eric Andersen25f27032001-04-26 23:22:31 +0000250 REDIRECT_INPUT = 1,
251 REDIRECT_OVERWRITE = 2,
252 REDIRECT_APPEND = 3,
253 REDIRECT_HEREIS = 4,
254 REDIRECT_IO = 5
255} redir_type;
256
Denis Vlasenko55789c62008-06-18 16:30:42 +0000257/* The descrip member of this structure is only used to make
258 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000259static const struct {
260 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000261 signed char default_fd;
262 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000263} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000264 { 0, 0, "()" },
265 { O_RDONLY, 0, "<" },
266 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
267 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
268 { O_RDONLY, -1, "<<" },
269 { O_RDWR, 1, "<>" }
270};
271
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000272typedef enum pipe_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000273 PIPE_SEQ = 1,
274 PIPE_AND = 2,
275 PIPE_OR = 3,
276 PIPE_BG = 4,
277} pipe_style;
278
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000279typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000280 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000281#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000282 RES_IF ,
283 RES_THEN ,
284 RES_ELIF ,
285 RES_ELSE ,
286 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000287#endif
288#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000289 RES_FOR ,
290 RES_WHILE ,
291 RES_UNTIL ,
292 RES_DO ,
293 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000294#endif
295#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000296 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000297#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000298#if ENABLE_HUSH_CASE
299 RES_CASE ,
300 /* two pseudo-keywords support contrived "case" syntax: */
301 RES_MATCH , /* "word)" */
302 RES_CASEI , /* "this command is inside CASE" */
303 RES_ESAC ,
304#endif
305 RES_XXXX ,
306 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000307} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000308
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000309typedef struct o_string {
310 char *data;
311 int length; /* position where data is appended */
312 int maxlen;
313 /* Protect newly added chars against globbing
314 * (by prepending \ to *, ?, [, \) */
315 smallint o_escape;
316 smallint o_glob;
317 smallint nonnull;
318 smallint has_empty_slot;
319 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
320} o_string;
321enum {
322 MAYBE_ASSIGNMENT = 0,
323 DEFINITELY_ASSIGNMENT = 1,
324 NOT_ASSIGNMENT = 2,
325 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
326};
327/* Used for initialization: o_string foo = NULL_O_STRING; */
328#define NULL_O_STRING { NULL }
329
330/* I can almost use ordinary FILE*. Is open_memstream() universally
331 * available? Where is it documented? */
332typedef struct in_str {
333 const char *p;
334 /* eof_flag=1: last char in ->p is really an EOF */
335 char eof_flag; /* meaningless if ->p == NULL */
336 char peek_buf[2];
337#if ENABLE_HUSH_INTERACTIVE
338 smallint promptme;
339 smallint promptmode; /* 0: PS1, 1: PS2 */
340#endif
341 FILE *file;
342 int (*get) (struct in_str *);
343 int (*peek) (struct in_str *);
344} in_str;
345#define i_getch(input) ((input)->get(input))
346#define i_peek(input) ((input)->peek(input))
347
Eric Andersen25f27032001-04-26 23:22:31 +0000348struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000349 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000350 char *rd_filename; /* filename */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000351 int fd; /* file descriptor being redirected */
352 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000353 smallint /*enum redir_type*/ rd_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000354};
355
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000356struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000357 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000358 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000359 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000360 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000361 struct pipe *group; /* if non-NULL, this "command" is { list },
362 * ( list ), or a compound statement */
363#if !BB_MMU
364 char *group_as_string;
365#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000366 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000367 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000368};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000369/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
370 * and on execution these are substituted with their values.
371 * Substitution can make _several_ words out of one argv[n]!
372 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000373 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000374 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000375#define GRP_NORMAL 0
376#define GRP_SUBSHELL 1
377#if ENABLE_HUSH_FUNCTIONS
378#define GRP_FUNCTION 2
379#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000380
381struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000382 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000383 int num_cmds; /* total number of commands in job */
384 int alive_cmds; /* number of commands running (not exited) */
385 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000386#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000387 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000388 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000389 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000390#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000391 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000392 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000393 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
394 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000395};
396
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000397/* This holds pointers to the various results of parsing */
398struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000399 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000400 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000401 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000402 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000403 /* last command in pipe (being constructed right now) */
404 struct command *command;
405 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000406 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000407#if !BB_MMU
408 o_string as_string;
409#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000410#if HAS_KEYWORDS
411 smallint ctx_res_w;
412 smallint ctx_inverted; /* "! cmd | cmd" */
413#if ENABLE_HUSH_CASE
414 smallint ctx_dsemicolon; /* ";;" seen */
415#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000416 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
417 int old_flag;
418 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000419 * example: "if pipe1; pipe2; then pipe3; fi"
420 * when we see "if" or "then", we malloc and copy current context,
421 * and make ->stack point to it. then we parse pipeN.
422 * when closing "then" / fi" / whatever is found,
423 * we move list_head into ->stack->command->group,
424 * copy ->stack into current context, and delete ->stack.
425 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000426 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000427 struct parse_context *stack;
428#endif
429};
430
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000431/* On program start, environ points to initial environment.
432 * putenv adds new pointers into it, unsetenv removes them.
433 * Neither of these (de)allocates the strings.
434 * setenv allocates new strings in malloc space and does putenv,
435 * and thus setenv is unusable (leaky) for shell's purposes */
436#define setenv(...) setenv_is_leaky_dont_use()
437struct variable {
438 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000439 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000440 int max_len; /* if > 0, name is part of initial env; else name is malloced */
441 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000442 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000443};
444
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000445enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000446 BC_BREAK = 1,
447 BC_CONTINUE = 2,
448};
449
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000450
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000451/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000452/* Sorted roughly by size (smaller offsets == smaller code) */
453struct globals {
454#if ENABLE_HUSH_INTERACTIVE
455 /* 'interactive_fd' is a fd# open to ctty, if we have one
456 * _AND_ if we decided to act interactively */
457 int interactive_fd;
458 const char *PS1;
459 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000460#define G_interactive_fd (G.interactive_fd)
461#else
462#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000463#endif
464#if ENABLE_FEATURE_EDITING
465 line_input_t *line_input_state;
466#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000467 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000468 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000469#if ENABLE_HUSH_JOB
470 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000471 pid_t saved_tty_pgrp;
472 int last_jobid;
473 struct pipe *job_list;
474 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000475//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000476#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000477 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000478#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000479 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000480#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000481 smallint fake_mode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000482 /* These four support $?, $#, and $1 */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +0000483 smalluint last_return_code;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000484 /* is global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000485 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000486 /* how many non-NULL argv's we have. NB: $# + 1 */
487 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000488 char **global_argv;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000489#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000490 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000491 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000492#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000493 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000494 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000495 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000496 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000497 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000498// unsigned count_SIGCHLD;
499// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000500 /* which signals have non-DFL handler (even with no traps set)? */
501 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000502 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000503 sigset_t blocked_set;
504 sigset_t inherited_set;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000505 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
506#if ENABLE_FEATURE_SH_STANDALONE
507 struct nofork_save_area nofork_save;
508#endif
509#if ENABLE_HUSH_JOB
510 sigjmp_buf toplevel_jb;
511#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000512};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000513#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000514/* Not #defining name to G.name - this quickly gets unwieldy
515 * (too many defines). Also, I actually prefer to see when a variable
516 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000517#define INIT_G() do { \
518 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
519} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000520
521
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000522/* Function prototypes for builtins */
523static int builtin_cd(char **argv);
524static int builtin_echo(char **argv);
525static int builtin_eval(char **argv);
526static int builtin_exec(char **argv);
527static int builtin_exit(char **argv);
528static int builtin_export(char **argv);
529#if ENABLE_HUSH_JOB
530static int builtin_fg_bg(char **argv);
531static int builtin_jobs(char **argv);
532#endif
533#if ENABLE_HUSH_HELP
534static int builtin_help(char **argv);
535#endif
536static int builtin_pwd(char **argv);
537static int builtin_read(char **argv);
538static int builtin_test(char **argv);
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000539static int builtin_trap(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000540static int builtin_true(char **argv);
541static int builtin_set(char **argv);
542static int builtin_shift(char **argv);
543static int builtin_source(char **argv);
544static int builtin_umask(char **argv);
545static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000546static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000547#if ENABLE_HUSH_LOOPS
548static int builtin_break(char **argv);
549static int builtin_continue(char **argv);
550#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000551
552/* Table of built-in functions. They can be forked or not, depending on
553 * context: within pipes, they fork. As simple commands, they do not.
554 * When used in non-forking context, they can change global variables
555 * in the parent shell process. If forked, of course they cannot.
556 * For example, 'unset foo | whatever' will parse and run, but foo will
557 * still be set at the end. */
558struct built_in_command {
559 const char *cmd;
560 int (*function)(char **argv);
561#if ENABLE_HUSH_HELP
562 const char *descr;
563#define BLTIN(cmd, func, help) { cmd, func, help }
564#else
565#define BLTIN(cmd, func, help) { cmd, func }
566#endif
567};
568
569/* For now, echo and test are unconditionally enabled.
570 * Maybe make it configurable? */
571static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000572 BLTIN("." , builtin_source , "Run commands in a file"),
573 BLTIN(":" , builtin_true , "No-op"),
574 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000575#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000576 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000577#endif
578#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000579 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000580#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000581 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000582#if ENABLE_HUSH_LOOPS
583 BLTIN("continue", builtin_continue, "Start new loop iteration"),
584#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000585 BLTIN("echo" , builtin_echo , "Write to stdout"),
586 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
587 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
588 BLTIN("exit" , builtin_exit , "Exit"),
589 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000590#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000591 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000592#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000593#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000594 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000595#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000596#if ENABLE_HUSH_JOB
597 BLTIN("jobs" , builtin_jobs , "List active jobs"),
598#endif
599 BLTIN("pwd" , builtin_pwd , "Print current directory"),
600 BLTIN("read" , builtin_read , "Input environment variable"),
601// BLTIN("return" , builtin_return , "Return from a function"),
602 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
603 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
604 BLTIN("test" , builtin_test , "Test condition"),
605 BLTIN("trap" , builtin_trap , "Trap signals"),
606// BLTIN("ulimit" , builtin_return , "Control resource limits"),
607 BLTIN("umask" , builtin_umask , "Set file creation mask"),
608 BLTIN("unset" , builtin_unset , "Unset environment variable"),
609 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000610};
611
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000612
Mike Frysinger6379bb42009-03-28 18:55:03 +0000613static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000614{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000615 /* Was using fancy stuff:
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000616 * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000617 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000618 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
619#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerdfa9de72009-04-03 22:48:10 +0000620 if (G_interactive_fd)
621 fp = bb_error_msg;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000622#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000623 fp(msg ? "%s: %s" : notice, notice, msg);
624}
Mike Frysinger5a828452009-03-28 19:09:04 +0000625#if 1
626#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000627#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000628/* Debug -- trick gcc to expand __LINE__ and convert to string */
629#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
630#define _syntax(msg, line) __syntax(msg, line)
631#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000632#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000633
Denis Vlasenko552433b2009-04-04 19:29:21 +0000634
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000635static int glob_needed(const char *s)
636{
637 while (*s) {
638 if (*s == '\\')
639 s++;
640 if (*s == '*' || *s == '[' || *s == '?')
641 return 1;
642 s++;
643 }
644 return 0;
645}
646
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000647static int is_assignment(const char *s)
648{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000649 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000650 return 0;
651 s++;
652 while (isalnum(*s) || *s == '_')
653 s++;
654 return *s == '=';
655}
656
Denis Vlasenko55789c62008-06-18 16:30:42 +0000657/* Replace each \x with x in place, return ptr past NUL. */
658static char *unbackslash(char *src)
659{
660 char *dst = src;
661 while (1) {
662 if (*src == '\\')
663 src++;
664 if ((*dst++ = *src++) == '\0')
665 break;
666 }
667 return dst;
668}
669
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000670static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000671{
672 int i;
673 unsigned count1;
674 unsigned count2;
675 char **v;
676
677 v = strings;
678 count1 = 0;
679 if (v) {
680 while (*v) {
681 count1++;
682 v++;
683 }
684 }
685 count2 = 0;
686 v = add;
687 while (*v) {
688 count2++;
689 v++;
690 }
691 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
692 v[count1 + count2] = NULL;
693 i = count2;
694 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000695 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000696 return v;
697}
698
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000699static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000700{
701 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000702 v[0] = add;
703 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000704 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000705}
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000706
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000707static void putenv_all(char **strings)
708{
709 if (!strings)
710 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000711 while (*strings) {
712 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000713 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000714 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000715}
716
717static char **putenv_all_and_save_old(char **strings)
718{
719 char **old = NULL;
720 char **s = strings;
721
722 if (!strings)
723 return old;
724 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000725 char *v, *eq;
726
727 eq = strchr(*strings, '=');
728 if (eq) {
729 *eq = '\0';
730 v = getenv(*strings);
731 *eq = '=';
732 if (v) {
733 /* v points to VAL in VAR=VAL, go back to VAR */
734 v -= (eq - *strings) + 1;
735 old = add_string_to_strings(old, v);
736 }
737 }
738 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000739 }
740 putenv_all(s);
741 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000742}
743
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000744static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000745{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000746 char **v;
747
748 if (!strings)
749 return;
750
751 v = strings;
752 while (*v) {
753 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000754 debug_printf_env("unsetenv '%s'\n", *v);
755 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000756 }
757 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000758 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000759 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000760}
761
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000762static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000763{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000764 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000765}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000766
767
Denis Vlasenkod5762932009-03-31 11:22:57 +0000768/* Basic theory of signal handling in shell
769 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000770 * This does not describe what hush does, rather, it is current understanding
771 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000772 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
773 *
774 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
775 * is finished or backgrounded. It is the same in interactive and
776 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000777 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000778 * ^C or ^Z from keyboard seem to execute "at once" because it usually
779 * backgrounds (i.e. stops) or kills all members of currently running
780 * pipe.
781 *
782 * Wait builtin in interruptible by signals for which user trap is set
783 * or by SIGINT in interactive shell.
784 *
785 * Trap handlers will execute even within trap handlers. (right?)
786 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000787 * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000788 *
789 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000790 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000791 *
792 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000793 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000794 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000795 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
796 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000797 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000798 * Siganls which differ from SIG_DFL action
799 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000800 *
801 * SIGQUIT: ignore
802 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000803 * SIGHUP (interactive):
804 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000805 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000806 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
807 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000808 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000809 * of the command line, show prompt. NB: ^C does not send SIGINT
810 * to interactive shell while shell is waiting for a pipe,
811 * since shell is bg'ed (is not in foreground process group).
812 * (check/expand this)
813 * Example 1: this waits 5 sec, but does not execute ls:
814 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
815 * Example 2: this does not wait and does not execute ls:
816 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
817 * Example 3: this does not wait 5 sec, but executes ls:
818 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000819 *
820 * (What happens to signals which are IGN on shell start?)
821 * (What happens with signal mask on shell start?)
822 *
823 * Implementation in hush
824 * ======================
825 * We use in-kernel pending signal mask to determine which signals were sent.
826 * We block all signals which we don't want to take action immediately,
827 * i.e. we block all signals which need to have special handling as described
828 * above, and all signals which have traps set.
829 * After each pipe execution, we extract any pending signals via sigtimedwait()
830 * and act on them.
831 *
832 * unsigned non_DFL_mask: a mask of such "special" signals
833 * sigset_t blocked_set: current blocked signal set
834 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000835 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000836 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000837 * "trap 'cmd' SIGxxx":
838 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000839 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000840 * nothing for {} child shell (say, "true | { true; true; } | true")
841 * unset all traps if () shell. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000842 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000843 * POSIX says pending signal mask is cleared in child - no need to clear it.
844 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000845 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000846 * Note: as a result, we do not use signal handlers much. The only uses
847 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
848 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000849 *
850 * TODO: check/fix wait builtin to be interruptible.
851 */
852
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000853//static void SIGCHLD_handler(int sig UNUSED_PARAM)
854//{
855// G.count_SIGCHLD++;
856//}
857
Denis Vlasenkod5762932009-03-31 11:22:57 +0000858/* called once at shell init */
859static void init_signal_mask(void)
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000860{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000861 unsigned sig;
862 unsigned mask = (1 << SIGQUIT);
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000863 if (G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +0000864 mask = 0
865 | (1 << SIGQUIT)
866 | (1 << SIGTERM)
867 | (1 << SIGHUP)
868#if ENABLE_HUSH_JOB
869 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
870#endif
871 | (1 << SIGINT)
872 ;
873 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000874 G.non_DFL_mask = mask;
875
Denis Vlasenkod5762932009-03-31 11:22:57 +0000876 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
877 sig = 0;
878 while (mask) {
879 if (mask & 1)
880 sigaddset(&G.blocked_set, sig);
881 mask >>= 1;
882 sig++;
883 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000884 sigdelset(&G.blocked_set, SIGCHLD);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000885 sigprocmask(SIG_SETMASK, &G.blocked_set, &G.inherited_set);
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000886}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000887
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000888static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000889{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000890 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000891 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000892 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000893
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000894 if (sig)
895 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000896 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000897 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000898 if (sig <= 0)
899 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000900 jump_in:
901 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000902 if (G.traps && G.traps[sig]) {
903 if (G.traps[sig][0]) {
904 /* We have user-defined handler */
905 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
906 save_rcode = G.last_return_code;
907 builtin_eval(argv);
908 free(argv[1]);
909 G.last_return_code = save_rcode;
910 } /* else: "" trap, ignoring signal */
911 continue;
912 }
913 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000914 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000915// case SIGCHLD:
916// G.count_SIGCHLD++;
917// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000918 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000919 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000920 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000921 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000922//TODO
923// case SIGHUP: ...
924// break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000925 default: /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000926 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000927 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000928 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000929 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000930}
931
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000932#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000933
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000934/* Restores tty foreground process group, and exits.
935 * May be called as signal handler for fatal signal
936 * (will faithfully resend signal to itself, producing correct exit state)
937 * or called directly with -EXITCODE.
938 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000939static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000940static void sigexit(int sig)
941{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000942 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000943 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000944
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000945 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000946 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000947 if (G_interactive_fd && getpid() == G.root_pid)
948 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000949
950 /* Not a signal, just exit */
951 if (sig <= 0)
952 _exit(- sig);
953
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000954 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000955}
956
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000957/* helper */
958static void maybe_set_sighandler(int sig)
959{
960 void (*handler)(int);
961 /* non_DFL_mask'ed signals are, well, masked,
962 * no need to set handler for them.
963 */
964 if (!((G.non_DFL_mask >> sig) & 1)) {
965 handler = signal(sig, sigexit);
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000966 if (handler == SIG_IGN) /* oops... restore back to IGN! */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000967 signal(sig, handler);
968 }
969}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000970/* Used only to set handler to restore pgrp on exit */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000971static void set_fatal_signals_to_sigexit(void)
972{
973 if (HUSH_DEBUG) {
974 maybe_set_sighandler(SIGILL );
975 maybe_set_sighandler(SIGFPE );
976 maybe_set_sighandler(SIGBUS );
977 maybe_set_sighandler(SIGSEGV);
978 maybe_set_sighandler(SIGTRAP);
979 } /* else: hush is perfect. what SEGV? */
980
981 maybe_set_sighandler(SIGABRT);
982
983 /* bash 3.2 seems to handle these just like 'fatal' ones */
984 maybe_set_sighandler(SIGPIPE);
985 maybe_set_sighandler(SIGALRM);
986 maybe_set_sighandler(SIGHUP );
987
988 /* if we aren't interactive... but in this case
989 * we never want to restore pgrp on exit, and this fn is not called */
990 /*maybe_set_sighandler(SIGTERM);*/
991 /*maybe_set_sighandler(SIGINT );*/
992}
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000993
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000994#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000995
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000996#define set_fatal_signals_to_sigexit(handler) ((void)0)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000997
Denis Vlasenkoe0755e52009-04-03 21:16:45 +0000998#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000999
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001000/* Restores tty foreground process group, and exits. */
1001static void hush_exit(int exitcode) NORETURN;
1002static void hush_exit(int exitcode)
1003{
Denis Vlasenkod5762932009-03-31 11:22:57 +00001004 if (G.traps && G.traps[0] && G.traps[0][0]) {
1005 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
1006 builtin_eval(argv);
1007 free(argv[1]);
1008 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001009
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001010#if ENABLE_HUSH_JOB
1011 fflush(NULL); /* flush all streams */
1012 sigexit(- (exitcode & 0xff));
1013#else
1014 exit(exitcode);
1015#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001016}
1017
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001018
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001019static const char *set_cwd(void)
1020{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001021 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1022 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001023 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001024 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001025 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1026 if (!G.cwd)
1027 G.cwd = bb_msg_unknown;
1028 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001029}
1030
Denis Vlasenko83506862007-11-23 13:11:42 +00001031
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001032/* Get/check local shell variables */
1033static struct variable *get_local_var(const char *name)
1034{
1035 struct variable *cur;
1036 int len;
1037
1038 if (!name)
1039 return NULL;
1040 len = strlen(name);
1041 for (cur = G.top_var; cur; cur = cur->next) {
1042 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1043 return cur;
1044 }
1045 return NULL;
1046}
1047
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001048static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001049{
1050 struct variable *var = get_local_var(src);
1051 if (var)
1052 return strchr(var->varstr, '=') + 1;
1053 return NULL;
1054}
1055
1056/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001057 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001058 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001059 * 0: do not export
1060 * 1: export
1061 * -1: if NAME is set, leave export status alone
1062 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001063 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001064 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001065#if BB_MMU
1066#define set_local_var(str, flg_export, flg_read_only) \
1067 set_local_var(str, flg_export)
1068#endif
1069static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001070{
1071 struct variable *cur;
1072 char *value;
1073 int name_len;
1074
1075 value = strchr(str, '=');
1076 if (!value) { /* not expected to ever happen? */
1077 free(str);
1078 return -1;
1079 }
1080
1081 name_len = value - str + 1; /* including '=' */
1082 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1083 while (1) {
1084 if (strncmp(cur->varstr, str, name_len) != 0) {
1085 if (!cur->next) {
1086 /* Bail out. Note that now cur points
1087 * to last var in linked list */
1088 break;
1089 }
1090 cur = cur->next;
1091 continue;
1092 }
1093 /* We found an existing var with this name */
1094 *value = '\0';
1095 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001096#if !BB_MMU
1097 if (!flg_read_only)
1098#endif
1099 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001100 free(str);
1101 return -1;
1102 }
1103 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1104 unsetenv(str); /* just in case */
1105 *value = '=';
1106 if (strcmp(cur->varstr, str) == 0) {
1107 free_and_exp:
1108 free(str);
1109 goto exp;
1110 }
1111 if (cur->max_len >= strlen(str)) {
1112 /* This one is from startup env, reuse space */
1113 strcpy(cur->varstr, str);
1114 goto free_and_exp;
1115 }
1116 /* max_len == 0 signifies "malloced" var, which we can
1117 * (and has to) free */
1118 if (!cur->max_len)
1119 free(cur->varstr);
1120 cur->max_len = 0;
1121 goto set_str_and_exp;
1122 }
1123
1124 /* Not found - create next variable struct */
1125 cur->next = xzalloc(sizeof(*cur));
1126 cur = cur->next;
1127
1128 set_str_and_exp:
1129 cur->varstr = str;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001130 cur->flg_read_only = flg_read_only;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001131 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001132 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001133 cur->flg_export = 1;
1134 if (cur->flg_export) {
1135 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1136 return putenv(cur->varstr);
1137 }
1138 return 0;
1139}
1140
Mike Frysingerd690f682009-03-30 06:50:54 +00001141static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001142{
1143 struct variable *cur;
1144 struct variable *prev = prev; /* for gcc */
1145 int name_len;
1146
1147 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001148 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001149 name_len = strlen(name);
1150 cur = G.top_var;
1151 while (cur) {
1152 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1153 if (cur->flg_read_only) {
1154 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001155 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001156 }
1157 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1158 * is ro, and we cannot reach this code on the 1st pass */
1159 prev->next = cur->next;
1160 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1161 bb_unsetenv(cur->varstr);
1162 if (!cur->max_len)
1163 free(cur->varstr);
1164 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001165 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001166 }
1167 prev = cur;
1168 cur = cur->next;
1169 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001170 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001171}
1172
Mike Frysinger98c52642009-04-02 10:02:37 +00001173#if ENABLE_SH_MATH_SUPPORT
1174#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1175#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1176static char *endofname(const char *name)
1177{
1178 char *p;
1179
1180 p = (char *) name;
1181 if (!is_name(*p))
1182 return p;
1183 while (*++p) {
1184 if (!is_in_name(*p))
1185 break;
1186 }
1187 return p;
1188}
1189
1190static void arith_set_local_var(const char *name, const char *val, int flags)
1191{
1192 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001193 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001194 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001195}
1196#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001197
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001198
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001199/*
1200 * in_str support
1201 */
1202static int static_get(struct in_str *i)
1203{
1204 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001205 if (ch != '\0')
1206 return ch;
1207 i->p--;
1208 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001209}
1210
1211static int static_peek(struct in_str *i)
1212{
1213 return *i->p;
1214}
1215
1216#if ENABLE_HUSH_INTERACTIVE
1217
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001218static void cmdedit_set_initial_prompt(void)
1219{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001220 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1221 G.PS1 = getenv("PS1");
1222 if (G.PS1 == NULL)
1223 G.PS1 = "\\w \\$ ";
1224 } else
1225 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001226}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001227
1228static const char* setup_prompt_string(int promptmode)
1229{
1230 const char *prompt_str;
1231 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001232 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1233 /* Set up the prompt */
1234 if (promptmode == 0) { /* PS1 */
1235 free((char*)G.PS1);
1236 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1237 prompt_str = G.PS1;
1238 } else
1239 prompt_str = G.PS2;
1240 } else
1241 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001242 debug_printf("result '%s'\n", prompt_str);
1243 return prompt_str;
1244}
1245
1246static void get_user_input(struct in_str *i)
1247{
1248 int r;
1249 const char *prompt_str;
1250
1251 prompt_str = setup_prompt_string(i->promptmode);
1252#if ENABLE_FEATURE_EDITING
1253 /* Enable command line editing only while a command line
1254 * is actually being read */
1255 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001256 G.flag_SIGINT = 0;
1257 /* buglet: SIGINT will not make new prompt to appear _at once_,
1258 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001259 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001260 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001261 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001262 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001263 i->eof_flag = (r < 0);
1264 if (i->eof_flag) { /* EOF/error detected */
1265 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1266 G.user_input_buf[1] = '\0';
1267 }
1268#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001269 do {
1270 G.flag_SIGINT = 0;
1271 fputs(prompt_str, stdout);
1272 fflush(stdout);
1273 G.user_input_buf[0] = r = fgetc(i->file);
1274 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001275//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001276 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001277 i->eof_flag = (r == EOF);
1278#endif
1279 i->p = G.user_input_buf;
1280}
1281
1282#endif /* INTERACTIVE */
1283
1284/* This is the magic location that prints prompts
1285 * and gets data back from the user */
1286static int file_get(struct in_str *i)
1287{
1288 int ch;
1289
1290 /* If there is data waiting, eat it up */
1291 if (i->p && *i->p) {
1292#if ENABLE_HUSH_INTERACTIVE
1293 take_cached:
1294#endif
1295 ch = *i->p++;
1296 if (i->eof_flag && !*i->p)
1297 ch = EOF;
1298 } else {
1299 /* need to double check i->file because we might be doing something
1300 * more complicated by now, like sourcing or substituting. */
1301#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001302 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001303 do {
1304 get_user_input(i);
1305 } while (!*i->p); /* need non-empty line */
1306 i->promptmode = 1; /* PS2 */
1307 i->promptme = 0;
1308 goto take_cached;
1309 }
1310#endif
1311 ch = fgetc(i->file);
1312 }
1313 debug_printf("file_get: got a '%c' %d\n", ch, ch);
1314#if ENABLE_HUSH_INTERACTIVE
1315 if (ch == '\n')
1316 i->promptme = 1;
1317#endif
1318 return ch;
1319}
1320
1321/* All the callers guarantee this routine will never be
1322 * used right after a newline, so prompting is not needed.
1323 */
1324static int file_peek(struct in_str *i)
1325{
1326 int ch;
1327 if (i->p && *i->p) {
1328 if (i->eof_flag && !i->p[1])
1329 return EOF;
1330 return *i->p;
1331 }
1332 ch = fgetc(i->file);
1333 i->eof_flag = (ch == EOF);
1334 i->peek_buf[0] = ch;
1335 i->peek_buf[1] = '\0';
1336 i->p = i->peek_buf;
1337 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
1338 return ch;
1339}
1340
1341static void setup_file_in_str(struct in_str *i, FILE *f)
1342{
1343 i->peek = file_peek;
1344 i->get = file_get;
1345#if ENABLE_HUSH_INTERACTIVE
1346 i->promptme = 1;
1347 i->promptmode = 0; /* PS1 */
1348#endif
1349 i->file = f;
1350 i->p = NULL;
1351}
1352
1353static void setup_string_in_str(struct in_str *i, const char *s)
1354{
1355 i->peek = static_peek;
1356 i->get = static_get;
1357#if ENABLE_HUSH_INTERACTIVE
1358 i->promptme = 1;
1359 i->promptmode = 0; /* PS1 */
1360#endif
1361 i->p = s;
1362 i->eof_flag = 0;
1363}
1364
1365
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001366/*
1367 * o_string support
1368 */
1369#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001370
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001371static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001372{
1373 o->length = 0;
1374 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001375 if (o->data)
1376 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001377}
1378
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001379static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001380{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001381 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001382 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001383}
1384
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001385static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1386{
1387 free(o->data);
1388}
1389
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001390static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001391{
1392 if (o->length + len > o->maxlen) {
1393 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1394 o->data = xrealloc(o->data, 1 + o->maxlen);
1395 }
1396}
1397
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001398static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001399{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001400 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1401 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001402 o->data[o->length] = ch;
1403 o->length++;
1404 o->data[o->length] = '\0';
1405}
1406
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001407static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001408{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001409 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001410 memcpy(&o->data[o->length], str, len);
1411 o->length += len;
1412 o->data[o->length] = '\0';
1413}
1414
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001415#if !BB_MMU
1416static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001417{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001418 o_addblock(o, str, strlen(str));
1419}
1420#endif
1421
1422static void o_addstr_with_NUL(o_string *o, const char *str)
1423{
1424 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001425}
1426
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001427static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001428{
1429 while (len) {
1430 o_addchr(o, *str);
1431 if (*str++ == '\\'
1432 && (*str != '*' && *str != '?' && *str != '[')
1433 ) {
1434 o_addchr(o, '\\');
1435 }
1436 len--;
1437 }
1438}
1439
Eric Andersen25f27032001-04-26 23:22:31 +00001440/* My analysis of quoting semantics tells me that state information
1441 * is associated with a destination, not a source.
1442 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001443static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001444{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001445 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001446 char *found = strchr("*?[\\", ch);
1447 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001448 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001449 o_grow_by(o, sz);
1450 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001451 o->data[o->length] = '\\';
1452 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001453 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001454 o->data[o->length] = ch;
1455 o->length++;
1456 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001457}
1458
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001459static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001460{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001461 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001462 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001463 sz++;
1464 o->data[o->length] = '\\';
1465 o->length++;
1466 }
1467 o_grow_by(o, sz);
1468 o->data[o->length] = ch;
1469 o->length++;
1470 o->data[o->length] = '\0';
1471}
1472
1473static void o_addQstr(o_string *o, const char *str, int len)
1474{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001475 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001476 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001477 return;
1478 }
1479 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001480 char ch;
1481 int sz;
1482 int ordinary_cnt = strcspn(str, "*?[\\");
1483 if (ordinary_cnt > len) /* paranoia */
1484 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001485 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001486 if (ordinary_cnt == len)
1487 return;
1488 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001489 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001490
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001491 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001492 sz = 1;
1493 if (ch) { /* it is necessarily one of "*?[\\" */
1494 sz++;
1495 o->data[o->length] = '\\';
1496 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001497 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001498 o_grow_by(o, sz);
1499 o->data[o->length] = ch;
1500 o->length++;
1501 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001502 }
1503}
1504
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001505/* A special kind of o_string for $VAR and `cmd` expansion.
1506 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001507 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001508 * list[i] contains an INDEX (int!) into this string data.
1509 * It means that if list[] needs to grow, data needs to be moved higher up
1510 * but list[i]'s need not be modified.
1511 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001512 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001513 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1514 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001515#if DEBUG_EXPAND || DEBUG_GLOB
1516static void debug_print_list(const char *prefix, o_string *o, int n)
1517{
1518 char **list = (char**)o->data;
1519 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1520 int i = 0;
1521 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1522 prefix, list, n, string_start, o->length, o->maxlen);
1523 while (i < n) {
1524 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1525 o->data + (int)list[i] + string_start,
1526 o->data + (int)list[i] + string_start);
1527 i++;
1528 }
1529 if (n) {
1530 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001531 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001532 }
1533}
1534#else
1535#define debug_print_list(prefix, o, n) ((void)0)
1536#endif
1537
1538/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1539 * in list[n] so that it points past last stored byte so far.
1540 * It returns n+1. */
1541static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001542{
1543 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001544 int string_start;
1545 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001546
1547 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001548 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1549 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001550 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001551 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001552 /* list[n] points to string_start, make space for 16 more pointers */
1553 o->maxlen += 0x10 * sizeof(list[0]);
1554 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001555 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001556 memmove(list + n + 0x10, list + n, string_len);
1557 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001558 } else {
1559 debug_printf_list("list[%d]=%d string_start=%d\n",
1560 n, string_len, string_start);
1561 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001562 } else {
1563 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001564 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1565 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001566 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1567 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001568 o->has_empty_slot = 0;
1569 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001570 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001571 return n + 1;
1572}
1573
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001574/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001575static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001576{
1577 char **list = (char**)o->data;
1578 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1579
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001580 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001581}
1582
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001583/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001584 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001585static int o_glob(o_string *o, int n)
1586{
1587 glob_t globdata;
1588 int gr;
1589 char *pattern;
1590
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001591 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001592 if (!o->data)
1593 return o_save_ptr_helper(o, n);
1594 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001595 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001596 if (!glob_needed(pattern)) {
1597 literal:
1598 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001599 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001600 return o_save_ptr_helper(o, n);
1601 }
1602
1603 memset(&globdata, 0, sizeof(globdata));
1604 gr = glob(pattern, 0, NULL, &globdata);
1605 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1606 if (gr == GLOB_NOSPACE)
1607 bb_error_msg_and_die("out of memory during glob");
1608 if (gr == GLOB_NOMATCH) {
1609 globfree(&globdata);
1610 goto literal;
1611 }
1612 if (gr != 0) { /* GLOB_ABORTED ? */
1613//TODO: testcase for bad glob pattern behavior
1614 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1615 }
1616 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1617 char **argv = globdata.gl_pathv;
1618 o->length = pattern - o->data; /* "forget" pattern */
1619 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001620 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001621 n = o_save_ptr_helper(o, n);
1622 argv++;
1623 if (!*argv)
1624 break;
1625 }
1626 }
1627 globfree(&globdata);
1628 if (DEBUG_GLOB)
1629 debug_print_list("o_glob returning", o, n);
1630 return n;
1631}
1632
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001633/* If o->o_glob == 1, glob the string so far remembered.
1634 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001635static int o_save_ptr(o_string *o, int n)
1636{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001637 if (o->o_glob) { /* if globbing is requested */
1638 /* If o->has_empty_slot, list[n] was already globbed
1639 * (if it was requested back then when it was filled)
1640 * so don't do that again! */
1641 if (!o->has_empty_slot)
1642 return o_glob(o, n); /* o_save_ptr_helper is inside */
1643 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001644 return o_save_ptr_helper(o, n);
1645}
1646
1647/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001648static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001649{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001650 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001651 int string_start;
1652
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001653 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1654 if (DEBUG_EXPAND)
1655 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001656 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001657 list = (char**)o->data;
1658 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1659 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001660 while (n) {
1661 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001662 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001663 }
1664 return list;
1665}
1666
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001667
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001668/* Expansion can recurse */
1669#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001670static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001671#endif
1672static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001673#if BB_MMU
1674#define parse_stream_dquoted(ctx, dest, input, dquote_end) \
1675 parse_stream_dquoted(dest, input, dquote_end)
1676#endif
1677static int parse_stream_dquoted(struct parse_context *ctx,
1678 o_string *dest,
1679 struct in_str *input,
1680 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001681
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001682/* expand_strvec_to_strvec() takes a list of strings, expands
1683 * all variable references within and returns a pointer to
1684 * a list of expanded strings, possibly with larger number
1685 * of strings. (Think VAR="a b"; echo $VAR).
1686 * This new list is allocated as a single malloc block.
1687 * NULL-terminated list of char* pointers is at the beginning of it,
1688 * followed by strings themself.
1689 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001690
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001691/* Store given string, finalizing the word and starting new one whenever
1692 * we encounter IFS char(s). This is used for expanding variable values.
1693 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1694static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001695{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001696 while (1) {
1697 int word_len = strcspn(str, G.ifs);
1698 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001699 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001700 o_addQstr(output, str, word_len);
1701 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001702 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001703 str += word_len;
1704 }
1705 if (!*str) /* EOL - do not finalize word */
1706 break;
1707 o_addchr(output, '\0');
1708 debug_print_list("expand_on_ifs", output, n);
1709 n = o_save_ptr(output, n);
1710 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001711 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001712 debug_print_list("expand_on_ifs[1]", output, n);
1713 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001714}
1715
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001716/* Expand all variable references in given string, adding words to list[]
1717 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1718 * to be filled). This routine is extremely tricky: has to deal with
1719 * variables/parameters with whitespace, $* and $@, and constructs like
1720 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1721static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001722{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001723 /* or_mask is either 0 (normal case) or 0x80
1724 * (expansion of right-hand side of assignment == 1-element expand.
1725 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001726
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001727 char first_ch, ored_ch;
1728 int i;
1729 const char *val;
1730 char *p;
1731
1732 ored_ch = 0;
1733
1734 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1735 debug_print_list("expand_vars_to_list", output, n);
1736 n = o_save_ptr(output, n);
1737 debug_print_list("expand_vars_to_list[0]", output, n);
1738
1739 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1740#if ENABLE_HUSH_TICK
1741 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001742#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001743#if ENABLE_SH_MATH_SUPPORT
1744 char arith_buf[sizeof(arith_t)*3 + 2];
1745#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001746 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001747 debug_print_list("expand_vars_to_list[1]", output, n);
1748 arg = ++p;
1749 p = strchr(p, SPECIAL_VAR_SYMBOL);
1750
1751 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1752 /* "$@" is special. Even if quoted, it can still
1753 * expand to nothing (not even an empty string) */
1754 if ((first_ch & 0x7f) != '@')
1755 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001756
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001757 val = NULL;
1758 switch (first_ch & 0x7f) {
1759 /* Highest bit in first_ch indicates that var is double-quoted */
1760 case '$': /* pid */
1761 val = utoa(G.root_pid);
1762 break;
1763 case '!': /* bg pid */
1764 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1765 break;
1766 case '?': /* exitcode */
1767 val = utoa(G.last_return_code);
1768 break;
1769 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001770 if (arg[1] != SPECIAL_VAR_SYMBOL)
1771 /* actually, it's a ${#var} */
1772 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001773 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1774 break;
1775 case '*':
1776 case '@':
1777 i = 1;
1778 if (!G.global_argv[i])
1779 break;
1780 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1781 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001782 smallint sv = output->o_escape;
1783 /* unquoted var's contents should be globbed, so don't escape */
1784 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001785 while (G.global_argv[i]) {
1786 n = expand_on_ifs(output, n, G.global_argv[i]);
1787 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1788 if (G.global_argv[i++][0] && G.global_argv[i]) {
1789 /* this argv[] is not empty and not last:
1790 * put terminating NUL, start new word */
1791 o_addchr(output, '\0');
1792 debug_print_list("expand_vars_to_list[2]", output, n);
1793 n = o_save_ptr(output, n);
1794 debug_print_list("expand_vars_to_list[3]", output, n);
1795 }
1796 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001797 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001798 } else
1799 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1800 * and in this case should treat it like '$*' - see 'else...' below */
1801 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1802 while (1) {
1803 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1804 if (++i >= G.global_argc)
1805 break;
1806 o_addchr(output, '\0');
1807 debug_print_list("expand_vars_to_list[4]", output, n);
1808 n = o_save_ptr(output, n);
1809 }
1810 } else { /* quoted $*: add as one word */
1811 while (1) {
1812 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1813 if (!G.global_argv[++i])
1814 break;
1815 if (G.ifs[0])
1816 o_addchr(output, G.ifs[0]);
1817 }
1818 }
1819 break;
1820 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1821 /* "Empty variable", used to make "" etc to not disappear */
1822 arg++;
1823 ored_ch = 0x80;
1824 break;
1825#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001826 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001827 *p = '\0';
1828 arg++;
1829//TODO: can we just stuff it into "output" directly?
1830 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001831 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001832 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1833 val = subst_result.data;
1834 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001835#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001836#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001837 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001838 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001839 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001840 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001841 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001842
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001843 arg++; /* skip '+' */
1844 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001845 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001846
1847 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
1848 exp_str = arg;
1849 while (1) {
1850 unsigned char c = *exp_str++;
1851 if (c == '\0') {
1852 exp_str = NULL;
1853 goto skip_expand;
1854 }
1855 if (isdigit(c))
1856 continue;
1857 if (strchr(" \t+-*/%_", c) != NULL)
1858 continue;
1859 c |= 0x20; /* tolower */
1860 if (c >= 'a' && c <= 'z')
1861 continue;
1862 break;
1863 }
1864 /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */
1865 {
1866 struct in_str input;
1867 o_string dest = NULL_O_STRING;
1868
1869 setup_string_in_str(&input, arg);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001870 parse_stream_dquoted(NULL, &dest, &input, EOF);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001871 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1872 exp_str = expand_string_to_string(dest.data);
1873 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1874 o_free(&dest);
1875 }
1876 skip_expand:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001877 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001878 hooks.setvar = arith_set_local_var;
1879 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001880 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1881 free(exp_str);
1882
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001883 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001884 switch (errcode) {
1885 case -3: maybe_die("arith", "exponent less than 0"); break;
1886 case -2: maybe_die("arith", "divide by zero"); break;
1887 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001888 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001889 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001890 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001891 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001892 sprintf(arith_buf, arith_t_fmt, res);
1893 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001894 break;
1895 }
1896#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001897 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001898 case_default: {
1899 bool exp_len = false, exp_null = false;
1900 char *var = arg, exp_save, exp_op, *exp_word;
1901 size_t exp_off = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001902 *p = '\0';
1903 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001904
1905 /* prepare for expansions */
1906 if (var[0] == '#') {
1907 /* handle length expansion ${#var} */
1908 exp_len = true;
1909 ++var;
1910 } else {
1911 /* maybe handle parameter expansion */
1912 exp_off = strcspn(var, ":-=+?");
1913 if (!var[exp_off])
1914 exp_off = 0;
1915 if (exp_off) {
1916 exp_save = var[exp_off];
1917 exp_null = exp_save == ':';
1918 exp_word = var + exp_off;
1919 if (exp_null) ++exp_word;
1920 exp_op = *exp_word++;
1921 var[exp_off] = '\0';
1922 }
1923 }
1924
1925 /* lookup the variable in question */
1926 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001927 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001928 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001929 if (i < G.global_argc)
1930 val = G.global_argv[i];
1931 /* else val remains NULL: $N with too big N */
1932 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001933 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001934
1935 /* handle any expansions */
1936 if (exp_len) {
1937 debug_printf_expand("expand: length of '%s' = ", val);
1938 val = utoa(val ? strlen(val) : 0);
1939 debug_printf_expand("%s\n", val);
1940 } else if (exp_off) {
1941 /* we need to do an expansion */
1942 int exp_test = (!val || (exp_null && !val[0]));
1943 if (exp_op == '+')
1944 exp_test = !exp_test;
1945 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1946 exp_null ? "true" : "false", exp_test);
1947 if (exp_test) {
1948 if (exp_op == '?')
1949 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1950 else
1951 val = exp_word;
1952
1953 if (exp_op == '=') {
1954 if (isdigit(var[0]) || var[0] == '#') {
1955 maybe_die(var, "special vars cannot assign in this way");
1956 val = NULL;
1957 } else {
1958 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1959 sprintf(new_var, "%s=%s", var, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001960 set_local_var(new_var, -1, 0);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001961 }
1962 }
1963 }
1964 var[exp_off] = exp_save;
1965 }
1966
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001967 arg[0] = first_ch;
1968#if ENABLE_HUSH_TICK
1969 store_val:
1970#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001971 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001972 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001973 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001974 /* unquoted var's contents should be globbed, so don't escape */
1975 smallint sv = output->o_escape;
1976 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001977 n = expand_on_ifs(output, n, val);
1978 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001979 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001980 }
1981 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001982 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001983 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001984 } /* default: */
1985 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001986 if (val) {
1987 o_addQstr(output, val, strlen(val));
1988 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001989 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001990 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001991 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992
1993#if ENABLE_HUSH_TICK
1994 o_free(&subst_result);
1995#endif
1996 arg = ++p;
1997 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1998
1999 if (arg[0]) {
2000 debug_print_list("expand_vars_to_list[a]", output, n);
2001 /* this part is literal, and it was already pre-quoted
2002 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002003 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004 debug_print_list("expand_vars_to_list[b]", output, n);
2005 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2006 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2007 ) {
2008 n--;
2009 /* allow to reuse list[n] later without re-growth */
2010 output->has_empty_slot = 1;
2011 } else {
2012 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002013 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002014 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002015}
2016
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002017static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002018{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002019 int n;
2020 char **list;
2021 char **v;
2022 o_string output = NULL_O_STRING;
2023
2024 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002025 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002026 /* (unquoted $var will temporarily switch it off) */
2027 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002028 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002029
2030 n = 0;
2031 v = argv;
2032 while (*v) {
2033 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2034 v++;
2035 }
2036 debug_print_list("expand_variables", &output, n);
2037
2038 /* output.data (malloced in one block) gets returned in "list" */
2039 list = o_finalize_list(&output, n);
2040 debug_print_strings("expand_variables[1]", list);
2041 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002042}
2043
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002044static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002045{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002046 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002047}
2048
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002049/* Used for expansion of right hand of assignments */
2050/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2051 * "v=/bin/c*" */
2052static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002053{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002054 char *argv[2], **list;
2055
2056 argv[0] = (char*)str;
2057 argv[1] = NULL;
2058 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2059 if (HUSH_DEBUG)
2060 if (!list[0] || list[1])
2061 bb_error_msg_and_die("BUG in varexp2");
2062 /* actually, just move string 2*sizeof(char*) bytes back */
2063 overlapping_strcpy((char*)list, list[0]);
2064 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2065 return (char*)list;
2066}
2067
2068/* Used for "eval" builtin */
2069static char* expand_strvec_to_string(char **argv)
2070{
2071 char **list;
2072
2073 list = expand_variables(argv, 0x80);
2074 /* Convert all NULs to spaces */
2075 if (list[0]) {
2076 int n = 1;
2077 while (list[n]) {
2078 if (HUSH_DEBUG)
2079 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2080 bb_error_msg_and_die("BUG in varexp3");
2081 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2082 n++;
2083 }
2084 }
2085 overlapping_strcpy((char*)list, list[0]);
2086 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2087 return (char*)list;
2088}
2089
2090static char **expand_assignments(char **argv, int count)
2091{
2092 int i;
2093 char **p = NULL;
2094 /* Expand assignments into one string each */
2095 for (i = 0; i < count; i++) {
2096 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2097 }
2098 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002099}
2100
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002101
Eric Andersen25f27032001-04-26 23:22:31 +00002102/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2103 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002104static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002105{
2106 int openfd, mode;
2107 struct redir_struct *redir;
2108
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002109 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002110 if (redir->dup == -1 && redir->rd_filename == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002111 /* something went wrong in the parse. Pretend it didn't happen */
2112 continue;
2113 }
Eric Andersen25f27032001-04-26 23:22:31 +00002114 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002115 char *p;
Denis Vlasenko55789c62008-06-18 16:30:42 +00002116 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002117//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002118 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002119 openfd = open_or_warn(p, mode);
2120 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002121 if (openfd < 0) {
2122 /* this could get lost if stderr has been redirected, but
2123 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002124 return 1;
2125 }
2126 } else {
2127 openfd = redir->dup;
2128 }
2129
2130 if (openfd != redir->fd) {
2131 if (squirrel && redir->fd < 3) {
2132 squirrel[redir->fd] = dup(redir->fd);
2133 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002134 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002135 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00002136 } else {
2137 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00002138 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002139 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002140 }
Eric Andersen25f27032001-04-26 23:22:31 +00002141 }
2142 }
2143 return 0;
2144}
2145
2146static void restore_redirects(int squirrel[])
2147{
2148 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002149 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002150 fd = squirrel[i];
2151 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002152 /* We simply die on error */
2153 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002154 }
2155 }
2156}
2157
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002158
2159#if !defined(DEBUG_CLEAN)
2160#define free_pipe_list(head, indent) free_pipe_list(head)
2161#define free_pipe(pi, indent) free_pipe(pi)
2162#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002163static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002164
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002165/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002166static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002167{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002168 char **p;
2169 struct command *command;
2170 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002171 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002172
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002173 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002174 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002175 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2176 for (i = 0; i < pi->num_cmds; i++) {
2177 command = &pi->cmds[i];
2178 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2179 if (command->argv) {
2180 for (a = 0, p = command->argv; *p; a++, p++) {
2181 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2182 }
2183 free_strings(command->argv);
2184 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002185 }
2186 /* not "else if": on syntax error, we may have both! */
2187 if (command->group) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002188 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002189 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002190 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002191 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002192 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002193#if !BB_MMU
2194 free(command->group_as_string);
2195 command->group_as_string = NULL;
2196#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002197 for (r = command->redirects; r; r = rnext) {
2198 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
2199 if (r->dup == -1) {
2200 /* guard against the case >$FOO, where foo is unset or blank */
2201 if (r->rd_filename) {
2202 debug_printf_clean(" %s\n", r->rd_filename);
2203 free(r->rd_filename);
2204 r->rd_filename = NULL;
2205 }
2206 } else {
2207 debug_printf_clean("&%d\n", r->dup);
2208 }
2209 rnext = r->next;
2210 free(r);
2211 }
2212 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002213 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002214 free(pi->cmds); /* children are an array, they get freed all at once */
2215 pi->cmds = NULL;
2216#if ENABLE_HUSH_JOB
2217 free(pi->cmdtext);
2218 pi->cmdtext = NULL;
2219#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002220}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002221
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002222static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002223{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002224 struct pipe *pi, *next;
2225
2226 for (pi = head; pi; pi = next) {
2227#if HAS_KEYWORDS
2228 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
2229#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002230 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002231 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2232 next = pi->next;
2233 /*pi->next = NULL;*/
2234 free(pi);
2235 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002236}
2237
2238
2239#if !BB_MMU
2240typedef struct nommu_save_t {
2241 char **new_env;
2242 char **old_env;
2243 char **argv;
2244} nommu_save_t;
2245#else
2246#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2247 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2248#define pseudo_exec(nommu_save, command, argv_expanded) \
2249 pseudo_exec(command, argv_expanded)
2250#endif
2251
Denis Vlasenko05743d72008-02-10 12:10:08 +00002252/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00002253 * Never returns.
2254 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002255 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002256 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002257static void pseudo_exec_argv(nommu_save_t *nommu_save,
2258 char **argv, int assignment_cnt,
2259 char **argv_expanded) NORETURN;
2260static void pseudo_exec_argv(nommu_save_t *nommu_save,
2261 char **argv, int assignment_cnt,
2262 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002263{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002264 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002265
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002266 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002267 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002268 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002269
Denis Vlasenko9504e442008-10-29 01:19:15 +00002270 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002271#if BB_MMU
2272 putenv_all(new_env);
2273 free(new_env); /* optional */
2274#else
2275 nommu_save->new_env = new_env;
2276 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002277#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002278 if (argv_expanded) {
2279 argv = argv_expanded;
2280 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002281 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002282#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002283 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002284#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002285 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002286
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002287 /* On NOMMU, we must never block!
2288 * Example: { sleep 99999 | read line } & echo Ok
2289 * read builtin will block on read syscall, leaving parent blocked
2290 * in vfork. Therefore we can't do this:
2291 */
2292#if BB_MMU
2293 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002294 * Depending on context, this might be redundant. But it's
2295 * easier to waste a few CPU cycles than it is to figure out
2296 * if this is one of those cases.
2297 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002298 {
2299 int rcode;
2300 const struct built_in_command *x;
2301 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2302 if (strcmp(argv[0], x->cmd) == 0) {
2303 debug_printf_exec("running builtin '%s'\n",
2304 argv[0]);
2305 rcode = x->function(argv);
2306 fflush(NULL);
2307 _exit(rcode);
2308 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002309 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002310 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002311#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002312
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002313#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002314 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002315 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002316 int a = find_applet_by_name(argv[0]);
2317 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002318#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002319 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002320 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002321 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002322 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002323#endif
2324 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002325 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002326 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2327 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002328 /* If they called chroot or otherwise made the binary no longer
2329 * executable, fall through */
2330 }
2331 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002332#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002333
2334 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002335 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002336 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002337 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002338 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002339}
2340
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002341static void re_execute_shell(const char *s) NORETURN;
2342static void re_execute_shell(const char *s)
2343{
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002344 struct variable *cur;
2345 char **argv, **pp;
2346 unsigned cnt;
2347
Denis Vlasenko16a0c742009-04-05 01:46:59 +00002348 /* hush -$<pid> -?<exitcode> -D<depth> ... -c <cmd> NULL */
2349 cnt = 7;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002350 for (cur = G.top_var; cur; cur = cur->next) {
2351 if (!cur->flg_export || cur->flg_read_only)
2352 cnt += 2;
2353 }
2354//TODO: need to free these strings in parent!
2355 argv = pp = xmalloc(sizeof(argv[0]) * cnt);
2356 *pp++ = (char *) applet_name;
2357 *pp++ = xasprintf("-$%u", G.root_pid);
2358 *pp++ = xasprintf("-?%u", G.last_return_code);
Denis Vlasenko16a0c742009-04-05 01:46:59 +00002359 *pp++ = xasprintf("-D%u", G.depth_of_loop);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002360 for (cur = G.top_var; cur; cur = cur->next) {
2361 if (cur->varstr == hush_version_str)
2362 continue;
2363 if (cur->flg_read_only) {
2364 *pp++ = (char *) "-R";
2365 *pp++ = cur->varstr;
2366 } else if (!cur->flg_export) {
2367 *pp++ = (char *) "-V";
2368 *pp++ = cur->varstr;
2369 }
2370 }
2371 *pp++ = (char *) "-c";
2372 *pp++ = (char *) s;
2373//TODO: pass $N
2374 *pp = NULL;
2375//TODO: pass traps and functions
2376
2377 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2378 execv(bb_busybox_exec_path, argv);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002379//TODO: fallback for init=/bin/hush?
2380 _exit(127);
2381}
2382
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002383static int run_list(struct pipe *pi);
2384
Denis Vlasenko05743d72008-02-10 12:10:08 +00002385/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00002386 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002387static void pseudo_exec(nommu_save_t *nommu_save,
2388 struct command *command,
2389 char **argv_expanded) NORETURN;
2390static void pseudo_exec(nommu_save_t *nommu_save,
2391 struct command *command,
2392 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002393{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002394 if (command->argv) {
2395 pseudo_exec_argv(nommu_save, command->argv,
2396 command->assignment_cnt, argv_expanded);
2397 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002398
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002399 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002400 /* Cases when we are here:
2401 * ( list )
2402 * { list } &
2403 * ... | ( list ) | ...
2404 * ... | { list } | ...
2405 */
2406#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002407 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002408 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002409 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002410 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002411 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002412 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002413#else
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00002414 re_execute_shell(command->group_as_string);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002415#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002416 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002417
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002418 /* Case when we are here: ... | >file */
2419 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002420 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002421}
2422
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002423#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002424static const char *get_cmdtext(struct pipe *pi)
2425{
2426 char **argv;
2427 char *p;
2428 int len;
2429
2430 /* This is subtle. ->cmdtext is created only on first backgrounding.
2431 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002432 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002433 if (pi->cmdtext)
2434 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002435 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002436 if (!argv || !argv[0]) {
2437 pi->cmdtext = xzalloc(1);
2438 return pi->cmdtext;
2439 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002440
2441 len = 0;
2442 do len += strlen(*argv) + 1; while (*++argv);
2443 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002444 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002445 do {
2446 len = strlen(*argv);
2447 memcpy(p, *argv, len);
2448 p += len;
2449 *p++ = ' ';
2450 } while (*++argv);
2451 p[-1] = '\0';
2452 return pi->cmdtext;
2453}
2454
Eric Andersenbafd94f2001-05-02 16:11:59 +00002455static void insert_bg_job(struct pipe *pi)
2456{
2457 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002458 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002459
2460 /* Linear search for the ID of the job to use */
2461 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002462 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002463 if (thejob->jobid >= pi->jobid)
2464 pi->jobid = thejob->jobid + 1;
2465
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002466 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002467 if (!G.job_list) {
2468 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002469 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002470 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002471 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002472 thejob->next = xmalloc(sizeof(*thejob));
2473 thejob = thejob->next;
2474 }
2475
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002476 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002477 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002478 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2479 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2480 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002481// TODO: do we really need to have so many fields which are just dead weight
2482// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002483 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002484 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002485 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002486 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002487 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002488
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002489 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002490 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002491 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002492 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002493 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002494 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002495}
2496
Eric Andersenbafd94f2001-05-02 16:11:59 +00002497static void remove_bg_job(struct pipe *pi)
2498{
2499 struct pipe *prev_pipe;
2500
Denis Vlasenko87a86552008-07-29 19:43:10 +00002501 if (pi == G.job_list) {
2502 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002503 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002504 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002505 while (prev_pipe->next != pi)
2506 prev_pipe = prev_pipe->next;
2507 prev_pipe->next = pi->next;
2508 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002509 if (G.job_list)
2510 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002511 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002512 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002513}
Eric Andersen028b65b2001-06-28 01:10:11 +00002514
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002515/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002516static void delete_finished_bg_job(struct pipe *pi)
2517{
2518 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002519 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002520 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002521 free(pi);
2522}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002523#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002524
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002525/* Check to see if any processes have exited -- if they
2526 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002527static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002528{
Eric Andersenc798b072001-06-22 06:23:03 +00002529 int attributes;
2530 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002531#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002532 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002533#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002534 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002535 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002536
Denis Vlasenkod5762932009-03-31 11:22:57 +00002537 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2538
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002539 errno = 0;
2540// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2541// /* avoid doing syscall, nothing there anyway */
2542// return rcode;
2543
Eric Andersenc798b072001-06-22 06:23:03 +00002544 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002545 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002546 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002547
Denis Vlasenko1359da62007-04-21 23:27:30 +00002548/* Do we do this right?
2549 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002550 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002551 * [3]+ Stopped sleep 20 | false
2552 * bash-3.00# echo $?
2553 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2554 */
2555
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002556//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2557//are stopped. Testcase: "cat | cat" in a script (not on command line)
2558// + killall -STOP cat
2559
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002560 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002561 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002562 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002563 int dead;
2564
2565// i = G.count_SIGCHLD;
2566 childpid = waitpid(-1, &status, attributes);
2567 if (childpid <= 0) {
2568 if (childpid && errno != ECHILD)
2569 bb_perror_msg("waitpid");
2570// else /* Until next SIGCHLD, waitpid's are useless */
2571// G.handled_SIGCHLD = i;
2572 break;
2573 }
2574 dead = WIFEXITED(status) || WIFSIGNALED(status);
2575
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002576#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002577 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002578 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002579 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2580 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002581 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002582 childpid, WTERMSIG(status), WEXITSTATUS(status));
2583 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002584 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002585 childpid, WEXITSTATUS(status));
2586#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002587 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002588 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002589 for (i = 0; i < fg_pipe->num_cmds; i++) {
2590 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2591 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002592 continue;
2593 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2594 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002595 fg_pipe->cmds[i].pid = 0;
2596 fg_pipe->alive_cmds--;
2597 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002598 /* last process gives overall exitstatus */
2599 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002600 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002601 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002602 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002603 fg_pipe->cmds[i].is_stopped = 1;
2604 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002605 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002606 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2607 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2608 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002609 /* All processes in fg pipe have exited/stopped */
2610#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002611 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002612 insert_bg_job(fg_pipe);
2613#endif
2614 return rcode;
2615 }
2616 /* There are still running processes in the fg pipe */
2617 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002618 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002619 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002620 }
2621
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002622#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002623 /* We asked to wait for bg or orphaned children */
2624 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002625 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002626 for (i = 0; i < pi->num_cmds; i++) {
2627 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002628 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002629 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002630 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002631 /* Happens when shell is used as init process (init=/bin/sh) */
2632 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002633 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002634
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002635 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002636 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002637 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002638 pi->cmds[i].pid = 0;
2639 pi->alive_cmds--;
2640 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002641 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002642 printf(JOB_STATUS_FORMAT, pi->jobid,
2643 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002644 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002645 }
2646 } else {
2647 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002648 pi->cmds[i].is_stopped = 1;
2649 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002650 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002651#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002652 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002653
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002654 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002655}
2656
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002657#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002658static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2659{
2660 pid_t p;
2661 int rcode = checkjobs(fg_pipe);
2662 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002663 p = getpgid(0); /* pgid of our process */
2664 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002665 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002666 return rcode;
2667}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002668#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002669
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002670/* Start all the jobs, but don't wait for anything to finish.
2671 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002672 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002673 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002674 * to finish to determine the exit status of the pipe. If the pipe
2675 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002676 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002677 * return value.
2678 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002679 * Returns -1 only if started some children. IOW: we have to
2680 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002681 *
2682 * The only case when we do not need to [v]fork is when the pipe
2683 * is single, non-backgrounded, non-subshell command. Examples:
2684 * cmd ; ... { list } ; ...
2685 * cmd && ... { list } && ...
2686 * cmd || ... { list } || ...
2687 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2688 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002689 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002690 *
2691 * Cases when we must fork:
2692 * non-single: cmd | cmd
2693 * backgrounded: cmd & { list } &
2694 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002695 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002696static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002697{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002698 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00002699 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002700 int nextin;
2701 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002702 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002703 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002704 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002705 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002706 /* it is not always needed, but we aim to smaller code */
2707 int squirrel[] = { -1, -1, -1 };
2708 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002709
Denis Vlasenko552433b2009-04-04 19:29:21 +00002710 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002711
Denis Vlasenko552433b2009-04-04 19:29:21 +00002712 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002713 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002714 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002715 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002716
Denis Vlasenko552433b2009-04-04 19:29:21 +00002717 if (pi->num_cmds != 1
2718 || pi->followup == PIPE_BG
2719 || command->grp_type == GRP_SUBSHELL
2720 ) {
2721 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002722 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002723
Denis Vlasenko552433b2009-04-04 19:29:21 +00002724 pi->alive_cmds = 1;
2725
2726 debug_printf_exec(": group:%p argv:'%s'\n",
2727 command->group, command->argv ? command->argv[0] : "NONE");
2728
2729 if (command->group) {
2730#if ENABLE_HUSH_FUNCTIONS
2731 if (command->grp_type == GRP_FUNCTION) {
2732 /* func () { list } */
2733 bb_error_msg("here we ought to remember function definition, and go on");
2734 return EXIT_SUCCESS;
2735 }
2736#endif
2737 /* { list } */
2738 debug_printf("non-subshell group\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002739 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002740 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002741 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002742 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002743 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002744 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002745 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002746 }
2747
Denis Vlasenko552433b2009-04-04 19:29:21 +00002748 argv = command->argv ? command->argv : (char **) &null_ptr;
2749 {
2750 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002751 char **new_env = NULL;
2752 char **old_env = NULL;
2753
Denis Vlasenko552433b2009-04-04 19:29:21 +00002754 if (argv[command->assignment_cnt] == NULL) {
2755 /* Assignments, but no command */
2756 /* Ensure redirects take effect. Try "a=t >file" */
2757 setup_redirects(command, squirrel);
2758 restore_redirects(squirrel);
2759 /* Set shell variables */
2760 while (*argv) {
2761 p = expand_string_to_string(*argv);
2762 debug_printf_exec("set shell var:'%s'->'%s'\n",
2763 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00002764 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002765 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00002766 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00002767 /* Do we need to flag set_local_var() errors?
2768 * "assignment to readonly var" and "putenv error"
2769 */
2770 return EXIT_SUCCESS;
Eric Andersen78a7c992001-05-15 16:30:25 +00002771 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002772
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002773 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00002774 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002775
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002776 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002777 if (strcmp(argv_expanded[0], x->cmd) != 0)
2778 continue;
2779 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2780 debug_printf("exec with redirects only\n");
2781 setup_redirects(command, NULL);
2782 rcode = EXIT_SUCCESS;
2783 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002784 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002785 debug_printf("builtin inline %s\n", argv_expanded[0]);
2786 /* XXX setup_redirects acts on file descriptors, not FILEs.
2787 * This is perfect for work that comes after exec().
2788 * Is it really safe for inline use? Experimentally,
2789 * things seem to work with glibc. */
2790 setup_redirects(command, squirrel);
2791 new_env = expand_assignments(argv, command->assignment_cnt);
2792 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002793 debug_printf_exec(": builtin '%s' '%s'...\n",
2794 x->cmd, argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002795 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002796#if ENABLE_FEATURE_SH_STANDALONE
2797 clean_up_and_ret:
2798#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002799 restore_redirects(squirrel);
2800 free_strings_and_unsetenv(new_env, 1);
2801 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002802 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002803 clean_up_and_ret1:
2804 free(argv_expanded);
2805 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2806 debug_printf_exec("run_pipe return %d\n", rcode);
2807 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002808 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002809#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002810 i = find_applet_by_name(argv_expanded[0]);
2811 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2812 setup_redirects(command, squirrel);
2813 save_nofork_data(&G.nofork_save);
2814 new_env = expand_assignments(argv, command->assignment_cnt);
2815 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002816 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2817 argv_expanded[0], argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002818 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2819 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002820 }
2821#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00002822 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00002823 }
2824
Denis Vlasenko552433b2009-04-04 19:29:21 +00002825 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002826 /* NB: argv_expanded may already be created, and that
2827 * might include `cmd` runs! Do not rerun it! We *must*
2828 * use argv_expanded if it's non-NULL */
2829
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002830 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002831 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002832 nextin = 0;
2833
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002834 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002835#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002836 volatile nommu_save_t nommu_save;
2837 nommu_save.new_env = NULL;
2838 nommu_save.old_env = NULL;
2839 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002840#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002841 command = &(pi->cmds[i]);
2842 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002843 debug_printf_exec(": pipe member '%s' '%s'...\n",
2844 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002845 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002846 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00002847 }
Eric Andersen25f27032001-04-26 23:22:31 +00002848
2849 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002850 pipefds[0] = 0;
2851 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002852 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002853 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002854
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002855 command->pid = BB_MMU ? fork() : vfork();
2856 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002857#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00002858 die_sleep = 0; /* let nofork's xfuncs die */
2859
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002860 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002861 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002862 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002863 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002864 pgrp = pi->pgrp;
2865 if (pgrp < 0) /* true for 1st process only */
2866 pgrp = getpid();
2867 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002868 /* We do it in *every* child, not just first,
2869 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002870 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002871 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002872 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002873#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00002874 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002875 xmove_fd(pipefds[1], 1); /* write end */
2876 if (pipefds[0] > 1)
2877 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00002878 /* Like bash, explicit redirects override pipes,
2879 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002880 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002881
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002882 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002883 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
2884
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002885 /* Stores to nommu_save list of env vars putenv'ed
2886 * (NOMMU, on MMU we don't need that) */
2887 /* cast away volatility... */
2888 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002889 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00002890 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002891 /* parent */
2892#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002893 /* Clean up after vforked child */
2894 free(nommu_save.argv);
2895 free_strings_and_unsetenv(nommu_save.new_env, 1);
2896 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002897#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002898 free(argv_expanded);
2899 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002900 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002901 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00002902 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002903 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002904 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002905#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002906 /* Second and next children need to know pid of first one */
2907 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002908 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002909#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002910 }
Eric Andersen25f27032001-04-26 23:22:31 +00002911
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002912 if (i)
2913 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002914 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002915 close(pipefds[1]); /* write end */
2916 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00002917 nextin = pipefds[0];
2918 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002919
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002920 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002921 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2922 return 1;
2923 }
2924
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002925 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00002926 return -1;
2927}
2928
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002929#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002930static void debug_print_tree(struct pipe *pi, int lvl)
2931{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002932 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002933 [PIPE_SEQ] = "SEQ",
2934 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002935 [PIPE_OR ] = "OR" ,
2936 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002937 };
2938 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002939 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002940#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002941 [RES_IF ] = "IF" ,
2942 [RES_THEN ] = "THEN" ,
2943 [RES_ELIF ] = "ELIF" ,
2944 [RES_ELSE ] = "ELSE" ,
2945 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002946#endif
2947#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002948 [RES_FOR ] = "FOR" ,
2949 [RES_WHILE] = "WHILE",
2950 [RES_UNTIL] = "UNTIL",
2951 [RES_DO ] = "DO" ,
2952 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002953#endif
2954#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002955 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002956#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002957#if ENABLE_HUSH_CASE
2958 [RES_CASE ] = "CASE" ,
2959 [RES_MATCH] = "MATCH",
2960 [RES_CASEI] = "CASEI",
2961 [RES_ESAC ] = "ESAC" ,
2962#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00002963 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002964 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002965 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002966 static const char *const GRPTYPE[] = {
2967 "()",
2968 "{}",
2969#if ENABLE_HUSH_FUNCTIONS
2970 "func()",
2971#endif
2972 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002973
2974 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002975
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002976 pin = 0;
2977 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002978 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2979 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002980 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002981 while (prn < pi->num_cmds) {
2982 struct command *command = &pi->cmds[prn];
2983 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002984
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002985 fprintf(stderr, "%*s prog %d assignment_cnt:%d",
2986 lvl*2, "", prn,
2987 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002988 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002989 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002990 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002991 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002992 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002993 prn++;
2994 continue;
2995 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002996 if (argv) while (*argv) {
2997 fprintf(stderr, " '%s'", *argv);
2998 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002999 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003000 fprintf(stderr, "\n");
3001 prn++;
3002 }
3003 pi = pi->next;
3004 pin++;
3005 }
3006}
3007#endif
3008
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003009/* NB: called by pseudo_exec, and therefore must not modify any
3010 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003011static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003012{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003013#if ENABLE_HUSH_CASE
3014 char *case_word = NULL;
3015#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003016#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003017 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003018 char *for_varname = NULL;
3019 char **for_lcur = NULL;
3020 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003021#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003022 smallint flag_skip = 1;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003023 smalluint rcode = 0; /* probably just for compiler */
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003024#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003025 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003026#else
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003027 enum { cond_code = 0, };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003028#endif
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003029 /*enum reserved_style*/ smallint rword = RES_NONE;
3030 /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003031
Denis Vlasenko87a86552008-07-29 19:43:10 +00003032 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003033
Denis Vlasenko06810332007-05-21 23:30:54 +00003034#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003035 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003036 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3037 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003038 continue;
3039 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003040 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003041 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003042 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003043 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003044 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003045 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003046 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003047 continue;
3048 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003049 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3050 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003051 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003052 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003053 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003054 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003055 }
3056 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003057#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003058
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003059 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003060 * in order to return, no direct "return" statements please.
3061 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003062
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003063////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003064
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003065#if ENABLE_HUSH_JOB
3066 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3067 * We are saving state before entering outermost list ("while...done")
3068 * so that ctrl-Z will correctly background _entire_ outermost list,
3069 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003070 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003071 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003072 /* ctrl-Z forked and we are parent; or ctrl-C.
3073 * Sighandler has longjmped us here */
3074 signal(SIGINT, SIG_IGN);
3075 signal(SIGTSTP, SIG_IGN);
3076 /* Restore level (we can be coming from deep inside
3077 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003078 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003079#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003080 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003081 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003082 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003083 }
3084#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003085//// if (G.ctrl_z_flag) {
3086//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3087//// * Remember this child as background job */
3088//// insert_bg_job(pi);
3089//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003090 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003091 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003092//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003093 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003094 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003095 rcode = 0;
3096 goto ret;
3097 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003098//// /* ctrl-Z handler will store pid etc in pi */
3099//// G.toplevel_list = pi;
3100//// G.ctrl_z_flag = 0;
3101////#if ENABLE_FEATURE_SH_STANDALONE
3102//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
3103////#endif
3104//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3105//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003106 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003107#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003108
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003109 /* Go through list of pipes, (maybe) executing them. */
3110 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003111 if (G.flag_SIGINT)
3112 break;
3113
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003114 IF_HAS_KEYWORDS(rword = pi->res_word;)
3115 IF_HAS_NO_KEYWORDS(rword = RES_NONE;)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003116 debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n",
3117 rword, cond_code, skip_more_for_this_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003118#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003119 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003120 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003121 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003122 /* start of a loop: remember where loop starts */
3123 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003124 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003125 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003126#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003127 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003128 if (pi->followup == PIPE_SEQ)
3129 flag_skip = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003130 /* it is "<false> && CMD" or "<true> || CMD"
3131 * and we should not execute CMD */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003132 continue;
3133 }
3134 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003135 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00003136#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003137 if (cond_code) {
3138 if (rword == RES_THEN) {
3139 /* "if <false> THEN cmd": skip cmd */
3140 continue;
3141 }
3142 } else {
3143 if (rword == RES_ELSE || rword == RES_ELIF) {
3144 /* "if <true> then ... ELSE/ELIF cmd":
3145 * skip cmd and all following ones */
3146 break;
3147 }
3148 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003149#endif
3150#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003151 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003152 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003153 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003154
3155 static const char encoded_dollar_at[] ALIGN1 = {
3156 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3157 }; /* encoded representation of "$@" */
3158 static const char *const encoded_dollar_at_argv[] = {
3159 encoded_dollar_at, NULL
3160 }; /* argv list with one element: "$@" */
3161 char **vals;
3162
3163 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003164 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003165 /* if no variable values after "in" we skip "for" */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003166 if (!pi->next->cmds[0].argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003167 break;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003168 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003169 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003170 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003171 debug_print_strings("for_list made from", vals);
3172 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003173 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003174 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003175 for_varname = pi->cmds[0].argv[0];
3176 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003177 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003178 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003179 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003180 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003181 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003182 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003183 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003184 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003185 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003186 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003187 /* insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003188//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003189 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3190 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003191 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003192 if (rword == RES_IN) {
3193 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3194 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003195 if (rword == RES_DONE) {
3196 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003197 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003198#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003199#if ENABLE_HUSH_CASE
3200 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003201 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003202 continue;
3203 }
3204 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003205 char **argv;
3206
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003207 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3208 break;
3209 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003210 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003211 while (*argv) {
3212 char *pattern = expand_string_to_string(*argv);
3213 /* TODO: which FNM_xxx flags to use? */
3214 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3215 free(pattern);
3216 if (cond_code == 0) { /* match! we will execute this branch */
3217 free(case_word); /* make future "word)" stop */
3218 case_word = NULL;
3219 break;
3220 }
3221 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003222 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003223 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003224 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003225 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003226 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003227 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003228 }
3229#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003230 /* Just pressing <enter> in shell should check for jobs.
3231 * OTOH, in non-interactive shell this is useless
3232 * and only leads to extra job checks */
3233 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003234 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003235 goto check_jobs_and_continue;
3236 continue;
3237 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003238
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003239 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003240 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003241 * after run_pipe() to collect any background children,
3242 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003243 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003244 {
3245 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003246#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003247 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003248#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003249 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3250 if (r != -1) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003251 /* we only ran a builtin: rcode is already known
3252 * and we don't need to wait for anything. */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003253 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003254#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003255 /* was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003256 if (G.flag_break_continue) {
3257 smallint fbc = G.flag_break_continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003258 /* we might fall into outer *loop*,
3259 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003260 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003261 G.depth_break_continue--;
3262 if (G.depth_break_continue == 0)
3263 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003264 /* else: e.g. "continue 2" should *break* once, *then* continue */
3265 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003266 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003267 goto check_jobs_and_break;
3268 /* "continue": simulate end of loop */
3269 rword = RES_DONE;
3270 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003271 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003272#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003273 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003274 /* what does bash do with attempts to background builtins? */
3275 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003276 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3277 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003278 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003279#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003280 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003281 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003282#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003283 rcode = 0; /* EXIT_SUCCESS */
3284 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003285#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003286 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003287 /* waits for completion, then fg's main shell */
3288 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003289 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003290 debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode);
3291 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003292#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003293 { /* this one just waits for completion */
3294 rcode = checkjobs(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003295 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003296 debug_printf_exec(": checkjobs returned %d\n", rcode);
3297 }
Eric Andersen25f27032001-04-26 23:22:31 +00003298 }
3299 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003300 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko87a86552008-07-29 19:43:10 +00003301 G.last_return_code = rcode;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003302
3303 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003304#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003305 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003306 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003307#endif
3308#if ENABLE_HUSH_LOOPS
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003309 if (rword == RES_WHILE) {
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003310 if (rcode) {
3311 rcode = 0; /* "while false; do...done" - exitcode 0 */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003312 goto check_jobs_and_break;
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003313 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003314 }
3315 if (rword == RES_UNTIL) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003316 if (!rcode) {
3317 check_jobs_and_break:
3318 checkjobs(NULL);
3319 break;
3320 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003321 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003322#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003323 if ((rcode == 0 && pi->followup == PIPE_OR)
3324 || (rcode != 0 && pi->followup == PIPE_AND)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003325 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003326 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003327 }
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003328
3329 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003330 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003331 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003332
3333#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003334//// if (G.ctrl_z_flag) {
3335//// /* ctrl-Z forked somewhere in the past, we are the child,
3336//// * and now we completed running the list. Exit. */
3337//////TODO: _exit?
3338//// exit(rcode);
3339//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003340 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003341 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003342//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003343//// signal(SIGTSTP, SIG_IGN);
3344//// signal(SIGINT, SIG_IGN);
3345//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003346#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003347 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003348#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003349 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003350 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003351 free(for_list);
3352#endif
3353#if ENABLE_HUSH_CASE
3354 free(case_word);
3355#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003356 return rcode;
3357}
3358
Eric Andersen25f27032001-04-26 23:22:31 +00003359/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003360static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003361{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003362 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003363 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003364 if (!G.fake_mode) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003365 debug_printf_exec(": run_list with %d members\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003366 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003367 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003368 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003369 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003370 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003371 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003372 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003373 return rcode;
3374}
3375
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003376
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003377/* Peek ahead in the in_str to find out if we have a "&n" construct,
3378 * as in "2>&1", that represents duplicating a file descriptor.
3379 * Return either -2 (syntax error), -1 (no &), or the number found.
3380 */
3381static int redirect_dup_num(struct in_str *input)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003382{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003383 int ch, d = 0, ok = 0;
3384 ch = i_peek(input);
3385 if (ch != '&') return -1;
3386
3387 i_getch(input); /* get the & */
3388 ch = i_peek(input);
3389 if (ch == '-') {
3390 i_getch(input);
3391 return -3; /* "-" represents "close me" */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003392 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003393 while (isdigit(ch)) {
3394 d = d*10 + (ch-'0');
3395 ok = 1;
3396 i_getch(input);
3397 ch = i_peek(input);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003398 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003399 if (ok) return d;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003400
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003401 bb_error_msg("ambiguous redirect");
3402 return -2;
Eric Andersen78a7c992001-05-15 16:30:25 +00003403}
3404
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003405/* The src parameter allows us to peek forward to a possible &n syntax
Eric Andersen25f27032001-04-26 23:22:31 +00003406 * for file descriptor duplication, e.g., "2>&1".
3407 * Return code is 0 normally, 1 if a syntax error is detected in src.
3408 * Resource errors (in xmalloc) cause the process to exit */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003409static int setup_redirect(struct parse_context *ctx,
3410 int fd,
3411 redir_type style,
3412 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003413{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003414 struct command *command = ctx->command;
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003415 struct redir_struct *redir;
3416 struct redir_struct **redirp;
3417 int dup_num;
3418
3419 /* Check for a '2>&1' type redirect */
3420 dup_num = redirect_dup_num(input);
3421 if (dup_num == -2)
3422 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00003423
3424 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003425 redirp = &command->redirects;
3426 while ((redir = *redirp) != NULL) {
3427 redirp = &(redir->next);
Eric Andersen25f27032001-04-26 23:22:31 +00003428 }
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003429 *redirp = redir = xzalloc(sizeof(*redir));
Denis Vlasenkoff097622007-10-01 10:00:45 +00003430 /* redir->next = NULL; */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003431 /* redir->rd_filename = NULL; */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003432 redir->rd_type = style;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003433 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00003434
3435 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
3436
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003437 redir->dup = dup_num;
3438 if (dup_num != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00003439 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00003440 * is legit; I postpone that to "run time"
3441 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00003442 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
3443 } else {
3444 /* We do _not_ try to open the file that src points to,
3445 * since we need to return and let src be expanded first.
3446 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00003447 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00003448 ctx->pending_redirect = redir;
3449 }
3450 return 0;
3451}
3452
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003453
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003454static struct pipe *new_pipe(void)
3455{
Eric Andersen25f27032001-04-26 23:22:31 +00003456 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003457 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003458 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003459 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003460 return pi;
3461}
3462
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003463/* Command (member of a pipe) is complete. The only possible error here
3464 * is out of memory, in which case xmalloc exits. */
3465static int done_command(struct parse_context *ctx)
3466{
3467 /* The command is really already in the pipe structure, so
3468 * advance the pipe counter and make a new, null command. */
3469 struct pipe *pi = ctx->pipe;
3470 struct command *command = ctx->command;
3471
3472 if (command) {
3473 if (command->group == NULL
3474 && command->argv == NULL
3475 && command->redirects == NULL
3476 ) {
3477 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
3478 return pi->num_cmds;
3479 }
3480 pi->num_cmds++;
3481 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
3482 } else {
3483 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3484 }
3485
3486 /* Only real trickiness here is that the uncommitted
3487 * command structure is not counted in pi->num_cmds. */
3488 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3489 command = &pi->cmds[pi->num_cmds];
3490 memset(command, 0, sizeof(*command));
3491
3492 ctx->command = command;
3493 /* but ctx->pipe and ctx->list_head remain unchanged */
3494
3495 return pi->num_cmds; /* used only for 0/nonzero check */
3496}
3497
3498static void done_pipe(struct parse_context *ctx, pipe_style type)
3499{
3500 int not_null;
3501
3502 debug_printf_parse("done_pipe entered, followup %d\n", type);
3503 /* Close previous command */
3504 not_null = done_command(ctx);
3505 ctx->pipe->followup = type;
3506 IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;)
3507 IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;)
3508 IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;)
3509
3510 /* Without this check, even just <enter> on command line generates
3511 * tree of three NOPs (!). Which is harmless but annoying.
3512 * IOW: it is safe to do it unconditionally.
3513 * RES_NONE case is for "for a in; do ..." (empty IN set)
3514 * to work, possibly other cases too. */
3515 if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) {
3516 struct pipe *new_p;
3517 debug_printf_parse("done_pipe: adding new pipe: "
3518 "not_null:%d ctx->ctx_res_w:%d\n",
3519 not_null, ctx->ctx_res_w);
3520 new_p = new_pipe();
3521 ctx->pipe->next = new_p;
3522 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003523 /* RES_THEN, RES_DO etc are "sticky" -
3524 * they remain set for commands inside if/while.
3525 * This is used to control execution.
3526 * RES_FOR and RES_IN are NOT sticky (needed to support
3527 * cases where variable or value happens to match a keyword):
3528 */
3529#if ENABLE_HUSH_LOOPS
3530 if (ctx->ctx_res_w == RES_FOR
3531 || ctx->ctx_res_w == RES_IN)
3532 ctx->ctx_res_w = RES_NONE;
3533#endif
3534#if ENABLE_HUSH_CASE
3535 if (ctx->ctx_res_w == RES_MATCH)
3536 ctx->ctx_res_w = RES_CASEI;
3537#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003538 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003539 /* Create the memory for command, roughly:
3540 * ctx->pipe->cmds = new struct command;
3541 * ctx->command = &ctx->pipe->cmds[0];
3542 */
3543 done_command(ctx);
3544 }
3545 debug_printf_parse("done_pipe return\n");
3546}
3547
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003548static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003549{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003550 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003551 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003552 /* Create the memory for command, roughly:
3553 * ctx->pipe->cmds = new struct command;
3554 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003555 */
3556 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003557}
3558
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003559
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003560/* If a reserved word is found and processed, parse context is modified
3561 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003562 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003563#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003564struct reserved_combo {
3565 char literal[6];
3566 unsigned char res;
3567 unsigned char assignment_flag;
3568 int flag;
3569};
3570enum {
3571 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003572#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003573 FLAG_IF = (1 << RES_IF ),
3574 FLAG_THEN = (1 << RES_THEN ),
3575 FLAG_ELIF = (1 << RES_ELIF ),
3576 FLAG_ELSE = (1 << RES_ELSE ),
3577 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003578#endif
3579#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003580 FLAG_FOR = (1 << RES_FOR ),
3581 FLAG_WHILE = (1 << RES_WHILE),
3582 FLAG_UNTIL = (1 << RES_UNTIL),
3583 FLAG_DO = (1 << RES_DO ),
3584 FLAG_DONE = (1 << RES_DONE ),
3585 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003586#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003587#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003588 FLAG_MATCH = (1 << RES_MATCH),
3589 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003590#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003591 FLAG_START = (1 << RES_XXXX ),
3592};
3593
3594static const struct reserved_combo* match_reserved_word(o_string *word)
3595{
Eric Andersen25f27032001-04-26 23:22:31 +00003596 /* Mostly a list of accepted follow-up reserved words.
3597 * FLAG_END means we are done with the sequence, and are ready
3598 * to turn the compound list into a command.
3599 * FLAG_START means the word must start a new compound list.
3600 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003601 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003602#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003603 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3604 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3605 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3606 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3607 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3608 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003609#endif
3610#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003611 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3612 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3613 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3614 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3615 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3616 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003617#endif
3618#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003619 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3620 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003621#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003622 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003623 const struct reserved_combo *r;
3624
3625 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3626 if (strcmp(word->data, r->literal) == 0)
3627 return r;
3628 }
3629 return NULL;
3630}
3631static int reserved_word(o_string *word, struct parse_context *ctx)
3632{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003633#if ENABLE_HUSH_CASE
3634 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003635 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003636 };
3637#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003638 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003639
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003640 r = match_reserved_word(word);
3641 if (!r)
3642 return 0;
3643
3644 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003645#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003646 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3647 /* "case word IN ..." - IN part starts first match part */
3648 r = &reserved_match;
3649 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003650#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003651 if (r->flag == 0) { /* '!' */
3652 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003653 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003654 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003655 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003656 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003657 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003658 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003659 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003660 struct parse_context *old;
3661 old = xmalloc(sizeof(*old));
3662 debug_printf_parse("push stack %p\n", old);
3663 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003664 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003665 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003666 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003667 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003668 ctx->ctx_res_w = RES_SNTX;
3669 return 1;
3670 }
3671 ctx->ctx_res_w = r->res;
3672 ctx->old_flag = r->flag;
3673 if (ctx->old_flag & FLAG_END) {
3674 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003675 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003676 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003677 old = ctx->stack;
3678 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003679 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003680#if !BB_MMU
3681 o_addstr(&old->as_string, ctx->as_string.data);
3682 o_free_unsafe(&ctx->as_string);
3683 old->command->group_as_string = xstrdup(old->as_string.data);
3684 debug_printf_parse("pop, remembering as:'%s'\n",
3685 old->command->group_as_string);
3686#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003687 *ctx = *old; /* physical copy */
3688 free(old);
3689 }
3690 word->o_assignment = r->assignment_flag;
3691 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003692}
Denis Vlasenko06810332007-05-21 23:30:54 +00003693#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003694
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003695/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003696 * Normal return is 0. Syntax errors return 1.
3697 * Note: on return, word is reset, but not o_free'd!
3698 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003699static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003700{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003701 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003702
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003703 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003704 if (word->length == 0 && word->nonnull == 0) {
3705 debug_printf_parse("done_word return 0: true null, ignored\n");
3706 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003707 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003708 /* If this word wasn't an assignment, next ones definitely
3709 * can't be assignments. Even if they look like ones. */
3710 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3711 && word->o_assignment != WORD_IS_KEYWORD
3712 ) {
3713 word->o_assignment = NOT_ASSIGNMENT;
3714 } else {
3715 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003716 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003717 word->o_assignment = MAYBE_ASSIGNMENT;
3718 }
3719
Eric Andersen25f27032001-04-26 23:22:31 +00003720 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003721 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3722 * only if run as "bash", not "sh" */
3723 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003724 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003725 debug_printf("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003726 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003727 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003728 /* NB: bash allows e.g.:
3729 * if true; then { echo foo; } fi
3730 * while if false; then false; fi do break; done
3731 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003732 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003733 syntax(word->data);
3734 debug_printf_parse("done_word return 1: syntax error, "
3735 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003736 return 1;
3737 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003738#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003739#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003740 if (ctx->ctx_dsemicolon
3741 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3742 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003743 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003744 /* ctx->ctx_res_w = RES_MATCH; */
3745 ctx->ctx_dsemicolon = 0;
3746 } else
3747#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003748 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003749#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003750 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3751 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003752#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003753 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003754 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3755 if (reserved_word(word, ctx)) {
3756 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003757 debug_printf_parse("done_word return %d\n",
3758 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003759 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003760 }
Eric Andersen25f27032001-04-26 23:22:31 +00003761 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003762#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003763 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003764 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3765 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003766 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003767 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003768 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003769 char *p = word->data;
3770 while (p[0] == SPECIAL_VAR_SYMBOL
3771 && (p[1] & 0x7f) == '@'
3772 && p[2] == SPECIAL_VAR_SYMBOL
3773 ) {
3774 p += 3;
3775 }
3776 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003777 /* saw no "$@", or not only "$@" but some
3778 * real text is there too */
3779 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003780 * e.g. "", $empty"" etc to not disappear */
3781 o_addchr(word, SPECIAL_VAR_SYMBOL);
3782 o_addchr(word, SPECIAL_VAR_SYMBOL);
3783 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003784 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003785 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003786 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003787 }
Eric Andersen25f27032001-04-26 23:22:31 +00003788
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003789 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003790 ctx->pending_redirect = NULL;
3791
Denis Vlasenko06810332007-05-21 23:30:54 +00003792#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003793 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003794 /* NB: basically, this makes hush see "for v in ..." syntax as if
3795 * as it is "for v; in ...". FOR and IN become two pipe structs
3796 * in parse tree. */
3797 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003798//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003799 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003800 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003801#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003802#if ENABLE_HUSH_CASE
3803 /* Force CASE to have just one word */
3804 if (ctx->ctx_res_w == RES_CASE) {
3805 done_pipe(ctx, PIPE_SEQ);
3806 }
3807#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003808 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003809 return 0;
3810}
3811
Eric Andersen25f27032001-04-26 23:22:31 +00003812/* If a redirect is immediately preceded by a number, that number is
3813 * supposed to tell which file descriptor to redirect. This routine
3814 * looks for such preceding numbers. In an ideal world this routine
3815 * needs to handle all the following classes of redirects...
3816 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3817 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3818 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3819 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3820 * A -1 output from this program means no valid number was found, so the
3821 * caller should use the appropriate default for this redirection.
3822 */
3823static int redirect_opt_num(o_string *o)
3824{
3825 int num;
3826
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003827 if (o->length == 0)
3828 return -1;
3829 for (num = 0; num < o->length; num++) {
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003830 if (!isdigit(o->data[num])) {
Eric Andersen25f27032001-04-26 23:22:31 +00003831 return -1;
3832 }
3833 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003834 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003835 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003836 return num;
3837}
3838
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003839#if BB_MMU
3840#define parse_stream(pstring, input, end_trigger) \
3841 parse_stream(input, end_trigger)
3842#endif
3843static struct pipe *parse_stream(char **pstring,
3844 struct in_str *input,
3845 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003846static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00003847
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003848#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003849static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003850{
3851 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003852 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003853
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003854 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00003855 pid = BB_MMU ? fork() : vfork();
3856 if (pid < 0)
3857 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003858
Denis Vlasenko05743d72008-02-10 12:10:08 +00003859 if (pid == 0) { /* child */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003860 /* Process substitution is not considered to be usual
3861 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003862 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
3863 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00003864 bb_signals(0
3865 + (1 << SIGTSTP)
3866 + (1 << SIGTTIN)
3867 + (1 << SIGTTOU)
3868 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003869 if (ENABLE_HUSH_JOB)
3870 die_sleep = 0; /* let nofork's xfuncs die */
3871 close(channel[0]); /* NB: close _first_, then move fd! */
3872 xmove_fd(channel[1], 1);
3873 /* Prevent it from trying to handle ctrl-z etc */
3874 USE_HUSH_JOB(G.run_list_level = 1;)
3875#if BB_MMU
3876 parse_and_run_string(s);
3877 _exit(G.last_return_code);
3878#else
3879 /* We re-execute after vfork on NOMMU. This makes this script safe:
3880 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE
3881 * huge=`cat TESTFILE` # was blocking here forever
3882 * echo OK
3883 */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00003884 re_execute_shell(s);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003885#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003886 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003887
3888 /* parent */
Eric Andersen25f27032001-04-26 23:22:31 +00003889 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003890 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003891 return pf;
3892}
3893
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003894/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003895static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003896{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003897 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003898 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003899 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003900
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003901 pf = generate_stream_from_string(s);
3902 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00003903 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003904 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00003905
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003906 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003907 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003908 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003909 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003910 if (ch == '\n') {
3911 eol_cnt++;
3912 continue;
3913 }
3914 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003915 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003916 eol_cnt--;
3917 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003918 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003919 }
3920
3921 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003922 /* Note: we got EOF, and we just close the read end of the pipe.
3923 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003924 * Try these:
3925 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
3926 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003927 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003928 fclose(pf);
3929 debug_printf("closed FILE from child. return 0\n");
3930 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003931}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003932#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003933
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003934static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003935 struct in_str *input, int ch)
3936{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003937 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003938 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003939 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003940 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003941 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003942 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003943
3944 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003945#if ENABLE_HUSH_FUNCTIONS
3946 if (ch == 'F') { /* function definition? */
3947 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
3948 //command->fname = dest->data;
3949 command->grp_type = GRP_FUNCTION;
3950//TODO: review every o_reset() location... do they handle all o_string fields correctly?
3951 memset(dest, 0, sizeof(*dest));
3952 }
3953#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003954 if (command->argv /* word [word](... */
3955 || dest->length /* word(... */
3956 || dest->nonnull /* ""(... */
3957 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003958 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003959 debug_printf_parse("parse_group return 1: "
3960 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003961 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003962 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00003963 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003964 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003965 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003966 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00003967 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003968 {
3969#if !BB_MMU
3970 char *as_string = NULL;
3971#endif
3972 pipe_list = parse_stream(&as_string, input, endch);
3973#if !BB_MMU
3974 if (as_string)
3975 o_addstr(&ctx->as_string, as_string);
3976#endif
3977 /* empty ()/{} or parse error? */
3978 if (!pipe_list || pipe_list == ERR_PTR) {
3979#if !BB_MMU
3980 free(as_string);
3981#endif
3982 syntax(NULL);
3983 debug_printf_parse("parse_group return 1: "
3984 "parse_stream returned %p\n", pipe_list);
3985 return 1;
3986 }
3987 command->group = pipe_list;
3988#if !BB_MMU
3989 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
3990 command->group_as_string = as_string;
3991 debug_printf_parse("end of group, remembering as:'%s'\n",
3992 command->group_as_string);
3993#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003994 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003995 debug_printf_parse("parse_group return 0\n");
3996 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003997 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003998}
3999
Mike Frysinger98c52642009-04-02 10:02:37 +00004000#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004001/* Subroutines for copying $(...) and `...` things */
4002static void add_till_backquote(o_string *dest, struct in_str *input);
4003/* '...' */
4004static void add_till_single_quote(o_string *dest, struct in_str *input)
4005{
4006 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004007 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004008 if (ch == EOF)
4009 break;
4010 if (ch == '\'')
4011 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004012 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004013 }
4014}
4015/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
4016static void add_till_double_quote(o_string *dest, struct in_str *input)
4017{
4018 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004019 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004020 if (ch == '"')
4021 break;
4022 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004023 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004024 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004025 }
4026 if (ch == EOF)
4027 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004028 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004029 if (ch == '`') {
4030 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004031 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004032 continue;
4033 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004034 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004035 }
4036}
4037/* Process `cmd` - copy contents until "`" is seen. Complicated by
4038 * \` quoting.
4039 * "Within the backquoted style of command substitution, backslash
4040 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4041 * The search for the matching backquote shall be satisfied by the first
4042 * backquote found without a preceding backslash; during this search,
4043 * if a non-escaped backquote is encountered within a shell comment,
4044 * a here-document, an embedded command substitution of the $(command)
4045 * form, or a quoted string, undefined results occur. A single-quoted
4046 * or double-quoted string that begins, but does not end, within the
4047 * "`...`" sequence produces undefined results."
4048 * Example Output
4049 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4050 */
4051static void add_till_backquote(o_string *dest, struct in_str *input)
4052{
4053 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004054 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004055 if (ch == '`')
4056 break;
4057 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004058 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004059 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004060 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004061 ch = ch2;
4062 }
4063 if (ch == EOF)
4064 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004065 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004066 }
4067}
4068/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4069 * quoting and nested ()s.
4070 * "With the $(command) style of command substitution, all characters
4071 * following the open parenthesis to the matching closing parenthesis
4072 * constitute the command. Any valid shell script can be used for command,
4073 * except a script consisting solely of redirections which produces
4074 * unspecified results."
4075 * Example Output
4076 * echo $(echo '(TEST)' BEST) (TEST) BEST
4077 * echo $(echo 'TEST)' BEST) TEST) BEST
4078 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4079 */
Mike Frysinger98c52642009-04-02 10:02:37 +00004080static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004081{
4082 int count = 0;
4083 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004084 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004085 if (ch == EOF)
4086 break;
4087 if (ch == '(')
4088 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004089 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004090 if (--count < 0) {
4091 if (!dbl)
4092 break;
4093 if (i_peek(input) == ')') {
4094 i_getch(input);
4095 break;
4096 }
4097 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004098 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004099 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004100 if (ch == '\'') {
4101 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004102 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004103 continue;
4104 }
4105 if (ch == '"') {
4106 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004107 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004108 continue;
4109 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004110 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
4111 ch = i_getch(input);
4112 if (ch == EOF)
4113 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004114 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004115 continue;
4116 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004117 }
4118}
Mike Frysinger98c52642009-04-02 10:02:37 +00004119#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004120
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004121/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004122#if BB_MMU
4123#define handle_dollar(ctx, dest, input) \
4124 handle_dollar(dest, input)
4125#endif
4126static int handle_dollar(struct parse_context *ctx,
4127 o_string *dest,
4128 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004129{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004130 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004131 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004132 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004133
4134 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004135 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004136 ch = i_getch(input);
4137#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004138 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004139#endif
Denis Vlasenkod4981312008-07-31 10:34:48 +00004140 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004141 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004142 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004143 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004144 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004145 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004146 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004147 if (!isalnum(ch) && ch != '_')
4148 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004149 ch = i_getch(input);
4150#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004151 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004152#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004153 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004154 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004155 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004156 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004157 ch = i_getch(input);
4158#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004159 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004160#endif
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004161 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004162 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004163 o_addchr(dest, ch | quote_mask);
4164 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004165 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004166 case '$': /* pid */
4167 case '!': /* last bg pid */
4168 case '?': /* last exit code */
4169 case '#': /* number of args */
4170 case '*': /* args */
4171 case '@': /* args */
4172 goto make_one_char_var;
4173 case '{': {
4174 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004175
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004176 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004177 ch = i_getch(input);
4178#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004179 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004180#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004181 /* XXX maybe someone will try to escape the '}' */
4182 expansion = 0;
4183 first_char = true;
4184 all_digits = false;
4185 while (1) {
4186 ch = i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004187#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004188 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004189#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004190 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004191 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004192
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004193 if (first_char) {
4194 if (ch == '#')
4195 /* ${#var}: length of var contents */
4196 goto char_ok;
4197 else if (isdigit(ch)) {
4198 all_digits = true;
4199 goto char_ok;
4200 }
4201 }
4202
4203 if (expansion < 2
4204 && ( (all_digits && !isdigit(ch))
4205 || (!all_digits && !isalnum(ch) && ch != '_')
4206 )
4207 ) {
4208 /* handle parameter expansions
4209 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4210 */
4211 if (first_char)
4212 goto case_default;
4213 switch (ch) {
4214 case ':': /* null modifier */
4215 if (expansion == 0) {
4216 debug_printf_parse(": null modifier\n");
4217 ++expansion;
4218 break;
4219 }
4220 goto case_default;
4221#if 0 /* not implemented yet :( */
4222 case '#': /* remove prefix */
4223 case '%': /* remove suffix */
4224 if (expansion == 0) {
4225 debug_printf_parse(": remove suffix/prefix\n");
4226 expansion = 2;
4227 break;
4228 }
4229 goto case_default;
Mike Frysinger98c52642009-04-02 10:02:37 +00004230#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004231 case '-': /* default value */
4232 case '=': /* assign default */
4233 case '+': /* alternative */
4234 case '?': /* error indicate */
4235 debug_printf_parse(": parameter expansion\n");
4236 expansion = 2;
4237 break;
4238 default:
4239 case_default:
4240 syntax("unterminated ${name}");
4241 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4242 return 1;
4243 }
4244 }
4245 char_ok:
4246 debug_printf_parse(": '%c'\n", ch);
4247 o_addchr(dest, ch | quote_mask);
4248 quote_mask = 0;
4249 first_char = false;
4250 }
4251 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4252 break;
4253 }
4254 case '(': {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004255#if !BB_MMU
4256 int pos;
4257#endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004258 ch = i_getch(input);
4259#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004260 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004261#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004262#if ENABLE_SH_MATH_SUPPORT
4263 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004264 ch = i_getch(input);
4265#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004266 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004267#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004268 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4269 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004270#if !BB_MMU
4271 pos = dest->length;
4272#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004273 add_till_closing_paren(dest, input, true);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004274#if !BB_MMU
4275 if (ctx) {
4276 o_addstr(&ctx->as_string, dest->data + pos);
4277 o_addchr(&ctx->as_string, ')');
4278 o_addchr(&ctx->as_string, ')');
4279 }
4280#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004281 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004282 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004283 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004284#endif
4285#if ENABLE_HUSH_TICK
4286 //int pos = dest->length;
4287 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4288 o_addchr(dest, quote_mask | '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004289#if !BB_MMU
4290 pos = dest->length;
4291#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004292 add_till_closing_paren(dest, input, false);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004293#if !BB_MMU
4294 if (ctx) {
4295 o_addstr(&ctx->as_string, dest->data + pos);
4296 o_addchr(&ctx->as_string, '`');
4297 }
4298#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004299 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4300 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4301#endif
4302 break;
4303 }
4304 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004305 ch = i_getch(input);
4306#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004307 if (ctx) o_addchr(&ctx->as_string, ch);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004308#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004309 ch = i_peek(input);
4310 if (isalnum(ch)) { /* it's $_name or $_123 */
4311 ch = '_';
4312 goto make_var;
4313 }
4314 /* else: it's $_ */
4315 /* TODO: */
4316 /* $_ Shell or shell script name; or last cmd name */
4317 /* $- Option flags set by set builtin or shell options (-i etc) */
4318 default:
4319 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004320 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004321 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004322 return 0;
4323}
4324
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004325#if BB_MMU
4326#define parse_stream_dquoted(ctx, dest, input, dquote_end) \
4327 parse_stream_dquoted(dest, input, dquote_end)
4328#endif
4329static int parse_stream_dquoted(struct parse_context *ctx,
4330 o_string *dest,
4331 struct in_str *input,
4332 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004333{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004334 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004335 int next;
4336
4337 again:
4338 ch = i_getch(input);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004339#if !BB_MMU
4340 if (ctx && ch != EOF)
4341 o_addchr(&ctx->as_string, ch);
4342#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004343 if (ch == dquote_end) { /* may be only '"' or EOF */
4344 dest->nonnull = 1;
4345 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004346 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004347 debug_printf_parse("parse_stream_dquoted return 0\n");
4348 return 0;
4349 }
4350 if (ch == EOF) {
4351 syntax("unterminated \"");
4352 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4353 return 1;
4354 }
4355 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004356 if (ch != '\n') {
4357 next = i_peek(input);
4358 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004359 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4360 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004361 if (ch == '\\') {
4362 if (next == EOF) {
4363 syntax("\\<eof>");
4364 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4365 return 1;
4366 }
4367 /* bash:
4368 * "The backslash retains its special meaning [in "..."]
4369 * only when followed by one of the following characters:
4370 * $, `, ", \, or <newline>. A double quote may be quoted
4371 * within double quotes by preceding it with a backslash.
4372 * If enabled, history expansion will be performed unless
4373 * an ! appearing in double quotes is escaped using
4374 * a backslash. The backslash preceding the ! is not removed."
4375 */
4376 if (strchr("$`\"\\", next) != NULL) {
4377 o_addqchr(dest, i_getch(input));
4378 } else {
4379 o_addqchr(dest, '\\');
4380 }
4381 goto again;
4382 }
4383 if (ch == '$') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004384 if (handle_dollar(ctx, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004385 debug_printf_parse("parse_stream_dquoted return 1: "
4386 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004387 return 1;
4388 }
4389 goto again;
4390 }
4391#if ENABLE_HUSH_TICK
4392 if (ch == '`') {
4393 //int pos = dest->length;
4394 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4395 o_addchr(dest, 0x80 | '`');
4396 add_till_backquote(dest, input);
4397 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4398 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004399 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004400 }
4401#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004402 o_addQchr(dest, ch);
4403 if (ch == '='
4404 && (dest->o_assignment == MAYBE_ASSIGNMENT
4405 || dest->o_assignment == WORD_IS_KEYWORD)
4406 && is_assignment(dest->data)
4407 ) {
4408 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4409 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004410 goto again;
4411}
4412
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004413/*
4414 * Scan input until EOF or end_trigger char.
4415 * Return a list of pipes to execute, or NULL on EOF
4416 * or if end_trigger character is met.
4417 * On syntax error, exit is shell is not interactive,
4418 * reset parsing machinery and start parsing anew,
4419 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004420 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004421static struct pipe *parse_stream(char **pstring,
4422 struct in_str *input,
4423 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004424{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004425 struct parse_context ctx;
4426 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004427 int is_in_dquote;
Eric Andersen25f27032001-04-26 23:22:31 +00004428
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004429 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004430 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004431 * found. When recursing, quote state is passed in via dest->o_escape.
4432 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004433 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4434 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004435
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004436 G.ifs = get_local_var_value("IFS");
4437 if (G.ifs == NULL)
4438 G.ifs = " \t\n";
4439
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004440 reset:
4441#if ENABLE_HUSH_INTERACTIVE
4442 input->promptmode = 0; /* PS1 */
4443#endif
4444 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4445 initialize_context(&ctx);
4446 is_in_dquote = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004447 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004448 const char *is_ifs;
4449 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004450 int ch;
4451 int next;
4452 int redir_fd;
4453 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004454
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004455 if (is_in_dquote) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004456 if (parse_stream_dquoted(&ctx, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004457 goto parse_error;
4458 }
4459 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004460 is_in_dquote = 0;
4461 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004462 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004463 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4464 ch, ch, dest.o_escape);
4465 if (ch == EOF) {
4466 struct pipe *pi;
4467 if (done_word(&dest, &ctx)) {
4468 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004469 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004470 o_free(&dest);
4471 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004472 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004473 /* If we got nothing... */
4474// TODO: test script consisting of just "&"
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004475 if (pi->num_cmds == 0
4476 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4477 ) {
4478 free_pipe_list(pi, 0);
4479 pi = NULL;
4480 }
4481 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004482#if !BB_MMU
4483 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4484 if (pstring)
4485 *pstring = ctx.as_string.data;
4486 else
4487 o_free_unsafe(&ctx.as_string);
4488#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004489 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004490 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004491#if !BB_MMU
4492 o_addchr(&ctx.as_string, ch);
4493#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004494 is_ifs = strchr(G.ifs, ch);
4495 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4496 "\\$\"" USE_HUSH_TICK("`") /* always special */
4497 , ch);
4498
4499 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004500 o_addQchr(&dest, ch);
4501 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4502 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004503 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004504 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004505 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004506 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004507 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004508 continue;
4509 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004510
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004511 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004512 if (done_word(&dest, &ctx)) {
4513 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004514 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004515 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004516#if ENABLE_HUSH_CASE
4517 /* "case ... in <newline> word) ..." -
4518 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004519 if (ctx.command->argv == NULL
4520 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004521 ) {
4522 continue;
4523 }
4524#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004525 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004526 done_pipe(&ctx, PIPE_SEQ);
4527 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004528 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004529 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004530 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004531 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004532 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004533 if (end_trigger && end_trigger == ch) {
4534//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004535 if (done_word(&dest, &ctx)) {
4536 goto parse_error;
4537 }
4538 done_pipe(&ctx, PIPE_SEQ);
4539 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004540 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004541 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004542 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004543 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004544 debug_printf_parse("parse_stream return %p: "
4545 "end_trigger char found\n",
4546 ctx.list_head);
4547 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004548#if !BB_MMU
4549 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
4550 if (pstring)
4551 *pstring = ctx.as_string.data;
4552 else
4553 o_free_unsafe(&ctx.as_string);
4554#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004555 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004556 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004557 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004558 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004559 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004560
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004561 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004562 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004563 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004564 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004565 }
4566
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004567 next = '\0';
4568 if (ch != '\n') {
4569 next = i_peek(input);
4570 }
4571
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004572 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004573 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004574 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004575 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004576 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004577 if (ch == EOF || ch == '\n')
4578 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004579 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004580 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004581 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004582#if !BB_MMU
4583//TODO: go back one char?
4584 o_addchr(&ctx.as_string, '\n');
4585#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004586 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004587 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004588 }
4589 break;
4590 case '\\':
4591 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004592 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004593 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004594 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004595 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004596 ch = i_getch(input);
4597 o_addchr(&dest, ch);
4598#if !BB_MMU
4599 o_addchr(&ctx.as_string, ch);
4600#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004601 break;
4602 case '$':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004603//NOMMU TODO!
4604 if (handle_dollar(&ctx, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004605 debug_printf_parse("parse_stream parse error: "
4606 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004607 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004608 }
Eric Andersen25f27032001-04-26 23:22:31 +00004609 break;
4610 case '\'':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004611 dest.nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004612 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004613 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004614 if (ch == EOF) {
4615 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004616 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004617 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004618#if !BB_MMU
4619 o_addchr(&ctx.as_string, ch);
4620#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004621 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004622 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004623 if (dest.o_assignment == NOT_ASSIGNMENT)
4624 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004625 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004626 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004627 }
Eric Andersen25f27032001-04-26 23:22:31 +00004628 break;
4629 case '"':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004630 dest.nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004631 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004632 if (dest.o_assignment == NOT_ASSIGNMENT)
4633 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004634 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004635#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004636 case '`': {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004637 //int pos = dest.length;
4638 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4639 o_addchr(&dest, '`');
4640 add_till_backquote(&dest, input);
4641 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4642 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004643 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004644 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004645#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004646 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004647 redir_fd = redirect_opt_num(&dest);
4648 if (done_word(&dest, &ctx)) {
4649 goto parse_error;
4650 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004651 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004652 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004653 redir_style = REDIRECT_APPEND;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004654 ch = i_getch(input);
4655#if !BB_MMU
4656 o_addchr(&ctx.as_string, ch);
4657#endif
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004658 }
4659#if 0
4660 else if (next == '(') {
4661 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004662 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004663 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004664#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004665 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004666 break;
4667 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004668 redir_fd = redirect_opt_num(&dest);
4669 if (done_word(&dest, &ctx)) {
4670 goto parse_error;
4671 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004672 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004673 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004674 redir_style = REDIRECT_HEREIS;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004675 ch = i_getch(input);
4676#if !BB_MMU
4677 o_addchr(&ctx.as_string, ch);
4678#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004679 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004680 redir_style = REDIRECT_IO;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004681 ch = i_getch(input);
4682#if !BB_MMU
4683 o_addchr(&ctx.as_string, ch);
4684#endif
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004685 }
4686#if 0
4687 else if (next == '(') {
4688 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004689 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004690 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004691#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004692 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004693 break;
4694 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004695#if ENABLE_HUSH_CASE
4696 case_semi:
4697#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004698 if (done_word(&dest, &ctx)) {
4699 goto parse_error;
4700 }
4701 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004702#if ENABLE_HUSH_CASE
4703 /* Eat multiple semicolons, detect
4704 * whether it means something special */
4705 while (1) {
4706 ch = i_peek(input);
4707 if (ch != ';')
4708 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004709 ch = i_getch(input);
4710#if !BB_MMU
4711 o_addchr(&ctx.as_string, ch);
4712#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004713 if (ctx.ctx_res_w == RES_CASEI) {
4714 ctx.ctx_dsemicolon = 1;
4715 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004716 break;
4717 }
4718 }
4719#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004720 new_cmd:
4721 /* We just finished a cmd. New one may start
4722 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004723 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004724 break;
4725 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004726 if (done_word(&dest, &ctx)) {
4727 goto parse_error;
4728 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004729 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004730 ch = i_getch(input);
4731#if !BB_MMU
4732 o_addchr(&ctx.as_string, ch);
4733#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004734 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004735 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004736 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004737 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004738 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004739 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004740 if (done_word(&dest, &ctx)) {
4741 goto parse_error;
4742 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004743#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004744 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004745 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004746#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004747 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004748 ch = i_getch(input);
4749#if !BB_MMU
4750 o_addchr(&ctx.as_string, ch);
4751#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004752 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004753 } else {
4754 /* we could pick up a file descriptor choice here
4755 * with redirect_opt_num(), but bash doesn't do it.
4756 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004757 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004758 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004759 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004760 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004761#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004762 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004763 if (ctx.ctx_res_w == RES_MATCH
4764 && ctx.command->argv == NULL /* not (word|(... */
4765 && dest.length == 0 /* not word(... */
4766 && dest.nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004767 ) {
4768 continue;
4769 }
4770#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004771#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004772 if (dest.length != 0 /* not just () but word() */
4773 && dest.nonnull == 0 /* not a"b"c() */
4774 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004775//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004776 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004777 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004778 ) {
4779 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004780 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004781//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004782 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004783//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004784 ch = i_getch(input);
4785 } while (ch == ' ' || ch == '\n');
4786 if (ch != '{') {
4787 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004788 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004789 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004790 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004791 }
4792#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004793 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004794 if (parse_group(&dest, &ctx, input, ch) != 0) {
4795 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004796 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004797 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004798 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004799#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004800 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004801 goto case_semi;
4802#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004803 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004804 /* proper use of this character is caught by end_trigger:
4805 * if we see {, we call parse_group(..., end_trigger='}')
4806 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004807 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004808 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004809 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004810 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004811 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004812 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004813 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004814
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004815 parse_error:
4816 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004817 struct parse_context *pctx;
4818 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004819
4820 /* Clean up allocated tree.
4821 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004822 * Run them from interactive shell, watch pmap `pidof hush`.
4823 * while if false; then false; fi do break; done
4824 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004825 * while if false; then false; fi; do break; fi
4826 */
4827 pctx = &ctx;
4828 do {
4829 /* Update pipe/command counts,
4830 * otherwise freeing may miss some */
4831 done_pipe(pctx, PIPE_SEQ);
4832 debug_printf_clean("freeing list %p from ctx %p\n",
4833 pctx->list_head, pctx);
4834 debug_print_tree(pctx->list_head, 0);
4835 free_pipe_list(pctx->list_head, 0);
4836 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004837#if !BB_MMU
4838 o_free_unsafe(&pctx->as_string);
4839#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004840 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004841 if (pctx != &ctx) {
4842 free(pctx);
4843 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004844 IF_HAS_KEYWORDS(pctx = p2;)
4845 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004846 /* Free text, clear all dest fields */
4847 o_free(&dest);
4848 /* If we are not in top-level parse, we return,
4849 * our caller will propagate error.
4850 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004851 if (end_trigger != ';') {
4852#if !BB_MMU
4853 if (pstring)
4854 *pstring = NULL;
4855#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004856 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004857 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004858 /* Discard cached input, force prompt */
4859 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004860 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004861 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004862 }
Eric Andersen25f27032001-04-26 23:22:31 +00004863}
4864
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004865/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004866 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
4867 * end_trigger controls how often we stop parsing
4868 * NUL: parse all, execute, return
4869 * ';': parse till ';' or newline, execute, repeat till EOF
4870 */
4871static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004872{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004873 while (1) {
4874 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004875
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004876 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004877 if (!pipe_list) /* EOF */
4878 break;
4879 debug_print_tree(pipe_list, 0);
4880 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
4881 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004882 }
Eric Andersen25f27032001-04-26 23:22:31 +00004883}
4884
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004885static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004886{
4887 struct in_str input;
4888 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004889 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00004890}
4891
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004892static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00004893{
Eric Andersen25f27032001-04-26 23:22:31 +00004894 struct in_str input;
4895 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004896 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00004897}
4898
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004899#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00004900/* Make sure we have a controlling tty. If we get started under a job
4901 * aware app (like bash for example), make sure we are now in charge so
4902 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00004903static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00004904{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004905 pid_t shell_pgrp;
4906
Denis Vlasenko87a86552008-07-29 19:43:10 +00004907 shell_pgrp = getpgrp();
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004908
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004909 /* If we were ran as 'hush &',
4910 * sleep until we are in the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004911 while (tcgetpgrp(G_interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004912 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00004913 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004914 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004915 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00004916
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004917 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004918 set_fatal_signals_to_sigexit();
Eric Andersen6c947d22001-06-25 22:24:38 +00004919
4920 /* Put ourselves in our own process group. */
Bernhard Reutner-Fischer864329d2008-09-25 10:55:05 +00004921 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00004922 /* Grab control of the terminal. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004923 tcsetpgrp(G_interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00004924}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004925#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00004926
Denis Vlasenkod5762932009-03-31 11:22:57 +00004927static int set_mode(const char cstate, const char mode)
4928{
4929 int state = (cstate == '-' ? 1 : 0);
4930 switch (mode) {
4931 case 'n': G.fake_mode = state; break;
4932 case 'x': /*G.debug_mode = state;*/ break;
4933 default: return EXIT_FAILURE;
4934 }
4935 return EXIT_SUCCESS;
4936}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004937
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00004938int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00004939int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00004940{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004941 static const struct variable const_shell_ver = {
4942 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004943 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004944 .max_len = 1, /* 0 can provoke free(name) */
4945 .flg_export = 1,
4946 .flg_read_only = 1,
4947 };
4948
Eric Andersen25f27032001-04-26 23:22:31 +00004949 int opt;
4950 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004951 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004952 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00004953
Denis Vlasenko574f2f42008-02-27 18:41:59 +00004954 INIT_G();
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004955
Denis Vlasenko87a86552008-07-29 19:43:10 +00004956 G.root_pid = getpid();
Denis Vlasenko16c2fea2008-06-17 12:28:44 +00004957
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004958 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004959 G.shell_ver = const_shell_ver; /* copying struct here */
4960 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004961 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004962 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
4963 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004964 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004965 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004966 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004967 if (e) while (*e) {
4968 char *value = strchr(*e, '=');
4969 if (value) { /* paranoia */
4970 cur_var->next = xzalloc(sizeof(*cur_var));
4971 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004972 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004973 cur_var->max_len = strlen(*e);
4974 cur_var->flg_export = 1;
4975 }
4976 e++;
4977 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004978 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004979 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004980
Denis Vlasenko38f63192007-01-22 09:03:07 +00004981#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00004982 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00004983#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004984 /* XXX what should these be while sourcing /etc/profile? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004985 G.global_argc = argc;
4986 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00004987 /* Initialize some more globals to non-zero values */
4988 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004989#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00004990 if (ENABLE_FEATURE_EDITING)
4991 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004992 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004993#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004994
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004995 if (EXIT_SUCCESS) /* otherwise is already done */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004996 G.last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00004997
4998 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004999 debug_printf("sourcing /etc/profile\n");
Denis Vlasenko5415c852008-07-21 23:05:26 +00005000 input = fopen_for_read("/etc/profile");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00005001 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00005002 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00005003 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00005004 fclose(input);
5005 }
Eric Andersen25f27032001-04-26 23:22:31 +00005006 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005007 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005008
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005009 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005010 while (1) {
5011 opt = getopt(argc, argv, "c:xins"
5012#if !BB_MMU
Denis Vlasenko16a0c742009-04-05 01:46:59 +00005013 "$:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005014#endif
5015 );
5016 if (opt <= 0)
5017 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005018 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005019 case 'c':
Denis Vlasenko87a86552008-07-29 19:43:10 +00005020 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005021 if (!argv[optind]) {
5022 /* -c 'script' (no params): prevent empty $0 */
5023 *--G.global_argv = argv[0];
5024 optind--;
5025 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005026 G.global_argc = argc - optind;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005027 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005028 goto final_return;
5029 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005030 /* Well, we cannot just declare interactiveness,
5031 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005032 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005033 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005034 case 's':
5035 /* "-s" means "read from stdin", but this is how we always
5036 * operate, so simply do nothing here. */
5037 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005038#if !BB_MMU
5039 case '$':
5040 G.root_pid = xatoi_u(optarg);
5041 break;
5042 case '?':
5043 G.last_return_code = xatoi_u(optarg);
5044 break;
Denis Vlasenko16a0c742009-04-05 01:46:59 +00005045 case 'D':
5046 G.depth_of_loop = xatoi_u(optarg);
5047 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005048 case 'R':
5049 case 'V':
5050 set_local_var(xstrdup(optarg), 0, opt == 'R');
5051 break;
5052#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005053 case 'n':
5054 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005055 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005056 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005057 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005058#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005059 fprintf(stderr, "Usage: sh [FILE]...\n"
5060 " or: sh -c command [args]...\n\n");
5061 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005062#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005063 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005064#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005065 }
5066 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005067#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005068 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005069 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005070 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005071 * no arguments remaining or the -s flag given
5072 * standard input is a terminal
5073 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005074 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005075 if (argv[optind] == NULL && input == stdin
5076 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
5077 ) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005078 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
5079 debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp);
5080 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005081 /* try to dup to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005082 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5083 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005084 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005085 G_interactive_fd = dup(STDIN_FILENO);
5086 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005087 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005088 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005089 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00005090 // TODO: track & disallow any attempts of user
5091 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005092 }
Eric Andersen25f27032001-04-26 23:22:31 +00005093 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005094 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005095 debug_printf("interactive_fd=%d\n", G_interactive_fd);
5096 if (G_interactive_fd) {
5097 fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC);
Eric Andersen25f27032001-04-26 23:22:31 +00005098 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00005099 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005100 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005101 * (we reset die_sleep = 0 whereever we [v]fork) */
5102 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005103 if (setjmp(die_jmp)) {
5104 /* xfunc has failed! die die die */
5105 hush_exit(xfunc_error_retval);
5106 }
Eric Andersenada18ff2001-05-21 16:18:22 +00005107 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005108#elif ENABLE_HUSH_INTERACTIVE
5109/* no job control compiled, only prompt/line editing */
5110 if (argv[optind] == NULL && input == stdin
5111 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
5112 ) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005113 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5114 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005115 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005116 G_interactive_fd = dup(STDIN_FILENO);
5117 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005118 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005119 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005120 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005121 if (G_interactive_fd) {
5122 fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko4830fc52008-05-25 21:50:55 +00005123 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005124 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005125 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005126#else
5127 init_signal_mask();
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005128#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005129 /* POSIX allows shell to re-enable SIGCHLD
5130 * even if it was SIG_IGN on entry */
5131// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5132 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00005133
Denis Vlasenko701ac182009-03-28 19:22:08 +00005134#if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005135 if (G_interactive_fd) {
Mike Frysingerb2705e12009-03-23 08:44:02 +00005136 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
5137 printf("Enter 'help' for a list of built-in commands.\n\n");
5138 }
Denis Vlasenko701ac182009-03-28 19:22:08 +00005139#endif
Mike Frysingerb2705e12009-03-23 08:44:02 +00005140
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005141 if (argv[optind] == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005142 parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00005143 } else {
5144 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005145 G.global_argv = argv + optind;
5146 G.global_argc = argc - optind;
Denis Vlasenko5415c852008-07-21 23:05:26 +00005147 input = xfopen_for_read(argv[optind]);
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00005148 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005149 parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00005150 }
Eric Andersen25f27032001-04-26 23:22:31 +00005151
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005152 final_return:
5153
Denis Vlasenko38f63192007-01-22 09:03:07 +00005154#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00005155 fclose(input);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005156 if (G.cwd != bb_msg_unknown)
5157 free((char*)G.cwd);
5158 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005159 while (cur_var) {
5160 struct variable *tmp = cur_var;
5161 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005162 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005163 cur_var = cur_var->next;
5164 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005165 }
Eric Andersen25f27032001-04-26 23:22:31 +00005166#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005167 hush_exit(G.last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00005168}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005169
5170
5171#if ENABLE_LASH
5172int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5173int lash_main(int argc, char **argv)
5174{
5175 //bb_error_msg("lash is deprecated, please use hush instead");
5176 return hush_main(argc, argv);
5177}
5178#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005179
5180
5181/*
5182 * Built-ins
5183 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005184static int builtin_trap(char **argv)
5185{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005186 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005187 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005188 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005189
5190 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005191 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005192
5193 if (!argv[1]) {
5194 /* No args: print all trapped. This isn't 100% correct as we should
5195 * be escaping the cmd so that it can be pasted back in ...
5196 */
5197 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005198 if (G.traps[i])
5199 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005200 return EXIT_SUCCESS;
5201 }
5202
Denis Vlasenkod5762932009-03-31 11:22:57 +00005203 new_cmd = NULL;
5204 i = 0;
5205 /* if first arg is decimal: reset all specified */
5206 sig = bb_strtou(*++argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005207 if (errno == 0) {
5208 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005209 set_all:
5210 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005211 while (*argv) {
5212 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005213 if (sig < 0 || sig >= NSIG) {
5214 ret = EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005215 /* mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005216 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5217 continue;
5218 }
5219
Denis Vlasenkod5762932009-03-31 11:22:57 +00005220 free(G.traps[sig]);
5221 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005222
Denis Vlasenkod5762932009-03-31 11:22:57 +00005223 debug_printf("trap: setting SIG%s (%i) to '%s'",
5224 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005225
5226 /* There is no signal for 0 (EXIT) */
5227 if (sig == 0)
5228 continue;
5229
5230 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005231 sigaddset(&G.blocked_set, sig);
5232 } else {
5233 /* there was a trap handler, we are removing it
5234 * (if sig has non-DFL handling,
5235 * we don't need to do anything) */
5236 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5237 continue;
5238 sigdelset(&G.blocked_set, sig);
5239 }
5240 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005241 }
5242 return ret;
5243 }
5244
5245 /* first arg is "-": reset all specified to default */
5246 /* first arg is "": ignore all specified */
5247 /* everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005248 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005249 bb_error_msg("trap: invalid arguments");
5250 return EXIT_FAILURE;
5251 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00005252 if (LONE_DASH(*argv))
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005253 /* nothing! */;
5254 else
Denis Vlasenkod5762932009-03-31 11:22:57 +00005255 new_cmd = *argv;
5256 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005257 goto set_all;
5258}
5259
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005260static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005261{
5262 return 0;
5263}
5264
5265static int builtin_test(char **argv)
5266{
5267 int argc = 0;
5268 while (*argv) {
5269 argc++;
5270 argv++;
5271 }
5272 return test_main(argc, argv - argc);
5273}
5274
5275static int builtin_echo(char **argv)
5276{
5277 int argc = 0;
5278 while (*argv) {
5279 argc++;
5280 argv++;
5281 }
5282 return echo_main(argc, argv - argc);
5283}
5284
5285static int builtin_eval(char **argv)
5286{
5287 int rcode = EXIT_SUCCESS;
5288
5289 if (argv[1]) {
5290 char *str = expand_strvec_to_string(argv + 1);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005291 /* bash:
5292 * eval "echo Hi; done" ("done" is syntax error):
5293 * "echo Hi" will not execute too.
5294 */
5295 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005296 free(str);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005297 rcode = G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005298 }
5299 return rcode;
5300}
5301
5302static int builtin_cd(char **argv)
5303{
5304 const char *newdir;
5305 if (argv[1] == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005306 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5307 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5308 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005309 newdir = getenv("HOME") ? : "/";
5310 } else
5311 newdir = argv[1];
5312 if (chdir(newdir)) {
5313 printf("cd: %s: %s\n", newdir, strerror(errno));
5314 return EXIT_FAILURE;
5315 }
5316 set_cwd();
5317 return EXIT_SUCCESS;
5318}
5319
5320static int builtin_exec(char **argv)
5321{
5322 if (argv[1] == NULL)
5323 return EXIT_SUCCESS; /* bash does this */
5324 {
5325#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005326 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005327#endif
5328// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005329 pseudo_exec_argv(&dummy, argv + 1, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005330 /* never returns */
5331 }
5332}
5333
5334static int builtin_exit(char **argv)
5335{
5336// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5337 //puts("exit"); /* bash does it */
5338// TODO: warn if we have background jobs: "There are stopped jobs"
5339// On second consecutive 'exit', exit anyway.
5340 if (argv[1] == NULL)
Denis Vlasenko87a86552008-07-29 19:43:10 +00005341 hush_exit(G.last_return_code);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005342 /* mimic bash: exit 123abc == exit 255 + error msg */
5343 xfunc_error_retval = 255;
5344 /* bash: exit -2 == exit 254, no error msg */
5345 hush_exit(xatoi(argv[1]) & 0xff);
5346}
5347
5348static int builtin_export(char **argv)
5349{
5350 const char *value;
5351 char *name = argv[1];
5352
5353 if (name == NULL) {
5354 // TODO:
5355 // ash emits: export VAR='VAL'
5356 // bash: declare -x VAR="VAL"
5357 // (both also escape as needed (quotes, $, etc))
5358 char **e = environ;
5359 if (e)
5360 while (*e)
5361 puts(*e++);
5362 return EXIT_SUCCESS;
5363 }
5364
5365 value = strchr(name, '=');
5366 if (!value) {
5367 /* They are exporting something without a =VALUE */
5368 struct variable *var;
5369
5370 var = get_local_var(name);
5371 if (var) {
5372 var->flg_export = 1;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005373 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005374 putenv(var->varstr);
5375 }
5376 /* bash does not return an error when trying to export
5377 * an undefined variable. Do likewise. */
5378 return EXIT_SUCCESS;
5379 }
5380
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005381 set_local_var(xstrdup(name), 1, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005382 return EXIT_SUCCESS;
5383}
5384
5385#if ENABLE_HUSH_JOB
5386/* built-in 'fg' and 'bg' handler */
5387static int builtin_fg_bg(char **argv)
5388{
5389 int i, jobnum;
5390 struct pipe *pi;
5391
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005392 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005393 return EXIT_FAILURE;
5394 /* If they gave us no args, assume they want the last backgrounded task */
5395 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005396 for (pi = G.job_list; pi; pi = pi->next) {
5397 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005398 goto found;
5399 }
5400 }
5401 bb_error_msg("%s: no current job", argv[0]);
5402 return EXIT_FAILURE;
5403 }
5404 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5405 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5406 return EXIT_FAILURE;
5407 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005408 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005409 if (pi->jobid == jobnum) {
5410 goto found;
5411 }
5412 }
5413 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5414 return EXIT_FAILURE;
5415 found:
5416 // TODO: bash prints a string representation
5417 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005418 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005419 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005420 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005421 }
5422
5423 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005424 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5425 for (i = 0; i < pi->num_cmds; i++) {
5426 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5427 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005428 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005429 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005430
5431 i = kill(- pi->pgrp, SIGCONT);
5432 if (i < 0) {
5433 if (errno == ESRCH) {
5434 delete_finished_bg_job(pi);
5435 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005436 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005437 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005438 }
5439
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005440 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005441 remove_bg_job(pi);
5442 return checkjobs_and_fg_shell(pi);
5443 }
5444 return EXIT_SUCCESS;
5445}
5446#endif
5447
5448#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005449static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005450{
5451 const struct built_in_command *x;
5452
Denis Vlasenko34d4d892009-04-04 20:24:37 +00005453 printf("\n"
5454 "Built-in commands:\n"
5455 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005456 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5457 printf("%s\t%s\n", x->cmd, x->descr);
5458 }
5459 printf("\n\n");
5460 return EXIT_SUCCESS;
5461}
5462#endif
5463
5464#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005465static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005466{
5467 struct pipe *job;
5468 const char *status_string;
5469
Denis Vlasenko87a86552008-07-29 19:43:10 +00005470 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005471 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005472 status_string = "Stopped";
5473 else
5474 status_string = "Running";
5475
5476 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5477 }
5478 return EXIT_SUCCESS;
5479}
5480#endif
5481
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005482static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005483{
5484 puts(set_cwd());
5485 return EXIT_SUCCESS;
5486}
5487
5488static int builtin_read(char **argv)
5489{
5490 char *string;
5491 const char *name = argv[1] ? argv[1] : "REPLY";
5492
5493 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005494 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005495}
5496
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005497/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5498 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005499 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005500 * set [-abCefhmnuvx] [-o option] [argument...]
5501 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005502 * set -- [argument...]
5503 * set -o
5504 * set +o
5505 * Implementations shall support the options in both their hyphen and
5506 * plus-sign forms. These options can also be specified as options to sh.
5507 * Examples:
5508 * Write out all variables and their values: set
5509 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5510 * Turn on the -x and -v options: set -xv
5511 * Unset all positional parameters: set --
5512 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5513 * Set the positional parameters to the expansion of x, even if x expands
5514 * with a leading '-' or '+': set -- $x
5515 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005516 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005517 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005518static int builtin_set(char **argv)
5519{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005520 int n;
5521 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005522 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005523
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005524 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005525 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005526 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005527 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005528 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005529 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005530
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005531 do {
5532 if (!strcmp(arg, "--")) {
5533 ++argv;
5534 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005535 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005536
5537 if (arg[0] == '+' || arg[0] == '-') {
5538 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005539 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005540 goto error;
5541 continue;
5542 }
5543
5544 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005545 } while ((arg = *++argv) != NULL);
5546 /* Now argv[0] is 1st argument */
5547
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005548 /* Only reset global_argv if we didn't process anything */
5549 if (arg == NULL)
5550 return EXIT_SUCCESS;
5551 set_argv:
5552
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005553 /* NB: G.global_argv[0] ($0) is never freed/changed */
5554 g_argv = G.global_argv;
5555 if (G.global_args_malloced) {
5556 pp = g_argv;
5557 while (*++pp)
5558 free(*pp);
5559 g_argv[1] = NULL;
5560 } else {
5561 G.global_args_malloced = 1;
5562 pp = xzalloc(sizeof(pp[0]) * 2);
5563 pp[0] = g_argv[0]; /* retain $0 */
5564 g_argv = pp;
5565 }
5566 /* This realloc's G.global_argv */
5567 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5568
5569 n = 1;
5570 while (*++pp)
5571 n++;
5572 G.global_argc = n;
5573
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005574 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005575
5576 /* Nothing known, so abort */
5577 error:
5578 bb_error_msg("set: %s: invalid option", arg);
5579 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005580}
5581
5582static int builtin_shift(char **argv)
5583{
5584 int n = 1;
5585 if (argv[1]) {
5586 n = atoi(argv[1]);
5587 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005588 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005589 if (G.global_args_malloced) {
5590 int m = 1;
5591 while (m <= n)
5592 free(G.global_argv[m++]);
5593 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005594 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005595 memmove(&G.global_argv[1], &G.global_argv[n+1],
5596 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005597 return EXIT_SUCCESS;
5598 }
5599 return EXIT_FAILURE;
5600}
5601
5602static int builtin_source(char **argv)
5603{
5604 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005605
5606 if (argv[1] == NULL)
5607 return EXIT_FAILURE;
5608
5609 /* XXX search through $PATH is missing */
Denis Vlasenko5415c852008-07-21 23:05:26 +00005610 input = fopen_for_read(argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005611 if (!input) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00005612 bb_error_msg("can't open '%s'", argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005613 return EXIT_FAILURE;
5614 }
5615 close_on_exec_on(fileno(input));
5616
5617 /* Now run the file */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005618 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005619 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00005620 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005621 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005622 fclose(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005623 return G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005624}
5625
5626static int builtin_umask(char **argv)
5627{
5628 mode_t new_umask;
5629 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005630 if (arg) {
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005631 new_umask = bb_strtou(arg, NULL, 8);
5632 if (errno)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005633 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005634 } else {
5635 new_umask = umask(0);
5636 printf("%.3o\n", (unsigned) new_umask);
5637 }
5638 umask(new_umask);
5639 return EXIT_SUCCESS;
5640}
5641
Mike Frysingerd690f682009-03-30 06:50:54 +00005642/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005643static int builtin_unset(char **argv)
5644{
Mike Frysingerd690f682009-03-30 06:50:54 +00005645 size_t i;
5646 int ret;
5647 bool var = true;
5648
5649 if (!argv[1])
5650 return EXIT_SUCCESS;
5651
5652 i = 0;
5653 if (argv[1][0] == '-') {
5654 switch (argv[1][1]) {
5655 case 'v': break;
5656 case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; }
5657 default:
5658 bb_error_msg("unset: %s: invalid option", argv[1]);
5659 return EXIT_FAILURE;
5660 }
5661 ++i;
5662 }
5663
5664 ret = EXIT_SUCCESS;
5665 while (argv[++i]) {
5666 if (var) {
5667 if (unset_local_var(argv[i]))
5668 ret = EXIT_FAILURE;
5669 }
5670#if ENABLE_HUSH_FUNCTIONS
5671 else
5672 unset_local_func(argv[i]);
5673#endif
5674 }
5675 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005676}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005677
Mike Frysinger56bdea12009-03-28 20:01:58 +00005678/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
5679static int builtin_wait(char **argv)
5680{
5681 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005682 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005683
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005684 if (*++argv == NULL) {
5685 /* Don't care about wait results */
5686 /* Note 1: must wait until there are no more children */
5687 /* Note 2: must be interruptible */
5688 /* Examples:
5689 * $ sleep 3 & sleep 6 & wait
5690 * [1] 30934 sleep 3
5691 * [2] 30935 sleep 6
5692 * [1] Done sleep 3
5693 * [2] Done sleep 6
5694 * $ sleep 3 & sleep 6 & wait
5695 * [1] 30936 sleep 3
5696 * [2] 30937 sleep 6
5697 * [1] Done sleep 3
5698 * ^C <-- after ~4 sec from keyboard
5699 * $
5700 */
5701 sigaddset(&G.blocked_set, SIGCHLD);
5702 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5703 while (1) {
5704 checkjobs(NULL);
5705 if (errno == ECHILD)
5706 break;
5707 /* Wait for SIGCHLD or any other signal of interest */
5708 /* sigtimedwait with infinite timeout: */
5709 sig = sigwaitinfo(&G.blocked_set, NULL);
5710 if (sig > 0) {
5711 sig = check_and_run_traps(sig);
5712 if (sig && sig != SIGCHLD) { /* see note 2 */
5713 ret = 128 + sig;
5714 break;
5715 }
5716 }
5717 }
5718 sigdelset(&G.blocked_set, SIGCHLD);
5719 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5720 return ret;
5721 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00005722
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005723 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005724 while (*argv) {
5725 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005726 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005727 /* mimic bash message */
5728 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005729 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005730 }
5731 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00005732 if (WIFSIGNALED(status))
5733 ret = 128 + WTERMSIG(status);
5734 else if (WIFEXITED(status))
5735 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00005736 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00005737 ret = EXIT_FAILURE;
5738 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005739 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005740 ret = 127;
5741 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00005742 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005743 }
5744
5745 return ret;
5746}
5747
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005748#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005749static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005750{
Denis Vlasenko87a86552008-07-29 19:43:10 +00005751 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005752 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005753 return EXIT_SUCCESS; /* bash compat */
5754 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005755 G.flag_break_continue++; /* BC_BREAK = 1 */
5756 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005757 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005758 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
5759 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005760 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005761 G.flag_break_continue = BC_BREAK;
5762 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005763 }
5764 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005765 if (G.depth_of_loop < G.depth_break_continue)
5766 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005767 return EXIT_SUCCESS;
5768}
5769
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005770static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005771{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005772 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
5773 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005774}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005775#endif