blob: 370e0d71a7155497ed76f850c96db44b4309d8f8 [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;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000448#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000449 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000450#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000451 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000452#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000453#if ENABLE_HUSH_FUNCTIONS
454 /* 0: outside of a function (or sourced file)
455 * -1: inside of a function, ok to use return builtin
Denis Vlasenkoc8653f62009-04-27 23:29:14 +0000456 * 1: return is invoked, skip all till end of func
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000457 */
458 smallint flag_return_in_progress;
459#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000460 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000461 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000462 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000463 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000464 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000465 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000466 /* how many non-NULL argv's we have. NB: $# + 1 */
467 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000468 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000469#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000470 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000471#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000472#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000473 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000474 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000475#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000476 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000477 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000478 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000479 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000480#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000481 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000482#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000483 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000484// unsigned count_SIGCHLD;
485// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000486 /* which signals have non-DFL handler (even with no traps set)? */
487 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000488 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000489 sigset_t blocked_set;
490 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000491#if HUSH_DEBUG
492 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000493 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000494#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000495 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000496};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000497#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000498/* Not #defining name to G.name - this quickly gets unwieldy
499 * (too many defines). Also, I actually prefer to see when a variable
500 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000501#define INIT_G() do { \
502 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
503} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000504
505
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000506/* Function prototypes for builtins */
507static int builtin_cd(char **argv);
508static int builtin_echo(char **argv);
509static int builtin_eval(char **argv);
510static int builtin_exec(char **argv);
511static int builtin_exit(char **argv);
512static int builtin_export(char **argv);
513#if ENABLE_HUSH_JOB
514static int builtin_fg_bg(char **argv);
515static int builtin_jobs(char **argv);
516#endif
517#if ENABLE_HUSH_HELP
518static int builtin_help(char **argv);
519#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000520#if HUSH_DEBUG
521static int builtin_memleak(char **argv);
522#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000523static int builtin_pwd(char **argv);
524static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000525static int builtin_set(char **argv);
526static int builtin_shift(char **argv);
527static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000528static int builtin_test(char **argv);
529static int builtin_trap(char **argv);
530static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000531static int builtin_umask(char **argv);
532static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000533static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000534#if ENABLE_HUSH_LOOPS
535static int builtin_break(char **argv);
536static int builtin_continue(char **argv);
537#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000538#if ENABLE_HUSH_FUNCTIONS
539static int builtin_return(char **argv);
540#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000541
542/* Table of built-in functions. They can be forked or not, depending on
543 * context: within pipes, they fork. As simple commands, they do not.
544 * When used in non-forking context, they can change global variables
545 * in the parent shell process. If forked, of course they cannot.
546 * For example, 'unset foo | whatever' will parse and run, but foo will
547 * still be set at the end. */
548struct built_in_command {
549 const char *cmd;
550 int (*function)(char **argv);
551#if ENABLE_HUSH_HELP
552 const char *descr;
553#define BLTIN(cmd, func, help) { cmd, func, help }
554#else
555#define BLTIN(cmd, func, help) { cmd, func }
556#endif
557};
558
559/* For now, echo and test are unconditionally enabled.
560 * Maybe make it configurable? */
561static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000562 BLTIN("." , builtin_source , "Run commands in a file"),
563 BLTIN(":" , builtin_true , "No-op"),
564 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000565#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000566 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000567#endif
568#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000569 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000570#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000571 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000572#if ENABLE_HUSH_LOOPS
573 BLTIN("continue", builtin_continue, "Start new loop iteration"),
574#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000575 BLTIN("echo" , builtin_echo , "Write to stdout"),
576 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
577 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
578 BLTIN("exit" , builtin_exit , "Exit"),
579 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000580#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000581 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000582#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000583#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000584 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000585#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000586#if ENABLE_HUSH_JOB
587 BLTIN("jobs" , builtin_jobs , "List active jobs"),
588#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000589#if HUSH_DEBUG
590 BLTIN("memleak" , builtin_memleak , "Debug tool"),
591#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000592 BLTIN("pwd" , builtin_pwd , "Print current directory"),
593 BLTIN("read" , builtin_read , "Input environment variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000594#if ENABLE_HUSH_FUNCTIONS
595 BLTIN("return" , builtin_return , "Return from a function"),
596#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000597 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
598 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
599 BLTIN("test" , builtin_test , "Test condition"),
600 BLTIN("trap" , builtin_trap , "Trap signals"),
601// BLTIN("ulimit" , builtin_return , "Control resource limits"),
602 BLTIN("umask" , builtin_umask , "Set file creation mask"),
603 BLTIN("unset" , builtin_unset , "Unset environment variable"),
604 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000605};
606
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000607
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000608/* Debug printouts.
609 */
610#if HUSH_DEBUG
611/* prevent disasters with G.debug_indent < 0 */
612# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
613# define debug_enter() (G.debug_indent++)
614# define debug_leave() (G.debug_indent--)
615#else
616# define indent() ((void)0)
617# define debug_enter() ((void)0)
618# define debug_leave() ((void)0)
619#endif
620
621#ifndef debug_printf
622# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
623#endif
624
625#ifndef debug_printf_parse
626# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
627#endif
628
629#ifndef debug_printf_exec
630#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
631#endif
632
633#ifndef debug_printf_env
634# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
635#endif
636
637#ifndef debug_printf_jobs
638# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
639# define DEBUG_JOBS 1
640#else
641# define DEBUG_JOBS 0
642#endif
643
644#ifndef debug_printf_expand
645# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
646# define DEBUG_EXPAND 1
647#else
648# define DEBUG_EXPAND 0
649#endif
650
651#ifndef debug_printf_glob
652# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
653# define DEBUG_GLOB 1
654#else
655# define DEBUG_GLOB 0
656#endif
657
658#ifndef debug_printf_list
659# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
660#endif
661
662#ifndef debug_printf_subst
663# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
664#endif
665
666#ifndef debug_printf_clean
667# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
668# define DEBUG_CLEAN 1
669#else
670# define DEBUG_CLEAN 0
671#endif
672
673#if DEBUG_EXPAND
674static void debug_print_strings(const char *prefix, char **vv)
675{
676 indent();
677 fprintf(stderr, "%s:\n", prefix);
678 while (*vv)
679 fprintf(stderr, " '%s'\n", *vv++);
680}
681#else
682#define debug_print_strings(prefix, vv) ((void)0)
683#endif
684
685
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000686/* Leak hunting. Use hush_leaktool.sh for post-processing.
687 */
688#if LEAK_HUNTING
689static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000690{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000691 void *ptr = xmalloc((size + 0xff) & ~0xff);
692 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
693 return ptr;
694}
695static void *xxrealloc(int lineno, void *ptr, size_t size)
696{
697 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
698 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
699 return ptr;
700}
701static char *xxstrdup(int lineno, const char *str)
702{
703 char *ptr = xstrdup(str);
704 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
705 return ptr;
706}
707static void xxfree(void *ptr)
708{
709 fdprintf(2, "free %p\n", ptr);
710 free(ptr);
711}
712#define xmalloc(s) xxmalloc(__LINE__, s)
713#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
714#define xstrdup(s) xxstrdup(__LINE__, s)
715#define free(p) xxfree(p)
716#endif
717
718
719/* Syntax and runtime errors. They always abort scripts.
720 * In interactive use they usually discard unparsed and/or unexecuted commands
721 * and return to the prompt.
722 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
723 */
724#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000725# define die_if_script(lineno, fmt...) die_if_script(fmt)
726# define syntax_error(lineno, msg) syntax_error(msg)
727# define syntax_error_at(lineno, msg) syntax_error_at(msg)
728# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
729# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
730# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000731#endif
732
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000733static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000734{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000735 va_list p;
736
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000737#if HUSH_DEBUG >= 2
738 bb_error_msg("hush.c:%u", lineno);
739#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000740 va_start(p, fmt);
741 bb_verror_msg(fmt, p, NULL);
742 va_end(p);
743 if (!G_interactive_fd)
744 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000745}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000746
747static void syntax_error(unsigned lineno, const char *msg)
748{
749 if (msg)
750 die_if_script(lineno, "syntax error: %s", msg);
751 else
752 die_if_script(lineno, "syntax error", NULL);
753}
754
755static void syntax_error_at(unsigned lineno, const char *msg)
756{
757 die_if_script(lineno, "syntax error at '%s'", msg);
758}
759
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000760/* It so happens that all such cases are totally fatal
761 * even if shell is interactive: EOF while looking for closing
762 * delimiter. There is nowhere to read stuff from after that,
763 * it's EOF! The only choice is to terminate.
764 */
765static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000766static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000767{
768 char msg[2];
769 msg[0] = ch;
770 msg[1] = '\0';
771 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000772 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000773}
774
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000775static void syntax_error_unterm_str(unsigned lineno, const char *s)
776{
777 die_if_script(lineno, "syntax error: unterminated %s", s);
778}
779
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200780static void syntax_error_unexpected_ch(unsigned lineno, int ch)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000781{
782 char msg[2];
783 msg[0] = ch;
784 msg[1] = '\0';
Denys Vlasenkob1cfc452009-05-02 17:18:34 +0200785 die_if_script(lineno, "syntax error: unexpected %s", ch == EOF ? "EOF" : msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000786}
787
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000788#if HUSH_DEBUG < 2
789# undef die_if_script
790# undef syntax_error
791# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000792# undef syntax_error_unterm_ch
793# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000794# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000795#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000796# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
797# define syntax_error(msg) syntax_error(__LINE__, msg)
798# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
799# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
800# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
801# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000802#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000803
Denis Vlasenko552433b2009-04-04 19:29:21 +0000804
Mike Frysinger67c1c7b2009-04-24 06:26:18 +0000805#if ENABLE_HUSH_INTERACTIVE
806static void cmdedit_update_prompt(void);
807#else
808# define cmdedit_update_prompt()
809#endif
810
811
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000812/* Utility functions
813 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000814static int glob_needed(const char *s)
815{
816 while (*s) {
817 if (*s == '\\')
818 s++;
819 if (*s == '*' || *s == '[' || *s == '?')
820 return 1;
821 s++;
822 }
823 return 0;
824}
825
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000826static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000827{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000828 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000829 return 0;
830 s++;
831 while (isalnum(*s) || *s == '_')
832 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000833 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000834}
835
Denis Vlasenko55789c62008-06-18 16:30:42 +0000836/* Replace each \x with x in place, return ptr past NUL. */
837static char *unbackslash(char *src)
838{
839 char *dst = src;
840 while (1) {
841 if (*src == '\\')
842 src++;
843 if ((*dst++ = *src++) == '\0')
844 break;
845 }
846 return dst;
847}
848
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000849static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000850{
851 int i;
852 unsigned count1;
853 unsigned count2;
854 char **v;
855
856 v = strings;
857 count1 = 0;
858 if (v) {
859 while (*v) {
860 count1++;
861 v++;
862 }
863 }
864 count2 = 0;
865 v = add;
866 while (*v) {
867 count2++;
868 v++;
869 }
870 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
871 v[count1 + count2] = NULL;
872 i = count2;
873 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000874 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000875 return v;
876}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000877#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000878static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
879{
880 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
881 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
882 return ptr;
883}
884#define add_strings_to_strings(strings, add, need_to_dup) \
885 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
886#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000887
Denys Vlasenkocb6ff252009-05-04 00:14:30 +0200888/* Note: takes ownership of "add" ptr (it is not strdup'ed) */
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000889static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000890{
891 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000892 v[0] = add;
893 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000894 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000895}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000896#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000897static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
898{
899 char **ptr = add_string_to_strings(strings, add);
900 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
901 return ptr;
902}
903#define add_string_to_strings(strings, add) \
904 xx_add_string_to_strings(__LINE__, strings, add)
905#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000906
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200907static void free_strings(char **strings)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000908{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000909 char **v;
910
911 if (!strings)
912 return;
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000913 v = strings;
914 while (*v) {
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +0200915 free(*v);
916 v++;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000917 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000918 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000919}
920
Denis Vlasenko76d50412008-06-10 16:19:39 +0000921
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000922/* Helpers for setting new $n and restoring them back
923 */
924typedef struct save_arg_t {
925 char *sv_argv0;
926 char **sv_g_argv;
927 int sv_g_argc;
928 smallint sv_g_malloced;
929} save_arg_t;
930
931static void save_and_replace_G_args(save_arg_t *sv, char **argv)
932{
933 int n;
934
935 sv->sv_argv0 = argv[0];
936 sv->sv_g_argv = G.global_argv;
937 sv->sv_g_argc = G.global_argc;
938 sv->sv_g_malloced = G.global_args_malloced;
939
940 argv[0] = G.global_argv[0]; /* retain $0 */
941 G.global_argv = argv;
942 G.global_args_malloced = 0;
943
944 n = 1;
945 while (*++argv)
946 n++;
947 G.global_argc = n;
948}
949
950static void restore_G_args(save_arg_t *sv, char **argv)
951{
952 char **pp;
953
954 if (G.global_args_malloced) {
955 /* someone ran "set -- arg1 arg2 ...", undo */
956 pp = G.global_argv;
957 while (*++pp) /* note: does not free $0 */
958 free(*pp);
959 free(G.global_argv);
960 }
961 argv[0] = sv->sv_argv0;
962 G.global_argv = sv->sv_g_argv;
963 G.global_argc = sv->sv_g_argc;
964 G.global_args_malloced = sv->sv_g_malloced;
965}
966
967
Denis Vlasenkod5762932009-03-31 11:22:57 +0000968/* Basic theory of signal handling in shell
969 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000970 * This does not describe what hush does, rather, it is current understanding
971 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000972 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
973 *
974 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
975 * is finished or backgrounded. It is the same in interactive and
976 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000977 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000978 * ^C or ^Z from keyboard seem to execute "at once" because it usually
979 * backgrounds (i.e. stops) or kills all members of currently running
980 * pipe.
981 *
982 * Wait builtin in interruptible by signals for which user trap is set
983 * or by SIGINT in interactive shell.
984 *
985 * Trap handlers will execute even within trap handlers. (right?)
986 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000987 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000988 *
989 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000990 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000991 *
992 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000993 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000994 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000995 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
996 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000997 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000998 * Siganls which differ from SIG_DFL action
999 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001000 *
1001 * SIGQUIT: ignore
1002 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001003 * SIGHUP (interactive):
1004 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001005 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001006 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1007 * that all pipe members are stopped. Try this in bash:
1008 * while :; do :; done - ^Z does not background it
1009 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001010 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001011 * of the command line, show prompt. NB: ^C does not send SIGINT
1012 * to interactive shell while shell is waiting for a pipe,
1013 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001014 * Example 1: this waits 5 sec, but does not execute ls:
1015 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1016 * Example 2: this does not wait and does not execute ls:
1017 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1018 * Example 3: this does not wait 5 sec, but executes ls:
1019 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001020 *
1021 * (What happens to signals which are IGN on shell start?)
1022 * (What happens with signal mask on shell start?)
1023 *
1024 * Implementation in hush
1025 * ======================
1026 * We use in-kernel pending signal mask to determine which signals were sent.
1027 * We block all signals which we don't want to take action immediately,
1028 * i.e. we block all signals which need to have special handling as described
1029 * above, and all signals which have traps set.
1030 * After each pipe execution, we extract any pending signals via sigtimedwait()
1031 * and act on them.
1032 *
1033 * unsigned non_DFL_mask: a mask of such "special" signals
1034 * sigset_t blocked_set: current blocked signal set
1035 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001036 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001037 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001038 * "trap 'cmd' SIGxxx":
1039 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001040 * after [v]fork, if we plan to be a shell:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001041 * unblock signals with special interactive handling
1042 * (child shell is not interactive),
1043 * unset all traps (note: regardless of child shell's type - {}, (), etc)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001044 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001045 * POSIX says pending signal mask is cleared in child - no need to clear it.
1046 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001047 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001048 * Note: as a result, we do not use signal handlers much. The only uses
1049 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1050 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001051 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001052enum {
1053 SPECIAL_INTERACTIVE_SIGS = 0
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001054 | (1 << SIGTERM)
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001055 | (1 << SIGINT)
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001056 | (1 << SIGHUP)
1057 ,
1058#if ENABLE_HUSH_JOB
1059 SPECIAL_JOB_SIGS = 0
1060 | (1 << SIGTTIN)
1061 | (1 << SIGTTOU)
1062 | (1 << SIGTSTP)
1063#endif
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001064};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001065
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001066//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1067//{
1068// G.count_SIGCHLD++;
1069//}
1070
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001071#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001072
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001073/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1074#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001075/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001076#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1077
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001078/* Restores tty foreground process group, and exits.
1079 * May be called as signal handler for fatal signal
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001080 * (will resend signal to itself, producing correct exit state)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001081 * or called directly with -EXITCODE.
1082 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001083static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001084static void sigexit(int sig)
1085{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001086 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001087 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001088
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001089 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001090 * tty pgrp then, only top-level shell process does that */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00001091 if (G.saved_tty_pgrp && getpid() == G.root_pid)
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001092 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001093
1094 /* Not a signal, just exit */
1095 if (sig <= 0)
1096 _exit(- sig);
1097
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001098 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001099}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001100#else
1101
1102#define disable_restore_tty_pgrp_on_exit() ((void)0)
1103#define enable_restore_tty_pgrp_on_exit() ((void)0)
1104
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001105#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001106
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001107/* Restores tty foreground process group, and exits. */
1108static void hush_exit(int exitcode) NORETURN;
1109static void hush_exit(int exitcode)
1110{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001111 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1112 /* Prevent recursion:
1113 * trap "echo Hi; exit" EXIT; exit
1114 */
1115 char *argv[] = { NULL, G.traps[0], NULL };
1116 G.traps[0] = NULL;
1117 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001118 builtin_eval(argv);
1119 free(argv[1]);
1120 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001121
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001122#if ENABLE_HUSH_JOB
1123 fflush(NULL); /* flush all streams */
1124 sigexit(- (exitcode & 0xff));
1125#else
1126 exit(exitcode);
1127#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001128}
1129
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001130static int check_and_run_traps(int sig)
1131{
1132 static const struct timespec zero_timespec = { 0, 0 };
1133 smalluint save_rcode;
1134 int last_sig = 0;
1135
1136 if (sig)
1137 goto jump_in;
1138 while (1) {
1139 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
1140 if (sig <= 0)
1141 break;
1142 jump_in:
1143 last_sig = sig;
1144 if (G.traps && G.traps[sig]) {
1145 if (G.traps[sig][0]) {
1146 /* We have user-defined handler */
1147 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
1148 save_rcode = G.last_exitcode;
1149 builtin_eval(argv);
1150 free(argv[1]);
1151 G.last_exitcode = save_rcode;
1152 } /* else: "" trap, ignoring signal */
1153 continue;
1154 }
1155 /* not a trap: special action */
1156 switch (sig) {
1157// case SIGCHLD:
1158// G.count_SIGCHLD++;
1159// break;
1160 case SIGINT:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00001161 /* Builtin was ^C'ed, make it look prettier: */
1162 bb_putchar('\n');
1163 G.flag_SIGINT = 1;
1164 break;
1165#if ENABLE_HUSH_JOB
1166 case SIGHUP: {
1167 struct pipe *job;
1168 /* bash is observed to signal whole process groups,
1169 * not individual processes */
1170 for (job = G.job_list; job; job = job->next) {
1171 if (job->pgrp <= 0)
1172 continue;
1173 debug_printf_exec("HUPing pgrp %d\n", job->pgrp);
1174 if (kill(- job->pgrp, SIGHUP) == 0)
1175 kill(- job->pgrp, SIGCONT);
1176 }
1177 sigexit(SIGHUP);
1178 }
1179#endif
1180 default: /* ignored: */
1181 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
1182 break;
1183 }
1184 }
1185 return last_sig;
1186}
1187
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001188
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001189static const char *set_cwd(void)
1190{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001191 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1192 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001193 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001194 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001195 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1196 if (!G.cwd)
1197 G.cwd = bb_msg_unknown;
1198 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001199}
1200
Denis Vlasenko83506862007-11-23 13:11:42 +00001201
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001202/*
1203 * Shell and environment variable support
1204 */
1205static struct variable **get_ptr_to_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001206{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001207 struct variable **pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001208 struct variable *cur;
1209 int len;
1210
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001211 len = strlen(name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001212 pp = &G.top_var;
1213 while ((cur = *pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001214 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001215 return pp;
1216 pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001217 }
1218 return NULL;
1219}
1220
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001221static struct variable *get_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001222{
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001223 struct variable **pp = get_ptr_to_local_var(name);
1224 if (pp)
1225 return *pp;
1226 return NULL;
1227}
1228
1229static const char *get_local_var_value(const char *name)
1230{
1231 struct variable **pp = get_ptr_to_local_var(name);
1232 if (pp)
1233 return strchr((*pp)->varstr, '=') + 1;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001234 return NULL;
1235}
1236
1237/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001238 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001239 * flg_export:
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001240 * 0: do not change export flag
1241 * (if creating new variable, flag will be 0)
1242 * 1: set export flag and putenv the variable
1243 * -1: clear export flag and unsetenv the variable
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001244 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001245 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001246#if BB_MMU
1247#define set_local_var(str, flg_export, flg_read_only) \
1248 set_local_var(str, flg_export)
1249#endif
1250static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001251{
1252 struct variable *cur;
Denis Vlasenko950bd722009-04-21 11:23:56 +00001253 char *eq_sign;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001254 int name_len;
1255
Denis Vlasenko950bd722009-04-21 11:23:56 +00001256 eq_sign = strchr(str, '=');
1257 if (!eq_sign) { /* not expected to ever happen? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001258 free(str);
1259 return -1;
1260 }
1261
Denis Vlasenko950bd722009-04-21 11:23:56 +00001262 name_len = eq_sign - str + 1; /* including '=' */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001263 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1264 while (1) {
1265 if (strncmp(cur->varstr, str, name_len) != 0) {
1266 if (!cur->next) {
1267 /* Bail out. Note that now cur points
1268 * to last var in linked list */
1269 break;
1270 }
1271 cur = cur->next;
1272 continue;
1273 }
1274 /* We found an existing var with this name */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001275 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001276#if !BB_MMU
1277 if (!flg_read_only)
1278#endif
1279 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001280 free(str);
1281 return -1;
1282 }
Denis Vlasenko950bd722009-04-21 11:23:56 +00001283 if (flg_export == -1) {
1284 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1285 *eq_sign = '\0';
1286 unsetenv(str);
1287 *eq_sign = '=';
1288 }
1289 if (strcmp(cur->varstr + name_len, eq_sign + 1) == 0) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001290 free_and_exp:
1291 free(str);
1292 goto exp;
1293 }
1294 if (cur->max_len >= strlen(str)) {
1295 /* This one is from startup env, reuse space */
1296 strcpy(cur->varstr, str);
1297 goto free_and_exp;
1298 }
1299 /* max_len == 0 signifies "malloced" var, which we can
1300 * (and has to) free */
1301 if (!cur->max_len)
1302 free(cur->varstr);
1303 cur->max_len = 0;
1304 goto set_str_and_exp;
1305 }
1306
1307 /* Not found - create next variable struct */
1308 cur->next = xzalloc(sizeof(*cur));
1309 cur = cur->next;
1310
1311 set_str_and_exp:
1312 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001313#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001314 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001315#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001316 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001317 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001318 cur->flg_export = 1;
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001319 if (name_len == 4 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1320 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001321 if (cur->flg_export) {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00001322 if (flg_export == -1) {
1323 cur->flg_export = 0;
1324 /* unsetenv was already done */
1325 } else {
1326 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1327 return putenv(cur->varstr);
1328 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001329 }
1330 return 0;
1331}
1332
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001333static int unset_local_var_len(const char *name, int name_len)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001334{
1335 struct variable *cur;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001336 struct variable **var_pp;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001337
1338 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001339 return EXIT_SUCCESS;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001340 var_pp = &G.top_var;
1341 while ((cur = *var_pp) != NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001342 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1343 if (cur->flg_read_only) {
1344 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001345 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001346 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001347 *var_pp = cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001348 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1349 bb_unsetenv(cur->varstr);
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001350 if (name_len == 3 && cur->varstr[0] == 'P' && cur->varstr[1] == 'S')
1351 cmdedit_update_prompt();
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001352 if (!cur->max_len)
1353 free(cur->varstr);
1354 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001355 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001356 }
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001357 var_pp = &cur->next;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001358 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001359 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001360}
1361
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001362static int unset_local_var(const char *name)
1363{
1364 return unset_local_var_len(name, strlen(name));
1365}
1366
1367static void unset_vars(char **strings)
1368{
1369 char **v;
1370
1371 if (!strings)
1372 return;
1373 v = strings;
1374 while (*v) {
1375 const char *eq = strchrnul(*v, '=');
1376 unset_local_var_len(*v, (int)(eq - *v));
1377 v++;
1378 }
1379 free(strings);
1380}
1381
Mike Frysinger98c52642009-04-02 10:02:37 +00001382#if ENABLE_SH_MATH_SUPPORT
1383#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1384#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1385static char *endofname(const char *name)
1386{
1387 char *p;
1388
1389 p = (char *) name;
1390 if (!is_name(*p))
1391 return p;
1392 while (*++p) {
1393 if (!is_in_name(*p))
1394 break;
1395 }
1396 return p;
1397}
1398
1399static void arith_set_local_var(const char *name, const char *val, int flags)
1400{
1401 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001402 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001403 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001404}
1405#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001406
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001407
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001408/*
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001409 * Helpers for "var1=val1 var2=val2 cmd" feature
1410 */
1411static void add_vars(struct variable *var)
1412{
1413 struct variable *next;
1414
1415 while (var) {
1416 next = var->next;
1417 var->next = G.top_var;
1418 G.top_var = var;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001419 if (var->flg_export) {
1420 debug_printf_env("%s: restoring exported '%s'\n", __func__, var->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001421 putenv(var->varstr);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001422 } else {
1423 debug_printf_env("%s: restoring local '%s'\n", __func__, var->varstr);
1424 }
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001425 var = next;
1426 }
1427}
1428
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001429static struct variable *set_vars_and_save_old(char **strings)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001430{
1431 char **s;
1432 struct variable *old = NULL;
1433
1434 if (!strings)
1435 return old;
1436 s = strings;
1437 while (*s) {
1438 struct variable *var_p;
1439 struct variable **var_pp;
1440 char *eq;
1441
1442 eq = strchr(*s, '=');
1443 if (eq) {
1444 *eq = '\0';
1445 var_pp = get_ptr_to_local_var(*s);
1446 *eq = '=';
1447 if (var_pp) {
1448 /* Remove variable from global linked list */
1449 var_p = *var_pp;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02001450 debug_printf_env("%s: removing '%s'\n", __func__, var_p->varstr);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02001451 *var_pp = var_p->next;
1452 /* Add it to returned list */
1453 var_p->next = old;
1454 old = var_p;
1455 }
1456 set_local_var(*s, 1, 0);
1457 }
1458 s++;
1459 }
1460 return old;
1461}
1462
1463
1464/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001465 * in_str support
1466 */
1467static int static_get(struct in_str *i)
1468{
1469 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001470 if (ch != '\0')
1471 return ch;
1472 i->p--;
1473 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001474}
1475
1476static int static_peek(struct in_str *i)
1477{
1478 return *i->p;
1479}
1480
1481#if ENABLE_HUSH_INTERACTIVE
1482
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001483static void cmdedit_update_prompt(void)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001484{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001485 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001486 G.PS1 = get_local_var_value("PS1");
Mike Frysingerec2c6552009-03-28 12:24:44 +00001487 if (G.PS1 == NULL)
1488 G.PS1 = "\\w \\$ ";
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001489 G.PS2 = get_local_var_value("PS2");
Denys Vlasenko690ad242009-04-30 21:24:24 +02001490 } else {
Mike Frysingerec2c6552009-03-28 12:24:44 +00001491 G.PS1 = NULL;
Denys Vlasenko690ad242009-04-30 21:24:24 +02001492 }
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00001493 if (G.PS2 == NULL)
1494 G.PS2 = "> ";
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001495}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001496
1497static const char* setup_prompt_string(int promptmode)
1498{
1499 const char *prompt_str;
1500 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001501 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1502 /* Set up the prompt */
1503 if (promptmode == 0) { /* PS1 */
1504 free((char*)G.PS1);
1505 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1506 prompt_str = G.PS1;
1507 } else
1508 prompt_str = G.PS2;
1509 } else
1510 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001511 debug_printf("result '%s'\n", prompt_str);
1512 return prompt_str;
1513}
1514
1515static void get_user_input(struct in_str *i)
1516{
1517 int r;
1518 const char *prompt_str;
1519
1520 prompt_str = setup_prompt_string(i->promptmode);
1521#if ENABLE_FEATURE_EDITING
1522 /* Enable command line editing only while a command line
1523 * is actually being read */
1524 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001525 G.flag_SIGINT = 0;
1526 /* buglet: SIGINT will not make new prompt to appear _at once_,
1527 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001528 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001529 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001530 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001531 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001532 i->eof_flag = (r < 0);
1533 if (i->eof_flag) { /* EOF/error detected */
1534 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1535 G.user_input_buf[1] = '\0';
1536 }
1537#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001538 do {
1539 G.flag_SIGINT = 0;
1540 fputs(prompt_str, stdout);
1541 fflush(stdout);
1542 G.user_input_buf[0] = r = fgetc(i->file);
1543 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001544//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001545 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001546 i->eof_flag = (r == EOF);
1547#endif
1548 i->p = G.user_input_buf;
1549}
1550
1551#endif /* INTERACTIVE */
1552
1553/* This is the magic location that prints prompts
1554 * and gets data back from the user */
1555static int file_get(struct in_str *i)
1556{
1557 int ch;
1558
1559 /* If there is data waiting, eat it up */
1560 if (i->p && *i->p) {
1561#if ENABLE_HUSH_INTERACTIVE
1562 take_cached:
1563#endif
1564 ch = *i->p++;
1565 if (i->eof_flag && !*i->p)
1566 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001567 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001568 } else {
1569 /* need to double check i->file because we might be doing something
1570 * more complicated by now, like sourcing or substituting. */
1571#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001572 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001573 do {
1574 get_user_input(i);
1575 } while (!*i->p); /* need non-empty line */
1576 i->promptmode = 1; /* PS2 */
1577 i->promptme = 0;
1578 goto take_cached;
1579 }
1580#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001581 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001582 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001583 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001584#if ENABLE_HUSH_INTERACTIVE
1585 if (ch == '\n')
1586 i->promptme = 1;
1587#endif
1588 return ch;
1589}
1590
Denis Vlasenko913a2012009-04-05 22:17:04 +00001591/* All callers guarantee this routine will never
1592 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001593 */
1594static int file_peek(struct in_str *i)
1595{
1596 int ch;
1597 if (i->p && *i->p) {
1598 if (i->eof_flag && !i->p[1])
1599 return EOF;
1600 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001601 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001602 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001603 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001604 i->eof_flag = (ch == EOF);
1605 i->peek_buf[0] = ch;
1606 i->peek_buf[1] = '\0';
1607 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001608 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001609 return ch;
1610}
1611
1612static void setup_file_in_str(struct in_str *i, FILE *f)
1613{
1614 i->peek = file_peek;
1615 i->get = file_get;
1616#if ENABLE_HUSH_INTERACTIVE
1617 i->promptme = 1;
1618 i->promptmode = 0; /* PS1 */
1619#endif
1620 i->file = f;
1621 i->p = NULL;
1622}
1623
1624static void setup_string_in_str(struct in_str *i, const char *s)
1625{
1626 i->peek = static_peek;
1627 i->get = static_get;
1628#if ENABLE_HUSH_INTERACTIVE
1629 i->promptme = 1;
1630 i->promptmode = 0; /* PS1 */
1631#endif
1632 i->p = s;
1633 i->eof_flag = 0;
1634}
1635
1636
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001637/*
1638 * o_string support
1639 */
1640#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001641
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001642static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001643{
1644 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001645 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001646 if (o->data)
1647 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001648}
1649
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001650static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001651{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001652 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001653 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001654}
1655
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001656static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1657{
1658 free(o->data);
1659}
1660
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001661static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001662{
1663 if (o->length + len > o->maxlen) {
1664 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1665 o->data = xrealloc(o->data, 1 + o->maxlen);
1666 }
1667}
1668
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001669static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001670{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001671 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1672 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001673 o->data[o->length] = ch;
1674 o->length++;
1675 o->data[o->length] = '\0';
1676}
1677
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001678static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001679{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001680 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001681 memcpy(&o->data[o->length], str, len);
1682 o->length += len;
1683 o->data[o->length] = '\0';
1684}
1685
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001686#if !BB_MMU
1687static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001688{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001689 o_addblock(o, str, strlen(str));
1690}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001691static void nommu_addchr(o_string *o, int ch)
1692{
1693 if (o)
1694 o_addchr(o, ch);
1695}
1696#else
1697#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001698#endif
1699
1700static void o_addstr_with_NUL(o_string *o, const char *str)
1701{
1702 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001703}
1704
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001705static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001706{
1707 while (len) {
1708 o_addchr(o, *str);
1709 if (*str++ == '\\'
1710 && (*str != '*' && *str != '?' && *str != '[')
1711 ) {
1712 o_addchr(o, '\\');
1713 }
1714 len--;
1715 }
1716}
1717
Eric Andersen25f27032001-04-26 23:22:31 +00001718/* My analysis of quoting semantics tells me that state information
1719 * is associated with a destination, not a source.
1720 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001721static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001722{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001723 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001724 char *found = strchr("*?[\\", ch);
1725 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001726 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001727 o_grow_by(o, sz);
1728 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001729 o->data[o->length] = '\\';
1730 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001731 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001732 o->data[o->length] = ch;
1733 o->length++;
1734 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001735}
1736
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001737static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001738{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001739 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001740 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001741 sz++;
1742 o->data[o->length] = '\\';
1743 o->length++;
1744 }
1745 o_grow_by(o, sz);
1746 o->data[o->length] = ch;
1747 o->length++;
1748 o->data[o->length] = '\0';
1749}
1750
1751static void o_addQstr(o_string *o, const char *str, int len)
1752{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001753 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001754 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001755 return;
1756 }
1757 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001758 char ch;
1759 int sz;
1760 int ordinary_cnt = strcspn(str, "*?[\\");
1761 if (ordinary_cnt > len) /* paranoia */
1762 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001763 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001764 if (ordinary_cnt == len)
1765 return;
1766 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001767 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001768
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001769 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001770 sz = 1;
1771 if (ch) { /* it is necessarily one of "*?[\\" */
1772 sz++;
1773 o->data[o->length] = '\\';
1774 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001775 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001776 o_grow_by(o, sz);
1777 o->data[o->length] = ch;
1778 o->length++;
1779 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001780 }
1781}
1782
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001783/* A special kind of o_string for $VAR and `cmd` expansion.
1784 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001785 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001786 * list[i] contains an INDEX (int!) into this string data.
1787 * It means that if list[] needs to grow, data needs to be moved higher up
1788 * but list[i]'s need not be modified.
1789 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001790 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001791 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1792 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001793#if DEBUG_EXPAND || DEBUG_GLOB
1794static void debug_print_list(const char *prefix, o_string *o, int n)
1795{
1796 char **list = (char**)o->data;
1797 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1798 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001799
1800 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001801 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1802 prefix, list, n, string_start, o->length, o->maxlen);
1803 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001804 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001805 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1806 o->data + (int)list[i] + string_start,
1807 o->data + (int)list[i] + string_start);
1808 i++;
1809 }
1810 if (n) {
1811 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001812 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001813 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001814 }
1815}
1816#else
1817#define debug_print_list(prefix, o, n) ((void)0)
1818#endif
1819
1820/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1821 * in list[n] so that it points past last stored byte so far.
1822 * It returns n+1. */
1823static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001824{
1825 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001826 int string_start;
1827 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001828
1829 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001830 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1831 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001832 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001833 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001834 /* list[n] points to string_start, make space for 16 more pointers */
1835 o->maxlen += 0x10 * sizeof(list[0]);
1836 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001837 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001838 memmove(list + n + 0x10, list + n, string_len);
1839 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001840 } else {
1841 debug_printf_list("list[%d]=%d string_start=%d\n",
1842 n, string_len, string_start);
1843 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001844 } else {
1845 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001846 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1847 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001848 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1849 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001850 o->has_empty_slot = 0;
1851 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001852 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001853 return n + 1;
1854}
1855
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001856/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001857static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001858{
1859 char **list = (char**)o->data;
1860 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1861
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001862 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001863}
1864
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001865/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001866 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001867static int o_glob(o_string *o, int n)
1868{
1869 glob_t globdata;
1870 int gr;
1871 char *pattern;
1872
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001873 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001874 if (!o->data)
1875 return o_save_ptr_helper(o, n);
1876 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001877 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001878 if (!glob_needed(pattern)) {
1879 literal:
1880 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001881 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001882 return o_save_ptr_helper(o, n);
1883 }
1884
1885 memset(&globdata, 0, sizeof(globdata));
1886 gr = glob(pattern, 0, NULL, &globdata);
1887 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1888 if (gr == GLOB_NOSPACE)
1889 bb_error_msg_and_die("out of memory during glob");
1890 if (gr == GLOB_NOMATCH) {
1891 globfree(&globdata);
1892 goto literal;
1893 }
1894 if (gr != 0) { /* GLOB_ABORTED ? */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00001895 /* TODO: testcase for bad glob pattern behavior */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001896 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1897 }
1898 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1899 char **argv = globdata.gl_pathv;
1900 o->length = pattern - o->data; /* "forget" pattern */
1901 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001902 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001903 n = o_save_ptr_helper(o, n);
1904 argv++;
1905 if (!*argv)
1906 break;
1907 }
1908 }
1909 globfree(&globdata);
1910 if (DEBUG_GLOB)
1911 debug_print_list("o_glob returning", o, n);
1912 return n;
1913}
1914
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001915/* If o->o_glob == 1, glob the string so far remembered.
1916 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001917static int o_save_ptr(o_string *o, int n)
1918{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001919 if (o->o_glob) { /* if globbing is requested */
1920 /* If o->has_empty_slot, list[n] was already globbed
1921 * (if it was requested back then when it was filled)
1922 * so don't do that again! */
1923 if (!o->has_empty_slot)
1924 return o_glob(o, n); /* o_save_ptr_helper is inside */
1925 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001926 return o_save_ptr_helper(o, n);
1927}
1928
1929/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001930static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001931{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001932 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001933 int string_start;
1934
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001935 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1936 if (DEBUG_EXPAND)
1937 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001938 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001939 list = (char**)o->data;
1940 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1941 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001942 while (n) {
1943 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001944 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001945 }
1946 return list;
1947}
1948
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001949
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001950/* Expansion can recurse */
1951#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001952static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001953#endif
1954static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001955#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001956#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001957 parse_stream_dquoted(dest, input, dquote_end)
1958#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001959static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001960 o_string *dest,
1961 struct in_str *input,
1962 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001963
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001964/* expand_strvec_to_strvec() takes a list of strings, expands
1965 * all variable references within and returns a pointer to
1966 * a list of expanded strings, possibly with larger number
1967 * of strings. (Think VAR="a b"; echo $VAR).
1968 * This new list is allocated as a single malloc block.
1969 * NULL-terminated list of char* pointers is at the beginning of it,
1970 * followed by strings themself.
1971 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001972
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001973/* Store given string, finalizing the word and starting new one whenever
1974 * we encounter IFS char(s). This is used for expanding variable values.
1975 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1976static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001977{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001978 while (1) {
1979 int word_len = strcspn(str, G.ifs);
1980 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001981 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001982 o_addQstr(output, str, word_len);
1983 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001984 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001985 str += word_len;
1986 }
1987 if (!*str) /* EOL - do not finalize word */
1988 break;
1989 o_addchr(output, '\0');
1990 debug_print_list("expand_on_ifs", output, n);
1991 n = o_save_ptr(output, n);
1992 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001993 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001994 debug_print_list("expand_on_ifs[1]", output, n);
1995 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001996}
1997
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001998/* Helper to expand $((...)) and heredoc body. These act as if
1999 * they are in double quotes, with the exception that they are not :).
2000 * Just the rules are similar: "expand only $var and `cmd`"
2001 *
2002 * Returns malloced string.
2003 * As an optimization, we return NULL if expansion is not needed.
2004 */
2005static char *expand_pseudo_dquoted(const char *str)
2006{
2007 char *exp_str;
2008 struct in_str input;
2009 o_string dest = NULL_O_STRING;
2010
2011 if (strchr(str, '$') == NULL
2012#if ENABLE_HUSH_TICK
2013 && strchr(str, '`') == NULL
2014#endif
2015 ) {
2016 return NULL;
2017 }
2018
2019 /* We need to expand. Example:
2020 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
2021 */
2022 setup_string_in_str(&input, str);
2023 parse_stream_dquoted(NULL, &dest, &input, EOF);
2024 //bb_error_msg("'%s' -> '%s'", str, dest.data);
2025 exp_str = expand_string_to_string(dest.data);
2026 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
2027 o_free_unsafe(&dest);
2028 return exp_str;
2029}
2030
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002031/* Expand all variable references in given string, adding words to list[]
2032 * at n, n+1,... positions. Return updated n (so that list[n] is next one
2033 * to be filled). This routine is extremely tricky: has to deal with
2034 * variables/parameters with whitespace, $* and $@, and constructs like
2035 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
2036static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002037{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002038 /* or_mask is either 0 (normal case) or 0x80
2039 * (expansion of right-hand side of assignment == 1-element expand.
2040 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00002041
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002042 char ored_ch;
2043 char *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002044
2045 ored_ch = 0;
2046
2047 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
2048 debug_print_list("expand_vars_to_list", output, n);
2049 n = o_save_ptr(output, n);
2050 debug_print_list("expand_vars_to_list[0]", output, n);
2051
2052 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002053 char first_ch;
2054 int i;
2055 char *dyn_val = NULL;
2056 const char *val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002057#if ENABLE_HUSH_TICK
2058 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002059#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002060#if ENABLE_SH_MATH_SUPPORT
2061 char arith_buf[sizeof(arith_t)*3 + 2];
2062#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002063 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002064 debug_print_list("expand_vars_to_list[1]", output, n);
2065 arg = ++p;
2066 p = strchr(p, SPECIAL_VAR_SYMBOL);
2067
2068 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
2069 /* "$@" is special. Even if quoted, it can still
2070 * expand to nothing (not even an empty string) */
2071 if ((first_ch & 0x7f) != '@')
2072 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002073
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002074 switch (first_ch & 0x7f) {
2075 /* Highest bit in first_ch indicates that var is double-quoted */
2076 case '$': /* pid */
2077 val = utoa(G.root_pid);
2078 break;
2079 case '!': /* bg pid */
2080 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2081 break;
2082 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002083 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002084 break;
2085 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002086 if (arg[1] != SPECIAL_VAR_SYMBOL)
2087 /* actually, it's a ${#var} */
2088 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002089 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2090 break;
2091 case '*':
2092 case '@':
2093 i = 1;
2094 if (!G.global_argv[i])
2095 break;
2096 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2097 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002098 smallint sv = output->o_escape;
2099 /* unquoted var's contents should be globbed, so don't escape */
2100 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002101 while (G.global_argv[i]) {
2102 n = expand_on_ifs(output, n, G.global_argv[i]);
2103 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2104 if (G.global_argv[i++][0] && G.global_argv[i]) {
2105 /* this argv[] is not empty and not last:
2106 * put terminating NUL, start new word */
2107 o_addchr(output, '\0');
2108 debug_print_list("expand_vars_to_list[2]", output, n);
2109 n = o_save_ptr(output, n);
2110 debug_print_list("expand_vars_to_list[3]", output, n);
2111 }
2112 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002113 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002114 } else
2115 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2116 * and in this case should treat it like '$*' - see 'else...' below */
2117 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2118 while (1) {
2119 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2120 if (++i >= G.global_argc)
2121 break;
2122 o_addchr(output, '\0');
2123 debug_print_list("expand_vars_to_list[4]", output, n);
2124 n = o_save_ptr(output, n);
2125 }
2126 } else { /* quoted $*: add as one word */
2127 while (1) {
2128 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2129 if (!G.global_argv[++i])
2130 break;
2131 if (G.ifs[0])
2132 o_addchr(output, G.ifs[0]);
2133 }
2134 }
2135 break;
2136 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2137 /* "Empty variable", used to make "" etc to not disappear */
2138 arg++;
2139 ored_ch = 0x80;
2140 break;
2141#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002142 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002143 *p = '\0';
2144 arg++;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002145 /* Can't just stuff it into output o_string,
2146 * expanded result may need to be globbed
2147 * and $IFS-splitted */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002148 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002149 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002150 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2151 val = subst_result.data;
2152 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002153#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002154#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002155 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002156 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002157 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002158 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002159 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002160
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002161 arg++; /* skip '+' */
2162 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002163 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002164
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002165 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002166 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002167 hooks.setvar = arith_set_local_var;
2168 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002169 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2170 free(exp_str);
2171
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002172 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002173 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002174 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002175 case -3:
2176 msg = "exponent less than 0";
2177 break;
2178 case -2:
2179 msg = "divide by 0";
2180 break;
2181 case -5:
2182 msg = "expression recursion loop detected";
2183 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002184 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002185 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002186 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002187 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002188 sprintf(arith_buf, arith_t_fmt, res);
2189 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002190 break;
2191 }
2192#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002193 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002194 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002195 bool exp_len = false;
2196 bool exp_null = false;
2197 char *var = arg;
2198 char exp_save = exp_save; /* for compiler */
2199 char exp_op = exp_op; /* for compiler */
2200 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002201 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002202
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002203 *p = '\0';
2204 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002205
2206 /* prepare for expansions */
2207 if (var[0] == '#') {
2208 /* handle length expansion ${#var} */
2209 exp_len = true;
2210 ++var;
2211 } else {
2212 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002213 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002214 if (!var[exp_off])
2215 exp_off = 0;
2216 if (exp_off) {
2217 exp_save = var[exp_off];
2218 exp_null = exp_save == ':';
2219 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002220 if (exp_null)
2221 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002222 exp_op = *exp_word++;
2223 var[exp_off] = '\0';
2224 }
2225 }
2226
2227 /* lookup the variable in question */
2228 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002229 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002230 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002231 if (i < G.global_argc)
2232 val = G.global_argv[i];
2233 /* else val remains NULL: $N with too big N */
2234 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002235 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002236
2237 /* handle any expansions */
2238 if (exp_len) {
2239 debug_printf_expand("expand: length of '%s' = ", val);
2240 val = utoa(val ? strlen(val) : 0);
2241 debug_printf_expand("%s\n", val);
2242 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002243 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002244 if (val) {
2245 /* we need to do a pattern match */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002246 bool match_at_left;
Mike Frysinger57e74672009-04-09 23:00:33 +00002247 char *loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002248 scan_t scan = pick_scan(exp_op, *exp_word, &match_at_left);
Mike Frysinger57e74672009-04-09 23:00:33 +00002249 if (exp_op == *exp_word) /* ## or %% */
2250 ++exp_word;
2251 val = dyn_val = xstrdup(val);
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002252 loc = scan(dyn_val, exp_word, match_at_left);
2253 if (match_at_left) /* # or ## */
Mike Frysinger57e74672009-04-09 23:00:33 +00002254 val = loc;
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002255 else if (loc) /* % or %% and match was found */
Mike Frysinger57e74672009-04-09 23:00:33 +00002256 *loc = '\0';
2257 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002258 } else {
2259 /* we need to do an expansion */
2260 int exp_test = (!val || (exp_null && !val[0]));
2261 if (exp_op == '+')
2262 exp_test = !exp_test;
2263 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2264 exp_null ? "true" : "false", exp_test);
2265 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002266 if (exp_op == '?') {
2267//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002268 /* ${var?[error_msg_if_unset]} */
2269 /* ${var:?[error_msg_if_unset_or_null]} */
2270 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002271 die_if_script("%s: %s",
2272 var,
2273 exp_word[0] ? exp_word : "parameter null or not set"
2274 );
2275 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002276 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002277 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002278
Mike Frysingera4f331d2009-04-07 06:03:22 +00002279 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002280 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002281 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002282 /* mimic bash message */
2283 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002284 val = NULL;
2285 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002286 char *new_var = xasprintf("%s=%s", var, val);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00002287 set_local_var(new_var, 0, 0);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002288 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002289 }
2290 }
2291 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002292
Mike Frysinger6379bb42009-03-28 18:55:03 +00002293 var[exp_off] = exp_save;
2294 }
2295
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002296 arg[0] = first_ch;
2297#if ENABLE_HUSH_TICK
2298 store_val:
2299#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002300 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002301 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002302 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002303 /* unquoted var's contents should be globbed, so don't escape */
2304 smallint sv = output->o_escape;
2305 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002306 n = expand_on_ifs(output, n, val);
2307 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002308 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002309 }
2310 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002311 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002312 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002313 } /* default: */
2314 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko5b7589e2009-04-26 11:25:19 +00002315
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002316 if (val) {
2317 o_addQstr(output, val, strlen(val));
2318 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002319 free(dyn_val);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002320 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002321 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002322 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002323
2324#if ENABLE_HUSH_TICK
2325 o_free(&subst_result);
2326#endif
2327 arg = ++p;
2328 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2329
2330 if (arg[0]) {
2331 debug_print_list("expand_vars_to_list[a]", output, n);
2332 /* this part is literal, and it was already pre-quoted
2333 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002334 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002335 debug_print_list("expand_vars_to_list[b]", output, n);
2336 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2337 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2338 ) {
2339 n--;
2340 /* allow to reuse list[n] later without re-growth */
2341 output->has_empty_slot = 1;
2342 } else {
2343 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002344 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002345 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002346}
2347
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002348static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002349{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002350 int n;
2351 char **list;
2352 char **v;
2353 o_string output = NULL_O_STRING;
2354
2355 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002356 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002357 /* (unquoted $var will temporarily switch it off) */
2358 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002359 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002360
2361 n = 0;
2362 v = argv;
2363 while (*v) {
2364 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2365 v++;
2366 }
2367 debug_print_list("expand_variables", &output, n);
2368
2369 /* output.data (malloced in one block) gets returned in "list" */
2370 list = o_finalize_list(&output, n);
2371 debug_print_strings("expand_variables[1]", list);
2372 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002373}
2374
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002375static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002376{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002377 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002378}
2379
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002380/* Used for expansion of right hand of assignments */
2381/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2382 * "v=/bin/c*" */
2383static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002384{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002385 char *argv[2], **list;
2386
2387 argv[0] = (char*)str;
2388 argv[1] = NULL;
2389 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2390 if (HUSH_DEBUG)
2391 if (!list[0] || list[1])
2392 bb_error_msg_and_die("BUG in varexp2");
2393 /* actually, just move string 2*sizeof(char*) bytes back */
2394 overlapping_strcpy((char*)list, list[0]);
2395 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2396 return (char*)list;
2397}
2398
2399/* Used for "eval" builtin */
2400static char* expand_strvec_to_string(char **argv)
2401{
2402 char **list;
2403
2404 list = expand_variables(argv, 0x80);
2405 /* Convert all NULs to spaces */
2406 if (list[0]) {
2407 int n = 1;
2408 while (list[n]) {
2409 if (HUSH_DEBUG)
2410 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2411 bb_error_msg_and_die("BUG in varexp3");
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00002412 /* bash uses ' ' regardless of $IFS contents */
2413 list[n][-1] = ' ';
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002414 n++;
2415 }
2416 }
2417 overlapping_strcpy((char*)list, list[0]);
2418 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2419 return (char*)list;
2420}
2421
2422static char **expand_assignments(char **argv, int count)
2423{
2424 int i;
2425 char **p = NULL;
2426 /* Expand assignments into one string each */
2427 for (i = 0; i < count; i++) {
2428 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2429 }
2430 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002431}
2432
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002433
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002434#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002435/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002436void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002437
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002438static void reset_traps_to_defaults(void)
2439{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002440 /* This function is always called in a child shell
2441 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002442 * Child shells are not interactive.
2443 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2444 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002445 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002446 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002447 unsigned sig;
2448 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002449
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002450 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2451 return;
2452
2453 /* Stupid. It can be done with *single* &= op, but we can't use
2454 * the fact that G.blocked_set is implemented as a bitmask... */
2455 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2456 sig = 1;
2457 while (1) {
2458 if (mask & 1)
2459 sigdelset(&G.blocked_set, sig);
2460 mask >>= 1;
2461 if (!mask)
2462 break;
2463 sig++;
2464 }
2465
2466 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2467 mask = G.non_DFL_mask;
2468 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2469 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002470 continue;
2471 free(G.traps[sig]);
2472 G.traps[sig] = NULL;
2473 /* There is no signal for 0 (EXIT) */
2474 if (sig == 0)
2475 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002476 /* There was a trap handler, we are removing it.
2477 * But if sig still has non-DFL handling,
2478 * we should not unblock it. */
2479 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002480 continue;
2481 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002482 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002483 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002484}
2485
2486#else /* !BB_MMU */
2487
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002488static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2489static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002490{
2491 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002492 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002493 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002494#if ENABLE_HUSH_FUNCTIONS
2495 struct function *funcp;
2496#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002497 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002498 unsigned cnt;
2499
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002500 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002501 argv = heredoc_argv;
2502 argv[0] = (char *) G.argv0_for_re_execing;
2503 argv[1] = (char *) "-<";
2504 argv[2] = (char *) s;
2505 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002506 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002507 goto do_exec;
2508 }
2509
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002510 sprintf(param_buf, "-$%x:%x:%x" IF_HUSH_LOOPS(":%x")
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002511 , (unsigned) G.root_pid
2512 , (unsigned) G.last_bg_pid
2513 , (unsigned) G.last_exitcode
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00002514 IF_HUSH_LOOPS(, G.depth_of_loop)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002515 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002516 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002517 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002518 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002519 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002520 for (cur = G.top_var; cur; cur = cur->next) {
2521 if (!cur->flg_export || cur->flg_read_only)
2522 cnt += 2;
2523 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002524#if ENABLE_HUSH_FUNCTIONS
2525 for (funcp = G.top_func; funcp; funcp = funcp->next)
2526 cnt += 3;
2527#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002528 pp = g_argv;
2529 while (*pp++)
2530 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002531 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002532 *pp++ = (char *) G.argv0_for_re_execing;
2533 *pp++ = param_buf;
2534 for (cur = G.top_var; cur; cur = cur->next) {
2535 if (cur->varstr == hush_version_str)
2536 continue;
2537 if (cur->flg_read_only) {
2538 *pp++ = (char *) "-R";
2539 *pp++ = cur->varstr;
2540 } else if (!cur->flg_export) {
2541 *pp++ = (char *) "-V";
2542 *pp++ = cur->varstr;
2543 }
2544 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002545#if ENABLE_HUSH_FUNCTIONS
2546 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2547 *pp++ = (char *) "-F";
2548 *pp++ = funcp->name;
2549 *pp++ = funcp->body_as_string;
2550 }
2551#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002552 /* We can pass activated traps here. Say, -Tnn:trap_string
2553 *
2554 * However, POSIX says that subshells reset signals with traps
2555 * to SIG_DFL.
2556 * I tested bash-3.2 and it not only does that with true subshells
2557 * of the form ( list ), but with any forked children shells.
2558 * I set trap "echo W" WINCH; and then tried:
2559 *
2560 * { echo 1; sleep 20; echo 2; } &
2561 * while true; do echo 1; sleep 20; echo 2; break; done &
2562 * true | { echo 1; sleep 20; echo 2; } | cat
2563 *
2564 * In all these cases sending SIGWINCH to the child shell
2565 * did not run the trap. If I add trap "echo V" WINCH;
2566 * _inside_ group (just before echo 1), it works.
2567 *
2568 * I conclude it means we don't need to pass active traps here.
2569 * exec syscall below resets them to SIG_DFL for us.
2570 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002571 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002572 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002573 *pp++ = g_argv0;
2574 while (*g_argv)
2575 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002576 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002577 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002578
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002579 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002580 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2581 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002582 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002583 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002584 if (argv[0][0] == '/')
2585 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002586 xfunc_error_retval = 127;
2587 bb_error_msg_and_die("can't re-execute the shell");
2588}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002589#endif /* !BB_MMU */
2590
2591
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002592static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002593{
2594 struct fd_pair pair;
2595 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002596 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002597 /* the _body_ of heredoc (misleading field name) */
2598 const char *heredoc = redir->rd_filename;
2599 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002600#if !BB_MMU
2601 char **to_free;
2602#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002603
2604 expanded = NULL;
2605 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2606 expanded = expand_pseudo_dquoted(heredoc);
2607 if (expanded)
2608 heredoc = expanded;
2609 }
2610 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002611
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002612 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002613 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002614 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002615
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002616 /* Try writing without forking. Newer kernels have
2617 * dynamically growing pipes. Must use non-blocking write! */
2618 ndelay_on(pair.wr);
2619 while (1) {
2620 written = write(pair.wr, heredoc, len);
2621 if (written <= 0)
2622 break;
2623 len -= written;
2624 if (len == 0) {
2625 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002626 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002627 return;
2628 }
2629 heredoc += written;
2630 }
2631 ndelay_off(pair.wr);
2632
2633 /* Okay, pipe buffer was not big enough */
2634 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002635 * for the unsuspecting parent process. Child creates a grandchild
2636 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002637 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002638#if !BB_MMU
2639 to_free = NULL;
2640#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002641 pid = vfork();
2642 if (pid < 0)
2643 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002644 if (pid == 0) {
2645 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002646 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002647 pid = BB_MMU ? fork() : vfork();
2648 if (pid < 0)
2649 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2650 if (pid != 0)
2651 _exit(0);
2652 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002653 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002654#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002655 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002656 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002657#else
2658 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002659 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002660 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002661#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002662 }
2663 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002664 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002665#if !BB_MMU
2666 free(to_free);
2667#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002668 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002669 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002670 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002671}
2672
Eric Andersen25f27032001-04-26 23:22:31 +00002673/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2674 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002675static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002676{
2677 int openfd, mode;
2678 struct redir_struct *redir;
2679
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002680 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002681 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002682 /* rd_fd<<HERE case */
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002683 if (squirrel && redir->rd_fd < 3
2684 && squirrel[redir->rd_fd] < 0
2685 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002686 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002687 }
2688 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2689 * of the heredoc */
2690 debug_printf_parse("set heredoc '%s'\n",
2691 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002692 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002693 continue;
2694 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002695
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002696 if (redir->rd_dup == REDIRFD_TO_FILE) {
2697 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002698 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002699 if (redir->rd_filename == NULL) {
2700 /* Something went wrong in the parse.
2701 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002702 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002703 continue;
2704 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002705 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002706 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002707 openfd = open_or_warn(p, mode);
2708 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002709 if (openfd < 0) {
2710 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002711 * bash and ash both lose it as well (though zsh doesn't!) */
2712//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002713 return 1;
2714 }
2715 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002716 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002717 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002718 }
2719
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002720 if (openfd != redir->rd_fd) {
Denys Vlasenko1dd6cf82009-05-02 14:17:31 +02002721 if (squirrel && redir->rd_fd < 3
2722 && squirrel[redir->rd_fd] < 0
2723 ) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002724 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002725 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002726 if (openfd == REDIRFD_CLOSE) {
2727 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002728 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002729 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002730 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002731 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002732 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002733 }
Eric Andersen25f27032001-04-26 23:22:31 +00002734 }
2735 }
2736 return 0;
2737}
2738
2739static void restore_redirects(int squirrel[])
2740{
2741 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002742 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002743 fd = squirrel[i];
2744 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002745 /* We simply die on error */
2746 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002747 }
2748 }
2749}
2750
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002751
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002752static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002753
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002754/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002755static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002756{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002757 char **p;
2758 struct command *command;
2759 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002760 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002761
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002762 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002763 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002764 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002765 for (i = 0; i < pi->num_cmds; i++) {
2766 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002767 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002768 if (command->argv) {
2769 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002770 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002771 }
2772 free_strings(command->argv);
2773 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002774 }
2775 /* not "else if": on syntax error, we may have both! */
2776 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002777 debug_printf_clean(" begin group (grp_type:%d)\n",
2778 command->grp_type);
2779 free_pipe_list(command->group);
2780 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002781 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002782 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002783 /* else is crucial here.
2784 * If group != NULL, child_func is meaningless */
2785#if ENABLE_HUSH_FUNCTIONS
2786 else if (command->child_func) {
2787 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2788 command->child_func->parent_cmd = NULL;
2789 }
2790#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002791#if !BB_MMU
2792 free(command->group_as_string);
2793 command->group_as_string = NULL;
2794#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002795 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002796 debug_printf_clean(" redirect %d%s",
2797 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002798 /* guard against the case >$FOO, where foo is unset or blank */
2799 if (r->rd_filename) {
2800 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2801 free(r->rd_filename);
2802 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002803 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002804 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002805 rnext = r->next;
2806 free(r);
2807 }
2808 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002809 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002810 free(pi->cmds); /* children are an array, they get freed all at once */
2811 pi->cmds = NULL;
2812#if ENABLE_HUSH_JOB
2813 free(pi->cmdtext);
2814 pi->cmdtext = NULL;
2815#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002816}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002817
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002818static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002819{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002820 struct pipe *pi, *next;
2821
2822 for (pi = head; pi; pi = next) {
2823#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002824 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002825#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002826 free_pipe(pi);
2827 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002828 next = pi->next;
2829 /*pi->next = NULL;*/
2830 free(pi);
2831 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002832}
2833
2834
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002835static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002836#if BB_MMU
2837#define parse_stream(pstring, input, end_trigger) \
2838 parse_stream(input, end_trigger)
2839#endif
2840static struct pipe *parse_stream(char **pstring,
2841 struct in_str *input,
2842 int end_trigger);
2843static void parse_and_run_string(const char *s);
2844
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002845
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002846static const struct built_in_command* find_builtin(const char *name)
2847{
2848 const struct built_in_command *x;
2849 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2850 if (strcmp(name, x->cmd) != 0)
2851 continue;
2852 debug_printf_exec("found builtin '%s'\n", name);
2853 return x;
2854 }
2855 return NULL;
2856}
2857
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002858#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002859static const struct function *find_function(const char *name)
2860{
2861 const struct function *funcp = G.top_func;
2862 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002863 if (strcmp(name, funcp->name) == 0) {
2864 break;
2865 }
2866 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002867 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002868 if (funcp)
2869 debug_printf_exec("found function '%s'\n", name);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002870 return funcp;
2871}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002872
Denis Vlasenkobc569742009-04-12 20:35:19 +00002873/* Note: takes ownership on name ptr */
2874static struct function *new_function(char *name)
2875{
2876 struct function *funcp;
2877 struct function **funcpp = &G.top_func;
2878
2879 while ((funcp = *funcpp) != NULL) {
2880 struct command *cmd;
2881
2882 if (strcmp(funcp->name, name) != 0) {
2883 funcpp = &funcp->next;
2884 continue;
2885 }
2886
2887 cmd = funcp->parent_cmd;
2888 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2889 if (!cmd) {
2890 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2891 free(funcp->name);
2892 /* Note: if !funcp->body, do not free body_as_string!
2893 * This is a special case of "-F name body" function:
2894 * body_as_string was not malloced! */
2895 if (funcp->body) {
2896 free_pipe_list(funcp->body);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002897# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002898 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002899# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002900 }
2901 } else {
2902 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2903 cmd->argv[0] = funcp->name;
2904 cmd->group = funcp->body;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002905# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002906 cmd->group_as_string = funcp->body_as_string;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002907# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002908 }
2909 goto skip;
2910 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00002911 debug_printf_exec("remembering new function '%s'\n", name);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002912 funcp = *funcpp = xzalloc(sizeof(*funcp));
2913 /*funcp->next = NULL;*/
2914 skip:
2915 funcp->name = name;
2916 return funcp;
2917}
2918
Denis Vlasenko40e84372009-04-18 11:23:38 +00002919static void unset_func(const char *name)
2920{
2921 struct function *funcp;
2922 struct function **funcpp = &G.top_func;
2923
2924 while ((funcp = *funcpp) != NULL) {
2925 if (strcmp(funcp->name, name) == 0) {
2926 *funcpp = funcp->next;
root62452022009-05-04 12:00:19 +02002927 /* funcp is unlinked now, deleting it.
2928 * Note: if !funcp->body, the function was created by
2929 * "-F name body", do not free ->body_as_string
2930 * and ->name as they were not malloced. */
Denis Vlasenko40e84372009-04-18 11:23:38 +00002931 if (funcp->body) {
2932 free_pipe_list(funcp->body);
root62452022009-05-04 12:00:19 +02002933 free(funcp->name);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002934# if !BB_MMU
Denis Vlasenko40e84372009-04-18 11:23:38 +00002935 free(funcp->body_as_string);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002936# endif
Denis Vlasenko40e84372009-04-18 11:23:38 +00002937 }
2938 free(funcp);
2939 break;
2940 }
Denis Vlasenko73010672009-04-18 11:25:18 +00002941 funcpp = &funcp->next;
Denis Vlasenko40e84372009-04-18 11:23:38 +00002942 }
2943}
2944
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002945# if BB_MMU
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002946#define exec_function(nommu_save, funcp, argv) \
2947 exec_function(funcp, argv)
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002948# endif
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002949static void exec_function(nommu_save_t *nommu_save,
2950 const struct function *funcp,
2951 char **argv) NORETURN;
2952static void exec_function(nommu_save_t *nommu_save,
2953 const struct function *funcp,
2954 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002955{
2956# if BB_MMU
2957 int n = 1;
2958
2959 argv[0] = G.global_argv[0];
2960 G.global_argv = argv;
2961 while (*++argv)
2962 n++;
2963 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002964 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002965 n = run_list(funcp->body);
2966 fflush(NULL);
2967 _exit(n);
2968# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002969 re_execute_shell(&nommu_save->argv_from_re_execing,
2970 funcp->body_as_string,
2971 G.global_argv[0],
2972 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002973# endif
2974}
2975
2976static int run_function(const struct function *funcp, char **argv)
2977{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002978 int rc;
2979 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00002980 smallint sv_flg;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002981
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002982 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002983 /* "we are in function, ok to use return" */
2984 sv_flg = G.flag_return_in_progress;
2985 G.flag_return_in_progress = -1;
2986
Denis Vlasenkobc569742009-04-12 20:35:19 +00002987 /* On MMU, funcp->body is always non-NULL */
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002988# if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00002989 if (!funcp->body) {
2990 /* Function defined by -F */
2991 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002992 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002993 } else
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02002994# endif
Denis Vlasenkobc569742009-04-12 20:35:19 +00002995 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002996 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002997 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002998
2999 G.flag_return_in_progress = sv_flg;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003000 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003001
Denis Vlasenko270b1c32009-04-17 18:54:50 +00003002 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003003}
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003004#endif /* ENABLE_HUSH_FUNCTIONS */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003005
3006
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003007#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003008#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
3009 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
3010#define pseudo_exec(nommu_save, command, argv_expanded) \
3011 pseudo_exec(command, argv_expanded)
3012#endif
3013
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003014/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00003015 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003016 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00003017 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003018 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003019static void pseudo_exec_argv(nommu_save_t *nommu_save,
3020 char **argv, int assignment_cnt,
3021 char **argv_expanded) NORETURN;
3022static void pseudo_exec_argv(nommu_save_t *nommu_save,
3023 char **argv, int assignment_cnt,
3024 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00003025{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003026 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003027
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003028 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003029 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00003030 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00003031
Denis Vlasenko9504e442008-10-29 01:19:15 +00003032 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003033#if BB_MMU
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003034 set_vars_and_save_old(new_env);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003035 free(new_env); /* optional */
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003036 /* we can also destroy set_vars_and_save_old's return value,
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003037 * to save memory */
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003038#else
3039 nommu_save->new_env = new_env;
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003040 nommu_save->old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003041#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003042 if (argv_expanded) {
3043 argv = argv_expanded;
3044 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00003045 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00003046#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003047 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003048#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003049 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00003050
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003051#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
3052 if (strchr(argv[0], '/') != NULL)
3053 goto skip;
3054#endif
3055
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003056 /* On NOMMU, we must never block!
3057 * Example: { sleep 99999 | read line } & echo Ok
3058 * read builtin will block on read syscall, leaving parent blocked
3059 * in vfork. Therefore we can't do this:
3060 */
3061#if BB_MMU
3062 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00003063 * Depending on context, this might be redundant. But it's
3064 * easier to waste a few CPU cycles than it is to figure out
3065 * if this is one of those cases.
3066 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003067 {
3068 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003069 const struct built_in_command *x = find_builtin(argv[0]);
3070 if (x) {
3071 rcode = x->function(argv);
3072 fflush(NULL);
3073 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00003074 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003075 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003076#endif
3077#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003078 /* Check if the command matches any functions */
3079 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003080 const struct function *funcp = find_function(argv[0]);
3081 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003082 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003083 }
3084 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003085#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00003086
Denis Vlasenko80d14be2007-04-10 23:03:30 +00003087#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003088 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003089 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003090 int a = find_applet_by_name(argv[0]);
3091 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003092# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003093 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003094 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00003095 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003096 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003097# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003098 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003099 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003100 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
3101 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003102 /* If they called chroot or otherwise made the binary no longer
3103 * executable, fall through */
3104 }
3105 }
Eric Andersenaac75e52001-04-30 18:18:45 +00003106#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003107
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003108#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003109 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003110#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003111 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003112 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003113 execvp(argv[0], argv);
Denis Vlasenkof9d4fc32009-04-21 20:40:51 +00003114 bb_perror_msg("can't execute '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00003115 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003116}
3117
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003118/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003119 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003120static void pseudo_exec(nommu_save_t *nommu_save,
3121 struct command *command,
3122 char **argv_expanded) NORETURN;
3123static void pseudo_exec(nommu_save_t *nommu_save,
3124 struct command *command,
3125 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003126{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003127 if (command->argv) {
3128 pseudo_exec_argv(nommu_save, command->argv,
3129 command->assignment_cnt, argv_expanded);
3130 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003131
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003132 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003133 /* Cases when we are here:
3134 * ( list )
3135 * { list } &
3136 * ... | ( list ) | ...
3137 * ... | { list } | ...
3138 */
3139#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003140 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003141 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003142 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003143 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003144 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003145 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003146 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003147#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003148 re_execute_shell(&nommu_save->argv_from_re_execing,
3149 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003150 G.global_argv[0],
3151 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003152#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003153 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003154
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003155 /* Case when we are here: ... | >file */
3156 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003157 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003158}
3159
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003160#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003161static const char *get_cmdtext(struct pipe *pi)
3162{
3163 char **argv;
3164 char *p;
3165 int len;
3166
3167 /* This is subtle. ->cmdtext is created only on first backgrounding.
3168 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003169 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003170 if (pi->cmdtext)
3171 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003172 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003173 if (!argv || !argv[0]) {
3174 pi->cmdtext = xzalloc(1);
3175 return pi->cmdtext;
3176 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003177
3178 len = 0;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003179 do {
3180 len += strlen(*argv) + 1;
3181 } while (*++argv);
3182 p = xmalloc(len);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003183 pi->cmdtext = p;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003184 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003185 do {
3186 len = strlen(*argv);
3187 memcpy(p, *argv, len);
3188 p += len;
3189 *p++ = ' ';
3190 } while (*++argv);
3191 p[-1] = '\0';
3192 return pi->cmdtext;
3193}
3194
Eric Andersenbafd94f2001-05-02 16:11:59 +00003195static void insert_bg_job(struct pipe *pi)
3196{
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003197 struct pipe *job, **jobp;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003198 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003199
3200 /* Linear search for the ID of the job to use */
3201 pi->jobid = 1;
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003202 for (job = G.job_list; job; job = job->next)
3203 if (job->jobid >= pi->jobid)
3204 pi->jobid = job->jobid + 1;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003205
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003206 /* Add job to the list of running jobs */
3207 jobp = &G.job_list;
3208 while ((job = *jobp) != NULL)
3209 jobp = &job->next;
3210 job = *jobp = xmalloc(sizeof(*job));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003211
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003212 *job = *pi; /* physical copy */
3213 job->next = NULL;
3214 job->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3215 /* Cannot copy entire pi->cmds[] vector! This causes double frees */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003216 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003217 job->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003218 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003219 }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003220 job->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003221
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003222 if (G_interactive_fd)
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003223 printf("[%d] %d %s\n", job->jobid, job->cmds[0].pid, job->cmdtext);
3224 /* Last command's pid goes to $! */
3225 G.last_bg_pid = job->cmds[job->num_cmds - 1].pid;
3226 G.last_jobid = job->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003227}
3228
Eric Andersenbafd94f2001-05-02 16:11:59 +00003229static void remove_bg_job(struct pipe *pi)
3230{
3231 struct pipe *prev_pipe;
3232
Denis Vlasenko87a86552008-07-29 19:43:10 +00003233 if (pi == G.job_list) {
3234 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003235 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003236 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003237 while (prev_pipe->next != pi)
3238 prev_pipe = prev_pipe->next;
3239 prev_pipe->next = pi->next;
3240 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003241 if (G.job_list)
3242 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003243 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003244 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003245}
Eric Andersen028b65b2001-06-28 01:10:11 +00003246
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003247/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003248static void delete_finished_bg_job(struct pipe *pi)
3249{
3250 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003251 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003252 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003253 free(pi);
3254}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003255#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003256
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003257/* Check to see if any processes have exited -- if they
3258 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003259static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003260{
Eric Andersenc798b072001-06-22 06:23:03 +00003261 int attributes;
3262 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003263#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003264 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003265#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003266 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003267 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003268
Denis Vlasenkod5762932009-03-31 11:22:57 +00003269 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3270
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003271 errno = 0;
3272// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3273// /* avoid doing syscall, nothing there anyway */
3274// return rcode;
3275
Eric Andersenc798b072001-06-22 06:23:03 +00003276 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003277 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003278 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003279
Denis Vlasenko1359da62007-04-21 23:27:30 +00003280/* Do we do this right?
3281 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003282 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003283 * [3]+ Stopped sleep 20 | false
3284 * bash-3.00# echo $?
3285 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003286 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003287 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003288 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003289 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003290 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003291 int dead;
3292
3293// i = G.count_SIGCHLD;
3294 childpid = waitpid(-1, &status, attributes);
3295 if (childpid <= 0) {
3296 if (childpid && errno != ECHILD)
3297 bb_perror_msg("waitpid");
3298// else /* Until next SIGCHLD, waitpid's are useless */
3299// G.handled_SIGCHLD = i;
3300 break;
3301 }
3302 dead = WIFEXITED(status) || WIFSIGNALED(status);
3303
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003304#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003305 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003306 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003307 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3308 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003309 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003310 childpid, WTERMSIG(status), WEXITSTATUS(status));
3311 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003312 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003313 childpid, WEXITSTATUS(status));
3314#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003315 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003316 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003317 for (i = 0; i < fg_pipe->num_cmds; i++) {
3318 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3319 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003320 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003321 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003322 fg_pipe->cmds[i].pid = 0;
3323 fg_pipe->alive_cmds--;
3324 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003325 /* last process gives overall exitstatus */
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003326 /* Note: is WIFSIGNALED, WEXITSTATUS = sig + 128 */
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003327 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003328 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko40e84372009-04-18 11:23:38 +00003329 /* bash prints killing signal's name for *last*
3330 * process in pipe (prints just newline for SIGINT).
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003331 * Mimic this. Example: "sleep 5" + ^\
Denis Vlasenko40e84372009-04-18 11:23:38 +00003332 */
3333 if (WIFSIGNALED(status)) {
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003334 int sig = WTERMSIG(status);
3335 printf("%s\n", sig == SIGINT ? "" : get_signame(sig));
Denis Vlasenko40e84372009-04-18 11:23:38 +00003336 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00003337 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003338 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003339 fg_pipe->cmds[i].is_stopped = 1;
3340 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003341 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003342 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3343 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3344 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003345 /* All processes in fg pipe have exited or stopped */
3346/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3347 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3348 * and "killall -STOP cat" */
3349 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003350#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003351 if (fg_pipe->alive_cmds)
3352 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003353#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003354 return rcode;
3355 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003356 }
3357 /* There are still running processes in the fg pipe */
3358 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003359 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003360 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003361 }
3362
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003363#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003364 /* We asked to wait for bg or orphaned children */
3365 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003366 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003367 for (i = 0; i < pi->num_cmds; i++) {
3368 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003369 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003370 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003371 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003372 /* Happens when shell is used as init process (init=/bin/sh) */
3373 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003374 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003375
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003376 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003377 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003378 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003379 pi->cmds[i].pid = 0;
3380 pi->alive_cmds--;
3381 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003382 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003383 printf(JOB_STATUS_FORMAT, pi->jobid,
3384 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003385 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003386 }
3387 } else {
3388 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003389 pi->cmds[i].is_stopped = 1;
3390 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003391 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003392#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003393 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003394
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003395 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003396}
3397
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003398#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003399static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3400{
3401 pid_t p;
3402 int rcode = checkjobs(fg_pipe);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003403 if (G.saved_tty_pgrp) {
3404 /* Job finished, move the shell to the foreground */
3405 p = getpgrp(); /* our process group id */
3406 debug_printf_jobs("fg'ing ourself: getpgrp()=%d\n", (int)p);
3407 tcsetpgrp(G_interactive_fd, p);
3408 }
Denis Vlasenko52881e92007-04-21 13:42:52 +00003409 return rcode;
3410}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003411#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003412
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003413/* Start all the jobs, but don't wait for anything to finish.
3414 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003415 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003416 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003417 * to finish to determine the exit status of the pipe. If the pipe
3418 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003419 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003420 * return value.
3421 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003422 * Returns -1 only if started some children. IOW: we have to
3423 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003424 *
3425 * The only case when we do not need to [v]fork is when the pipe
3426 * is single, non-backgrounded, non-subshell command. Examples:
3427 * cmd ; ... { list } ; ...
3428 * cmd && ... { list } && ...
3429 * cmd || ... { list } || ...
3430 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3431 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00003432 * with run_list. If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003433 *
3434 * Cases when we must fork:
3435 * non-single: cmd | cmd
3436 * backgrounded: cmd & { list } &
3437 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003438 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003439static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003440{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003441 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003442 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003443 int nextin;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003444 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003445 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003446 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003447 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003448 /* it is not always needed, but we aim to smaller code */
3449 int squirrel[] = { -1, -1, -1 };
3450 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003451
Denis Vlasenko552433b2009-04-04 19:29:21 +00003452 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003453 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003454
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003455 IF_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003456 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003457 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003458 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003459
Denis Vlasenko552433b2009-04-04 19:29:21 +00003460 if (pi->num_cmds != 1
3461 || pi->followup == PIPE_BG
3462 || command->grp_type == GRP_SUBSHELL
3463 ) {
3464 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003465 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003466
Denis Vlasenko552433b2009-04-04 19:29:21 +00003467 pi->alive_cmds = 1;
3468
3469 debug_printf_exec(": group:%p argv:'%s'\n",
3470 command->group, command->argv ? command->argv[0] : "NONE");
3471
3472 if (command->group) {
3473#if ENABLE_HUSH_FUNCTIONS
3474 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003475 /* "executing" func () { list } */
3476 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003477
Denis Vlasenkobc569742009-04-12 20:35:19 +00003478 funcp = new_function(command->argv[0]);
3479 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003480 funcp->body = command->group;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003481# if !BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003482 funcp->body_as_string = command->group_as_string;
3483 command->group_as_string = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003484# endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003485 command->group = NULL;
3486 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003487 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3488 funcp->parent_cmd = command;
3489 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003490
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003491 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3492 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003493 return EXIT_SUCCESS;
3494 }
3495#endif
3496 /* { list } */
3497 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003498 rcode = 1; /* exitcode if redir failed */
3499 if (setup_redirects(command, squirrel) == 0) {
3500 debug_printf_exec(": run_list\n");
3501 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003502 }
Eric Andersen04407e52001-06-07 16:42:05 +00003503 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003504 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003505 debug_leave();
3506 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003507 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003508 }
3509
Denis Vlasenko552433b2009-04-04 19:29:21 +00003510 argv = command->argv ? command->argv : (char **) &null_ptr;
3511 {
3512 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003513#if ENABLE_HUSH_FUNCTIONS
3514 const struct function *funcp;
3515#else
3516 enum { funcp = 0 };
3517#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003518 char **new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003519 struct variable *old_vars = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003520
Denis Vlasenko552433b2009-04-04 19:29:21 +00003521 if (argv[command->assignment_cnt] == NULL) {
3522 /* Assignments, but no command */
3523 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003524 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003525 restore_redirects(squirrel);
3526 /* Set shell variables */
3527 while (*argv) {
3528 p = expand_string_to_string(*argv);
3529 debug_printf_exec("set shell var:'%s'->'%s'\n",
3530 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003531 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003532 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003533 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003534 /* Do we need to flag set_local_var() errors?
3535 * "assignment to readonly var" and "putenv error"
3536 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003537 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003538 debug_leave();
3539 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003540 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003541 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003542
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003543 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003544 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003545
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003546 x = find_builtin(argv_expanded[0]);
3547#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003548 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003549 if (!x)
3550 funcp = find_function(argv_expanded[0]);
3551#endif
3552 if (x || funcp) {
3553 if (!funcp) {
3554 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3555 debug_printf("exec with redirects only\n");
3556 rcode = setup_redirects(command, NULL);
3557 goto clean_up_and_ret1;
3558 }
Eric Andersen25f27032001-04-26 23:22:31 +00003559 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003560 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003561 * This is perfect for work that comes after exec().
3562 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003563 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003564 rcode = setup_redirects(command, squirrel);
3565 if (rcode == 0) {
3566 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003567 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003568 if (!funcp) {
3569 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003570 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003571 rcode = x->function(argv_expanded) & 0xff;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00003572 fflush(NULL);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003573 }
3574#if ENABLE_HUSH_FUNCTIONS
3575 else {
3576 debug_printf_exec(": function '%s' '%s'...\n",
3577 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003578 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003579 }
3580#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003581 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003582#if ENABLE_FEATURE_SH_STANDALONE
3583 clean_up_and_ret:
3584#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003585 restore_redirects(squirrel);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003586 unset_vars(new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003587 add_vars(old_vars);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003588 clean_up_and_ret1:
3589 free(argv_expanded);
3590 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003591 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003592 debug_printf_exec("run_pipe return %d\n", rcode);
3593 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003594 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003595
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003596#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003597 i = find_applet_by_name(argv_expanded[0]);
3598 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003599 rcode = setup_redirects(command, squirrel);
3600 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003601 new_env = expand_assignments(argv, command->assignment_cnt);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003602 old_vars = set_vars_and_save_old(new_env);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003603 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003604 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003605 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003606 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003607 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003608 }
3609#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003610 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003611 }
3612
Denis Vlasenko552433b2009-04-04 19:29:21 +00003613 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003614 /* NB: argv_expanded may already be created, and that
3615 * might include `cmd` runs! Do not rerun it! We *must*
3616 * use argv_expanded if it's non-NULL */
3617
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003618 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003619 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003620 nextin = 0;
3621
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003622 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003623 struct fd_pair pipefds;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003624#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003625 volatile nommu_save_t nommu_save;
3626 nommu_save.new_env = NULL;
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003627 nommu_save.old_vars = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003628 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003629 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003630#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003631 command = &(pi->cmds[i]);
3632 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003633 debug_printf_exec(": pipe member '%s' '%s'...\n",
3634 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003635 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003636 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003637 }
Eric Andersen25f27032001-04-26 23:22:31 +00003638
3639 /* pipes are inserted between pairs of commands */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003640 pipefds.rd = 0;
3641 pipefds.wr = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003642 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003643 xpiped_pair(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003644
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003645 command->pid = BB_MMU ? fork() : vfork();
3646 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003647#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003648 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003649
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003650 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003651 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003652 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003653 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003654 pgrp = pi->pgrp;
3655 if (pgrp < 0) /* true for 1st process only */
3656 pgrp = getpid();
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00003657 if (setpgid(0, pgrp) == 0
3658 && pi->followup != PIPE_BG
3659 && G.saved_tty_pgrp /* we have ctty */
3660 ) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003661 /* We do it in *every* child, not just first,
3662 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003663 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003664 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003665 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003666#endif
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003667 if (pi->alive_cmds == 0 && pi->followup == PIPE_BG) {
3668 /* 1st cmd in backgrounded pipe
3669 * should have its stdin /dev/null'ed */
3670 close(0);
3671 if (open(bb_dev_null, O_RDONLY))
3672 xopen("/", O_RDONLY);
3673 } else {
3674 xmove_fd(nextin, 0);
3675 }
3676 xmove_fd(pipefds.wr, 1);
3677 if (pipefds.rd > 1)
3678 close(pipefds.rd);
Eric Andersen25f27032001-04-26 23:22:31 +00003679 /* Like bash, explicit redirects override pipes,
3680 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003681 if (setup_redirects(command, NULL))
3682 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003683
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003684 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003685 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3686
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003687 /* Stores to nommu_save list of env vars putenv'ed
3688 * (NOMMU, on MMU we don't need that) */
3689 /* cast away volatility... */
3690 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003691 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003692 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003693
Denis Vlasenkof9375282009-04-05 19:13:39 +00003694 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003695 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003696#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003697 /* Clean up after vforked child */
3698 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003699 free(nommu_save.argv_from_re_execing);
Denys Vlasenkoacdc49c2009-05-04 01:58:10 +02003700 unset_vars(nommu_save.new_env);
Denys Vlasenkocb6ff252009-05-04 00:14:30 +02003701 add_vars(nommu_save.old_vars);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003702#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003703 free(argv_expanded);
3704 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003705 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003706 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003707 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003708 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003709 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003710#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003711 /* Second and next children need to know pid of first one */
3712 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003713 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003714#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003715 }
Eric Andersen25f27032001-04-26 23:22:31 +00003716
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003717 if (i)
3718 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003719 if ((i + 1) < pi->num_cmds)
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003720 close(pipefds.wr);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003721 /* Pass read (output) pipe end to next iteration */
Denis Vlasenko8c64e032009-04-20 00:34:01 +00003722 nextin = pipefds.rd;
Eric Andersen25f27032001-04-26 23:22:31 +00003723 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003724
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003725 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003726 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003727 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3728 return 1;
3729 }
3730
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003731 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003732 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003733 return -1;
3734}
3735
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003736#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003737static void debug_print_tree(struct pipe *pi, int lvl)
3738{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003739 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003740 [PIPE_SEQ] = "SEQ",
3741 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003742 [PIPE_OR ] = "OR" ,
3743 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003744 };
3745 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003746 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003747#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003748 [RES_IF ] = "IF" ,
3749 [RES_THEN ] = "THEN" ,
3750 [RES_ELIF ] = "ELIF" ,
3751 [RES_ELSE ] = "ELSE" ,
3752 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003753#endif
3754#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003755 [RES_FOR ] = "FOR" ,
3756 [RES_WHILE] = "WHILE",
3757 [RES_UNTIL] = "UNTIL",
3758 [RES_DO ] = "DO" ,
3759 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003760#endif
3761#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003762 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003763#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003764#if ENABLE_HUSH_CASE
3765 [RES_CASE ] = "CASE" ,
3766 [RES_MATCH] = "MATCH",
3767 [RES_CASEI] = "CASEI",
3768 [RES_ESAC ] = "ESAC" ,
3769#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003770 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003771 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003772 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003773 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003774 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003775 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003776#if ENABLE_HUSH_FUNCTIONS
3777 "func()",
3778#endif
3779 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003780
3781 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003782
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003783 pin = 0;
3784 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003785 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3786 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003787 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003788 while (prn < pi->num_cmds) {
3789 struct command *command = &pi->cmds[prn];
3790 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003791
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003792 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003793 lvl*2, "", prn,
3794 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003795 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003796 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003797 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003798 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003799 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003800 prn++;
3801 continue;
3802 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003803 if (argv) while (*argv) {
3804 fprintf(stderr, " '%s'", *argv);
3805 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003806 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003807 fprintf(stderr, "\n");
3808 prn++;
3809 }
3810 pi = pi->next;
3811 pin++;
3812 }
3813}
3814#endif
3815
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003816/* NB: called by pseudo_exec, and therefore must not modify any
3817 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003818static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003819{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003820#if ENABLE_HUSH_CASE
3821 char *case_word = NULL;
3822#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003823#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003824 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003825 char *for_varname = NULL;
3826 char **for_lcur = NULL;
3827 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003828#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003829 smallint last_followup;
3830 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003831#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003832 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003833#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003834 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003835#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003836#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003837 smallint rword; /* enum reserved_style */
3838 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003839#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003840
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003841 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003842 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003843
Denis Vlasenko06810332007-05-21 23:30:54 +00003844#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003845 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003846 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3847 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003848 continue;
3849 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003850 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003851 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003852 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003853 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003854 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003855 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003856 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003857 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003858 continue;
3859 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003860 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3861 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003862 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003863 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003864 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003865 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003866 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003867 }
3868 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003869#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003870
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003871 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003872 * in order to return, no direct "return" statements please.
3873 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003874
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003875#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003876 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003877#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003878
Denis Vlasenko0e151382009-04-06 18:40:31 +00003879#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003880 rword = RES_NONE;
3881 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003882#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003883 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003884 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003885
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003886 /* Go through list of pipes, (maybe) executing them. */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00003887 for (; pi; pi = IF_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003888 if (G.flag_SIGINT)
3889 break;
3890
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003891 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003892 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3893 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003894#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003895 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003896 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003897 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003898 /* start of a loop: remember where loop starts */
3899 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003900 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003901 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003902#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003903 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003904 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003905 if ((rcode == 0 && last_followup == PIPE_OR)
3906 || (rcode != 0 && last_followup == PIPE_AND)
3907 ) {
3908 /* It is "<true> || CMD" or "<false> && CMD"
3909 * and we should not execute CMD */
3910 debug_printf_exec("skipped cmd because of || or &&\n");
3911 last_followup = pi->followup;
3912 continue;
3913 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003914 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003915 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003916 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003917#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003918 if (cond_code) {
3919 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003920 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003921 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003922 /* "if <false> THEN cmd": skip cmd */
3923 continue;
3924 }
3925 } else {
3926 if (rword == RES_ELSE || rword == RES_ELIF) {
3927 /* "if <true> then ... ELSE/ELIF cmd":
3928 * skip cmd and all following ones */
3929 break;
3930 }
3931 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003932#endif
3933#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003934 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003935 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003936 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003937
3938 static const char encoded_dollar_at[] ALIGN1 = {
3939 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3940 }; /* encoded representation of "$@" */
3941 static const char *const encoded_dollar_at_argv[] = {
3942 encoded_dollar_at, NULL
3943 }; /* argv list with one element: "$@" */
3944 char **vals;
3945
3946 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003947 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003948 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003949 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003950 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003951 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003952 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003953 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003954 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003955 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003956 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003957 debug_print_strings("for_list made from", vals);
3958 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003959 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003960 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003961 for_varname = pi->cmds[0].argv[0];
3962 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003963 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003964 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003965 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003966 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003967 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003968 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003969 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003970 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003971 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003972 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003973 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003974 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003975 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3976 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003977 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003978 if (rword == RES_IN) {
3979 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3980 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003981 if (rword == RES_DONE) {
3982 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003983 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003984#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003985#if ENABLE_HUSH_CASE
3986 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003987 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003988 continue;
3989 }
3990 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003991 char **argv;
3992
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003993 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3994 break;
3995 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003996 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003997 while (*argv) {
3998 char *pattern = expand_string_to_string(*argv);
3999 /* TODO: which FNM_xxx flags to use? */
4000 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
4001 free(pattern);
4002 if (cond_code == 0) { /* match! we will execute this branch */
4003 free(case_word); /* make future "word)" stop */
4004 case_word = NULL;
4005 break;
4006 }
4007 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004008 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004009 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004010 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004011 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004012 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004013 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004014 }
4015#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00004016 /* Just pressing <enter> in shell should check for jobs.
4017 * OTOH, in non-interactive shell this is useless
4018 * and only leads to extra job checks */
4019 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004020 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00004021 goto check_jobs_and_continue;
4022 continue;
4023 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004024
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004025 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00004026 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004027 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004028 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004029 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004030 {
4031 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004032#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00004033 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004034#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004035 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
4036 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004037 /* We ran a builtin, function, or group.
4038 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004039 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004040 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004041 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004042 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004043#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004044 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004045 if (G.flag_break_continue) {
4046 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004047 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004048 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004049 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00004050 G.depth_break_continue--;
4051 if (G.depth_break_continue == 0)
4052 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004053 /* else: e.g. "continue 2" should *break* once, *then* continue */
4054 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00004055 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004056 goto check_jobs_and_break;
4057 /* "continue": simulate end of loop */
4058 rword = RES_DONE;
4059 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004060 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00004061#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00004062#if ENABLE_HUSH_FUNCTIONS
4063 if (G.flag_return_in_progress == 1)
4064 goto check_jobs_and_break;
4065#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004066 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004067 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004068 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004069 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
4070 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004071 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004072#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00004073 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004074 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00004075#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004076 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004077 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004078 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004079#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00004080 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004081 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004082 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004083 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004084 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004085 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00004086#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004087 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004088 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004089 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00004090 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004091 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004092 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00004093 }
4094 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004095
4096 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00004097#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00004098 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004099 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00004100#endif
4101#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004102 /* Beware of "while false; true; do ..."! */
4103 if (pi->next && pi->next->res_word == RES_DO) {
4104 if (rword == RES_WHILE) {
4105 if (rcode) {
4106 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004107 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004108 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
4109 goto check_jobs_and_break;
4110 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00004111 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004112 if (rword == RES_UNTIL) {
4113 if (!rcode) {
4114 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004115 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004116 checkjobs(NULL);
4117 break;
4118 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00004119 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00004120 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004121#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00004122
4123 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00004124 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004125 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004126
4127#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00004128 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004129#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004130#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004131 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004132 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004133 free(for_list);
4134#endif
4135#if ENABLE_HUSH_CASE
4136 free(case_word);
4137#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004138 debug_leave();
4139 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004140 return rcode;
4141}
4142
Eric Andersen25f27032001-04-26 23:22:31 +00004143/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004144static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004145{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004146 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004147 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004148 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004149 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004150 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004151 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004152 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004153 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004154 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004155 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004156 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004157 return rcode;
4158}
4159
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004160
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004161static struct pipe *new_pipe(void)
4162{
Eric Andersen25f27032001-04-26 23:22:31 +00004163 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004164 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004165 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004166 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004167 return pi;
4168}
4169
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004170/* Command (member of a pipe) is complete, or we start a new pipe
4171 * if ctx->command is NULL.
4172 * No errors possible here.
4173 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004174static int done_command(struct parse_context *ctx)
4175{
4176 /* The command is really already in the pipe structure, so
4177 * advance the pipe counter and make a new, null command. */
4178 struct pipe *pi = ctx->pipe;
4179 struct command *command = ctx->command;
4180
4181 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004182 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004183 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004184 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004185 }
4186 pi->num_cmds++;
4187 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004188 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004189 } else {
4190 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4191 }
4192
4193 /* Only real trickiness here is that the uncommitted
4194 * command structure is not counted in pi->num_cmds. */
4195 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004196 ctx->command = command = &pi->cmds[pi->num_cmds];
4197 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004198 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004199 return pi->num_cmds; /* used only for 0/nonzero check */
4200}
4201
4202static void done_pipe(struct parse_context *ctx, pipe_style type)
4203{
4204 int not_null;
4205
4206 debug_printf_parse("done_pipe entered, followup %d\n", type);
4207 /* Close previous command */
4208 not_null = done_command(ctx);
4209 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004210#if HAS_KEYWORDS
4211 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4212 ctx->ctx_inverted = 0;
4213 ctx->pipe->res_word = ctx->ctx_res_w;
4214#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004215
4216 /* Without this check, even just <enter> on command line generates
4217 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004218 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004219 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004220#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004221 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004222#endif
4223#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004224 || ctx->ctx_res_w == RES_DONE
4225 || ctx->ctx_res_w == RES_FOR
4226 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004227#endif
4228#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004229 || ctx->ctx_res_w == RES_ESAC
4230#endif
4231 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004232 struct pipe *new_p;
4233 debug_printf_parse("done_pipe: adding new pipe: "
4234 "not_null:%d ctx->ctx_res_w:%d\n",
4235 not_null, ctx->ctx_res_w);
4236 new_p = new_pipe();
4237 ctx->pipe->next = new_p;
4238 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004239 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004240 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004241 * This is used to control execution.
4242 * RES_FOR and RES_IN are NOT sticky (needed to support
4243 * cases where variable or value happens to match a keyword):
4244 */
4245#if ENABLE_HUSH_LOOPS
4246 if (ctx->ctx_res_w == RES_FOR
4247 || ctx->ctx_res_w == RES_IN)
4248 ctx->ctx_res_w = RES_NONE;
4249#endif
4250#if ENABLE_HUSH_CASE
4251 if (ctx->ctx_res_w == RES_MATCH)
4252 ctx->ctx_res_w = RES_CASEI;
4253#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004254 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004255 /* Create the memory for command, roughly:
4256 * ctx->pipe->cmds = new struct command;
4257 * ctx->command = &ctx->pipe->cmds[0];
4258 */
4259 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004260 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004261 }
4262 debug_printf_parse("done_pipe return\n");
4263}
4264
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004265static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004266{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004267 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004268 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004269 /* Create the memory for command, roughly:
4270 * ctx->pipe->cmds = new struct command;
4271 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004272 */
4273 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004274}
4275
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004276/* If a reserved word is found and processed, parse context is modified
4277 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004278 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004279#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004280struct reserved_combo {
4281 char literal[6];
4282 unsigned char res;
4283 unsigned char assignment_flag;
4284 int flag;
4285};
4286enum {
4287 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004288#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004289 FLAG_IF = (1 << RES_IF ),
4290 FLAG_THEN = (1 << RES_THEN ),
4291 FLAG_ELIF = (1 << RES_ELIF ),
4292 FLAG_ELSE = (1 << RES_ELSE ),
4293 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004294#endif
4295#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004296 FLAG_FOR = (1 << RES_FOR ),
4297 FLAG_WHILE = (1 << RES_WHILE),
4298 FLAG_UNTIL = (1 << RES_UNTIL),
4299 FLAG_DO = (1 << RES_DO ),
4300 FLAG_DONE = (1 << RES_DONE ),
4301 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004302#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004303#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004304 FLAG_MATCH = (1 << RES_MATCH),
4305 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004306#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004307 FLAG_START = (1 << RES_XXXX ),
4308};
4309
4310static const struct reserved_combo* match_reserved_word(o_string *word)
4311{
Eric Andersen25f27032001-04-26 23:22:31 +00004312 /* Mostly a list of accepted follow-up reserved words.
4313 * FLAG_END means we are done with the sequence, and are ready
4314 * to turn the compound list into a command.
4315 * FLAG_START means the word must start a new compound list.
4316 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004317 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004318#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004319 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4320 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4321 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4322 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4323 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4324 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004325#endif
4326#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004327 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4328 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4329 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4330 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4331 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4332 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004333#endif
4334#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004335 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4336 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004337#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004338 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004339 const struct reserved_combo *r;
4340
4341 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4342 if (strcmp(word->data, r->literal) == 0)
4343 return r;
4344 }
4345 return NULL;
4346}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004347/* Return 0: not a keyword, 1: keyword
4348 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004349static int reserved_word(o_string *word, struct parse_context *ctx)
4350{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004351#if ENABLE_HUSH_CASE
4352 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004353 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004354 };
4355#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004356 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004357
Denis Vlasenkobb929512009-04-16 10:59:40 +00004358 if (word->o_quoted)
4359 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004360 r = match_reserved_word(word);
4361 if (!r)
4362 return 0;
4363
4364 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004365#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004366 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4367 /* "case word IN ..." - IN part starts first match part */
4368 r = &reserved_match;
4369 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004370#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004371 if (r->flag == 0) { /* '!' */
4372 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004373 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004374 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004375 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004376 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004377 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004378 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004379 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004380 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004381
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004382 old = xmalloc(sizeof(*old));
4383 debug_printf_parse("push stack %p\n", old);
4384 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004385 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004386 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004387 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004388 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004389 ctx->ctx_res_w = RES_SNTX;
4390 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004391 } else {
4392 /* "{...} fi" is ok. "{...} if" is not
4393 * Example:
4394 * if { echo foo; } then { echo bar; } fi */
4395 if (ctx->command->group)
4396 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004397 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004398
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004399 ctx->ctx_res_w = r->res;
4400 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004401 word->o_assignment = r->assignment_flag;
4402
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004403 if (ctx->old_flag & FLAG_END) {
4404 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004405
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004406 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004407 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004408 old = ctx->stack;
4409 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004410 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004411#if !BB_MMU
4412 o_addstr(&old->as_string, ctx->as_string.data);
4413 o_free_unsafe(&ctx->as_string);
4414 old->command->group_as_string = xstrdup(old->as_string.data);
4415 debug_printf_parse("pop, remembering as:'%s'\n",
4416 old->command->group_as_string);
4417#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004418 *ctx = *old; /* physical copy */
4419 free(old);
4420 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004421 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004422}
Denis Vlasenko06810332007-05-21 23:30:54 +00004423#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004424
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004425/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004426 * Normal return is 0. Syntax errors return 1.
4427 * Note: on return, word is reset, but not o_free'd!
4428 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004429static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004430{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004431 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004432
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004433 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004434 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004435 debug_printf_parse("done_word return 0: true null, ignored\n");
4436 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004437 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004438
Eric Andersen25f27032001-04-26 23:22:31 +00004439 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004440 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4441 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004442 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4443 * "2.7 Redirection
4444 * ...the word that follows the redirection operator
4445 * shall be subjected to tilde expansion, parameter expansion,
4446 * command substitution, arithmetic expansion, and quote
4447 * removal. Pathname expansion shall not be performed
4448 * on the word by a non-interactive shell; an interactive
4449 * shell may perform it, but shall do so only when
4450 * the expansion would result in one word."
4451 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004452 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004453 /* Cater for >\file case:
4454 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4455 * Same with heredocs:
4456 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4457 */
4458 unbackslash(ctx->pending_redirect->rd_filename);
4459 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004460 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4461 && word->o_quoted
4462 ) {
4463 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4464 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004465 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004466 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004467 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004468 /* If this word wasn't an assignment, next ones definitely
4469 * can't be assignments. Even if they look like ones. */
4470 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4471 && word->o_assignment != WORD_IS_KEYWORD
4472 ) {
4473 word->o_assignment = NOT_ASSIGNMENT;
4474 } else {
4475 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4476 command->assignment_cnt++;
4477 word->o_assignment = MAYBE_ASSIGNMENT;
4478 }
4479
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004480#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004481# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004482 if (ctx->ctx_dsemicolon
4483 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4484 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004485 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004486 /* ctx->ctx_res_w = RES_MATCH; */
4487 ctx->ctx_dsemicolon = 0;
4488 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004489# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004490 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004491# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004492 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4493 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004494# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004495 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004496 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004497 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004498 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004499 debug_printf_parse("done_word return %d\n",
4500 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004501 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004502 }
Eric Andersen25f27032001-04-26 23:22:31 +00004503 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004504#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004505 if (command->group) {
4506 /* "{ echo foo; } echo bar" - bad */
4507 syntax_error_at(word->data);
4508 debug_printf_parse("done_word return 1: syntax error, "
4509 "groups and arglists don't mix\n");
4510 return 1;
4511 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004512 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004513 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4514 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004515 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004516 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004517 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004518 char *p = word->data;
4519 while (p[0] == SPECIAL_VAR_SYMBOL
4520 && (p[1] & 0x7f) == '@'
4521 && p[2] == SPECIAL_VAR_SYMBOL
4522 ) {
4523 p += 3;
4524 }
4525 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004526 /* saw no "$@", or not only "$@" but some
4527 * real text is there too */
4528 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004529 * e.g. "", $empty"" etc to not disappear */
4530 o_addchr(word, SPECIAL_VAR_SYMBOL);
4531 o_addchr(word, SPECIAL_VAR_SYMBOL);
4532 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004533 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004534 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004535 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004536 }
Eric Andersen25f27032001-04-26 23:22:31 +00004537
Denis Vlasenko06810332007-05-21 23:30:54 +00004538#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004539 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004540 if (word->o_quoted
4541 || !is_well_formed_var_name(command->argv[0], '\0')
4542 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004543 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004544 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004545 return 1;
4546 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004547 /* Force FOR to have just one word (variable name) */
4548 /* NB: basically, this makes hush see "for v in ..."
4549 * syntax as if it is "for v; in ...". FOR and IN become
4550 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004551 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004552 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004553#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004554#if ENABLE_HUSH_CASE
4555 /* Force CASE to have just one word */
4556 if (ctx->ctx_res_w == RES_CASE) {
4557 done_pipe(ctx, PIPE_SEQ);
4558 }
4559#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004560
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004561 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004562
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004563 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004564 return 0;
4565}
4566
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004567
4568/* Peek ahead in the input to find out if we have a "&n" construct,
4569 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004570 * Return:
4571 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4572 * REDIRFD_SYNTAX_ERR if syntax error,
4573 * REDIRFD_TO_FILE if no & was seen,
4574 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004575 */
4576#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004577#define parse_redir_right_fd(as_string, input) \
4578 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004579#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004580static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004581{
4582 int ch, d, ok;
4583
4584 ch = i_peek(input);
4585 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004586 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004587
4588 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004589 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004590 ch = i_peek(input);
4591 if (ch == '-') {
4592 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004593 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004594 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004595 }
4596 d = 0;
4597 ok = 0;
4598 while (ch != EOF && isdigit(ch)) {
4599 d = d*10 + (ch-'0');
4600 ok = 1;
4601 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004602 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004603 ch = i_peek(input);
4604 }
4605 if (ok) return d;
4606
4607//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4608
4609 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004610 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004611}
4612
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004613/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004614 */
4615static int parse_redirect(struct parse_context *ctx,
4616 int fd,
4617 redir_type style,
4618 struct in_str *input)
4619{
4620 struct command *command = ctx->command;
4621 struct redir_struct *redir;
4622 struct redir_struct **redirp;
4623 int dup_num;
4624
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004625 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004626 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004627 /* Check for a '>&1' type redirect */
4628 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4629 if (dup_num == REDIRFD_SYNTAX_ERR)
4630 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004631 } else {
4632 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004633 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004634 if (dup_num) { /* <<-... */
4635 ch = i_getch(input);
4636 nommu_addchr(&ctx->as_string, ch);
4637 ch = i_peek(input);
4638 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004639 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004640
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004641 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004642 int ch = i_peek(input);
4643 if (ch == '|') {
4644 /* >|FILE redirect ("clobbering" >).
4645 * Since we do not support "set -o noclobber" yet,
4646 * >| and > are the same for now. Just eat |.
4647 */
4648 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004649 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004650 }
4651 }
4652
4653 /* Create a new redir_struct and append it to the linked list */
4654 redirp = &command->redirects;
4655 while ((redir = *redirp) != NULL) {
4656 redirp = &(redir->next);
4657 }
4658 *redirp = redir = xzalloc(sizeof(*redir));
4659 /* redir->next = NULL; */
4660 /* redir->rd_filename = NULL; */
4661 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004662 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004663
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004664 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4665 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004666
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004667 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004668 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004669 /* Erik had a check here that the file descriptor in question
4670 * is legit; I postpone that to "run time"
4671 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004672 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4673 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004674 } else {
4675 /* Set ctx->pending_redirect, so we know what to do at the
4676 * end of the next parsed word. */
4677 ctx->pending_redirect = redir;
4678 }
4679 return 0;
4680}
4681
Eric Andersen25f27032001-04-26 23:22:31 +00004682/* If a redirect is immediately preceded by a number, that number is
4683 * supposed to tell which file descriptor to redirect. This routine
4684 * looks for such preceding numbers. In an ideal world this routine
4685 * needs to handle all the following classes of redirects...
4686 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4687 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4688 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4689 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004690 *
4691 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4692 * "2.7 Redirection
4693 * ... If n is quoted, the number shall not be recognized as part of
4694 * the redirection expression. For example:
4695 * echo \2>a
4696 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004697 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004698 *
4699 * A -1 return means no valid number was found,
4700 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004701 */
4702static int redirect_opt_num(o_string *o)
4703{
4704 int num;
4705
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004706 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004707 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004708 num = bb_strtou(o->data, NULL, 10);
4709 if (errno || num < 0)
4710 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004711 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004712 return num;
4713}
4714
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004715#if BB_MMU
4716#define fetch_till_str(as_string, input, word, skip_tabs) \
4717 fetch_till_str(input, word, skip_tabs)
4718#endif
4719static char *fetch_till_str(o_string *as_string,
4720 struct in_str *input,
4721 const char *word,
4722 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004723{
4724 o_string heredoc = NULL_O_STRING;
4725 int past_EOL = 0;
4726 int ch;
4727
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004728 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004729 while (1) {
4730 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004731 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004732 if (ch == '\n') {
4733 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4734 heredoc.data[past_EOL] = '\0';
4735 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4736 return heredoc.data;
4737 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004738 do {
4739 o_addchr(&heredoc, ch);
4740 past_EOL = heredoc.length;
4741 jump_in:
4742 do {
4743 ch = i_getch(input);
4744 nommu_addchr(as_string, ch);
4745 } while (skip_tabs && ch == '\t');
4746 } while (ch == '\n');
4747 }
4748 if (ch == EOF) {
4749 o_free_unsafe(&heredoc);
4750 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004751 }
4752 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004753 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004754 }
4755}
4756
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004757/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4758 * and load them all. There should be exactly heredoc_cnt of them.
4759 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004760static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4761{
4762 struct pipe *pi = ctx->list_head;
4763
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004764 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004765 int i;
4766 struct command *cmd = pi->cmds;
4767
4768 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4769 pi->num_cmds,
4770 cmd->argv ? cmd->argv[0] : "NONE");
4771 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004772 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004773
4774 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4775 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004776 while (redir) {
4777 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004778 char *p;
4779
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004780 redir->rd_type = REDIRECT_HEREDOC2;
4781 /* redir->dup is (ab)used to indicate <<- */
4782 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004783 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004784 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004785 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004786 return 1;
4787 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004788 free(redir->rd_filename);
4789 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004790 heredoc_cnt--;
4791 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004792 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004793 }
4794 cmd++;
4795 }
4796 pi = pi->next;
4797 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004798#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004799 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004800 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004801 bb_error_msg_and_die("heredoc BUG 2");
4802#endif
4803 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004804}
4805
4806
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004807#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004808static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004809{
4810 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004811 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004812#if !BB_MMU
4813 char **to_free;
4814#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004815
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004816 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004817 pid = BB_MMU ? fork() : vfork();
4818 if (pid < 0)
4819 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004820
Denis Vlasenko05743d72008-02-10 12:10:08 +00004821 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004822 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004823 /* Process substitution is not considered to be usual
4824 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004825 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4826 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004827 bb_signals(0
4828 + (1 << SIGTSTP)
4829 + (1 << SIGTTIN)
4830 + (1 << SIGTTOU)
4831 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004832 close(channel[0]); /* NB: close _first_, then move fd! */
4833 xmove_fd(channel[1], 1);
4834 /* Prevent it from trying to handle ctrl-z etc */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00004835 IF_HUSH_JOB(G.run_list_level = 1;)
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004836#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004837 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004838 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004839 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004840#else
4841 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004842 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4843 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004844 * echo OK
4845 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004846 re_execute_shell(&to_free,
4847 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004848 G.global_argv[0],
4849 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004850#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004851 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004852
4853 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004854 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004855#if !BB_MMU
4856 free(to_free);
4857#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004858 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004859 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004860 return pf;
4861}
4862
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004863/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004864static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004865{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004866 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004867 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004868 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004869
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004870 pf = generate_stream_from_string(s);
4871 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004872 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004873 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004874
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004875 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004876 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004877 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004878 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004879 if (ch == '\n') {
4880 eol_cnt++;
4881 continue;
4882 }
4883 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004884 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004885 eol_cnt--;
4886 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004887 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004888 }
4889
4890 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004891 /* Note: we got EOF, and we just close the read end of the pipe.
4892 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004893 * Try these:
4894 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4895 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004896 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004897 fclose(pf);
4898 debug_printf("closed FILE from child. return 0\n");
4899 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004900}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004901#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004902
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004903static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004904 struct in_str *input, int ch)
4905{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004906 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004907 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004908 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004909 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004910 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004911 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004912
4913 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004914#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004915 if (ch == '(' && !dest->o_quoted) {
4916 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004917 if (done_word(dest, ctx))
4918 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004919 if (!command->argv)
4920 goto skip; /* (... */
4921 if (command->argv[1]) { /* word word ... (... */
4922 syntax_error_unexpected_ch('(');
4923 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004924 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004925 /* it is "word(..." or "word (..." */
4926 do
4927 ch = i_getch(input);
4928 while (ch == ' ' || ch == '\t');
4929 if (ch != ')') {
4930 syntax_error_unexpected_ch(ch);
4931 return 1;
4932 }
4933 nommu_addchr(&ctx->as_string, ch);
4934 do
4935 ch = i_getch(input);
4936 while (ch == ' ' || ch == '\t' || ch == '\n');
4937 if (ch != '{') {
4938 syntax_error_unexpected_ch(ch);
4939 return 1;
4940 }
4941 nommu_addchr(&ctx->as_string, ch);
4942 command->grp_type = GRP_FUNCTION;
4943 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004944 }
4945#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004946 if (command->argv /* word [word]{... */
4947 || dest->length /* word{... */
4948 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004949 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004950 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004951 debug_printf_parse("parse_group return 1: "
4952 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004953 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004954 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004955
4956#if ENABLE_HUSH_FUNCTIONS
4957 skip:
4958#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004959 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004960 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004961 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004962 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004963 } else {
4964 /* bash does not allow "{echo...", requires whitespace */
4965 ch = i_getch(input);
4966 if (ch != ' ' && ch != '\t' && ch != '\n') {
4967 syntax_error_unexpected_ch(ch);
4968 return 1;
4969 }
4970 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004971 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004972
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004973 {
4974#if !BB_MMU
4975 char *as_string = NULL;
4976#endif
4977 pipe_list = parse_stream(&as_string, input, endch);
4978#if !BB_MMU
4979 if (as_string)
4980 o_addstr(&ctx->as_string, as_string);
4981#endif
4982 /* empty ()/{} or parse error? */
4983 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004984 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004985#if !BB_MMU
4986 free(as_string);
4987#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004988 debug_printf_parse("parse_group return 1: "
4989 "parse_stream returned %p\n", pipe_list);
4990 return 1;
4991 }
4992 command->group = pipe_list;
4993#if !BB_MMU
4994 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4995 command->group_as_string = as_string;
4996 debug_printf_parse("end of group, remembering as:'%s'\n",
4997 command->group_as_string);
4998#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004999 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005000 debug_printf_parse("parse_group return 0\n");
5001 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00005002 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00005003}
5004
Mike Frysinger98c52642009-04-02 10:02:37 +00005005#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005006/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005007static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005008/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005009static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005010{
5011 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005012 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005013 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005014 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005015 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005016 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005017 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005018 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005019 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005020 }
5021}
5022/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005023static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005024{
5025 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005026 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005027 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005028 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005029 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005030 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005031 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005032 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005033 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005034 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005035 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005036 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005037 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005038 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005039 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005040 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005041 continue;
5042 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00005043 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005044 }
5045}
5046/* Process `cmd` - copy contents until "`" is seen. Complicated by
5047 * \` quoting.
5048 * "Within the backquoted style of command substitution, backslash
5049 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
5050 * The search for the matching backquote shall be satisfied by the first
5051 * backquote found without a preceding backslash; during this search,
5052 * if a non-escaped backquote is encountered within a shell comment,
5053 * a here-document, an embedded command substitution of the $(command)
5054 * form, or a quoted string, undefined results occur. A single-quoted
5055 * or double-quoted string that begins, but does not end, within the
5056 * "`...`" sequence produces undefined results."
5057 * Example Output
5058 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
5059 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005060static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005061{
5062 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005063 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005064 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005065 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005066 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005067 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005068 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005069 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005070 if (ch == '\\') {
5071 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005072 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005073 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005074 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005075 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005076 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005077 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005078 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005079 ch = ch2;
5080 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005081 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005082 }
5083}
5084/* Process $(cmd) - copy contents until ")" is seen. Complicated by
5085 * quoting and nested ()s.
5086 * "With the $(command) style of command substitution, all characters
5087 * following the open parenthesis to the matching closing parenthesis
5088 * constitute the command. Any valid shell script can be used for command,
5089 * except a script consisting solely of redirections which produces
5090 * unspecified results."
5091 * Example Output
5092 * echo $(echo '(TEST)' BEST) (TEST) BEST
5093 * echo $(echo 'TEST)' BEST) TEST) BEST
5094 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
5095 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005096static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005097{
5098 int count = 0;
5099 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005100 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005101 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005102 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005103 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005104 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005105 if (ch == '(')
5106 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005107 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005108 if (--count < 0) {
5109 if (!dbl)
5110 break;
5111 if (i_peek(input) == ')') {
5112 i_getch(input);
5113 break;
5114 }
5115 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005116 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005117 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005118 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005119 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005120 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005121 continue;
5122 }
5123 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005124 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005125 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005126 continue;
5127 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005128 if (ch == '\\') {
5129 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005130 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005131 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005132 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005133 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005134 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005135 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005136 continue;
5137 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005138 }
5139}
Mike Frysinger98c52642009-04-02 10:02:37 +00005140#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005141
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005142/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005143#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005144#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005145 handle_dollar(dest, input)
5146#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005147static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005148 o_string *dest,
5149 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005150{
Mike Frysinger6379bb42009-03-28 18:55:03 +00005151 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005152 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005153 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005154
5155 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005156 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005157 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005158 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005159 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005160 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005161 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005162 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005163 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005164 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005165 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005166 if (!isalnum(ch) && ch != '_')
5167 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005168 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005169 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005170 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005171 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005172 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005173 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005174 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005175 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005176 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005177 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005178 o_addchr(dest, ch | quote_mask);
5179 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005180 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005181 case '$': /* pid */
5182 case '!': /* last bg pid */
5183 case '?': /* last exit code */
5184 case '#': /* number of args */
5185 case '*': /* args */
5186 case '@': /* args */
5187 goto make_one_char_var;
5188 case '{': {
5189 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005190
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005191 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005192 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005193 nommu_addchr(as_string, ch);
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005194 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005195 expansion = 0;
5196 first_char = true;
5197 all_digits = false;
5198 while (1) {
5199 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005200 nommu_addchr(as_string, ch);
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005201 if (ch == '}') {
Mike Frysinger98c52642009-04-02 10:02:37 +00005202 break;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005203 }
Mike Frysinger98c52642009-04-02 10:02:37 +00005204
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005205 if (first_char) {
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005206 if (ch == '#') {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005207 /* ${#var}: length of var contents */
5208 goto char_ok;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005209 }
5210 if (isdigit(ch)) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005211 all_digits = true;
5212 goto char_ok;
5213 }
5214 }
5215
5216 if (expansion < 2
5217 && ( (all_digits && !isdigit(ch))
5218 || (!all_digits && !isalnum(ch) && ch != '_')
5219 )
5220 ) {
5221 /* handle parameter expansions
5222 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5223 */
5224 if (first_char)
5225 goto case_default;
5226 switch (ch) {
5227 case ':': /* null modifier */
5228 if (expansion == 0) {
5229 debug_printf_parse(": null modifier\n");
5230 ++expansion;
5231 break;
5232 }
5233 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005234 case '#': /* remove prefix */
5235 case '%': /* remove suffix */
5236 if (expansion == 0) {
5237 debug_printf_parse(": remove suffix/prefix\n");
5238 expansion = 2;
5239 break;
5240 }
5241 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005242 case '-': /* default value */
5243 case '=': /* assign default */
5244 case '+': /* alternative */
5245 case '?': /* error indicate */
5246 debug_printf_parse(": parameter expansion\n");
5247 expansion = 2;
5248 break;
5249 default:
5250 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005251 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005252 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5253 return 1;
5254 }
5255 }
5256 char_ok:
5257 debug_printf_parse(": '%c'\n", ch);
5258 o_addchr(dest, ch | quote_mask);
5259 quote_mask = 0;
5260 first_char = false;
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005261 } /* while (1) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005262 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5263 break;
5264 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005265#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005266 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005267# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005268 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005269# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005270 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005271 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005272# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005273 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005274 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005275 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005276 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5277 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005278# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005279 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005280# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005281 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005282# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005283 if (as_string) {
5284 o_addstr(as_string, dest->data + pos);
5285 o_addchr(as_string, ')');
5286 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005287 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005288# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005289 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005290 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005291 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005292# endif
5293# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005294 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5295 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005296# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005297 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005298# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005299 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005300# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005301 if (as_string) {
5302 o_addstr(as_string, dest->data + pos);
5303 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005304 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005305# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005306 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005307# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005308 break;
5309 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005310#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005311 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005312 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005313 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005314 ch = i_peek(input);
5315 if (isalnum(ch)) { /* it's $_name or $_123 */
5316 ch = '_';
5317 goto make_var;
5318 }
5319 /* else: it's $_ */
5320 /* TODO: */
5321 /* $_ Shell or shell script name; or last cmd name */
5322 /* $- Option flags set by set builtin or shell options (-i etc) */
5323 default:
5324 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005325 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005326 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005327 return 0;
5328}
5329
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005330#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005331#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005332 parse_stream_dquoted(dest, input, dquote_end)
5333#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005334static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005335 o_string *dest,
5336 struct in_str *input,
5337 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005338{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005339 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005340 int next;
5341
5342 again:
5343 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005344 if (ch != EOF)
5345 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005346 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005347 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005348 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005349 debug_printf_parse("parse_stream_dquoted return 0\n");
5350 return 0;
5351 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005352 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005353 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005354 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005355 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005356 }
5357 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005358 if (ch != '\n') {
5359 next = i_peek(input);
5360 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005361 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5362 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005363 if (ch == '\\') {
5364 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005365 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005366 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005367 }
5368 /* bash:
5369 * "The backslash retains its special meaning [in "..."]
5370 * only when followed by one of the following characters:
5371 * $, `, ", \, or <newline>. A double quote may be quoted
5372 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005373 */
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005374 if (strchr("$`\"\\\n", next) != NULL) {
Denis Vlasenko57293002009-04-26 20:06:14 +00005375 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005376 if (ch != '\n') {
5377 o_addqchr(dest, ch);
5378 nommu_addchr(as_string, ch);
5379 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005380 } else {
5381 o_addqchr(dest, '\\');
Denis Vlasenko57293002009-04-26 20:06:14 +00005382 nommu_addchr(as_string, '\\');
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005383 }
5384 goto again;
5385 }
5386 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005387 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005388 debug_printf_parse("parse_stream_dquoted return 1: "
5389 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005390 return 1;
5391 }
5392 goto again;
5393 }
5394#if ENABLE_HUSH_TICK
5395 if (ch == '`') {
5396 //int pos = dest->length;
5397 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5398 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005399 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005400 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5401 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005402 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005403 }
5404#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005405 o_addQchr(dest, ch);
5406 if (ch == '='
5407 && (dest->o_assignment == MAYBE_ASSIGNMENT
5408 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005409 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005410 ) {
5411 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5412 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005413 goto again;
5414}
5415
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005416/*
5417 * Scan input until EOF or end_trigger char.
5418 * Return a list of pipes to execute, or NULL on EOF
5419 * or if end_trigger character is met.
5420 * On syntax error, exit is shell is not interactive,
5421 * reset parsing machinery and start parsing anew,
5422 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005423 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005424static struct pipe *parse_stream(char **pstring,
5425 struct in_str *input,
5426 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005427{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005428 struct parse_context ctx;
5429 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005430 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005431 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005432
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005433 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005434 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005435 * found. When recursing, quote state is passed in via dest->o_escape.
5436 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005437 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5438 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005439 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005440
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005441 G.ifs = get_local_var_value("IFS");
5442 if (G.ifs == NULL)
5443 G.ifs = " \t\n";
5444
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005445 reset:
5446#if ENABLE_HUSH_INTERACTIVE
5447 input->promptmode = 0; /* PS1 */
5448#endif
5449 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5450 initialize_context(&ctx);
5451 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005452 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005453 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005454 const char *is_ifs;
5455 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005456 int ch;
5457 int next;
5458 int redir_fd;
5459 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005460
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005461 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005462 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005463 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005464 goto parse_error;
5465 }
5466 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005467 is_in_dquote = 0;
5468 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005469 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005470 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5471 ch, ch, dest.o_escape);
5472 if (ch == EOF) {
5473 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005474
5475 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005476 syntax_error_unterm_str("here document");
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005477 goto parse_error;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005478 }
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005479 /* end_trigger == '}' case errors out earlier,
5480 * checking only ')' */
5481 if (end_trigger == ')') {
5482 syntax_error_unterm_ch('('); /* exits */
5483 /* goto parse_error; */
5484 }
5485
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005486 if (done_word(&dest, &ctx)) {
Denys Vlasenkob1cfc452009-05-02 17:18:34 +02005487 goto parse_error;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005488 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005489 o_free(&dest);
5490 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005491 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005492 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005493 /* (this makes bare "&" cmd a no-op.
5494 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005495 if (pi->num_cmds == 0
5496 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5497 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005498 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005499 pi = NULL;
5500 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005501#if !BB_MMU
5502 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5503 if (pstring)
5504 *pstring = ctx.as_string.data;
5505 else
5506 o_free_unsafe(&ctx.as_string);
5507#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005508 debug_leave();
5509 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005510 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005511 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005512 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005513 is_ifs = strchr(G.ifs, ch);
5514 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005515 "\\$\"" IF_HUSH_TICK("`") /* always special */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005516 , ch);
5517
5518 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkobf25fbc2009-04-19 13:57:51 +00005519 ordinary_char:
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005520 o_addQchr(&dest, ch);
5521 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5522 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005523 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005524 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005525 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005526 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005527 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005528 continue;
5529 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005530
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005531 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005532 if (done_word(&dest, &ctx)) {
5533 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005534 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005535 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005536#if ENABLE_HUSH_CASE
5537 /* "case ... in <newline> word) ..." -
5538 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005539 if (ctx.command->argv == NULL
5540 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005541 ) {
5542 continue;
5543 }
5544#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005545 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005546 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005547 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5548 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005549 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005550 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005551 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005552 heredoc_cnt = 0;
5553 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005554 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005555 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005556 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005557 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005558 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005559 }
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005560
5561 /* "cmd}" or "cmd }..." without semicolon or &:
5562 * } is an ordinary char in this case, even inside { cmd; }
5563 * Pathological example: { ""}; } should exec "}" cmd
5564 */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005565 if (ch == '}') {
5566 if (!IS_NULL_CMD(ctx.command) /* cmd } */
5567 || dest.length != 0 /* word} */
5568 || dest.o_quoted /* ""} */
5569 ) {
5570 goto ordinary_char;
5571 }
5572 if (!IS_NULL_PIPE(ctx.pipe)) /* cmd | } */
5573 goto skip_end_trigger;
5574 /* else: } does terminate a group */
Denis Vlasenko9f8d9382009-04-19 14:03:11 +00005575 }
5576
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005577 if (end_trigger && end_trigger == ch
5578 && (heredoc_cnt == 0 || end_trigger != ';')
5579 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005580 if (heredoc_cnt) {
5581 /* This is technically valid:
5582 * { cat <<HERE; }; echo Ok
5583 * heredoc
5584 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005585 * HERE
5586 * but we don't support this.
5587 * We require heredoc to be in enclosing {}/(),
5588 * if any.
5589 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005590 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005591 goto parse_error;
5592 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005593 if (done_word(&dest, &ctx)) {
5594 goto parse_error;
5595 }
5596 done_pipe(&ctx, PIPE_SEQ);
5597 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005598 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005599 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005600 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005601 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005602 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005603#if !BB_MMU
5604 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5605 if (pstring)
5606 *pstring = ctx.as_string.data;
5607 else
5608 o_free_unsafe(&ctx.as_string);
5609#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005610 debug_leave();
5611 debug_printf_parse("parse_stream return %p: "
5612 "end_trigger char found\n",
5613 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005614 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005615 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005616 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00005617 skip_end_trigger:
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005618 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005619 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005620
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005621 next = '\0';
5622 if (ch != '\n') {
5623 next = i_peek(input);
5624 }
5625
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005626 /* Catch <, > before deciding whether this word is
5627 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5628 switch (ch) {
5629 case '>':
5630 redir_fd = redirect_opt_num(&dest);
5631 if (done_word(&dest, &ctx)) {
5632 goto parse_error;
5633 }
5634 redir_style = REDIRECT_OVERWRITE;
5635 if (next == '>') {
5636 redir_style = REDIRECT_APPEND;
5637 ch = i_getch(input);
5638 nommu_addchr(&ctx.as_string, ch);
5639 }
5640#if 0
5641 else if (next == '(') {
5642 syntax_error(">(process) not supported");
5643 goto parse_error;
5644 }
5645#endif
5646 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5647 goto parse_error;
5648 continue; /* back to top of while (1) */
5649 case '<':
5650 redir_fd = redirect_opt_num(&dest);
5651 if (done_word(&dest, &ctx)) {
5652 goto parse_error;
5653 }
5654 redir_style = REDIRECT_INPUT;
5655 if (next == '<') {
5656 redir_style = REDIRECT_HEREDOC;
5657 heredoc_cnt++;
5658 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5659 ch = i_getch(input);
5660 nommu_addchr(&ctx.as_string, ch);
5661 } else if (next == '>') {
5662 redir_style = REDIRECT_IO;
5663 ch = i_getch(input);
5664 nommu_addchr(&ctx.as_string, ch);
5665 }
5666#if 0
5667 else if (next == '(') {
5668 syntax_error("<(process) not supported");
5669 goto parse_error;
5670 }
5671#endif
5672 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5673 goto parse_error;
5674 continue; /* back to top of while (1) */
5675 }
5676
5677 if (dest.o_assignment == MAYBE_ASSIGNMENT
5678 /* check that we are not in word in "a=1 2>word b=1": */
5679 && !ctx.pending_redirect
5680 ) {
5681 /* ch is a special char and thus this word
5682 * cannot be an assignment */
5683 dest.o_assignment = NOT_ASSIGNMENT;
5684 }
5685
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005686 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005687 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005688 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005689 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005690 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005691 if (ch == EOF || ch == '\n')
5692 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005693 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005694 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005695 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005696 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005697 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005698 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005699 }
5700 break;
5701 case '\\':
5702 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005703 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005704 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005705 }
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005706 ch = i_getch(input);
Denys Vlasenkoe19e1932009-05-03 02:15:18 +02005707 if (ch != '\n') {
5708 o_addchr(&dest, '\\');
5709 nommu_addchr(&ctx.as_string, '\\');
5710 o_addchr(&dest, ch);
5711 nommu_addchr(&ctx.as_string, ch);
5712 /* Example: echo Hello \2>file
5713 * we need to know that word 2 is quoted */
5714 dest.o_quoted = 1;
5715 }
Eric Andersen25f27032001-04-26 23:22:31 +00005716 break;
5717 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005718 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005719 debug_printf_parse("parse_stream parse error: "
5720 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005721 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005722 }
Eric Andersen25f27032001-04-26 23:22:31 +00005723 break;
5724 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005725 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005726 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005727 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005728 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005729 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005730 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005731 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005732 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005733 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005734 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005735 if (dest.o_assignment == NOT_ASSIGNMENT)
5736 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005737 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005738 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005739 }
Eric Andersen25f27032001-04-26 23:22:31 +00005740 break;
5741 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005742 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005743 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005744 if (dest.o_assignment == NOT_ASSIGNMENT)
5745 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005746 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005747#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005748 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005749#if !BB_MMU
5750 int pos;
5751#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005752 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5753 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005754#if !BB_MMU
5755 pos = dest.length;
5756#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005757 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005758#if !BB_MMU
5759 o_addstr(&ctx.as_string, dest.data + pos);
5760 o_addchr(&ctx.as_string, '`');
5761#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005762 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5763 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005764 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005765 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005766#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005767 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005768#if ENABLE_HUSH_CASE
5769 case_semi:
5770#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005771 if (done_word(&dest, &ctx)) {
5772 goto parse_error;
5773 }
5774 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005775#if ENABLE_HUSH_CASE
5776 /* Eat multiple semicolons, detect
5777 * whether it means something special */
5778 while (1) {
5779 ch = i_peek(input);
5780 if (ch != ';')
5781 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005782 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005783 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005784 if (ctx.ctx_res_w == RES_CASEI) {
5785 ctx.ctx_dsemicolon = 1;
5786 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005787 break;
5788 }
5789 }
5790#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005791 new_cmd:
5792 /* We just finished a cmd. New one may start
5793 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005794 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005795 break;
5796 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005797 if (done_word(&dest, &ctx)) {
5798 goto parse_error;
5799 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005800 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005801 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005802 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005803 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005804 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005805 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005806 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005807 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005808 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005809 if (done_word(&dest, &ctx)) {
5810 goto parse_error;
5811 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005812#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005813 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005814 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005815#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005816 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005817 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005818 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005819 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005820 } else {
5821 /* we could pick up a file descriptor choice here
5822 * with redirect_opt_num(), but bash doesn't do it.
5823 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005824 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005825 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005826 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005827 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005828#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005829 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005830 if (ctx.ctx_res_w == RES_MATCH
5831 && ctx.command->argv == NULL /* not (word|(... */
5832 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005833 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005834 ) {
5835 continue;
5836 }
5837#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005838 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005839 if (parse_group(&dest, &ctx, input, ch) != 0) {
5840 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005841 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005842 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005843 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005844#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005845 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005846 goto case_semi;
5847#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005848 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005849 /* proper use of this character is caught by end_trigger:
5850 * if we see {, we call parse_group(..., end_trigger='}')
5851 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005852 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005853 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005854 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005855 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005856 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005857 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005858 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005859
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005860 parse_error:
5861 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005862 struct parse_context *pctx;
5863 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005864
5865 /* Clean up allocated tree.
5866 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005867 * Run them from interactive shell, watch pmap `pidof hush`.
5868 * while if false; then false; fi do break; done
5869 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005870 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005871 * Samples to catch leaks at execution:
5872 * while if (true | {true;}); then echo ok; fi; do break; done
5873 * 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 +00005874 */
5875 pctx = &ctx;
5876 do {
5877 /* Update pipe/command counts,
5878 * otherwise freeing may miss some */
5879 done_pipe(pctx, PIPE_SEQ);
5880 debug_printf_clean("freeing list %p from ctx %p\n",
5881 pctx->list_head, pctx);
5882 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005883 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005884 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005885#if !BB_MMU
5886 o_free_unsafe(&pctx->as_string);
5887#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005888 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005889 if (pctx != &ctx) {
5890 free(pctx);
5891 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005892 IF_HAS_KEYWORDS(pctx = p2;)
5893 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005894 /* Free text, clear all dest fields */
5895 o_free(&dest);
5896 /* If we are not in top-level parse, we return,
5897 * our caller will propagate error.
5898 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005899 if (end_trigger != ';') {
5900#if !BB_MMU
5901 if (pstring)
5902 *pstring = NULL;
5903#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005904 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005905 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005906 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005907 /* Discard cached input, force prompt */
5908 input->p = NULL;
Denis Vlasenko5e34ff22009-04-21 11:09:40 +00005909 IF_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005910 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005911 }
Eric Andersen25f27032001-04-26 23:22:31 +00005912}
5913
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005914/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005915 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5916 * end_trigger controls how often we stop parsing
5917 * NUL: parse all, execute, return
5918 * ';': parse till ';' or newline, execute, repeat till EOF
5919 */
5920static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005921{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005922 while (1) {
5923 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005924
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005925 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005926 if (!pipe_list) /* EOF */
5927 break;
5928 debug_print_tree(pipe_list, 0);
5929 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5930 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005931 }
Eric Andersen25f27032001-04-26 23:22:31 +00005932}
5933
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005934static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005935{
5936 struct in_str input;
5937 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005938 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005939}
5940
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005941static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005942{
Eric Andersen25f27032001-04-26 23:22:31 +00005943 struct in_str input;
5944 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005945 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005946}
5947
Denis Vlasenkof9375282009-04-05 19:13:39 +00005948/* Called a few times only (or even once if "sh -c") */
5949static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005950{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005951 unsigned sig;
5952 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005953
Denis Vlasenkof9375282009-04-05 19:13:39 +00005954 mask = (1 << SIGQUIT);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00005955 if (G_interactive_fd) {
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005956 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00005957 if (G.saved_tty_pgrp) /* we have ctty, job control sigs work */
5958 mask |= SPECIAL_JOB_SIGS;
5959 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005960 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005961
Denis Vlasenkof9375282009-04-05 19:13:39 +00005962 if (!second_time)
5963 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5964 sig = 0;
5965 while (mask) {
5966 if (mask & 1)
5967 sigaddset(&G.blocked_set, sig);
5968 mask >>= 1;
5969 sig++;
5970 }
5971 sigdelset(&G.blocked_set, SIGCHLD);
5972
5973 sigprocmask(SIG_SETMASK, &G.blocked_set,
5974 second_time ? NULL : &G.inherited_set);
5975 /* POSIX allows shell to re-enable SIGCHLD
5976 * even if it was SIG_IGN on entry */
5977// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5978 if (!second_time)
5979 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5980}
5981
5982#if ENABLE_HUSH_JOB
5983/* helper */
5984static void maybe_set_to_sigexit(int sig)
5985{
5986 void (*handler)(int);
5987 /* non_DFL_mask'ed signals are, well, masked,
5988 * no need to set handler for them.
5989 */
5990 if (!((G.non_DFL_mask >> sig) & 1)) {
5991 handler = signal(sig, sigexit);
5992 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5993 signal(sig, handler);
5994 }
5995}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005996/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005997static void set_fatal_handlers(void)
5998{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005999 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006000 if (HUSH_DEBUG) {
6001 maybe_set_to_sigexit(SIGILL );
6002 maybe_set_to_sigexit(SIGFPE );
6003 maybe_set_to_sigexit(SIGBUS );
6004 maybe_set_to_sigexit(SIGSEGV);
6005 maybe_set_to_sigexit(SIGTRAP);
6006 } /* else: hush is perfect. what SEGV? */
6007 maybe_set_to_sigexit(SIGABRT);
6008 /* bash 3.2 seems to handle these just like 'fatal' ones */
6009 maybe_set_to_sigexit(SIGPIPE);
6010 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006011 /* if we are interactive, SIGHUP, SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00006012 * if we aren't interactive... but in this case
6013 * we never want to restore pgrp on exit, and this fn is not called */
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006014 /*maybe_set_to_sigexit(SIGHUP );*/
Denis Vlasenkof9375282009-04-05 19:13:39 +00006015 /*maybe_set_to_sigexit(SIGTERM);*/
6016 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00006017}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00006018#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00006019
Denis Vlasenkod5762932009-03-31 11:22:57 +00006020static int set_mode(const char cstate, const char mode)
6021{
6022 int state = (cstate == '-' ? 1 : 0);
6023 switch (mode) {
6024 case 'n': G.fake_mode = state; break;
6025 case 'x': /*G.debug_mode = state;*/ break;
6026 default: return EXIT_FAILURE;
6027 }
6028 return EXIT_SUCCESS;
6029}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006030
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00006031int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00006032int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00006033{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006034 static const struct variable const_shell_ver = {
6035 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006036 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006037 .max_len = 1, /* 0 can provoke free(name) */
6038 .flg_export = 1,
6039 .flg_read_only = 1,
6040 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00006041 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00006042 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006043 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006044 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00006045
Denis Vlasenko574f2f42008-02-27 18:41:59 +00006046 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006047 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006048 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006049#if !BB_MMU
6050 G.argv0_for_re_execing = argv[0];
6051#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006052 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006053 G.shell_ver = const_shell_ver; /* copying struct here */
6054 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006055 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006056 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
6057 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006058 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006059 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00006060 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006061 if (e) while (*e) {
6062 char *value = strchr(*e, '=');
6063 if (value) { /* paranoia */
6064 cur_var->next = xzalloc(sizeof(*cur_var));
6065 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006066 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006067 cur_var->max_len = strlen(*e);
6068 cur_var->flg_export = 1;
6069 }
6070 e++;
6071 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006072 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00006073 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00006074#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00006075 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00006076#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00006077 G.global_argc = argc;
6078 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00006079 /* Initialize some more globals to non-zero values */
6080 set_cwd();
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006081 cmdedit_update_prompt();
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00006082
Denis Vlasenkoed782372009-04-10 00:45:02 +00006083 if (setjmp(die_jmp)) {
6084 /* xfunc has failed! die die die */
6085 /* no EXIT traps, this is an escape hatch! */
6086 G.exiting = 1;
6087 hush_exit(xfunc_error_retval);
6088 }
6089
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006090 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006091 * block_signals(0) if we are going to execute "sh <script>",
6092 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006093 * If we later decide that we are interactive, we run block_signals(0)
6094 * (or re-run block_signals(1) if we ran block_signals(0) before)
6095 * in order to intercept (more) signals.
6096 */
6097
6098 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006099 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006100 while (1) {
6101 opt = getopt(argc, argv, "c:xins"
6102#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00006103 "<:$:R:V:"
6104# if ENABLE_HUSH_FUNCTIONS
6105 "F:"
6106# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006107#endif
6108 );
6109 if (opt <= 0)
6110 break;
Eric Andersen25f27032001-04-26 23:22:31 +00006111 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006112 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006113 if (!G.root_pid)
6114 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00006115 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00006116 if (!argv[optind]) {
6117 /* -c 'script' (no params): prevent empty $0 */
6118 *--G.global_argv = argv[0];
6119 optind--;
6120 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00006121 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00006122 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006123 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006124 goto final_return;
6125 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00006126 /* Well, we cannot just declare interactiveness,
6127 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006128 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006129 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00006130 case 's':
6131 /* "-s" means "read from stdin", but this is how we always
6132 * operate, so simply do nothing here. */
6133 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006134#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00006135 case '<': /* "big heredoc" support */
6136 full_write(STDOUT_FILENO, optarg, strlen(optarg));
6137 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006138 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006139 G.root_pid = bb_strtou(optarg, &optarg, 16);
6140 optarg++;
6141 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
6142 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006143 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006144# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006145 optarg++;
6146 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006147# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00006148 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006149 case 'R':
6150 case 'V':
6151 set_local_var(xstrdup(optarg), 0, opt == 'R');
6152 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006153# if ENABLE_HUSH_FUNCTIONS
6154 case 'F': {
6155 struct function *funcp = new_function(optarg);
6156 /* funcp->name is already set to optarg */
6157 /* funcp->body is set to NULL. It's a special case. */
6158 funcp->body_as_string = argv[optind];
6159 optind++;
6160 break;
6161 }
6162# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006163#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006164 case 'n':
6165 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006166 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006167 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006168 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006169#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006170 fprintf(stderr, "Usage: sh [FILE]...\n"
6171 " or: sh -c command [args]...\n\n");
6172 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006173#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006174 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006175#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006176 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006177 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006178
6179 if (!G.root_pid)
6180 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006181
6182 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006183 if (argv[0] && argv[0][0] == '-') {
6184 FILE *input;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006185 debug_printf("sourcing /etc/profile\n");
6186 input = fopen_for_read("/etc/profile");
6187 if (input != NULL) {
6188 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006189 block_signals(0); /* 0: called 1st time */
6190 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006191 parse_and_run_file(input);
6192 fclose(input);
6193 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006194 /* bash: after sourcing /etc/profile,
6195 * tries to source (in the given order):
6196 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6197 * stopping of first found. --noprofile turns this off.
6198 * bash also sources ~/.bash_logout on exit.
6199 * If called as sh, skips .bash_XXX files.
6200 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006201 }
6202
Denis Vlasenkof9375282009-04-05 19:13:39 +00006203 if (argv[optind]) {
6204 FILE *input;
6205 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006206 * "bash <script>" (which is never interactive (unless -i?))
6207 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006208 * If called as sh, does the same but with $ENV.
6209 */
6210 debug_printf("running script '%s'\n", argv[optind]);
6211 G.global_argv = argv + optind;
6212 G.global_argc = argc - optind;
6213 input = xfopen_for_read(argv[optind]);
6214 close_on_exec_on(fileno(input));
6215 if (!signal_mask_is_inited)
6216 block_signals(0); /* 0: called 1st time */
6217 parse_and_run_file(input);
6218#if ENABLE_FEATURE_CLEAN_UP
6219 fclose(input);
6220#endif
6221 goto final_return;
6222 }
6223
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006224 /* Up to here, shell was non-interactive. Now it may become one.
6225 * NB: don't forget to (re)run block_signals(0/1) as needed.
6226 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006227
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006228 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006229 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006230 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006231 * no arguments remaining or the -s flag given
6232 * standard input is a terminal
6233 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006234 * Refer to Posix.2, the description of the 'sh' utility.
6235 */
6236#if ENABLE_HUSH_JOB
6237 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006238 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006239 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006240 if (G.saved_tty_pgrp < 0)
6241 G.saved_tty_pgrp = 0;
6242
6243 /* try to dup stdin to high fd#, >= 255 */
6244 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6245 if (G_interactive_fd < 0) {
6246 /* try to dup to any fd */
6247 G_interactive_fd = dup(STDIN_FILENO);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006248 if (G_interactive_fd < 0) {
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006249 /* give up */
6250 G_interactive_fd = 0;
6251 G.saved_tty_pgrp = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006252 }
6253 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006254// TODO: track & disallow any attempts of user
6255// to (inadvertently) close/redirect G_interactive_fd
Eric Andersen25f27032001-04-26 23:22:31 +00006256 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006257 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006258 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006259 close_on_exec_on(G_interactive_fd);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006260
6261 if (G.saved_tty_pgrp) {
6262 /* If we were run as 'hush &', sleep until we are
6263 * in the foreground (tty pgrp == our pgrp).
6264 * If we get started under a job aware app (like bash),
6265 * make sure we are now in charge so we don't fight over
6266 * who gets the foreground */
6267 while (1) {
6268 pid_t shell_pgrp = getpgrp();
6269 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6270 if (G.saved_tty_pgrp == shell_pgrp)
6271 break;
6272 /* send TTIN to ourself (should stop us) */
6273 kill(- shell_pgrp, SIGTTIN);
6274 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006275 }
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006276
Denis Vlasenkof9375282009-04-05 19:13:39 +00006277 /* Block some signals */
6278 block_signals(signal_mask_is_inited);
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006279
6280 if (G.saved_tty_pgrp) {
6281 /* Set other signals to restore saved_tty_pgrp */
6282 set_fatal_handlers();
6283 /* Put ourselves in our own process group
6284 * (bash, too, does this only if ctty is available) */
6285 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6286 /* Grab control of the terminal */
6287 tcsetpgrp(G_interactive_fd, getpid());
6288 }
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006289 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006290 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006291 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006292 } else if (!signal_mask_is_inited) {
6293 block_signals(0); /* 0: called 1st time */
6294 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006295#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006296 /* No job control compiled in, only prompt/line editing */
6297 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006298 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6299 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006300 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006301 G_interactive_fd = dup(STDIN_FILENO);
6302 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006303 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006304 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006305 }
6306 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006307 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006308 close_on_exec_on(G_interactive_fd);
6309 block_signals(signal_mask_is_inited);
6310 } else if (!signal_mask_is_inited) {
6311 block_signals(0);
6312 }
6313#else
6314 /* We have interactiveness code disabled */
6315 if (!signal_mask_is_inited) {
6316 block_signals(0);
6317 }
6318#endif
6319 /* bash:
6320 * if interactive but not a login shell, sources ~/.bashrc
6321 * (--norc turns this off, --rcfile <file> overrides)
6322 */
6323
6324 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006325 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysinger26cf2832009-04-24 06:40:30 +00006326 if (ENABLE_HUSH_HELP)
6327 puts("Enter 'help' for a list of built-in commands.");
6328 puts("");
Mike Frysingerb2705e12009-03-23 08:44:02 +00006329 }
6330
Denis Vlasenkof9375282009-04-05 19:13:39 +00006331 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006332
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006333 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006334#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006335 if (G.cwd != bb_msg_unknown)
6336 free((char*)G.cwd);
6337 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006338 while (cur_var) {
6339 struct variable *tmp = cur_var;
6340 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006341 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006342 cur_var = cur_var->next;
6343 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006344 }
Eric Andersen25f27032001-04-26 23:22:31 +00006345#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006346 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006347}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006348
6349
6350#if ENABLE_LASH
6351int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6352int lash_main(int argc, char **argv)
6353{
6354 //bb_error_msg("lash is deprecated, please use hush instead");
6355 return hush_main(argc, argv);
6356}
6357#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006358
6359
6360/*
6361 * Built-ins
6362 */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006363static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006364{
6365 return 0;
6366}
6367
6368static int builtin_test(char **argv)
6369{
6370 int argc = 0;
6371 while (*argv) {
6372 argc++;
6373 argv++;
6374 }
6375 return test_main(argc, argv - argc);
6376}
6377
6378static int builtin_echo(char **argv)
6379{
6380 int argc = 0;
6381 while (*argv) {
6382 argc++;
6383 argv++;
6384 }
6385 return echo_main(argc, argv - argc);
6386}
6387
6388static int builtin_eval(char **argv)
6389{
6390 int rcode = EXIT_SUCCESS;
6391
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006392 if (*++argv) {
6393 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006394 /* bash:
6395 * eval "echo Hi; done" ("done" is syntax error):
6396 * "echo Hi" will not execute too.
6397 */
6398 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006399 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006400 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006401 }
6402 return rcode;
6403}
6404
6405static int builtin_cd(char **argv)
6406{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006407 const char *newdir = argv[1];
6408 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006409 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006410 * bash says "bash: cd: HOME not set" and does nothing
6411 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006412 */
Mike Frysinger67c1c7b2009-04-24 06:26:18 +00006413 newdir = get_local_var_value("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006414 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006415 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006416 /* Mimic bash message exactly */
6417 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006418 return EXIT_FAILURE;
6419 }
6420 set_cwd();
6421 return EXIT_SUCCESS;
6422}
6423
6424static int builtin_exec(char **argv)
6425{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006426 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006427 return EXIT_SUCCESS; /* bash does this */
6428 {
6429#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006430 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006431#endif
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006432 /* TODO: if exec fails, bash does NOT exit! We do... */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006433 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006434 /* never returns */
6435 }
6436}
6437
6438static int builtin_exit(char **argv)
6439{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006440 debug_printf_exec("%s()\n", __func__);
Denis Vlasenko40e84372009-04-18 11:23:38 +00006441
6442 /* interactive bash:
6443 * # trap "echo EEE" EXIT
6444 * # exit
6445 * exit
6446 * There are stopped jobs.
6447 * (if there are _stopped_ jobs, running ones don't count)
6448 * # exit
6449 * exit
6450 # EEE (then bash exits)
6451 *
6452 * we can use G.exiting = -1 as indicator "last cmd was exit"
6453 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006454
6455 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006456 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006457 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006458 /* mimic bash: exit 123abc == exit 255 + error msg */
6459 xfunc_error_retval = 255;
6460 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006461 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006462}
6463
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006464static void print_escaped(const char *s)
6465{
6466 do {
6467 if (*s != '\'') {
6468 const char *p;
6469
6470 p = strchrnul(s, '\'');
6471 /* print 'xxxx', possibly just '' */
6472 printf("'%.*s'", (int)(p - s), s);
6473 if (*p == '\0')
6474 break;
6475 s = p;
6476 }
6477 /* s points to '; print "'''...'''" */
6478 putchar('"');
6479 do putchar('\''); while (*++s == '\'');
6480 putchar('"');
6481 } while (*s);
6482}
6483
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006484static int builtin_export(char **argv)
6485{
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006486 unsigned opt_unexport;
6487
6488 if (argv[1] == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006489 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006490 if (e) {
6491 while (*e) {
6492#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006493 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006494#else
6495 /* ash emits: export VAR='VAL'
6496 * bash: declare -x VAR="VAL"
6497 * we follow ash example */
6498 const char *s = *e++;
6499 const char *p = strchr(s, '=');
6500
6501 if (!p) /* wtf? take next variable */
6502 continue;
6503 /* export var= */
6504 printf("export %.*s", (int)(p - s) + 1, s);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006505 print_escaped(p + 1);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006506 putchar('\n');
6507#endif
6508 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006509 /*fflush(stdout); - done after each builtin anyway */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006510 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006511 return EXIT_SUCCESS;
6512 }
6513
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006514#if ENABLE_HUSH_EXPORT_N
Denis Vlasenko28e67962009-04-26 23:22:40 +00006515 /* "!": do not abort on errors */
6516 /* "+": stop at 1st non-option */
6517 opt_unexport = getopt32(argv, "!+n");
6518 if (opt_unexport == (unsigned)-1)
6519 return EXIT_FAILURE;
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006520 argv += optind;
6521#else
6522 opt_unexport = 0;
6523 argv++;
6524#endif
6525
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006526 do {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006527 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006528
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006529 /* So far we do not check that name is valid (TODO?) */
6530
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006531 if (strchr(name, '=') == NULL) {
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006532 struct variable *var;
6533
6534 var = get_local_var(name);
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006535 if (opt_unexport) {
6536 /* export -n NAME (without =VALUE) */
6537 if (var) {
6538 var->flg_export = 0;
6539 debug_printf_env("%s: unsetenv '%s'\n", __func__, name);
6540 unsetenv(name);
6541 } /* else: export -n NOT_EXISTING_VAR: no-op */
6542 continue;
6543 }
6544 /* export NAME (without =VALUE) */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006545 if (var) {
6546 var->flg_export = 1;
6547 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6548 putenv(var->varstr);
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006549 continue;
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006550 }
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006551 /* Exporting non-existing variable.
6552 * bash does not put it in environment,
6553 * but remembers that it is exported,
6554 * and does put it in env when it is set later.
6555 * We just set it to "" and export. */
6556 name = xasprintf("%s=", name);
6557 } else {
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006558 /* (Un)exporting NAME=VALUE */
Denis Vlasenkodcd78c42009-04-19 23:07:51 +00006559 name = xstrdup(name);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006560 }
Denis Vlasenkoad4bd052009-04-20 22:04:21 +00006561 set_local_var(name,
6562 /*export:*/ (opt_unexport ? -1 : 1),
6563 /*readonly:*/ 0
6564 );
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006565 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006566
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006567 return EXIT_SUCCESS;
6568}
6569
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006570static int builtin_trap(char **argv)
6571{
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006572 int sig;
6573 char *new_cmd;
6574
6575 if (!G.traps)
6576 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
6577
6578 argv++;
6579 if (!*argv) {
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006580 int i;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006581 /* No args: print all trapped */
6582 for (i = 0; i < NSIG; ++i) {
6583 if (G.traps[i]) {
6584 printf("trap -- ");
6585 print_escaped(G.traps[i]);
6586 printf(" %s\n", get_signame(i));
6587 }
6588 }
6589 /*fflush(stdout); - done after each builtin anyway */
6590 return EXIT_SUCCESS;
6591 }
6592
6593 new_cmd = NULL;
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006594 /* If first arg is a number: reset all specified signals */
6595 sig = bb_strtou(*argv, NULL, 10);
6596 if (errno == 0) {
6597 int ret;
6598 process_sig_list:
6599 ret = EXIT_SUCCESS;
6600 while (*argv) {
6601 sig = get_signum(*argv++);
6602 if (sig < 0 || sig >= NSIG) {
6603 ret = EXIT_FAILURE;
6604 /* Mimic bash message exactly */
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006605 bb_perror_msg("trap: %s: invalid signal specification", argv[-1]);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006606 continue;
6607 }
6608
6609 free(G.traps[sig]);
6610 G.traps[sig] = xstrdup(new_cmd);
6611
6612 debug_printf("trap: setting SIG%s (%i) to '%s'",
6613 get_signame(sig), sig, G.traps[sig]);
6614
6615 /* There is no signal for 0 (EXIT) */
6616 if (sig == 0)
6617 continue;
6618
6619 if (new_cmd) {
6620 sigaddset(&G.blocked_set, sig);
6621 } else {
6622 /* There was a trap handler, we are removing it
6623 * (if sig has non-DFL handling,
6624 * we don't need to do anything) */
6625 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6626 continue;
6627 sigdelset(&G.blocked_set, sig);
6628 }
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006629 }
Denis Vlasenko6008d8a2009-04-18 13:05:10 +00006630 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko38e626d2009-04-18 12:58:19 +00006631 return ret;
6632 }
6633
6634 if (!argv[1]) { /* no second arg */
6635 bb_error_msg("trap: invalid arguments");
6636 return EXIT_FAILURE;
6637 }
6638
6639 /* First arg is "-": reset all specified to default */
6640 /* First arg is "--": skip it, the rest is "handler SIGs..." */
6641 /* Everything else: set arg as signal handler
6642 * (includes "" case, which ignores signal) */
6643 if (argv[0][0] == '-') {
6644 if (argv[0][1] == '\0') { /* "-" */
6645 /* new_cmd remains NULL: "reset these sigs" */
6646 goto reset_traps;
6647 }
6648 if (argv[0][1] == '-' && argv[0][2] == '\0') { /* "--" */
6649 argv++;
6650 }
6651 /* else: "-something", no special meaning */
6652 }
6653 new_cmd = *argv;
6654 reset_traps:
6655 argv++;
6656 goto process_sig_list;
6657}
6658
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006659#if ENABLE_HUSH_JOB
6660/* built-in 'fg' and 'bg' handler */
6661static int builtin_fg_bg(char **argv)
6662{
6663 int i, jobnum;
6664 struct pipe *pi;
6665
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006666 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006667 return EXIT_FAILURE;
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006668
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006669 /* If they gave us no args, assume they want the last backgrounded task */
6670 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006671 for (pi = G.job_list; pi; pi = pi->next) {
6672 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006673 goto found;
6674 }
6675 }
6676 bb_error_msg("%s: no current job", argv[0]);
6677 return EXIT_FAILURE;
6678 }
6679 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6680 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6681 return EXIT_FAILURE;
6682 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006683 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006684 if (pi->jobid == jobnum) {
6685 goto found;
6686 }
6687 }
6688 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6689 return EXIT_FAILURE;
6690 found:
Denis Vlasenko6b9e0532009-04-18 01:23:21 +00006691 /* TODO: bash prints a string representation
6692 * of job being foregrounded (like "sleep 1 | cat") */
Denis Vlasenkoc8653f62009-04-27 23:29:14 +00006693 if (argv[0][0] == 'f' && G.saved_tty_pgrp) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006694 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006695 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006696 }
6697
6698 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006699 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6700 for (i = 0; i < pi->num_cmds; i++) {
6701 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6702 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006703 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006704 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006705
6706 i = kill(- pi->pgrp, SIGCONT);
6707 if (i < 0) {
6708 if (errno == ESRCH) {
6709 delete_finished_bg_job(pi);
6710 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006711 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006712 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006713 }
6714
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006715 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006716 remove_bg_job(pi);
6717 return checkjobs_and_fg_shell(pi);
6718 }
6719 return EXIT_SUCCESS;
6720}
6721#endif
6722
6723#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006724static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006725{
6726 const struct built_in_command *x;
6727
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006728 printf("\n"
6729 "Built-in commands:\n"
6730 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006731 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6732 printf("%s\t%s\n", x->cmd, x->descr);
6733 }
6734 printf("\n\n");
6735 return EXIT_SUCCESS;
6736}
6737#endif
6738
6739#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006740static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006741{
6742 struct pipe *job;
6743 const char *status_string;
6744
Denis Vlasenko87a86552008-07-29 19:43:10 +00006745 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006746 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006747 status_string = "Stopped";
6748 else
6749 status_string = "Running";
6750
6751 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6752 }
6753 return EXIT_SUCCESS;
6754}
6755#endif
6756
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006757#if HUSH_DEBUG
6758static int builtin_memleak(char **argv UNUSED_PARAM)
6759{
6760 void *p;
6761 unsigned long l;
6762
6763 /* Crude attempt to find where "free memory" starts,
6764 * sans fragmentation. */
6765 p = malloc(240);
6766 l = (unsigned long)p;
6767 free(p);
6768 p = malloc(3400);
6769 if (l < (unsigned long)p) l = (unsigned long)p;
6770 free(p);
6771
6772 if (!G.memleak_value)
6773 G.memleak_value = l;
6774
6775 l -= G.memleak_value;
6776 if ((long)l < 0)
6777 l = 0;
6778 l /= 1024;
6779 if (l > 127)
6780 l = 127;
6781
6782 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6783 return l;
6784}
6785#endif
6786
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006787static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006788{
6789 puts(set_cwd());
6790 return EXIT_SUCCESS;
6791}
6792
6793static int builtin_read(char **argv)
6794{
6795 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006796 const char *name = "REPLY";
6797
6798 if (argv[1]) {
6799 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006800 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6801 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006802 if (!is_well_formed_var_name(name, '\0')) {
6803 /* Mimic bash message */
6804 bb_error_msg("read: '%s': not a valid identifier", name);
6805 return 1;
6806 }
6807 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006808
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006809//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6810
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006811 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006812 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006813}
6814
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006815/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6816 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006817 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006818 * set [-abCefhmnuvx] [-o option] [argument...]
6819 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006820 * set -- [argument...]
6821 * set -o
6822 * set +o
6823 * Implementations shall support the options in both their hyphen and
6824 * plus-sign forms. These options can also be specified as options to sh.
6825 * Examples:
6826 * Write out all variables and their values: set
6827 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6828 * Turn on the -x and -v options: set -xv
6829 * Unset all positional parameters: set --
6830 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6831 * Set the positional parameters to the expansion of x, even if x expands
6832 * with a leading '-' or '+': set -- $x
6833 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006834 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006835 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006836static int builtin_set(char **argv)
6837{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006838 int n;
6839 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006840 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006841
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006842 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006843 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006844 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006845 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006846 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006847 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006848
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006849 do {
6850 if (!strcmp(arg, "--")) {
6851 ++argv;
6852 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006853 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006854 if (arg[0] != '+' && arg[0] != '-')
6855 break;
6856 for (n = 1; arg[n]; ++n)
6857 if (set_mode(arg[0], arg[n]))
6858 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006859 } while ((arg = *++argv) != NULL);
6860 /* Now argv[0] is 1st argument */
6861
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006862 if (arg == NULL)
6863 return EXIT_SUCCESS;
6864 set_argv:
6865
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006866 /* NB: G.global_argv[0] ($0) is never freed/changed */
6867 g_argv = G.global_argv;
6868 if (G.global_args_malloced) {
6869 pp = g_argv;
6870 while (*++pp)
6871 free(*pp);
6872 g_argv[1] = NULL;
6873 } else {
6874 G.global_args_malloced = 1;
6875 pp = xzalloc(sizeof(pp[0]) * 2);
6876 pp[0] = g_argv[0]; /* retain $0 */
6877 g_argv = pp;
6878 }
6879 /* This realloc's G.global_argv */
6880 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6881
6882 n = 1;
6883 while (*++pp)
6884 n++;
6885 G.global_argc = n;
6886
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006887 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006888
6889 /* Nothing known, so abort */
6890 error:
6891 bb_error_msg("set: %s: invalid option", arg);
6892 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006893}
6894
6895static int builtin_shift(char **argv)
6896{
6897 int n = 1;
6898 if (argv[1]) {
6899 n = atoi(argv[1]);
6900 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006901 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006902 if (G.global_args_malloced) {
6903 int m = 1;
6904 while (m <= n)
6905 free(G.global_argv[m++]);
6906 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006907 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006908 memmove(&G.global_argv[1], &G.global_argv[n+1],
6909 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006910 return EXIT_SUCCESS;
6911 }
6912 return EXIT_FAILURE;
6913}
6914
6915static int builtin_source(char **argv)
6916{
Denys Vlasenko54e08432009-05-02 02:34:19 +02006917 const char *PATH;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006918 FILE *input;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006919 save_arg_t sv;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006920#if ENABLE_HUSH_FUNCTIONS
6921 smallint sv_flg;
6922#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006923
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006924 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006925 return EXIT_FAILURE;
6926
Denys Vlasenko54e08432009-05-02 02:34:19 +02006927 if (strchr(*argv, '/') == NULL
6928 && (PATH = get_local_var_value("PATH")) != NULL
6929 ) {
6930 /* Search through $PATH */
6931 while (1) {
6932 const char *end = strchrnul(PATH, ':');
6933 int sz = end - PATH; /* must be int! */
6934
6935 if (sz != 0) {
6936 char *tmp = xasprintf("%.*s/%s", sz, PATH, *argv);
6937 input = fopen_for_read(tmp);
6938 free(tmp);
6939 } else {
6940 /* We have xxx::yyyy in $PATH,
6941 * it means "use current dir" */
6942 input = fopen_for_read(*argv);
6943 }
6944 if (input)
6945 goto opened_ok;
6946 if (*end == '\0')
6947 break;
6948 PATH = end + 1;
6949 }
6950 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006951 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006952 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006953 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006954 return EXIT_FAILURE;
6955 }
Denys Vlasenko54e08432009-05-02 02:34:19 +02006956 opened_ok:
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006957 close_on_exec_on(fileno(input));
6958
Mike Frysinger885b6f22009-04-18 21:04:25 +00006959#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006960 sv_flg = G.flag_return_in_progress;
6961 /* "we are inside sourced file, ok to use return" */
6962 G.flag_return_in_progress = -1;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006963#endif
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006964 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006965
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006966 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006967 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006968
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006969 restore_G_args(&sv, argv);
Mike Frysinger885b6f22009-04-18 21:04:25 +00006970#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006971 G.flag_return_in_progress = sv_flg;
Mike Frysinger885b6f22009-04-18 21:04:25 +00006972#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006973
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006974 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006975}
6976
6977static int builtin_umask(char **argv)
6978{
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006979 int rc;
6980 mode_t mask;
6981
6982 mask = umask(0);
6983 if (argv[1]) {
6984 mode_t old_mask = mask;
6985
6986 mask ^= 0777;
6987 rc = bb_parse_mode(argv[1], &mask);
6988 mask ^= 0777;
6989 if (rc == 0) {
6990 mask = old_mask;
6991 /* bash messages:
6992 * bash: umask: 'q': invalid symbolic mode operator
6993 * bash: umask: 999: octal number out of range
6994 */
6995 bb_error_msg("%s: '%s' invalid mode", argv[0], argv[1]);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006996 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006997 } else {
Denis Vlasenkoeb858492009-04-18 02:06:54 +00006998 rc = 1;
6999 /* Mimic bash */
7000 printf("%04o\n", (unsigned) mask);
7001 /* fall through and restore mask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007002 }
Denis Vlasenkoeb858492009-04-18 02:06:54 +00007003 umask(mask);
7004
7005 return !rc; /* rc != 0 - success */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007006}
7007
Mike Frysingerd690f682009-03-30 06:50:54 +00007008/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007009static int builtin_unset(char **argv)
7010{
Mike Frysingerd690f682009-03-30 06:50:54 +00007011 int ret;
Denis Vlasenko28e67962009-04-26 23:22:40 +00007012 unsigned opts;
Mike Frysingerd690f682009-03-30 06:50:54 +00007013
Denis Vlasenko28e67962009-04-26 23:22:40 +00007014 /* "!": do not abort on errors */
7015 /* "+": stop at 1st non-option */
7016 opts = getopt32(argv, "!+vf");
7017 if (opts == (unsigned)-1)
7018 return EXIT_FAILURE;
7019 if (opts == 3) {
7020 bb_error_msg("unset: -v and -f are exclusive");
7021 return EXIT_FAILURE;
Mike Frysingerd690f682009-03-30 06:50:54 +00007022 }
Denis Vlasenko28e67962009-04-26 23:22:40 +00007023 argv += optind;
Mike Frysingerd690f682009-03-30 06:50:54 +00007024
7025 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007026 while (*argv) {
Denis Vlasenko28e67962009-04-26 23:22:40 +00007027 if (!(opts & 2)) { /* not -f */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007028 if (unset_local_var(*argv)) {
7029 /* unset <nonexistent_var> doesn't fail.
7030 * Error is when one tries to unset RO var.
7031 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00007032 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007033 }
Mike Frysingerd690f682009-03-30 06:50:54 +00007034 }
Denis Vlasenko40e84372009-04-18 11:23:38 +00007035#if ENABLE_HUSH_FUNCTIONS
7036 else {
7037 unset_func(*argv);
7038 }
7039#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00007040 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00007041 }
7042 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00007043}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007044
Mike Frysinger56bdea12009-03-28 20:01:58 +00007045/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
7046static int builtin_wait(char **argv)
7047{
7048 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007049 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007050
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007051 if (*++argv == NULL) {
7052 /* Don't care about wait results */
7053 /* Note 1: must wait until there are no more children */
7054 /* Note 2: must be interruptible */
7055 /* Examples:
7056 * $ sleep 3 & sleep 6 & wait
7057 * [1] 30934 sleep 3
7058 * [2] 30935 sleep 6
7059 * [1] Done sleep 3
7060 * [2] Done sleep 6
7061 * $ sleep 3 & sleep 6 & wait
7062 * [1] 30936 sleep 3
7063 * [2] 30937 sleep 6
7064 * [1] Done sleep 3
7065 * ^C <-- after ~4 sec from keyboard
7066 * $
7067 */
7068 sigaddset(&G.blocked_set, SIGCHLD);
7069 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7070 while (1) {
7071 checkjobs(NULL);
7072 if (errno == ECHILD)
7073 break;
7074 /* Wait for SIGCHLD or any other signal of interest */
7075 /* sigtimedwait with infinite timeout: */
7076 sig = sigwaitinfo(&G.blocked_set, NULL);
7077 if (sig > 0) {
7078 sig = check_and_run_traps(sig);
7079 if (sig && sig != SIGCHLD) { /* see note 2 */
7080 ret = 128 + sig;
7081 break;
7082 }
7083 }
7084 }
7085 sigdelset(&G.blocked_set, SIGCHLD);
7086 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
7087 return ret;
7088 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00007089
Denis Vlasenko7566bae2009-03-31 17:24:49 +00007090 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00007091 while (*argv) {
7092 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00007093 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007094 /* mimic bash message */
7095 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007096 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00007097 }
7098 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00007099 if (WIFSIGNALED(status))
7100 ret = 128 + WTERMSIG(status);
7101 else if (WIFEXITED(status))
7102 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00007103 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00007104 ret = EXIT_FAILURE;
7105 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00007106 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00007107 ret = 127;
7108 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00007109 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00007110 }
7111
7112 return ret;
7113}
7114
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007115#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
7116static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
7117{
7118 if (argv[1]) {
7119 def = bb_strtou(argv[1], NULL, 10);
7120 if (errno || def < def_min || argv[2]) {
7121 bb_error_msg("%s: bad arguments", argv[0]);
7122 def = UINT_MAX;
7123 }
7124 }
7125 return def;
7126}
7127#endif
7128
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007129#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007130static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007131{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007132 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00007133 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007134 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00007135 return EXIT_SUCCESS; /* bash compat */
7136 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00007137 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007138
7139 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
7140 if (depth == UINT_MAX)
7141 G.flag_break_continue = BC_BREAK;
7142 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00007143 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007144
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007145 return EXIT_SUCCESS;
7146}
7147
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00007148static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007149{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00007150 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
7151 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00007152}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00007153#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007154
7155#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenko7b9e5c52009-04-17 23:53:15 +00007156static int builtin_return(char **argv)
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00007157{
7158 int rc;
7159
7160 if (G.flag_return_in_progress != -1) {
7161 bb_error_msg("%s: not in a function or sourced script", argv[0]);
7162 return EXIT_FAILURE; /* bash compat */
7163 }
7164
7165 G.flag_return_in_progress = 1;
7166
7167 /* bash:
7168 * out of range: wraps around at 256, does not error out
7169 * non-numeric param:
7170 * f() { false; return qwe; }; f; echo $?
7171 * bash: return: qwe: numeric argument required <== we do this
7172 * 255 <== we also do this
7173 */
7174 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
7175 return rc;
7176}
7177#endif