blob: 0ac42c90bab7bbaa361edb605aad50f5be2cbe12 [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
Denis Vlasenko17f02e72008-07-14 04:32:29 +000076
Mike Frysinger98c52642009-04-02 10:02:37 +000077#include "math.h"
78
Denis Vlasenko424f79b2009-03-22 14:23:34 +000079#define HUSH_VER_STR "0.92"
Denis Vlasenkod01ff132007-05-02 21:40:23 +000080
Denis Vlasenko61befda2008-11-25 01:36:03 +000081#if defined SINGLE_APPLET_MAIN
82/* STANDALONE does not make sense, and won't compile */
83#undef CONFIG_FEATURE_SH_STANDALONE
84#undef ENABLE_FEATURE_SH_STANDALONE
85#undef USE_FEATURE_SH_STANDALONE
86#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
87#define ENABLE_FEATURE_SH_STANDALONE 0
88#define USE_FEATURE_SH_STANDALONE(...)
89#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
90#endif
91
Denis Vlasenko05743d72008-02-10 12:10:08 +000092#if !ENABLE_HUSH_INTERACTIVE
93#undef ENABLE_FEATURE_EDITING
94#define ENABLE_FEATURE_EDITING 0
95#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
96#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +000097#endif
98
Denis Vlasenko424f79b2009-03-22 14:23:34 +000099/* Do we support ANY keywords? */
100#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
101#define HAS_KEYWORDS 1
102#define IF_HAS_KEYWORDS(...) __VA_ARGS__
103#define IF_HAS_NO_KEYWORDS(...)
104#else
105#define HAS_KEYWORDS 0
106#define IF_HAS_KEYWORDS(...)
107#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
108#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000109
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000110/* Keep unconditionally on for now */
111#define HUSH_DEBUG 1
112/* In progress... */
113#define ENABLE_HUSH_FUNCTIONS 0
114
115
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000116/* If you comment out one of these below, it will be #defined later
117 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000118#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000119/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000120#define debug_printf_parse(...) do {} while (0)
121#define debug_print_tree(a, b) do {} while (0)
122#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000123#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000124#define debug_printf_jobs(...) do {} while (0)
125#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000126#define debug_printf_glob(...) do {} while (0)
127#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000128#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000129#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000130
131#ifndef debug_printf
132#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000133#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000134
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000135#ifndef debug_printf_parse
136#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000137#endif
138
139#ifndef debug_printf_exec
140#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
141#endif
142
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000143#ifndef debug_printf_env
144#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
145#endif
146
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000147#ifndef debug_printf_jobs
148#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000149#define DEBUG_JOBS 1
150#else
151#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000152#endif
153
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000154#ifndef debug_printf_expand
155#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
156#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000157#else
158#define DEBUG_EXPAND 0
159#endif
160
161#ifndef debug_printf_glob
162#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
163#define DEBUG_GLOB 1
164#else
165#define DEBUG_GLOB 0
166#endif
167
168#ifndef debug_printf_list
169#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000170#endif
171
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000172#ifndef debug_printf_subst
173#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
174#endif
175
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000176#ifndef debug_printf_clean
177/* broken, of course, but OK for testing */
178static const char *indenter(int i)
179{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000180 static const char blanks[] ALIGN1 =
181 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000182 return &blanks[sizeof(blanks) - i - 1];
183}
184#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000185#define DEBUG_CLEAN 1
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000186#endif
187
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000188#if DEBUG_EXPAND
189static void debug_print_strings(const char *prefix, char **vv)
190{
191 fprintf(stderr, "%s:\n", prefix);
192 while (*vv)
193 fprintf(stderr, " '%s'\n", *vv++);
194}
195#else
196#define debug_print_strings(prefix, vv) ((void)0)
197#endif
198
Denis Vlasenkof962a032007-11-23 12:50:54 +0000199/*
200 * Leak hunting. Use hush_leaktool.sh for post-processing.
201 */
202#ifdef FOR_HUSH_LEAKTOOL
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000203static void *xxmalloc(int lineno, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000204{
205 void *ptr = xmalloc((size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000206 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000207 return ptr;
208}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000209static void *xxrealloc(int lineno, void *ptr, size_t size)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000210{
211 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000212 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000213 return ptr;
214}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000215static char *xxstrdup(int lineno, const char *str)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000216{
217 char *ptr = xstrdup(str);
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000218 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000219 return ptr;
220}
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000221static void xxfree(void *ptr)
Denis Vlasenkof962a032007-11-23 12:50:54 +0000222{
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000223 fdprintf(2, "free %p\n", ptr);
Denis Vlasenkof962a032007-11-23 12:50:54 +0000224 free(ptr);
225}
226#define xmalloc(s) xxmalloc(__LINE__, s)
227#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
228#define xstrdup(s) xxstrdup(__LINE__, s)
229#define free(p) xxfree(p)
230#endif
231
232
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000233#define ERR_PTR ((void*)(long)1)
234
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000235static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="HUSH_VER_STR;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000236
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000237#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000238
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000239#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000240
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000241typedef enum redir_type {
Eric Andersen25f27032001-04-26 23:22:31 +0000242 REDIRECT_INPUT = 1,
243 REDIRECT_OVERWRITE = 2,
244 REDIRECT_APPEND = 3,
245 REDIRECT_HEREIS = 4,
246 REDIRECT_IO = 5
247} redir_type;
248
Denis Vlasenko55789c62008-06-18 16:30:42 +0000249/* The descrip member of this structure is only used to make
250 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000251static const struct {
252 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000253 signed char default_fd;
254 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000255} redir_table[] = {
Eric Andersen25f27032001-04-26 23:22:31 +0000256 { 0, 0, "()" },
257 { O_RDONLY, 0, "<" },
258 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
259 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
260 { O_RDONLY, -1, "<<" },
261 { O_RDWR, 1, "<>" }
262};
263
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000264typedef enum pipe_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000265 PIPE_SEQ = 1,
266 PIPE_AND = 2,
267 PIPE_OR = 3,
268 PIPE_BG = 4,
269} pipe_style;
270
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000271typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000272 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000273#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000274 RES_IF ,
275 RES_THEN ,
276 RES_ELIF ,
277 RES_ELSE ,
278 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000279#endif
280#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000281 RES_FOR ,
282 RES_WHILE ,
283 RES_UNTIL ,
284 RES_DO ,
285 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000286#endif
287#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000288 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000289#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000290#if ENABLE_HUSH_CASE
291 RES_CASE ,
292 /* two pseudo-keywords support contrived "case" syntax: */
293 RES_MATCH , /* "word)" */
294 RES_CASEI , /* "this command is inside CASE" */
295 RES_ESAC ,
296#endif
297 RES_XXXX ,
298 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000299} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000300
Eric Andersen25f27032001-04-26 23:22:31 +0000301struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000302 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000303 char *rd_filename; /* filename */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000304 int fd; /* file descriptor being redirected */
305 int dup; /* -1, or file descriptor being duplicated */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000306 smallint /*enum redir_type*/ rd_type;
Eric Andersen25f27032001-04-26 23:22:31 +0000307};
308
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000309struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000310 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000311 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000312 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000313 smallint grp_type; /* GRP_xxx */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000314 struct pipe *group; /* if non-NULL, this "prog" is {} group,
315 * subshell, or a compound statement */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000316 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000317 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000318};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000319/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
320 * and on execution these are substituted with their values.
321 * Substitution can make _several_ words out of one argv[n]!
322 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000323 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000324 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000325#define GRP_NORMAL 0
326#define GRP_SUBSHELL 1
327#if ENABLE_HUSH_FUNCTIONS
328#define GRP_FUNCTION 2
329#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000330
331struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000332 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000333 int num_cmds; /* total number of commands in job */
334 int alive_cmds; /* number of commands running (not exited) */
335 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000336#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000337 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000338 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000339 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000340#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000341 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000342 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000343 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
344 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000345};
346
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000347/* This holds pointers to the various results of parsing */
348struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000349 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000350 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000351 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000352 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000353 /* last command in pipe (being constructed right now) */
354 struct command *command;
355 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000356 struct redir_struct *pending_redirect;
357#if HAS_KEYWORDS
358 smallint ctx_res_w;
359 smallint ctx_inverted; /* "! cmd | cmd" */
360#if ENABLE_HUSH_CASE
361 smallint ctx_dsemicolon; /* ";;" seen */
362#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000363 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
364 int old_flag;
365 /* group we are enclosed in:
366 * example 1: "{ { false; ..."
367 * example 2: "if true; then { false; ..."
368 * example 3: "if true; then if false; ..."
369 * when we find closing "}" / "fi" / whatever, we move list_head
370 * into stack->command->group and delete ourself.
371 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000372 struct parse_context *stack;
373#endif
374};
375
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000376/* On program start, environ points to initial environment.
377 * putenv adds new pointers into it, unsetenv removes them.
378 * Neither of these (de)allocates the strings.
379 * setenv allocates new strings in malloc space and does putenv,
380 * and thus setenv is unusable (leaky) for shell's purposes */
381#define setenv(...) setenv_is_leaky_dont_use()
382struct variable {
383 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000384 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000385 int max_len; /* if > 0, name is part of initial env; else name is malloced */
386 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000387 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000388};
389
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000390typedef struct o_string {
Eric Andersen25f27032001-04-26 23:22:31 +0000391 char *data;
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000392 int length; /* position where data is appended */
Eric Andersen25f27032001-04-26 23:22:31 +0000393 int maxlen;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +0000394 /* Protect newly added chars against globbing
395 * (by prepending \ to *, ?, [, \) */
396 smallint o_escape;
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000397 smallint o_glob;
Denis Vlasenkoff097622007-10-01 10:00:45 +0000398 smallint nonnull;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000399 smallint has_empty_slot;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000400 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
Eric Andersen25f27032001-04-26 23:22:31 +0000401} o_string;
Denis Vlasenko55789c62008-06-18 16:30:42 +0000402enum {
403 MAYBE_ASSIGNMENT = 0,
404 DEFINITELY_ASSIGNMENT = 1,
405 NOT_ASSIGNMENT = 2,
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000406 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
Denis Vlasenko55789c62008-06-18 16:30:42 +0000407};
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000408/* Used for initialization: o_string foo = NULL_O_STRING; */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +0000409#define NULL_O_STRING { NULL }
Eric Andersen25f27032001-04-26 23:22:31 +0000410
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000411/* I can almost use ordinary FILE*. Is open_memstream() universally
Eric Andersen25f27032001-04-26 23:22:31 +0000412 * available? Where is it documented? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000413typedef struct in_str {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +0000414 const char *p;
415 /* eof_flag=1: last char in ->p is really an EOF */
416 char eof_flag; /* meaningless if ->p == NULL */
417 char peek_buf[2];
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000418#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000419 smallint promptme;
420 smallint promptmode; /* 0: PS1, 1: PS2 */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000421#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000422 FILE *file;
423 int (*get) (struct in_str *);
424 int (*peek) (struct in_str *);
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000425} in_str;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +0000426#define i_getch(input) ((input)->get(input))
427#define i_peek(input) ((input)->peek(input))
Eric Andersen25f27032001-04-26 23:22:31 +0000428
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000429enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000430 BC_BREAK = 1,
431 BC_CONTINUE = 2,
432};
433
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000434
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000435/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000436/* Sorted roughly by size (smaller offsets == smaller code) */
437struct globals {
438#if ENABLE_HUSH_INTERACTIVE
439 /* 'interactive_fd' is a fd# open to ctty, if we have one
440 * _AND_ if we decided to act interactively */
441 int interactive_fd;
442 const char *PS1;
443 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000444#define G_interactive_fd (G.interactive_fd)
445#else
446#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000447#endif
448#if ENABLE_FEATURE_EDITING
449 line_input_t *line_input_state;
450#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000451 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000452 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000453#if ENABLE_HUSH_JOB
454 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000455 pid_t saved_tty_pgrp;
456 int last_jobid;
457 struct pipe *job_list;
458 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000459//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000460#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000461 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000462#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000463 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000464#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000465 smallint fake_mode;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000466 /* These four support $?, $#, and $1 */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +0000467 smalluint last_return_code;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000468 /* is global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000469 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000470 /* how many non-NULL argv's we have. NB: $# + 1 */
471 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000472 char **global_argv;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000473#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000474 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000475 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000476#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000477 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000478 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000479 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000480 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000481 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000482// unsigned count_SIGCHLD;
483// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000484 /* which signals have non-DFL handler (even with no traps set)? */
485 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000486 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000487 sigset_t blocked_set;
488 sigset_t inherited_set;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000489 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
490#if ENABLE_FEATURE_SH_STANDALONE
491 struct nofork_save_area nofork_save;
492#endif
493#if ENABLE_HUSH_JOB
494 sigjmp_buf toplevel_jb;
495#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000496};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000497#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000498/* Not #defining name to G.name - this quickly gets unwieldy
499 * (too many defines). Also, I actually prefer to see when a variable
500 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000501#define INIT_G() do { \
502 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
503} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000504
505
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000506/* Function prototypes for builtins */
507static int builtin_cd(char **argv);
508static int builtin_echo(char **argv);
509static int builtin_eval(char **argv);
510static int builtin_exec(char **argv);
511static int builtin_exit(char **argv);
512static int builtin_export(char **argv);
513#if ENABLE_HUSH_JOB
514static int builtin_fg_bg(char **argv);
515static int builtin_jobs(char **argv);
516#endif
517#if ENABLE_HUSH_HELP
518static int builtin_help(char **argv);
519#endif
520static int builtin_pwd(char **argv);
521static int builtin_read(char **argv);
522static int builtin_test(char **argv);
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000523static int builtin_trap(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000524static int builtin_true(char **argv);
525static int builtin_set(char **argv);
526static int builtin_shift(char **argv);
527static int builtin_source(char **argv);
528static int builtin_umask(char **argv);
529static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000530static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000531#if ENABLE_HUSH_LOOPS
532static int builtin_break(char **argv);
533static int builtin_continue(char **argv);
534#endif
535//static int builtin_not_written(char **argv);
536
537/* Table of built-in functions. They can be forked or not, depending on
538 * context: within pipes, they fork. As simple commands, they do not.
539 * When used in non-forking context, they can change global variables
540 * in the parent shell process. If forked, of course they cannot.
541 * For example, 'unset foo | whatever' will parse and run, but foo will
542 * still be set at the end. */
543struct built_in_command {
544 const char *cmd;
545 int (*function)(char **argv);
546#if ENABLE_HUSH_HELP
547 const char *descr;
548#define BLTIN(cmd, func, help) { cmd, func, help }
549#else
550#define BLTIN(cmd, func, help) { cmd, func }
551#endif
552};
553
554/* For now, echo and test are unconditionally enabled.
555 * Maybe make it configurable? */
556static const struct built_in_command bltins[] = {
557 BLTIN("." , builtin_source, "Run commands in a file"),
558 BLTIN(":" , builtin_true, "No-op"),
559 BLTIN("[" , builtin_test, "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000560#if ENABLE_HUSH_JOB
561 BLTIN("bg" , builtin_fg_bg, "Resume a job in the background"),
562#endif
563#if ENABLE_HUSH_LOOPS
564 BLTIN("break" , builtin_break, "Exit from a loop"),
565#endif
566 BLTIN("cd" , builtin_cd, "Change directory"),
567#if ENABLE_HUSH_LOOPS
568 BLTIN("continue", builtin_continue, "Start new loop iteration"),
569#endif
570 BLTIN("echo" , builtin_echo, "Write to stdout"),
571 BLTIN("eval" , builtin_eval, "Construct and run shell command"),
572 BLTIN("exec" , builtin_exec, "Execute command, don't return to shell"),
573 BLTIN("exit" , builtin_exit, "Exit"),
574 BLTIN("export", builtin_export, "Set environment variable"),
575#if ENABLE_HUSH_JOB
576 BLTIN("fg" , builtin_fg_bg, "Bring job into the foreground"),
577 BLTIN("jobs" , builtin_jobs, "List active jobs"),
578#endif
579 BLTIN("pwd" , builtin_pwd, "Print current directory"),
580 BLTIN("read" , builtin_read, "Input environment variable"),
581// BLTIN("return", builtin_not_written, "Return from a function"),
582 BLTIN("set" , builtin_set, "Set/unset shell local variables"),
583 BLTIN("shift" , builtin_shift, "Shift positional parameters"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000584 BLTIN("test" , builtin_test, "Test condition"),
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000585 BLTIN("trap" , builtin_trap, "Trap signals"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000586// BLTIN("ulimit", builtin_not_written, "Control resource limits"),
587 BLTIN("umask" , builtin_umask, "Set file creation mask"),
588 BLTIN("unset" , builtin_unset, "Unset environment variable"),
Mike Frysinger56bdea12009-03-28 20:01:58 +0000589 BLTIN("wait" , builtin_wait, "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000590#if ENABLE_HUSH_HELP
591 BLTIN("help" , builtin_help, "List shell built-in commands"),
592#endif
593};
594
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000595
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000596/* Normal */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000597static void maybe_die(const char *notice, const char *msg)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000598{
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000599 /* Was using fancy stuff:
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000600 * (G_interactive_fd ? bb_error_msg : bb_error_msg_and_die)(...params...)
Denis Vlasenko5a1437d2007-05-24 13:22:47 +0000601 * but it SEGVs. ?! Oh well... explicit temp ptr works around that */
Mike Frysinger6379bb42009-03-28 18:55:03 +0000602 void FAST_FUNC (*fp)(const char *s, ...) = bb_error_msg_and_die;
603#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerdfa9de72009-04-03 22:48:10 +0000604 if (G_interactive_fd)
605 fp = bb_error_msg;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000606#endif
Mike Frysinger6379bb42009-03-28 18:55:03 +0000607 fp(msg ? "%s: %s" : notice, notice, msg);
608}
Mike Frysinger5a828452009-03-28 19:09:04 +0000609#if 1
610#define syntax(msg) maybe_die("syntax error", msg);
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000611#else
Mike Frysinger5a828452009-03-28 19:09:04 +0000612/* Debug -- trick gcc to expand __LINE__ and convert to string */
613#define __syntax(msg, line) maybe_die("syntax error hush.c:" # line, msg)
614#define _syntax(msg, line) __syntax(msg, line)
615#define syntax(msg) _syntax(msg, __LINE__)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000616#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000617
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000618static int glob_needed(const char *s)
619{
620 while (*s) {
621 if (*s == '\\')
622 s++;
623 if (*s == '*' || *s == '[' || *s == '?')
624 return 1;
625 s++;
626 }
627 return 0;
628}
629
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000630static int is_assignment(const char *s)
631{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000632 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000633 return 0;
634 s++;
635 while (isalnum(*s) || *s == '_')
636 s++;
637 return *s == '=';
638}
639
Denis Vlasenko55789c62008-06-18 16:30:42 +0000640/* Replace each \x with x in place, return ptr past NUL. */
641static char *unbackslash(char *src)
642{
643 char *dst = src;
644 while (1) {
645 if (*src == '\\')
646 src++;
647 if ((*dst++ = *src++) == '\0')
648 break;
649 }
650 return dst;
651}
652
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000653static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000654{
655 int i;
656 unsigned count1;
657 unsigned count2;
658 char **v;
659
660 v = strings;
661 count1 = 0;
662 if (v) {
663 while (*v) {
664 count1++;
665 v++;
666 }
667 }
668 count2 = 0;
669 v = add;
670 while (*v) {
671 count2++;
672 v++;
673 }
674 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
675 v[count1 + count2] = NULL;
676 i = count2;
677 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000678 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000679 return v;
680}
681
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000682static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000683{
684 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000685 v[0] = add;
686 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000687 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000688}
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000689
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000690static void putenv_all(char **strings)
691{
692 if (!strings)
693 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000694 while (*strings) {
695 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000696 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000697 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000698}
699
700static char **putenv_all_and_save_old(char **strings)
701{
702 char **old = NULL;
703 char **s = strings;
704
705 if (!strings)
706 return old;
707 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000708 char *v, *eq;
709
710 eq = strchr(*strings, '=');
711 if (eq) {
712 *eq = '\0';
713 v = getenv(*strings);
714 *eq = '=';
715 if (v) {
716 /* v points to VAL in VAR=VAL, go back to VAR */
717 v -= (eq - *strings) + 1;
718 old = add_string_to_strings(old, v);
719 }
720 }
721 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000722 }
723 putenv_all(s);
724 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000725}
726
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000727static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000728{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000729 char **v;
730
731 if (!strings)
732 return;
733
734 v = strings;
735 while (*v) {
736 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000737 debug_printf_env("unsetenv '%s'\n", *v);
738 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000739 }
740 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000741 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000742 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000743}
744
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000745static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000746{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000747 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000748}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000749
750
Denis Vlasenkod5762932009-03-31 11:22:57 +0000751/* Basic theory of signal handling in shell
752 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000753 * This does not describe what hush does, rather, it is current understanding
754 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000755 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
756 *
757 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
758 * is finished or backgrounded. It is the same in interactive and
759 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000760 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000761 * ^C or ^Z from keyboard seem to execute "at once" because it usually
762 * backgrounds (i.e. stops) or kills all members of currently running
763 * pipe.
764 *
765 * Wait builtin in interruptible by signals for which user trap is set
766 * or by SIGINT in interactive shell.
767 *
768 * Trap handlers will execute even within trap handlers. (right?)
769 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000770 * User trap handlers are forgotten when subshell ("(cmd)") is entered. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000771 *
772 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000773 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000774 *
775 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000776 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000777 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000778 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
779 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000780 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000781 * Siganls which differ from SIG_DFL action
782 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000783 *
784 * SIGQUIT: ignore
785 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000786 * SIGHUP (interactive):
787 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000788 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000789 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
790 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000791 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000792 * of the command line, show prompt. NB: ^C does not send SIGINT
793 * to interactive shell while shell is waiting for a pipe,
794 * since shell is bg'ed (is not in foreground process group).
795 * (check/expand this)
796 * Example 1: this waits 5 sec, but does not execute ls:
797 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
798 * Example 2: this does not wait and does not execute ls:
799 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
800 * Example 3: this does not wait 5 sec, but executes ls:
801 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000802 *
803 * (What happens to signals which are IGN on shell start?)
804 * (What happens with signal mask on shell start?)
805 *
806 * Implementation in hush
807 * ======================
808 * We use in-kernel pending signal mask to determine which signals were sent.
809 * We block all signals which we don't want to take action immediately,
810 * i.e. we block all signals which need to have special handling as described
811 * above, and all signals which have traps set.
812 * After each pipe execution, we extract any pending signals via sigtimedwait()
813 * and act on them.
814 *
815 * unsigned non_DFL_mask: a mask of such "special" signals
816 * sigset_t blocked_set: current blocked signal set
817 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000818 * "trap - SIGxxx":
819 * clear bit in blocked_set unless it is also in non_DFL
820 * "trap 'cmd' SIGxxx":
821 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000822 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000823 * nothing for {} child shell (say, "true | { true; true; } | true")
824 * unset all traps if () shell. [TODO]
Denis Vlasenkod5762932009-03-31 11:22:57 +0000825 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000826 * POSIX says pending signal mask is cleared in child - no need to clear it.
827 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000828 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000829 * Note: as a result, we do not use signal handlers much. The only uses
830 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
831 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000832 *
833 * TODO: check/fix wait builtin to be interruptible.
834 */
835
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000836//static void SIGCHLD_handler(int sig UNUSED_PARAM)
837//{
838// G.count_SIGCHLD++;
839//}
840
Denis Vlasenkod5762932009-03-31 11:22:57 +0000841/* called once at shell init */
842static void init_signal_mask(void)
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000843{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000844 unsigned sig;
845 unsigned mask = (1 << SIGQUIT);
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000846 if (G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +0000847 mask = 0
848 | (1 << SIGQUIT)
849 | (1 << SIGTERM)
850 | (1 << SIGHUP)
851#if ENABLE_HUSH_JOB
852 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
853#endif
854 | (1 << SIGINT)
855 ;
856 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000857 G.non_DFL_mask = mask;
858
Denis Vlasenkod5762932009-03-31 11:22:57 +0000859 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
860 sig = 0;
861 while (mask) {
862 if (mask & 1)
863 sigaddset(&G.blocked_set, sig);
864 mask >>= 1;
865 sig++;
866 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000867 sigdelset(&G.blocked_set, SIGCHLD);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000868 sigprocmask(SIG_SETMASK, &G.blocked_set, &G.inherited_set);
Denis Vlasenko4830fc52008-05-25 21:50:55 +0000869}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000870
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000871static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000872{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000873 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000874 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000875 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000876
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000877 if (sig)
878 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000879 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000880 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000881 if (sig <= 0)
882 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000883 jump_in:
884 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000885 if (G.traps && G.traps[sig]) {
886 if (G.traps[sig][0]) {
887 /* We have user-defined handler */
888 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
889 save_rcode = G.last_return_code;
890 builtin_eval(argv);
891 free(argv[1]);
892 G.last_return_code = save_rcode;
893 } /* else: "" trap, ignoring signal */
894 continue;
895 }
896 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000897 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000898// case SIGCHLD:
899// G.count_SIGCHLD++;
900// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000901 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000902 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000903 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000904 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000905//TODO
906// case SIGHUP: ...
907// break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000908 default: /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000909 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000910 }
Denis Vlasenkod5762932009-03-31 11:22:57 +0000911 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000912 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000913}
914
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000915#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000916
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000917/* Restores tty foreground process group, and exits.
918 * May be called as signal handler for fatal signal
919 * (will faithfully resend signal to itself, producing correct exit state)
920 * or called directly with -EXITCODE.
921 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +0000922static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000923static void sigexit(int sig)
924{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000925 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +0000926 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000927
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000928 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000929 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000930 if (G_interactive_fd && getpid() == G.root_pid)
931 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000932
933 /* Not a signal, just exit */
934 if (sig <= 0)
935 _exit(- sig);
936
Denis Vlasenko400d8bb2008-02-24 13:36:01 +0000937 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +0000938}
939
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000940/* helper */
941static void maybe_set_sighandler(int sig)
942{
943 void (*handler)(int);
944 /* non_DFL_mask'ed signals are, well, masked,
945 * no need to set handler for them.
946 */
947 if (!((G.non_DFL_mask >> sig) & 1)) {
948 handler = signal(sig, sigexit);
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000949 if (handler == SIG_IGN) /* oops... restore back to IGN! */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000950 signal(sig, handler);
951 }
952}
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000953/* Used only to set handler to restore pgrp on exit */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000954static void set_fatal_signals_to_sigexit(void)
955{
956 if (HUSH_DEBUG) {
957 maybe_set_sighandler(SIGILL );
958 maybe_set_sighandler(SIGFPE );
959 maybe_set_sighandler(SIGBUS );
960 maybe_set_sighandler(SIGSEGV);
961 maybe_set_sighandler(SIGTRAP);
962 } /* else: hush is perfect. what SEGV? */
963
964 maybe_set_sighandler(SIGABRT);
965
966 /* bash 3.2 seems to handle these just like 'fatal' ones */
967 maybe_set_sighandler(SIGPIPE);
968 maybe_set_sighandler(SIGALRM);
969 maybe_set_sighandler(SIGHUP );
970
971 /* if we aren't interactive... but in this case
972 * we never want to restore pgrp on exit, and this fn is not called */
973 /*maybe_set_sighandler(SIGTERM);*/
974 /*maybe_set_sighandler(SIGINT );*/
975}
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000976
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000977#else /* !JOB */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000978
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000979#define set_fatal_signals_to_sigexit(handler) ((void)0)
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000980
Denis Vlasenkoe0755e52009-04-03 21:16:45 +0000981#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000982
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000983/* Restores tty foreground process group, and exits. */
984static void hush_exit(int exitcode) NORETURN;
985static void hush_exit(int exitcode)
986{
Denis Vlasenkod5762932009-03-31 11:22:57 +0000987 if (G.traps && G.traps[0] && G.traps[0][0]) {
988 char *argv[] = { NULL, xstrdup(G.traps[0]), NULL };
989 builtin_eval(argv);
990 free(argv[1]);
991 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000992
Denis Vlasenkoabedaac2009-03-31 12:03:40 +0000993#if ENABLE_HUSH_JOB
994 fflush(NULL); /* flush all streams */
995 sigexit(- (exitcode & 0xff));
996#else
997 exit(exitcode);
998#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +0000999}
1000
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001001
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001002static const char *set_cwd(void)
1003{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001004 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1005 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001006 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001007 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001008 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1009 if (!G.cwd)
1010 G.cwd = bb_msg_unknown;
1011 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001012}
1013
Denis Vlasenko83506862007-11-23 13:11:42 +00001014
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001015/* Get/check local shell variables */
1016static struct variable *get_local_var(const char *name)
1017{
1018 struct variable *cur;
1019 int len;
1020
1021 if (!name)
1022 return NULL;
1023 len = strlen(name);
1024 for (cur = G.top_var; cur; cur = cur->next) {
1025 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1026 return cur;
1027 }
1028 return NULL;
1029}
1030
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001031static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001032{
1033 struct variable *var = get_local_var(src);
1034 if (var)
1035 return strchr(var->varstr, '=') + 1;
1036 return NULL;
1037}
1038
1039/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001040 * We take ownership of it.
1041 * flg_export is used by:
1042 * 0: do not export
1043 * 1: export
1044 * -1: if NAME is set, leave export status alone
1045 * if NAME is not set, do not export
1046 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001047static int set_local_var(char *str, int flg_export)
1048{
1049 struct variable *cur;
1050 char *value;
1051 int name_len;
1052
1053 value = strchr(str, '=');
1054 if (!value) { /* not expected to ever happen? */
1055 free(str);
1056 return -1;
1057 }
1058
1059 name_len = value - str + 1; /* including '=' */
1060 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1061 while (1) {
1062 if (strncmp(cur->varstr, str, name_len) != 0) {
1063 if (!cur->next) {
1064 /* Bail out. Note that now cur points
1065 * to last var in linked list */
1066 break;
1067 }
1068 cur = cur->next;
1069 continue;
1070 }
1071 /* We found an existing var with this name */
1072 *value = '\0';
1073 if (cur->flg_read_only) {
1074 bb_error_msg("%s: readonly variable", str);
1075 free(str);
1076 return -1;
1077 }
1078 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1079 unsetenv(str); /* just in case */
1080 *value = '=';
1081 if (strcmp(cur->varstr, str) == 0) {
1082 free_and_exp:
1083 free(str);
1084 goto exp;
1085 }
1086 if (cur->max_len >= strlen(str)) {
1087 /* This one is from startup env, reuse space */
1088 strcpy(cur->varstr, str);
1089 goto free_and_exp;
1090 }
1091 /* max_len == 0 signifies "malloced" var, which we can
1092 * (and has to) free */
1093 if (!cur->max_len)
1094 free(cur->varstr);
1095 cur->max_len = 0;
1096 goto set_str_and_exp;
1097 }
1098
1099 /* Not found - create next variable struct */
1100 cur->next = xzalloc(sizeof(*cur));
1101 cur = cur->next;
1102
1103 set_str_and_exp:
1104 cur->varstr = str;
1105 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001106 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001107 cur->flg_export = 1;
1108 if (cur->flg_export) {
1109 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1110 return putenv(cur->varstr);
1111 }
1112 return 0;
1113}
1114
Mike Frysingerd690f682009-03-30 06:50:54 +00001115static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001116{
1117 struct variable *cur;
1118 struct variable *prev = prev; /* for gcc */
1119 int name_len;
1120
1121 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001122 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001123 name_len = strlen(name);
1124 cur = G.top_var;
1125 while (cur) {
1126 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1127 if (cur->flg_read_only) {
1128 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001129 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001130 }
1131 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1132 * is ro, and we cannot reach this code on the 1st pass */
1133 prev->next = cur->next;
1134 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1135 bb_unsetenv(cur->varstr);
1136 if (!cur->max_len)
1137 free(cur->varstr);
1138 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001139 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001140 }
1141 prev = cur;
1142 cur = cur->next;
1143 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001144 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001145}
1146
Mike Frysinger98c52642009-04-02 10:02:37 +00001147#if ENABLE_SH_MATH_SUPPORT
1148#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1149#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1150static char *endofname(const char *name)
1151{
1152 char *p;
1153
1154 p = (char *) name;
1155 if (!is_name(*p))
1156 return p;
1157 while (*++p) {
1158 if (!is_in_name(*p))
1159 break;
1160 }
1161 return p;
1162}
1163
1164static void arith_set_local_var(const char *name, const char *val, int flags)
1165{
1166 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001167 char *var = xasprintf("%s=%s", name, val);
Mike Frysinger98c52642009-04-02 10:02:37 +00001168 set_local_var(var, flags);
1169}
1170#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001171
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001172
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001173/*
1174 * in_str support
1175 */
1176static int static_get(struct in_str *i)
1177{
1178 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001179 if (ch != '\0')
1180 return ch;
1181 i->p--;
1182 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001183}
1184
1185static int static_peek(struct in_str *i)
1186{
1187 return *i->p;
1188}
1189
1190#if ENABLE_HUSH_INTERACTIVE
1191
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001192static void cmdedit_set_initial_prompt(void)
1193{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001194 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1195 G.PS1 = getenv("PS1");
1196 if (G.PS1 == NULL)
1197 G.PS1 = "\\w \\$ ";
1198 } else
1199 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001200}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001201
1202static const char* setup_prompt_string(int promptmode)
1203{
1204 const char *prompt_str;
1205 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001206 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1207 /* Set up the prompt */
1208 if (promptmode == 0) { /* PS1 */
1209 free((char*)G.PS1);
1210 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1211 prompt_str = G.PS1;
1212 } else
1213 prompt_str = G.PS2;
1214 } else
1215 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001216 debug_printf("result '%s'\n", prompt_str);
1217 return prompt_str;
1218}
1219
1220static void get_user_input(struct in_str *i)
1221{
1222 int r;
1223 const char *prompt_str;
1224
1225 prompt_str = setup_prompt_string(i->promptmode);
1226#if ENABLE_FEATURE_EDITING
1227 /* Enable command line editing only while a command line
1228 * is actually being read */
1229 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001230 G.flag_SIGINT = 0;
1231 /* buglet: SIGINT will not make new prompt to appear _at once_,
1232 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001233 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001234 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001235 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001236 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001237 i->eof_flag = (r < 0);
1238 if (i->eof_flag) { /* EOF/error detected */
1239 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1240 G.user_input_buf[1] = '\0';
1241 }
1242#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001243 do {
1244 G.flag_SIGINT = 0;
1245 fputs(prompt_str, stdout);
1246 fflush(stdout);
1247 G.user_input_buf[0] = r = fgetc(i->file);
1248 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001249//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001250 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001251 i->eof_flag = (r == EOF);
1252#endif
1253 i->p = G.user_input_buf;
1254}
1255
1256#endif /* INTERACTIVE */
1257
1258/* This is the magic location that prints prompts
1259 * and gets data back from the user */
1260static int file_get(struct in_str *i)
1261{
1262 int ch;
1263
1264 /* If there is data waiting, eat it up */
1265 if (i->p && *i->p) {
1266#if ENABLE_HUSH_INTERACTIVE
1267 take_cached:
1268#endif
1269 ch = *i->p++;
1270 if (i->eof_flag && !*i->p)
1271 ch = EOF;
1272 } else {
1273 /* need to double check i->file because we might be doing something
1274 * more complicated by now, like sourcing or substituting. */
1275#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001276 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001277 do {
1278 get_user_input(i);
1279 } while (!*i->p); /* need non-empty line */
1280 i->promptmode = 1; /* PS2 */
1281 i->promptme = 0;
1282 goto take_cached;
1283 }
1284#endif
1285 ch = fgetc(i->file);
1286 }
1287 debug_printf("file_get: got a '%c' %d\n", ch, ch);
1288#if ENABLE_HUSH_INTERACTIVE
1289 if (ch == '\n')
1290 i->promptme = 1;
1291#endif
1292 return ch;
1293}
1294
1295/* All the callers guarantee this routine will never be
1296 * used right after a newline, so prompting is not needed.
1297 */
1298static int file_peek(struct in_str *i)
1299{
1300 int ch;
1301 if (i->p && *i->p) {
1302 if (i->eof_flag && !i->p[1])
1303 return EOF;
1304 return *i->p;
1305 }
1306 ch = fgetc(i->file);
1307 i->eof_flag = (ch == EOF);
1308 i->peek_buf[0] = ch;
1309 i->peek_buf[1] = '\0';
1310 i->p = i->peek_buf;
1311 debug_printf("file_peek: got a '%c' %d\n", *i->p, *i->p);
1312 return ch;
1313}
1314
1315static void setup_file_in_str(struct in_str *i, FILE *f)
1316{
1317 i->peek = file_peek;
1318 i->get = file_get;
1319#if ENABLE_HUSH_INTERACTIVE
1320 i->promptme = 1;
1321 i->promptmode = 0; /* PS1 */
1322#endif
1323 i->file = f;
1324 i->p = NULL;
1325}
1326
1327static void setup_string_in_str(struct in_str *i, const char *s)
1328{
1329 i->peek = static_peek;
1330 i->get = static_get;
1331#if ENABLE_HUSH_INTERACTIVE
1332 i->promptme = 1;
1333 i->promptmode = 0; /* PS1 */
1334#endif
1335 i->p = s;
1336 i->eof_flag = 0;
1337}
1338
1339
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001340/*
1341 * o_string support
1342 */
1343#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001344
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001345static void o_reset(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001346{
1347 o->length = 0;
1348 o->nonnull = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001349 if (o->data)
1350 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001351}
1352
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001353static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001354{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001355 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001356 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001357}
1358
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001359static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001360{
1361 if (o->length + len > o->maxlen) {
1362 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1363 o->data = xrealloc(o->data, 1 + o->maxlen);
1364 }
1365}
1366
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001367static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001368{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001369 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1370 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001371 o->data[o->length] = ch;
1372 o->length++;
1373 o->data[o->length] = '\0';
1374}
1375
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001376static void o_addstr(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001377{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001378 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001379 memcpy(&o->data[o->length], str, len);
1380 o->length += len;
1381 o->data[o->length] = '\0';
1382}
1383
Mike Frysinger98c52642009-04-02 10:02:37 +00001384static void o_addstrauto(o_string *o, const char *str)
1385{
1386 o_addstr(o, str, strlen(str) + 1);
1387}
1388
Denis Vlasenko55789c62008-06-18 16:30:42 +00001389static void o_addstr_duplicate_backslash(o_string *o, const char *str, int len)
1390{
1391 while (len) {
1392 o_addchr(o, *str);
1393 if (*str++ == '\\'
1394 && (*str != '*' && *str != '?' && *str != '[')
1395 ) {
1396 o_addchr(o, '\\');
1397 }
1398 len--;
1399 }
1400}
1401
Eric Andersen25f27032001-04-26 23:22:31 +00001402/* My analysis of quoting semantics tells me that state information
1403 * is associated with a destination, not a source.
1404 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001405static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001406{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001407 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001408 char *found = strchr("*?[\\", ch);
1409 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001410 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001411 o_grow_by(o, sz);
1412 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001413 o->data[o->length] = '\\';
1414 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001415 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001416 o->data[o->length] = ch;
1417 o->length++;
1418 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001419}
1420
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001421static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001422{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001423 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001424 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001425 sz++;
1426 o->data[o->length] = '\\';
1427 o->length++;
1428 }
1429 o_grow_by(o, sz);
1430 o->data[o->length] = ch;
1431 o->length++;
1432 o->data[o->length] = '\0';
1433}
1434
1435static void o_addQstr(o_string *o, const char *str, int len)
1436{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001437 if (!o->o_escape) {
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001438 o_addstr(o, str, len);
1439 return;
1440 }
1441 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001442 char ch;
1443 int sz;
1444 int ordinary_cnt = strcspn(str, "*?[\\");
1445 if (ordinary_cnt > len) /* paranoia */
1446 ordinary_cnt = len;
1447 o_addstr(o, str, ordinary_cnt);
1448 if (ordinary_cnt == len)
1449 return;
1450 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001451 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001452
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001453 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001454 sz = 1;
1455 if (ch) { /* it is necessarily one of "*?[\\" */
1456 sz++;
1457 o->data[o->length] = '\\';
1458 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001459 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001460 o_grow_by(o, sz);
1461 o->data[o->length] = ch;
1462 o->length++;
1463 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001464 }
1465}
1466
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001467/* A special kind of o_string for $VAR and `cmd` expansion.
1468 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001469 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001470 * list[i] contains an INDEX (int!) into this string data.
1471 * It means that if list[] needs to grow, data needs to be moved higher up
1472 * but list[i]'s need not be modified.
1473 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001474 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001475 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1476 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001477#if DEBUG_EXPAND || DEBUG_GLOB
1478static void debug_print_list(const char *prefix, o_string *o, int n)
1479{
1480 char **list = (char**)o->data;
1481 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1482 int i = 0;
1483 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1484 prefix, list, n, string_start, o->length, o->maxlen);
1485 while (i < n) {
1486 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1487 o->data + (int)list[i] + string_start,
1488 o->data + (int)list[i] + string_start);
1489 i++;
1490 }
1491 if (n) {
1492 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001493 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001494 }
1495}
1496#else
1497#define debug_print_list(prefix, o, n) ((void)0)
1498#endif
1499
1500/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1501 * in list[n] so that it points past last stored byte so far.
1502 * It returns n+1. */
1503static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001504{
1505 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001506 int string_start;
1507 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001508
1509 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001510 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1511 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001512 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001513 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001514 /* list[n] points to string_start, make space for 16 more pointers */
1515 o->maxlen += 0x10 * sizeof(list[0]);
1516 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001517 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001518 memmove(list + n + 0x10, list + n, string_len);
1519 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001520 } else {
1521 debug_printf_list("list[%d]=%d string_start=%d\n",
1522 n, string_len, string_start);
1523 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001524 } else {
1525 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001526 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1527 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001528 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1529 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001530 o->has_empty_slot = 0;
1531 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001532 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001533 return n + 1;
1534}
1535
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001536/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001537static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001538{
1539 char **list = (char**)o->data;
1540 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1541
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001542 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001543}
1544
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001545/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001546 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001547static int o_glob(o_string *o, int n)
1548{
1549 glob_t globdata;
1550 int gr;
1551 char *pattern;
1552
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001553 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001554 if (!o->data)
1555 return o_save_ptr_helper(o, n);
1556 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001557 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001558 if (!glob_needed(pattern)) {
1559 literal:
1560 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001561 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001562 return o_save_ptr_helper(o, n);
1563 }
1564
1565 memset(&globdata, 0, sizeof(globdata));
1566 gr = glob(pattern, 0, NULL, &globdata);
1567 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1568 if (gr == GLOB_NOSPACE)
1569 bb_error_msg_and_die("out of memory during glob");
1570 if (gr == GLOB_NOMATCH) {
1571 globfree(&globdata);
1572 goto literal;
1573 }
1574 if (gr != 0) { /* GLOB_ABORTED ? */
1575//TODO: testcase for bad glob pattern behavior
1576 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1577 }
1578 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1579 char **argv = globdata.gl_pathv;
1580 o->length = pattern - o->data; /* "forget" pattern */
1581 while (1) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001582 o_addstrauto(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001583 n = o_save_ptr_helper(o, n);
1584 argv++;
1585 if (!*argv)
1586 break;
1587 }
1588 }
1589 globfree(&globdata);
1590 if (DEBUG_GLOB)
1591 debug_print_list("o_glob returning", o, n);
1592 return n;
1593}
1594
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001595/* If o->o_glob == 1, glob the string so far remembered.
1596 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001597static int o_save_ptr(o_string *o, int n)
1598{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001599 if (o->o_glob) { /* if globbing is requested */
1600 /* If o->has_empty_slot, list[n] was already globbed
1601 * (if it was requested back then when it was filled)
1602 * so don't do that again! */
1603 if (!o->has_empty_slot)
1604 return o_glob(o, n); /* o_save_ptr_helper is inside */
1605 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001606 return o_save_ptr_helper(o, n);
1607}
1608
1609/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001610static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001611{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001612 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001613 int string_start;
1614
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001615 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1616 if (DEBUG_EXPAND)
1617 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001618 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001619 list = (char**)o->data;
1620 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1621 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001622 while (n) {
1623 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001624 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001625 }
1626 return list;
1627}
1628
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001629
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001630/* Expansion can recurse */
1631#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001632static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001633#endif
1634static char *expand_string_to_string(const char *str);
1635static int parse_stream_dquoted(o_string *dest, struct in_str *input, int dquote_end);
1636
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001637/* expand_strvec_to_strvec() takes a list of strings, expands
1638 * all variable references within and returns a pointer to
1639 * a list of expanded strings, possibly with larger number
1640 * of strings. (Think VAR="a b"; echo $VAR).
1641 * This new list is allocated as a single malloc block.
1642 * NULL-terminated list of char* pointers is at the beginning of it,
1643 * followed by strings themself.
1644 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001645
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001646/* Store given string, finalizing the word and starting new one whenever
1647 * we encounter IFS char(s). This is used for expanding variable values.
1648 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1649static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001650{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001651 while (1) {
1652 int word_len = strcspn(str, G.ifs);
1653 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001654 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001655 o_addQstr(output, str, word_len);
1656 else /* protect backslashes against globbing up :) */
1657 o_addstr_duplicate_backslash(output, str, word_len);
1658 str += word_len;
1659 }
1660 if (!*str) /* EOL - do not finalize word */
1661 break;
1662 o_addchr(output, '\0');
1663 debug_print_list("expand_on_ifs", output, n);
1664 n = o_save_ptr(output, n);
1665 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001666 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001667 debug_print_list("expand_on_ifs[1]", output, n);
1668 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001669}
1670
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001671/* Expand all variable references in given string, adding words to list[]
1672 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1673 * to be filled). This routine is extremely tricky: has to deal with
1674 * variables/parameters with whitespace, $* and $@, and constructs like
1675 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1676static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001677{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001678 /* or_mask is either 0 (normal case) or 0x80
1679 * (expansion of right-hand side of assignment == 1-element expand.
1680 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001681
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001682 char first_ch, ored_ch;
1683 int i;
1684 const char *val;
1685 char *p;
1686
1687 ored_ch = 0;
1688
1689 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1690 debug_print_list("expand_vars_to_list", output, n);
1691 n = o_save_ptr(output, n);
1692 debug_print_list("expand_vars_to_list[0]", output, n);
1693
1694 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1695#if ENABLE_HUSH_TICK
1696 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001697#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001698#if ENABLE_SH_MATH_SUPPORT
1699 char arith_buf[sizeof(arith_t)*3 + 2];
1700#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001701 o_addstr(output, arg, p - arg);
1702 debug_print_list("expand_vars_to_list[1]", output, n);
1703 arg = ++p;
1704 p = strchr(p, SPECIAL_VAR_SYMBOL);
1705
1706 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1707 /* "$@" is special. Even if quoted, it can still
1708 * expand to nothing (not even an empty string) */
1709 if ((first_ch & 0x7f) != '@')
1710 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001711
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001712 val = NULL;
1713 switch (first_ch & 0x7f) {
1714 /* Highest bit in first_ch indicates that var is double-quoted */
1715 case '$': /* pid */
1716 val = utoa(G.root_pid);
1717 break;
1718 case '!': /* bg pid */
1719 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1720 break;
1721 case '?': /* exitcode */
1722 val = utoa(G.last_return_code);
1723 break;
1724 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001725 if (arg[1] != SPECIAL_VAR_SYMBOL)
1726 /* actually, it's a ${#var} */
1727 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001728 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1729 break;
1730 case '*':
1731 case '@':
1732 i = 1;
1733 if (!G.global_argv[i])
1734 break;
1735 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1736 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001737 smallint sv = output->o_escape;
1738 /* unquoted var's contents should be globbed, so don't escape */
1739 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001740 while (G.global_argv[i]) {
1741 n = expand_on_ifs(output, n, G.global_argv[i]);
1742 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1743 if (G.global_argv[i++][0] && G.global_argv[i]) {
1744 /* this argv[] is not empty and not last:
1745 * put terminating NUL, start new word */
1746 o_addchr(output, '\0');
1747 debug_print_list("expand_vars_to_list[2]", output, n);
1748 n = o_save_ptr(output, n);
1749 debug_print_list("expand_vars_to_list[3]", output, n);
1750 }
1751 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001752 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001753 } else
1754 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1755 * and in this case should treat it like '$*' - see 'else...' below */
1756 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1757 while (1) {
1758 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1759 if (++i >= G.global_argc)
1760 break;
1761 o_addchr(output, '\0');
1762 debug_print_list("expand_vars_to_list[4]", output, n);
1763 n = o_save_ptr(output, n);
1764 }
1765 } else { /* quoted $*: add as one word */
1766 while (1) {
1767 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1768 if (!G.global_argv[++i])
1769 break;
1770 if (G.ifs[0])
1771 o_addchr(output, G.ifs[0]);
1772 }
1773 }
1774 break;
1775 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1776 /* "Empty variable", used to make "" etc to not disappear */
1777 arg++;
1778 ored_ch = 0x80;
1779 break;
1780#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001781 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001782 *p = '\0';
1783 arg++;
1784//TODO: can we just stuff it into "output" directly?
1785 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001786 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001787 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1788 val = subst_result.data;
1789 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001790#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001791#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001792 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001793 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001794 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001795 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001796 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001797
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001798 arg++; /* skip '+' */
1799 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001800 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001801
1802 /* Optional: skip expansion if expr is simple ("a + 3", "i++" etc) */
1803 exp_str = arg;
1804 while (1) {
1805 unsigned char c = *exp_str++;
1806 if (c == '\0') {
1807 exp_str = NULL;
1808 goto skip_expand;
1809 }
1810 if (isdigit(c))
1811 continue;
1812 if (strchr(" \t+-*/%_", c) != NULL)
1813 continue;
1814 c |= 0x20; /* tolower */
1815 if (c >= 'a' && c <= 'z')
1816 continue;
1817 break;
1818 }
1819 /* We need to expand. Example: "echo $(($a + 1)) $((1 + $((2)) ))" */
1820 {
1821 struct in_str input;
1822 o_string dest = NULL_O_STRING;
1823
1824 setup_string_in_str(&input, arg);
1825 parse_stream_dquoted(&dest, &input, EOF);
1826 //bb_error_msg("'%s' -> '%s'", arg, dest.data);
1827 exp_str = expand_string_to_string(dest.data);
1828 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1829 o_free(&dest);
1830 }
1831 skip_expand:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001832 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001833 hooks.setvar = arith_set_local_var;
1834 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001835 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1836 free(exp_str);
1837
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001838 if (errcode < 0) {
Mike Frysinger98c52642009-04-02 10:02:37 +00001839 switch (errcode) {
1840 case -3: maybe_die("arith", "exponent less than 0"); break;
1841 case -2: maybe_die("arith", "divide by zero"); break;
1842 case -5: maybe_die("arith", "expression recursion loop detected"); break;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001843 default: maybe_die("arith", "syntax error"); break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001844 }
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001845 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001846 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001847 sprintf(arith_buf, arith_t_fmt, res);
1848 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001849 break;
1850 }
1851#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001852 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001853 case_default: {
1854 bool exp_len = false, exp_null = false;
1855 char *var = arg, exp_save, exp_op, *exp_word;
1856 size_t exp_off = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001857 *p = '\0';
1858 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00001859
1860 /* prepare for expansions */
1861 if (var[0] == '#') {
1862 /* handle length expansion ${#var} */
1863 exp_len = true;
1864 ++var;
1865 } else {
1866 /* maybe handle parameter expansion */
1867 exp_off = strcspn(var, ":-=+?");
1868 if (!var[exp_off])
1869 exp_off = 0;
1870 if (exp_off) {
1871 exp_save = var[exp_off];
1872 exp_null = exp_save == ':';
1873 exp_word = var + exp_off;
1874 if (exp_null) ++exp_word;
1875 exp_op = *exp_word++;
1876 var[exp_off] = '\0';
1877 }
1878 }
1879
1880 /* lookup the variable in question */
1881 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00001882 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001883 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001884 if (i < G.global_argc)
1885 val = G.global_argv[i];
1886 /* else val remains NULL: $N with too big N */
1887 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001888 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00001889
1890 /* handle any expansions */
1891 if (exp_len) {
1892 debug_printf_expand("expand: length of '%s' = ", val);
1893 val = utoa(val ? strlen(val) : 0);
1894 debug_printf_expand("%s\n", val);
1895 } else if (exp_off) {
1896 /* we need to do an expansion */
1897 int exp_test = (!val || (exp_null && !val[0]));
1898 if (exp_op == '+')
1899 exp_test = !exp_test;
1900 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
1901 exp_null ? "true" : "false", exp_test);
1902 if (exp_test) {
1903 if (exp_op == '?')
1904 maybe_die(var, *exp_word ? exp_word : "parameter null or not set");
1905 else
1906 val = exp_word;
1907
1908 if (exp_op == '=') {
1909 if (isdigit(var[0]) || var[0] == '#') {
1910 maybe_die(var, "special vars cannot assign in this way");
1911 val = NULL;
1912 } else {
1913 char *new_var = xmalloc(strlen(var) + strlen(val) + 2);
1914 sprintf(new_var, "%s=%s", var, val);
1915 set_local_var(new_var, -1);
1916 }
1917 }
1918 }
1919 var[exp_off] = exp_save;
1920 }
1921
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001922 arg[0] = first_ch;
1923#if ENABLE_HUSH_TICK
1924 store_val:
1925#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001926 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001927 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001928 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001929 /* unquoted var's contents should be globbed, so don't escape */
1930 smallint sv = output->o_escape;
1931 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001932 n = expand_on_ifs(output, n, val);
1933 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001934 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001935 }
1936 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001937 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001938 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001939 } /* default: */
1940 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001941 if (val) {
1942 o_addQstr(output, val, strlen(val));
1943 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00001944 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001945 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00001946 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001947
1948#if ENABLE_HUSH_TICK
1949 o_free(&subst_result);
1950#endif
1951 arg = ++p;
1952 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
1953
1954 if (arg[0]) {
1955 debug_print_list("expand_vars_to_list[a]", output, n);
1956 /* this part is literal, and it was already pre-quoted
1957 * if needed (much earlier), do not use o_addQstr here! */
Mike Frysinger98c52642009-04-02 10:02:37 +00001958 o_addstrauto(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001959 debug_print_list("expand_vars_to_list[b]", output, n);
1960 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
1961 && !(ored_ch & 0x80) /* and all vars were not quoted. */
1962 ) {
1963 n--;
1964 /* allow to reuse list[n] later without re-growth */
1965 output->has_empty_slot = 1;
1966 } else {
1967 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00001968 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001969 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001970}
1971
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001972static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001973{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001974 int n;
1975 char **list;
1976 char **v;
1977 o_string output = NULL_O_STRING;
1978
1979 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001980 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001981 /* (unquoted $var will temporarily switch it off) */
1982 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00001983 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001984
1985 n = 0;
1986 v = argv;
1987 while (*v) {
1988 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
1989 v++;
1990 }
1991 debug_print_list("expand_variables", &output, n);
1992
1993 /* output.data (malloced in one block) gets returned in "list" */
1994 list = o_finalize_list(&output, n);
1995 debug_print_strings("expand_variables[1]", list);
1996 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00001997}
1998
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001999static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002000{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002001 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002002}
2003
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002004/* Used for expansion of right hand of assignments */
2005/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2006 * "v=/bin/c*" */
2007static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002008{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002009 char *argv[2], **list;
2010
2011 argv[0] = (char*)str;
2012 argv[1] = NULL;
2013 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2014 if (HUSH_DEBUG)
2015 if (!list[0] || list[1])
2016 bb_error_msg_and_die("BUG in varexp2");
2017 /* actually, just move string 2*sizeof(char*) bytes back */
2018 overlapping_strcpy((char*)list, list[0]);
2019 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2020 return (char*)list;
2021}
2022
2023/* Used for "eval" builtin */
2024static char* expand_strvec_to_string(char **argv)
2025{
2026 char **list;
2027
2028 list = expand_variables(argv, 0x80);
2029 /* Convert all NULs to spaces */
2030 if (list[0]) {
2031 int n = 1;
2032 while (list[n]) {
2033 if (HUSH_DEBUG)
2034 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2035 bb_error_msg_and_die("BUG in varexp3");
2036 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2037 n++;
2038 }
2039 }
2040 overlapping_strcpy((char*)list, list[0]);
2041 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2042 return (char*)list;
2043}
2044
2045static char **expand_assignments(char **argv, int count)
2046{
2047 int i;
2048 char **p = NULL;
2049 /* Expand assignments into one string each */
2050 for (i = 0; i < count; i++) {
2051 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2052 }
2053 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002054}
2055
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002056
Eric Andersen25f27032001-04-26 23:22:31 +00002057/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2058 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002059static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002060{
2061 int openfd, mode;
2062 struct redir_struct *redir;
2063
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002064 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002065 if (redir->dup == -1 && redir->rd_filename == NULL) {
Eric Andersen817e73c2001-06-06 17:56:09 +00002066 /* something went wrong in the parse. Pretend it didn't happen */
2067 continue;
2068 }
Eric Andersen25f27032001-04-26 23:22:31 +00002069 if (redir->dup == -1) {
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002070 char *p;
Denis Vlasenko55789c62008-06-18 16:30:42 +00002071 mode = redir_table[redir->rd_type].mode;
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00002072//TODO: check redir for names like '\\'
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002073 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002074 openfd = open_or_warn(p, mode);
2075 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002076 if (openfd < 0) {
2077 /* this could get lost if stderr has been redirected, but
2078 bash and ash both lose it as well (though zsh doesn't!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002079 return 1;
2080 }
2081 } else {
2082 openfd = redir->dup;
2083 }
2084
2085 if (openfd != redir->fd) {
2086 if (squirrel && redir->fd < 3) {
2087 squirrel[redir->fd] = dup(redir->fd);
2088 }
Eric Andersen83a2ae22001-05-07 17:59:25 +00002089 if (openfd == -3) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002090 //close(openfd); // close(-3) ??!
Eric Andersen83a2ae22001-05-07 17:59:25 +00002091 } else {
2092 dup2(openfd, redir->fd);
Matt Kraaic616e532001-06-05 16:50:08 +00002093 if (redir->dup == -1)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002094 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002095 }
Eric Andersen25f27032001-04-26 23:22:31 +00002096 }
2097 }
2098 return 0;
2099}
2100
2101static void restore_redirects(int squirrel[])
2102{
2103 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002104 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002105 fd = squirrel[i];
2106 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002107 /* We simply die on error */
2108 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002109 }
2110 }
2111}
2112
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002113
2114#if !defined(DEBUG_CLEAN)
2115#define free_pipe_list(head, indent) free_pipe_list(head)
2116#define free_pipe(pi, indent) free_pipe(pi)
2117#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002118static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002119
2120/* return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002121static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002122{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002123 char **p;
2124 struct command *command;
2125 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002126 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002127
2128 if (pi->stopped_cmds > 0)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002129 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002130 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2131 for (i = 0; i < pi->num_cmds; i++) {
2132 command = &pi->cmds[i];
2133 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2134 if (command->argv) {
2135 for (a = 0, p = command->argv; *p; a++, p++) {
2136 debug_printf_clean("%s argv[%d] = %s\n", indenter(indent), a, *p);
2137 }
2138 free_strings(command->argv);
2139 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002140 }
2141 /* not "else if": on syntax error, we may have both! */
2142 if (command->group) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002143 debug_printf_clean("%s begin group (grp_type:%d)\n", indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002144 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002145 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002146 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002147 }
2148 for (r = command->redirects; r; r = rnext) {
2149 debug_printf_clean("%s redirect %d%s", indenter(indent), r->fd, redir_table[r->rd_type].descrip);
2150 if (r->dup == -1) {
2151 /* guard against the case >$FOO, where foo is unset or blank */
2152 if (r->rd_filename) {
2153 debug_printf_clean(" %s\n", r->rd_filename);
2154 free(r->rd_filename);
2155 r->rd_filename = NULL;
2156 }
2157 } else {
2158 debug_printf_clean("&%d\n", r->dup);
2159 }
2160 rnext = r->next;
2161 free(r);
2162 }
2163 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002164 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002165 free(pi->cmds); /* children are an array, they get freed all at once */
2166 pi->cmds = NULL;
2167#if ENABLE_HUSH_JOB
2168 free(pi->cmdtext);
2169 pi->cmdtext = NULL;
2170#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002171}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002172
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002173static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002174{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002175 struct pipe *pi, *next;
2176
2177 for (pi = head; pi; pi = next) {
2178#if HAS_KEYWORDS
2179 debug_printf_clean("%s pipe reserved mode %d\n", indenter(indent), pi->res_word);
2180#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002181 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002182 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2183 next = pi->next;
2184 /*pi->next = NULL;*/
2185 free(pi);
2186 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002187}
2188
2189
2190#if !BB_MMU
2191typedef struct nommu_save_t {
2192 char **new_env;
2193 char **old_env;
2194 char **argv;
2195} nommu_save_t;
2196#else
2197#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2198 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2199#define pseudo_exec(nommu_save, command, argv_expanded) \
2200 pseudo_exec(command, argv_expanded)
2201#endif
2202
Denis Vlasenko05743d72008-02-10 12:10:08 +00002203/* Called after [v]fork() in run_pipe(), or from builtin_exec().
Denis Vlasenko8412d792007-10-01 09:59:47 +00002204 * Never returns.
2205 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002206 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002207 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002208static void pseudo_exec_argv(nommu_save_t *nommu_save,
2209 char **argv, int assignment_cnt,
2210 char **argv_expanded) NORETURN;
2211static void pseudo_exec_argv(nommu_save_t *nommu_save,
2212 char **argv, int assignment_cnt,
2213 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002214{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002215 int rcode;
2216 char **new_env;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00002217 const struct built_in_command *x;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002218
Denis Vlasenko1359da62007-04-21 23:27:30 +00002219 /* If a variable is assigned in a forest, and nobody listens,
2220 * was it ever really set?
2221 */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002222 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002223 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002224
Denis Vlasenko9504e442008-10-29 01:19:15 +00002225 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002226#if BB_MMU
2227 putenv_all(new_env);
2228 free(new_env); /* optional */
2229#else
2230 nommu_save->new_env = new_env;
2231 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002232#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002233 if (argv_expanded) {
2234 argv = argv_expanded;
2235 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002236 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002237#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002238 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002239#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002240 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002241
Denis Vlasenko1359da62007-04-21 23:27:30 +00002242 /*
2243 * Check if the command matches any of the builtins.
2244 * Depending on context, this might be redundant. But it's
2245 * easier to waste a few CPU cycles than it is to figure out
2246 * if this is one of those cases.
2247 */
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002248 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko1359da62007-04-21 23:27:30 +00002249 if (strcmp(argv[0], x->cmd) == 0) {
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002250 debug_printf_exec("running builtin '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002251 rcode = x->function(argv);
2252 fflush(stdout);
2253 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00002254 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002255 }
Eric Andersen78a7c992001-05-15 16:30:25 +00002256
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002257 /* Check if the command matches any busybox applets */
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002258#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002259 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002260 int a = find_applet_by_name(argv[0]);
2261 if (a >= 0) {
2262 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002263 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002264// is it ok that run_applet_no_and_exit() does exit(), not _exit()?
2265 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002266 }
2267 /* re-exec ourselves with the new arguments */
2268 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenkobdbbb7e2007-06-08 15:02:55 +00002269 execvp(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002270 /* If they called chroot or otherwise made the binary no longer
2271 * executable, fall through */
2272 }
2273 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002274#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002275
Denis Vlasenkod5762932009-03-31 11:22:57 +00002276 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2277
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002278 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002279 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002280 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002281 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002282}
2283
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002284static int run_list(struct pipe *pi);
2285
Denis Vlasenko05743d72008-02-10 12:10:08 +00002286/* Called after [v]fork() in run_pipe()
Denis Vlasenko8412d792007-10-01 09:59:47 +00002287 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002288static void pseudo_exec(nommu_save_t *nommu_save,
2289 struct command *command,
2290 char **argv_expanded) NORETURN;
2291static void pseudo_exec(nommu_save_t *nommu_save,
2292 struct command *command,
2293 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002294{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002295 if (command->argv)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002296 pseudo_exec_argv(nommu_save, command->argv, command->assignment_cnt, argv_expanded);
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002297
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002298 if (command->group) {
Denis Vlasenko8412d792007-10-01 09:59:47 +00002299#if !BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002300 bb_error_msg_and_die("nested lists are not supported on NOMMU");
Denis Vlasenko8412d792007-10-01 09:59:47 +00002301#else
Denis Vlasenko3b492162007-12-24 14:26:57 +00002302 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002303 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002304 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002305 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002306 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002307 _exit(rcode);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002308#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002309 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002310
2311 /* Can happen. See what bash does with ">foo" by itself. */
2312 debug_printf("trying to pseudo_exec null command\n");
2313 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002314}
2315
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002316#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002317static const char *get_cmdtext(struct pipe *pi)
2318{
2319 char **argv;
2320 char *p;
2321 int len;
2322
2323 /* This is subtle. ->cmdtext is created only on first backgrounding.
2324 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002325 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002326 if (pi->cmdtext)
2327 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002328 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002329 if (!argv || !argv[0]) {
2330 pi->cmdtext = xzalloc(1);
2331 return pi->cmdtext;
2332 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002333
2334 len = 0;
2335 do len += strlen(*argv) + 1; while (*++argv);
2336 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002337 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002338 do {
2339 len = strlen(*argv);
2340 memcpy(p, *argv, len);
2341 p += len;
2342 *p++ = ' ';
2343 } while (*++argv);
2344 p[-1] = '\0';
2345 return pi->cmdtext;
2346}
2347
Eric Andersenbafd94f2001-05-02 16:11:59 +00002348static void insert_bg_job(struct pipe *pi)
2349{
2350 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002351 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002352
2353 /* Linear search for the ID of the job to use */
2354 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002355 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002356 if (thejob->jobid >= pi->jobid)
2357 pi->jobid = thejob->jobid + 1;
2358
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002359 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002360 if (!G.job_list) {
2361 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002362 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002363 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002364 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002365 thejob->next = xmalloc(sizeof(*thejob));
2366 thejob = thejob->next;
2367 }
2368
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002369 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002370 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002371 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2372 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2373 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002374// TODO: do we really need to have so many fields which are just dead weight
2375// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002376 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002377 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002378 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002379 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002380 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002381
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002382 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002383 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002384 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002385 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002386 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002387 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002388}
2389
Eric Andersenbafd94f2001-05-02 16:11:59 +00002390static void remove_bg_job(struct pipe *pi)
2391{
2392 struct pipe *prev_pipe;
2393
Denis Vlasenko87a86552008-07-29 19:43:10 +00002394 if (pi == G.job_list) {
2395 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002396 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002397 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002398 while (prev_pipe->next != pi)
2399 prev_pipe = prev_pipe->next;
2400 prev_pipe->next = pi->next;
2401 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002402 if (G.job_list)
2403 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002404 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002405 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002406}
Eric Andersen028b65b2001-06-28 01:10:11 +00002407
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002408/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002409static void delete_finished_bg_job(struct pipe *pi)
2410{
2411 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002412 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002413 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002414 free(pi);
2415}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002416#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002417
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002418/* Check to see if any processes have exited -- if they
2419 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002420static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002421{
Eric Andersenc798b072001-06-22 06:23:03 +00002422 int attributes;
2423 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002424#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002425 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002426#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002427 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002428 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002429
Denis Vlasenkod5762932009-03-31 11:22:57 +00002430 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2431
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002432 errno = 0;
2433// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2434// /* avoid doing syscall, nothing there anyway */
2435// return rcode;
2436
Eric Andersenc798b072001-06-22 06:23:03 +00002437 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002438 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002439 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002440
Denis Vlasenko1359da62007-04-21 23:27:30 +00002441/* Do we do this right?
2442 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002443 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002444 * [3]+ Stopped sleep 20 | false
2445 * bash-3.00# echo $?
2446 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2447 */
2448
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002449//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2450//are stopped. Testcase: "cat | cat" in a script (not on command line)
2451// + killall -STOP cat
2452
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002453 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002454 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002455 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002456 int dead;
2457
2458// i = G.count_SIGCHLD;
2459 childpid = waitpid(-1, &status, attributes);
2460 if (childpid <= 0) {
2461 if (childpid && errno != ECHILD)
2462 bb_perror_msg("waitpid");
2463// else /* Until next SIGCHLD, waitpid's are useless */
2464// G.handled_SIGCHLD = i;
2465 break;
2466 }
2467 dead = WIFEXITED(status) || WIFSIGNALED(status);
2468
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002469#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002470 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002471 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002472 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2473 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002474 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002475 childpid, WTERMSIG(status), WEXITSTATUS(status));
2476 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002477 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002478 childpid, WEXITSTATUS(status));
2479#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002480 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002481 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002482 for (i = 0; i < fg_pipe->num_cmds; i++) {
2483 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2484 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002485 continue;
2486 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2487 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002488 fg_pipe->cmds[i].pid = 0;
2489 fg_pipe->alive_cmds--;
2490 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002491 /* last process gives overall exitstatus */
2492 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002493 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002494 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002495 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002496 fg_pipe->cmds[i].is_stopped = 1;
2497 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002498 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002499 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2500 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2501 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002502 /* All processes in fg pipe have exited/stopped */
2503#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002504 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002505 insert_bg_job(fg_pipe);
2506#endif
2507 return rcode;
2508 }
2509 /* There are still running processes in the fg pipe */
2510 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002511 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002512 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002513 }
2514
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002515#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002516 /* We asked to wait for bg or orphaned children */
2517 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002518 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002519 for (i = 0; i < pi->num_cmds; i++) {
2520 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002521 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002522 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002523 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002524 /* Happens when shell is used as init process (init=/bin/sh) */
2525 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002526 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002527
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002528 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002529 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002530 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002531 pi->cmds[i].pid = 0;
2532 pi->alive_cmds--;
2533 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002534 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002535 printf(JOB_STATUS_FORMAT, pi->jobid,
2536 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002537 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002538 }
2539 } else {
2540 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002541 pi->cmds[i].is_stopped = 1;
2542 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002543 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002544#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002545 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002546
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002547 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002548}
2549
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002550#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002551static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2552{
2553 pid_t p;
2554 int rcode = checkjobs(fg_pipe);
2555 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002556 p = getpgid(0); /* pgid of our process */
2557 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002558 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002559 return rcode;
2560}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002561#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002562
Denis Vlasenko05743d72008-02-10 12:10:08 +00002563/* run_pipe() starts all the jobs, but doesn't wait for anything
Eric Andersenc798b072001-06-22 06:23:03 +00002564 * to finish. See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002565 *
2566 * return code is normally -1, when the caller has to wait for children
2567 * to finish to determine the exit status of the pipe. If the pipe
2568 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002569 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002570 * return value.
2571 *
2572 * The input of the pipe is always stdin, the output is always
2573 * stdout. The outpipe[] mechanism in BusyBox-0.48 lash is bogus,
2574 * because it tries to avoid running the command substitution in
2575 * subshell, when that is in fact necessary. The subshell process
2576 * now has its stdout directed to the input of the appropriate pipe,
2577 * so this routine is noticeably simpler.
Denis Vlasenko170435c2007-05-23 13:01:10 +00002578 *
2579 * Returns -1 only if started some children. IOW: we have to
2580 * mask out retvals of builtins etc with 0xff!
Eric Andersen25f27032001-04-26 23:22:31 +00002581 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002582static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002583{
2584 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002585 int nextin;
2586 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002587 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002588 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002589 char **argv;
"Vladimir N. Oleynik"485d7cb2005-10-17 09:48:57 +00002590 const struct built_in_command *x;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002591 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002592 /* it is not always needed, but we aim to smaller code */
2593 int squirrel[] = { -1, -1, -1 };
2594 int rcode;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002595 const int single_and_fg = (pi->num_cmds == 1 && pi->followup != PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00002596
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002597 debug_printf_exec("run_pipe start: single_and_fg=%d\n", single_and_fg);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002598
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002599#if ENABLE_HUSH_JOB
Eric Andersenada18ff2001-05-21 16:18:22 +00002600 pi->pgrp = -1;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002601#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002602 pi->alive_cmds = 1;
2603 pi->stopped_cmds = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00002604
2605 /* Check if this is a simple builtin (not part of a pipe).
2606 * Builtins within pipes have to fork anyway, and are handled in
2607 * pseudo_exec. "echo foo | read bar" doesn't work on bash, either.
2608 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002609 command = &(pi->cmds[0]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002610
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002611#if ENABLE_HUSH_FUNCTIONS
2612 if (single_and_fg && command->group && command->grp_type == GRP_FUNCTION) {
2613 /* We "execute" function definition */
2614 bb_error_msg("here we ought to remember function definition, and go on");
2615 return EXIT_SUCCESS;
2616 }
2617#endif
2618
2619 if (single_and_fg && command->group && command->grp_type == GRP_NORMAL) {
Eric Andersen04407e52001-06-07 16:42:05 +00002620 debug_printf("non-subshell grouping\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002621 setup_redirects(command, squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002622 debug_printf_exec(": run_list\n");
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002623 rcode = run_list(command->group) & 0xff;
Eric Andersen04407e52001-06-07 16:42:05 +00002624 restore_redirects(squirrel);
Denis Vlasenko05743d72008-02-10 12:10:08 +00002625 debug_printf_exec("run_pipe return %d\n", rcode);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002626 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00002627 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002628 }
2629
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002630 argv = command->argv;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002631 argv_expanded = NULL;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002632
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002633 if (single_and_fg && argv != NULL) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002634 char **new_env = NULL;
2635 char **old_env = NULL;
2636
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002637 i = command->assignment_cnt;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002638 if (i != 0 && argv[i] == NULL) {
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002639 /* assignments, but no command: set local environment */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002640 for (i = 0; argv[i] != NULL; i++) {
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002641 debug_printf("local environment set: %s\n", argv[i]);
Denis Vlasenko170435c2007-05-23 13:01:10 +00002642 p = expand_string_to_string(argv[i]);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00002643 set_local_var(p, 0);
Eric Andersen78a7c992001-05-15 16:30:25 +00002644 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002645 return EXIT_SUCCESS; /* don't worry about errors in set_local_var() yet */
Eric Andersen78a7c992001-05-15 16:30:25 +00002646 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002647
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002648 /* Expand the rest into (possibly) many strings each */
2649 argv_expanded = expand_strvec_to_strvec(argv + i);
2650
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00002651 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002652 if (strcmp(argv_expanded[0], x->cmd) != 0)
2653 continue;
2654 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
2655 debug_printf("exec with redirects only\n");
2656 setup_redirects(command, NULL);
2657 rcode = EXIT_SUCCESS;
2658 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00002659 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002660 debug_printf("builtin inline %s\n", argv_expanded[0]);
2661 /* XXX setup_redirects acts on file descriptors, not FILEs.
2662 * This is perfect for work that comes after exec().
2663 * Is it really safe for inline use? Experimentally,
2664 * things seem to work with glibc. */
2665 setup_redirects(command, squirrel);
2666 new_env = expand_assignments(argv, command->assignment_cnt);
2667 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002668 debug_printf_exec(": builtin '%s' '%s'...\n",
2669 x->cmd, argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002670 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002671#if ENABLE_FEATURE_SH_STANDALONE
2672 clean_up_and_ret:
2673#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002674 restore_redirects(squirrel);
2675 free_strings_and_unsetenv(new_env, 1);
2676 putenv_all(old_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002677 free(old_env); /* not free_strings()! */
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002678 clean_up_and_ret1:
2679 free(argv_expanded);
2680 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
2681 debug_printf_exec("run_pipe return %d\n", rcode);
2682 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00002683 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002684#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002685 i = find_applet_by_name(argv_expanded[0]);
2686 if (i >= 0 && APPLET_IS_NOFORK(i)) {
2687 setup_redirects(command, squirrel);
2688 save_nofork_data(&G.nofork_save);
2689 new_env = expand_assignments(argv, command->assignment_cnt);
2690 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002691 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
2692 argv_expanded[0], argv_expanded[1]);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00002693 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
2694 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00002695 }
2696#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002697 }
2698
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002699 /* NB: argv_expanded may already be created, and that
2700 * might include `cmd` runs! Do not rerun it! We *must*
2701 * use argv_expanded if it's non-NULL */
2702
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002703 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002704 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002705 nextin = 0;
2706
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002707 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00002708#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002709 volatile nommu_save_t nommu_save;
2710 nommu_save.new_env = NULL;
2711 nommu_save.old_env = NULL;
2712 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002713#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002714 command = &(pi->cmds[i]);
2715 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002716 debug_printf_exec(": pipe member '%s' '%s'...\n",
2717 command->argv[0], command->argv[1]);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002718 } else
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002719 debug_printf_exec(": pipe member with no argv\n");
Eric Andersen25f27032001-04-26 23:22:31 +00002720
2721 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002722 pipefds[0] = 0;
2723 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002724 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002725 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00002726
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002727 command->pid = BB_MMU ? fork() : vfork();
2728 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002729#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00002730 die_sleep = 0; /* let nofork's xfuncs die */
2731
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002732 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00002733 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002734 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002735 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002736 pgrp = pi->pgrp;
2737 if (pgrp < 0) /* true for 1st process only */
2738 pgrp = getpid();
2739 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002740 /* We do it in *every* child, not just first,
2741 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002742 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002743 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002744 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002745#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00002746 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002747 xmove_fd(pipefds[1], 1); /* write end */
2748 if (pipefds[0] > 1)
2749 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00002750 /* Like bash, explicit redirects override pipes,
2751 * and the pipe fd is available for dup'ing. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002752 setup_redirects(command, NULL);
Eric Andersen52a97ca2001-06-22 06:49:26 +00002753
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002754 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002755 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
2756
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002757 /* Stores to nommu_save list of env vars putenv'ed
2758 * (NOMMU, on MMU we don't need that) */
2759 /* cast away volatility... */
2760 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002761 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00002762 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002763 /* parent */
2764#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002765 /* Clean up after vforked child */
2766 free(nommu_save.argv);
2767 free_strings_and_unsetenv(nommu_save.new_env, 1);
2768 putenv_all(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002769#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002770 free(argv_expanded);
2771 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002772 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002773 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00002774 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002775 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002776 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002777#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002778 /* Second and next children need to know pid of first one */
2779 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002780 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002781#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002782 }
Eric Andersen25f27032001-04-26 23:22:31 +00002783
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002784 if (i)
2785 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002786 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002787 close(pipefds[1]); /* write end */
2788 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00002789 nextin = pipefds[0];
2790 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00002791
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002792 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00002793 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
2794 return 1;
2795 }
2796
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002797 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00002798 return -1;
2799}
2800
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002801#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002802static void debug_print_tree(struct pipe *pi, int lvl)
2803{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002804 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002805 [PIPE_SEQ] = "SEQ",
2806 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002807 [PIPE_OR ] = "OR" ,
2808 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002809 };
2810 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002811 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002812#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002813 [RES_IF ] = "IF" ,
2814 [RES_THEN ] = "THEN" ,
2815 [RES_ELIF ] = "ELIF" ,
2816 [RES_ELSE ] = "ELSE" ,
2817 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002818#endif
2819#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002820 [RES_FOR ] = "FOR" ,
2821 [RES_WHILE] = "WHILE",
2822 [RES_UNTIL] = "UNTIL",
2823 [RES_DO ] = "DO" ,
2824 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002825#endif
2826#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002827 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00002828#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002829#if ENABLE_HUSH_CASE
2830 [RES_CASE ] = "CASE" ,
2831 [RES_MATCH] = "MATCH",
2832 [RES_CASEI] = "CASEI",
2833 [RES_ESAC ] = "ESAC" ,
2834#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00002835 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002836 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002837 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002838 static const char *const GRPTYPE[] = {
2839 "()",
2840 "{}",
2841#if ENABLE_HUSH_FUNCTIONS
2842 "func()",
2843#endif
2844 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002845
2846 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002847
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002848 pin = 0;
2849 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002850 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
2851 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002852 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002853 while (prn < pi->num_cmds) {
2854 struct command *command = &pi->cmds[prn];
2855 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002856
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002857 fprintf(stderr, "%*s prog %d assignment_cnt:%d",
2858 lvl*2, "", prn,
2859 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002860 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002861 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00002862 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00002863 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002864 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002865 prn++;
2866 continue;
2867 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002868 if (argv) while (*argv) {
2869 fprintf(stderr, " '%s'", *argv);
2870 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00002871 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00002872 fprintf(stderr, "\n");
2873 prn++;
2874 }
2875 pi = pi->next;
2876 pin++;
2877 }
2878}
2879#endif
2880
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002881/* NB: called by pseudo_exec, and therefore must not modify any
2882 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002883static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002884{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002885#if ENABLE_HUSH_CASE
2886 char *case_word = NULL;
2887#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002888#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002889 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002890 char *for_varname = NULL;
2891 char **for_lcur = NULL;
2892 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00002893#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002894 smallint flag_skip = 1;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002895 smalluint rcode = 0; /* probably just for compiler */
Denis Vlasenkod91afa32008-07-29 11:10:01 +00002896#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002897 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002898#else
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002899 enum { cond_code = 0, };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00002900#endif
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002901 /*enum reserved_style*/ smallint rword = RES_NONE;
2902 /*enum reserved_style*/ smallint skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002903
Denis Vlasenko87a86552008-07-29 19:43:10 +00002904 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00002905
Denis Vlasenko06810332007-05-21 23:30:54 +00002906#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002907 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002908 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
2909 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002910 continue;
2911 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002912 if (cpipe->next == NULL) {
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002913 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002914 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002915 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00002916 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002917 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002918 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00002919 continue;
2920 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00002921 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
2922 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002923 ) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00002924 syntax("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002925 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002926 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002927 }
2928 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002929#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002930
Denis Vlasenkobe709c22008-07-28 00:01:16 +00002931 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00002932 * in order to return, no direct "return" statements please.
2933 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00002934
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00002935////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00002936
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002937#if ENABLE_HUSH_JOB
2938 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
2939 * We are saving state before entering outermost list ("while...done")
2940 * so that ctrl-Z will correctly background _entire_ outermost list,
2941 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002942 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002943 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002944 /* ctrl-Z forked and we are parent; or ctrl-C.
2945 * Sighandler has longjmped us here */
2946 signal(SIGINT, SIG_IGN);
2947 signal(SIGTSTP, SIG_IGN);
2948 /* Restore level (we can be coming from deep inside
2949 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002950 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002951#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00002952 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002953 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00002954 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002955 }
2956#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00002957//// if (G.ctrl_z_flag) {
2958//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
2959//// * Remember this child as background job */
2960//// insert_bg_job(pi);
2961//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002962 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00002963 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00002964//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00002965 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00002966 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002967 rcode = 0;
2968 goto ret;
2969 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00002970//// /* ctrl-Z handler will store pid etc in pi */
2971//// G.toplevel_list = pi;
2972//// G.ctrl_z_flag = 0;
2973////#if ENABLE_FEATURE_SH_STANDALONE
2974//// G.nofork_save.saved = 0; /* in case we will run a nofork later */
2975////#endif
2976//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
2977//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002978 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00002979#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002980
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002981 /* Go through list of pipes, (maybe) executing them. */
2982 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00002983 if (G.flag_SIGINT)
2984 break;
2985
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002986 IF_HAS_KEYWORDS(rword = pi->res_word;)
2987 IF_HAS_NO_KEYWORDS(rword = RES_NONE;)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002988 debug_printf_exec(": rword=%d cond_code=%d skip_more=%d\n",
2989 rword, cond_code, skip_more_for_this_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00002990#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00002991 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00002992 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00002993 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00002994 /* start of a loop: remember where loop starts */
2995 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002996 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00002997 }
Denis Vlasenko06810332007-05-21 23:30:54 +00002998#endif
Denis Vlasenko219e88d2007-05-21 10:18:23 +00002999 if (rword == skip_more_for_this_rword && flag_skip) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003000 if (pi->followup == PIPE_SEQ)
3001 flag_skip = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003002 /* it is "<false> && CMD" or "<true> || CMD"
3003 * and we should not execute CMD */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003004 continue;
3005 }
3006 flag_skip = 1;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003007 skip_more_for_this_rword = RES_XXXX;
Denis Vlasenko06810332007-05-21 23:30:54 +00003008#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003009 if (cond_code) {
3010 if (rword == RES_THEN) {
3011 /* "if <false> THEN cmd": skip cmd */
3012 continue;
3013 }
3014 } else {
3015 if (rword == RES_ELSE || rword == RES_ELIF) {
3016 /* "if <true> then ... ELSE/ELIF cmd":
3017 * skip cmd and all following ones */
3018 break;
3019 }
3020 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003021#endif
3022#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003023 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003024 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003025 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003026
3027 static const char encoded_dollar_at[] ALIGN1 = {
3028 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3029 }; /* encoded representation of "$@" */
3030 static const char *const encoded_dollar_at_argv[] = {
3031 encoded_dollar_at, NULL
3032 }; /* argv list with one element: "$@" */
3033 char **vals;
3034
3035 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003036 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003037 /* if no variable values after "in" we skip "for" */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003038 if (!pi->next->cmds[0].argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003039 break;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003040 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003041 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003042 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003043 debug_print_strings("for_list made from", vals);
3044 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003045 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003046 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003047 for_varname = pi->cmds[0].argv[0];
3048 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003049 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003050 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003051 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003052 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003053 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003054 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003055 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003056 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003057 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003058 }
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003059 /* insert next value from for_lcur */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003060//TODO: does it need escaping?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003061 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3062 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003063 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003064 if (rword == RES_IN) {
3065 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3066 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003067 if (rword == RES_DONE) {
3068 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003069 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003070#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003071#if ENABLE_HUSH_CASE
3072 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003073 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003074 continue;
3075 }
3076 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003077 char **argv;
3078
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003079 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3080 break;
3081 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003082 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003083 while (*argv) {
3084 char *pattern = expand_string_to_string(*argv);
3085 /* TODO: which FNM_xxx flags to use? */
3086 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3087 free(pattern);
3088 if (cond_code == 0) { /* match! we will execute this branch */
3089 free(case_word); /* make future "word)" stop */
3090 case_word = NULL;
3091 break;
3092 }
3093 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003094 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003095 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003096 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003097 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003098 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003099 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003100 }
3101#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003102 /* Just pressing <enter> in shell should check for jobs.
3103 * OTOH, in non-interactive shell this is useless
3104 * and only leads to extra job checks */
3105 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003106 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003107 goto check_jobs_and_continue;
3108 continue;
3109 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003110
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003111 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003112 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003113 * after run_pipe() to collect any background children,
3114 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003115 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003116 {
3117 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003118#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003119 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003120#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003121 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3122 if (r != -1) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003123 /* we only ran a builtin: rcode is already known
3124 * and we don't need to wait for anything. */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003125 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003126#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003127 /* was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003128 if (G.flag_break_continue) {
3129 smallint fbc = G.flag_break_continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003130 /* we might fall into outer *loop*,
3131 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003132 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003133 G.depth_break_continue--;
3134 if (G.depth_break_continue == 0)
3135 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003136 /* else: e.g. "continue 2" should *break* once, *then* continue */
3137 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003138 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003139 goto check_jobs_and_break;
3140 /* "continue": simulate end of loop */
3141 rword = RES_DONE;
3142 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003143 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003144#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003145 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003146 /* what does bash do with attempts to background builtins? */
3147 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003148 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3149 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003150 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003151#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003152 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003153 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003154#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003155 rcode = 0; /* EXIT_SUCCESS */
3156 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003157#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003158 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003159 /* waits for completion, then fg's main shell */
3160 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003161 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003162 debug_printf_exec(": checkjobs_and_fg_shell returned %d\n", rcode);
3163 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003164#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003165 { /* this one just waits for completion */
3166 rcode = checkjobs(pi);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003167 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003168 debug_printf_exec(": checkjobs returned %d\n", rcode);
3169 }
Eric Andersen25f27032001-04-26 23:22:31 +00003170 }
3171 }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003172 debug_printf_exec(": setting last_return_code=%d\n", rcode);
Denis Vlasenko87a86552008-07-29 19:43:10 +00003173 G.last_return_code = rcode;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003174
3175 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003176#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003177 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003178 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003179#endif
3180#if ENABLE_HUSH_LOOPS
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003181 if (rword == RES_WHILE) {
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003182 if (rcode) {
3183 rcode = 0; /* "while false; do...done" - exitcode 0 */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003184 goto check_jobs_and_break;
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003185 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003186 }
3187 if (rword == RES_UNTIL) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003188 if (!rcode) {
3189 check_jobs_and_break:
3190 checkjobs(NULL);
3191 break;
3192 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003193 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003194#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003195 if ((rcode == 0 && pi->followup == PIPE_OR)
3196 || (rcode != 0 && pi->followup == PIPE_AND)
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003197 ) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003198 skip_more_for_this_rword = rword;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003199 }
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003200
3201 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003202 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003203 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003204
3205#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003206//// if (G.ctrl_z_flag) {
3207//// /* ctrl-Z forked somewhere in the past, we are the child,
3208//// * and now we completed running the list. Exit. */
3209//////TODO: _exit?
3210//// exit(rcode);
3211//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003212 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003213 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003214//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003215//// signal(SIGTSTP, SIG_IGN);
3216//// signal(SIGINT, SIG_IGN);
3217//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003218#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003219 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003220#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003221 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003222 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003223 free(for_list);
3224#endif
3225#if ENABLE_HUSH_CASE
3226 free(case_word);
3227#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003228 return rcode;
3229}
3230
Eric Andersen25f27032001-04-26 23:22:31 +00003231/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003232static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003233{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003234 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003235 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003236 if (!G.fake_mode) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003237 debug_printf_exec(": run_list with %d members\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003238 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003239 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003240 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003241 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003242 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003243 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003244 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003245 return rcode;
3246}
3247
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003248
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003249/* Peek ahead in the in_str to find out if we have a "&n" construct,
3250 * as in "2>&1", that represents duplicating a file descriptor.
3251 * Return either -2 (syntax error), -1 (no &), or the number found.
3252 */
3253static int redirect_dup_num(struct in_str *input)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003254{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003255 int ch, d = 0, ok = 0;
3256 ch = i_peek(input);
3257 if (ch != '&') return -1;
3258
3259 i_getch(input); /* get the & */
3260 ch = i_peek(input);
3261 if (ch == '-') {
3262 i_getch(input);
3263 return -3; /* "-" represents "close me" */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003264 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003265 while (isdigit(ch)) {
3266 d = d*10 + (ch-'0');
3267 ok = 1;
3268 i_getch(input);
3269 ch = i_peek(input);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003270 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003271 if (ok) return d;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003272
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003273 bb_error_msg("ambiguous redirect");
3274 return -2;
Eric Andersen78a7c992001-05-15 16:30:25 +00003275}
3276
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003277/* The src parameter allows us to peek forward to a possible &n syntax
Eric Andersen25f27032001-04-26 23:22:31 +00003278 * for file descriptor duplication, e.g., "2>&1".
3279 * Return code is 0 normally, 1 if a syntax error is detected in src.
3280 * Resource errors (in xmalloc) cause the process to exit */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003281static int setup_redirect(struct parse_context *ctx,
3282 int fd,
3283 redir_type style,
3284 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003285{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003286 struct command *command = ctx->command;
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003287 struct redir_struct *redir;
3288 struct redir_struct **redirp;
3289 int dup_num;
3290
3291 /* Check for a '2>&1' type redirect */
3292 dup_num = redirect_dup_num(input);
3293 if (dup_num == -2)
3294 return 1; /* syntax error */
Eric Andersen25f27032001-04-26 23:22:31 +00003295
3296 /* Create a new redir_struct and drop it onto the end of the linked list */
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003297 redirp = &command->redirects;
3298 while ((redir = *redirp) != NULL) {
3299 redirp = &(redir->next);
Eric Andersen25f27032001-04-26 23:22:31 +00003300 }
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003301 *redirp = redir = xzalloc(sizeof(*redir));
Denis Vlasenkoff097622007-10-01 10:00:45 +00003302 /* redir->next = NULL; */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003303 /* redir->rd_filename = NULL; */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003304 redir->rd_type = style;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003305 redir->fd = (fd == -1) ? redir_table[style].default_fd : fd;
Eric Andersen25f27032001-04-26 23:22:31 +00003306
3307 debug_printf("Redirect type %d%s\n", redir->fd, redir_table[style].descrip);
3308
Denis Vlasenkof9f74292009-04-03 00:07:05 +00003309 redir->dup = dup_num;
3310 if (dup_num != -1) {
Eric Andersen25f27032001-04-26 23:22:31 +00003311 /* Erik had a check here that the file descriptor in question
Eric Andersen83a2ae22001-05-07 17:59:25 +00003312 * is legit; I postpone that to "run time"
3313 * A "-" representation of "close me" shows up as a -3 here */
Eric Andersen25f27032001-04-26 23:22:31 +00003314 debug_printf("Duplicating redirect '%d>&%d'\n", redir->fd, redir->dup);
3315 } else {
3316 /* We do _not_ try to open the file that src points to,
3317 * since we need to return and let src be expanded first.
3318 * Set ctx->pending_redirect, so we know what to do at the
Denis Vlasenko201c72a2007-05-25 10:00:36 +00003319 * end of the next parsed word. */
Eric Andersen25f27032001-04-26 23:22:31 +00003320 ctx->pending_redirect = redir;
3321 }
3322 return 0;
3323}
3324
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003325
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003326static struct pipe *new_pipe(void)
3327{
Eric Andersen25f27032001-04-26 23:22:31 +00003328 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003329 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003330 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003331 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003332 return pi;
3333}
3334
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003335/* Command (member of a pipe) is complete. The only possible error here
3336 * is out of memory, in which case xmalloc exits. */
3337static int done_command(struct parse_context *ctx)
3338{
3339 /* The command is really already in the pipe structure, so
3340 * advance the pipe counter and make a new, null command. */
3341 struct pipe *pi = ctx->pipe;
3342 struct command *command = ctx->command;
3343
3344 if (command) {
3345 if (command->group == NULL
3346 && command->argv == NULL
3347 && command->redirects == NULL
3348 ) {
3349 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
3350 return pi->num_cmds;
3351 }
3352 pi->num_cmds++;
3353 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
3354 } else {
3355 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3356 }
3357
3358 /* Only real trickiness here is that the uncommitted
3359 * command structure is not counted in pi->num_cmds. */
3360 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3361 command = &pi->cmds[pi->num_cmds];
3362 memset(command, 0, sizeof(*command));
3363
3364 ctx->command = command;
3365 /* but ctx->pipe and ctx->list_head remain unchanged */
3366
3367 return pi->num_cmds; /* used only for 0/nonzero check */
3368}
3369
3370static void done_pipe(struct parse_context *ctx, pipe_style type)
3371{
3372 int not_null;
3373
3374 debug_printf_parse("done_pipe entered, followup %d\n", type);
3375 /* Close previous command */
3376 not_null = done_command(ctx);
3377 ctx->pipe->followup = type;
3378 IF_HAS_KEYWORDS(ctx->pipe->pi_inverted = ctx->ctx_inverted;)
3379 IF_HAS_KEYWORDS(ctx->ctx_inverted = 0;)
3380 IF_HAS_KEYWORDS(ctx->pipe->res_word = ctx->ctx_res_w;)
3381
3382 /* Without this check, even just <enter> on command line generates
3383 * tree of three NOPs (!). Which is harmless but annoying.
3384 * IOW: it is safe to do it unconditionally.
3385 * RES_NONE case is for "for a in; do ..." (empty IN set)
3386 * to work, possibly other cases too. */
3387 if (not_null IF_HAS_KEYWORDS(|| ctx->ctx_res_w != RES_NONE)) {
3388 struct pipe *new_p;
3389 debug_printf_parse("done_pipe: adding new pipe: "
3390 "not_null:%d ctx->ctx_res_w:%d\n",
3391 not_null, ctx->ctx_res_w);
3392 new_p = new_pipe();
3393 ctx->pipe->next = new_p;
3394 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003395 /* RES_THEN, RES_DO etc are "sticky" -
3396 * they remain set for commands inside if/while.
3397 * This is used to control execution.
3398 * RES_FOR and RES_IN are NOT sticky (needed to support
3399 * cases where variable or value happens to match a keyword):
3400 */
3401#if ENABLE_HUSH_LOOPS
3402 if (ctx->ctx_res_w == RES_FOR
3403 || ctx->ctx_res_w == RES_IN)
3404 ctx->ctx_res_w = RES_NONE;
3405#endif
3406#if ENABLE_HUSH_CASE
3407 if (ctx->ctx_res_w == RES_MATCH)
3408 ctx->ctx_res_w = RES_CASEI;
3409#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003410 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003411 /* Create the memory for command, roughly:
3412 * ctx->pipe->cmds = new struct command;
3413 * ctx->command = &ctx->pipe->cmds[0];
3414 */
3415 done_command(ctx);
3416 }
3417 debug_printf_parse("done_pipe return\n");
3418}
3419
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003420static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003421{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003422 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003423 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003424 /* Create the memory for command, roughly:
3425 * ctx->pipe->cmds = new struct command;
3426 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003427 */
3428 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003429}
3430
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003431
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003432/* If a reserved word is found and processed, parse context is modified
3433 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003434 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003435#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003436struct reserved_combo {
3437 char literal[6];
3438 unsigned char res;
3439 unsigned char assignment_flag;
3440 int flag;
3441};
3442enum {
3443 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003444#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003445 FLAG_IF = (1 << RES_IF ),
3446 FLAG_THEN = (1 << RES_THEN ),
3447 FLAG_ELIF = (1 << RES_ELIF ),
3448 FLAG_ELSE = (1 << RES_ELSE ),
3449 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003450#endif
3451#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003452 FLAG_FOR = (1 << RES_FOR ),
3453 FLAG_WHILE = (1 << RES_WHILE),
3454 FLAG_UNTIL = (1 << RES_UNTIL),
3455 FLAG_DO = (1 << RES_DO ),
3456 FLAG_DONE = (1 << RES_DONE ),
3457 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003458#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003459#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003460 FLAG_MATCH = (1 << RES_MATCH),
3461 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003462#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003463 FLAG_START = (1 << RES_XXXX ),
3464};
3465
3466static const struct reserved_combo* match_reserved_word(o_string *word)
3467{
Eric Andersen25f27032001-04-26 23:22:31 +00003468 /* Mostly a list of accepted follow-up reserved words.
3469 * FLAG_END means we are done with the sequence, and are ready
3470 * to turn the compound list into a command.
3471 * FLAG_START means the word must start a new compound list.
3472 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003473 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003474#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003475 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3476 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3477 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3478 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3479 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3480 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003481#endif
3482#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003483 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3484 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3485 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3486 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3487 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3488 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003489#endif
3490#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003491 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3492 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003493#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003494 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003495 const struct reserved_combo *r;
3496
3497 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3498 if (strcmp(word->data, r->literal) == 0)
3499 return r;
3500 }
3501 return NULL;
3502}
3503static int reserved_word(o_string *word, struct parse_context *ctx)
3504{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003505#if ENABLE_HUSH_CASE
3506 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003507 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003508 };
3509#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003510 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003511
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003512 r = match_reserved_word(word);
3513 if (!r)
3514 return 0;
3515
3516 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003517#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003518 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3519 /* "case word IN ..." - IN part starts first match part */
3520 r = &reserved_match;
3521 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003522#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003523 if (r->flag == 0) { /* '!' */
3524 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003525 syntax("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003526 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003527 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003528 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003529 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003530 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003531 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003532 struct parse_context *old;
3533 old = xmalloc(sizeof(*old));
3534 debug_printf_parse("push stack %p\n", old);
3535 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003536 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003537 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003538 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003539 syntax(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003540 ctx->ctx_res_w = RES_SNTX;
3541 return 1;
3542 }
3543 ctx->ctx_res_w = r->res;
3544 ctx->old_flag = r->flag;
3545 if (ctx->old_flag & FLAG_END) {
3546 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003547 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003548 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003549 old = ctx->stack;
3550 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003551 old->command->grp_type = GRP_NORMAL;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003552 *ctx = *old; /* physical copy */
3553 free(old);
3554 }
3555 word->o_assignment = r->assignment_flag;
3556 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003557}
Denis Vlasenko06810332007-05-21 23:30:54 +00003558#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003559
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003560/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003561 * Normal return is 0. Syntax errors return 1.
3562 * Note: on return, word is reset, but not o_free'd!
3563 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003564static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003565{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003566 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003567
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003568 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003569 if (word->length == 0 && word->nonnull == 0) {
3570 debug_printf_parse("done_word return 0: true null, ignored\n");
3571 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003572 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003573 /* If this word wasn't an assignment, next ones definitely
3574 * can't be assignments. Even if they look like ones. */
3575 if (word->o_assignment != DEFINITELY_ASSIGNMENT
3576 && word->o_assignment != WORD_IS_KEYWORD
3577 ) {
3578 word->o_assignment = NOT_ASSIGNMENT;
3579 } else {
3580 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003581 command->assignment_cnt++;
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003582 word->o_assignment = MAYBE_ASSIGNMENT;
3583 }
3584
Eric Andersen25f27032001-04-26 23:22:31 +00003585 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003586 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3587 * only if run as "bash", not "sh" */
3588 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenko55789c62008-06-18 16:30:42 +00003589 word->o_assignment = NOT_ASSIGNMENT;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003590 debug_printf("word stored in rd_filename: '%s'\n", word->data);
Eric Andersen25f27032001-04-26 23:22:31 +00003591 } else {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003592 /* "{ echo foo; } echo bar" - bad */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003593 /* NB: bash allows e.g.:
3594 * if true; then { echo foo; } fi
3595 * while if false; then false; fi do break; done
3596 * TODO? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003597 if (command->group) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003598 syntax(word->data);
3599 debug_printf_parse("done_word return 1: syntax error, "
3600 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00003601 return 1;
3602 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003603#if HAS_KEYWORDS
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003604#if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00003605 if (ctx->ctx_dsemicolon
3606 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
3607 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00003608 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003609 /* ctx->ctx_res_w = RES_MATCH; */
3610 ctx->ctx_dsemicolon = 0;
3611 } else
3612#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003613 if (!command->argv /* if it's the first word... */
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003614#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003615 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
3616 && ctx->ctx_res_w != RES_IN
Denis Vlasenko6bdff082008-07-09 20:14:53 +00003617#endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003618 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003619 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
3620 if (reserved_word(word, ctx)) {
3621 o_reset(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003622 debug_printf_parse("done_word return %d\n",
3623 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003624 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003625 }
Eric Andersen25f27032001-04-26 23:22:31 +00003626 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003627#endif
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003628 if (word->nonnull /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00003629 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
3630 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003631 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003632 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003633 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003634 char *p = word->data;
3635 while (p[0] == SPECIAL_VAR_SYMBOL
3636 && (p[1] & 0x7f) == '@'
3637 && p[2] == SPECIAL_VAR_SYMBOL
3638 ) {
3639 p += 3;
3640 }
3641 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003642 /* saw no "$@", or not only "$@" but some
3643 * real text is there too */
3644 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00003645 * e.g. "", $empty"" etc to not disappear */
3646 o_addchr(word, SPECIAL_VAR_SYMBOL);
3647 o_addchr(word, SPECIAL_VAR_SYMBOL);
3648 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003649 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003650 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003651 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003652 }
Eric Andersen25f27032001-04-26 23:22:31 +00003653
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003654 o_reset(word);
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003655 ctx->pending_redirect = NULL;
3656
Denis Vlasenko06810332007-05-21 23:30:54 +00003657#if ENABLE_HUSH_LOOPS
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003658 /* Force FOR to have just one word (variable name) */
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003659 /* NB: basically, this makes hush see "for v in ..." syntax as if
3660 * as it is "for v; in ...". FOR and IN become two pipe structs
3661 * in parse tree. */
3662 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003663//TODO: check that command->argv[0] is a valid variable name!
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00003664 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00003665 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003666#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003667#if ENABLE_HUSH_CASE
3668 /* Force CASE to have just one word */
3669 if (ctx->ctx_res_w == RES_CASE) {
3670 done_pipe(ctx, PIPE_SEQ);
3671 }
3672#endif
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003673 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00003674 return 0;
3675}
3676
Eric Andersen25f27032001-04-26 23:22:31 +00003677/* If a redirect is immediately preceded by a number, that number is
3678 * supposed to tell which file descriptor to redirect. This routine
3679 * looks for such preceding numbers. In an ideal world this routine
3680 * needs to handle all the following classes of redirects...
3681 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
3682 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
3683 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
3684 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
3685 * A -1 output from this program means no valid number was found, so the
3686 * caller should use the appropriate default for this redirection.
3687 */
3688static int redirect_opt_num(o_string *o)
3689{
3690 int num;
3691
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003692 if (o->length == 0)
3693 return -1;
3694 for (num = 0; num < o->length; num++) {
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00003695 if (!isdigit(o->data[num])) {
Eric Andersen25f27032001-04-26 23:22:31 +00003696 return -1;
3697 }
3698 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00003699 num = atoi(o->data);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003700 o_reset(o);
Eric Andersen25f27032001-04-26 23:22:31 +00003701 return num;
3702}
3703
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003704static struct pipe *parse_stream(struct in_str *input, int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003705static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00003706
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003707#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003708static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003709{
3710 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003711 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003712
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00003713 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00003714 pid = BB_MMU ? fork() : vfork();
3715 if (pid < 0)
3716 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003717
Denis Vlasenko05743d72008-02-10 12:10:08 +00003718 if (pid == 0) { /* child */
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00003719 /* Process substitution is not considered to be usual
3720 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003721 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
3722 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00003723 bb_signals(0
3724 + (1 << SIGTSTP)
3725 + (1 << SIGTTIN)
3726 + (1 << SIGTTOU)
3727 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003728 if (ENABLE_HUSH_JOB)
3729 die_sleep = 0; /* let nofork's xfuncs die */
3730 close(channel[0]); /* NB: close _first_, then move fd! */
3731 xmove_fd(channel[1], 1);
3732 /* Prevent it from trying to handle ctrl-z etc */
3733 USE_HUSH_JOB(G.run_list_level = 1;)
3734#if BB_MMU
3735 parse_and_run_string(s);
3736 _exit(G.last_return_code);
3737#else
3738 /* We re-execute after vfork on NOMMU. This makes this script safe:
3739 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >TESTFILE
3740 * huge=`cat TESTFILE` # was blocking here forever
3741 * echo OK
3742 */
3743//TODO: pass non-exported variables, traps, and functions
3744 execl(CONFIG_BUSYBOX_EXEC_PATH, "hush", "-c", s, NULL);
3745 _exit(127);
3746#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003747 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003748
3749 /* parent */
Eric Andersen25f27032001-04-26 23:22:31 +00003750 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003751 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00003752 return pf;
3753}
3754
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003755/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003756static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00003757{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003758 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00003759 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003760 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003761
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003762 pf = generate_stream_from_string(s);
3763 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00003764 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003765 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00003766
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003767 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003768 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003769 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003770 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003771 if (ch == '\n') {
3772 eol_cnt++;
3773 continue;
3774 }
3775 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00003776 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00003777 eol_cnt--;
3778 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00003779 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00003780 }
3781
3782 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003783 /* Note: we got EOF, and we just close the read end of the pipe.
3784 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003785 * Try these:
3786 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
3787 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00003788 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00003789 fclose(pf);
3790 debug_printf("closed FILE from child. return 0\n");
3791 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003792}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00003793#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003794
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003795static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00003796 struct in_str *input, int ch)
3797{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003798 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00003799 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003800 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003801 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00003802 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003803 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003804
3805 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003806#if ENABLE_HUSH_FUNCTIONS
3807 if (ch == 'F') { /* function definition? */
3808 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
3809 //command->fname = dest->data;
3810 command->grp_type = GRP_FUNCTION;
3811//TODO: review every o_reset() location... do they handle all o_string fields correctly?
3812 memset(dest, 0, sizeof(*dest));
3813 }
3814#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003815 if (command->argv /* word [word](... */
3816 || dest->length /* word(... */
3817 || dest->nonnull /* ""(... */
3818 ) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003819 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003820 debug_printf_parse("parse_group return 1: "
3821 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00003822 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003823 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00003824 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00003825 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00003826 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003827 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00003828 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003829 pipe_list = parse_stream(input, endch);
3830 /* empty ()/{} or parse error? */
3831 if (!pipe_list || pipe_list == ERR_PTR) {
3832 syntax(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003833 debug_printf_parse("parse_group return 1: "
3834 "parse_stream returned %p\n", pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003835 return 1;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00003836 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003837 command->group = pipe_list;
3838 debug_printf_parse("parse_group return 0\n");
3839 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003840 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00003841}
3842
Mike Frysinger98c52642009-04-02 10:02:37 +00003843#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003844/* Subroutines for copying $(...) and `...` things */
3845static void add_till_backquote(o_string *dest, struct in_str *input);
3846/* '...' */
3847static void add_till_single_quote(o_string *dest, struct in_str *input)
3848{
3849 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003850 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003851 if (ch == EOF)
3852 break;
3853 if (ch == '\'')
3854 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003855 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003856 }
3857}
3858/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
3859static void add_till_double_quote(o_string *dest, struct in_str *input)
3860{
3861 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003862 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003863 if (ch == '"')
3864 break;
3865 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003866 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003867 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003868 }
3869 if (ch == EOF)
3870 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003871 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003872 if (ch == '`') {
3873 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003874 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003875 continue;
3876 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00003877 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003878 }
3879}
3880/* Process `cmd` - copy contents until "`" is seen. Complicated by
3881 * \` quoting.
3882 * "Within the backquoted style of command substitution, backslash
3883 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
3884 * The search for the matching backquote shall be satisfied by the first
3885 * backquote found without a preceding backslash; during this search,
3886 * if a non-escaped backquote is encountered within a shell comment,
3887 * a here-document, an embedded command substitution of the $(command)
3888 * form, or a quoted string, undefined results occur. A single-quoted
3889 * or double-quoted string that begins, but does not end, within the
3890 * "`...`" sequence produces undefined results."
3891 * Example Output
3892 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
3893 */
3894static void add_till_backquote(o_string *dest, struct in_str *input)
3895{
3896 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003897 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003898 if (ch == '`')
3899 break;
3900 if (ch == '\\') { /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003901 int ch2 = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003902 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003903 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003904 ch = ch2;
3905 }
3906 if (ch == EOF)
3907 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003908 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003909 }
3910}
3911/* Process $(cmd) - copy contents until ")" is seen. Complicated by
3912 * quoting and nested ()s.
3913 * "With the $(command) style of command substitution, all characters
3914 * following the open parenthesis to the matching closing parenthesis
3915 * constitute the command. Any valid shell script can be used for command,
3916 * except a script consisting solely of redirections which produces
3917 * unspecified results."
3918 * Example Output
3919 * echo $(echo '(TEST)' BEST) (TEST) BEST
3920 * echo $(echo 'TEST)' BEST) TEST) BEST
3921 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
3922 */
Mike Frysinger98c52642009-04-02 10:02:37 +00003923static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003924{
3925 int count = 0;
3926 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003927 int ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003928 if (ch == EOF)
3929 break;
3930 if (ch == '(')
3931 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003932 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00003933 if (--count < 0) {
3934 if (!dbl)
3935 break;
3936 if (i_peek(input) == ')') {
3937 i_getch(input);
3938 break;
3939 }
3940 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003941 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003942 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003943 if (ch == '\'') {
3944 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003945 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003946 continue;
3947 }
3948 if (ch == '"') {
3949 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003950 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003951 continue;
3952 }
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003953 if (ch == '\\') { /* \x. Copy verbatim. Important for \(, \) */
3954 ch = i_getch(input);
3955 if (ch == EOF)
3956 break;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00003957 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00003958 continue;
3959 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003960 }
3961}
Mike Frysinger98c52642009-04-02 10:02:37 +00003962#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00003963
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003964/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003965static int handle_dollar(o_string *dest, struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00003966{
Mike Frysinger6379bb42009-03-28 18:55:03 +00003967 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003968 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00003969 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003970
3971 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003972 if (isalpha(ch)) {
Denis Vlasenkod4981312008-07-31 10:34:48 +00003973 i_getch(input);
3974 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003975 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003976 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00003977 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003978 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00003979 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003980 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003981 if (!isalnum(ch) && ch != '_')
3982 break;
Denis Vlasenkod4981312008-07-31 10:34:48 +00003983 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00003984 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003985 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003986 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003987 make_one_char_var:
Denis Vlasenkod4981312008-07-31 10:34:48 +00003988 i_getch(input);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003989 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00003990 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00003991 o_addchr(dest, ch | quote_mask);
3992 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00003993 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003994 case '$': /* pid */
3995 case '!': /* last bg pid */
3996 case '?': /* last exit code */
3997 case '#': /* number of args */
3998 case '*': /* args */
3999 case '@': /* args */
4000 goto make_one_char_var;
4001 case '{': {
4002 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004003
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004004 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4005 i_getch(input);
4006 /* XXX maybe someone will try to escape the '}' */
4007 expansion = 0;
4008 first_char = true;
4009 all_digits = false;
4010 while (1) {
4011 ch = i_getch(input);
4012 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004013 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004014
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004015 if (first_char) {
4016 if (ch == '#')
4017 /* ${#var}: length of var contents */
4018 goto char_ok;
4019 else if (isdigit(ch)) {
4020 all_digits = true;
4021 goto char_ok;
4022 }
4023 }
4024
4025 if (expansion < 2
4026 && ( (all_digits && !isdigit(ch))
4027 || (!all_digits && !isalnum(ch) && ch != '_')
4028 )
4029 ) {
4030 /* handle parameter expansions
4031 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4032 */
4033 if (first_char)
4034 goto case_default;
4035 switch (ch) {
4036 case ':': /* null modifier */
4037 if (expansion == 0) {
4038 debug_printf_parse(": null modifier\n");
4039 ++expansion;
4040 break;
4041 }
4042 goto case_default;
4043#if 0 /* not implemented yet :( */
4044 case '#': /* remove prefix */
4045 case '%': /* remove suffix */
4046 if (expansion == 0) {
4047 debug_printf_parse(": remove suffix/prefix\n");
4048 expansion = 2;
4049 break;
4050 }
4051 goto case_default;
Mike Frysinger98c52642009-04-02 10:02:37 +00004052#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004053 case '-': /* default value */
4054 case '=': /* assign default */
4055 case '+': /* alternative */
4056 case '?': /* error indicate */
4057 debug_printf_parse(": parameter expansion\n");
4058 expansion = 2;
4059 break;
4060 default:
4061 case_default:
4062 syntax("unterminated ${name}");
4063 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4064 return 1;
4065 }
4066 }
4067 char_ok:
4068 debug_printf_parse(": '%c'\n", ch);
4069 o_addchr(dest, ch | quote_mask);
4070 quote_mask = 0;
4071 first_char = false;
4072 }
4073 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4074 break;
4075 }
4076 case '(': {
4077 i_getch(input);
4078#if ENABLE_SH_MATH_SUPPORT
4079 if (i_peek(input) == '(') {
4080 i_getch(input);
4081 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4082 o_addchr(dest, /*quote_mask |*/ '+');
4083 add_till_closing_paren(dest, input, true);
4084 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004085 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004086 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004087#endif
4088#if ENABLE_HUSH_TICK
4089 //int pos = dest->length;
4090 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4091 o_addchr(dest, quote_mask | '`');
4092 add_till_closing_paren(dest, input, false);
4093 //debug_printf_subst("SUBST RES2 '%s'\n", dest->data + pos);
4094 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4095#endif
4096 break;
4097 }
4098 case '_':
4099 i_getch(input);
4100 ch = i_peek(input);
4101 if (isalnum(ch)) { /* it's $_name or $_123 */
4102 ch = '_';
4103 goto make_var;
4104 }
4105 /* else: it's $_ */
4106 /* TODO: */
4107 /* $_ Shell or shell script name; or last cmd name */
4108 /* $- Option flags set by set builtin or shell options (-i etc) */
4109 default:
4110 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004111 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004112 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004113 return 0;
4114}
4115
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004116static int parse_stream_dquoted(o_string *dest,
4117 struct in_str *input, int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004118{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004119 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004120 int next;
4121
4122 again:
4123 ch = i_getch(input);
4124 if (ch == dquote_end) { /* may be only '"' or EOF */
4125 dest->nonnull = 1;
4126 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004127 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004128 debug_printf_parse("parse_stream_dquoted return 0\n");
4129 return 0;
4130 }
4131 if (ch == EOF) {
4132 syntax("unterminated \"");
4133 debug_printf_parse("parse_stream_dquoted return 1: unterminated \"\n");
4134 return 1;
4135 }
4136 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004137 if (ch != '\n') {
4138 next = i_peek(input);
4139 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004140 debug_printf_parse(": ch=%c (%d) m=%d escape=%d\n",
4141 ch, ch, m, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004142 if (ch == '\\') {
4143 if (next == EOF) {
4144 syntax("\\<eof>");
4145 debug_printf_parse("parse_stream_dquoted return 1: \\<eof>\n");
4146 return 1;
4147 }
4148 /* bash:
4149 * "The backslash retains its special meaning [in "..."]
4150 * only when followed by one of the following characters:
4151 * $, `, ", \, or <newline>. A double quote may be quoted
4152 * within double quotes by preceding it with a backslash.
4153 * If enabled, history expansion will be performed unless
4154 * an ! appearing in double quotes is escaped using
4155 * a backslash. The backslash preceding the ! is not removed."
4156 */
4157 if (strchr("$`\"\\", next) != NULL) {
4158 o_addqchr(dest, i_getch(input));
4159 } else {
4160 o_addqchr(dest, '\\');
4161 }
4162 goto again;
4163 }
4164 if (ch == '$') {
4165 if (handle_dollar(dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004166 debug_printf_parse("parse_stream_dquoted return 1: "
4167 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004168 return 1;
4169 }
4170 goto again;
4171 }
4172#if ENABLE_HUSH_TICK
4173 if (ch == '`') {
4174 //int pos = dest->length;
4175 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4176 o_addchr(dest, 0x80 | '`');
4177 add_till_backquote(dest, input);
4178 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4179 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004180 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004181 }
4182#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004183 o_addQchr(dest, ch);
4184 if (ch == '='
4185 && (dest->o_assignment == MAYBE_ASSIGNMENT
4186 || dest->o_assignment == WORD_IS_KEYWORD)
4187 && is_assignment(dest->data)
4188 ) {
4189 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4190 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004191 goto again;
4192}
4193
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004194/*
4195 * Scan input until EOF or end_trigger char.
4196 * Return a list of pipes to execute, or NULL on EOF
4197 * or if end_trigger character is met.
4198 * On syntax error, exit is shell is not interactive,
4199 * reset parsing machinery and start parsing anew,
4200 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004201 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004202static struct pipe *parse_stream(struct in_str *input, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004203{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004204 struct parse_context ctx;
4205 o_string dest = NULL_O_STRING;
Eric Andersen25f27032001-04-26 23:22:31 +00004206 int redir_fd;
Eric Andersen25f27032001-04-26 23:22:31 +00004207 int next;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004208 int is_in_dquote;
4209 int ch;
4210 redir_type redir_style;
Eric Andersen25f27032001-04-26 23:22:31 +00004211
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004212 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004213 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004214 * found. When recursing, quote state is passed in via dest->o_escape.
4215 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004216 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4217 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004218
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004219 G.ifs = get_local_var_value("IFS");
4220 if (G.ifs == NULL)
4221 G.ifs = " \t\n";
4222
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004223 reset:
4224#if ENABLE_HUSH_INTERACTIVE
4225 input->promptmode = 0; /* PS1 */
4226#endif
4227 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4228 initialize_context(&ctx);
4229 is_in_dquote = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004230 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004231 const char *is_ifs;
4232 const char *is_special;
4233
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004234 if (is_in_dquote) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004235 if (parse_stream_dquoted(&dest, input, '"')) {
4236 goto parse_error;
4237 }
4238 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004239 is_in_dquote = 0;
4240 }
Denis Vlasenko1a735862007-05-23 00:32:25 +00004241 next = '\0';
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004242 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004243 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4244 ch, ch, dest.o_escape);
4245 if (ch == EOF) {
4246 struct pipe *pi;
4247 if (done_word(&dest, &ctx)) {
4248 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004249 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004250 o_free(&dest);
4251 done_pipe(&ctx, PIPE_SEQ);
4252 /* If we got nothing... */
4253 pi = ctx.list_head;
4254 if (pi->num_cmds == 0
4255 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4256 ) {
4257 free_pipe_list(pi, 0);
4258 pi = NULL;
4259 }
4260 debug_printf_parse("parse_stream return %p\n", pi);
4261 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004262 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004263 if (ch != '\n') {
4264 next = i_peek(input);
4265 }
4266
4267 is_ifs = strchr(G.ifs, ch);
4268 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
4269 "\\$\"" USE_HUSH_TICK("`") /* always special */
4270 , ch);
4271
4272 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004273 o_addQchr(&dest, ch);
4274 if ((dest.o_assignment == MAYBE_ASSIGNMENT
4275 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004276 && ch == '='
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004277 && is_assignment(dest.data)
Denis Vlasenko55789c62008-06-18 16:30:42 +00004278 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004279 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004280 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004281 continue;
4282 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004283
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004284 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004285 if (done_word(&dest, &ctx)) {
4286 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00004287 }
Denis Vlasenko37181682009-04-03 03:19:15 +00004288 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00004289#if ENABLE_HUSH_CASE
4290 /* "case ... in <newline> word) ..." -
4291 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004292 if (ctx.command->argv == NULL
4293 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00004294 ) {
4295 continue;
4296 }
4297#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004298 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004299 done_pipe(&ctx, PIPE_SEQ);
4300 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004301 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00004302 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004303 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004304 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004305 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004306 if (end_trigger && end_trigger == ch) {
4307//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004308 if (done_word(&dest, &ctx)) {
4309 goto parse_error;
4310 }
4311 done_pipe(&ctx, PIPE_SEQ);
4312 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004313 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00004314 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004315 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00004316 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004317 debug_printf_parse("parse_stream return %p: "
4318 "end_trigger char found\n",
4319 ctx.list_head);
4320 o_free(&dest);
4321 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004322 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004323 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004324 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004325 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004326
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004327 if (dest.o_assignment == MAYBE_ASSIGNMENT) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004328 /* ch is a special char and thus this word
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004329 * cannot be an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004330 dest.o_assignment = NOT_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00004331 }
4332
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004333 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00004334 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004335 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004336 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004337 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004338 if (ch == EOF || ch == '\n')
4339 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004340 i_getch(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004341 }
Eric Andersen25f27032001-04-26 23:22:31 +00004342 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004343 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004344 }
4345 break;
4346 case '\\':
4347 if (next == EOF) {
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004348 syntax("\\<eof>");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004349 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004350 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004351 o_addchr(&dest, '\\');
4352 o_addchr(&dest, i_getch(input));
Eric Andersen25f27032001-04-26 23:22:31 +00004353 break;
4354 case '$':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004355 if (handle_dollar(&dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004356 debug_printf_parse("parse_stream parse error: "
4357 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004358 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004359 }
Eric Andersen25f27032001-04-26 23:22:31 +00004360 break;
4361 case '\'':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004362 dest.nonnull = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004363 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004364 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004365 if (ch == EOF) {
4366 syntax("unterminated '");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004367 goto parse_error;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004368 }
4369 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004370 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004371 if (dest.o_assignment == NOT_ASSIGNMENT)
4372 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00004373 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004374 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004375 }
Eric Andersen25f27032001-04-26 23:22:31 +00004376 break;
4377 case '"':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004378 dest.nonnull = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004379 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004380 if (dest.o_assignment == NOT_ASSIGNMENT)
4381 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004382 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004383#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004384 case '`': {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004385 //int pos = dest.length;
4386 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4387 o_addchr(&dest, '`');
4388 add_till_backquote(&dest, input);
4389 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
4390 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00004391 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004392 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004393#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004394 case '>':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004395 redir_fd = redirect_opt_num(&dest);
4396 if (done_word(&dest, &ctx)) {
4397 goto parse_error;
4398 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004399 redir_style = REDIRECT_OVERWRITE;
Eric Andersen25f27032001-04-26 23:22:31 +00004400 if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004401 redir_style = REDIRECT_APPEND;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004402 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004403 }
4404#if 0
4405 else if (next == '(') {
4406 syntax(">(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004407 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004408 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004409#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004410 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004411 break;
4412 case '<':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004413 redir_fd = redirect_opt_num(&dest);
4414 if (done_word(&dest, &ctx)) {
4415 goto parse_error;
4416 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004417 redir_style = REDIRECT_INPUT;
Eric Andersen25f27032001-04-26 23:22:31 +00004418 if (next == '<') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004419 redir_style = REDIRECT_HEREIS;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004420 i_getch(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004421 } else if (next == '>') {
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004422 redir_style = REDIRECT_IO;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004423 i_getch(input);
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004424 }
4425#if 0
4426 else if (next == '(') {
4427 syntax("<(process) not supported");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004428 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004429 }
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004430#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004431 setup_redirect(&ctx, redir_fd, redir_style, input);
Eric Andersen25f27032001-04-26 23:22:31 +00004432 break;
4433 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004434#if ENABLE_HUSH_CASE
4435 case_semi:
4436#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004437 if (done_word(&dest, &ctx)) {
4438 goto parse_error;
4439 }
4440 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004441#if ENABLE_HUSH_CASE
4442 /* Eat multiple semicolons, detect
4443 * whether it means something special */
4444 while (1) {
4445 ch = i_peek(input);
4446 if (ch != ';')
4447 break;
4448 i_getch(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004449 if (ctx.ctx_res_w == RES_CASEI) {
4450 ctx.ctx_dsemicolon = 1;
4451 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004452 break;
4453 }
4454 }
4455#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004456 new_cmd:
4457 /* We just finished a cmd. New one may start
4458 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004459 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00004460 break;
4461 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004462 if (done_word(&dest, &ctx)) {
4463 goto parse_error;
4464 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004465 if (next == '&') {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004466 i_getch(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004467 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00004468 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004469 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00004470 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004471 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004472 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004473 if (done_word(&dest, &ctx)) {
4474 goto parse_error;
4475 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004476#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004477 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00004478 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004479#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004480 if (next == '|') { /* || */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004481 i_getch(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004482 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00004483 } else {
4484 /* we could pick up a file descriptor choice here
4485 * with redirect_opt_num(), but bash doesn't do it.
4486 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004487 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004488 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004489 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004490 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004491#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00004492 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004493 if (ctx.ctx_res_w == RES_MATCH
4494 && ctx.command->argv == NULL /* not (word|(... */
4495 && dest.length == 0 /* not word(... */
4496 && dest.nonnull == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004497 ) {
4498 continue;
4499 }
4500#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004501#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004502 if (dest.length != 0 /* not just () but word() */
4503 && dest.nonnull == 0 /* not a"b"c() */
4504 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004505//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004506 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004507 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004508 ) {
4509 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004510 i_getch(input);
4511 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004512//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004513 ch = i_getch(input);
4514 } while (ch == ' ' || ch == '\n');
4515 if (ch != '{') {
4516 syntax("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004517 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004518 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004519 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004520 }
4521#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004522 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004523 if (parse_group(&dest, &ctx, input, ch) != 0) {
4524 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004525 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004526 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00004527 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004528#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004529 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004530 goto case_semi;
4531#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004532 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004533 /* proper use of this character is caught by end_trigger:
4534 * if we see {, we call parse_group(..., end_trigger='}')
4535 * and it will match } earlier (not here). */
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004536 syntax("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004537 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00004538 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004539 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004540 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004541 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004542 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004543
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004544 parse_error:
4545 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004546 struct parse_context *pctx;
4547 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004548
4549 /* Clean up allocated tree.
4550 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004551 * Run them from interactive shell, watch pmap `pidof hush`.
4552 * while if false; then false; fi do break; done
4553 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004554 * while if false; then false; fi; do break; fi
4555 */
4556 pctx = &ctx;
4557 do {
4558 /* Update pipe/command counts,
4559 * otherwise freeing may miss some */
4560 done_pipe(pctx, PIPE_SEQ);
4561 debug_printf_clean("freeing list %p from ctx %p\n",
4562 pctx->list_head, pctx);
4563 debug_print_tree(pctx->list_head, 0);
4564 free_pipe_list(pctx->list_head, 0);
4565 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004566 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004567 if (pctx != &ctx) {
4568 free(pctx);
4569 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004570 IF_HAS_KEYWORDS(pctx = p2;)
4571 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004572 /* Free text, clear all dest fields */
4573 o_free(&dest);
4574 /* If we are not in top-level parse, we return,
4575 * our caller will propagate error.
4576 */
4577 if (end_trigger != ';')
4578 return ERR_PTR;
4579 /* Discard cached input, force prompt */
4580 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004581 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004582 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004583 }
Eric Andersen25f27032001-04-26 23:22:31 +00004584}
4585
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004586/* Execiting from string: eval, sh -c '...'
4587 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
4588 * end_trigger controls how often we stop parsing
4589 * NUL: parse all, execute, return
4590 * ';': parse till ';' or newline, execute, repeat till EOF
4591 */
4592static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004593{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004594 while (1) {
4595 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004596
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004597 pipe_list = parse_stream(inp, end_trigger);
4598 if (!pipe_list) /* EOF */
4599 break;
4600 debug_print_tree(pipe_list, 0);
4601 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
4602 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004603 }
Eric Andersen25f27032001-04-26 23:22:31 +00004604}
4605
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004606static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004607{
4608 struct in_str input;
4609 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004610 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00004611}
4612
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004613static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00004614{
Eric Andersen25f27032001-04-26 23:22:31 +00004615 struct in_str input;
4616 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004617 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00004618}
4619
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004620#if ENABLE_HUSH_JOB
Eric Andersen6c947d22001-06-25 22:24:38 +00004621/* Make sure we have a controlling tty. If we get started under a job
4622 * aware app (like bash for example), make sure we are now in charge so
4623 * we don't fight over who gets the foreground */
Eric Anderseneaecbf32001-10-31 10:41:31 +00004624static void setup_job_control(void)
Eric Andersen52a97ca2001-06-22 06:49:26 +00004625{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004626 pid_t shell_pgrp;
4627
Denis Vlasenko87a86552008-07-29 19:43:10 +00004628 shell_pgrp = getpgrp();
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004629
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004630 /* If we were ran as 'hush &',
4631 * sleep until we are in the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004632 while (tcgetpgrp(G_interactive_fd) != shell_pgrp) {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004633 /* Send TTIN to ourself (should stop us) */
Denis Vlasenkoff131b92007-04-10 15:42:06 +00004634 kill(- shell_pgrp, SIGTTIN);
Denis Vlasenkoa6a17852007-04-28 16:42:11 +00004635 shell_pgrp = getpgrp();
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004636 }
Eric Andersen52a97ca2001-06-22 06:49:26 +00004637
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00004638 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004639 set_fatal_signals_to_sigexit();
Eric Andersen6c947d22001-06-25 22:24:38 +00004640
4641 /* Put ourselves in our own process group. */
Bernhard Reutner-Fischer864329d2008-09-25 10:55:05 +00004642 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
Eric Andersen6c947d22001-06-25 22:24:38 +00004643 /* Grab control of the terminal. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004644 tcsetpgrp(G_interactive_fd, getpid());
Eric Andersen6c947d22001-06-25 22:24:38 +00004645}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004646#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00004647
Denis Vlasenkod5762932009-03-31 11:22:57 +00004648static int set_mode(const char cstate, const char mode)
4649{
4650 int state = (cstate == '-' ? 1 : 0);
4651 switch (mode) {
4652 case 'n': G.fake_mode = state; break;
4653 case 'x': /*G.debug_mode = state;*/ break;
4654 default: return EXIT_FAILURE;
4655 }
4656 return EXIT_SUCCESS;
4657}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004658
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00004659int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00004660int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00004661{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004662 static const struct variable const_shell_ver = {
4663 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004664 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004665 .max_len = 1, /* 0 can provoke free(name) */
4666 .flg_export = 1,
4667 .flg_read_only = 1,
4668 };
4669
Eric Andersen25f27032001-04-26 23:22:31 +00004670 int opt;
4671 FILE *input;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004672 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004673 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00004674
Denis Vlasenko574f2f42008-02-27 18:41:59 +00004675 INIT_G();
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004676
Denis Vlasenko87a86552008-07-29 19:43:10 +00004677 G.root_pid = getpid();
Denis Vlasenko16c2fea2008-06-17 12:28:44 +00004678
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004679 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004680 G.shell_ver = const_shell_ver; /* copying struct here */
4681 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004682 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004683 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
4684 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004685 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004686 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00004687 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004688 if (e) while (*e) {
4689 char *value = strchr(*e, '=');
4690 if (value) { /* paranoia */
4691 cur_var->next = xzalloc(sizeof(*cur_var));
4692 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004693 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004694 cur_var->max_len = strlen(*e);
4695 cur_var->flg_export = 1;
4696 }
4697 e++;
4698 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00004699 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00004700 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004701
Denis Vlasenko38f63192007-01-22 09:03:07 +00004702#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00004703 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00004704#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004705 /* XXX what should these be while sourcing /etc/profile? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004706 G.global_argc = argc;
4707 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00004708 /* Initialize some more globals to non-zero values */
4709 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004710#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00004711 if (ENABLE_FEATURE_EDITING)
4712 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00004713 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004714#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00004715
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004716 if (EXIT_SUCCESS) /* otherwise is already done */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004717 G.last_return_code = EXIT_SUCCESS;
Eric Andersen25f27032001-04-26 23:22:31 +00004718
4719 if (argv[0] && argv[0][0] == '-') {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004720 debug_printf("sourcing /etc/profile\n");
Denis Vlasenko5415c852008-07-21 23:05:26 +00004721 input = fopen_for_read("/etc/profile");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00004722 if (input != NULL) {
Denis Vlasenkoa0898172007-10-01 09:59:01 +00004723 close_on_exec_on(fileno(input));
Denis Vlasenko170435c2007-05-23 13:01:10 +00004724 parse_and_run_file(input);
Eric Andersena90f20b2001-06-26 23:00:21 +00004725 fclose(input);
4726 }
Eric Andersen25f27032001-04-26 23:22:31 +00004727 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004728 input = stdin;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004729
Mike Frysinger19a7ea12009-03-28 13:02:11 +00004730 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
4731 while ((opt = getopt(argc, argv, "c:xins")) > 0) {
Eric Andersen25f27032001-04-26 23:22:31 +00004732 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004733 case 'c':
Denis Vlasenko87a86552008-07-29 19:43:10 +00004734 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00004735 if (!argv[optind]) {
4736 /* -c 'script' (no params): prevent empty $0 */
4737 *--G.global_argv = argv[0];
4738 optind--;
4739 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004740 G.global_argc = argc - optind;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004741 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004742 goto final_return;
4743 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00004744 /* Well, we cannot just declare interactiveness,
4745 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004746 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004747 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00004748 case 's':
4749 /* "-s" means "read from stdin", but this is how we always
4750 * operate, so simply do nothing here. */
4751 break;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00004752 case 'n':
4753 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00004754 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00004755 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004756 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004757#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004758 fprintf(stderr, "Usage: sh [FILE]...\n"
4759 " or: sh -c command [args]...\n\n");
4760 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004761#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004762 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00004763#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004764 }
4765 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004766#if ENABLE_HUSH_JOB
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004767 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00004768 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00004769 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00004770 * no arguments remaining or the -s flag given
4771 * standard input is a terminal
4772 * standard output is a terminal
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004773 * Refer to Posix.2, the description of the 'sh' utility. */
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004774 if (argv[optind] == NULL && input == stdin
4775 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4776 ) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004777 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
4778 debug_printf("saved_tty_pgrp=%d\n", G.saved_tty_pgrp);
4779 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004780 /* try to dup to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004781 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4782 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004783 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004784 G_interactive_fd = dup(STDIN_FILENO);
4785 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004786 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004787 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004788 }
Denis Vlasenko2f1bb362007-04-21 10:01:14 +00004789 // TODO: track & disallow any attempts of user
4790 // to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004791 }
Eric Andersen25f27032001-04-26 23:22:31 +00004792 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004793 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004794 debug_printf("interactive_fd=%d\n", G_interactive_fd);
4795 if (G_interactive_fd) {
4796 fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC);
Eric Andersen25f27032001-04-26 23:22:31 +00004797 /* Looks like they want an interactive shell */
Eric Andersen52a97ca2001-06-22 06:49:26 +00004798 setup_job_control();
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00004799 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00004800 * (we reset die_sleep = 0 whereever we [v]fork) */
4801 die_sleep = -1;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00004802 if (setjmp(die_jmp)) {
4803 /* xfunc has failed! die die die */
4804 hush_exit(xfunc_error_retval);
4805 }
Eric Andersenada18ff2001-05-21 16:18:22 +00004806 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004807#elif ENABLE_HUSH_INTERACTIVE
4808/* no job control compiled, only prompt/line editing */
4809 if (argv[optind] == NULL && input == stdin
4810 && isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)
4811 ) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004812 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
4813 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004814 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004815 G_interactive_fd = dup(STDIN_FILENO);
4816 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004817 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004818 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004819 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004820 if (G_interactive_fd) {
4821 fcntl(G_interactive_fd, F_SETFD, FD_CLOEXEC);
Denis Vlasenko4830fc52008-05-25 21:50:55 +00004822 }
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004823 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004824 init_signal_mask(); /* note: ensures SIGCHLD is not masked */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004825#else
4826 init_signal_mask();
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004827#endif
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004828 /* POSIX allows shell to re-enable SIGCHLD
4829 * even if it was SIG_IGN on entry */
4830// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
4831 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004832
Denis Vlasenko701ac182009-03-28 19:22:08 +00004833#if ENABLE_HUSH_INTERACTIVE && !ENABLE_FEATURE_SH_EXTRA_QUIET
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004834 if (G_interactive_fd) {
Mike Frysingerb2705e12009-03-23 08:44:02 +00004835 printf("\n\n%s hush - the humble shell v"HUSH_VER_STR"\n", bb_banner);
4836 printf("Enter 'help' for a list of built-in commands.\n\n");
4837 }
Denis Vlasenko701ac182009-03-28 19:22:08 +00004838#endif
Mike Frysingerb2705e12009-03-23 08:44:02 +00004839
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004840 if (argv[optind] == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004841 parse_and_run_file(stdin);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004842 } else {
4843 debug_printf("\nrunning script '%s'\n", argv[optind]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004844 G.global_argv = argv + optind;
4845 G.global_argc = argc - optind;
Denis Vlasenko5415c852008-07-21 23:05:26 +00004846 input = xfopen_for_read(argv[optind]);
Denis Vlasenko459a5ad2008-02-11 08:35:03 +00004847 fcntl(fileno(input), F_SETFD, FD_CLOEXEC);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004848 parse_and_run_file(input);
Eric Andersen25f27032001-04-26 23:22:31 +00004849 }
Eric Andersen25f27032001-04-26 23:22:31 +00004850
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004851 final_return:
4852
Denis Vlasenko38f63192007-01-22 09:03:07 +00004853#if ENABLE_FEATURE_CLEAN_UP
Eric Andersenaeb44c42001-05-22 20:29:00 +00004854 fclose(input);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004855 if (G.cwd != bb_msg_unknown)
4856 free((char*)G.cwd);
4857 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004858 while (cur_var) {
4859 struct variable *tmp = cur_var;
4860 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00004861 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00004862 cur_var = cur_var->next;
4863 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00004864 }
Eric Andersen25f27032001-04-26 23:22:31 +00004865#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004866 hush_exit(G.last_return_code);
Eric Andersen25f27032001-04-26 23:22:31 +00004867}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00004868
4869
4870#if ENABLE_LASH
4871int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
4872int lash_main(int argc, char **argv)
4873{
4874 //bb_error_msg("lash is deprecated, please use hush instead");
4875 return hush_main(argc, argv);
4876}
4877#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004878
4879
4880/*
4881 * Built-ins
4882 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004883static int builtin_trap(char **argv)
4884{
Denis Vlasenkod5762932009-03-31 11:22:57 +00004885 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004886 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004887 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004888
4889 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004890 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004891
4892 if (!argv[1]) {
4893 /* No args: print all trapped. This isn't 100% correct as we should
4894 * be escaping the cmd so that it can be pasted back in ...
4895 */
4896 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004897 if (G.traps[i])
4898 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004899 return EXIT_SUCCESS;
4900 }
4901
Denis Vlasenkod5762932009-03-31 11:22:57 +00004902 new_cmd = NULL;
4903 i = 0;
4904 /* if first arg is decimal: reset all specified */
4905 sig = bb_strtou(*++argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004906 if (errno == 0) {
4907 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004908 set_all:
4909 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004910 while (*argv) {
4911 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004912 if (sig < 0 || sig >= NSIG) {
4913 ret = EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00004914 /* mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004915 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
4916 continue;
4917 }
4918
Denis Vlasenkod5762932009-03-31 11:22:57 +00004919 free(G.traps[sig]);
4920 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004921
Denis Vlasenkod5762932009-03-31 11:22:57 +00004922 debug_printf("trap: setting SIG%s (%i) to '%s'",
4923 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004924
4925 /* There is no signal for 0 (EXIT) */
4926 if (sig == 0)
4927 continue;
4928
4929 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00004930 sigaddset(&G.blocked_set, sig);
4931 } else {
4932 /* there was a trap handler, we are removing it
4933 * (if sig has non-DFL handling,
4934 * we don't need to do anything) */
4935 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
4936 continue;
4937 sigdelset(&G.blocked_set, sig);
4938 }
4939 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004940 }
4941 return ret;
4942 }
4943
4944 /* first arg is "-": reset all specified to default */
4945 /* first arg is "": ignore all specified */
4946 /* everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00004947 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004948 bb_error_msg("trap: invalid arguments");
4949 return EXIT_FAILURE;
4950 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00004951 if (LONE_DASH(*argv))
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004952 /* nothing! */;
4953 else
Denis Vlasenkod5762932009-03-31 11:22:57 +00004954 new_cmd = *argv;
4955 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00004956 goto set_all;
4957}
4958
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00004959static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004960{
4961 return 0;
4962}
4963
4964static int builtin_test(char **argv)
4965{
4966 int argc = 0;
4967 while (*argv) {
4968 argc++;
4969 argv++;
4970 }
4971 return test_main(argc, argv - argc);
4972}
4973
4974static int builtin_echo(char **argv)
4975{
4976 int argc = 0;
4977 while (*argv) {
4978 argc++;
4979 argv++;
4980 }
4981 return echo_main(argc, argv - argc);
4982}
4983
4984static int builtin_eval(char **argv)
4985{
4986 int rcode = EXIT_SUCCESS;
4987
4988 if (argv[1]) {
4989 char *str = expand_strvec_to_string(argv + 1);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004990 /* bash:
4991 * eval "echo Hi; done" ("done" is syntax error):
4992 * "echo Hi" will not execute too.
4993 */
4994 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004995 free(str);
Denis Vlasenko87a86552008-07-29 19:43:10 +00004996 rcode = G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004997 }
4998 return rcode;
4999}
5000
5001static int builtin_cd(char **argv)
5002{
5003 const char *newdir;
5004 if (argv[1] == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005005 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
5006 * bash says "bash: cd: HOME not set" and does nothing (exitcode 1)
5007 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005008 newdir = getenv("HOME") ? : "/";
5009 } else
5010 newdir = argv[1];
5011 if (chdir(newdir)) {
5012 printf("cd: %s: %s\n", newdir, strerror(errno));
5013 return EXIT_FAILURE;
5014 }
5015 set_cwd();
5016 return EXIT_SUCCESS;
5017}
5018
5019static int builtin_exec(char **argv)
5020{
5021 if (argv[1] == NULL)
5022 return EXIT_SUCCESS; /* bash does this */
5023 {
5024#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005025 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005026#endif
5027// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005028 pseudo_exec_argv(&dummy, argv + 1, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005029 /* never returns */
5030 }
5031}
5032
5033static int builtin_exit(char **argv)
5034{
5035// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
5036 //puts("exit"); /* bash does it */
5037// TODO: warn if we have background jobs: "There are stopped jobs"
5038// On second consecutive 'exit', exit anyway.
5039 if (argv[1] == NULL)
Denis Vlasenko87a86552008-07-29 19:43:10 +00005040 hush_exit(G.last_return_code);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005041 /* mimic bash: exit 123abc == exit 255 + error msg */
5042 xfunc_error_retval = 255;
5043 /* bash: exit -2 == exit 254, no error msg */
5044 hush_exit(xatoi(argv[1]) & 0xff);
5045}
5046
5047static int builtin_export(char **argv)
5048{
5049 const char *value;
5050 char *name = argv[1];
5051
5052 if (name == NULL) {
5053 // TODO:
5054 // ash emits: export VAR='VAL'
5055 // bash: declare -x VAR="VAL"
5056 // (both also escape as needed (quotes, $, etc))
5057 char **e = environ;
5058 if (e)
5059 while (*e)
5060 puts(*e++);
5061 return EXIT_SUCCESS;
5062 }
5063
5064 value = strchr(name, '=');
5065 if (!value) {
5066 /* They are exporting something without a =VALUE */
5067 struct variable *var;
5068
5069 var = get_local_var(name);
5070 if (var) {
5071 var->flg_export = 1;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005072 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005073 putenv(var->varstr);
5074 }
5075 /* bash does not return an error when trying to export
5076 * an undefined variable. Do likewise. */
5077 return EXIT_SUCCESS;
5078 }
5079
5080 set_local_var(xstrdup(name), 1);
5081 return EXIT_SUCCESS;
5082}
5083
5084#if ENABLE_HUSH_JOB
5085/* built-in 'fg' and 'bg' handler */
5086static int builtin_fg_bg(char **argv)
5087{
5088 int i, jobnum;
5089 struct pipe *pi;
5090
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005091 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005092 return EXIT_FAILURE;
5093 /* If they gave us no args, assume they want the last backgrounded task */
5094 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005095 for (pi = G.job_list; pi; pi = pi->next) {
5096 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005097 goto found;
5098 }
5099 }
5100 bb_error_msg("%s: no current job", argv[0]);
5101 return EXIT_FAILURE;
5102 }
5103 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
5104 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
5105 return EXIT_FAILURE;
5106 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005107 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005108 if (pi->jobid == jobnum) {
5109 goto found;
5110 }
5111 }
5112 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
5113 return EXIT_FAILURE;
5114 found:
5115 // TODO: bash prints a string representation
5116 // of job being foregrounded (like "sleep 1 | cat")
5117 if (*argv[0] == 'f') {
5118 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005119 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005120 }
5121
5122 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005123 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
5124 for (i = 0; i < pi->num_cmds; i++) {
5125 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
5126 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005127 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005128 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005129
5130 i = kill(- pi->pgrp, SIGCONT);
5131 if (i < 0) {
5132 if (errno == ESRCH) {
5133 delete_finished_bg_job(pi);
5134 return EXIT_SUCCESS;
5135 } else {
5136 bb_perror_msg("kill (SIGCONT)");
5137 }
5138 }
5139
5140 if (*argv[0] == 'f') {
5141 remove_bg_job(pi);
5142 return checkjobs_and_fg_shell(pi);
5143 }
5144 return EXIT_SUCCESS;
5145}
5146#endif
5147
5148#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005149static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005150{
5151 const struct built_in_command *x;
5152
5153 printf("\nBuilt-in commands:\n");
5154 printf("-------------------\n");
5155 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
5156 printf("%s\t%s\n", x->cmd, x->descr);
5157 }
5158 printf("\n\n");
5159 return EXIT_SUCCESS;
5160}
5161#endif
5162
5163#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005164static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005165{
5166 struct pipe *job;
5167 const char *status_string;
5168
Denis Vlasenko87a86552008-07-29 19:43:10 +00005169 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005170 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005171 status_string = "Stopped";
5172 else
5173 status_string = "Running";
5174
5175 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
5176 }
5177 return EXIT_SUCCESS;
5178}
5179#endif
5180
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005181static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005182{
5183 puts(set_cwd());
5184 return EXIT_SUCCESS;
5185}
5186
5187static int builtin_read(char **argv)
5188{
5189 char *string;
5190 const char *name = argv[1] ? argv[1] : "REPLY";
5191
5192 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
5193 return set_local_var(string, 0);
5194}
5195
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005196/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
5197 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005198 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005199 * set [-abCefhmnuvx] [-o option] [argument...]
5200 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005201 * set -- [argument...]
5202 * set -o
5203 * set +o
5204 * Implementations shall support the options in both their hyphen and
5205 * plus-sign forms. These options can also be specified as options to sh.
5206 * Examples:
5207 * Write out all variables and their values: set
5208 * Set $1, $2, and $3 and set "$#" to 3: set c a b
5209 * Turn on the -x and -v options: set -xv
5210 * Unset all positional parameters: set --
5211 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
5212 * Set the positional parameters to the expansion of x, even if x expands
5213 * with a leading '-' or '+': set -- $x
5214 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005215 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005216 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005217static int builtin_set(char **argv)
5218{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005219 int n;
5220 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005221 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005222
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005223 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005224 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00005225 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005226 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005227 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00005228 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005229
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005230 do {
5231 if (!strcmp(arg, "--")) {
5232 ++argv;
5233 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005234 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005235
5236 if (arg[0] == '+' || arg[0] == '-') {
5237 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005238 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005239 goto error;
5240 continue;
5241 }
5242
5243 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005244 } while ((arg = *++argv) != NULL);
5245 /* Now argv[0] is 1st argument */
5246
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005247 /* Only reset global_argv if we didn't process anything */
5248 if (arg == NULL)
5249 return EXIT_SUCCESS;
5250 set_argv:
5251
Denis Vlasenko424f79b2009-03-22 14:23:34 +00005252 /* NB: G.global_argv[0] ($0) is never freed/changed */
5253 g_argv = G.global_argv;
5254 if (G.global_args_malloced) {
5255 pp = g_argv;
5256 while (*++pp)
5257 free(*pp);
5258 g_argv[1] = NULL;
5259 } else {
5260 G.global_args_malloced = 1;
5261 pp = xzalloc(sizeof(pp[0]) * 2);
5262 pp[0] = g_argv[0]; /* retain $0 */
5263 g_argv = pp;
5264 }
5265 /* This realloc's G.global_argv */
5266 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
5267
5268 n = 1;
5269 while (*++pp)
5270 n++;
5271 G.global_argc = n;
5272
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005273 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005274
5275 /* Nothing known, so abort */
5276 error:
5277 bb_error_msg("set: %s: invalid option", arg);
5278 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005279}
5280
5281static int builtin_shift(char **argv)
5282{
5283 int n = 1;
5284 if (argv[1]) {
5285 n = atoi(argv[1]);
5286 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005287 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005288 if (G.global_args_malloced) {
5289 int m = 1;
5290 while (m <= n)
5291 free(G.global_argv[m++]);
5292 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005293 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00005294 memmove(&G.global_argv[1], &G.global_argv[n+1],
5295 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005296 return EXIT_SUCCESS;
5297 }
5298 return EXIT_FAILURE;
5299}
5300
5301static int builtin_source(char **argv)
5302{
5303 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005304
5305 if (argv[1] == NULL)
5306 return EXIT_FAILURE;
5307
5308 /* XXX search through $PATH is missing */
Denis Vlasenko5415c852008-07-21 23:05:26 +00005309 input = fopen_for_read(argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005310 if (!input) {
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00005311 bb_error_msg("can't open '%s'", argv[1]);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005312 return EXIT_FAILURE;
5313 }
5314 close_on_exec_on(fileno(input));
5315
5316 /* Now run the file */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005317 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005318 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00005319 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005320 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005321 fclose(input);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005322 return G.last_return_code;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005323}
5324
5325static int builtin_umask(char **argv)
5326{
5327 mode_t new_umask;
5328 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005329 if (arg) {
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005330 new_umask = bb_strtou(arg, NULL, 8);
5331 if (errno)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005332 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005333 } else {
5334 new_umask = umask(0);
5335 printf("%.3o\n", (unsigned) new_umask);
5336 }
5337 umask(new_umask);
5338 return EXIT_SUCCESS;
5339}
5340
Mike Frysingerd690f682009-03-30 06:50:54 +00005341/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005342static int builtin_unset(char **argv)
5343{
Mike Frysingerd690f682009-03-30 06:50:54 +00005344 size_t i;
5345 int ret;
5346 bool var = true;
5347
5348 if (!argv[1])
5349 return EXIT_SUCCESS;
5350
5351 i = 0;
5352 if (argv[1][0] == '-') {
5353 switch (argv[1][1]) {
5354 case 'v': break;
5355 case 'f': if (ENABLE_HUSH_FUNCTIONS) { var = false; break; }
5356 default:
5357 bb_error_msg("unset: %s: invalid option", argv[1]);
5358 return EXIT_FAILURE;
5359 }
5360 ++i;
5361 }
5362
5363 ret = EXIT_SUCCESS;
5364 while (argv[++i]) {
5365 if (var) {
5366 if (unset_local_var(argv[i]))
5367 ret = EXIT_FAILURE;
5368 }
5369#if ENABLE_HUSH_FUNCTIONS
5370 else
5371 unset_local_func(argv[i]);
5372#endif
5373 }
5374 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005375}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005376
Mike Frysinger56bdea12009-03-28 20:01:58 +00005377/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
5378static int builtin_wait(char **argv)
5379{
5380 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005381 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005382
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005383 if (*++argv == NULL) {
5384 /* Don't care about wait results */
5385 /* Note 1: must wait until there are no more children */
5386 /* Note 2: must be interruptible */
5387 /* Examples:
5388 * $ sleep 3 & sleep 6 & wait
5389 * [1] 30934 sleep 3
5390 * [2] 30935 sleep 6
5391 * [1] Done sleep 3
5392 * [2] Done sleep 6
5393 * $ sleep 3 & sleep 6 & wait
5394 * [1] 30936 sleep 3
5395 * [2] 30937 sleep 6
5396 * [1] Done sleep 3
5397 * ^C <-- after ~4 sec from keyboard
5398 * $
5399 */
5400 sigaddset(&G.blocked_set, SIGCHLD);
5401 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5402 while (1) {
5403 checkjobs(NULL);
5404 if (errno == ECHILD)
5405 break;
5406 /* Wait for SIGCHLD or any other signal of interest */
5407 /* sigtimedwait with infinite timeout: */
5408 sig = sigwaitinfo(&G.blocked_set, NULL);
5409 if (sig > 0) {
5410 sig = check_and_run_traps(sig);
5411 if (sig && sig != SIGCHLD) { /* see note 2 */
5412 ret = 128 + sig;
5413 break;
5414 }
5415 }
5416 }
5417 sigdelset(&G.blocked_set, SIGCHLD);
5418 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
5419 return ret;
5420 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00005421
Denis Vlasenko7566bae2009-03-31 17:24:49 +00005422 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005423 while (*argv) {
5424 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00005425 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005426 /* mimic bash message */
5427 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005428 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005429 }
5430 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00005431 if (WIFSIGNALED(status))
5432 ret = 128 + WTERMSIG(status);
5433 else if (WIFEXITED(status))
5434 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00005435 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00005436 ret = EXIT_FAILURE;
5437 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005438 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00005439 ret = 127;
5440 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00005441 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00005442 }
5443
5444 return ret;
5445}
5446
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005447#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005448static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005449{
Denis Vlasenko87a86552008-07-29 19:43:10 +00005450 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005451 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00005452 return EXIT_SUCCESS; /* bash compat */
5453 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005454 G.flag_break_continue++; /* BC_BREAK = 1 */
5455 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005456 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005457 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
5458 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005459 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00005460 G.flag_break_continue = BC_BREAK;
5461 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005462 }
5463 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00005464 if (G.depth_of_loop < G.depth_break_continue)
5465 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005466 return EXIT_SUCCESS;
5467}
5468
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00005469static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005470{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00005471 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
5472 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00005473}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00005474#endif