blob: d6286b61cfb199034acd616bf3734a8f46c39487 [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 *
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +00008 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00009 * Copyright (C) 2008,2009 Denys Vlasenko <vda.linux@googlemail.com>
Eric Andersen25f27032001-04-26 23:22:31 +000010 *
11 * Credits:
12 * The parser routines proper are all original material, first
Eric Andersencb81e642003-07-14 21:21:08 +000013 * written Dec 2000 and Jan 2001 by Larry Doolittle. The
14 * execution engine, the builtins, and much of the underlying
15 * support has been adapted from busybox-0.49pre's lash, which is
Eric Andersenc7bda1c2004-03-15 08:29:22 +000016 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersencb81e642003-07-14 21:21:08 +000017 * written by Erik Andersen <andersen@codepoet.org>. That, in turn,
18 * is based in part on ladsh.c, by Michael K. Johnson and Erik W.
19 * Troan, which they placed in the public domain. I don't know
20 * how much of the Johnson/Troan code has survived the repeated
21 * rewrites.
22 *
Eric Andersen25f27032001-04-26 23:22:31 +000023 * Other credits:
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +000024 * o_addchr derived from similar w_addchar function in glibc-2.2.
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000025 * parse_redirect, redirect_opt_num, and big chunks of main
Denis Vlasenko424f79b2009-03-22 14:23:34 +000026 * and many builtins derived from contributions by Erik Andersen.
27 * Miscellaneous bugfixes from Matt Kraai.
Eric Andersen25f27032001-04-26 23:22:31 +000028 *
29 * There are two big (and related) architecture differences between
30 * this parser and the lash parser. One is that this version is
31 * actually designed from the ground up to understand nearly all
32 * of the Bourne grammar. The second, consequential change is that
33 * the parser and input reader have been turned inside out. Now,
34 * the parser is in control, and asks for input as needed. The old
35 * way had the input reader in control, and it asked for parsing to
36 * take place as needed. The new way makes it much easier to properly
37 * handle the recursion implicit in the various substitutions, especially
38 * across continuation lines.
39 *
Mike Frysinger25a6ca02009-03-28 13:59:26 +000040 * POSIX syntax not implemented:
Eric Andersen78a7c992001-05-15 16:30:25 +000041 * aliases
Eric Andersen25f27032001-04-26 23:22:31 +000042 * <(list) and >(list) Process Substitution
Mike Frysinger25a6ca02009-03-28 13:59:26 +000043 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000045 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000046 * &> and >& redirection of stdout+stderr
47 * Brace expansion
48 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000049 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000050 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000051 * TODOs:
52 * grep for "TODO" and fix (some of them are easy)
Denis Vlasenkofa4ca782009-04-16 12:00:15 +000053 * $var refs in function do not pick up values set by "var=val func"
Denis Vlasenko6b9e0532009-04-18 01:23:21 +000054 * builtins: ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000055 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000056 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000057 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000058 */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020059#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000060#include <glob.h>
61/* #include <dmalloc.h> */
62#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000063# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000064#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000065#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000066#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000067#ifndef PIPE_BUF
Denys Vlasenkocb6ff252009-05-04 00:14:30 +020068# define PIPE_BUF 4096 /* amount of buffering in a pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000069#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000070
Denis Vlasenko1943aec2009-04-09 14:15:57 +000071
72/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000073#define LEAK_HUNTING 0
74#define BUILD_AS_NOMMU 0
75/* Enable/disable sanity checks. Ok to enable in production,
76 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
77 * Keeping 1 for now even in released versions.
78 */
79#define HUSH_DEBUG 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +000080
81
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000082#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000083# undef BB_MMU
84# undef USE_FOR_NOMMU
85# undef USE_FOR_MMU
86# define BB_MMU 0
87# define USE_FOR_NOMMU(...) __VA_ARGS__
88# define USE_FOR_MMU(...)
89#endif
90
Denis Vlasenko61befda2008-11-25 01:36:03 +000091#if defined SINGLE_APPLET_MAIN
92/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000093# undef CONFIG_FEATURE_SH_STANDALONE
94# undef ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000095# undef IF_FEATURE_SH_STANDALONE
96# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000097# define ENABLE_FEATURE_SH_STANDALONE 0
Denis Vlasenko5e34ff22009-04-21 11:09:40 +000098# define IF_FEATURE_SH_STANDALONE(...)
99# define IF_NOT_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000100#endif
101
Denis Vlasenko05743d72008-02-10 12:10:08 +0000102#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000103# undef ENABLE_FEATURE_EDITING
104# define ENABLE_FEATURE_EDITING 0
105# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
106# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000107#endif
108
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000109/* Do we support ANY keywords? */
110#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000111# define HAS_KEYWORDS 1
112# define IF_HAS_KEYWORDS(...) __VA_ARGS__
113# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000114#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000115# define HAS_KEYWORDS 0
116# define IF_HAS_KEYWORDS(...)
117# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000118#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000119
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000120/* If you comment out one of these below, it will be #defined later
121 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000122#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000123/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000124#define debug_printf_parse(...) do {} while (0)
125#define debug_print_tree(a, b) do {} while (0)
126#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000127#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf_jobs(...) do {} while (0)
129#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000130#define debug_printf_glob(...) do {} while (0)
131#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000132#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000133#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000134
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000135#define ERR_PTR ((void*)(long)1)
136
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000137#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000138
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000139#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000140
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200141struct variable;
142
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000143static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
144
145/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000146 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000147 */
148#if !BB_MMU
149typedef struct nommu_save_t {
150 char **new_env;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200151 struct variable *old_vars;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000152 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000153 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000154} nommu_save_t;
155#endif
156
Denis Vlasenko55789c62008-06-18 16:30:42 +0000157/* The descrip member of this structure is only used to make
158 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000159static const struct {
160 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000161 signed char default_fd;
162 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000163} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000164 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000165 { O_RDONLY, 0, "<" },
166 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
167 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000168 { O_RDONLY, 0, "<<" },
169 { O_CREAT|O_RDWR, 1, "<>" },
170/* Should not be needed. Bogus default_fd helps in debugging */
171/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000172};
173
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000174typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000175 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000176#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000177 RES_IF ,
178 RES_THEN ,
179 RES_ELIF ,
180 RES_ELSE ,
181 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000182#endif
183#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000184 RES_FOR ,
185 RES_WHILE ,
186 RES_UNTIL ,
187 RES_DO ,
188 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000189#endif
190#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000191 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000192#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000193#if ENABLE_HUSH_CASE
194 RES_CASE ,
195 /* two pseudo-keywords support contrived "case" syntax: */
196 RES_MATCH , /* "word)" */
197 RES_CASEI , /* "this command is inside CASE" */
198 RES_ESAC ,
199#endif
200 RES_XXXX ,
201 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000202} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000203
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000204typedef struct o_string {
205 char *data;
206 int length; /* position where data is appended */
207 int maxlen;
208 /* Protect newly added chars against globbing
209 * (by prepending \ to *, ?, [, \) */
210 smallint o_escape;
211 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000212 /* At least some part of the string was inside '' or "",
213 * possibly empty one: word"", wo''rd etc. */
214 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000215 smallint has_empty_slot;
216 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
217} o_string;
218enum {
219 MAYBE_ASSIGNMENT = 0,
220 DEFINITELY_ASSIGNMENT = 1,
221 NOT_ASSIGNMENT = 2,
222 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
223};
224/* Used for initialization: o_string foo = NULL_O_STRING; */
225#define NULL_O_STRING { NULL }
226
227/* I can almost use ordinary FILE*. Is open_memstream() universally
228 * available? Where is it documented? */
229typedef struct in_str {
230 const char *p;
231 /* eof_flag=1: last char in ->p is really an EOF */
232 char eof_flag; /* meaningless if ->p == NULL */
233 char peek_buf[2];
234#if ENABLE_HUSH_INTERACTIVE
235 smallint promptme;
236 smallint promptmode; /* 0: PS1, 1: PS2 */
237#endif
238 FILE *file;
239 int (*get) (struct in_str *);
240 int (*peek) (struct in_str *);
241} in_str;
242#define i_getch(input) ((input)->get(input))
243#define i_peek(input) ((input)->peek(input))
244
Eric Andersen25f27032001-04-26 23:22:31 +0000245struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000246 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000247 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000248 int rd_fd; /* fd to redirect */
249 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
250 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000251 smallint rd_type; /* (enum redir_type) */
252 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000253 * and subsequently heredoc itself; and rd_dup is a bitmask:
254 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000255 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000256 */
Eric Andersen25f27032001-04-26 23:22:31 +0000257};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000258typedef enum redir_type {
259 REDIRECT_INVALID = 0,
260 REDIRECT_INPUT = 1,
261 REDIRECT_OVERWRITE = 2,
262 REDIRECT_APPEND = 3,
263 REDIRECT_HEREDOC = 4,
264 REDIRECT_IO = 5,
265 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000266
267 REDIRFD_CLOSE = -3,
268 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000269 REDIRFD_TO_FILE = -1,
270 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000271
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000272 HEREDOC_SKIPTABS = 1,
273 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000274} redir_type;
275
Eric Andersen25f27032001-04-26 23:22:31 +0000276
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000277struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000278 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000279 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000280 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000281 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000282#define GRP_NORMAL 0
283#define GRP_SUBSHELL 1
284#if ENABLE_HUSH_FUNCTIONS
285# define GRP_FUNCTION 2
286#endif
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200287 /* if non-NULL, this "command" is { list }, ( list ), or a compound statement */
288 struct pipe *group;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000289#if !BB_MMU
290 char *group_as_string;
291#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000292#if ENABLE_HUSH_FUNCTIONS
293 struct function *child_func;
294/* This field is used to prevent a bug here:
295 * while...do f1() {a;}; f1; f1 {b;}; f1; done
296 * When we execute "f1() {a;}" cmd, we create new function and clear
297 * cmd->group, cmd->group_as_string, cmd->argv[0].
298 * when we execute "f1 {b;}", we notice that f1 exists,
299 * and that it's "parent cmd" struct is still "alive",
300 * we put those fields back into cmd->xxx
301 * (struct function has ->parent_cmd ptr to facilitate that).
302 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
303 * Without this trick, loop would execute a;b;b;b;...
304 * instead of correct sequence a;b;a;b;...
305 * When command is freed, it severs the link
306 * (sets ->child_func->parent_cmd to NULL).
307 */
308#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000309 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000310/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
311 * and on execution these are substituted with their values.
312 * Substitution can make _several_ words out of one argv[n]!
313 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000314 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000315 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000316 struct redir_struct *redirects; /* I/O redirections */
317};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000318/* Is there anything in this command at all? */
319#define IS_NULL_CMD(cmd) \
320 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
321
Eric Andersen25f27032001-04-26 23:22:31 +0000322
323struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000324 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000325 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000326 int alive_cmds; /* number of commands running (not exited) */
327 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000328#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000329 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000330 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000331 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000332#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000333 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000334 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000335 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
336 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000337};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000338typedef enum pipe_style {
339 PIPE_SEQ = 1,
340 PIPE_AND = 2,
341 PIPE_OR = 3,
342 PIPE_BG = 4,
343} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000344/* Is there anything in this pipe at all? */
345#define IS_NULL_PIPE(pi) \
346 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000347
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000348/* This holds pointers to the various results of parsing */
349struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000350 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000351 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000352 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000353 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000354 /* last command in pipe (being constructed right now) */
355 struct command *command;
356 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000357 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000358#if !BB_MMU
359 o_string as_string;
360#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000361#if HAS_KEYWORDS
362 smallint ctx_res_w;
363 smallint ctx_inverted; /* "! cmd | cmd" */
364#if ENABLE_HUSH_CASE
365 smallint ctx_dsemicolon; /* ";;" seen */
366#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000367 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
368 int old_flag;
369 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000370 * example: "if pipe1; pipe2; then pipe3; fi"
371 * when we see "if" or "then", we malloc and copy current context,
372 * and make ->stack point to it. then we parse pipeN.
373 * when closing "then" / fi" / whatever is found,
374 * we move list_head into ->stack->command->group,
375 * copy ->stack into current context, and delete ->stack.
376 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000377 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000378 struct parse_context *stack;
379#endif
380};
381
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000382/* On program start, environ points to initial environment.
383 * putenv adds new pointers into it, unsetenv removes them.
384 * Neither of these (de)allocates the strings.
385 * setenv allocates new strings in malloc space and does putenv,
386 * and thus setenv is unusable (leaky) for shell's purposes */
387#define setenv(...) setenv_is_leaky_dont_use()
388struct variable {
389 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000390 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000391 int max_len; /* if > 0, name is part of initial env; else name is malloced */
392 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000393 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000394};
395
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000396enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000397 BC_BREAK = 1,
398 BC_CONTINUE = 2,
399};
400
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000401#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000402struct function {
403 struct function *next;
404 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000405 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000406 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000407#if !BB_MMU
408 char *body_as_string;
409#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000410};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000411#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000412
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000413
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000414/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000415/* Sorted roughly by size (smaller offsets == smaller code) */
416struct globals {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000417 /* interactive_fd != 0 means we are an interactive shell.
418 * If we are, then saved_tty_pgrp can also be != 0, meaning
419 * that controlling tty is available. With saved_tty_pgrp == 0,
420 * job control still works, but terminal signals
421 * (^C, ^Z, ^Y, ^\) won't work at all, and background
422 * process groups can only be created with "cmd &".
423 * With saved_tty_pgrp != 0, hush will use tcsetpgrp()
424 * to give tty to the foreground process group,
425 * and will take it back when the group is stopped (^Z)
426 * or killed (^C).
427 */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000428#if ENABLE_HUSH_INTERACTIVE
429 /* 'interactive_fd' is a fd# open to ctty, if we have one
430 * _AND_ if we decided to act interactively */
431 int interactive_fd;
432 const char *PS1;
433 const char *PS2;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000434# define G_interactive_fd (G.interactive_fd)
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000435#else
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000436# define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000437#endif
438#if ENABLE_FEATURE_EDITING
439 line_input_t *line_input_state;
440#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000441 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000442 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000443#if ENABLE_HUSH_JOB
444 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000445 int last_jobid;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000446 pid_t saved_tty_pgrp;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000447 struct pipe *job_list;
Mike Frysinger38478a62009-05-20 04:48:06 -0400448# define G_saved_tty_pgrp (G.saved_tty_pgrp)
449#else
450# define G_saved_tty_pgrp 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000451#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000452 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000453#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000454 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000455#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000456#if ENABLE_HUSH_FUNCTIONS
457 /* 0: outside of a function (or sourced file)
458 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000459 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000460 */
461 smallint flag_return_in_progress;
462#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000463 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000464 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000465 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000466 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000467 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000468 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000469 /* how many non-NULL argv's we have. NB: $# + 1 */
470 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000471 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000472#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000473 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000474#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000475#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000476 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000477 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000478#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000479 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000480 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000481 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000482 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000483#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000484 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000485#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000486 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000487// unsigned count_SIGCHLD;
488// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000489 /* which signals have non-DFL handler (even with no traps set)? */
490 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000491 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000492 sigset_t blocked_set;
493 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000494#if HUSH_DEBUG
495 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000496 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000497#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000498 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000499};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000500#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000501/* Not #defining name to G.name - this quickly gets unwieldy
502 * (too many defines). Also, I actually prefer to see when a variable
503 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000504#define INIT_G() do { \
505 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
506} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000507
508
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000509/* Function prototypes for builtins */
510static int builtin_cd(char **argv);
511static int builtin_echo(char **argv);
512static int builtin_eval(char **argv);
513static int builtin_exec(char **argv);
514static int builtin_exit(char **argv);
515static int builtin_export(char **argv);
516#if ENABLE_HUSH_JOB
517static int builtin_fg_bg(char **argv);
518static int builtin_jobs(char **argv);
519#endif
520#if ENABLE_HUSH_HELP
521static int builtin_help(char **argv);
522#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000523#if HUSH_DEBUG
524static int builtin_memleak(char **argv);
525#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000526static int builtin_pwd(char **argv);
527static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000528static int builtin_set(char **argv);
529static int builtin_shift(char **argv);
530static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000531static int builtin_test(char **argv);
532static int builtin_trap(char **argv);
533static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000534static int builtin_umask(char **argv);
535static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000536static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000537#if ENABLE_HUSH_LOOPS
538static int builtin_break(char **argv);
539static int builtin_continue(char **argv);
540#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000541#if ENABLE_HUSH_FUNCTIONS
542static int builtin_return(char **argv);
543#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000544
545/* Table of built-in functions. They can be forked or not, depending on
546 * context: within pipes, they fork. As simple commands, they do not.
547 * When used in non-forking context, they can change global variables
548 * in the parent shell process. If forked, of course they cannot.
549 * For example, 'unset foo | whatever' will parse and run, but foo will
550 * still be set at the end. */
551struct built_in_command {
552 const char *cmd;
553 int (*function)(char **argv);
554#if ENABLE_HUSH_HELP
555 const char *descr;
556#define BLTIN(cmd, func, help) { cmd, func, help }
557#else
558#define BLTIN(cmd, func, help) { cmd, func }
559#endif
560};
561
562/* For now, echo and test are unconditionally enabled.
563 * Maybe make it configurable? */
564static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000565 BLTIN("." , builtin_source , "Run commands in a file"),
566 BLTIN(":" , builtin_true , "No-op"),
567 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000568#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000569 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000570#endif
571#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000572 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000573#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000574 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000575#if ENABLE_HUSH_LOOPS
576 BLTIN("continue", builtin_continue, "Start new loop iteration"),
577#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000578 BLTIN("echo" , builtin_echo , "Write to stdout"),
579 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
580 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
581 BLTIN("exit" , builtin_exit , "Exit"),
582 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000583#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000584 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000585#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000586#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000587 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000588#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000589#if ENABLE_HUSH_JOB
590 BLTIN("jobs" , builtin_jobs , "List active jobs"),
591#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000592#if HUSH_DEBUG
593 BLTIN("memleak" , builtin_memleak , "Debug tool"),
594#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000595 BLTIN("pwd" , builtin_pwd , "Print current directory"),
596 BLTIN("read" , builtin_read , "Input environment variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000597#if ENABLE_HUSH_FUNCTIONS
598 BLTIN("return" , builtin_return , "Return from a function"),
599#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000600 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
601 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
602 BLTIN("test" , builtin_test , "Test condition"),
603 BLTIN("trap" , builtin_trap , "Trap signals"),
604// BLTIN("ulimit" , builtin_return , "Control resource limits"),
605 BLTIN("umask" , builtin_umask , "Set file creation mask"),
606 BLTIN("unset" , builtin_unset , "Unset environment variable"),
607 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608};
609
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000610
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000611/* Debug printouts.
612 */
613#if HUSH_DEBUG
614/* prevent disasters with G.debug_indent < 0 */
615# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
616# define debug_enter() (G.debug_indent++)
617# define debug_leave() (G.debug_indent--)
618#else
619# define indent() ((void)0)
620# define debug_enter() ((void)0)
621# define debug_leave() ((void)0)
622#endif
623
624#ifndef debug_printf
625# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
626#endif
627
628#ifndef debug_printf_parse
629# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
630#endif
631
632#ifndef debug_printf_exec
633#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
634#endif
635
636#ifndef debug_printf_env
637# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
638#endif
639
640#ifndef debug_printf_jobs
641# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
642# define DEBUG_JOBS 1
643#else
644# define DEBUG_JOBS 0
645#endif
646
647#ifndef debug_printf_expand
648# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
649# define DEBUG_EXPAND 1
650#else
651# define DEBUG_EXPAND 0
652#endif
653
654#ifndef debug_printf_glob
655# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
656# define DEBUG_GLOB 1
657#else
658# define DEBUG_GLOB 0
659#endif
660
661#ifndef debug_printf_list
662# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
663#endif
664
665#ifndef debug_printf_subst
666# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
667#endif
668
669#ifndef debug_printf_clean
670# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
671# define DEBUG_CLEAN 1
672#else
673# define DEBUG_CLEAN 0
674#endif
675
676#if DEBUG_EXPAND
677static void debug_print_strings(const char *prefix, char **vv)
678{
679 indent();
680 fprintf(stderr, "%s:\n", prefix);
681 while (*vv)
682 fprintf(stderr, " '%s'\n", *vv++);
683}
684#else
685#define debug_print_strings(prefix, vv) ((void)0)
686#endif
687
688
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000689/* Leak hunting. Use hush_leaktool.sh for post-processing.
690 */
691#if LEAK_HUNTING
692static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000693{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000694 void *ptr = xmalloc((size + 0xff) & ~0xff);
695 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
696 return ptr;
697}
698static void *xxrealloc(int lineno, void *ptr, size_t size)
699{
700 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
701 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
702 return ptr;
703}
704static char *xxstrdup(int lineno, const char *str)
705{
706 char *ptr = xstrdup(str);
707 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
708 return ptr;
709}
710static void xxfree(void *ptr)
711{
712 fdprintf(2, "free %p\n", ptr);
713 free(ptr);
714}
715#define xmalloc(s) xxmalloc(__LINE__, s)
716#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
717#define xstrdup(s) xxstrdup(__LINE__, s)
718#define free(p) xxfree(p)
719#endif
720
721
722/* Syntax and runtime errors. They always abort scripts.
723 * In interactive use they usually discard unparsed and/or unexecuted commands
724 * and return to the prompt.
725 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
726 */
727#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000728# define die_if_script(lineno, fmt...) die_if_script(fmt)
729# define syntax_error(lineno, msg) syntax_error(msg)
730# define syntax_error_at(lineno, msg) syntax_error_at(msg)
731# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
732# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
733# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000734#endif
735
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000736static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000737{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000738 va_list p;
739
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000740#if HUSH_DEBUG >= 2
741 bb_error_msg("hush.c:%u", lineno);
742#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000743 va_start(p, fmt);
744 bb_verror_msg(fmt, p, NULL);
745 va_end(p);
746 if (!G_interactive_fd)
747 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000748}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000749
750static void syntax_error(unsigned lineno, const char *msg)
751{
752 if (msg)
753 die_if_script(lineno, "syntax error: %s", msg);
754 else
755 die_if_script(lineno, "syntax error", NULL);
756}
757
758static void syntax_error_at(unsigned lineno, const char *msg)
759{
760 die_if_script(lineno, "syntax error at '%s'", msg);
761}
762
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000763/* It so happens that all such cases are totally fatal
764 * even if shell is interactive: EOF while looking for closing
765 * delimiter. There is nowhere to read stuff from after that,
766 * it's EOF! The only choice is to terminate.
767 */
768static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000769static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000770{
771 char msg[2];
772 msg[0] = ch;
773 msg[1] = '\0';
774 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000775 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000776}
777
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000778static void syntax_error_unterm_str(unsigned lineno, const char *s)
779{
780 die_if_script(lineno, "syntax error: unterminated %s", s);
781}
782
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200783static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000784{
785 char msg[2];
786 msg[0] = ch;
787 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200788 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000789}
790
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000791#if HUSH_DEBUG < 2
792# undef die_if_script
793# undef syntax_error
794# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000795# undef syntax_error_unterm_ch
796# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000797# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000798#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000799# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
800# define syntax_error(msg) syntax_error(__LINE__, msg)
801# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
802# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
803# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
804# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000805#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000806
Denis Vlasenko552433b2009-04-04 19:29:21 +0000807
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000808#if ENABLE_HUSH_INTERACTIVE
809static void cmdedit_update_prompt(void);
810#else
811# define cmdedit_update_prompt()
812#endif
813
814
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000815/* Utility functions
816 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000817static int glob_needed(const char *s)
818{
819 while (*s) {
820 if (*s == '\\')
821 s++;
822 if (*s == '*' || *s == '[' || *s == '?')
823 return 1;
824 s++;
825 }
826 return 0;
827}
828
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000829static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000830{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000831 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000832 return 0;
833 s++;
834 while (isalnum(*s) || *s == '_')
835 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000836 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000837}
838
Denis Vlasenko55789c62008-06-18 16:30:42 +0000839/* Replace each \x with x in place, return ptr past NUL. */
840static char *unbackslash(char *src)
841{
842 char *dst = src;
843 while (1) {
844 if (*src == '\\')
845 src++;
846 if ((*dst++ = *src++) == '\0')
847 break;
848 }
849 return dst;
850}
851
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000852static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000853{
854 int i;
855 unsigned count1;
856 unsigned count2;
857 char **v;
858
859 v = strings;
860 count1 = 0;
861 if (v) {
862 while (*v) {
863 count1++;
864 v++;
865 }
866 }
867 count2 = 0;
868 v = add;
869 while (*v) {
870 count2++;
871 v++;
872 }
873 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
874 v[count1 + count2] = NULL;
875 i = count2;
876 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000877 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000878 return v;
879}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000880#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000881static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
882{
883 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
884 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
885 return ptr;
886}
887#define add_strings_to_strings(strings, add, need_to_dup) \
888 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
889#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000890
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200891/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000892static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000893{
894 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000895 v[0] = add;
896 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000897 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000898}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000899#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000900static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
901{
902 char **ptr = add_string_to_strings(strings, add);
903 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
904 return ptr;
905}
906#define add_string_to_strings(strings, add) \
907 xx_add_string_to_strings(__LINE__, strings, add)
908#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000909
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200910static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000911{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000912 char **v;
913
914 if (!strings)
915 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000916 v = strings;
917 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200918 free(*v);
919 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000920 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000921 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000922}
923
Denis Vlasenko76d50412008-06-10 16:19:39 +0000924
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000925/* Helpers for setting new $n and restoring them back
926 */
927typedef struct save_arg_t {
928 char *sv_argv0;
929 char **sv_g_argv;
930 int sv_g_argc;
931 smallint sv_g_malloced;
932} save_arg_t;
933
934static void save_and_replace_G_args(save_arg_t *sv, char **argv)
935{
936 int n;
937
938 sv->sv_argv0 = argv[0];
939 sv->sv_g_argv = G.global_argv;
940 sv->sv_g_argc = G.global_argc;
941 sv->sv_g_malloced = G.global_args_malloced;
942
943 argv[0] = G.global_argv[0]; /* retain $0 */
944 G.global_argv = argv;
945 G.global_args_malloced = 0;
946
947 n = 1;
948 while (*++argv)
949 n++;
950 G.global_argc = n;
951}
952
953static void restore_G_args(save_arg_t *sv, char **argv)
954{
955 char **pp;
956
957 if (G.global_args_malloced) {
958 /* someone ran "set -- arg1 arg2 ...", undo */
959 pp = G.global_argv;
960 while (*++pp) /* note: does not free $0 */
961 free(*pp);
962 free(G.global_argv);
963 }
964 argv[0] = sv->sv_argv0;
965 G.global_argv = sv->sv_g_argv;
966 G.global_argc = sv->sv_g_argc;
967 G.global_args_malloced = sv->sv_g_malloced;
968}
969
970
Denis Vlasenkod5762932009-03-31 11:22:57 +0000971/* Basic theory of signal handling in shell
972 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000973 * This does not describe what hush does, rather, it is current understanding
974 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000975 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
976 *
977 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
978 * is finished or backgrounded. It is the same in interactive and
979 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000980 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000981 * ^C or ^Z from keyboard seem to execute "at once" because it usually
982 * backgrounds (i.e. stops) or kills all members of currently running
983 * pipe.
984 *
985 * Wait builtin in interruptible by signals for which user trap is set
986 * or by SIGINT in interactive shell.
987 *
988 * Trap handlers will execute even within trap handlers. (right?)
989 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000990 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000991 *
992 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000993 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000994 *
995 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000996 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000997 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000998 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
999 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001000 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001001 * Siganls which differ from SIG_DFL action
1002 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001003 *
1004 * SIGQUIT: ignore
1005 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001006 * SIGHUP (interactive):
1007 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001008 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001009 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1010 * that all pipe members are stopped. Try this in bash:
1011 * while :; do :; done - ^Z does not background it
1012 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001013 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001014 * of the command line, show prompt. NB: ^C does not send SIGINT
1015 * to interactive shell while shell is waiting for a pipe,
1016 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001017 * Example 1: this waits 5 sec, but does not execute ls:
1018 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1019 * Example 2: this does not wait and does not execute ls:
1020 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1021 * Example 3: this does not wait 5 sec, but executes ls:
1022 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001023 *
1024 * (What happens to signals which are IGN on shell start?)
1025 * (What happens with signal mask on shell start?)
1026 *
1027 * Implementation in hush
1028 * ======================
1029 * We use in-kernel pending signal mask to determine which signals were sent.
1030 * We block all signals which we don't want to take action immediately,
1031 * i.e. we block all signals which need to have special handling as described
1032 * above, and all signals which have traps set.
1033 * After each pipe execution, we extract any pending signals via sigtimedwait()
1034 * and act on them.
1035 *
1036 * unsigned non_DFL_mask: a mask of such "special" signals
1037 * sigset_t blocked_set: current blocked signal set
1038 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001039 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001040 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001041 * "trap 'cmd' SIGxxx":
1042 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001043 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001044 * unblock signals with special interactive handling
1045 * (child shell is not interactive),
1046 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001047 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001048 * POSIX says pending signal mask is cleared in child - no need to clear it.
1049 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001050 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001051 * Note: as a result, we do not use signal handlers much. The only uses
1052 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1053 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001054 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001055enum {
1056 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001057 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001058 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001059 | (1 << SIGHUP)
1060 ,
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001061 SPECIAL_JOB_SIGS = 0
Mike Frysinger38478a62009-05-20 04:48:06 -04001062#if ENABLE_HUSH_JOB
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001063 | (1 << SIGTTIN)
1064 | (1 << SIGTTOU)
1065 | (1 << SIGTSTP)
1066#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001067};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001068
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001069//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1070//{
1071// G.count_SIGCHLD++;
1072//}
1073
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001074#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001075
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001076/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1077#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001078/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001079#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1080
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001081/* Restores tty foreground process group, and exits.
1082 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001083 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001084 * or called directly with -EXITCODE.
1085 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001086static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001087static void sigexit(int sig)
1088{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001089 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001090 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001091
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001092 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001093 * tty pgrp then, only top-level shell process does that */
Mike Frysinger38478a62009-05-20 04:48:06 -04001094 if (G_saved_tty_pgrp && getpid() == G.root_pid)
1095 tcsetpgrp(G_interactive_fd, G_saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001096
1097 /* Not a signal, just exit */
1098 if (sig <= 0)
1099 _exit(- sig);
1100
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001101 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001102}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001103#else
1104
1105#define disable_restore_tty_pgrp_on_exit() ((void)0)
1106#define enable_restore_tty_pgrp_on_exit() ((void)0)
1107
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001108#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001109
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001110/* Restores tty foreground process group, and exits. */
1111static void hush_exit(int exitcode) NORETURN;
1112static void hush_exit(int exitcode)
1113{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001114 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1115 /* Prevent recursion:
1116 * trap "echo Hi; exit" EXIT; exit
1117 */
1118 char *argv[] = { NULL, G.traps[0], NULL };
1119 G.traps[0] = NULL;
1120 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001121 builtin_eval(argv);
1122 free(argv[1]);
1123 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001124
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001125#if ENABLE_HUSH_JOB
1126 fflush(NULL); /* flush all streams */
1127 sigexit(- (exitcode & 0xff));
1128#else
1129 exit(exitcode);
1130#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001131}
1132
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001133static int check_and_run_traps(int sig)
1134{
1135 static const struct timespec zero_timespec = { 0, 0 };
1136 smalluint save_rcode;
1137 int last_sig = 0;
1138
1139 if (sig)
1140 goto jump_in;
1141 while (1) {
1142 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1143 if (sig <= 0)
1144 break;
1145 jump_in:
1146 last_sig = sig;
1147 if (G.traps && G.traps[sig]) {
1148 if (G.traps[sig][0]) {
1149 /* We have user-defined handler */
1150 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1151 save_rcode = G.last_exitcode;
1152 builtin_eval(argv);
1153 free(argv[1]);
1154 G.last_exitcode = save_rcode;
1155 } /* else: "" trap, ignoring signal */
1156 continue;
1157 }
1158 /* not a trap: special action */
1159 switch (sig) {
1160// case SIGCHLD:
1161// G.count_SIGCHLD++;
1162// break;
1163 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001164 /* Builtin was ^C'ed, make it look prettier: */
1165 bb_putchar('\n');
1166 G.flag_SIGINT = 1;
1167 break;
1168#if ENABLE_HUSH_JOB
1169 case SIGHUP: {
1170 struct pipe *job;
1171 /* bash is observed to signal whole process groups,
1172 * not individual processes */
1173 for (job = G.job_list; job; job = job->next) {
1174 if (job->pgrp <= 0)
1175 continue;
1176 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1177 if (kill(- job->pgrp, SIGHUP) == 0)
1178 kill(- job->pgrp, SIGCONT);
1179 }
1180 sigexit(SIGHUP);
1181 }
1182#endif
1183 default: /* ignored: */
1184 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1185 break;
1186 }
1187 }
1188 return last_sig;
1189}
1190
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001191
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001192static const char *set_cwd(void)
1193{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001194 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1195 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001196 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001197 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001198 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1199 if (!G.cwd)
1200 G.cwd = bb_msg_unknown;
1201 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001202}
1203
Denis Vlasenko83506862007-11-23 13:11:42 +00001204
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001205/*
1206 * Shell and environment variable support
1207 */
1208static struct variable **get_ptr_to_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001209{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001210 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001211 struct variable *cur;
1212 int len;
1213
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001214 len = strlen(name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001215 pp = &G.top_var;
1216 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001217 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001218 return pp;
1219 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001220 }
1221 return NULL;
1222}
1223
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001224static struct variable *get_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001225{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001226 struct variable **pp = get_ptr_to_local_var(name);
1227 if (pp)
1228 return *pp;
1229 return NULL;
1230}
1231
1232static const char *get_local_var_value(const char *name)
1233{
1234 struct variable **pp = get_ptr_to_local_var(name);
1235 if (pp)
1236 return strchr((*pp)->varstr, '=') + 1;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001237 return NULL;
1238}
1239
1240/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001241 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001242 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001243 * 0: do not change export flag
1244 * (if creating new variable, flag will be 0)
1245 * 1: set export flag and putenv the variable
1246 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001247 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001248 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001249#if BB_MMU
1250#define set_local_var(str, flg_export, flg_read_only) \
1251 set_local_var(str, flg_export)
1252#endif
1253static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001254{
1255 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001256 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001257 int name_len;
1258
Denis Vlasenko950bd722009-04-21 11:23:56 +00001259 eq_sign = strchr(str, '=');
1260 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001261 free(str);
1262 return -1;
1263 }
1264
Denis Vlasenko950bd722009-04-21 11:23:56 +00001265 name_len = eq_sign - str + 1; /* including '=' */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001266 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1267 while (1) {
1268 if (strncmp(cur->varstr, str, name_len) != 0) {
1269 if (!cur->next) {
1270 /* Bail out. Note that now cur points
1271 * to last var in linked list */
1272 break;
1273 }
1274 cur = cur->next;
1275 continue;
1276 }
1277 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001278 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001279#if !BB_MMU
1280 if (!flg_read_only)
1281#endif
1282 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001283 free(str);
1284 return -1;
1285 }
Denis Vlasenko950bd722009-04-21 11:23:56 +00001286 if (flg_export == -1) {
1287 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1288 *eq_sign = '\0';
1289 unsetenv(str);
1290 *eq_sign = '=';
1291 }
1292 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001293 free_and_exp:
1294 free(str);
1295 goto exp;
1296 }
1297 if (cur->max_len >= strlen(str)) {
1298 /* This one is from startup env, reuse space */
1299 strcpy(cur->varstr, str);
1300 goto free_and_exp;
1301 }
1302 /* max_len == 0 signifies "malloced" var, which we can
1303 * (and has to) free */
1304 if (!cur->max_len)
1305 free(cur->varstr);
1306 cur->max_len = 0;
1307 goto set_str_and_exp;
1308 }
1309
1310 /* Not found - create next variable struct */
1311 cur->next = xzalloc(sizeof(*cur));
1312 cur = cur->next;
1313
1314 set_str_and_exp:
1315 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001316#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001317 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001318#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001319 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001320 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001321 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001322 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1323 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001324 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001325 if (flg_export == -1) {
1326 cur->flg_export = 0;
1327 /* unsetenv was already done */
1328 } else {
1329 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1330 return putenv(cur->varstr);
1331 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001332 }
1333 return 0;
1334}
1335
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001336static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001337{
1338 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001339 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001340
1341 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001342 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001343 var_pp = &G.top_var;
1344 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001345 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1346 if (cur->flg_read_only) {
1347 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001348 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001349 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001350 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001351 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1352 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001353 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1354 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001355 if (!cur->max_len)
1356 free(cur->varstr);
1357 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001358 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001359 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001360 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001361 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001362 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001363}
1364
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001365static int unset_local_var(const char *name)
1366{
1367 return unset_local_var_len(name, strlen(name));
1368}
1369
1370static void unset_vars(char **strings)
1371{
1372 char **v;
1373
1374 if (!strings)
1375 return;
1376 v = strings;
1377 while (*v) {
1378 const char *eq = strchrnul(*v, '=');
1379 unset_local_var_len(*v, (int)(eq - *v));
1380 v++;
1381 }
1382 free(strings);
1383}
1384
Mike Frysinger98c52642009-04-02 10:02:37 +00001385#if ENABLE_SH_MATH_SUPPORT
1386#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1387#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1388static char *endofname(const char *name)
1389{
1390 char *p;
1391
1392 p = (char *) name;
1393 if (!is_name(*p))
1394 return p;
1395 while (*++p) {
1396 if (!is_in_name(*p))
1397 break;
1398 }
1399 return p;
1400}
1401
1402static void arith_set_local_var(const char *name, const char *val, int flags)
1403{
1404 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001405 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001406 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001407}
1408#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001409
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001410
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001411/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001412 * Helpers for "var1=val1 var2=val2 cmd" feature
1413 */
1414static void add_vars(struct variable *var)
1415{
1416 struct variable *next;
1417
1418 while (var) {
1419 next = var->next;
1420 var->next = G.top_var;
1421 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001422 if (var->flg_export) {
1423 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001424 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001425 } else {
1426 debug_printf_env("%s: restoring local '%s'\n", __func__, var->varstr);
1427 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001428 var = next;
1429 }
1430}
1431
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001432static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001433{
1434 char **s;
1435 struct variable *old = NULL;
1436
1437 if (!strings)
1438 return old;
1439 s = strings;
1440 while (*s) {
1441 struct variable *var_p;
1442 struct variable **var_pp;
1443 char *eq;
1444
1445 eq = strchr(*s, '=');
1446 if (eq) {
1447 *eq = '\0';
1448 var_pp = get_ptr_to_local_var(*s);
1449 *eq = '=';
1450 if (var_pp) {
1451 /* Remove variable from global linked list */
1452 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001453 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001454 *var_pp = var_p->next;
1455 /* Add it to returned list */
1456 var_p->next = old;
1457 old = var_p;
1458 }
1459 set_local_var(*s, 1, 0);
1460 }
1461 s++;
1462 }
1463 return old;
1464}
1465
1466
1467/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001468 * in_str support
1469 */
1470static int static_get(struct in_str *i)
1471{
1472 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001473 if (ch != '\0')
1474 return ch;
1475 i->p--;
1476 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001477}
1478
1479static int static_peek(struct in_str *i)
1480{
1481 return *i->p;
1482}
1483
1484#if ENABLE_HUSH_INTERACTIVE
1485
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001486static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001487{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001488 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001489 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001490 if (G.PS1 == NULL)
1491 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001492 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001493 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001494 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001495 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001496 if (G.PS2 == NULL)
1497 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001498}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001499
1500static const char* setup_prompt_string(int promptmode)
1501{
1502 const char *prompt_str;
1503 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001504 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1505 /* Set up the prompt */
1506 if (promptmode == 0) { /* PS1 */
1507 free((char*)G.PS1);
1508 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1509 prompt_str = G.PS1;
1510 } else
1511 prompt_str = G.PS2;
1512 } else
1513 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001514 debug_printf("result '%s'\n", prompt_str);
1515 return prompt_str;
1516}
1517
1518static void get_user_input(struct in_str *i)
1519{
1520 int r;
1521 const char *prompt_str;
1522
1523 prompt_str = setup_prompt_string(i->promptmode);
1524#if ENABLE_FEATURE_EDITING
1525 /* Enable command line editing only while a command line
1526 * is actually being read */
1527 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001528 G.flag_SIGINT = 0;
1529 /* buglet: SIGINT will not make new prompt to appear _at once_,
1530 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001531 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001532 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001533 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001534 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001535 i->eof_flag = (r < 0);
1536 if (i->eof_flag) { /* EOF/error detected */
1537 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1538 G.user_input_buf[1] = '\0';
1539 }
1540#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001541 do {
1542 G.flag_SIGINT = 0;
1543 fputs(prompt_str, stdout);
1544 fflush(stdout);
1545 G.user_input_buf[0] = r = fgetc(i->file);
1546 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001547//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001548 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001549 i->eof_flag = (r == EOF);
1550#endif
1551 i->p = G.user_input_buf;
1552}
1553
1554#endif /* INTERACTIVE */
1555
1556/* This is the magic location that prints prompts
1557 * and gets data back from the user */
1558static int file_get(struct in_str *i)
1559{
1560 int ch;
1561
1562 /* If there is data waiting, eat it up */
1563 if (i->p && *i->p) {
1564#if ENABLE_HUSH_INTERACTIVE
1565 take_cached:
1566#endif
1567 ch = *i->p++;
1568 if (i->eof_flag && !*i->p)
1569 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001570 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001571 } else {
1572 /* need to double check i->file because we might be doing something
1573 * more complicated by now, like sourcing or substituting. */
1574#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001575 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001576 do {
1577 get_user_input(i);
1578 } while (!*i->p); /* need non-empty line */
1579 i->promptmode = 1; /* PS2 */
1580 i->promptme = 0;
1581 goto take_cached;
1582 }
1583#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001584 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001585 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001586 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001587#if ENABLE_HUSH_INTERACTIVE
1588 if (ch == '\n')
1589 i->promptme = 1;
1590#endif
1591 return ch;
1592}
1593
Denis Vlasenko913a2012009-04-05 22:17:04 +00001594/* All callers guarantee this routine will never
1595 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001596 */
1597static int file_peek(struct in_str *i)
1598{
1599 int ch;
1600 if (i->p && *i->p) {
1601 if (i->eof_flag && !i->p[1])
1602 return EOF;
1603 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001604 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001605 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001606 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001607 i->eof_flag = (ch == EOF);
1608 i->peek_buf[0] = ch;
1609 i->peek_buf[1] = '\0';
1610 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001611 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001612 return ch;
1613}
1614
1615static void setup_file_in_str(struct in_str *i, FILE *f)
1616{
1617 i->peek = file_peek;
1618 i->get = file_get;
1619#if ENABLE_HUSH_INTERACTIVE
1620 i->promptme = 1;
1621 i->promptmode = 0; /* PS1 */
1622#endif
1623 i->file = f;
1624 i->p = NULL;
1625}
1626
1627static void setup_string_in_str(struct in_str *i, const char *s)
1628{
1629 i->peek = static_peek;
1630 i->get = static_get;
1631#if ENABLE_HUSH_INTERACTIVE
1632 i->promptme = 1;
1633 i->promptmode = 0; /* PS1 */
1634#endif
1635 i->p = s;
1636 i->eof_flag = 0;
1637}
1638
1639
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001640/*
1641 * o_string support
1642 */
1643#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001644
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001645static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001646{
1647 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001648 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001649 if (o->data)
1650 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001651}
1652
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001653static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001654{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001655 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001656 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001657}
1658
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001659static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1660{
1661 free(o->data);
1662}
1663
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001664static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001665{
1666 if (o->length + len > o->maxlen) {
1667 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1668 o->data = xrealloc(o->data, 1 + o->maxlen);
1669 }
1670}
1671
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001672static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001673{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001674 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1675 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001676 o->data[o->length] = ch;
1677 o->length++;
1678 o->data[o->length] = '\0';
1679}
1680
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001681static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001682{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001683 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001684 memcpy(&o->data[o->length], str, len);
1685 o->length += len;
1686 o->data[o->length] = '\0';
1687}
1688
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001689#if !BB_MMU
1690static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001691{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001692 o_addblock(o, str, strlen(str));
1693}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001694static void nommu_addchr(o_string *o, int ch)
1695{
1696 if (o)
1697 o_addchr(o, ch);
1698}
1699#else
1700#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001701#endif
1702
1703static void o_addstr_with_NUL(o_string *o, const char *str)
1704{
1705 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001706}
1707
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001708static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001709{
1710 while (len) {
1711 o_addchr(o, *str);
1712 if (*str++ == '\\'
1713 && (*str != '*' && *str != '?' && *str != '[')
1714 ) {
1715 o_addchr(o, '\\');
1716 }
1717 len--;
1718 }
1719}
1720
Eric Andersen25f27032001-04-26 23:22:31 +00001721/* My analysis of quoting semantics tells me that state information
1722 * is associated with a destination, not a source.
1723 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001724static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001725{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001726 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001727 char *found = strchr("*?[\\", ch);
1728 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001729 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001730 o_grow_by(o, sz);
1731 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001732 o->data[o->length] = '\\';
1733 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001734 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001735 o->data[o->length] = ch;
1736 o->length++;
1737 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001738}
1739
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001740static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001741{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001742 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001743 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001744 sz++;
1745 o->data[o->length] = '\\';
1746 o->length++;
1747 }
1748 o_grow_by(o, sz);
1749 o->data[o->length] = ch;
1750 o->length++;
1751 o->data[o->length] = '\0';
1752}
1753
1754static void o_addQstr(o_string *o, const char *str, int len)
1755{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001756 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001757 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001758 return;
1759 }
1760 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001761 char ch;
1762 int sz;
1763 int ordinary_cnt = strcspn(str, "*?[\\");
1764 if (ordinary_cnt > len) /* paranoia */
1765 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001766 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001767 if (ordinary_cnt == len)
1768 return;
1769 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001770 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001771
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001772 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001773 sz = 1;
1774 if (ch) { /* it is necessarily one of "*?[\\" */
1775 sz++;
1776 o->data[o->length] = '\\';
1777 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001778 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001779 o_grow_by(o, sz);
1780 o->data[o->length] = ch;
1781 o->length++;
1782 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001783 }
1784}
1785
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001786/* A special kind of o_string for $VAR and `cmd` expansion.
1787 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001788 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001789 * list[i] contains an INDEX (int!) into this string data.
1790 * It means that if list[] needs to grow, data needs to be moved higher up
1791 * but list[i]'s need not be modified.
1792 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001793 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001794 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1795 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001796#if DEBUG_EXPAND || DEBUG_GLOB
1797static void debug_print_list(const char *prefix, o_string *o, int n)
1798{
1799 char **list = (char**)o->data;
1800 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1801 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001802
1803 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001804 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1805 prefix, list, n, string_start, o->length, o->maxlen);
1806 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001807 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001808 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1809 o->data + (int)list[i] + string_start,
1810 o->data + (int)list[i] + string_start);
1811 i++;
1812 }
1813 if (n) {
1814 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001815 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001816 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001817 }
1818}
1819#else
1820#define debug_print_list(prefix, o, n) ((void)0)
1821#endif
1822
1823/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1824 * in list[n] so that it points past last stored byte so far.
1825 * It returns n+1. */
1826static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001827{
1828 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001829 int string_start;
1830 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001831
1832 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001833 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1834 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001835 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001836 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001837 /* list[n] points to string_start, make space for 16 more pointers */
1838 o->maxlen += 0x10 * sizeof(list[0]);
1839 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001840 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001841 memmove(list + n + 0x10, list + n, string_len);
1842 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001843 } else {
1844 debug_printf_list("list[%d]=%d string_start=%d\n",
1845 n, string_len, string_start);
1846 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001847 } else {
1848 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001849 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1850 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001851 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1852 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001853 o->has_empty_slot = 0;
1854 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001855 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001856 return n + 1;
1857}
1858
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001859/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001860static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001861{
1862 char **list = (char**)o->data;
1863 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1864
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001865 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001866}
1867
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001868/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001869 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001870static int o_glob(o_string *o, int n)
1871{
1872 glob_t globdata;
1873 int gr;
1874 char *pattern;
1875
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001876 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001877 if (!o->data)
1878 return o_save_ptr_helper(o, n);
1879 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001880 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001881 if (!glob_needed(pattern)) {
1882 literal:
1883 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001884 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001885 return o_save_ptr_helper(o, n);
1886 }
1887
1888 memset(&globdata, 0, sizeof(globdata));
1889 gr = glob(pattern, 0, NULL, &globdata);
1890 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1891 if (gr == GLOB_NOSPACE)
1892 bb_error_msg_and_die("out of memory during glob");
1893 if (gr == GLOB_NOMATCH) {
1894 globfree(&globdata);
1895 goto literal;
1896 }
1897 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00001898 /* TODO: testcase for bad glob pattern behavior */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001899 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1900 }
1901 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1902 char **argv = globdata.gl_pathv;
1903 o->length = pattern - o->data; /* "forget" pattern */
1904 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001905 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001906 n = o_save_ptr_helper(o, n);
1907 argv++;
1908 if (!*argv)
1909 break;
1910 }
1911 }
1912 globfree(&globdata);
1913 if (DEBUG_GLOB)
1914 debug_print_list("o_glob returning", o, n);
1915 return n;
1916}
1917
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001918/* If o->o_glob == 1, glob the string so far remembered.
1919 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001920static int o_save_ptr(o_string *o, int n)
1921{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001922 if (o->o_glob) { /* if globbing is requested */
1923 /* If o->has_empty_slot, list[n] was already globbed
1924 * (if it was requested back then when it was filled)
1925 * so don't do that again! */
1926 if (!o->has_empty_slot)
1927 return o_glob(o, n); /* o_save_ptr_helper is inside */
1928 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001929 return o_save_ptr_helper(o, n);
1930}
1931
1932/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001933static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001934{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001935 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001936 int string_start;
1937
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001938 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1939 if (DEBUG_EXPAND)
1940 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001941 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001942 list = (char**)o->data;
1943 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1944 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001945 while (n) {
1946 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001947 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001948 }
1949 return list;
1950}
1951
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001952
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001953/* Expansion can recurse */
1954#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001955static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001956#endif
1957static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001958#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001959#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001960 parse_stream_dquoted(dest, input, dquote_end)
1961#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001962static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001963 o_string *dest,
1964 struct in_str *input,
1965 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001966
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001967/* expand_strvec_to_strvec() takes a list of strings, expands
1968 * all variable references within and returns a pointer to
1969 * a list of expanded strings, possibly with larger number
1970 * of strings. (Think VAR="a b"; echo $VAR).
1971 * This new list is allocated as a single malloc block.
1972 * NULL-terminated list of char* pointers is at the beginning of it,
1973 * followed by strings themself.
1974 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001975
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001976/* Store given string, finalizing the word and starting new one whenever
1977 * we encounter IFS char(s). This is used for expanding variable values.
1978 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1979static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001980{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001981 while (1) {
1982 int word_len = strcspn(str, G.ifs);
1983 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001984 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001985 o_addQstr(output, str, word_len);
1986 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001987 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001988 str += word_len;
1989 }
1990 if (!*str) /* EOL - do not finalize word */
1991 break;
1992 o_addchr(output, '\0');
1993 debug_print_list("expand_on_ifs", output, n);
1994 n = o_save_ptr(output, n);
1995 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001996 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001997 debug_print_list("expand_on_ifs[1]", output, n);
1998 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001999}
2000
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002001/* Helper to expand $((...)) and heredoc body. These act as if
2002 * they are in double quotes, with the exception that they are not :).
2003 * Just the rules are similar: "expand only $var and `cmd`"
2004 *
2005 * Returns malloced string.
2006 * As an optimization, we return NULL if expansion is not needed.
2007 */
2008static char *expand_pseudo_dquoted(const char *str)
2009{
2010 char *exp_str;
2011 struct in_str input;
2012 o_string dest = NULL_O_STRING;
2013
2014 if (strchr(str, '$') == NULL
2015#if ENABLE_HUSH_TICK
2016 && strchr(str, '`') == NULL
2017#endif
2018 ) {
2019 return NULL;
2020 }
2021
2022 /* We need to expand. Example:
2023 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2024 */
2025 setup_string_in_str(&input, str);
2026 parse_stream_dquoted(NULL, &dest, &input, EOF);
2027 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2028 exp_str = expand_string_to_string(dest.data);
2029 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2030 o_free_unsafe(&dest);
2031 return exp_str;
2032}
2033
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002034/* Expand all variable references in given string, adding words to list[]
2035 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2036 * to be filled). This routine is extremely tricky: has to deal with
2037 * variables/parameters with whitespace, $* and $@, and constructs like
2038 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
2039static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002040{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002041 /* or_mask is either 0 (normal case) or 0x80
2042 * (expansion of right-hand side of assignment == 1-element expand.
2043 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002044
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002045 char ored_ch;
2046 char *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002047
2048 ored_ch = 0;
2049
2050 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
2051 debug_print_list("expand_vars_to_list", output, n);
2052 n = o_save_ptr(output, n);
2053 debug_print_list("expand_vars_to_list[0]", output, n);
2054
2055 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002056 char first_ch;
2057 int i;
2058 char *dyn_val = NULL;
2059 const char *val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002060#if ENABLE_HUSH_TICK
2061 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002062#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002063#if ENABLE_SH_MATH_SUPPORT
2064 char arith_buf[sizeof(arith_t)*3 + 2];
2065#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002066 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002067 debug_print_list("expand_vars_to_list[1]", output, n);
2068 arg = ++p;
2069 p = strchr(p, SPECIAL_VAR_SYMBOL);
2070
2071 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2072 /* "$@" is special. Even if quoted, it can still
2073 * expand to nothing (not even an empty string) */
2074 if ((first_ch & 0x7f) != '@')
2075 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002076
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002077 switch (first_ch & 0x7f) {
2078 /* Highest bit in first_ch indicates that var is double-quoted */
2079 case '$': /* pid */
2080 val = utoa(G.root_pid);
2081 break;
2082 case '!': /* bg pid */
2083 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2084 break;
2085 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002086 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002087 break;
2088 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002089 if (arg[1] != SPECIAL_VAR_SYMBOL)
2090 /* actually, it's a ${#var} */
2091 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002092 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2093 break;
2094 case '*':
2095 case '@':
2096 i = 1;
2097 if (!G.global_argv[i])
2098 break;
2099 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2100 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002101 smallint sv = output->o_escape;
2102 /* unquoted var's contents should be globbed, so don't escape */
2103 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002104 while (G.global_argv[i]) {
2105 n = expand_on_ifs(output, n, G.global_argv[i]);
2106 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2107 if (G.global_argv[i++][0] && G.global_argv[i]) {
2108 /* this argv[] is not empty and not last:
2109 * put terminating NUL, start new word */
2110 o_addchr(output, '\0');
2111 debug_print_list("expand_vars_to_list[2]", output, n);
2112 n = o_save_ptr(output, n);
2113 debug_print_list("expand_vars_to_list[3]", output, n);
2114 }
2115 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002116 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002117 } else
2118 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2119 * and in this case should treat it like '$*' - see 'else...' below */
2120 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2121 while (1) {
2122 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2123 if (++i >= G.global_argc)
2124 break;
2125 o_addchr(output, '\0');
2126 debug_print_list("expand_vars_to_list[4]", output, n);
2127 n = o_save_ptr(output, n);
2128 }
2129 } else { /* quoted $*: add as one word */
2130 while (1) {
2131 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2132 if (!G.global_argv[++i])
2133 break;
2134 if (G.ifs[0])
2135 o_addchr(output, G.ifs[0]);
2136 }
2137 }
2138 break;
2139 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2140 /* "Empty variable", used to make "" etc to not disappear */
2141 arg++;
2142 ored_ch = 0x80;
2143 break;
2144#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002145 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 *p = '\0';
2147 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002148 /* Can't just stuff it into output o_string,
2149 * expanded result may need to be globbed
2150 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002151 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002152 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002153 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2154 val = subst_result.data;
2155 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002156#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002157#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002158 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002159 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002160 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002161 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002162 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002163
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002164 arg++; /* skip '+' */
2165 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002166 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002167
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002168 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002169 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002170 hooks.setvar = arith_set_local_var;
2171 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002172 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2173 free(exp_str);
2174
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002175 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002176 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002177 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002178 case -3:
2179 msg = "exponent less than 0";
2180 break;
2181 case -2:
2182 msg = "divide by 0";
2183 break;
2184 case -5:
2185 msg = "expression recursion loop detected";
2186 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002187 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002188 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002189 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002190 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002191 sprintf(arith_buf, arith_t_fmt, res);
2192 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002193 break;
2194 }
2195#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002196 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002197 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002198 bool exp_len = false;
2199 bool exp_null = false;
2200 char *var = arg;
2201 char exp_save = exp_save; /* for compiler */
2202 char exp_op = exp_op; /* for compiler */
2203 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002204 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002205
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002206 *p = '\0';
2207 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002208
2209 /* prepare for expansions */
2210 if (var[0] == '#') {
2211 /* handle length expansion ${#var} */
2212 exp_len = true;
2213 ++var;
2214 } else {
2215 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002216 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002217 if (!var[exp_off])
2218 exp_off = 0;
2219 if (exp_off) {
2220 exp_save = var[exp_off];
2221 exp_null = exp_save == ':';
2222 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002223 if (exp_null)
2224 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002225 exp_op = *exp_word++;
2226 var[exp_off] = '\0';
2227 }
2228 }
2229
2230 /* lookup the variable in question */
2231 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002232 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002233 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002234 if (i < G.global_argc)
2235 val = G.global_argv[i];
2236 /* else val remains NULL: $N with too big N */
2237 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002238 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002239
2240 /* handle any expansions */
2241 if (exp_len) {
2242 debug_printf_expand("expand: length of '%s' = ", val);
2243 val = utoa(val ? strlen(val) : 0);
2244 debug_printf_expand("%s\n", val);
2245 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002246 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002247 if (val) {
2248 /* we need to do a pattern match */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002249 bool match_at_left;
Mike Frysinger57e74672009-04-09 23:00:33 +00002250 char *loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002251 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
Mike Frysinger57e74672009-04-09 23:00:33 +00002252 if (exp_op == *exp_word) /* ## or %% */
2253 ++exp_word;
2254 val = dyn_val = xstrdup(val);
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002255 loc = scan(dyn_val, exp_word, match_at_left);
2256 if (match_at_left) /* # or ## */
Mike Frysinger57e74672009-04-09 23:00:33 +00002257 val = loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002258 else if (loc) /* % or %% and match was found */
Mike Frysinger57e74672009-04-09 23:00:33 +00002259 *loc = '\0';
2260 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002261 } else {
2262 /* we need to do an expansion */
2263 int exp_test = (!val || (exp_null && !val[0]));
2264 if (exp_op == '+')
2265 exp_test = !exp_test;
2266 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2267 exp_null ? "true" : "false", exp_test);
2268 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002269 if (exp_op == '?') {
2270//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002271 /* ${var?[error_msg_if_unset]} */
2272 /* ${var:?[error_msg_if_unset_or_null]} */
2273 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002274 die_if_script("%s: %s",
2275 var,
2276 exp_word[0] ? exp_word : "parameter null or not set"
2277 );
2278 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002279 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002280 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002281
Mike Frysingera4f331d2009-04-07 06:03:22 +00002282 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002283 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002284 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002285 /* mimic bash message */
2286 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002287 val = NULL;
2288 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002289 char *new_var = xasprintf("%s=%s", var, val);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002290 set_local_var(new_var, 0, 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002291 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002292 }
2293 }
2294 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002295
Mike Frysinger6379bb42009-03-28 18:55:03 +00002296 var[exp_off] = exp_save;
2297 }
2298
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002299 arg[0] = first_ch;
2300#if ENABLE_HUSH_TICK
2301 store_val:
2302#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002303 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002304 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002305 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002306 /* unquoted var's contents should be globbed, so don't escape */
2307 smallint sv = output->o_escape;
2308 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002309 n = expand_on_ifs(output, n, val);
2310 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002311 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002312 }
2313 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002314 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002315 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002316 } /* default: */
2317 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002318
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002319 if (val) {
2320 o_addQstr(output, val, strlen(val));
2321 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002322 free(dyn_val);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002323 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002324 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002325 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002326
2327#if ENABLE_HUSH_TICK
2328 o_free(&subst_result);
2329#endif
2330 arg = ++p;
2331 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2332
2333 if (arg[0]) {
2334 debug_print_list("expand_vars_to_list[a]", output, n);
2335 /* this part is literal, and it was already pre-quoted
2336 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002337 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002338 debug_print_list("expand_vars_to_list[b]", output, n);
2339 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2340 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2341 ) {
2342 n--;
2343 /* allow to reuse list[n] later without re-growth */
2344 output->has_empty_slot = 1;
2345 } else {
2346 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002347 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002348 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002349}
2350
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002351static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002352{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002353 int n;
2354 char **list;
2355 char **v;
2356 o_string output = NULL_O_STRING;
2357
2358 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002359 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002360 /* (unquoted $var will temporarily switch it off) */
2361 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002362 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002363
2364 n = 0;
2365 v = argv;
2366 while (*v) {
2367 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2368 v++;
2369 }
2370 debug_print_list("expand_variables", &output, n);
2371
2372 /* output.data (malloced in one block) gets returned in "list" */
2373 list = o_finalize_list(&output, n);
2374 debug_print_strings("expand_variables[1]", list);
2375 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002376}
2377
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002378static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002379{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002380 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002381}
2382
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002383/* Used for expansion of right hand of assignments */
2384/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2385 * "v=/bin/c*" */
2386static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002387{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002388 char *argv[2], **list;
2389
2390 argv[0] = (char*)str;
2391 argv[1] = NULL;
2392 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2393 if (HUSH_DEBUG)
2394 if (!list[0] || list[1])
2395 bb_error_msg_and_die("BUG in varexp2");
2396 /* actually, just move string 2*sizeof(char*) bytes back */
2397 overlapping_strcpy((char*)list, list[0]);
2398 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2399 return (char*)list;
2400}
2401
2402/* Used for "eval" builtin */
2403static char* expand_strvec_to_string(char **argv)
2404{
2405 char **list;
2406
2407 list = expand_variables(argv, 0x80);
2408 /* Convert all NULs to spaces */
2409 if (list[0]) {
2410 int n = 1;
2411 while (list[n]) {
2412 if (HUSH_DEBUG)
2413 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2414 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002415 /* bash uses ' ' regardless of $IFS contents */
2416 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002417 n++;
2418 }
2419 }
2420 overlapping_strcpy((char*)list, list[0]);
2421 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2422 return (char*)list;
2423}
2424
2425static char **expand_assignments(char **argv, int count)
2426{
2427 int i;
2428 char **p = NULL;
2429 /* Expand assignments into one string each */
2430 for (i = 0; i < count; i++) {
2431 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2432 }
2433 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002434}
2435
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002436
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002437#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002438/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002439void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002440
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002441static void reset_traps_to_defaults(void)
2442{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002443 /* This function is always called in a child shell
2444 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002445 * Child shells are not interactive.
2446 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2447 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002448 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002449 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002450 unsigned sig;
2451 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002452
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002453 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2454 return;
2455
2456 /* Stupid. It can be done with *single* &= op, but we can't use
2457 * the fact that G.blocked_set is implemented as a bitmask... */
2458 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2459 sig = 1;
2460 while (1) {
2461 if (mask & 1)
2462 sigdelset(&G.blocked_set, sig);
2463 mask >>= 1;
2464 if (!mask)
2465 break;
2466 sig++;
2467 }
2468
2469 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2470 mask = G.non_DFL_mask;
2471 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2472 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002473 continue;
2474 free(G.traps[sig]);
2475 G.traps[sig] = NULL;
2476 /* There is no signal for 0 (EXIT) */
2477 if (sig == 0)
2478 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002479 /* There was a trap handler, we are removing it.
2480 * But if sig still has non-DFL handling,
2481 * we should not unblock it. */
2482 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002483 continue;
2484 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002485 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002486 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002487}
2488
2489#else /* !BB_MMU */
2490
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002491static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2492static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002493{
2494 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002495 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002496 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002497#if ENABLE_HUSH_FUNCTIONS
2498 struct function *funcp;
2499#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002500 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002501 unsigned cnt;
2502
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002503 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002504 argv = heredoc_argv;
2505 argv[0] = (char *) G.argv0_for_re_execing;
2506 argv[1] = (char *) "-<";
2507 argv[2] = (char *) s;
2508 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002509 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002510 goto do_exec;
2511 }
2512
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002513 sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002514 , (unsigned) G.root_pid
2515 , (unsigned) G.last_bg_pid
2516 , (unsigned) G.last_exitcode
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002517 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002518 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002519 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002520 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002521 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002522 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002523 for (cur = G.top_var; cur; cur = cur->next) {
2524 if (!cur->flg_export || cur->flg_read_only)
2525 cnt += 2;
2526 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002527#if ENABLE_HUSH_FUNCTIONS
2528 for (funcp = G.top_func; funcp; funcp = funcp->next)
2529 cnt += 3;
2530#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002531 pp = g_argv;
2532 while (*pp++)
2533 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002534 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002535 *pp++ = (char *) G.argv0_for_re_execing;
2536 *pp++ = param_buf;
2537 for (cur = G.top_var; cur; cur = cur->next) {
2538 if (cur->varstr == hush_version_str)
2539 continue;
2540 if (cur->flg_read_only) {
2541 *pp++ = (char *) "-R";
2542 *pp++ = cur->varstr;
2543 } else if (!cur->flg_export) {
2544 *pp++ = (char *) "-V";
2545 *pp++ = cur->varstr;
2546 }
2547 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002548#if ENABLE_HUSH_FUNCTIONS
2549 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2550 *pp++ = (char *) "-F";
2551 *pp++ = funcp->name;
2552 *pp++ = funcp->body_as_string;
2553 }
2554#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002555 /* We can pass activated traps here. Say, -Tnn:trap_string
2556 *
2557 * However, POSIX says that subshells reset signals with traps
2558 * to SIG_DFL.
2559 * I tested bash-3.2 and it not only does that with true subshells
2560 * of the form ( list ), but with any forked children shells.
2561 * I set trap "echo W" WINCH; and then tried:
2562 *
2563 * { echo 1; sleep 20; echo 2; } &
2564 * while true; do echo 1; sleep 20; echo 2; break; done &
2565 * true | { echo 1; sleep 20; echo 2; } | cat
2566 *
2567 * In all these cases sending SIGWINCH to the child shell
2568 * did not run the trap. If I add trap "echo V" WINCH;
2569 * _inside_ group (just before echo 1), it works.
2570 *
2571 * I conclude it means we don't need to pass active traps here.
2572 * exec syscall below resets them to SIG_DFL for us.
2573 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002574 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002575 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002576 *pp++ = g_argv0;
2577 while (*g_argv)
2578 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002579 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002580 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002581
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002582 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002583 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2584 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002585 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002586 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002587 if (argv[0][0] == '/')
2588 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002589 xfunc_error_retval = 127;
2590 bb_error_msg_and_die("can't re-execute the shell");
2591}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002592#endif /* !BB_MMU */
2593
2594
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002595static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002596{
2597 struct fd_pair pair;
2598 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002599 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002600 /* the _body_ of heredoc (misleading field name) */
2601 const char *heredoc = redir->rd_filename;
2602 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002603#if !BB_MMU
2604 char **to_free;
2605#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002606
2607 expanded = NULL;
2608 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2609 expanded = expand_pseudo_dquoted(heredoc);
2610 if (expanded)
2611 heredoc = expanded;
2612 }
2613 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002614
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002615 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002616 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002617 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002618
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002619 /* Try writing without forking. Newer kernels have
2620 * dynamically growing pipes. Must use non-blocking write! */
2621 ndelay_on(pair.wr);
2622 while (1) {
2623 written = write(pair.wr, heredoc, len);
2624 if (written <= 0)
2625 break;
2626 len -= written;
2627 if (len == 0) {
2628 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002629 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002630 return;
2631 }
2632 heredoc += written;
2633 }
2634 ndelay_off(pair.wr);
2635
2636 /* Okay, pipe buffer was not big enough */
2637 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002638 * for the unsuspecting parent process. Child creates a grandchild
2639 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002640 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002641#if !BB_MMU
2642 to_free = NULL;
2643#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002644 pid = vfork();
2645 if (pid < 0)
2646 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002647 if (pid == 0) {
2648 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002649 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002650 pid = BB_MMU ? fork() : vfork();
2651 if (pid < 0)
2652 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2653 if (pid != 0)
2654 _exit(0);
2655 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002656 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002657#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002658 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002659 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002660#else
2661 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002662 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002663 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002664#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002665 }
2666 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002667 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002668#if !BB_MMU
2669 free(to_free);
2670#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002671 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002672 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002673 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002674}
2675
Eric Andersen25f27032001-04-26 23:22:31 +00002676/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2677 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002678static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002679{
2680 int openfd, mode;
2681 struct redir_struct *redir;
2682
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002683 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002684 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002685 /* rd_fd<<HERE case */
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002686 if (squirrel && redir->rd_fd < 3
2687 && squirrel[redir->rd_fd] < 0
2688 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002689 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002690 }
2691 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2692 * of the heredoc */
2693 debug_printf_parse("set heredoc '%s'\n",
2694 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002695 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002696 continue;
2697 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002698
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002699 if (redir->rd_dup == REDIRFD_TO_FILE) {
2700 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002701 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002702 if (redir->rd_filename == NULL) {
2703 /* Something went wrong in the parse.
2704 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002705 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002706 continue;
2707 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002708 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002709 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002710 openfd = open_or_warn(p, mode);
2711 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002712 if (openfd < 0) {
2713 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002714 * bash and ash both lose it as well (though zsh doesn't!) */
2715//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002716 return 1;
2717 }
2718 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002719 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002720 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002721 }
2722
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002723 if (openfd != redir->rd_fd) {
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002724 if (squirrel && redir->rd_fd < 3
2725 && squirrel[redir->rd_fd] < 0
2726 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002727 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002728 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002729 if (openfd == REDIRFD_CLOSE) {
2730 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002731 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002732 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002733 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002734 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002735 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002736 }
Eric Andersen25f27032001-04-26 23:22:31 +00002737 }
2738 }
2739 return 0;
2740}
2741
2742static void restore_redirects(int squirrel[])
2743{
2744 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002745 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002746 fd = squirrel[i];
2747 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002748 /* We simply die on error */
2749 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002750 }
2751 }
2752}
2753
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002754
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002755static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002756
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002757/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002758static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002759{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002760 char **p;
2761 struct command *command;
2762 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002763 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002764
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002765 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002766 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002767 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002768 for (i = 0; i < pi->num_cmds; i++) {
2769 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002770 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002771 if (command->argv) {
2772 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002773 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002774 }
2775 free_strings(command->argv);
2776 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002777 }
2778 /* not "else if": on syntax error, we may have both! */
2779 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002780 debug_printf_clean(" begin group (grp_type:%d)\n",
2781 command->grp_type);
2782 free_pipe_list(command->group);
2783 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002784 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002785 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002786 /* else is crucial here.
2787 * If group != NULL, child_func is meaningless */
2788#if ENABLE_HUSH_FUNCTIONS
2789 else if (command->child_func) {
2790 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2791 command->child_func->parent_cmd = NULL;
2792 }
2793#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002794#if !BB_MMU
2795 free(command->group_as_string);
2796 command->group_as_string = NULL;
2797#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002798 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002799 debug_printf_clean(" redirect %d%s",
2800 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002801 /* guard against the case >$FOO, where foo is unset or blank */
2802 if (r->rd_filename) {
2803 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2804 free(r->rd_filename);
2805 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002806 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002807 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002808 rnext = r->next;
2809 free(r);
2810 }
2811 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002812 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002813 free(pi->cmds); /* children are an array, they get freed all at once */
2814 pi->cmds = NULL;
2815#if ENABLE_HUSH_JOB
2816 free(pi->cmdtext);
2817 pi->cmdtext = NULL;
2818#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002819}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002820
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002821static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002822{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002823 struct pipe *pi, *next;
2824
2825 for (pi = head; pi; pi = next) {
2826#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002827 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002828#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002829 free_pipe(pi);
2830 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002831 next = pi->next;
2832 /*pi->next = NULL;*/
2833 free(pi);
2834 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002835}
2836
2837
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002838static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002839#if BB_MMU
2840#define parse_stream(pstring, input, end_trigger) \
2841 parse_stream(input, end_trigger)
2842#endif
2843static struct pipe *parse_stream(char **pstring,
2844 struct in_str *input,
2845 int end_trigger);
2846static void parse_and_run_string(const char *s);
2847
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002848
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002849static const struct built_in_command* find_builtin(const char *name)
2850{
2851 const struct built_in_command *x;
2852 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2853 if (strcmp(name, x->cmd) != 0)
2854 continue;
2855 debug_printf_exec("found builtin '%s'\n", name);
2856 return x;
2857 }
2858 return NULL;
2859}
2860
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002861#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002862static const struct function *find_function(const char *name)
2863{
2864 const struct function *funcp = G.top_func;
2865 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002866 if (strcmp(name, funcp->name) == 0) {
2867 break;
2868 }
2869 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002870 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002871 if (funcp)
2872 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002873 return funcp;
2874}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002875
Denis Vlasenkobc569742009-04-12 20:35:19 +00002876/* Note: takes ownership on name ptr */
2877static struct function *new_function(char *name)
2878{
2879 struct function *funcp;
2880 struct function **funcpp = &G.top_func;
2881
2882 while ((funcp = *funcpp) != NULL) {
2883 struct command *cmd;
2884
2885 if (strcmp(funcp->name, name) != 0) {
2886 funcpp = &funcp->next;
2887 continue;
2888 }
2889
2890 cmd = funcp->parent_cmd;
2891 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2892 if (!cmd) {
2893 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2894 free(funcp->name);
2895 /* Note: if !funcp->body, do not free body_as_string!
2896 * This is a special case of "-F name body" function:
2897 * body_as_string was not malloced! */
2898 if (funcp->body) {
2899 free_pipe_list(funcp->body);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002900# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002901 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002902# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002903 }
2904 } else {
2905 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2906 cmd->argv[0] = funcp->name;
2907 cmd->group = funcp->body;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002908# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002909 cmd->group_as_string = funcp->body_as_string;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002910# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002911 }
2912 goto skip;
2913 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002914 debug_printf_exec("remembering new function '%s'\n", name);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002915 funcp = *funcpp = xzalloc(sizeof(*funcp));
2916 /*funcp->next = NULL;*/
2917 skip:
2918 funcp->name = name;
2919 return funcp;
2920}
2921
Denis Vlasenko40e84372009-04-18 11:23:38 +00002922static void unset_func(const char *name)
2923{
2924 struct function *funcp;
2925 struct function **funcpp = &G.top_func;
2926
2927 while ((funcp = *funcpp) != NULL) {
2928 if (strcmp(funcp->name, name) == 0) {
2929 *funcpp = funcp->next;
root62452022009-05-04 12:00:19 +02002930 /* funcp is unlinked now, deleting it.
2931 * Note: if !funcp->body, the function was created by
2932 * "-F name body", do not free ->body_as_string
2933 * and ->name as they were not malloced. */
Denis Vlasenko40e84372009-04-18 11:23:38 +00002934 if (funcp->body) {
2935 free_pipe_list(funcp->body);
root62452022009-05-04 12:00:19 +02002936 free(funcp->name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002937# if !BB_MMU
Denis Vlasenko40e84372009-04-18 11:23:38 +00002938 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002939# endif
Denis Vlasenko40e84372009-04-18 11:23:38 +00002940 }
2941 free(funcp);
2942 break;
2943 }
Denis Vlasenko73010672009-04-18 11:25:18 +00002944 funcpp = &funcp->next;
Denis Vlasenko40e84372009-04-18 11:23:38 +00002945 }
2946}
2947
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002948# if BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002949#define exec_function(nommu_save, funcp, argv) \
2950 exec_function(funcp, argv)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002951# endif
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002952static void exec_function(nommu_save_t *nommu_save,
2953 const struct function *funcp,
2954 char **argv) NORETURN;
2955static void exec_function(nommu_save_t *nommu_save,
2956 const struct function *funcp,
2957 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002958{
2959# if BB_MMU
2960 int n = 1;
2961
2962 argv[0] = G.global_argv[0];
2963 G.global_argv = argv;
2964 while (*++argv)
2965 n++;
2966 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002967 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002968 n = run_list(funcp->body);
2969 fflush(NULL);
2970 _exit(n);
2971# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002972 re_execute_shell(&nommu_save->argv_from_re_execing,
2973 funcp->body_as_string,
2974 G.global_argv[0],
2975 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002976# endif
2977}
2978
2979static int run_function(const struct function *funcp, char **argv)
2980{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002981 int rc;
2982 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002983 smallint sv_flg;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002984
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002985 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002986 /* "we are in function, ok to use return" */
2987 sv_flg = G.flag_return_in_progress;
2988 G.flag_return_in_progress = -1;
2989
Denis Vlasenkobc569742009-04-12 20:35:19 +00002990 /* On MMU, funcp->body is always non-NULL */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002991# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002992 if (!funcp->body) {
2993 /* Function defined by -F */
2994 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002995 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002996 } else
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002997# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002998 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002999 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00003000 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003001
3002 G.flag_return_in_progress = sv_flg;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003003 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003004
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003005 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003006}
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003007#endif /* ENABLE_HUSH_FUNCTIONS */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003008
3009
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003010#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003011#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3012 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3013#define pseudo_exec(nommu_save, command, argv_expanded) \
3014 pseudo_exec(command, argv_expanded)
3015#endif
3016
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003017/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00003018 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003019 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00003020 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003021 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003022static void pseudo_exec_argv(nommu_save_t *nommu_save,
3023 char **argv, int assignment_cnt,
3024 char **argv_expanded) NORETURN;
3025static void pseudo_exec_argv(nommu_save_t *nommu_save,
3026 char **argv, int assignment_cnt,
3027 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00003028{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003029 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003030
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003031 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003032 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00003033 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003034
Denis Vlasenko9504e442008-10-29 01:19:15 +00003035 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003036#if BB_MMU
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003037 set_vars_and_save_old(new_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003038 free(new_env); /* optional */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003039 /* we can also destroy set_vars_and_save_old's return value,
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003040 * to save memory */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003041#else
3042 nommu_save->new_env = new_env;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003043 nommu_save->old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003044#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003045 if (argv_expanded) {
3046 argv = argv_expanded;
3047 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00003048 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00003049#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003050 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003051#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003052 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003053
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003054#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3055 if (strchr(argv[0], '/') != NULL)
3056 goto skip;
3057#endif
3058
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003059 /* On NOMMU, we must never block!
3060 * Example: { sleep 99999 | read line } & echo Ok
3061 * read builtin will block on read syscall, leaving parent blocked
3062 * in vfork. Therefore we can't do this:
3063 */
3064#if BB_MMU
3065 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003066 * Depending on context, this might be redundant. But it's
3067 * easier to waste a few CPU cycles than it is to figure out
3068 * if this is one of those cases.
3069 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003070 {
3071 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003072 const struct built_in_command *x = find_builtin(argv[0]);
3073 if (x) {
3074 rcode = x->function(argv);
3075 fflush(NULL);
3076 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00003077 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003078 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003079#endif
3080#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003081 /* Check if the command matches any functions */
3082 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003083 const struct function *funcp = find_function(argv[0]);
3084 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003085 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003086 }
3087 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003088#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003089
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003090#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003091 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003092 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003093 int a = find_applet_by_name(argv[0]);
3094 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003095# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003096 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003097 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003098 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003099 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003100# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003101 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003102 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003103 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3104 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003105 /* If they called chroot or otherwise made the binary no longer
3106 * executable, fall through */
3107 }
3108 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003109#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003110
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003111#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003112 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003113#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003114 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003115 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003116 execvp(argv[0], argv);
Denis Vlasenkof9d4fc32009-04-21 20:40:51 +00003117 bb_perror_msg("can't execute '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00003118 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003119}
3120
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003121/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003122 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003123static void pseudo_exec(nommu_save_t *nommu_save,
3124 struct command *command,
3125 char **argv_expanded) NORETURN;
3126static void pseudo_exec(nommu_save_t *nommu_save,
3127 struct command *command,
3128 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003129{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003130 if (command->argv) {
3131 pseudo_exec_argv(nommu_save, command->argv,
3132 command->assignment_cnt, argv_expanded);
3133 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003134
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003135 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003136 /* Cases when we are here:
3137 * ( list )
3138 * { list } &
3139 * ... | ( list ) | ...
3140 * ... | { list } | ...
3141 */
3142#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003143 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003144 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003145 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003146 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003147 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003148 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003149 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003150#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003151 re_execute_shell(&nommu_save->argv_from_re_execing,
3152 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003153 G.global_argv[0],
3154 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003155#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003156 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003157
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003158 /* Case when we are here: ... | >file */
3159 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003160 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003161}
3162
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003163#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003164static const char *get_cmdtext(struct pipe *pi)
3165{
3166 char **argv;
3167 char *p;
3168 int len;
3169
3170 /* This is subtle. ->cmdtext is created only on first backgrounding.
3171 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003172 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003173 if (pi->cmdtext)
3174 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003175 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003176 if (!argv || !argv[0]) {
3177 pi->cmdtext = xzalloc(1);
3178 return pi->cmdtext;
3179 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003180
3181 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003182 do {
3183 len += strlen(*argv) + 1;
3184 } while (*++argv);
3185 p = xmalloc(len);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003186 pi->cmdtext = p;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003187 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003188 do {
3189 len = strlen(*argv);
3190 memcpy(p, *argv, len);
3191 p += len;
3192 *p++ = ' ';
3193 } while (*++argv);
3194 p[-1] = '\0';
3195 return pi->cmdtext;
3196}
3197
Eric Andersenbafd94f2001-05-02 16:11:59 +00003198static void insert_bg_job(struct pipe *pi)
3199{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003200 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003201 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003202
3203 /* Linear search for the ID of the job to use */
3204 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003205 for (job = G.job_list; job; job = job->next)
3206 if (job->jobid >= pi->jobid)
3207 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003208
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003209 /* Add job to the list of running jobs */
3210 jobp = &G.job_list;
3211 while ((job = *jobp) != NULL)
3212 jobp = &job->next;
3213 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003214
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003215 *job = *pi; /* physical copy */
3216 job->next = NULL;
3217 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3218 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003219 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003220 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003221 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003222 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003223 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003224
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003225 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003226 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3227 /* Last command's pid goes to $! */
3228 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3229 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003230}
3231
Eric Andersenbafd94f2001-05-02 16:11:59 +00003232static void remove_bg_job(struct pipe *pi)
3233{
3234 struct pipe *prev_pipe;
3235
Denis Vlasenko87a86552008-07-29 19:43:10 +00003236 if (pi == G.job_list) {
3237 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003238 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003239 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003240 while (prev_pipe->next != pi)
3241 prev_pipe = prev_pipe->next;
3242 prev_pipe->next = pi->next;
3243 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003244 if (G.job_list)
3245 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003246 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003247 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003248}
Eric Andersen028b65b2001-06-28 01:10:11 +00003249
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003250/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003251static void delete_finished_bg_job(struct pipe *pi)
3252{
3253 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003254 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003255 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003256 free(pi);
3257}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003258#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003259
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003260/* Check to see if any processes have exited -- if they
3261 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003262static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003263{
Eric Andersenc798b072001-06-22 06:23:03 +00003264 int attributes;
3265 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003266#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003267 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003268#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003269 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003270 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003271
Denis Vlasenkod5762932009-03-31 11:22:57 +00003272 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3273
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003274 errno = 0;
3275// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3276// /* avoid doing syscall, nothing there anyway */
3277// return rcode;
3278
Eric Andersenc798b072001-06-22 06:23:03 +00003279 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003280 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003281 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003282
Denis Vlasenko1359da62007-04-21 23:27:30 +00003283/* Do we do this right?
3284 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003285 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003286 * [3]+ Stopped sleep 20 | false
3287 * bash-3.00# echo $?
3288 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003289 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003290 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003291 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003292 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003293 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003294 int dead;
3295
3296// i = G.count_SIGCHLD;
3297 childpid = waitpid(-1, &status, attributes);
3298 if (childpid <= 0) {
3299 if (childpid && errno != ECHILD)
3300 bb_perror_msg("waitpid");
3301// else /* Until next SIGCHLD, waitpid's are useless */
3302// G.handled_SIGCHLD = i;
3303 break;
3304 }
3305 dead = WIFEXITED(status) || WIFSIGNALED(status);
3306
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003307#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003308 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003309 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003310 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3311 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003312 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003313 childpid, WTERMSIG(status), WEXITSTATUS(status));
3314 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003315 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003316 childpid, WEXITSTATUS(status));
3317#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003318 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003319 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003320 for (i = 0; i < fg_pipe->num_cmds; i++) {
3321 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3322 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003323 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003324 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003325 fg_pipe->cmds[i].pid = 0;
3326 fg_pipe->alive_cmds--;
3327 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003328 /* last process gives overall exitstatus */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003329 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003330 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003331 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003332 /* bash prints killing signal's name for *last*
3333 * process in pipe (prints just newline for SIGINT).
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003334 * Mimic this. Example: "sleep 5" + ^\
Denis Vlasenko40e84372009-04-18 11:23:38 +00003335 */
3336 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003337 int sig = WTERMSIG(status);
3338 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denis Vlasenko40e84372009-04-18 11:23:38 +00003339 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003340 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003341 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003342 fg_pipe->cmds[i].is_stopped = 1;
3343 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003344 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003345 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3346 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3347 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003348 /* All processes in fg pipe have exited or stopped */
3349/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3350 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3351 * and "killall -STOP cat" */
3352 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003353#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003354 if (fg_pipe->alive_cmds)
3355 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003356#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003357 return rcode;
3358 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003359 }
3360 /* There are still running processes in the fg pipe */
3361 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003362 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003363 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003364 }
3365
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003366#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003367 /* We asked to wait for bg or orphaned children */
3368 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003369 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003370 for (i = 0; i < pi->num_cmds; i++) {
3371 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003372 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003373 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003374 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003375 /* Happens when shell is used as init process (init=/bin/sh) */
3376 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003377 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003378
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003379 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003380 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003381 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003382 pi->cmds[i].pid = 0;
3383 pi->alive_cmds--;
3384 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003385 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003386 printf(JOB_STATUS_FORMAT, pi->jobid,
3387 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003388 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003389 }
3390 } else {
3391 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003392 pi->cmds[i].is_stopped = 1;
3393 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003394 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003395#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003396 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003397
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003398 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003399}
3400
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003401#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003402static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3403{
3404 pid_t p;
3405 int rcode = checkjobs(fg_pipe);
Mike Frysinger38478a62009-05-20 04:48:06 -04003406 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003407 /* Job finished, move the shell to the foreground */
3408 p = getpgrp(); /* our process group id */
3409 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
3410 tcsetpgrp(G_interactive_fd, p);
3411 }
Denis Vlasenko52881e92007-04-21 13:42:52 +00003412 return rcode;
3413}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003414#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003415
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003416/* Start all the jobs, but don't wait for anything to finish.
3417 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003418 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003419 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003420 * to finish to determine the exit status of the pipe. If the pipe
3421 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003422 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003423 * return value.
3424 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003425 * Returns -1 only if started some children. IOW: we have to
3426 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003427 *
3428 * The only case when we do not need to [v]fork is when the pipe
3429 * is single, non-backgrounded, non-subshell command. Examples:
3430 * cmd ; ... { list } ; ...
3431 * cmd && ... { list } && ...
3432 * cmd || ... { list } || ...
3433 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3434 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003435 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003436 *
3437 * Cases when we must fork:
3438 * non-single: cmd | cmd
3439 * backgrounded: cmd & { list } &
3440 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003441 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003442static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003443{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003444 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003445 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003446 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003447 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003448 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003449 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003450 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003451 /* it is not always needed, but we aim to smaller code */
3452 int squirrel[] = { -1, -1, -1 };
3453 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003454
Denis Vlasenko552433b2009-04-04 19:29:21 +00003455 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003456 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003457
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003458 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003459 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003460 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003461 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003462
Denis Vlasenko552433b2009-04-04 19:29:21 +00003463 if (pi->num_cmds != 1
3464 || pi->followup == PIPE_BG
3465 || command->grp_type == GRP_SUBSHELL
3466 ) {
3467 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003468 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003469
Denis Vlasenko552433b2009-04-04 19:29:21 +00003470 pi->alive_cmds = 1;
3471
3472 debug_printf_exec(": group:%p argv:'%s'\n",
3473 command->group, command->argv ? command->argv[0] : "NONE");
3474
3475 if (command->group) {
3476#if ENABLE_HUSH_FUNCTIONS
3477 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003478 /* "executing" func () { list } */
3479 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003480
Denis Vlasenkobc569742009-04-12 20:35:19 +00003481 funcp = new_function(command->argv[0]);
3482 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003483 funcp->body = command->group;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003484# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003485 funcp->body_as_string = command->group_as_string;
3486 command->group_as_string = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003487# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003488 command->group = NULL;
3489 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003490 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3491 funcp->parent_cmd = command;
3492 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003493
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003494 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3495 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003496 return EXIT_SUCCESS;
3497 }
3498#endif
3499 /* { list } */
3500 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003501 rcode = 1; /* exitcode if redir failed */
3502 if (setup_redirects(command, squirrel) == 0) {
3503 debug_printf_exec(": run_list\n");
3504 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003505 }
Eric Andersen04407e52001-06-07 16:42:05 +00003506 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003507 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003508 debug_leave();
3509 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003510 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003511 }
3512
Denis Vlasenko552433b2009-04-04 19:29:21 +00003513 argv = command->argv ? command->argv : (char **) &null_ptr;
3514 {
3515 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003516#if ENABLE_HUSH_FUNCTIONS
3517 const struct function *funcp;
3518#else
3519 enum { funcp = 0 };
3520#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003521 char **new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003522 struct variable *old_vars = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003523
Denis Vlasenko552433b2009-04-04 19:29:21 +00003524 if (argv[command->assignment_cnt] == NULL) {
3525 /* Assignments, but no command */
3526 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003527 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003528 restore_redirects(squirrel);
3529 /* Set shell variables */
3530 while (*argv) {
3531 p = expand_string_to_string(*argv);
3532 debug_printf_exec("set shell var:'%s'->'%s'\n",
3533 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003534 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003535 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003536 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003537 /* Do we need to flag set_local_var() errors?
3538 * "assignment to readonly var" and "putenv error"
3539 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003540 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003541 debug_leave();
3542 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003543 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003544 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003545
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003546 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003547 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003548
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003549 x = find_builtin(argv_expanded[0]);
3550#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003551 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003552 if (!x)
3553 funcp = find_function(argv_expanded[0]);
3554#endif
3555 if (x || funcp) {
3556 if (!funcp) {
3557 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3558 debug_printf("exec with redirects only\n");
3559 rcode = setup_redirects(command, NULL);
3560 goto clean_up_and_ret1;
3561 }
Eric Andersen25f27032001-04-26 23:22:31 +00003562 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003563 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003564 * This is perfect for work that comes after exec().
3565 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003566 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003567 rcode = setup_redirects(command, squirrel);
3568 if (rcode == 0) {
3569 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003570 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003571 if (!funcp) {
3572 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003573 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003574 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003575 fflush(NULL);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003576 }
3577#if ENABLE_HUSH_FUNCTIONS
3578 else {
3579 debug_printf_exec(": function '%s' '%s'...\n",
3580 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003581 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003582 }
3583#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003584 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003585#if ENABLE_FEATURE_SH_STANDALONE
3586 clean_up_and_ret:
3587#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003588 restore_redirects(squirrel);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003589 unset_vars(new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003590 add_vars(old_vars);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003591 clean_up_and_ret1:
3592 free(argv_expanded);
3593 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003594 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003595 debug_printf_exec("run_pipe return %d\n", rcode);
3596 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003597 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003598
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003599#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003600 i = find_applet_by_name(argv_expanded[0]);
3601 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003602 rcode = setup_redirects(command, squirrel);
3603 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003604 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003605 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003606 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003607 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003608 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003609 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003610 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003611 }
3612#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003613 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003614 }
3615
Denis Vlasenko552433b2009-04-04 19:29:21 +00003616 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003617 /* NB: argv_expanded may already be created, and that
3618 * might include `cmd` runs! Do not rerun it! We *must*
3619 * use argv_expanded if it's non-NULL */
3620
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003621 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003622 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003623 nextin = 0;
3624
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003625 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003626 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003627#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003628 volatile nommu_save_t nommu_save;
3629 nommu_save.new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003630 nommu_save.old_vars = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003631 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003632 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003633#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003634 command = &(pi->cmds[i]);
3635 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003636 debug_printf_exec(": pipe member '%s' '%s'...\n",
3637 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003638 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003639 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003640 }
Eric Andersen25f27032001-04-26 23:22:31 +00003641
3642 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003643 pipefds.rd = 0;
3644 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003645 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003646 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003647
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003648 command->pid = BB_MMU ? fork() : vfork();
3649 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003650#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003651 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003652
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003653 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003654 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003655 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003656 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003657 pgrp = pi->pgrp;
3658 if (pgrp < 0) /* true for 1st process only */
3659 pgrp = getpid();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003660 if (setpgid(0, pgrp) == 0
3661 && pi->followup != PIPE_BG
Mike Frysinger38478a62009-05-20 04:48:06 -04003662 && G_saved_tty_pgrp /* we have ctty */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003663 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003664 /* We do it in *every* child, not just first,
3665 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003666 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003667 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003668 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003669#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003670 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
3671 /* 1st cmd in backgrounded pipe
3672 * should have its stdin /dev/null'ed */
3673 close(0);
3674 if (open(bb_dev_null, O_RDONLY))
3675 xopen("/", O_RDONLY);
3676 } else {
3677 xmove_fd(nextin, 0);
3678 }
3679 xmove_fd(pipefds.wr, 1);
3680 if (pipefds.rd > 1)
3681 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00003682 /* Like bash, explicit redirects override pipes,
3683 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003684 if (setup_redirects(command, NULL))
3685 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003686
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003687 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003688 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3689
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003690 /* Stores to nommu_save list of env vars putenv'ed
3691 * (NOMMU, on MMU we don't need that) */
3692 /* cast away volatility... */
3693 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003694 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003695 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003696
Denis Vlasenkof9375282009-04-05 19:13:39 +00003697 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003698 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003699#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003700 /* Clean up after vforked child */
3701 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003702 free(nommu_save.argv_from_re_execing);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003703 unset_vars(nommu_save.new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003704 add_vars(nommu_save.old_vars);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003705#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003706 free(argv_expanded);
3707 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003708 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003709 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003710 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003711 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003712 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003713#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003714 /* Second and next children need to know pid of first one */
3715 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003716 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003717#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003718 }
Eric Andersen25f27032001-04-26 23:22:31 +00003719
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003720 if (i)
3721 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003722 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003723 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003724 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003725 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00003726 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003727
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003728 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003729 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003730 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3731 return 1;
3732 }
3733
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003734 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003735 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003736 return -1;
3737}
3738
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003739#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003740static void debug_print_tree(struct pipe *pi, int lvl)
3741{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003742 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003743 [PIPE_SEQ] = "SEQ",
3744 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003745 [PIPE_OR ] = "OR" ,
3746 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003747 };
3748 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003749 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003750#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003751 [RES_IF ] = "IF" ,
3752 [RES_THEN ] = "THEN" ,
3753 [RES_ELIF ] = "ELIF" ,
3754 [RES_ELSE ] = "ELSE" ,
3755 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003756#endif
3757#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003758 [RES_FOR ] = "FOR" ,
3759 [RES_WHILE] = "WHILE",
3760 [RES_UNTIL] = "UNTIL",
3761 [RES_DO ] = "DO" ,
3762 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003763#endif
3764#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003765 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003766#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003767#if ENABLE_HUSH_CASE
3768 [RES_CASE ] = "CASE" ,
3769 [RES_MATCH] = "MATCH",
3770 [RES_CASEI] = "CASEI",
3771 [RES_ESAC ] = "ESAC" ,
3772#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003773 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003774 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003775 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003776 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003777 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003778 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003779#if ENABLE_HUSH_FUNCTIONS
3780 "func()",
3781#endif
3782 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003783
3784 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003785
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003786 pin = 0;
3787 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003788 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3789 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003790 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003791 while (prn < pi->num_cmds) {
3792 struct command *command = &pi->cmds[prn];
3793 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003794
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003795 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003796 lvl*2, "", prn,
3797 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003798 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003799 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003800 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003801 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003802 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003803 prn++;
3804 continue;
3805 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003806 if (argv) while (*argv) {
3807 fprintf(stderr, " '%s'", *argv);
3808 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003809 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003810 fprintf(stderr, "\n");
3811 prn++;
3812 }
3813 pi = pi->next;
3814 pin++;
3815 }
3816}
3817#endif
3818
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003819/* NB: called by pseudo_exec, and therefore must not modify any
3820 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003821static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003822{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003823#if ENABLE_HUSH_CASE
3824 char *case_word = NULL;
3825#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003826#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003827 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003828 char *for_varname = NULL;
3829 char **for_lcur = NULL;
3830 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003831#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003832 smallint last_followup;
3833 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003834#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003835 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003836#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003837 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003838#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003839#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003840 smallint rword; /* enum reserved_style */
3841 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003842#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003843
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003844 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003845 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003846
Denis Vlasenko06810332007-05-21 23:30:54 +00003847#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003848 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003849 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3850 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003851 continue;
3852 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003853 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003854 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003855 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003856 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003857 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003858 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003859 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003860 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003861 continue;
3862 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003863 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3864 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003865 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003866 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003867 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003868 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003869 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003870 }
3871 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003872#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003873
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003874 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003875 * in order to return, no direct "return" statements please.
3876 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003877
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003878#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003879 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003880#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003881
Denis Vlasenko0e151382009-04-06 18:40:31 +00003882#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003883 rword = RES_NONE;
3884 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003885#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003886 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003887 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003888
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003889 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003890 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003891 if (G.flag_SIGINT)
3892 break;
3893
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003894 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003895 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3896 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003897#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003898 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003899 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003900 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003901 /* start of a loop: remember where loop starts */
3902 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003903 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003904 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003905#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003906 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003907 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003908 if ((rcode == 0 && last_followup == PIPE_OR)
3909 || (rcode != 0 && last_followup == PIPE_AND)
3910 ) {
3911 /* It is "<true> || CMD" or "<false> && CMD"
3912 * and we should not execute CMD */
3913 debug_printf_exec("skipped cmd because of || or &&\n");
3914 last_followup = pi->followup;
3915 continue;
3916 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003917 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003918 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003919 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003920#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003921 if (cond_code) {
3922 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003923 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003924 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003925 /* "if <false> THEN cmd": skip cmd */
3926 continue;
3927 }
3928 } else {
3929 if (rword == RES_ELSE || rword == RES_ELIF) {
3930 /* "if <true> then ... ELSE/ELIF cmd":
3931 * skip cmd and all following ones */
3932 break;
3933 }
3934 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003935#endif
3936#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003937 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003938 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003939 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003940
3941 static const char encoded_dollar_at[] ALIGN1 = {
3942 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3943 }; /* encoded representation of "$@" */
3944 static const char *const encoded_dollar_at_argv[] = {
3945 encoded_dollar_at, NULL
3946 }; /* argv list with one element: "$@" */
3947 char **vals;
3948
3949 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003950 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003951 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003952 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003953 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003954 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003955 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003956 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003957 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003958 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003959 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003960 debug_print_strings("for_list made from", vals);
3961 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003962 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003963 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003964 for_varname = pi->cmds[0].argv[0];
3965 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003966 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003967 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003968 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003969 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003970 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003971 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003972 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003973 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003974 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003975 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003976 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003977 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003978 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3979 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003980 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003981 if (rword == RES_IN) {
3982 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3983 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003984 if (rword == RES_DONE) {
3985 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003986 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003987#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003988#if ENABLE_HUSH_CASE
3989 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003990 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003991 continue;
3992 }
3993 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003994 char **argv;
3995
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003996 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3997 break;
3998 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003999 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00004000 while (*argv) {
4001 char *pattern = expand_string_to_string(*argv);
4002 /* TODO: which FNM_xxx flags to use? */
4003 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4004 free(pattern);
4005 if (cond_code == 0) { /* match! we will execute this branch */
4006 free(case_word); /* make future "word)" stop */
4007 case_word = NULL;
4008 break;
4009 }
4010 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004011 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004012 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004013 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004014 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004015 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004016 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004017 }
4018#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00004019 /* Just pressing <enter> in shell should check for jobs.
4020 * OTOH, in non-interactive shell this is useless
4021 * and only leads to extra job checks */
4022 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004023 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004024 goto check_jobs_and_continue;
4025 continue;
4026 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004027
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004028 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00004029 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004030 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004031 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004032 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004033 {
4034 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004035#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00004036 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004037#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004038 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4039 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004040 /* We ran a builtin, function, or group.
4041 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004042 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004043 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004044 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004045 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004046#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004047 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004048 if (G.flag_break_continue) {
4049 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004050 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004051 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004052 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004053 G.depth_break_continue--;
4054 if (G.depth_break_continue == 0)
4055 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004056 /* else: e.g. "continue 2" should *break* once, *then* continue */
4057 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004058 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004059 goto check_jobs_and_break;
4060 /* "continue": simulate end of loop */
4061 rword = RES_DONE;
4062 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004063 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004064#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004065#if ENABLE_HUSH_FUNCTIONS
4066 if (G.flag_return_in_progress == 1)
4067 goto check_jobs_and_break;
4068#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004069 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004070 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004071 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004072 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4073 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004074 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004075#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004076 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004077 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004078#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004079 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004080 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004081 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004082#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004083 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004084 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004085 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004086 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004087 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004088 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004089#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004090 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004091 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004092 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004093 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004094 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004095 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004096 }
4097 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004098
4099 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004100#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004101 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004102 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004103#endif
4104#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004105 /* Beware of "while false; true; do ..."! */
4106 if (pi->next && pi->next->res_word == RES_DO) {
4107 if (rword == RES_WHILE) {
4108 if (rcode) {
4109 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004110 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004111 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4112 goto check_jobs_and_break;
4113 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004114 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004115 if (rword == RES_UNTIL) {
4116 if (!rcode) {
4117 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004118 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004119 checkjobs(NULL);
4120 break;
4121 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004122 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004123 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004124#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004125
4126 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004127 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004128 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004129
4130#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004131 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004132#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004133#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004134 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004135 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004136 free(for_list);
4137#endif
4138#if ENABLE_HUSH_CASE
4139 free(case_word);
4140#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004141 debug_leave();
4142 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004143 return rcode;
4144}
4145
Eric Andersen25f27032001-04-26 23:22:31 +00004146/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004147static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004148{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004149 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004150 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004151 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004152 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004153 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004154 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004155 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004156 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004157 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004158 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004159 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004160 return rcode;
4161}
4162
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004163
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004164static struct pipe *new_pipe(void)
4165{
Eric Andersen25f27032001-04-26 23:22:31 +00004166 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004167 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004168 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004169 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004170 return pi;
4171}
4172
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004173/* Command (member of a pipe) is complete, or we start a new pipe
4174 * if ctx->command is NULL.
4175 * No errors possible here.
4176 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004177static int done_command(struct parse_context *ctx)
4178{
4179 /* The command is really already in the pipe structure, so
4180 * advance the pipe counter and make a new, null command. */
4181 struct pipe *pi = ctx->pipe;
4182 struct command *command = ctx->command;
4183
4184 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004185 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004186 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004187 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004188 }
4189 pi->num_cmds++;
4190 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004191 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004192 } else {
4193 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4194 }
4195
4196 /* Only real trickiness here is that the uncommitted
4197 * command structure is not counted in pi->num_cmds. */
4198 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004199 ctx->command = command = &pi->cmds[pi->num_cmds];
4200 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004201 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004202 return pi->num_cmds; /* used only for 0/nonzero check */
4203}
4204
4205static void done_pipe(struct parse_context *ctx, pipe_style type)
4206{
4207 int not_null;
4208
4209 debug_printf_parse("done_pipe entered, followup %d\n", type);
4210 /* Close previous command */
4211 not_null = done_command(ctx);
4212 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004213#if HAS_KEYWORDS
4214 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4215 ctx->ctx_inverted = 0;
4216 ctx->pipe->res_word = ctx->ctx_res_w;
4217#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004218
4219 /* Without this check, even just <enter> on command line generates
4220 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004221 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004222 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004223#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004224 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004225#endif
4226#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004227 || ctx->ctx_res_w == RES_DONE
4228 || ctx->ctx_res_w == RES_FOR
4229 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004230#endif
4231#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004232 || ctx->ctx_res_w == RES_ESAC
4233#endif
4234 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004235 struct pipe *new_p;
4236 debug_printf_parse("done_pipe: adding new pipe: "
4237 "not_null:%d ctx->ctx_res_w:%d\n",
4238 not_null, ctx->ctx_res_w);
4239 new_p = new_pipe();
4240 ctx->pipe->next = new_p;
4241 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004242 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004243 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004244 * This is used to control execution.
4245 * RES_FOR and RES_IN are NOT sticky (needed to support
4246 * cases where variable or value happens to match a keyword):
4247 */
4248#if ENABLE_HUSH_LOOPS
4249 if (ctx->ctx_res_w == RES_FOR
4250 || ctx->ctx_res_w == RES_IN)
4251 ctx->ctx_res_w = RES_NONE;
4252#endif
4253#if ENABLE_HUSH_CASE
4254 if (ctx->ctx_res_w == RES_MATCH)
4255 ctx->ctx_res_w = RES_CASEI;
4256#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004257 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004258 /* Create the memory for command, roughly:
4259 * ctx->pipe->cmds = new struct command;
4260 * ctx->command = &ctx->pipe->cmds[0];
4261 */
4262 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004263 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004264 }
4265 debug_printf_parse("done_pipe return\n");
4266}
4267
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004268static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004269{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004270 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004271 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004272 /* Create the memory for command, roughly:
4273 * ctx->pipe->cmds = new struct command;
4274 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004275 */
4276 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004277}
4278
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004279/* If a reserved word is found and processed, parse context is modified
4280 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004281 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004282#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004283struct reserved_combo {
4284 char literal[6];
4285 unsigned char res;
4286 unsigned char assignment_flag;
4287 int flag;
4288};
4289enum {
4290 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004291#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004292 FLAG_IF = (1 << RES_IF ),
4293 FLAG_THEN = (1 << RES_THEN ),
4294 FLAG_ELIF = (1 << RES_ELIF ),
4295 FLAG_ELSE = (1 << RES_ELSE ),
4296 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004297#endif
4298#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004299 FLAG_FOR = (1 << RES_FOR ),
4300 FLAG_WHILE = (1 << RES_WHILE),
4301 FLAG_UNTIL = (1 << RES_UNTIL),
4302 FLAG_DO = (1 << RES_DO ),
4303 FLAG_DONE = (1 << RES_DONE ),
4304 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004305#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004306#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004307 FLAG_MATCH = (1 << RES_MATCH),
4308 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004309#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004310 FLAG_START = (1 << RES_XXXX ),
4311};
4312
4313static const struct reserved_combo* match_reserved_word(o_string *word)
4314{
Eric Andersen25f27032001-04-26 23:22:31 +00004315 /* Mostly a list of accepted follow-up reserved words.
4316 * FLAG_END means we are done with the sequence, and are ready
4317 * to turn the compound list into a command.
4318 * FLAG_START means the word must start a new compound list.
4319 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004320 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004321#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004322 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4323 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4324 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4325 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4326 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4327 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004328#endif
4329#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004330 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4331 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4332 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4333 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4334 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4335 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004336#endif
4337#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004338 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4339 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004340#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004341 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004342 const struct reserved_combo *r;
4343
4344 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4345 if (strcmp(word->data, r->literal) == 0)
4346 return r;
4347 }
4348 return NULL;
4349}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004350/* Return 0: not a keyword, 1: keyword
4351 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004352static int reserved_word(o_string *word, struct parse_context *ctx)
4353{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004354#if ENABLE_HUSH_CASE
4355 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004356 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004357 };
4358#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004359 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004360
Denis Vlasenkobb929512009-04-16 10:59:40 +00004361 if (word->o_quoted)
4362 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004363 r = match_reserved_word(word);
4364 if (!r)
4365 return 0;
4366
4367 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004368#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004369 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4370 /* "case word IN ..." - IN part starts first match part */
4371 r = &reserved_match;
4372 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004373#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004374 if (r->flag == 0) { /* '!' */
4375 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004376 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004377 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004378 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004379 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004380 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004381 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004382 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004383 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004384
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004385 old = xmalloc(sizeof(*old));
4386 debug_printf_parse("push stack %p\n", old);
4387 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004388 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004389 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004390 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004391 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004392 ctx->ctx_res_w = RES_SNTX;
4393 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004394 } else {
4395 /* "{...} fi" is ok. "{...} if" is not
4396 * Example:
4397 * if { echo foo; } then { echo bar; } fi */
4398 if (ctx->command->group)
4399 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004400 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004401
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004402 ctx->ctx_res_w = r->res;
4403 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004404 word->o_assignment = r->assignment_flag;
4405
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004406 if (ctx->old_flag & FLAG_END) {
4407 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004408
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004409 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004410 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004411 old = ctx->stack;
4412 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004413 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004414#if !BB_MMU
4415 o_addstr(&old->as_string, ctx->as_string.data);
4416 o_free_unsafe(&ctx->as_string);
4417 old->command->group_as_string = xstrdup(old->as_string.data);
4418 debug_printf_parse("pop, remembering as:'%s'\n",
4419 old->command->group_as_string);
4420#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004421 *ctx = *old; /* physical copy */
4422 free(old);
4423 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004424 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004425}
Denis Vlasenko06810332007-05-21 23:30:54 +00004426#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004427
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004428/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004429 * Normal return is 0. Syntax errors return 1.
4430 * Note: on return, word is reset, but not o_free'd!
4431 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004432static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004433{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004434 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004435
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004436 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004437 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004438 debug_printf_parse("done_word return 0: true null, ignored\n");
4439 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004440 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004441
Eric Andersen25f27032001-04-26 23:22:31 +00004442 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004443 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4444 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004445 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4446 * "2.7 Redirection
4447 * ...the word that follows the redirection operator
4448 * shall be subjected to tilde expansion, parameter expansion,
4449 * command substitution, arithmetic expansion, and quote
4450 * removal. Pathname expansion shall not be performed
4451 * on the word by a non-interactive shell; an interactive
4452 * shell may perform it, but shall do so only when
4453 * the expansion would result in one word."
4454 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004455 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004456 /* Cater for >\file case:
4457 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4458 * Same with heredocs:
4459 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4460 */
4461 unbackslash(ctx->pending_redirect->rd_filename);
4462 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004463 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4464 && word->o_quoted
4465 ) {
4466 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4467 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004468 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004469 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004470 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004471 /* If this word wasn't an assignment, next ones definitely
4472 * can't be assignments. Even if they look like ones. */
4473 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4474 && word->o_assignment != WORD_IS_KEYWORD
4475 ) {
4476 word->o_assignment = NOT_ASSIGNMENT;
4477 } else {
4478 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4479 command->assignment_cnt++;
4480 word->o_assignment = MAYBE_ASSIGNMENT;
4481 }
4482
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004483#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004484# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004485 if (ctx->ctx_dsemicolon
4486 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4487 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004488 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004489 /* ctx->ctx_res_w = RES_MATCH; */
4490 ctx->ctx_dsemicolon = 0;
4491 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004492# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004493 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004494# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004495 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4496 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004497# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004498 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004499 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004500 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004501 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004502 debug_printf_parse("done_word return %d\n",
4503 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004504 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004505 }
Eric Andersen25f27032001-04-26 23:22:31 +00004506 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004507#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004508 if (command->group) {
4509 /* "{ echo foo; } echo bar" - bad */
4510 syntax_error_at(word->data);
4511 debug_printf_parse("done_word return 1: syntax error, "
4512 "groups and arglists don't mix\n");
4513 return 1;
4514 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004515 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004516 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4517 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004518 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004519 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004520 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004521 char *p = word->data;
4522 while (p[0] == SPECIAL_VAR_SYMBOL
4523 && (p[1] & 0x7f) == '@'
4524 && p[2] == SPECIAL_VAR_SYMBOL
4525 ) {
4526 p += 3;
4527 }
4528 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004529 /* saw no "$@", or not only "$@" but some
4530 * real text is there too */
4531 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004532 * e.g. "", $empty"" etc to not disappear */
4533 o_addchr(word, SPECIAL_VAR_SYMBOL);
4534 o_addchr(word, SPECIAL_VAR_SYMBOL);
4535 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004536 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004537 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004538 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004539 }
Eric Andersen25f27032001-04-26 23:22:31 +00004540
Denis Vlasenko06810332007-05-21 23:30:54 +00004541#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004542 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004543 if (word->o_quoted
4544 || !is_well_formed_var_name(command->argv[0], '\0')
4545 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004546 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004547 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004548 return 1;
4549 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004550 /* Force FOR to have just one word (variable name) */
4551 /* NB: basically, this makes hush see "for v in ..."
4552 * syntax as if it is "for v; in ...". FOR and IN become
4553 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004554 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004555 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004556#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004557#if ENABLE_HUSH_CASE
4558 /* Force CASE to have just one word */
4559 if (ctx->ctx_res_w == RES_CASE) {
4560 done_pipe(ctx, PIPE_SEQ);
4561 }
4562#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004563
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004564 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004565
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004566 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004567 return 0;
4568}
4569
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004570
4571/* Peek ahead in the input to find out if we have a "&n" construct,
4572 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004573 * Return:
4574 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4575 * REDIRFD_SYNTAX_ERR if syntax error,
4576 * REDIRFD_TO_FILE if no & was seen,
4577 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004578 */
4579#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004580#define parse_redir_right_fd(as_string, input) \
4581 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004582#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004583static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004584{
4585 int ch, d, ok;
4586
4587 ch = i_peek(input);
4588 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004589 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004590
4591 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004592 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004593 ch = i_peek(input);
4594 if (ch == '-') {
4595 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004596 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004597 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004598 }
4599 d = 0;
4600 ok = 0;
4601 while (ch != EOF && isdigit(ch)) {
4602 d = d*10 + (ch-'0');
4603 ok = 1;
4604 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004605 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004606 ch = i_peek(input);
4607 }
4608 if (ok) return d;
4609
4610//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4611
4612 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004613 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004614}
4615
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004616/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004617 */
4618static int parse_redirect(struct parse_context *ctx,
4619 int fd,
4620 redir_type style,
4621 struct in_str *input)
4622{
4623 struct command *command = ctx->command;
4624 struct redir_struct *redir;
4625 struct redir_struct **redirp;
4626 int dup_num;
4627
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004628 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004629 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004630 /* Check for a '>&1' type redirect */
4631 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4632 if (dup_num == REDIRFD_SYNTAX_ERR)
4633 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004634 } else {
4635 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004636 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004637 if (dup_num) { /* <<-... */
4638 ch = i_getch(input);
4639 nommu_addchr(&ctx->as_string, ch);
4640 ch = i_peek(input);
4641 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004642 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004643
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004644 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004645 int ch = i_peek(input);
4646 if (ch == '|') {
4647 /* >|FILE redirect ("clobbering" >).
4648 * Since we do not support "set -o noclobber" yet,
4649 * >| and > are the same for now. Just eat |.
4650 */
4651 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004652 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004653 }
4654 }
4655
4656 /* Create a new redir_struct and append it to the linked list */
4657 redirp = &command->redirects;
4658 while ((redir = *redirp) != NULL) {
4659 redirp = &(redir->next);
4660 }
4661 *redirp = redir = xzalloc(sizeof(*redir));
4662 /* redir->next = NULL; */
4663 /* redir->rd_filename = NULL; */
4664 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004665 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004666
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004667 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4668 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004669
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004670 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004671 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004672 /* Erik had a check here that the file descriptor in question
4673 * is legit; I postpone that to "run time"
4674 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004675 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4676 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004677 } else {
4678 /* Set ctx->pending_redirect, so we know what to do at the
4679 * end of the next parsed word. */
4680 ctx->pending_redirect = redir;
4681 }
4682 return 0;
4683}
4684
Eric Andersen25f27032001-04-26 23:22:31 +00004685/* If a redirect is immediately preceded by a number, that number is
4686 * supposed to tell which file descriptor to redirect. This routine
4687 * looks for such preceding numbers. In an ideal world this routine
4688 * needs to handle all the following classes of redirects...
4689 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4690 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4691 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4692 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004693 *
4694 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4695 * "2.7 Redirection
4696 * ... If n is quoted, the number shall not be recognized as part of
4697 * the redirection expression. For example:
4698 * echo \2>a
4699 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004700 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004701 *
4702 * A -1 return means no valid number was found,
4703 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004704 */
4705static int redirect_opt_num(o_string *o)
4706{
4707 int num;
4708
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004709 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004710 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004711 num = bb_strtou(o->data, NULL, 10);
4712 if (errno || num < 0)
4713 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004714 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004715 return num;
4716}
4717
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004718#if BB_MMU
4719#define fetch_till_str(as_string, input, word, skip_tabs) \
4720 fetch_till_str(input, word, skip_tabs)
4721#endif
4722static char *fetch_till_str(o_string *as_string,
4723 struct in_str *input,
4724 const char *word,
4725 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004726{
4727 o_string heredoc = NULL_O_STRING;
4728 int past_EOL = 0;
4729 int ch;
4730
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004731 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004732 while (1) {
4733 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004734 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004735 if (ch == '\n') {
4736 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4737 heredoc.data[past_EOL] = '\0';
4738 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4739 return heredoc.data;
4740 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004741 do {
4742 o_addchr(&heredoc, ch);
4743 past_EOL = heredoc.length;
4744 jump_in:
4745 do {
4746 ch = i_getch(input);
4747 nommu_addchr(as_string, ch);
4748 } while (skip_tabs && ch == '\t');
4749 } while (ch == '\n');
4750 }
4751 if (ch == EOF) {
4752 o_free_unsafe(&heredoc);
4753 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004754 }
4755 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004756 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004757 }
4758}
4759
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004760/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4761 * and load them all. There should be exactly heredoc_cnt of them.
4762 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004763static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4764{
4765 struct pipe *pi = ctx->list_head;
4766
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004767 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004768 int i;
4769 struct command *cmd = pi->cmds;
4770
4771 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4772 pi->num_cmds,
4773 cmd->argv ? cmd->argv[0] : "NONE");
4774 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004775 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004776
4777 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4778 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004779 while (redir) {
4780 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004781 char *p;
4782
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004783 redir->rd_type = REDIRECT_HEREDOC2;
4784 /* redir->dup is (ab)used to indicate <<- */
4785 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004786 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004787 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004788 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004789 return 1;
4790 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004791 free(redir->rd_filename);
4792 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004793 heredoc_cnt--;
4794 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004795 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004796 }
4797 cmd++;
4798 }
4799 pi = pi->next;
4800 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004801#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004802 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004803 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004804 bb_error_msg_and_die("heredoc BUG 2");
4805#endif
4806 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004807}
4808
4809
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004810#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004811static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004812{
4813 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004814 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004815#if !BB_MMU
4816 char **to_free;
4817#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004818
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004819 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004820 pid = BB_MMU ? fork() : vfork();
4821 if (pid < 0)
4822 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004823
Denis Vlasenko05743d72008-02-10 12:10:08 +00004824 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004825 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004826 /* Process substitution is not considered to be usual
4827 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004828 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4829 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004830 bb_signals(0
4831 + (1 << SIGTSTP)
4832 + (1 << SIGTTIN)
4833 + (1 << SIGTTOU)
4834 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004835 close(channel[0]); /* NB: close _first_, then move fd! */
4836 xmove_fd(channel[1], 1);
4837 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004838 IF_HUSH_JOB(G.run_list_level = 1;)
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004839#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004840 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004841 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004842 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004843#else
4844 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004845 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4846 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004847 * echo OK
4848 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004849 re_execute_shell(&to_free,
4850 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004851 G.global_argv[0],
4852 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004853#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004854 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004855
4856 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004857 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004858#if !BB_MMU
4859 free(to_free);
4860#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004861 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004862 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004863 return pf;
4864}
4865
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004866/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004867static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004868{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004869 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004870 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004871 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004872
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004873 pf = generate_stream_from_string(s);
4874 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004875 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004876 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004877
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004878 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004879 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004880 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004881 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004882 if (ch == '\n') {
4883 eol_cnt++;
4884 continue;
4885 }
4886 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004887 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004888 eol_cnt--;
4889 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004890 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004891 }
4892
4893 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004894 /* Note: we got EOF, and we just close the read end of the pipe.
4895 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004896 * Try these:
4897 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4898 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004899 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004900 fclose(pf);
4901 debug_printf("closed FILE from child. return 0\n");
4902 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004903}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004904#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004905
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004906static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004907 struct in_str *input, int ch)
4908{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004909 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004910 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004911 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004912 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004913 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004914 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004915
4916 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004917#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004918 if (ch == '(' && !dest->o_quoted) {
4919 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004920 if (done_word(dest, ctx))
4921 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004922 if (!command->argv)
4923 goto skip; /* (... */
4924 if (command->argv[1]) { /* word word ... (... */
4925 syntax_error_unexpected_ch('(');
4926 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004927 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004928 /* it is "word(..." or "word (..." */
4929 do
4930 ch = i_getch(input);
4931 while (ch == ' ' || ch == '\t');
4932 if (ch != ')') {
4933 syntax_error_unexpected_ch(ch);
4934 return 1;
4935 }
4936 nommu_addchr(&ctx->as_string, ch);
4937 do
4938 ch = i_getch(input);
4939 while (ch == ' ' || ch == '\t' || ch == '\n');
4940 if (ch != '{') {
4941 syntax_error_unexpected_ch(ch);
4942 return 1;
4943 }
4944 nommu_addchr(&ctx->as_string, ch);
4945 command->grp_type = GRP_FUNCTION;
4946 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004947 }
4948#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004949 if (command->argv /* word [word]{... */
4950 || dest->length /* word{... */
4951 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004952 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004953 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004954 debug_printf_parse("parse_group return 1: "
4955 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004956 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004957 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004958
4959#if ENABLE_HUSH_FUNCTIONS
4960 skip:
4961#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004962 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004963 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004964 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004965 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004966 } else {
4967 /* bash does not allow "{echo...", requires whitespace */
4968 ch = i_getch(input);
4969 if (ch != ' ' && ch != '\t' && ch != '\n') {
4970 syntax_error_unexpected_ch(ch);
4971 return 1;
4972 }
4973 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004974 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004975
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004976 {
4977#if !BB_MMU
4978 char *as_string = NULL;
4979#endif
4980 pipe_list = parse_stream(&as_string, input, endch);
4981#if !BB_MMU
4982 if (as_string)
4983 o_addstr(&ctx->as_string, as_string);
4984#endif
4985 /* empty ()/{} or parse error? */
4986 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004987 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004988#if !BB_MMU
4989 free(as_string);
4990#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004991 debug_printf_parse("parse_group return 1: "
4992 "parse_stream returned %p\n", pipe_list);
4993 return 1;
4994 }
4995 command->group = pipe_list;
4996#if !BB_MMU
4997 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4998 command->group_as_string = as_string;
4999 debug_printf_parse("end of group, remembering as:'%s'\n",
5000 command->group_as_string);
5001#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005002 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005003 debug_printf_parse("parse_group return 0\n");
5004 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005005 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00005006}
5007
Mike Frysinger98c52642009-04-02 10:02:37 +00005008#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005009/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005010static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005011/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005012static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005013{
5014 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005015 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005016 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005017 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005018 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005019 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005020 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005021 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005022 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005023 }
5024}
5025/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005026static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005027{
5028 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005029 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005030 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005031 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005032 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005033 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005034 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005035 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005036 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005037 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005038 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005039 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005040 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005041 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005042 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005043 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005044 continue;
5045 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00005046 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005047 }
5048}
5049/* Process `cmd` - copy contents until "`" is seen. Complicated by
5050 * \` quoting.
5051 * "Within the backquoted style of command substitution, backslash
5052 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5053 * The search for the matching backquote shall be satisfied by the first
5054 * backquote found without a preceding backslash; during this search,
5055 * if a non-escaped backquote is encountered within a shell comment,
5056 * a here-document, an embedded command substitution of the $(command)
5057 * form, or a quoted string, undefined results occur. A single-quoted
5058 * or double-quoted string that begins, but does not end, within the
5059 * "`...`" sequence produces undefined results."
5060 * Example Output
5061 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5062 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005063static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005064{
5065 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005066 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005067 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005068 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005069 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005070 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005071 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005072 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005073 if (ch == '\\') {
5074 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005075 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005076 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005077 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005078 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005079 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005080 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005081 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005082 ch = ch2;
5083 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005084 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005085 }
5086}
5087/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5088 * quoting and nested ()s.
5089 * "With the $(command) style of command substitution, all characters
5090 * following the open parenthesis to the matching closing parenthesis
5091 * constitute the command. Any valid shell script can be used for command,
5092 * except a script consisting solely of redirections which produces
5093 * unspecified results."
5094 * Example Output
5095 * echo $(echo '(TEST)' BEST) (TEST) BEST
5096 * echo $(echo 'TEST)' BEST) TEST) BEST
5097 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5098 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005099static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005100{
5101 int count = 0;
5102 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005103 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005104 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005105 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005106 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005107 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005108 if (ch == '(')
5109 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005110 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005111 if (--count < 0) {
5112 if (!dbl)
5113 break;
5114 if (i_peek(input) == ')') {
5115 i_getch(input);
5116 break;
5117 }
5118 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005119 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005120 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005121 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005122 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005123 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005124 continue;
5125 }
5126 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005127 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005128 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005129 continue;
5130 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005131 if (ch == '\\') {
5132 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005133 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005134 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005135 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005136 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005137 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005138 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005139 continue;
5140 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005141 }
5142}
Mike Frysinger98c52642009-04-02 10:02:37 +00005143#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005144
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005145/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005146#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005147#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005148 handle_dollar(dest, input)
5149#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005150static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005151 o_string *dest,
5152 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005153{
Mike Frysinger6379bb42009-03-28 18:55:03 +00005154 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005155 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005156 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005157
5158 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005159 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005160 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005161 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005162 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005163 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005164 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005165 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005166 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005167 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005168 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005169 if (!isalnum(ch) && ch != '_')
5170 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005171 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005172 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005173 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005174 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005175 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005176 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005177 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005178 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005179 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005180 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005181 o_addchr(dest, ch | quote_mask);
5182 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005183 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005184 case '$': /* pid */
5185 case '!': /* last bg pid */
5186 case '?': /* last exit code */
5187 case '#': /* number of args */
5188 case '*': /* args */
5189 case '@': /* args */
5190 goto make_one_char_var;
5191 case '{': {
5192 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005193
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005194 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005195 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005196 nommu_addchr(as_string, ch);
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005197 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005198 expansion = 0;
5199 first_char = true;
5200 all_digits = false;
5201 while (1) {
5202 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005203 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005204 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005205 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005206 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005207
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005208 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005209 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005210 /* ${#var}: length of var contents */
5211 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005212 }
5213 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005214 all_digits = true;
5215 goto char_ok;
5216 }
5217 }
5218
5219 if (expansion < 2
5220 && ( (all_digits && !isdigit(ch))
5221 || (!all_digits && !isalnum(ch) && ch != '_')
5222 )
5223 ) {
5224 /* handle parameter expansions
5225 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5226 */
5227 if (first_char)
5228 goto case_default;
5229 switch (ch) {
5230 case ':': /* null modifier */
5231 if (expansion == 0) {
5232 debug_printf_parse(": null modifier\n");
5233 ++expansion;
5234 break;
5235 }
5236 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005237 case '#': /* remove prefix */
5238 case '%': /* remove suffix */
5239 if (expansion == 0) {
5240 debug_printf_parse(": remove suffix/prefix\n");
5241 expansion = 2;
5242 break;
5243 }
5244 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005245 case '-': /* default value */
5246 case '=': /* assign default */
5247 case '+': /* alternative */
5248 case '?': /* error indicate */
5249 debug_printf_parse(": parameter expansion\n");
5250 expansion = 2;
5251 break;
5252 default:
5253 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005254 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005255 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5256 return 1;
5257 }
5258 }
5259 char_ok:
5260 debug_printf_parse(": '%c'\n", ch);
5261 o_addchr(dest, ch | quote_mask);
5262 quote_mask = 0;
5263 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005264 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005265 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5266 break;
5267 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005268#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005269 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005270# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005271 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005272# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005273 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005274 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005275# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005276 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005277 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005278 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005279 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5280 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005281# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005282 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005283# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005284 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005285# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005286 if (as_string) {
5287 o_addstr(as_string, dest->data + pos);
5288 o_addchr(as_string, ')');
5289 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005290 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005291# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005292 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005293 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005294 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005295# endif
5296# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005297 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5298 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005299# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005300 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005301# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005302 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005303# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005304 if (as_string) {
5305 o_addstr(as_string, dest->data + pos);
5306 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005307 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005308# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005309 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005310# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005311 break;
5312 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005313#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005314 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005315 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005316 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005317 ch = i_peek(input);
5318 if (isalnum(ch)) { /* it's $_name or $_123 */
5319 ch = '_';
5320 goto make_var;
5321 }
5322 /* else: it's $_ */
5323 /* TODO: */
5324 /* $_ Shell or shell script name; or last cmd name */
5325 /* $- Option flags set by set builtin or shell options (-i etc) */
5326 default:
5327 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005328 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005329 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005330 return 0;
5331}
5332
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005333#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005334#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005335 parse_stream_dquoted(dest, input, dquote_end)
5336#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005337static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005338 o_string *dest,
5339 struct in_str *input,
5340 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005341{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005342 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005343 int next;
5344
5345 again:
5346 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005347 if (ch != EOF)
5348 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005349 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005350 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005351 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005352 debug_printf_parse("parse_stream_dquoted return 0\n");
5353 return 0;
5354 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005355 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005356 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005357 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005358 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005359 }
5360 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005361 if (ch != '\n') {
5362 next = i_peek(input);
5363 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005364 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5365 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005366 if (ch == '\\') {
5367 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005368 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005369 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005370 }
5371 /* bash:
5372 * "The backslash retains its special meaning [in "..."]
5373 * only when followed by one of the following characters:
5374 * $, `, ", \, or <newline>. A double quote may be quoted
5375 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005376 */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005377 if (strchr("$`\"\\\n", next) != NULL) {
Denis Vlasenko57293002009-04-26 20:06:14 +00005378 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005379 if (ch != '\n') {
5380 o_addqchr(dest, ch);
5381 nommu_addchr(as_string, ch);
5382 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005383 } else {
5384 o_addqchr(dest, '\\');
Denis Vlasenko57293002009-04-26 20:06:14 +00005385 nommu_addchr(as_string, '\\');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005386 }
5387 goto again;
5388 }
5389 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005390 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005391 debug_printf_parse("parse_stream_dquoted return 1: "
5392 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005393 return 1;
5394 }
5395 goto again;
5396 }
5397#if ENABLE_HUSH_TICK
5398 if (ch == '`') {
5399 //int pos = dest->length;
5400 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5401 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005402 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005403 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5404 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005405 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005406 }
5407#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005408 o_addQchr(dest, ch);
5409 if (ch == '='
5410 && (dest->o_assignment == MAYBE_ASSIGNMENT
5411 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005412 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005413 ) {
5414 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5415 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005416 goto again;
5417}
5418
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005419/*
5420 * Scan input until EOF or end_trigger char.
5421 * Return a list of pipes to execute, or NULL on EOF
5422 * or if end_trigger character is met.
5423 * On syntax error, exit is shell is not interactive,
5424 * reset parsing machinery and start parsing anew,
5425 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005426 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005427static struct pipe *parse_stream(char **pstring,
5428 struct in_str *input,
5429 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005430{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005431 struct parse_context ctx;
5432 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005433 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005434 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005435
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005436 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005437 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005438 * found. When recursing, quote state is passed in via dest->o_escape.
5439 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005440 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5441 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005442 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005443
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005444 G.ifs = get_local_var_value("IFS");
5445 if (G.ifs == NULL)
5446 G.ifs = " \t\n";
5447
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005448 reset:
5449#if ENABLE_HUSH_INTERACTIVE
5450 input->promptmode = 0; /* PS1 */
5451#endif
5452 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5453 initialize_context(&ctx);
5454 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005455 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005456 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005457 const char *is_ifs;
5458 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005459 int ch;
5460 int next;
5461 int redir_fd;
5462 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005463
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005464 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005465 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005466 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005467 goto parse_error;
5468 }
5469 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005470 is_in_dquote = 0;
5471 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005472 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005473 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5474 ch, ch, dest.o_escape);
5475 if (ch == EOF) {
5476 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005477
5478 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005479 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005480 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005481 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005482 /* end_trigger == '}' case errors out earlier,
5483 * checking only ')' */
5484 if (end_trigger == ')') {
5485 syntax_error_unterm_ch('('); /* exits */
5486 /* goto parse_error; */
5487 }
5488
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005489 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005490 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005491 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005492 o_free(&dest);
5493 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005494 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005495 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005496 /* (this makes bare "&" cmd a no-op.
5497 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005498 if (pi->num_cmds == 0
5499 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5500 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005501 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005502 pi = NULL;
5503 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005504#if !BB_MMU
5505 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5506 if (pstring)
5507 *pstring = ctx.as_string.data;
5508 else
5509 o_free_unsafe(&ctx.as_string);
5510#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005511 debug_leave();
5512 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005513 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005514 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005515 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005516 is_ifs = strchr(G.ifs, ch);
5517 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005518 "\\$\"" IF_HUSH_TICK("`") /* always special */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005519 , ch);
5520
5521 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005522 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005523 o_addQchr(&dest, ch);
5524 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5525 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005526 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005527 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005528 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005529 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005530 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005531 continue;
5532 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005533
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005534 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005535 if (done_word(&dest, &ctx)) {
5536 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005537 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005538 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005539#if ENABLE_HUSH_CASE
5540 /* "case ... in <newline> word) ..." -
5541 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005542 if (ctx.command->argv == NULL
5543 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005544 ) {
5545 continue;
5546 }
5547#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005548 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005549 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005550 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5551 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005552 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005553 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005554 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005555 heredoc_cnt = 0;
5556 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005557 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005558 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005559 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005560 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005561 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005562 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005563
5564 /* "cmd}" or "cmd }..." without semicolon or &:
5565 * } is an ordinary char in this case, even inside { cmd; }
5566 * Pathological example: { ""}; } should exec "}" cmd
5567 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005568 if (ch == '}') {
5569 if (!IS_NULL_CMD(ctx.command) /* cmd } */
5570 || dest.length != 0 /* word} */
5571 || dest.o_quoted /* ""} */
5572 ) {
5573 goto ordinary_char;
5574 }
5575 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
5576 goto skip_end_trigger;
5577 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005578 }
5579
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005580 if (end_trigger && end_trigger == ch
5581 && (heredoc_cnt == 0 || end_trigger != ';')
5582 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005583 if (heredoc_cnt) {
5584 /* This is technically valid:
5585 * { cat <<HERE; }; echo Ok
5586 * heredoc
5587 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005588 * HERE
5589 * but we don't support this.
5590 * We require heredoc to be in enclosing {}/(),
5591 * if any.
5592 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005593 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005594 goto parse_error;
5595 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005596 if (done_word(&dest, &ctx)) {
5597 goto parse_error;
5598 }
5599 done_pipe(&ctx, PIPE_SEQ);
5600 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005601 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005602 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005603 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005604 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005605 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005606#if !BB_MMU
5607 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5608 if (pstring)
5609 *pstring = ctx.as_string.data;
5610 else
5611 o_free_unsafe(&ctx.as_string);
5612#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005613 debug_leave();
5614 debug_printf_parse("parse_stream return %p: "
5615 "end_trigger char found\n",
5616 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005617 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005618 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005619 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005620 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005621 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005622 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005623
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005624 next = '\0';
5625 if (ch != '\n') {
5626 next = i_peek(input);
5627 }
5628
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005629 /* Catch <, > before deciding whether this word is
5630 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5631 switch (ch) {
5632 case '>':
5633 redir_fd = redirect_opt_num(&dest);
5634 if (done_word(&dest, &ctx)) {
5635 goto parse_error;
5636 }
5637 redir_style = REDIRECT_OVERWRITE;
5638 if (next == '>') {
5639 redir_style = REDIRECT_APPEND;
5640 ch = i_getch(input);
5641 nommu_addchr(&ctx.as_string, ch);
5642 }
5643#if 0
5644 else if (next == '(') {
5645 syntax_error(">(process) not supported");
5646 goto parse_error;
5647 }
5648#endif
5649 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5650 goto parse_error;
5651 continue; /* back to top of while (1) */
5652 case '<':
5653 redir_fd = redirect_opt_num(&dest);
5654 if (done_word(&dest, &ctx)) {
5655 goto parse_error;
5656 }
5657 redir_style = REDIRECT_INPUT;
5658 if (next == '<') {
5659 redir_style = REDIRECT_HEREDOC;
5660 heredoc_cnt++;
5661 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5662 ch = i_getch(input);
5663 nommu_addchr(&ctx.as_string, ch);
5664 } else if (next == '>') {
5665 redir_style = REDIRECT_IO;
5666 ch = i_getch(input);
5667 nommu_addchr(&ctx.as_string, ch);
5668 }
5669#if 0
5670 else if (next == '(') {
5671 syntax_error("<(process) not supported");
5672 goto parse_error;
5673 }
5674#endif
5675 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5676 goto parse_error;
5677 continue; /* back to top of while (1) */
5678 }
5679
5680 if (dest.o_assignment == MAYBE_ASSIGNMENT
5681 /* check that we are not in word in "a=1 2>word b=1": */
5682 && !ctx.pending_redirect
5683 ) {
5684 /* ch is a special char and thus this word
5685 * cannot be an assignment */
5686 dest.o_assignment = NOT_ASSIGNMENT;
5687 }
5688
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005689 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005690 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005691 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005692 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005693 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005694 if (ch == EOF || ch == '\n')
5695 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005696 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005697 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005698 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005699 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005700 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005701 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005702 }
5703 break;
5704 case '\\':
5705 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005706 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005707 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005708 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005709 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005710 if (ch != '\n') {
5711 o_addchr(&dest, '\\');
5712 nommu_addchr(&ctx.as_string, '\\');
5713 o_addchr(&dest, ch);
5714 nommu_addchr(&ctx.as_string, ch);
5715 /* Example: echo Hello \2>file
5716 * we need to know that word 2 is quoted */
5717 dest.o_quoted = 1;
5718 }
Eric Andersen25f27032001-04-26 23:22:31 +00005719 break;
5720 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005721 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005722 debug_printf_parse("parse_stream parse error: "
5723 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005724 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005725 }
Eric Andersen25f27032001-04-26 23:22:31 +00005726 break;
5727 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005728 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005729 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005730 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005731 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005732 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005733 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005734 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005735 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005736 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005737 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005738 if (dest.o_assignment == NOT_ASSIGNMENT)
5739 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005740 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005741 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005742 }
Eric Andersen25f27032001-04-26 23:22:31 +00005743 break;
5744 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005745 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005746 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005747 if (dest.o_assignment == NOT_ASSIGNMENT)
5748 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005749 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005750#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005751 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005752#if !BB_MMU
5753 int pos;
5754#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005755 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5756 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005757#if !BB_MMU
5758 pos = dest.length;
5759#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005760 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005761#if !BB_MMU
5762 o_addstr(&ctx.as_string, dest.data + pos);
5763 o_addchr(&ctx.as_string, '`');
5764#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005765 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5766 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005767 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005768 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005769#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005770 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005771#if ENABLE_HUSH_CASE
5772 case_semi:
5773#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005774 if (done_word(&dest, &ctx)) {
5775 goto parse_error;
5776 }
5777 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005778#if ENABLE_HUSH_CASE
5779 /* Eat multiple semicolons, detect
5780 * whether it means something special */
5781 while (1) {
5782 ch = i_peek(input);
5783 if (ch != ';')
5784 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005785 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005786 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005787 if (ctx.ctx_res_w == RES_CASEI) {
5788 ctx.ctx_dsemicolon = 1;
5789 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005790 break;
5791 }
5792 }
5793#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005794 new_cmd:
5795 /* We just finished a cmd. New one may start
5796 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005797 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005798 break;
5799 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005800 if (done_word(&dest, &ctx)) {
5801 goto parse_error;
5802 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005803 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005804 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005805 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005806 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005807 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005808 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005809 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005810 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005811 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005812 if (done_word(&dest, &ctx)) {
5813 goto parse_error;
5814 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005815#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005816 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005817 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005818#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005819 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005820 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005821 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005822 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005823 } else {
5824 /* we could pick up a file descriptor choice here
5825 * with redirect_opt_num(), but bash doesn't do it.
5826 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005827 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005828 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005829 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005830 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005831#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005832 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005833 if (ctx.ctx_res_w == RES_MATCH
5834 && ctx.command->argv == NULL /* not (word|(... */
5835 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005836 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005837 ) {
5838 continue;
5839 }
5840#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005841 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005842 if (parse_group(&dest, &ctx, input, ch) != 0) {
5843 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005844 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005845 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005846 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005847#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005848 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005849 goto case_semi;
5850#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005851 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005852 /* proper use of this character is caught by end_trigger:
5853 * if we see {, we call parse_group(..., end_trigger='}')
5854 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005855 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005856 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005857 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005858 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005859 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005860 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005861 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005862
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005863 parse_error:
5864 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005865 struct parse_context *pctx;
5866 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005867
5868 /* Clean up allocated tree.
5869 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005870 * Run them from interactive shell, watch pmap `pidof hush`.
5871 * while if false; then false; fi do break; done
5872 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005873 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005874 * Samples to catch leaks at execution:
5875 * while if (true | {true;}); then echo ok; fi; do break; done
5876 * while if (true | {true;}); then echo ok; fi; do (if echo ok; break; then :; fi) | cat; break; done
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005877 */
5878 pctx = &ctx;
5879 do {
5880 /* Update pipe/command counts,
5881 * otherwise freeing may miss some */
5882 done_pipe(pctx, PIPE_SEQ);
5883 debug_printf_clean("freeing list %p from ctx %p\n",
5884 pctx->list_head, pctx);
5885 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005886 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005887 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005888#if !BB_MMU
5889 o_free_unsafe(&pctx->as_string);
5890#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005891 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005892 if (pctx != &ctx) {
5893 free(pctx);
5894 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005895 IF_HAS_KEYWORDS(pctx = p2;)
5896 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005897 /* Free text, clear all dest fields */
5898 o_free(&dest);
5899 /* If we are not in top-level parse, we return,
5900 * our caller will propagate error.
5901 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005902 if (end_trigger != ';') {
5903#if !BB_MMU
5904 if (pstring)
5905 *pstring = NULL;
5906#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005907 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005908 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005909 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005910 /* Discard cached input, force prompt */
5911 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005912 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005913 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005914 }
Eric Andersen25f27032001-04-26 23:22:31 +00005915}
5916
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005917/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005918 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5919 * end_trigger controls how often we stop parsing
5920 * NUL: parse all, execute, return
5921 * ';': parse till ';' or newline, execute, repeat till EOF
5922 */
5923static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005924{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005925 while (1) {
5926 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005927
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005928 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005929 if (!pipe_list) /* EOF */
5930 break;
5931 debug_print_tree(pipe_list, 0);
5932 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5933 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005934 }
Eric Andersen25f27032001-04-26 23:22:31 +00005935}
5936
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005937static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005938{
5939 struct in_str input;
5940 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005941 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005942}
5943
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005944static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005945{
Eric Andersen25f27032001-04-26 23:22:31 +00005946 struct in_str input;
5947 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005948 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005949}
5950
Denis Vlasenkof9375282009-04-05 19:13:39 +00005951/* Called a few times only (or even once if "sh -c") */
5952static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005953{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005954 unsigned sig;
5955 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005956
Denis Vlasenkof9375282009-04-05 19:13:39 +00005957 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00005958 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005959 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Mike Frysinger38478a62009-05-20 04:48:06 -04005960 if (G_saved_tty_pgrp) /* we have ctty, job control sigs work */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00005961 mask |= SPECIAL_JOB_SIGS;
5962 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005963 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005964
Denis Vlasenkof9375282009-04-05 19:13:39 +00005965 if (!second_time)
5966 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5967 sig = 0;
5968 while (mask) {
5969 if (mask & 1)
5970 sigaddset(&G.blocked_set, sig);
5971 mask >>= 1;
5972 sig++;
5973 }
5974 sigdelset(&G.blocked_set, SIGCHLD);
5975
5976 sigprocmask(SIG_SETMASK, &G.blocked_set,
5977 second_time ? NULL : &G.inherited_set);
5978 /* POSIX allows shell to re-enable SIGCHLD
5979 * even if it was SIG_IGN on entry */
5980// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5981 if (!second_time)
5982 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5983}
5984
5985#if ENABLE_HUSH_JOB
5986/* helper */
5987static void maybe_set_to_sigexit(int sig)
5988{
5989 void (*handler)(int);
5990 /* non_DFL_mask'ed signals are, well, masked,
5991 * no need to set handler for them.
5992 */
5993 if (!((G.non_DFL_mask >> sig) & 1)) {
5994 handler = signal(sig, sigexit);
5995 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5996 signal(sig, handler);
5997 }
5998}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005999/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006000static void set_fatal_handlers(void)
6001{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00006002 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006003 if (HUSH_DEBUG) {
6004 maybe_set_to_sigexit(SIGILL );
6005 maybe_set_to_sigexit(SIGFPE );
6006 maybe_set_to_sigexit(SIGBUS );
6007 maybe_set_to_sigexit(SIGSEGV);
6008 maybe_set_to_sigexit(SIGTRAP);
6009 } /* else: hush is perfect. what SEGV? */
6010 maybe_set_to_sigexit(SIGABRT);
6011 /* bash 3.2 seems to handle these just like 'fatal' ones */
6012 maybe_set_to_sigexit(SIGPIPE);
6013 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006014 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00006015 * if we aren't interactive... but in this case
6016 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006017 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00006018 /*maybe_set_to_sigexit(SIGTERM);*/
6019 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00006020}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00006021#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00006022
Denis Vlasenkod5762932009-03-31 11:22:57 +00006023static int set_mode(const char cstate, const char mode)
6024{
6025 int state = (cstate == '-' ? 1 : 0);
6026 switch (mode) {
6027 case 'n': G.fake_mode = state; break;
6028 case 'x': /*G.debug_mode = state;*/ break;
6029 default: return EXIT_FAILURE;
6030 }
6031 return EXIT_SUCCESS;
6032}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006033
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00006034int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00006035int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00006036{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006037 static const struct variable const_shell_ver = {
6038 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006039 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006040 .max_len = 1, /* 0 can provoke free(name) */
6041 .flg_export = 1,
6042 .flg_read_only = 1,
6043 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00006044 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00006045 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006046 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006047 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00006048
Denis Vlasenko574f2f42008-02-27 18:41:59 +00006049 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006050 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006051 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006052#if !BB_MMU
6053 G.argv0_for_re_execing = argv[0];
6054#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006055 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006056 G.shell_ver = const_shell_ver; /* copying struct here */
6057 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006058 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006059 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6060 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006061 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006062 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006063 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006064 if (e) while (*e) {
6065 char *value = strchr(*e, '=');
6066 if (value) { /* paranoia */
6067 cur_var->next = xzalloc(sizeof(*cur_var));
6068 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006069 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006070 cur_var->max_len = strlen(*e);
6071 cur_var->flg_export = 1;
6072 }
6073 e++;
6074 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006075 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006076 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00006077#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00006078 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006079#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006080 G.global_argc = argc;
6081 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006082 /* Initialize some more globals to non-zero values */
6083 set_cwd();
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006084 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006085
Denis Vlasenkoed782372009-04-10 00:45:02 +00006086 if (setjmp(die_jmp)) {
6087 /* xfunc has failed! die die die */
6088 /* no EXIT traps, this is an escape hatch! */
6089 G.exiting = 1;
6090 hush_exit(xfunc_error_retval);
6091 }
6092
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006093 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006094 * block_signals(0) if we are going to execute "sh <script>",
6095 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006096 * If we later decide that we are interactive, we run block_signals(0)
6097 * (or re-run block_signals(1) if we ran block_signals(0) before)
6098 * in order to intercept (more) signals.
6099 */
6100
6101 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006102 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006103 while (1) {
6104 opt = getopt(argc, argv, "c:xins"
6105#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006106 "<:$:R:V:"
6107# if ENABLE_HUSH_FUNCTIONS
6108 "F:"
6109# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006110#endif
6111 );
6112 if (opt <= 0)
6113 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006114 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006115 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006116 if (!G.root_pid)
6117 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006118 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00006119 if (!argv[optind]) {
6120 /* -c 'script' (no params): prevent empty $0 */
6121 *--G.global_argv = argv[0];
6122 optind--;
6123 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006124 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00006125 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006126 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006127 goto final_return;
6128 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006129 /* Well, we cannot just declare interactiveness,
6130 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006131 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006132 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006133 case 's':
6134 /* "-s" means "read from stdin", but this is how we always
6135 * operate, so simply do nothing here. */
6136 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006137#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006138 case '<': /* "big heredoc" support */
6139 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6140 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006141 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006142 G.root_pid = bb_strtou(optarg, &optarg, 16);
6143 optarg++;
6144 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6145 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006146 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006147# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006148 optarg++;
6149 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006150# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006151 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006152 case 'R':
6153 case 'V':
6154 set_local_var(xstrdup(optarg), 0, opt == 'R');
6155 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006156# if ENABLE_HUSH_FUNCTIONS
6157 case 'F': {
6158 struct function *funcp = new_function(optarg);
6159 /* funcp->name is already set to optarg */
6160 /* funcp->body is set to NULL. It's a special case. */
6161 funcp->body_as_string = argv[optind];
6162 optind++;
6163 break;
6164 }
6165# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006166#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006167 case 'n':
6168 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006169 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006170 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006171 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006172#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006173 fprintf(stderr, "Usage: sh [FILE]...\n"
6174 " or: sh -c command [args]...\n\n");
6175 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006176#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006177 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006178#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006179 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006180 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006181
6182 if (!G.root_pid)
6183 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006184
6185 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006186 if (argv[0] && argv[0][0] == '-') {
6187 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006188 debug_printf("sourcing /etc/profile\n");
6189 input = fopen_for_read("/etc/profile");
6190 if (input != NULL) {
6191 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006192 block_signals(0); /* 0: called 1st time */
6193 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006194 parse_and_run_file(input);
6195 fclose(input);
6196 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006197 /* bash: after sourcing /etc/profile,
6198 * tries to source (in the given order):
6199 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6200 * stopping of first found. --noprofile turns this off.
6201 * bash also sources ~/.bash_logout on exit.
6202 * If called as sh, skips .bash_XXX files.
6203 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006204 }
6205
Denis Vlasenkof9375282009-04-05 19:13:39 +00006206 if (argv[optind]) {
6207 FILE *input;
6208 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006209 * "bash <script>" (which is never interactive (unless -i?))
6210 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006211 * If called as sh, does the same but with $ENV.
6212 */
6213 debug_printf("running script '%s'\n", argv[optind]);
6214 G.global_argv = argv + optind;
6215 G.global_argc = argc - optind;
6216 input = xfopen_for_read(argv[optind]);
6217 close_on_exec_on(fileno(input));
6218 if (!signal_mask_is_inited)
6219 block_signals(0); /* 0: called 1st time */
6220 parse_and_run_file(input);
6221#if ENABLE_FEATURE_CLEAN_UP
6222 fclose(input);
6223#endif
6224 goto final_return;
6225 }
6226
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006227 /* Up to here, shell was non-interactive. Now it may become one.
6228 * NB: don't forget to (re)run block_signals(0/1) as needed.
6229 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006230
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006231 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006232 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006233 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006234 * no arguments remaining or the -s flag given
6235 * standard input is a terminal
6236 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006237 * Refer to Posix.2, the description of the 'sh' utility.
6238 */
6239#if ENABLE_HUSH_JOB
6240 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Mike Frysinger38478a62009-05-20 04:48:06 -04006241 G_saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
6242 debug_printf("saved_tty_pgrp:%d\n", G_saved_tty_pgrp);
6243 if (G_saved_tty_pgrp < 0)
6244 G_saved_tty_pgrp = 0;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006245
6246 /* try to dup stdin to high fd#, >= 255 */
6247 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6248 if (G_interactive_fd < 0) {
6249 /* try to dup to any fd */
6250 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006251 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006252 /* give up */
6253 G_interactive_fd = 0;
Mike Frysinger38478a62009-05-20 04:48:06 -04006254 G_saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006255 }
6256 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006257// TODO: track & disallow any attempts of user
6258// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00006259 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006260 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006261 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006262 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006263
Mike Frysinger38478a62009-05-20 04:48:06 -04006264 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006265 /* If we were run as 'hush &', sleep until we are
6266 * in the foreground (tty pgrp == our pgrp).
6267 * If we get started under a job aware app (like bash),
6268 * make sure we are now in charge so we don't fight over
6269 * who gets the foreground */
6270 while (1) {
6271 pid_t shell_pgrp = getpgrp();
Mike Frysinger38478a62009-05-20 04:48:06 -04006272 G_saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6273 if (G_saved_tty_pgrp == shell_pgrp)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006274 break;
6275 /* send TTIN to ourself (should stop us) */
6276 kill(- shell_pgrp, SIGTTIN);
6277 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006278 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006279
Denis Vlasenkof9375282009-04-05 19:13:39 +00006280 /* Block some signals */
6281 block_signals(signal_mask_is_inited);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006282
Mike Frysinger38478a62009-05-20 04:48:06 -04006283 if (G_saved_tty_pgrp) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006284 /* Set other signals to restore saved_tty_pgrp */
6285 set_fatal_handlers();
6286 /* Put ourselves in our own process group
6287 * (bash, too, does this only if ctty is available) */
6288 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6289 /* Grab control of the terminal */
6290 tcsetpgrp(G_interactive_fd, getpid());
6291 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006292 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006293 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006294 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006295 } else if (!signal_mask_is_inited) {
6296 block_signals(0); /* 0: called 1st time */
6297 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006298#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006299 /* No job control compiled in, only prompt/line editing */
6300 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006301 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6302 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006303 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006304 G_interactive_fd = dup(STDIN_FILENO);
6305 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006306 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006307 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006308 }
6309 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006310 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006311 close_on_exec_on(G_interactive_fd);
6312 block_signals(signal_mask_is_inited);
6313 } else if (!signal_mask_is_inited) {
6314 block_signals(0);
6315 }
6316#else
6317 /* We have interactiveness code disabled */
6318 if (!signal_mask_is_inited) {
6319 block_signals(0);
6320 }
6321#endif
6322 /* bash:
6323 * if interactive but not a login shell, sources ~/.bashrc
6324 * (--norc turns this off, --rcfile <file> overrides)
6325 */
6326
6327 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006328 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysinger26cf2832009-04-24 06:40:30 +00006329 if (ENABLE_HUSH_HELP)
6330 puts("Enter 'help' for a list of built-in commands.");
6331 puts("");
Mike Frysingerb2705e12009-03-23 08:44:02 +00006332 }
6333
Denis Vlasenkof9375282009-04-05 19:13:39 +00006334 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006335
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006336 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006337#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006338 if (G.cwd != bb_msg_unknown)
6339 free((char*)G.cwd);
6340 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006341 while (cur_var) {
6342 struct variable *tmp = cur_var;
6343 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006344 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006345 cur_var = cur_var->next;
6346 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006347 }
Eric Andersen25f27032001-04-26 23:22:31 +00006348#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006349 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006350}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006351
6352
6353#if ENABLE_LASH
6354int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6355int lash_main(int argc, char **argv)
6356{
6357 //bb_error_msg("lash is deprecated, please use hush instead");
6358 return hush_main(argc, argv);
6359}
6360#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006361
6362
6363/*
6364 * Built-ins
6365 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006366static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006367{
6368 return 0;
6369}
6370
6371static int builtin_test(char **argv)
6372{
6373 int argc = 0;
6374 while (*argv) {
6375 argc++;
6376 argv++;
6377 }
6378 return test_main(argc, argv - argc);
6379}
6380
6381static int builtin_echo(char **argv)
6382{
6383 int argc = 0;
6384 while (*argv) {
6385 argc++;
6386 argv++;
6387 }
6388 return echo_main(argc, argv - argc);
6389}
6390
6391static int builtin_eval(char **argv)
6392{
6393 int rcode = EXIT_SUCCESS;
6394
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006395 if (*++argv) {
6396 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006397 /* bash:
6398 * eval "echo Hi; done" ("done" is syntax error):
6399 * "echo Hi" will not execute too.
6400 */
6401 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006402 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006403 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006404 }
6405 return rcode;
6406}
6407
6408static int builtin_cd(char **argv)
6409{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006410 const char *newdir = argv[1];
6411 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006412 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006413 * bash says "bash: cd: HOME not set" and does nothing
6414 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006415 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006416 newdir = get_local_var_value("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006417 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006418 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006419 /* Mimic bash message exactly */
6420 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006421 return EXIT_FAILURE;
6422 }
6423 set_cwd();
6424 return EXIT_SUCCESS;
6425}
6426
6427static int builtin_exec(char **argv)
6428{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006429 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006430 return EXIT_SUCCESS; /* bash does this */
6431 {
6432#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006433 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006434#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006435 /* TODO: if exec fails, bash does NOT exit! We do... */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006436 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006437 /* never returns */
6438 }
6439}
6440
6441static int builtin_exit(char **argv)
6442{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006443 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00006444
6445 /* interactive bash:
6446 * # trap "echo EEE" EXIT
6447 * # exit
6448 * exit
6449 * There are stopped jobs.
6450 * (if there are _stopped_ jobs, running ones don't count)
6451 * # exit
6452 * exit
6453 # EEE (then bash exits)
6454 *
6455 * we can use G.exiting = -1 as indicator "last cmd was exit"
6456 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006457
6458 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006459 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006460 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006461 /* mimic bash: exit 123abc == exit 255 + error msg */
6462 xfunc_error_retval = 255;
6463 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006464 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006465}
6466
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006467static void print_escaped(const char *s)
6468{
6469 do {
6470 if (*s != '\'') {
6471 const char *p;
6472
6473 p = strchrnul(s, '\'');
6474 /* print 'xxxx', possibly just '' */
6475 printf("'%.*s'", (int)(p - s), s);
6476 if (*p == '\0')
6477 break;
6478 s = p;
6479 }
6480 /* s points to '; print "'''...'''" */
6481 putchar('"');
6482 do putchar('\''); while (*++s == '\'');
6483 putchar('"');
6484 } while (*s);
6485}
6486
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006487static int builtin_export(char **argv)
6488{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006489 unsigned opt_unexport;
6490
6491 if (argv[1] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006492 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006493 if (e) {
6494 while (*e) {
6495#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006496 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006497#else
6498 /* ash emits: export VAR='VAL'
6499 * bash: declare -x VAR="VAL"
6500 * we follow ash example */
6501 const char *s = *e++;
6502 const char *p = strchr(s, '=');
6503
6504 if (!p) /* wtf? take next variable */
6505 continue;
6506 /* export var= */
6507 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006508 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006509 putchar('\n');
6510#endif
6511 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006512 /*fflush(stdout); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006513 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006514 return EXIT_SUCCESS;
6515 }
6516
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006517#if ENABLE_HUSH_EXPORT_N
Denis Vlasenko28e67962009-04-26 23:22:40 +00006518 /* "!": do not abort on errors */
6519 /* "+": stop at 1st non-option */
6520 opt_unexport = getopt32(argv, "!+n");
6521 if (opt_unexport == (unsigned)-1)
6522 return EXIT_FAILURE;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006523 argv += optind;
6524#else
6525 opt_unexport = 0;
6526 argv++;
6527#endif
6528
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006529 do {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006530 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006531
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006532 /* So far we do not check that name is valid (TODO?) */
6533
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006534 if (strchr(name, '=') == NULL) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006535 struct variable *var;
6536
6537 var = get_local_var(name);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006538 if (opt_unexport) {
6539 /* export -n NAME (without =VALUE) */
6540 if (var) {
6541 var->flg_export = 0;
6542 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
6543 unsetenv(name);
6544 } /* else: export -n NOT_EXISTING_VAR: no-op */
6545 continue;
6546 }
6547 /* export NAME (without =VALUE) */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006548 if (var) {
6549 var->flg_export = 1;
6550 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6551 putenv(var->varstr);
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006552 continue;
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006553 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006554 /* Exporting non-existing variable.
6555 * bash does not put it in environment,
6556 * but remembers that it is exported,
6557 * and does put it in env when it is set later.
6558 * We just set it to "" and export. */
6559 name = xasprintf("%s=", name);
6560 } else {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006561 /* (Un)exporting NAME=VALUE */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006562 name = xstrdup(name);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006563 }
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006564 set_local_var(name,
6565 /*export:*/ (opt_unexport ? -1 : 1),
6566 /*readonly:*/ 0
6567 );
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006568 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006569
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006570 return EXIT_SUCCESS;
6571}
6572
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006573static int builtin_trap(char **argv)
6574{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006575 int sig;
6576 char *new_cmd;
6577
6578 if (!G.traps)
6579 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6580
6581 argv++;
6582 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006583 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006584 /* No args: print all trapped */
6585 for (i = 0; i < NSIG; ++i) {
6586 if (G.traps[i]) {
6587 printf("trap -- ");
6588 print_escaped(G.traps[i]);
6589 printf(" %s\n", get_signame(i));
6590 }
6591 }
6592 /*fflush(stdout); - done after each builtin anyway */
6593 return EXIT_SUCCESS;
6594 }
6595
6596 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006597 /* If first arg is a number: reset all specified signals */
6598 sig = bb_strtou(*argv, NULL, 10);
6599 if (errno == 0) {
6600 int ret;
6601 process_sig_list:
6602 ret = EXIT_SUCCESS;
6603 while (*argv) {
6604 sig = get_signum(*argv++);
6605 if (sig < 0 || sig >= NSIG) {
6606 ret = EXIT_FAILURE;
6607 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006608 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006609 continue;
6610 }
6611
6612 free(G.traps[sig]);
6613 G.traps[sig] = xstrdup(new_cmd);
6614
6615 debug_printf("trap: setting SIG%s (%i) to '%s'",
6616 get_signame(sig), sig, G.traps[sig]);
6617
6618 /* There is no signal for 0 (EXIT) */
6619 if (sig == 0)
6620 continue;
6621
6622 if (new_cmd) {
6623 sigaddset(&G.blocked_set, sig);
6624 } else {
6625 /* There was a trap handler, we are removing it
6626 * (if sig has non-DFL handling,
6627 * we don't need to do anything) */
6628 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6629 continue;
6630 sigdelset(&G.blocked_set, sig);
6631 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006632 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006633 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006634 return ret;
6635 }
6636
6637 if (!argv[1]) { /* no second arg */
6638 bb_error_msg("trap: invalid arguments");
6639 return EXIT_FAILURE;
6640 }
6641
6642 /* First arg is "-": reset all specified to default */
6643 /* First arg is "--": skip it, the rest is "handler SIGs..." */
6644 /* Everything else: set arg as signal handler
6645 * (includes "" case, which ignores signal) */
6646 if (argv[0][0] == '-') {
6647 if (argv[0][1] == '\0') { /* "-" */
6648 /* new_cmd remains NULL: "reset these sigs" */
6649 goto reset_traps;
6650 }
6651 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
6652 argv++;
6653 }
6654 /* else: "-something", no special meaning */
6655 }
6656 new_cmd = *argv;
6657 reset_traps:
6658 argv++;
6659 goto process_sig_list;
6660}
6661
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006662#if ENABLE_HUSH_JOB
6663/* built-in 'fg' and 'bg' handler */
6664static int builtin_fg_bg(char **argv)
6665{
6666 int i, jobnum;
6667 struct pipe *pi;
6668
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006669 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006670 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006671
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006672 /* If they gave us no args, assume they want the last backgrounded task */
6673 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006674 for (pi = G.job_list; pi; pi = pi->next) {
6675 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006676 goto found;
6677 }
6678 }
6679 bb_error_msg("%s: no current job", argv[0]);
6680 return EXIT_FAILURE;
6681 }
6682 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6683 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6684 return EXIT_FAILURE;
6685 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006686 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006687 if (pi->jobid == jobnum) {
6688 goto found;
6689 }
6690 }
6691 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6692 return EXIT_FAILURE;
6693 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006694 /* TODO: bash prints a string representation
6695 * of job being foregrounded (like "sleep 1 | cat") */
Mike Frysinger38478a62009-05-20 04:48:06 -04006696 if (argv[0][0] == 'f' && G_saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006697 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006698 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006699 }
6700
6701 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006702 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6703 for (i = 0; i < pi->num_cmds; i++) {
6704 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6705 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006706 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006707 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006708
6709 i = kill(- pi->pgrp, SIGCONT);
6710 if (i < 0) {
6711 if (errno == ESRCH) {
6712 delete_finished_bg_job(pi);
6713 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006714 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006715 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006716 }
6717
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006718 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006719 remove_bg_job(pi);
6720 return checkjobs_and_fg_shell(pi);
6721 }
6722 return EXIT_SUCCESS;
6723}
6724#endif
6725
6726#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006727static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006728{
6729 const struct built_in_command *x;
6730
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006731 printf("\n"
6732 "Built-in commands:\n"
6733 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006734 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6735 printf("%s\t%s\n", x->cmd, x->descr);
6736 }
6737 printf("\n\n");
6738 return EXIT_SUCCESS;
6739}
6740#endif
6741
6742#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006743static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006744{
6745 struct pipe *job;
6746 const char *status_string;
6747
Denis Vlasenko87a86552008-07-29 19:43:10 +00006748 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006749 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006750 status_string = "Stopped";
6751 else
6752 status_string = "Running";
6753
6754 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6755 }
6756 return EXIT_SUCCESS;
6757}
6758#endif
6759
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006760#if HUSH_DEBUG
6761static int builtin_memleak(char **argv UNUSED_PARAM)
6762{
6763 void *p;
6764 unsigned long l;
6765
6766 /* Crude attempt to find where "free memory" starts,
6767 * sans fragmentation. */
6768 p = malloc(240);
6769 l = (unsigned long)p;
6770 free(p);
6771 p = malloc(3400);
6772 if (l < (unsigned long)p) l = (unsigned long)p;
6773 free(p);
6774
6775 if (!G.memleak_value)
6776 G.memleak_value = l;
6777
6778 l -= G.memleak_value;
6779 if ((long)l < 0)
6780 l = 0;
6781 l /= 1024;
6782 if (l > 127)
6783 l = 127;
6784
6785 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6786 return l;
6787}
6788#endif
6789
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006790static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006791{
6792 puts(set_cwd());
6793 return EXIT_SUCCESS;
6794}
6795
6796static int builtin_read(char **argv)
6797{
6798 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006799 const char *name = "REPLY";
6800
6801 if (argv[1]) {
6802 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006803 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6804 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006805 if (!is_well_formed_var_name(name, '\0')) {
6806 /* Mimic bash message */
6807 bb_error_msg("read: '%s': not a valid identifier", name);
6808 return 1;
6809 }
6810 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006811
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006812//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6813
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006814 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006815 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006816}
6817
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006818/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6819 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006820 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006821 * set [-abCefhmnuvx] [-o option] [argument...]
6822 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006823 * set -- [argument...]
6824 * set -o
6825 * set +o
6826 * Implementations shall support the options in both their hyphen and
6827 * plus-sign forms. These options can also be specified as options to sh.
6828 * Examples:
6829 * Write out all variables and their values: set
6830 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6831 * Turn on the -x and -v options: set -xv
6832 * Unset all positional parameters: set --
6833 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6834 * Set the positional parameters to the expansion of x, even if x expands
6835 * with a leading '-' or '+': set -- $x
6836 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006837 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006838 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006839static int builtin_set(char **argv)
6840{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006841 int n;
6842 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006843 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006844
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006845 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006846 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006847 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006848 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006849 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006850 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006851
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006852 do {
6853 if (!strcmp(arg, "--")) {
6854 ++argv;
6855 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006856 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006857 if (arg[0] != '+' && arg[0] != '-')
6858 break;
6859 for (n = 1; arg[n]; ++n)
6860 if (set_mode(arg[0], arg[n]))
6861 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006862 } while ((arg = *++argv) != NULL);
6863 /* Now argv[0] is 1st argument */
6864
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006865 if (arg == NULL)
6866 return EXIT_SUCCESS;
6867 set_argv:
6868
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006869 /* NB: G.global_argv[0] ($0) is never freed/changed */
6870 g_argv = G.global_argv;
6871 if (G.global_args_malloced) {
6872 pp = g_argv;
6873 while (*++pp)
6874 free(*pp);
6875 g_argv[1] = NULL;
6876 } else {
6877 G.global_args_malloced = 1;
6878 pp = xzalloc(sizeof(pp[0]) * 2);
6879 pp[0] = g_argv[0]; /* retain $0 */
6880 g_argv = pp;
6881 }
6882 /* This realloc's G.global_argv */
6883 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6884
6885 n = 1;
6886 while (*++pp)
6887 n++;
6888 G.global_argc = n;
6889
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006890 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006891
6892 /* Nothing known, so abort */
6893 error:
6894 bb_error_msg("set: %s: invalid option", arg);
6895 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006896}
6897
6898static int builtin_shift(char **argv)
6899{
6900 int n = 1;
6901 if (argv[1]) {
6902 n = atoi(argv[1]);
6903 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006904 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006905 if (G.global_args_malloced) {
6906 int m = 1;
6907 while (m <= n)
6908 free(G.global_argv[m++]);
6909 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006910 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006911 memmove(&G.global_argv[1], &G.global_argv[n+1],
6912 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006913 return EXIT_SUCCESS;
6914 }
6915 return EXIT_FAILURE;
6916}
6917
6918static int builtin_source(char **argv)
6919{
Denys Vlasenko54e08432009-05-02 02:34:19 +02006920 const char *PATH;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006921 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006922 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006923#if ENABLE_HUSH_FUNCTIONS
6924 smallint sv_flg;
6925#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006926
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006927 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006928 return EXIT_FAILURE;
6929
Denys Vlasenko54e08432009-05-02 02:34:19 +02006930 if (strchr(*argv, '/') == NULL
6931 && (PATH = get_local_var_value("PATH")) != NULL
6932 ) {
6933 /* Search through $PATH */
6934 while (1) {
6935 const char *end = strchrnul(PATH, ':');
6936 int sz = end - PATH; /* must be int! */
6937
6938 if (sz != 0) {
6939 char *tmp = xasprintf("%.*s/%s", sz, PATH, *argv);
6940 input = fopen_for_read(tmp);
6941 free(tmp);
6942 } else {
6943 /* We have xxx::yyyy in $PATH,
6944 * it means "use current dir" */
6945 input = fopen_for_read(*argv);
6946 }
6947 if (input)
6948 goto opened_ok;
6949 if (*end == '\0')
6950 break;
6951 PATH = end + 1;
6952 }
6953 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006954 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006955 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006956 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006957 return EXIT_FAILURE;
6958 }
Denys Vlasenko54e08432009-05-02 02:34:19 +02006959 opened_ok:
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006960 close_on_exec_on(fileno(input));
6961
Mike Frysinger885b6f22009-04-18 21:04:25 +00006962#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006963 sv_flg = G.flag_return_in_progress;
6964 /* "we are inside sourced file, ok to use return" */
6965 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006966#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006967 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006968
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006969 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006970 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006971
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006972 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00006973#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006974 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006975#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006976
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006977 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006978}
6979
6980static int builtin_umask(char **argv)
6981{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006982 int rc;
6983 mode_t mask;
6984
6985 mask = umask(0);
6986 if (argv[1]) {
6987 mode_t old_mask = mask;
6988
6989 mask ^= 0777;
6990 rc = bb_parse_mode(argv[1], &mask);
6991 mask ^= 0777;
6992 if (rc == 0) {
6993 mask = old_mask;
6994 /* bash messages:
6995 * bash: umask: 'q': invalid symbolic mode operator
6996 * bash: umask: 999: octal number out of range
6997 */
6998 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006999 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007000 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007001 rc = 1;
7002 /* Mimic bash */
7003 printf("%04o\n", (unsigned) mask);
7004 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007005 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007006 umask(mask);
7007
7008 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007009}
7010
Mike Frysingerd690f682009-03-30 06:50:54 +00007011/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007012static int builtin_unset(char **argv)
7013{
Mike Frysingerd690f682009-03-30 06:50:54 +00007014 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00007015 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00007016
Denis Vlasenko28e67962009-04-26 23:22:40 +00007017 /* "!": do not abort on errors */
7018 /* "+": stop at 1st non-option */
7019 opts = getopt32(argv, "!+vf");
7020 if (opts == (unsigned)-1)
7021 return EXIT_FAILURE;
7022 if (opts == 3) {
7023 bb_error_msg("unset: -v and -f are exclusive");
7024 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00007025 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00007026 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00007027
7028 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007029 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00007030 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007031 if (unset_local_var(*argv)) {
7032 /* unset <nonexistent_var> doesn't fail.
7033 * Error is when one tries to unset RO var.
7034 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00007035 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007036 }
Mike Frysingerd690f682009-03-30 06:50:54 +00007037 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00007038#if ENABLE_HUSH_FUNCTIONS
7039 else {
7040 unset_func(*argv);
7041 }
7042#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007043 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00007044 }
7045 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007046}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007047
Mike Frysinger56bdea12009-03-28 20:01:58 +00007048/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
7049static int builtin_wait(char **argv)
7050{
7051 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007052 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007053
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007054 if (*++argv == NULL) {
7055 /* Don't care about wait results */
7056 /* Note 1: must wait until there are no more children */
7057 /* Note 2: must be interruptible */
7058 /* Examples:
7059 * $ sleep 3 & sleep 6 & wait
7060 * [1] 30934 sleep 3
7061 * [2] 30935 sleep 6
7062 * [1] Done sleep 3
7063 * [2] Done sleep 6
7064 * $ sleep 3 & sleep 6 & wait
7065 * [1] 30936 sleep 3
7066 * [2] 30937 sleep 6
7067 * [1] Done sleep 3
7068 * ^C <-- after ~4 sec from keyboard
7069 * $
7070 */
7071 sigaddset(&G.blocked_set, SIGCHLD);
7072 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7073 while (1) {
7074 checkjobs(NULL);
7075 if (errno == ECHILD)
7076 break;
7077 /* Wait for SIGCHLD or any other signal of interest */
7078 /* sigtimedwait with infinite timeout: */
7079 sig = sigwaitinfo(&G.blocked_set, NULL);
7080 if (sig > 0) {
7081 sig = check_and_run_traps(sig);
7082 if (sig && sig != SIGCHLD) { /* see note 2 */
7083 ret = 128 + sig;
7084 break;
7085 }
7086 }
7087 }
7088 sigdelset(&G.blocked_set, SIGCHLD);
7089 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7090 return ret;
7091 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00007092
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007093 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00007094 while (*argv) {
7095 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007096 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007097 /* mimic bash message */
7098 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007099 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007100 }
7101 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007102 if (WIFSIGNALED(status))
7103 ret = 128 + WTERMSIG(status);
7104 else if (WIFEXITED(status))
7105 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007106 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007107 ret = EXIT_FAILURE;
7108 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007109 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007110 ret = 127;
7111 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007112 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007113 }
7114
7115 return ret;
7116}
7117
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007118#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7119static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7120{
7121 if (argv[1]) {
7122 def = bb_strtou(argv[1], NULL, 10);
7123 if (errno || def < def_min || argv[2]) {
7124 bb_error_msg("%s: bad arguments", argv[0]);
7125 def = UINT_MAX;
7126 }
7127 }
7128 return def;
7129}
7130#endif
7131
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007132#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007133static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007134{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007135 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007136 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007137 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00007138 return EXIT_SUCCESS; /* bash compat */
7139 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007140 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007141
7142 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7143 if (depth == UINT_MAX)
7144 G.flag_break_continue = BC_BREAK;
7145 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00007146 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007147
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007148 return EXIT_SUCCESS;
7149}
7150
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007151static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007152{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007153 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7154 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007155}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007156#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007157
7158#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko7b9e5c52009-04-17 23:53:15 +00007159static int builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007160{
7161 int rc;
7162
7163 if (G.flag_return_in_progress != -1) {
7164 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7165 return EXIT_FAILURE; /* bash compat */
7166 }
7167
7168 G.flag_return_in_progress = 1;
7169
7170 /* bash:
7171 * out of range: wraps around at 256, does not error out
7172 * non-numeric param:
7173 * f() { false; return qwe; }; f; echo $?
7174 * bash: return: qwe: numeric argument required <== we do this
7175 * 255 <== we also do this
7176 */
7177 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7178 return rc;
7179}
7180#endif