blob: 82634ff83480e53dda0644ab917b7667057ac205 [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)
Eric Andersen83a2ae22001-05-07 17:59:25 +000053 * change { and } from special chars to reserved words
Denis Vlasenkofa4ca782009-04-16 12:00:15 +000054 * $var refs in function do not pick up values set by "var=val func"
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000055 * builtins: return, ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000056 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000057 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000058 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000059 * SIGHUP handling
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000060 * separate job control from interactiveness
61 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
Eric Andersen25f27032001-04-26 23:22:31 +000062 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000063 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000064 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000065#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000066#include <glob.h>
67/* #include <dmalloc.h> */
68#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000069# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000070#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000071#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000072#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000073#ifndef PIPE_BUF
74# define PIPE_BUF 4096 /* amount of buffering in a pipe */
75#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000076
Denis Vlasenko1943aec2009-04-09 14:15:57 +000077
78/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000079#define LEAK_HUNTING 0
80#define BUILD_AS_NOMMU 0
81/* Enable/disable sanity checks. Ok to enable in production,
82 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
83 * Keeping 1 for now even in released versions.
84 */
85#define HUSH_DEBUG 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +000086
87
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000088#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000089# undef BB_MMU
90# undef USE_FOR_NOMMU
91# undef USE_FOR_MMU
92# define BB_MMU 0
93# define USE_FOR_NOMMU(...) __VA_ARGS__
94# define USE_FOR_MMU(...)
95#endif
96
Denis Vlasenko61befda2008-11-25 01:36:03 +000097#if defined SINGLE_APPLET_MAIN
98/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000099# undef CONFIG_FEATURE_SH_STANDALONE
100# undef ENABLE_FEATURE_SH_STANDALONE
101# undef USE_FEATURE_SH_STANDALONE
102# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
103# define ENABLE_FEATURE_SH_STANDALONE 0
104# define USE_FEATURE_SH_STANDALONE(...)
105# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000106#endif
107
Denis Vlasenko05743d72008-02-10 12:10:08 +0000108#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000109# undef ENABLE_FEATURE_EDITING
110# define ENABLE_FEATURE_EDITING 0
111# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
112# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000113#endif
114
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000115/* Do we support ANY keywords? */
116#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000117# define HAS_KEYWORDS 1
118# define IF_HAS_KEYWORDS(...) __VA_ARGS__
119# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000120#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000121# define HAS_KEYWORDS 0
122# define IF_HAS_KEYWORDS(...)
123# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000124#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000125
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000126/* If you comment out one of these below, it will be #defined later
127 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000128#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000129/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000130#define debug_printf_parse(...) do {} while (0)
131#define debug_print_tree(a, b) do {} while (0)
132#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000133#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000134#define debug_printf_jobs(...) do {} while (0)
135#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000136#define debug_printf_glob(...) do {} while (0)
137#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000138#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000139#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000140
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000141#define ERR_PTR ((void*)(long)1)
142
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000143#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000144
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000145#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000146
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000147static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
148
149/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000150 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000151 */
152#if !BB_MMU
153typedef struct nommu_save_t {
154 char **new_env;
155 char **old_env;
156 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000157 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000158} nommu_save_t;
159#endif
160
Denis Vlasenko55789c62008-06-18 16:30:42 +0000161/* The descrip member of this structure is only used to make
162 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000163static const struct {
164 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000165 signed char default_fd;
166 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000167} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000168 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000169 { O_RDONLY, 0, "<" },
170 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
171 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000172 { O_RDONLY, 0, "<<" },
173 { O_CREAT|O_RDWR, 1, "<>" },
174/* Should not be needed. Bogus default_fd helps in debugging */
175/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000176};
177
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000178typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000179 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000180#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000181 RES_IF ,
182 RES_THEN ,
183 RES_ELIF ,
184 RES_ELSE ,
185 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000186#endif
187#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000188 RES_FOR ,
189 RES_WHILE ,
190 RES_UNTIL ,
191 RES_DO ,
192 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000193#endif
194#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000195 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000196#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000197#if ENABLE_HUSH_CASE
198 RES_CASE ,
199 /* two pseudo-keywords support contrived "case" syntax: */
200 RES_MATCH , /* "word)" */
201 RES_CASEI , /* "this command is inside CASE" */
202 RES_ESAC ,
203#endif
204 RES_XXXX ,
205 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000206} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000207
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000208typedef struct o_string {
209 char *data;
210 int length; /* position where data is appended */
211 int maxlen;
212 /* Protect newly added chars against globbing
213 * (by prepending \ to *, ?, [, \) */
214 smallint o_escape;
215 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000216 /* At least some part of the string was inside '' or "",
217 * possibly empty one: word"", wo''rd etc. */
218 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000219 smallint has_empty_slot;
220 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
221} o_string;
222enum {
223 MAYBE_ASSIGNMENT = 0,
224 DEFINITELY_ASSIGNMENT = 1,
225 NOT_ASSIGNMENT = 2,
226 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
227};
228/* Used for initialization: o_string foo = NULL_O_STRING; */
229#define NULL_O_STRING { NULL }
230
231/* I can almost use ordinary FILE*. Is open_memstream() universally
232 * available? Where is it documented? */
233typedef struct in_str {
234 const char *p;
235 /* eof_flag=1: last char in ->p is really an EOF */
236 char eof_flag; /* meaningless if ->p == NULL */
237 char peek_buf[2];
238#if ENABLE_HUSH_INTERACTIVE
239 smallint promptme;
240 smallint promptmode; /* 0: PS1, 1: PS2 */
241#endif
242 FILE *file;
243 int (*get) (struct in_str *);
244 int (*peek) (struct in_str *);
245} in_str;
246#define i_getch(input) ((input)->get(input))
247#define i_peek(input) ((input)->peek(input))
248
Eric Andersen25f27032001-04-26 23:22:31 +0000249struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000250 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000251 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000252 int rd_fd; /* fd to redirect */
253 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
254 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000255 smallint rd_type; /* (enum redir_type) */
256 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000257 * and subsequently heredoc itself; and rd_dup is a bitmask:
258 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000259 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000260 */
Eric Andersen25f27032001-04-26 23:22:31 +0000261};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000262typedef enum redir_type {
263 REDIRECT_INVALID = 0,
264 REDIRECT_INPUT = 1,
265 REDIRECT_OVERWRITE = 2,
266 REDIRECT_APPEND = 3,
267 REDIRECT_HEREDOC = 4,
268 REDIRECT_IO = 5,
269 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000270
271 REDIRFD_CLOSE = -3,
272 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000273 REDIRFD_TO_FILE = -1,
274 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000275
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000276 HEREDOC_SKIPTABS = 1,
277 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000278} redir_type;
279
Eric Andersen25f27032001-04-26 23:22:31 +0000280
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000281struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000282 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000283 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000284 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000285 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000286#define GRP_NORMAL 0
287#define GRP_SUBSHELL 1
288#if ENABLE_HUSH_FUNCTIONS
289# define GRP_FUNCTION 2
290#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000291 struct pipe *group; /* if non-NULL, this "command" is { list },
292 * ( list ), or a compound statement */
293#if !BB_MMU
294 char *group_as_string;
295#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000296#if ENABLE_HUSH_FUNCTIONS
297 struct function *child_func;
298/* This field is used to prevent a bug here:
299 * while...do f1() {a;}; f1; f1 {b;}; f1; done
300 * When we execute "f1() {a;}" cmd, we create new function and clear
301 * cmd->group, cmd->group_as_string, cmd->argv[0].
302 * when we execute "f1 {b;}", we notice that f1 exists,
303 * and that it's "parent cmd" struct is still "alive",
304 * we put those fields back into cmd->xxx
305 * (struct function has ->parent_cmd ptr to facilitate that).
306 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
307 * Without this trick, loop would execute a;b;b;b;...
308 * instead of correct sequence a;b;a;b;...
309 * When command is freed, it severs the link
310 * (sets ->child_func->parent_cmd to NULL).
311 */
312#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000313 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000314/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
315 * and on execution these are substituted with their values.
316 * Substitution can make _several_ words out of one argv[n]!
317 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000318 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000319 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000320 struct redir_struct *redirects; /* I/O redirections */
321};
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000322/* Is there anything in this command at all? */
323#define IS_NULL_CMD(cmd) \
324 (!(cmd)->group && !(cmd)->argv && !(cmd)->redirects)
325
Eric Andersen25f27032001-04-26 23:22:31 +0000326
327struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000328 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000329 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000330 int alive_cmds; /* number of commands running (not exited) */
331 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000332#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000333 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000334 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000335 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000336#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000337 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000338 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000339 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
340 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000341};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000342typedef enum pipe_style {
343 PIPE_SEQ = 1,
344 PIPE_AND = 2,
345 PIPE_OR = 3,
346 PIPE_BG = 4,
347} pipe_style;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +0000348/* Is there anything in this pipe at all? */
349#define IS_NULL_PIPE(pi) \
350 ((pi)->num_cmds == 0 IF_HAS_KEYWORDS( && (pi)->res_word == RES_NONE))
Eric Andersen25f27032001-04-26 23:22:31 +0000351
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000352/* This holds pointers to the various results of parsing */
353struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000354 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000355 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000356 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000357 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000358 /* last command in pipe (being constructed right now) */
359 struct command *command;
360 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000361 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000362#if !BB_MMU
363 o_string as_string;
364#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000365#if HAS_KEYWORDS
366 smallint ctx_res_w;
367 smallint ctx_inverted; /* "! cmd | cmd" */
368#if ENABLE_HUSH_CASE
369 smallint ctx_dsemicolon; /* ";;" seen */
370#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000371 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
372 int old_flag;
373 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000374 * example: "if pipe1; pipe2; then pipe3; fi"
375 * when we see "if" or "then", we malloc and copy current context,
376 * and make ->stack point to it. then we parse pipeN.
377 * when closing "then" / fi" / whatever is found,
378 * we move list_head into ->stack->command->group,
379 * copy ->stack into current context, and delete ->stack.
380 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000381 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000382 struct parse_context *stack;
383#endif
384};
385
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000386/* On program start, environ points to initial environment.
387 * putenv adds new pointers into it, unsetenv removes them.
388 * Neither of these (de)allocates the strings.
389 * setenv allocates new strings in malloc space and does putenv,
390 * and thus setenv is unusable (leaky) for shell's purposes */
391#define setenv(...) setenv_is_leaky_dont_use()
392struct variable {
393 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000394 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000395 int max_len; /* if > 0, name is part of initial env; else name is malloced */
396 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000397 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000398};
399
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000400enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000401 BC_BREAK = 1,
402 BC_CONTINUE = 2,
403};
404
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000405#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000406struct function {
407 struct function *next;
408 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000409 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000410 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000411#if !BB_MMU
412 char *body_as_string;
413#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000414};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000415#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000416
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000417
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000418/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000419/* Sorted roughly by size (smaller offsets == smaller code) */
420struct globals {
421#if ENABLE_HUSH_INTERACTIVE
422 /* 'interactive_fd' is a fd# open to ctty, if we have one
423 * _AND_ if we decided to act interactively */
424 int interactive_fd;
425 const char *PS1;
426 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000427#define G_interactive_fd (G.interactive_fd)
428#else
429#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000430#endif
431#if ENABLE_FEATURE_EDITING
432 line_input_t *line_input_state;
433#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000434 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000435 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000436#if ENABLE_HUSH_JOB
437 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000438 pid_t saved_tty_pgrp;
439 int last_jobid;
440 struct pipe *job_list;
441 struct pipe *toplevel_list;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000442#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000443 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000444#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000445 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000446#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000447#if ENABLE_HUSH_FUNCTIONS
448 /* 0: outside of a function (or sourced file)
449 * -1: inside of a function, ok to use return builtin
450 * 1: return is invoked, skip all till end of func.
451 */
452 smallint flag_return_in_progress;
453#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000454 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000455 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000456 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000457 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000458 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000459 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000460 /* how many non-NULL argv's we have. NB: $# + 1 */
461 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000462 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000463#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000464 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000465#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000466#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000467 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000468 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000469#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000470 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000471 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000472 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000473 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000474#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000475 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000476#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000477 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000478// unsigned count_SIGCHLD;
479// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000480 /* which signals have non-DFL handler (even with no traps set)? */
481 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000482 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000483 sigset_t blocked_set;
484 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000485#if HUSH_DEBUG
486 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000487 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000488#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000489 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000490};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000491#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000492/* Not #defining name to G.name - this quickly gets unwieldy
493 * (too many defines). Also, I actually prefer to see when a variable
494 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000495#define INIT_G() do { \
496 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
497} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000498
499
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000500/* Function prototypes for builtins */
501static int builtin_cd(char **argv);
502static int builtin_echo(char **argv);
503static int builtin_eval(char **argv);
504static int builtin_exec(char **argv);
505static int builtin_exit(char **argv);
506static int builtin_export(char **argv);
507#if ENABLE_HUSH_JOB
508static int builtin_fg_bg(char **argv);
509static int builtin_jobs(char **argv);
510#endif
511#if ENABLE_HUSH_HELP
512static int builtin_help(char **argv);
513#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000514#if HUSH_DEBUG
515static int builtin_memleak(char **argv);
516#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000517static int builtin_pwd(char **argv);
518static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000519static int builtin_set(char **argv);
520static int builtin_shift(char **argv);
521static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000522static int builtin_test(char **argv);
523static int builtin_trap(char **argv);
524static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000525static int builtin_umask(char **argv);
526static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000527static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000528#if ENABLE_HUSH_LOOPS
529static int builtin_break(char **argv);
530static int builtin_continue(char **argv);
531#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000532#if ENABLE_HUSH_FUNCTIONS
533static int builtin_return(char **argv);
534#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000535
536/* Table of built-in functions. They can be forked or not, depending on
537 * context: within pipes, they fork. As simple commands, they do not.
538 * When used in non-forking context, they can change global variables
539 * in the parent shell process. If forked, of course they cannot.
540 * For example, 'unset foo | whatever' will parse and run, but foo will
541 * still be set at the end. */
542struct built_in_command {
543 const char *cmd;
544 int (*function)(char **argv);
545#if ENABLE_HUSH_HELP
546 const char *descr;
547#define BLTIN(cmd, func, help) { cmd, func, help }
548#else
549#define BLTIN(cmd, func, help) { cmd, func }
550#endif
551};
552
553/* For now, echo and test are unconditionally enabled.
554 * Maybe make it configurable? */
555static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000556 BLTIN("." , builtin_source , "Run commands in a file"),
557 BLTIN(":" , builtin_true , "No-op"),
558 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000559#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000560 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000561#endif
562#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000563 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000564#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000565 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000566#if ENABLE_HUSH_LOOPS
567 BLTIN("continue", builtin_continue, "Start new loop iteration"),
568#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000569 BLTIN("echo" , builtin_echo , "Write to stdout"),
570 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
571 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
572 BLTIN("exit" , builtin_exit , "Exit"),
573 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000574#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000575 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000576#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000577#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000578 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000579#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000580#if ENABLE_HUSH_JOB
581 BLTIN("jobs" , builtin_jobs , "List active jobs"),
582#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000583#if HUSH_DEBUG
584 BLTIN("memleak" , builtin_memleak , "Debug tool"),
585#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000586 BLTIN("pwd" , builtin_pwd , "Print current directory"),
587 BLTIN("read" , builtin_read , "Input environment variable"),
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +0000588#if ENABLE_HUSH_FUNCTIONS
589 BLTIN("return" , builtin_return , "Return from a function"),
590#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000591 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
592 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
593 BLTIN("test" , builtin_test , "Test condition"),
594 BLTIN("trap" , builtin_trap , "Trap signals"),
595// BLTIN("ulimit" , builtin_return , "Control resource limits"),
596 BLTIN("umask" , builtin_umask , "Set file creation mask"),
597 BLTIN("unset" , builtin_unset , "Unset environment variable"),
598 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000599};
600
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000601
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000602/* Debug printouts.
603 */
604#if HUSH_DEBUG
605/* prevent disasters with G.debug_indent < 0 */
606# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
607# define debug_enter() (G.debug_indent++)
608# define debug_leave() (G.debug_indent--)
609#else
610# define indent() ((void)0)
611# define debug_enter() ((void)0)
612# define debug_leave() ((void)0)
613#endif
614
615#ifndef debug_printf
616# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
617#endif
618
619#ifndef debug_printf_parse
620# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
621#endif
622
623#ifndef debug_printf_exec
624#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
625#endif
626
627#ifndef debug_printf_env
628# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
629#endif
630
631#ifndef debug_printf_jobs
632# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
633# define DEBUG_JOBS 1
634#else
635# define DEBUG_JOBS 0
636#endif
637
638#ifndef debug_printf_expand
639# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
640# define DEBUG_EXPAND 1
641#else
642# define DEBUG_EXPAND 0
643#endif
644
645#ifndef debug_printf_glob
646# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
647# define DEBUG_GLOB 1
648#else
649# define DEBUG_GLOB 0
650#endif
651
652#ifndef debug_printf_list
653# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
654#endif
655
656#ifndef debug_printf_subst
657# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
658#endif
659
660#ifndef debug_printf_clean
661# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
662# define DEBUG_CLEAN 1
663#else
664# define DEBUG_CLEAN 0
665#endif
666
667#if DEBUG_EXPAND
668static void debug_print_strings(const char *prefix, char **vv)
669{
670 indent();
671 fprintf(stderr, "%s:\n", prefix);
672 while (*vv)
673 fprintf(stderr, " '%s'\n", *vv++);
674}
675#else
676#define debug_print_strings(prefix, vv) ((void)0)
677#endif
678
679
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000680/* Leak hunting. Use hush_leaktool.sh for post-processing.
681 */
682#if LEAK_HUNTING
683static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000684{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000685 void *ptr = xmalloc((size + 0xff) & ~0xff);
686 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
687 return ptr;
688}
689static void *xxrealloc(int lineno, void *ptr, size_t size)
690{
691 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
692 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
693 return ptr;
694}
695static char *xxstrdup(int lineno, const char *str)
696{
697 char *ptr = xstrdup(str);
698 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
699 return ptr;
700}
701static void xxfree(void *ptr)
702{
703 fdprintf(2, "free %p\n", ptr);
704 free(ptr);
705}
706#define xmalloc(s) xxmalloc(__LINE__, s)
707#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
708#define xstrdup(s) xxstrdup(__LINE__, s)
709#define free(p) xxfree(p)
710#endif
711
712
713/* Syntax and runtime errors. They always abort scripts.
714 * In interactive use they usually discard unparsed and/or unexecuted commands
715 * and return to the prompt.
716 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
717 */
718#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000719# define die_if_script(lineno, fmt...) die_if_script(fmt)
720# define syntax_error(lineno, msg) syntax_error(msg)
721# define syntax_error_at(lineno, msg) syntax_error_at(msg)
722# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
723# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
724# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000725#endif
726
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000727static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000728{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000729 va_list p;
730
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000731#if HUSH_DEBUG >= 2
732 bb_error_msg("hush.c:%u", lineno);
733#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000734 va_start(p, fmt);
735 bb_verror_msg(fmt, p, NULL);
736 va_end(p);
737 if (!G_interactive_fd)
738 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000739}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000740
741static void syntax_error(unsigned lineno, const char *msg)
742{
743 if (msg)
744 die_if_script(lineno, "syntax error: %s", msg);
745 else
746 die_if_script(lineno, "syntax error", NULL);
747}
748
749static void syntax_error_at(unsigned lineno, const char *msg)
750{
751 die_if_script(lineno, "syntax error at '%s'", msg);
752}
753
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000754/* It so happens that all such cases are totally fatal
755 * even if shell is interactive: EOF while looking for closing
756 * delimiter. There is nowhere to read stuff from after that,
757 * it's EOF! The only choice is to terminate.
758 */
759static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000760static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000761{
762 char msg[2];
763 msg[0] = ch;
764 msg[1] = '\0';
765 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000766 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000767}
768
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000769static void syntax_error_unterm_str(unsigned lineno, const char *s)
770{
771 die_if_script(lineno, "syntax error: unterminated %s", s);
772}
773
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000774static void syntax_error_unexpected_ch(unsigned lineno, char ch)
775{
776 char msg[2];
777 msg[0] = ch;
778 msg[1] = '\0';
779 die_if_script(lineno, "syntax error: unexpected %s", msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000780}
781
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000782#if HUSH_DEBUG < 2
783# undef die_if_script
784# undef syntax_error
785# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000786# undef syntax_error_unterm_ch
787# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000788# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000789#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000790# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
791# define syntax_error(msg) syntax_error(__LINE__, msg)
792# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
793# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
794# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
795# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000796#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000797
Denis Vlasenko552433b2009-04-04 19:29:21 +0000798
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000799/* Utility functions
800 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000801static int glob_needed(const char *s)
802{
803 while (*s) {
804 if (*s == '\\')
805 s++;
806 if (*s == '*' || *s == '[' || *s == '?')
807 return 1;
808 s++;
809 }
810 return 0;
811}
812
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000813static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000814{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000815 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000816 return 0;
817 s++;
818 while (isalnum(*s) || *s == '_')
819 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000820 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000821}
822
Denis Vlasenko55789c62008-06-18 16:30:42 +0000823/* Replace each \x with x in place, return ptr past NUL. */
824static char *unbackslash(char *src)
825{
826 char *dst = src;
827 while (1) {
828 if (*src == '\\')
829 src++;
830 if ((*dst++ = *src++) == '\0')
831 break;
832 }
833 return dst;
834}
835
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000836static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000837{
838 int i;
839 unsigned count1;
840 unsigned count2;
841 char **v;
842
843 v = strings;
844 count1 = 0;
845 if (v) {
846 while (*v) {
847 count1++;
848 v++;
849 }
850 }
851 count2 = 0;
852 v = add;
853 while (*v) {
854 count2++;
855 v++;
856 }
857 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
858 v[count1 + count2] = NULL;
859 i = count2;
860 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000861 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000862 return v;
863}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000864#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000865static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
866{
867 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
868 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
869 return ptr;
870}
871#define add_strings_to_strings(strings, add, need_to_dup) \
872 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
873#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000874
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000875static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000876{
877 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000878 v[0] = add;
879 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000880 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000881}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000882#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000883static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
884{
885 char **ptr = add_string_to_strings(strings, add);
886 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
887 return ptr;
888}
889#define add_string_to_strings(strings, add) \
890 xx_add_string_to_strings(__LINE__, strings, add)
891#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000892
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000893static void putenv_all(char **strings)
894{
895 if (!strings)
896 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000897 while (*strings) {
898 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000899 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000900 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000901}
902
903static char **putenv_all_and_save_old(char **strings)
904{
905 char **old = NULL;
906 char **s = strings;
907
908 if (!strings)
909 return old;
910 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000911 char *v, *eq;
912
913 eq = strchr(*strings, '=');
914 if (eq) {
915 *eq = '\0';
916 v = getenv(*strings);
917 *eq = '=';
918 if (v) {
919 /* v points to VAL in VAR=VAL, go back to VAR */
920 v -= (eq - *strings) + 1;
921 old = add_string_to_strings(old, v);
922 }
923 }
924 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000925 }
926 putenv_all(s);
927 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000928}
929
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000930static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000931{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000932 char **v;
933
934 if (!strings)
935 return;
936
937 v = strings;
938 while (*v) {
939 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000940 debug_printf_env("unsetenv '%s'\n", *v);
941 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000942 }
943 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000944 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000945 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000946}
947
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000948static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000949{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000950 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000951}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000952
953
Denis Vlasenko270b1c32009-04-17 18:54:50 +0000954/* Helpers for setting new $n and restoring them back
955 */
956typedef struct save_arg_t {
957 char *sv_argv0;
958 char **sv_g_argv;
959 int sv_g_argc;
960 smallint sv_g_malloced;
961} save_arg_t;
962
963static void save_and_replace_G_args(save_arg_t *sv, char **argv)
964{
965 int n;
966
967 sv->sv_argv0 = argv[0];
968 sv->sv_g_argv = G.global_argv;
969 sv->sv_g_argc = G.global_argc;
970 sv->sv_g_malloced = G.global_args_malloced;
971
972 argv[0] = G.global_argv[0]; /* retain $0 */
973 G.global_argv = argv;
974 G.global_args_malloced = 0;
975
976 n = 1;
977 while (*++argv)
978 n++;
979 G.global_argc = n;
980}
981
982static void restore_G_args(save_arg_t *sv, char **argv)
983{
984 char **pp;
985
986 if (G.global_args_malloced) {
987 /* someone ran "set -- arg1 arg2 ...", undo */
988 pp = G.global_argv;
989 while (*++pp) /* note: does not free $0 */
990 free(*pp);
991 free(G.global_argv);
992 }
993 argv[0] = sv->sv_argv0;
994 G.global_argv = sv->sv_g_argv;
995 G.global_argc = sv->sv_g_argc;
996 G.global_args_malloced = sv->sv_g_malloced;
997}
998
999
Denis Vlasenkod5762932009-03-31 11:22:57 +00001000/* Basic theory of signal handling in shell
1001 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001002 * This does not describe what hush does, rather, it is current understanding
1003 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001004 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
1005 *
1006 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
1007 * is finished or backgrounded. It is the same in interactive and
1008 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001009 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001010 * ^C or ^Z from keyboard seem to execute "at once" because it usually
1011 * backgrounds (i.e. stops) or kills all members of currently running
1012 * pipe.
1013 *
1014 * Wait builtin in interruptible by signals for which user trap is set
1015 * or by SIGINT in interactive shell.
1016 *
1017 * Trap handlers will execute even within trap handlers. (right?)
1018 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001019 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001020 *
1021 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001022 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001023 *
1024 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001025 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001026 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001027 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
1028 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001029 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001030 * Siganls which differ from SIG_DFL action
1031 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +00001032 *
1033 * SIGQUIT: ignore
1034 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001035 * SIGHUP (interactive):
1036 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +00001037 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00001038 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
1039 * that all pipe members are stopped. Try this in bash:
1040 * while :; do :; done - ^Z does not background it
1041 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +00001042 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001043 * of the command line, show prompt. NB: ^C does not send SIGINT
1044 * to interactive shell while shell is waiting for a pipe,
1045 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001046 * Example 1: this waits 5 sec, but does not execute ls:
1047 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
1048 * Example 2: this does not wait and does not execute ls:
1049 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
1050 * Example 3: this does not wait 5 sec, but executes ls:
1051 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +00001052 *
1053 * (What happens to signals which are IGN on shell start?)
1054 * (What happens with signal mask on shell start?)
1055 *
1056 * Implementation in hush
1057 * ======================
1058 * We use in-kernel pending signal mask to determine which signals were sent.
1059 * We block all signals which we don't want to take action immediately,
1060 * i.e. we block all signals which need to have special handling as described
1061 * above, and all signals which have traps set.
1062 * After each pipe execution, we extract any pending signals via sigtimedwait()
1063 * and act on them.
1064 *
1065 * unsigned non_DFL_mask: a mask of such "special" signals
1066 * sigset_t blocked_set: current blocked signal set
1067 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001068 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001069 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001070 * "trap 'cmd' SIGxxx":
1071 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001072 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001073 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001074 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001075 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001076 * POSIX says pending signal mask is cleared in child - no need to clear it.
1077 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001078 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001079 * Note: as a result, we do not use signal handlers much. The only uses
1080 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1081 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001082 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001083enum {
1084 SPECIAL_INTERACTIVE_SIGS = 0
1085#if ENABLE_HUSH_JOB
1086 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
1087#endif
1088 | (1 << SIGTERM)
1089//TODO | (1 << SIGHUP)
1090 | (1 << SIGINT)
1091};
Denis Vlasenkod5762932009-03-31 11:22:57 +00001092
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001093//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1094//{
1095// G.count_SIGCHLD++;
1096//}
1097
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001098static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001099{
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001100 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +00001101 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001102 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001103
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001104 if (sig)
1105 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001106 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001107 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001108 if (sig <= 0)
1109 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001110 jump_in:
1111 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001112 if (G.traps && G.traps[sig]) {
1113 if (G.traps[sig][0]) {
1114 /* We have user-defined handler */
1115 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001116 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001117 builtin_eval(argv);
1118 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001119 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001120 } /* else: "" trap, ignoring signal */
1121 continue;
1122 }
1123 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001124 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001125// case SIGCHLD:
1126// G.count_SIGCHLD++;
1127// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001128 case SIGINT:
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00001129//TODO: add putchar('\n') also when we detect that child was killed (sleep 5 + ^C)
1130 /* Builtin was ^C'ed, make it look prettier: */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001131 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001132 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001133 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001134//TODO
1135// case SIGHUP: ...
1136// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00001137 default: /* ignored: */
1138 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001139 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001140 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00001141 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001142 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001143}
1144
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001145#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001146
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001147/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1148#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001149/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001150#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1151
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001152/* Restores tty foreground process group, and exits.
1153 * May be called as signal handler for fatal signal
1154 * (will faithfully resend signal to itself, producing correct exit state)
1155 * or called directly with -EXITCODE.
1156 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001157static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001158static void sigexit(int sig)
1159{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001160 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001161 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001162
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001163 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001164 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001165 if (G_interactive_fd && getpid() == G.root_pid)
1166 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001167
1168 /* Not a signal, just exit */
1169 if (sig <= 0)
1170 _exit(- sig);
1171
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001172 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001173}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001174#else
1175
1176#define disable_restore_tty_pgrp_on_exit() ((void)0)
1177#define enable_restore_tty_pgrp_on_exit() ((void)0)
1178
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001179#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001180
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001181/* Restores tty foreground process group, and exits. */
1182static void hush_exit(int exitcode) NORETURN;
1183static void hush_exit(int exitcode)
1184{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001185 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1186 /* Prevent recursion:
1187 * trap "echo Hi; exit" EXIT; exit
1188 */
1189 char *argv[] = { NULL, G.traps[0], NULL };
1190 G.traps[0] = NULL;
1191 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001192 builtin_eval(argv);
1193 free(argv[1]);
1194 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001195
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001196#if ENABLE_HUSH_JOB
1197 fflush(NULL); /* flush all streams */
1198 sigexit(- (exitcode & 0xff));
1199#else
1200 exit(exitcode);
1201#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001202}
1203
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001204
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001205static const char *set_cwd(void)
1206{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001207 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1208 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001209 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001210 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001211 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1212 if (!G.cwd)
1213 G.cwd = bb_msg_unknown;
1214 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001215}
1216
Denis Vlasenko83506862007-11-23 13:11:42 +00001217
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001218/* Get/check local shell variables */
1219static struct variable *get_local_var(const char *name)
1220{
1221 struct variable *cur;
1222 int len;
1223
1224 if (!name)
1225 return NULL;
1226 len = strlen(name);
1227 for (cur = G.top_var; cur; cur = cur->next) {
1228 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1229 return cur;
1230 }
1231 return NULL;
1232}
1233
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001234static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001235{
1236 struct variable *var = get_local_var(src);
1237 if (var)
1238 return strchr(var->varstr, '=') + 1;
1239 return NULL;
1240}
1241
1242/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001243 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001244 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001245 * 0: do not export
1246 * 1: export
1247 * -1: if NAME is set, leave export status alone
1248 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001249 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001250 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001251#if BB_MMU
1252#define set_local_var(str, flg_export, flg_read_only) \
1253 set_local_var(str, flg_export)
1254#endif
1255static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001256{
1257 struct variable *cur;
1258 char *value;
1259 int name_len;
1260
1261 value = strchr(str, '=');
1262 if (!value) { /* not expected to ever happen? */
1263 free(str);
1264 return -1;
1265 }
1266
1267 name_len = value - str + 1; /* including '=' */
1268 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1269 while (1) {
1270 if (strncmp(cur->varstr, str, name_len) != 0) {
1271 if (!cur->next) {
1272 /* Bail out. Note that now cur points
1273 * to last var in linked list */
1274 break;
1275 }
1276 cur = cur->next;
1277 continue;
1278 }
1279 /* We found an existing var with this name */
1280 *value = '\0';
1281 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001282#if !BB_MMU
1283 if (!flg_read_only)
1284#endif
1285 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001286 free(str);
1287 return -1;
1288 }
1289 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1290 unsetenv(str); /* just in case */
1291 *value = '=';
1292 if (strcmp(cur->varstr, str) == 0) {
1293 free_and_exp:
1294 free(str);
1295 goto exp;
1296 }
1297 if (cur->max_len >= strlen(str)) {
1298 /* This one is from startup env, reuse space */
1299 strcpy(cur->varstr, str);
1300 goto free_and_exp;
1301 }
1302 /* max_len == 0 signifies "malloced" var, which we can
1303 * (and has to) free */
1304 if (!cur->max_len)
1305 free(cur->varstr);
1306 cur->max_len = 0;
1307 goto set_str_and_exp;
1308 }
1309
1310 /* Not found - create next variable struct */
1311 cur->next = xzalloc(sizeof(*cur));
1312 cur = cur->next;
1313
1314 set_str_and_exp:
1315 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001316#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001317 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001318#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001319 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001320 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001321 cur->flg_export = 1;
1322 if (cur->flg_export) {
1323 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1324 return putenv(cur->varstr);
1325 }
1326 return 0;
1327}
1328
Mike Frysingerd690f682009-03-30 06:50:54 +00001329static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001330{
1331 struct variable *cur;
1332 struct variable *prev = prev; /* for gcc */
1333 int name_len;
1334
1335 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001336 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001337 name_len = strlen(name);
1338 cur = G.top_var;
1339 while (cur) {
1340 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1341 if (cur->flg_read_only) {
1342 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001343 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001344 }
1345 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1346 * is ro, and we cannot reach this code on the 1st pass */
1347 prev->next = cur->next;
1348 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1349 bb_unsetenv(cur->varstr);
1350 if (!cur->max_len)
1351 free(cur->varstr);
1352 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001353 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001354 }
1355 prev = cur;
1356 cur = cur->next;
1357 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001358 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001359}
1360
Mike Frysinger98c52642009-04-02 10:02:37 +00001361#if ENABLE_SH_MATH_SUPPORT
1362#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1363#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1364static char *endofname(const char *name)
1365{
1366 char *p;
1367
1368 p = (char *) name;
1369 if (!is_name(*p))
1370 return p;
1371 while (*++p) {
1372 if (!is_in_name(*p))
1373 break;
1374 }
1375 return p;
1376}
1377
1378static void arith_set_local_var(const char *name, const char *val, int flags)
1379{
1380 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001381 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001382 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001383}
1384#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001385
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001386
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001387/*
1388 * in_str support
1389 */
1390static int static_get(struct in_str *i)
1391{
1392 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001393 if (ch != '\0')
1394 return ch;
1395 i->p--;
1396 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001397}
1398
1399static int static_peek(struct in_str *i)
1400{
1401 return *i->p;
1402}
1403
1404#if ENABLE_HUSH_INTERACTIVE
1405
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001406static void cmdedit_set_initial_prompt(void)
1407{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001408 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1409 G.PS1 = getenv("PS1");
1410 if (G.PS1 == NULL)
1411 G.PS1 = "\\w \\$ ";
1412 } else
1413 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001414}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001415
1416static const char* setup_prompt_string(int promptmode)
1417{
1418 const char *prompt_str;
1419 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001420 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1421 /* Set up the prompt */
1422 if (promptmode == 0) { /* PS1 */
1423 free((char*)G.PS1);
1424 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1425 prompt_str = G.PS1;
1426 } else
1427 prompt_str = G.PS2;
1428 } else
1429 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001430 debug_printf("result '%s'\n", prompt_str);
1431 return prompt_str;
1432}
1433
1434static void get_user_input(struct in_str *i)
1435{
1436 int r;
1437 const char *prompt_str;
1438
1439 prompt_str = setup_prompt_string(i->promptmode);
1440#if ENABLE_FEATURE_EDITING
1441 /* Enable command line editing only while a command line
1442 * is actually being read */
1443 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001444 G.flag_SIGINT = 0;
1445 /* buglet: SIGINT will not make new prompt to appear _at once_,
1446 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001447 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001448 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001449 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001450 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001451 i->eof_flag = (r < 0);
1452 if (i->eof_flag) { /* EOF/error detected */
1453 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1454 G.user_input_buf[1] = '\0';
1455 }
1456#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001457 do {
1458 G.flag_SIGINT = 0;
1459 fputs(prompt_str, stdout);
1460 fflush(stdout);
1461 G.user_input_buf[0] = r = fgetc(i->file);
1462 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001463//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001464 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001465 i->eof_flag = (r == EOF);
1466#endif
1467 i->p = G.user_input_buf;
1468}
1469
1470#endif /* INTERACTIVE */
1471
1472/* This is the magic location that prints prompts
1473 * and gets data back from the user */
1474static int file_get(struct in_str *i)
1475{
1476 int ch;
1477
1478 /* If there is data waiting, eat it up */
1479 if (i->p && *i->p) {
1480#if ENABLE_HUSH_INTERACTIVE
1481 take_cached:
1482#endif
1483 ch = *i->p++;
1484 if (i->eof_flag && !*i->p)
1485 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001486 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001487 } else {
1488 /* need to double check i->file because we might be doing something
1489 * more complicated by now, like sourcing or substituting. */
1490#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001491 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001492 do {
1493 get_user_input(i);
1494 } while (!*i->p); /* need non-empty line */
1495 i->promptmode = 1; /* PS2 */
1496 i->promptme = 0;
1497 goto take_cached;
1498 }
1499#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001500 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001501 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001502 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001503#if ENABLE_HUSH_INTERACTIVE
1504 if (ch == '\n')
1505 i->promptme = 1;
1506#endif
1507 return ch;
1508}
1509
Denis Vlasenko913a2012009-04-05 22:17:04 +00001510/* All callers guarantee this routine will never
1511 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001512 */
1513static int file_peek(struct in_str *i)
1514{
1515 int ch;
1516 if (i->p && *i->p) {
1517 if (i->eof_flag && !i->p[1])
1518 return EOF;
1519 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001520 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001521 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001522 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001523 i->eof_flag = (ch == EOF);
1524 i->peek_buf[0] = ch;
1525 i->peek_buf[1] = '\0';
1526 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001527 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001528 return ch;
1529}
1530
1531static void setup_file_in_str(struct in_str *i, FILE *f)
1532{
1533 i->peek = file_peek;
1534 i->get = file_get;
1535#if ENABLE_HUSH_INTERACTIVE
1536 i->promptme = 1;
1537 i->promptmode = 0; /* PS1 */
1538#endif
1539 i->file = f;
1540 i->p = NULL;
1541}
1542
1543static void setup_string_in_str(struct in_str *i, const char *s)
1544{
1545 i->peek = static_peek;
1546 i->get = static_get;
1547#if ENABLE_HUSH_INTERACTIVE
1548 i->promptme = 1;
1549 i->promptmode = 0; /* PS1 */
1550#endif
1551 i->p = s;
1552 i->eof_flag = 0;
1553}
1554
1555
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001556/*
1557 * o_string support
1558 */
1559#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001560
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001561static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001562{
1563 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001564 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001565 if (o->data)
1566 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001567}
1568
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001569static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001570{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001571 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001572 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001573}
1574
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001575static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1576{
1577 free(o->data);
1578}
1579
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001580static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001581{
1582 if (o->length + len > o->maxlen) {
1583 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1584 o->data = xrealloc(o->data, 1 + o->maxlen);
1585 }
1586}
1587
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001588static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001589{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001590 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1591 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001592 o->data[o->length] = ch;
1593 o->length++;
1594 o->data[o->length] = '\0';
1595}
1596
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001597static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001598{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001599 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001600 memcpy(&o->data[o->length], str, len);
1601 o->length += len;
1602 o->data[o->length] = '\0';
1603}
1604
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001605#if !BB_MMU
1606static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001607{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001608 o_addblock(o, str, strlen(str));
1609}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001610static void nommu_addchr(o_string *o, int ch)
1611{
1612 if (o)
1613 o_addchr(o, ch);
1614}
1615#else
1616#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001617#endif
1618
1619static void o_addstr_with_NUL(o_string *o, const char *str)
1620{
1621 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001622}
1623
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001624static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001625{
1626 while (len) {
1627 o_addchr(o, *str);
1628 if (*str++ == '\\'
1629 && (*str != '*' && *str != '?' && *str != '[')
1630 ) {
1631 o_addchr(o, '\\');
1632 }
1633 len--;
1634 }
1635}
1636
Eric Andersen25f27032001-04-26 23:22:31 +00001637/* My analysis of quoting semantics tells me that state information
1638 * is associated with a destination, not a source.
1639 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001640static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001641{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001642 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001643 char *found = strchr("*?[\\", ch);
1644 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001645 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001646 o_grow_by(o, sz);
1647 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001648 o->data[o->length] = '\\';
1649 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001650 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001651 o->data[o->length] = ch;
1652 o->length++;
1653 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001654}
1655
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001656static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001657{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001658 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001659 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001660 sz++;
1661 o->data[o->length] = '\\';
1662 o->length++;
1663 }
1664 o_grow_by(o, sz);
1665 o->data[o->length] = ch;
1666 o->length++;
1667 o->data[o->length] = '\0';
1668}
1669
1670static void o_addQstr(o_string *o, const char *str, int len)
1671{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001672 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001673 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001674 return;
1675 }
1676 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001677 char ch;
1678 int sz;
1679 int ordinary_cnt = strcspn(str, "*?[\\");
1680 if (ordinary_cnt > len) /* paranoia */
1681 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001682 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001683 if (ordinary_cnt == len)
1684 return;
1685 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001686 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001687
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001688 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001689 sz = 1;
1690 if (ch) { /* it is necessarily one of "*?[\\" */
1691 sz++;
1692 o->data[o->length] = '\\';
1693 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001694 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001695 o_grow_by(o, sz);
1696 o->data[o->length] = ch;
1697 o->length++;
1698 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001699 }
1700}
1701
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001702/* A special kind of o_string for $VAR and `cmd` expansion.
1703 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001704 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001705 * list[i] contains an INDEX (int!) into this string data.
1706 * It means that if list[] needs to grow, data needs to be moved higher up
1707 * but list[i]'s need not be modified.
1708 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001709 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001710 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1711 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001712#if DEBUG_EXPAND || DEBUG_GLOB
1713static void debug_print_list(const char *prefix, o_string *o, int n)
1714{
1715 char **list = (char**)o->data;
1716 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1717 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001718
1719 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001720 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1721 prefix, list, n, string_start, o->length, o->maxlen);
1722 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001723 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001724 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1725 o->data + (int)list[i] + string_start,
1726 o->data + (int)list[i] + string_start);
1727 i++;
1728 }
1729 if (n) {
1730 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001731 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001732 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001733 }
1734}
1735#else
1736#define debug_print_list(prefix, o, n) ((void)0)
1737#endif
1738
1739/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1740 * in list[n] so that it points past last stored byte so far.
1741 * It returns n+1. */
1742static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001743{
1744 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001745 int string_start;
1746 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001747
1748 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001749 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1750 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001751 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001752 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001753 /* list[n] points to string_start, make space for 16 more pointers */
1754 o->maxlen += 0x10 * sizeof(list[0]);
1755 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001756 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001757 memmove(list + n + 0x10, list + n, string_len);
1758 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001759 } else {
1760 debug_printf_list("list[%d]=%d string_start=%d\n",
1761 n, string_len, string_start);
1762 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001763 } else {
1764 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001765 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1766 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001767 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1768 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001769 o->has_empty_slot = 0;
1770 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001771 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001772 return n + 1;
1773}
1774
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001775/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001776static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001777{
1778 char **list = (char**)o->data;
1779 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1780
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001781 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001782}
1783
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001784/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001785 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001786static int o_glob(o_string *o, int n)
1787{
1788 glob_t globdata;
1789 int gr;
1790 char *pattern;
1791
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001792 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001793 if (!o->data)
1794 return o_save_ptr_helper(o, n);
1795 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001796 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001797 if (!glob_needed(pattern)) {
1798 literal:
1799 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001800 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001801 return o_save_ptr_helper(o, n);
1802 }
1803
1804 memset(&globdata, 0, sizeof(globdata));
1805 gr = glob(pattern, 0, NULL, &globdata);
1806 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1807 if (gr == GLOB_NOSPACE)
1808 bb_error_msg_and_die("out of memory during glob");
1809 if (gr == GLOB_NOMATCH) {
1810 globfree(&globdata);
1811 goto literal;
1812 }
1813 if (gr != 0) { /* GLOB_ABORTED ? */
1814//TODO: testcase for bad glob pattern behavior
1815 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1816 }
1817 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1818 char **argv = globdata.gl_pathv;
1819 o->length = pattern - o->data; /* "forget" pattern */
1820 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001821 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001822 n = o_save_ptr_helper(o, n);
1823 argv++;
1824 if (!*argv)
1825 break;
1826 }
1827 }
1828 globfree(&globdata);
1829 if (DEBUG_GLOB)
1830 debug_print_list("o_glob returning", o, n);
1831 return n;
1832}
1833
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001834/* If o->o_glob == 1, glob the string so far remembered.
1835 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001836static int o_save_ptr(o_string *o, int n)
1837{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001838 if (o->o_glob) { /* if globbing is requested */
1839 /* If o->has_empty_slot, list[n] was already globbed
1840 * (if it was requested back then when it was filled)
1841 * so don't do that again! */
1842 if (!o->has_empty_slot)
1843 return o_glob(o, n); /* o_save_ptr_helper is inside */
1844 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001845 return o_save_ptr_helper(o, n);
1846}
1847
1848/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001849static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001850{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001851 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001852 int string_start;
1853
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001854 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1855 if (DEBUG_EXPAND)
1856 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001857 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001858 list = (char**)o->data;
1859 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1860 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001861 while (n) {
1862 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001863 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001864 }
1865 return list;
1866}
1867
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001868
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001869/* Expansion can recurse */
1870#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001871static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001872#endif
1873static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001874#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001875#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001876 parse_stream_dquoted(dest, input, dquote_end)
1877#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001878static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001879 o_string *dest,
1880 struct in_str *input,
1881 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001882
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001883/* expand_strvec_to_strvec() takes a list of strings, expands
1884 * all variable references within and returns a pointer to
1885 * a list of expanded strings, possibly with larger number
1886 * of strings. (Think VAR="a b"; echo $VAR).
1887 * This new list is allocated as a single malloc block.
1888 * NULL-terminated list of char* pointers is at the beginning of it,
1889 * followed by strings themself.
1890 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001891
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001892/* Store given string, finalizing the word and starting new one whenever
1893 * we encounter IFS char(s). This is used for expanding variable values.
1894 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1895static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001896{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001897 while (1) {
1898 int word_len = strcspn(str, G.ifs);
1899 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001900 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001901 o_addQstr(output, str, word_len);
1902 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001903 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001904 str += word_len;
1905 }
1906 if (!*str) /* EOL - do not finalize word */
1907 break;
1908 o_addchr(output, '\0');
1909 debug_print_list("expand_on_ifs", output, n);
1910 n = o_save_ptr(output, n);
1911 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001912 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001913 debug_print_list("expand_on_ifs[1]", output, n);
1914 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001915}
1916
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001917/* Helper to expand $((...)) and heredoc body. These act as if
1918 * they are in double quotes, with the exception that they are not :).
1919 * Just the rules are similar: "expand only $var and `cmd`"
1920 *
1921 * Returns malloced string.
1922 * As an optimization, we return NULL if expansion is not needed.
1923 */
1924static char *expand_pseudo_dquoted(const char *str)
1925{
1926 char *exp_str;
1927 struct in_str input;
1928 o_string dest = NULL_O_STRING;
1929
1930 if (strchr(str, '$') == NULL
1931#if ENABLE_HUSH_TICK
1932 && strchr(str, '`') == NULL
1933#endif
1934 ) {
1935 return NULL;
1936 }
1937
1938 /* We need to expand. Example:
1939 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1940 */
1941 setup_string_in_str(&input, str);
1942 parse_stream_dquoted(NULL, &dest, &input, EOF);
1943 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1944 exp_str = expand_string_to_string(dest.data);
1945 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1946 o_free_unsafe(&dest);
1947 return exp_str;
1948}
1949
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001950/* Expand all variable references in given string, adding words to list[]
1951 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1952 * to be filled). This routine is extremely tricky: has to deal with
1953 * variables/parameters with whitespace, $* and $@, and constructs like
1954 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1955static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001956{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001957 /* or_mask is either 0 (normal case) or 0x80
1958 * (expansion of right-hand side of assignment == 1-element expand.
1959 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001960
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001961 char first_ch, ored_ch;
1962 int i;
1963 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001964 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001965
Mike Frysingera4f331d2009-04-07 06:03:22 +00001966 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001967 ored_ch = 0;
1968
1969 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1970 debug_print_list("expand_vars_to_list", output, n);
1971 n = o_save_ptr(output, n);
1972 debug_print_list("expand_vars_to_list[0]", output, n);
1973
1974 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1975#if ENABLE_HUSH_TICK
1976 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001977#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001978#if ENABLE_SH_MATH_SUPPORT
1979 char arith_buf[sizeof(arith_t)*3 + 2];
1980#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001981 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001982 debug_print_list("expand_vars_to_list[1]", output, n);
1983 arg = ++p;
1984 p = strchr(p, SPECIAL_VAR_SYMBOL);
1985
1986 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1987 /* "$@" is special. Even if quoted, it can still
1988 * expand to nothing (not even an empty string) */
1989 if ((first_ch & 0x7f) != '@')
1990 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001991
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001992 val = NULL;
1993 switch (first_ch & 0x7f) {
1994 /* Highest bit in first_ch indicates that var is double-quoted */
1995 case '$': /* pid */
1996 val = utoa(G.root_pid);
1997 break;
1998 case '!': /* bg pid */
1999 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
2000 break;
2001 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00002002 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002003 break;
2004 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002005 if (arg[1] != SPECIAL_VAR_SYMBOL)
2006 /* actually, it's a ${#var} */
2007 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002008 val = utoa(G.global_argc ? G.global_argc-1 : 0);
2009 break;
2010 case '*':
2011 case '@':
2012 i = 1;
2013 if (!G.global_argv[i])
2014 break;
2015 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
2016 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002017 smallint sv = output->o_escape;
2018 /* unquoted var's contents should be globbed, so don't escape */
2019 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002020 while (G.global_argv[i]) {
2021 n = expand_on_ifs(output, n, G.global_argv[i]);
2022 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
2023 if (G.global_argv[i++][0] && G.global_argv[i]) {
2024 /* this argv[] is not empty and not last:
2025 * put terminating NUL, start new word */
2026 o_addchr(output, '\0');
2027 debug_print_list("expand_vars_to_list[2]", output, n);
2028 n = o_save_ptr(output, n);
2029 debug_print_list("expand_vars_to_list[3]", output, n);
2030 }
2031 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002032 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002033 } else
2034 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
2035 * and in this case should treat it like '$*' - see 'else...' below */
2036 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
2037 while (1) {
2038 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2039 if (++i >= G.global_argc)
2040 break;
2041 o_addchr(output, '\0');
2042 debug_print_list("expand_vars_to_list[4]", output, n);
2043 n = o_save_ptr(output, n);
2044 }
2045 } else { /* quoted $*: add as one word */
2046 while (1) {
2047 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
2048 if (!G.global_argv[++i])
2049 break;
2050 if (G.ifs[0])
2051 o_addchr(output, G.ifs[0]);
2052 }
2053 }
2054 break;
2055 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
2056 /* "Empty variable", used to make "" etc to not disappear */
2057 arg++;
2058 ored_ch = 0x80;
2059 break;
2060#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002061 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002062 *p = '\0';
2063 arg++;
2064//TODO: can we just stuff it into "output" directly?
2065 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00002066 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002067 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
2068 val = subst_result.data;
2069 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00002070#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00002071#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002072 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002073 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00002074 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00002075 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002076 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002077
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002078 arg++; /* skip '+' */
2079 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002080 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002081
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002082 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002083 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002084 hooks.setvar = arith_set_local_var;
2085 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002086 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2087 free(exp_str);
2088
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002089 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002090 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002091 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002092 case -3:
2093 msg = "exponent less than 0";
2094 break;
2095 case -2:
2096 msg = "divide by 0";
2097 break;
2098 case -5:
2099 msg = "expression recursion loop detected";
2100 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002101 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002102 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002103 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002104 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002105 sprintf(arith_buf, arith_t_fmt, res);
2106 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002107 break;
2108 }
2109#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002110 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002111 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002112 bool exp_len = false;
2113 bool exp_null = false;
2114 char *var = arg;
2115 char exp_save = exp_save; /* for compiler */
2116 char exp_op = exp_op; /* for compiler */
2117 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002118 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002119
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002120 *p = '\0';
2121 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002122
2123 /* prepare for expansions */
2124 if (var[0] == '#') {
2125 /* handle length expansion ${#var} */
2126 exp_len = true;
2127 ++var;
2128 } else {
2129 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002130 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002131 if (!var[exp_off])
2132 exp_off = 0;
2133 if (exp_off) {
2134 exp_save = var[exp_off];
2135 exp_null = exp_save == ':';
2136 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002137 if (exp_null)
2138 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002139 exp_op = *exp_word++;
2140 var[exp_off] = '\0';
2141 }
2142 }
2143
2144 /* lookup the variable in question */
2145 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002146 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002147 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002148 if (i < G.global_argc)
2149 val = G.global_argv[i];
2150 /* else val remains NULL: $N with too big N */
2151 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002152 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002153
2154 /* handle any expansions */
2155 if (exp_len) {
2156 debug_printf_expand("expand: length of '%s' = ", val);
2157 val = utoa(val ? strlen(val) : 0);
2158 debug_printf_expand("%s\n", val);
2159 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002160 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002161 if (val) {
2162 /* we need to do a pattern match */
2163 bool zero;
2164 char *loc;
2165 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2166 if (exp_op == *exp_word) /* ## or %% */
2167 ++exp_word;
2168 val = dyn_val = xstrdup(val);
2169 loc = scan(dyn_val, exp_word, zero);
2170 if (zero)
2171 val = loc;
2172 else
2173 *loc = '\0';
2174 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002175 } else {
2176 /* we need to do an expansion */
2177 int exp_test = (!val || (exp_null && !val[0]));
2178 if (exp_op == '+')
2179 exp_test = !exp_test;
2180 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2181 exp_null ? "true" : "false", exp_test);
2182 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002183 if (exp_op == '?') {
2184//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002185 /* ${var?[error_msg_if_unset]} */
2186 /* ${var:?[error_msg_if_unset_or_null]} */
2187 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002188 die_if_script("%s: %s",
2189 var,
2190 exp_word[0] ? exp_word : "parameter null or not set"
2191 );
2192 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002193 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002194 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002195
Mike Frysingera4f331d2009-04-07 06:03:22 +00002196 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002197 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002198 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002199 /* mimic bash message */
2200 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002201 val = NULL;
2202 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002203 char *new_var = xasprintf("%s=%s", var, val);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002204 set_local_var(new_var, -1, 0);
2205 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002206 }
2207 }
2208 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002209
Mike Frysinger6379bb42009-03-28 18:55:03 +00002210 var[exp_off] = exp_save;
2211 }
2212
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002213 arg[0] = first_ch;
2214#if ENABLE_HUSH_TICK
2215 store_val:
2216#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002217 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002218 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002219 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002220 /* unquoted var's contents should be globbed, so don't escape */
2221 smallint sv = output->o_escape;
2222 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002223 n = expand_on_ifs(output, n, val);
2224 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002225 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002226 }
2227 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002228 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002229 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002230 } /* default: */
2231 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002232 if (val) {
2233 o_addQstr(output, val, strlen(val));
2234 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002235 free(dyn_val);
2236 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002237 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002238 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002239 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002240
2241#if ENABLE_HUSH_TICK
2242 o_free(&subst_result);
2243#endif
2244 arg = ++p;
2245 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2246
2247 if (arg[0]) {
2248 debug_print_list("expand_vars_to_list[a]", output, n);
2249 /* this part is literal, and it was already pre-quoted
2250 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002251 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002252 debug_print_list("expand_vars_to_list[b]", output, n);
2253 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2254 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2255 ) {
2256 n--;
2257 /* allow to reuse list[n] later without re-growth */
2258 output->has_empty_slot = 1;
2259 } else {
2260 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002261 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002262 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002263}
2264
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002265static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002266{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002267 int n;
2268 char **list;
2269 char **v;
2270 o_string output = NULL_O_STRING;
2271
2272 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002273 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002274 /* (unquoted $var will temporarily switch it off) */
2275 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002276 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002277
2278 n = 0;
2279 v = argv;
2280 while (*v) {
2281 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2282 v++;
2283 }
2284 debug_print_list("expand_variables", &output, n);
2285
2286 /* output.data (malloced in one block) gets returned in "list" */
2287 list = o_finalize_list(&output, n);
2288 debug_print_strings("expand_variables[1]", list);
2289 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002290}
2291
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002292static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002293{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002294 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002295}
2296
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002297/* Used for expansion of right hand of assignments */
2298/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2299 * "v=/bin/c*" */
2300static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002301{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002302 char *argv[2], **list;
2303
2304 argv[0] = (char*)str;
2305 argv[1] = NULL;
2306 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2307 if (HUSH_DEBUG)
2308 if (!list[0] || list[1])
2309 bb_error_msg_and_die("BUG in varexp2");
2310 /* actually, just move string 2*sizeof(char*) bytes back */
2311 overlapping_strcpy((char*)list, list[0]);
2312 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2313 return (char*)list;
2314}
2315
2316/* Used for "eval" builtin */
2317static char* expand_strvec_to_string(char **argv)
2318{
2319 char **list;
2320
2321 list = expand_variables(argv, 0x80);
2322 /* Convert all NULs to spaces */
2323 if (list[0]) {
2324 int n = 1;
2325 while (list[n]) {
2326 if (HUSH_DEBUG)
2327 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2328 bb_error_msg_and_die("BUG in varexp3");
2329 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2330 n++;
2331 }
2332 }
2333 overlapping_strcpy((char*)list, list[0]);
2334 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2335 return (char*)list;
2336}
2337
2338static char **expand_assignments(char **argv, int count)
2339{
2340 int i;
2341 char **p = NULL;
2342 /* Expand assignments into one string each */
2343 for (i = 0; i < count; i++) {
2344 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2345 }
2346 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002347}
2348
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002349
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002350#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002351/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002352void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002353
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002354static void reset_traps_to_defaults(void)
2355{
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002356 /* This function is always called in a child shell
2357 * after fork (not vfork, NOMMU doesn't use this function).
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002358 * Child shells are not interactive.
2359 * SIGTTIN/SIGTTOU/SIGTSTP should not have special handling.
2360 * Testcase: (while :; do :; done) + ^Z should background.
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002361 * Same goes for SIGTERM, SIGHUP, SIGINT.
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002362 */
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002363 unsigned sig;
2364 unsigned mask;
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002365
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002366 if (!G.traps && !(G.non_DFL_mask & SPECIAL_INTERACTIVE_SIGS))
2367 return;
2368
2369 /* Stupid. It can be done with *single* &= op, but we can't use
2370 * the fact that G.blocked_set is implemented as a bitmask... */
2371 mask = (SPECIAL_INTERACTIVE_SIGS >> 1);
2372 sig = 1;
2373 while (1) {
2374 if (mask & 1)
2375 sigdelset(&G.blocked_set, sig);
2376 mask >>= 1;
2377 if (!mask)
2378 break;
2379 sig++;
2380 }
2381
2382 G.non_DFL_mask &= ~SPECIAL_INTERACTIVE_SIGS;
2383 mask = G.non_DFL_mask;
2384 if (G.traps) for (sig = 0; sig < NSIG; sig++, mask >>= 1) {
2385 if (!G.traps[sig])
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002386 continue;
2387 free(G.traps[sig]);
2388 G.traps[sig] = NULL;
2389 /* There is no signal for 0 (EXIT) */
2390 if (sig == 0)
2391 continue;
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00002392 /* There was a trap handler, we are removing it.
2393 * But if sig still has non-DFL handling,
2394 * we should not unblock it. */
2395 if (mask & 1)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002396 continue;
2397 sigdelset(&G.blocked_set, sig);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002398 }
Denis Vlasenko74a931a2009-04-15 23:29:44 +00002399 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002400}
2401
2402#else /* !BB_MMU */
2403
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002404static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2405static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002406{
2407 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002408 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002409 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002410#if ENABLE_HUSH_FUNCTIONS
2411 struct function *funcp;
2412#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002413 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002414 unsigned cnt;
2415
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002416 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002417 argv = heredoc_argv;
2418 argv[0] = (char *) G.argv0_for_re_execing;
2419 argv[1] = (char *) "-<";
2420 argv[2] = (char *) s;
2421 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002422 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002423 goto do_exec;
2424 }
2425
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002426 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2427 , (unsigned) G.root_pid
2428 , (unsigned) G.last_bg_pid
2429 , (unsigned) G.last_exitcode
2430 USE_HUSH_LOOPS(, G.depth_of_loop)
2431 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002432 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002433 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002434 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002435 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002436 for (cur = G.top_var; cur; cur = cur->next) {
2437 if (!cur->flg_export || cur->flg_read_only)
2438 cnt += 2;
2439 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002440#if ENABLE_HUSH_FUNCTIONS
2441 for (funcp = G.top_func; funcp; funcp = funcp->next)
2442 cnt += 3;
2443#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002444 pp = g_argv;
2445 while (*pp++)
2446 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002447 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002448 *pp++ = (char *) G.argv0_for_re_execing;
2449 *pp++ = param_buf;
2450 for (cur = G.top_var; cur; cur = cur->next) {
2451 if (cur->varstr == hush_version_str)
2452 continue;
2453 if (cur->flg_read_only) {
2454 *pp++ = (char *) "-R";
2455 *pp++ = cur->varstr;
2456 } else if (!cur->flg_export) {
2457 *pp++ = (char *) "-V";
2458 *pp++ = cur->varstr;
2459 }
2460 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002461#if ENABLE_HUSH_FUNCTIONS
2462 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2463 *pp++ = (char *) "-F";
2464 *pp++ = funcp->name;
2465 *pp++ = funcp->body_as_string;
2466 }
2467#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002468 /* We can pass activated traps here. Say, -Tnn:trap_string
2469 *
2470 * However, POSIX says that subshells reset signals with traps
2471 * to SIG_DFL.
2472 * I tested bash-3.2 and it not only does that with true subshells
2473 * of the form ( list ), but with any forked children shells.
2474 * I set trap "echo W" WINCH; and then tried:
2475 *
2476 * { echo 1; sleep 20; echo 2; } &
2477 * while true; do echo 1; sleep 20; echo 2; break; done &
2478 * true | { echo 1; sleep 20; echo 2; } | cat
2479 *
2480 * In all these cases sending SIGWINCH to the child shell
2481 * did not run the trap. If I add trap "echo V" WINCH;
2482 * _inside_ group (just before echo 1), it works.
2483 *
2484 * I conclude it means we don't need to pass active traps here.
2485 * exec syscall below resets them to SIG_DFL for us.
2486 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002487 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002488 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002489 *pp++ = g_argv0;
2490 while (*g_argv)
2491 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002492 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002493 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002494
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002495 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002496 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2497 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002498 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002499 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002500 if (argv[0][0] == '/')
2501 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002502 xfunc_error_retval = 127;
2503 bb_error_msg_and_die("can't re-execute the shell");
2504}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002505#endif /* !BB_MMU */
2506
2507
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002508static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002509{
2510 struct fd_pair pair;
2511 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002512 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002513 /* the _body_ of heredoc (misleading field name) */
2514 const char *heredoc = redir->rd_filename;
2515 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002516#if !BB_MMU
2517 char **to_free;
2518#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002519
2520 expanded = NULL;
2521 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2522 expanded = expand_pseudo_dquoted(heredoc);
2523 if (expanded)
2524 heredoc = expanded;
2525 }
2526 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002527
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002528 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002529 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002530 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002531
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002532 /* Try writing without forking. Newer kernels have
2533 * dynamically growing pipes. Must use non-blocking write! */
2534 ndelay_on(pair.wr);
2535 while (1) {
2536 written = write(pair.wr, heredoc, len);
2537 if (written <= 0)
2538 break;
2539 len -= written;
2540 if (len == 0) {
2541 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002542 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002543 return;
2544 }
2545 heredoc += written;
2546 }
2547 ndelay_off(pair.wr);
2548
2549 /* Okay, pipe buffer was not big enough */
2550 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002551 * for the unsuspecting parent process. Child creates a grandchild
2552 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002553 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002554#if !BB_MMU
2555 to_free = NULL;
2556#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002557 pid = vfork();
2558 if (pid < 0)
2559 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002560 if (pid == 0) {
2561 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002562 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002563 pid = BB_MMU ? fork() : vfork();
2564 if (pid < 0)
2565 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2566 if (pid != 0)
2567 _exit(0);
2568 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002569 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002570#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002571 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002572 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002573#else
2574 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002575 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002576 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002577#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002578 }
2579 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002580 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002581#if !BB_MMU
2582 free(to_free);
2583#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002584 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002585 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002586 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002587}
2588
Eric Andersen25f27032001-04-26 23:22:31 +00002589/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2590 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002591static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002592{
2593 int openfd, mode;
2594 struct redir_struct *redir;
2595
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002596 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002597 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002598 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002599 if (squirrel && redir->rd_fd < 3) {
2600 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002601 }
2602 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2603 * of the heredoc */
2604 debug_printf_parse("set heredoc '%s'\n",
2605 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002606 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002607 continue;
2608 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002609
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002610 if (redir->rd_dup == REDIRFD_TO_FILE) {
2611 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002612 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002613 if (redir->rd_filename == NULL) {
2614 /* Something went wrong in the parse.
2615 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002616 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002617 continue;
2618 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002619 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002620 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002621 openfd = open_or_warn(p, mode);
2622 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002623 if (openfd < 0) {
2624 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002625 * bash and ash both lose it as well (though zsh doesn't!) */
2626//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002627 return 1;
2628 }
2629 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002630 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002631 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002632 }
2633
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002634 if (openfd != redir->rd_fd) {
2635 if (squirrel && redir->rd_fd < 3) {
2636 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002637 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002638 if (openfd == REDIRFD_CLOSE) {
2639 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002640 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002641 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002642 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002643 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002644 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002645 }
Eric Andersen25f27032001-04-26 23:22:31 +00002646 }
2647 }
2648 return 0;
2649}
2650
2651static void restore_redirects(int squirrel[])
2652{
2653 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002654 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002655 fd = squirrel[i];
2656 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002657 /* We simply die on error */
2658 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002659 }
2660 }
2661}
2662
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002663
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002664static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002665
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002666/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002667static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002668{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002669 char **p;
2670 struct command *command;
2671 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002672 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002673
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002674 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002675 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002676 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002677 for (i = 0; i < pi->num_cmds; i++) {
2678 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002679 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002680 if (command->argv) {
2681 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002682 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002683 }
2684 free_strings(command->argv);
2685 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002686 }
2687 /* not "else if": on syntax error, we may have both! */
2688 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002689 debug_printf_clean(" begin group (grp_type:%d)\n",
2690 command->grp_type);
2691 free_pipe_list(command->group);
2692 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002693 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002694 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002695 /* else is crucial here.
2696 * If group != NULL, child_func is meaningless */
2697#if ENABLE_HUSH_FUNCTIONS
2698 else if (command->child_func) {
2699 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2700 command->child_func->parent_cmd = NULL;
2701 }
2702#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002703#if !BB_MMU
2704 free(command->group_as_string);
2705 command->group_as_string = NULL;
2706#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002707 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002708 debug_printf_clean(" redirect %d%s",
2709 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002710 /* guard against the case >$FOO, where foo is unset or blank */
2711 if (r->rd_filename) {
2712 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2713 free(r->rd_filename);
2714 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002715 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002716 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002717 rnext = r->next;
2718 free(r);
2719 }
2720 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002721 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002722 free(pi->cmds); /* children are an array, they get freed all at once */
2723 pi->cmds = NULL;
2724#if ENABLE_HUSH_JOB
2725 free(pi->cmdtext);
2726 pi->cmdtext = NULL;
2727#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002728}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002729
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002730static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002731{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002732 struct pipe *pi, *next;
2733
2734 for (pi = head; pi; pi = next) {
2735#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002736 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002737#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002738 free_pipe(pi);
2739 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002740 next = pi->next;
2741 /*pi->next = NULL;*/
2742 free(pi);
2743 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002744}
2745
2746
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002747static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002748#if BB_MMU
2749#define parse_stream(pstring, input, end_trigger) \
2750 parse_stream(input, end_trigger)
2751#endif
2752static struct pipe *parse_stream(char **pstring,
2753 struct in_str *input,
2754 int end_trigger);
2755static void parse_and_run_string(const char *s);
2756
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002757
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002758static const struct built_in_command* find_builtin(const char *name)
2759{
2760 const struct built_in_command *x;
2761 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2762 if (strcmp(name, x->cmd) != 0)
2763 continue;
2764 debug_printf_exec("found builtin '%s'\n", name);
2765 return x;
2766 }
2767 return NULL;
2768}
2769
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002770#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002771static const struct function *find_function(const char *name)
2772{
2773 const struct function *funcp = G.top_func;
2774 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002775 if (strcmp(name, funcp->name) == 0) {
2776 break;
2777 }
2778 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002779 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002780 debug_printf_exec("found function '%s'\n", name);
2781 return funcp;
2782}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002783
Denis Vlasenkobc569742009-04-12 20:35:19 +00002784/* Note: takes ownership on name ptr */
2785static struct function *new_function(char *name)
2786{
2787 struct function *funcp;
2788 struct function **funcpp = &G.top_func;
2789
2790 while ((funcp = *funcpp) != NULL) {
2791 struct command *cmd;
2792
2793 if (strcmp(funcp->name, name) != 0) {
2794 funcpp = &funcp->next;
2795 continue;
2796 }
2797
2798 cmd = funcp->parent_cmd;
2799 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2800 if (!cmd) {
2801 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2802 free(funcp->name);
2803 /* Note: if !funcp->body, do not free body_as_string!
2804 * This is a special case of "-F name body" function:
2805 * body_as_string was not malloced! */
2806 if (funcp->body) {
2807 free_pipe_list(funcp->body);
2808#if !BB_MMU
2809 free(funcp->body_as_string);
2810#endif
2811 }
2812 } else {
2813 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2814 cmd->argv[0] = funcp->name;
2815 cmd->group = funcp->body;
2816#if !BB_MMU
2817 cmd->group_as_string = funcp->body_as_string;
2818#endif
2819 }
2820 goto skip;
2821 }
2822 debug_printf_exec("remembering new function '%s'\n", command->argv[0]);
2823 funcp = *funcpp = xzalloc(sizeof(*funcp));
2824 /*funcp->next = NULL;*/
2825 skip:
2826 funcp->name = name;
2827 return funcp;
2828}
2829
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002830#if BB_MMU
2831#define exec_function(nommu_save, funcp, argv) \
2832 exec_function(funcp, argv)
2833#endif
2834static void exec_function(nommu_save_t *nommu_save,
2835 const struct function *funcp,
2836 char **argv) NORETURN;
2837static void exec_function(nommu_save_t *nommu_save,
2838 const struct function *funcp,
2839 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002840{
2841# if BB_MMU
2842 int n = 1;
2843
2844 argv[0] = G.global_argv[0];
2845 G.global_argv = argv;
2846 while (*++argv)
2847 n++;
2848 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002849 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002850 n = run_list(funcp->body);
2851 fflush(NULL);
2852 _exit(n);
2853# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002854 re_execute_shell(&nommu_save->argv_from_re_execing,
2855 funcp->body_as_string,
2856 G.global_argv[0],
2857 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002858# endif
2859}
2860
2861static int run_function(const struct function *funcp, char **argv)
2862{
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002863 int rc;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002864 smallint sv_flg;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002865 save_arg_t sv;
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002866
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002867 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002868 /* "we are in function, ok to use return" */
2869 sv_flg = G.flag_return_in_progress;
2870 G.flag_return_in_progress = -1;
2871
Denis Vlasenkobc569742009-04-12 20:35:19 +00002872 /* On MMU, funcp->body is always non-NULL */
2873#if !BB_MMU
2874 if (!funcp->body) {
2875 /* Function defined by -F */
2876 parse_and_run_string(funcp->body_as_string);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002877 rc = G.last_exitcode;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002878 } else
2879#endif
2880 {
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002881 rc = run_list(funcp->body);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002882 }
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00002883
2884 G.flag_return_in_progress = sv_flg;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002885 restore_G_args(&sv, argv);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002886
Denis Vlasenko270b1c32009-04-17 18:54:50 +00002887 return rc;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002888}
2889#endif
2890
2891
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002892#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002893#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2894 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2895#define pseudo_exec(nommu_save, command, argv_expanded) \
2896 pseudo_exec(command, argv_expanded)
2897#endif
2898
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002899/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002900 * Never returns.
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00002901 * Don't exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002902 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002903 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002904static void pseudo_exec_argv(nommu_save_t *nommu_save,
2905 char **argv, int assignment_cnt,
2906 char **argv_expanded) NORETURN;
2907static void pseudo_exec_argv(nommu_save_t *nommu_save,
2908 char **argv, int assignment_cnt,
2909 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002910{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002911 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002912
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002913 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002914 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002915 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002916
Denis Vlasenko9504e442008-10-29 01:19:15 +00002917 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002918#if BB_MMU
2919 putenv_all(new_env);
2920 free(new_env); /* optional */
2921#else
2922 nommu_save->new_env = new_env;
2923 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002924#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002925 if (argv_expanded) {
2926 argv = argv_expanded;
2927 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002928 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002929#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002930 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002931#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002932 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002933
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002934#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2935 if (strchr(argv[0], '/') != NULL)
2936 goto skip;
2937#endif
2938
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002939 /* On NOMMU, we must never block!
2940 * Example: { sleep 99999 | read line } & echo Ok
2941 * read builtin will block on read syscall, leaving parent blocked
2942 * in vfork. Therefore we can't do this:
2943 */
2944#if BB_MMU
2945 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002946 * Depending on context, this might be redundant. But it's
2947 * easier to waste a few CPU cycles than it is to figure out
2948 * if this is one of those cases.
2949 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002950 {
2951 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002952 const struct built_in_command *x = find_builtin(argv[0]);
2953 if (x) {
2954 rcode = x->function(argv);
2955 fflush(NULL);
2956 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00002957 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002958 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002959#endif
2960#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002961 /* Check if the command matches any functions */
2962 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002963 const struct function *funcp = find_function(argv[0]);
2964 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002965 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002966 }
2967 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002968#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002969
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002970#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002971 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002972 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002973 int a = find_applet_by_name(argv[0]);
2974 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002975# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002976 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002977 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002978 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002979 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002980# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002981 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002982 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002983 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2984 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002985 /* If they called chroot or otherwise made the binary no longer
2986 * executable, fall through */
2987 }
2988 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002989#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002990
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002991#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002992 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002993#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002994 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002995 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002996 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002997 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002998 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002999}
3000
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003001/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00003002 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003003static void pseudo_exec(nommu_save_t *nommu_save,
3004 struct command *command,
3005 char **argv_expanded) NORETURN;
3006static void pseudo_exec(nommu_save_t *nommu_save,
3007 struct command *command,
3008 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003009{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003010 if (command->argv) {
3011 pseudo_exec_argv(nommu_save, command->argv,
3012 command->assignment_cnt, argv_expanded);
3013 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003014
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003015 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00003016 /* Cases when we are here:
3017 * ( list )
3018 * { list } &
3019 * ... | ( list ) | ...
3020 * ... | { list } | ...
3021 */
3022#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00003023 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003024 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00003025 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003026 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00003027 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003028 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00003029 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003030#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003031 re_execute_shell(&nommu_save->argv_from_re_execing,
3032 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003033 G.global_argv[0],
3034 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00003035#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003036 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003037
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003038 /* Case when we are here: ... | >file */
3039 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003040 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00003041}
3042
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003043#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003044static const char *get_cmdtext(struct pipe *pi)
3045{
3046 char **argv;
3047 char *p;
3048 int len;
3049
3050 /* This is subtle. ->cmdtext is created only on first backgrounding.
3051 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003052 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003053 if (pi->cmdtext)
3054 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003055 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003056 if (!argv || !argv[0]) {
3057 pi->cmdtext = xzalloc(1);
3058 return pi->cmdtext;
3059 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003060
3061 len = 0;
3062 do len += strlen(*argv) + 1; while (*++argv);
3063 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003064 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003065 do {
3066 len = strlen(*argv);
3067 memcpy(p, *argv, len);
3068 p += len;
3069 *p++ = ' ';
3070 } while (*++argv);
3071 p[-1] = '\0';
3072 return pi->cmdtext;
3073}
3074
Eric Andersenbafd94f2001-05-02 16:11:59 +00003075static void insert_bg_job(struct pipe *pi)
3076{
3077 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003078 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003079
3080 /* Linear search for the ID of the job to use */
3081 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003082 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003083 if (thejob->jobid >= pi->jobid)
3084 pi->jobid = thejob->jobid + 1;
3085
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003086 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003087 if (!G.job_list) {
3088 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003089 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003090 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003091 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003092 thejob->next = xmalloc(sizeof(*thejob));
3093 thejob = thejob->next;
3094 }
3095
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003096 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00003097 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003098 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3099 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
3100 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003101// TODO: do we really need to have so many fields which are just dead weight
3102// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003103 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003104 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003105 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003106 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003107 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003108
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003109 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00003110 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003111 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003112 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003113 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003114 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003115}
3116
Eric Andersenbafd94f2001-05-02 16:11:59 +00003117static void remove_bg_job(struct pipe *pi)
3118{
3119 struct pipe *prev_pipe;
3120
Denis Vlasenko87a86552008-07-29 19:43:10 +00003121 if (pi == G.job_list) {
3122 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003123 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003124 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003125 while (prev_pipe->next != pi)
3126 prev_pipe = prev_pipe->next;
3127 prev_pipe->next = pi->next;
3128 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003129 if (G.job_list)
3130 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003131 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003132 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003133}
Eric Andersen028b65b2001-06-28 01:10:11 +00003134
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003135/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003136static void delete_finished_bg_job(struct pipe *pi)
3137{
3138 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003139 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003140 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003141 free(pi);
3142}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003143#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003144
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003145/* Check to see if any processes have exited -- if they
3146 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003147static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003148{
Eric Andersenc798b072001-06-22 06:23:03 +00003149 int attributes;
3150 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003151#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003152 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003153#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003154 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003155 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003156
Denis Vlasenkod5762932009-03-31 11:22:57 +00003157 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3158
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003159 errno = 0;
3160// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3161// /* avoid doing syscall, nothing there anyway */
3162// return rcode;
3163
Eric Andersenc798b072001-06-22 06:23:03 +00003164 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003165 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003166 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003167
Denis Vlasenko1359da62007-04-21 23:27:30 +00003168/* Do we do this right?
3169 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003170 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003171 * [3]+ Stopped sleep 20 | false
3172 * bash-3.00# echo $?
3173 * 1 <========== bg pipe is not fully done, but exitcode is already known!
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003174 * [hush 1.14.0: yes we do it right]
Denis Vlasenko1359da62007-04-21 23:27:30 +00003175 */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003176 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003177 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003178 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003179 int dead;
3180
3181// i = G.count_SIGCHLD;
3182 childpid = waitpid(-1, &status, attributes);
3183 if (childpid <= 0) {
3184 if (childpid && errno != ECHILD)
3185 bb_perror_msg("waitpid");
3186// else /* Until next SIGCHLD, waitpid's are useless */
3187// G.handled_SIGCHLD = i;
3188 break;
3189 }
3190 dead = WIFEXITED(status) || WIFSIGNALED(status);
3191
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003192#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003193 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003194 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003195 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3196 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003197 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003198 childpid, WTERMSIG(status), WEXITSTATUS(status));
3199 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003200 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003201 childpid, WEXITSTATUS(status));
3202#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003203 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003204 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003205 for (i = 0; i < fg_pipe->num_cmds; i++) {
3206 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3207 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003208 continue;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003209 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003210 fg_pipe->cmds[i].pid = 0;
3211 fg_pipe->alive_cmds--;
3212 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003213 /* last process gives overall exitstatus */
3214 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003215 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003216 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003217 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003218 fg_pipe->cmds[i].is_stopped = 1;
3219 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003220 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003221 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3222 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3223 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003224 /* All processes in fg pipe have exited or stopped */
3225/* Note: *non-interactive* bash does not continue if all processes in fg pipe
3226 * are stopped. Testcase: "cat | cat" in a script (not on command line!)
3227 * and "killall -STOP cat" */
3228 if (G_interactive_fd) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003229#if ENABLE_HUSH_JOB
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003230 if (fg_pipe->alive_cmds)
3231 insert_bg_job(fg_pipe);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003232#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003233 return rcode;
3234 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003235 }
3236 /* There are still running processes in the fg pipe */
3237 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003238 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003239 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003240 }
3241
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003242#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003243 /* We asked to wait for bg or orphaned children */
3244 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003245 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003246 for (i = 0; i < pi->num_cmds; i++) {
3247 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003248 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003249 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003250 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003251 /* Happens when shell is used as init process (init=/bin/sh) */
3252 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003253 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003254
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003255 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003256 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003257 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003258 pi->cmds[i].pid = 0;
3259 pi->alive_cmds--;
3260 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003261 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003262 printf(JOB_STATUS_FORMAT, pi->jobid,
3263 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003264 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003265 }
3266 } else {
3267 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003268 pi->cmds[i].is_stopped = 1;
3269 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003270 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003271#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003272 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003273
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003274 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003275}
3276
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003277#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003278static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3279{
3280 pid_t p;
3281 int rcode = checkjobs(fg_pipe);
3282 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00003283 p = getpgid(0); /* pgid of our process */
3284 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003285 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00003286 return rcode;
3287}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003288#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003289
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003290/* Start all the jobs, but don't wait for anything to finish.
3291 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003292 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003293 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003294 * to finish to determine the exit status of the pipe. If the pipe
3295 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003296 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003297 * return value.
3298 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003299 * Returns -1 only if started some children. IOW: we have to
3300 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003301 *
3302 * The only case when we do not need to [v]fork is when the pipe
3303 * is single, non-backgrounded, non-subshell command. Examples:
3304 * cmd ; ... { list } ; ...
3305 * cmd && ... { list } && ...
3306 * cmd || ... { list } || ...
3307 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3308 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003309 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003310 *
3311 * Cases when we must fork:
3312 * non-single: cmd | cmd
3313 * backgrounded: cmd & { list } &
3314 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003315 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003316static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003317{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003318 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003319 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003320 int nextin;
3321 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003322 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003323 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003324 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003325 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003326 /* it is not always needed, but we aim to smaller code */
3327 int squirrel[] = { -1, -1, -1 };
3328 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003329
Denis Vlasenko552433b2009-04-04 19:29:21 +00003330 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003331 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003332
Denis Vlasenko552433b2009-04-04 19:29:21 +00003333 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003334 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003335 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003336 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003337
Denis Vlasenko552433b2009-04-04 19:29:21 +00003338 if (pi->num_cmds != 1
3339 || pi->followup == PIPE_BG
3340 || command->grp_type == GRP_SUBSHELL
3341 ) {
3342 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003343 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003344
Denis Vlasenko552433b2009-04-04 19:29:21 +00003345 pi->alive_cmds = 1;
3346
3347 debug_printf_exec(": group:%p argv:'%s'\n",
3348 command->group, command->argv ? command->argv[0] : "NONE");
3349
3350 if (command->group) {
3351#if ENABLE_HUSH_FUNCTIONS
3352 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003353 /* "executing" func () { list } */
3354 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003355
Denis Vlasenkobc569742009-04-12 20:35:19 +00003356 funcp = new_function(command->argv[0]);
3357 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003358 funcp->body = command->group;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003359#if !BB_MMU
3360 funcp->body_as_string = command->group_as_string;
3361 command->group_as_string = NULL;
3362#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003363 command->group = NULL;
3364 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003365 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3366 funcp->parent_cmd = command;
3367 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003368
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003369 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3370 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003371 return EXIT_SUCCESS;
3372 }
3373#endif
3374 /* { list } */
3375 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003376 rcode = 1; /* exitcode if redir failed */
3377 if (setup_redirects(command, squirrel) == 0) {
3378 debug_printf_exec(": run_list\n");
3379 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003380 }
Eric Andersen04407e52001-06-07 16:42:05 +00003381 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003382 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003383 debug_leave();
3384 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003385 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003386 }
3387
Denis Vlasenko552433b2009-04-04 19:29:21 +00003388 argv = command->argv ? command->argv : (char **) &null_ptr;
3389 {
3390 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003391#if ENABLE_HUSH_FUNCTIONS
3392 const struct function *funcp;
3393#else
3394 enum { funcp = 0 };
3395#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003396 char **new_env = NULL;
3397 char **old_env = NULL;
3398
Denis Vlasenko552433b2009-04-04 19:29:21 +00003399 if (argv[command->assignment_cnt] == NULL) {
3400 /* Assignments, but no command */
3401 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003402 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003403 restore_redirects(squirrel);
3404 /* Set shell variables */
3405 while (*argv) {
3406 p = expand_string_to_string(*argv);
3407 debug_printf_exec("set shell var:'%s'->'%s'\n",
3408 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003409 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003410 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003411 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003412 /* Do we need to flag set_local_var() errors?
3413 * "assignment to readonly var" and "putenv error"
3414 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003415 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003416 debug_leave();
3417 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003418 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003419 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003420
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003421 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003422 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003423
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003424 x = find_builtin(argv_expanded[0]);
3425#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003426 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003427 if (!x)
3428 funcp = find_function(argv_expanded[0]);
3429#endif
3430 if (x || funcp) {
3431 if (!funcp) {
3432 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3433 debug_printf("exec with redirects only\n");
3434 rcode = setup_redirects(command, NULL);
3435 goto clean_up_and_ret1;
3436 }
Eric Andersen25f27032001-04-26 23:22:31 +00003437 }
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003438 /* setup_redirects acts on file descriptors, not FILEs.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003439 * This is perfect for work that comes after exec().
3440 * Is it really safe for inline use? Experimentally,
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00003441 * things seem to work. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003442 rcode = setup_redirects(command, squirrel);
3443 if (rcode == 0) {
3444 new_env = expand_assignments(argv, command->assignment_cnt);
3445 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003446 if (!funcp) {
3447 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003448 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003449 rcode = x->function(argv_expanded) & 0xff;
3450 }
3451#if ENABLE_HUSH_FUNCTIONS
3452 else {
3453 debug_printf_exec(": function '%s' '%s'...\n",
3454 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003455 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003456 }
3457#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003458 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003459#if ENABLE_FEATURE_SH_STANDALONE
3460 clean_up_and_ret:
3461#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003462 restore_redirects(squirrel);
3463 free_strings_and_unsetenv(new_env, 1);
3464 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003465 /* Free the pointers, but the strings themselves
3466 * are in environ now, don't use free_strings! */
3467 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003468 clean_up_and_ret1:
3469 free(argv_expanded);
3470 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003471 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003472 debug_printf_exec("run_pipe return %d\n", rcode);
3473 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003474 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003475
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003476#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003477 i = find_applet_by_name(argv_expanded[0]);
3478 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003479 rcode = setup_redirects(command, squirrel);
3480 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003481 new_env = expand_assignments(argv, command->assignment_cnt);
3482 old_env = putenv_all_and_save_old(new_env);
3483 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003484 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003485 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003486 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003487 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003488 }
3489#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003490 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003491 }
3492
Denis Vlasenko552433b2009-04-04 19:29:21 +00003493 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003494 /* NB: argv_expanded may already be created, and that
3495 * might include `cmd` runs! Do not rerun it! We *must*
3496 * use argv_expanded if it's non-NULL */
3497
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003498 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003499 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003500 nextin = 0;
3501
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003502 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003503#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003504 volatile nommu_save_t nommu_save;
3505 nommu_save.new_env = NULL;
3506 nommu_save.old_env = NULL;
3507 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003508 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003509#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003510 command = &(pi->cmds[i]);
3511 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003512 debug_printf_exec(": pipe member '%s' '%s'...\n",
3513 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003514 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003515 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003516 }
Eric Andersen25f27032001-04-26 23:22:31 +00003517
3518 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003519 pipefds[0] = 0;
3520 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003521 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003522 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003523
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003524 command->pid = BB_MMU ? fork() : vfork();
3525 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003526#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003527 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003528
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003529 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003530 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003531 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003532 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003533 pgrp = pi->pgrp;
3534 if (pgrp < 0) /* true for 1st process only */
3535 pgrp = getpid();
3536 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003537 /* We do it in *every* child, not just first,
3538 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003539 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003540 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003541 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003542#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003543 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003544 xmove_fd(pipefds[1], 1); /* write end */
3545 if (pipefds[0] > 1)
3546 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003547 /* Like bash, explicit redirects override pipes,
3548 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003549 if (setup_redirects(command, NULL))
3550 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003551
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003552 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003553 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3554
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003555 /* Stores to nommu_save list of env vars putenv'ed
3556 * (NOMMU, on MMU we don't need that) */
3557 /* cast away volatility... */
3558 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003559 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003560 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003561
Denis Vlasenkof9375282009-04-05 19:13:39 +00003562 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003563 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003564#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003565 /* Clean up after vforked child */
3566 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003567 free(nommu_save.argv_from_re_execing);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003568 free_strings_and_unsetenv(nommu_save.new_env, 1);
3569 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003570 /* Free the pointers, but the strings themselves
3571 * are in environ now, don't use free_strings! */
3572 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003573#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003574 free(argv_expanded);
3575 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003576 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003577 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003578 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003579 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003580 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003581#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003582 /* Second and next children need to know pid of first one */
3583 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003584 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003585#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003586 }
Eric Andersen25f27032001-04-26 23:22:31 +00003587
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003588 if (i)
3589 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003590 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003591 close(pipefds[1]); /* write end */
3592 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003593 nextin = pipefds[0];
3594 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003595
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003596 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003597 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003598 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3599 return 1;
3600 }
3601
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003602 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003603 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003604 return -1;
3605}
3606
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003607#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003608static void debug_print_tree(struct pipe *pi, int lvl)
3609{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003610 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003611 [PIPE_SEQ] = "SEQ",
3612 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003613 [PIPE_OR ] = "OR" ,
3614 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003615 };
3616 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003617 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003618#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003619 [RES_IF ] = "IF" ,
3620 [RES_THEN ] = "THEN" ,
3621 [RES_ELIF ] = "ELIF" ,
3622 [RES_ELSE ] = "ELSE" ,
3623 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003624#endif
3625#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003626 [RES_FOR ] = "FOR" ,
3627 [RES_WHILE] = "WHILE",
3628 [RES_UNTIL] = "UNTIL",
3629 [RES_DO ] = "DO" ,
3630 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003631#endif
3632#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003633 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003634#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003635#if ENABLE_HUSH_CASE
3636 [RES_CASE ] = "CASE" ,
3637 [RES_MATCH] = "MATCH",
3638 [RES_CASEI] = "CASEI",
3639 [RES_ESAC ] = "ESAC" ,
3640#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003641 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003642 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003643 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003644 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003645 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003646 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003647#if ENABLE_HUSH_FUNCTIONS
3648 "func()",
3649#endif
3650 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003651
3652 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003653
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003654 pin = 0;
3655 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003656 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3657 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003658 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003659 while (prn < pi->num_cmds) {
3660 struct command *command = &pi->cmds[prn];
3661 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003662
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003663 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003664 lvl*2, "", prn,
3665 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003666 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003667 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003668 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003669 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003670 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003671 prn++;
3672 continue;
3673 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003674 if (argv) while (*argv) {
3675 fprintf(stderr, " '%s'", *argv);
3676 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003677 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003678 fprintf(stderr, "\n");
3679 prn++;
3680 }
3681 pi = pi->next;
3682 pin++;
3683 }
3684}
3685#endif
3686
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003687/* NB: called by pseudo_exec, and therefore must not modify any
3688 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003689static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003690{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003691#if ENABLE_HUSH_CASE
3692 char *case_word = NULL;
3693#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003694#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003695 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003696 char *for_varname = NULL;
3697 char **for_lcur = NULL;
3698 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003699#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003700 smallint last_followup;
3701 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003702#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003703 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003704#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003705 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003706#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003707#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003708 smallint rword; /* enum reserved_style */
3709 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003710#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003711
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003712 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003713 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003714
Denis Vlasenko06810332007-05-21 23:30:54 +00003715#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003716 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003717 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3718 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003719 continue;
3720 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003721 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003722 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003723 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003724 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003725 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003726 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003727 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003728 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003729 continue;
3730 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003731 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3732 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003733 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003734 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003735 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003736 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003737 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003738 }
3739 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003740#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003741
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003742 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003743 * in order to return, no direct "return" statements please.
3744 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003745
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003746#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003747 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003748#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003749
Denis Vlasenko0e151382009-04-06 18:40:31 +00003750#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003751 rword = RES_NONE;
3752 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003753#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003754 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003755 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003756
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003757 /* Go through list of pipes, (maybe) executing them. */
3758 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003759 if (G.flag_SIGINT)
3760 break;
3761
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003762 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003763 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3764 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003765#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003766 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003767 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003768 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003769 /* start of a loop: remember where loop starts */
3770 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003771 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003772 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003773#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003774 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003775 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003776 if ((rcode == 0 && last_followup == PIPE_OR)
3777 || (rcode != 0 && last_followup == PIPE_AND)
3778 ) {
3779 /* It is "<true> || CMD" or "<false> && CMD"
3780 * and we should not execute CMD */
3781 debug_printf_exec("skipped cmd because of || or &&\n");
3782 last_followup = pi->followup;
3783 continue;
3784 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003785 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003786 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003787 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003788#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003789 if (cond_code) {
3790 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003791 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003792 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003793 /* "if <false> THEN cmd": skip cmd */
3794 continue;
3795 }
3796 } else {
3797 if (rword == RES_ELSE || rword == RES_ELIF) {
3798 /* "if <true> then ... ELSE/ELIF cmd":
3799 * skip cmd and all following ones */
3800 break;
3801 }
3802 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003803#endif
3804#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003805 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003806 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003807 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003808
3809 static const char encoded_dollar_at[] ALIGN1 = {
3810 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3811 }; /* encoded representation of "$@" */
3812 static const char *const encoded_dollar_at_argv[] = {
3813 encoded_dollar_at, NULL
3814 }; /* argv list with one element: "$@" */
3815 char **vals;
3816
3817 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003818 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003819 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003820 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003821 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003822 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003823 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003824 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003825 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003826 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003827 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003828 debug_print_strings("for_list made from", vals);
3829 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003830 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003831 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003832 for_varname = pi->cmds[0].argv[0];
3833 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003834 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003835 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003836 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003837 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003838 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003839 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003840 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003841 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003842 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003843 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003844 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003845 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003846 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3847 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003848 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003849 if (rword == RES_IN) {
3850 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3851 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003852 if (rword == RES_DONE) {
3853 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003854 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003855#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003856#if ENABLE_HUSH_CASE
3857 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003858 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003859 continue;
3860 }
3861 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003862 char **argv;
3863
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003864 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3865 break;
3866 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003867 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003868 while (*argv) {
3869 char *pattern = expand_string_to_string(*argv);
3870 /* TODO: which FNM_xxx flags to use? */
3871 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3872 free(pattern);
3873 if (cond_code == 0) { /* match! we will execute this branch */
3874 free(case_word); /* make future "word)" stop */
3875 case_word = NULL;
3876 break;
3877 }
3878 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003879 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003880 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003881 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003882 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003883 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003884 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003885 }
3886#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003887 /* Just pressing <enter> in shell should check for jobs.
3888 * OTOH, in non-interactive shell this is useless
3889 * and only leads to extra job checks */
3890 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003891 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003892 goto check_jobs_and_continue;
3893 continue;
3894 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003895
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003896 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003897 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003898 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003899 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003900 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003901 {
3902 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003903#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003904 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003905#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003906 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3907 if (r != -1) {
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003908 /* We ran a builtin, function, or group.
3909 * rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003910 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003911 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003912 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003913 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003914#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003915 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003916 if (G.flag_break_continue) {
3917 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003918 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003919 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003920 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003921 G.depth_break_continue--;
3922 if (G.depth_break_continue == 0)
3923 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003924 /* else: e.g. "continue 2" should *break* once, *then* continue */
3925 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003926 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003927 goto check_jobs_and_break;
3928 /* "continue": simulate end of loop */
3929 rword = RES_DONE;
3930 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003931 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003932#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00003933#if ENABLE_HUSH_FUNCTIONS
3934 if (G.flag_return_in_progress == 1)
3935 goto check_jobs_and_break;
3936#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003937 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003938 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003939 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003940 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3941 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003942 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003943#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003944 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003945 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003946#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003947 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003948 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003949 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003950#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003951 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003952 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003953 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003954 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003955 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003956 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003957#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003958 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003959 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003960 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003961 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003962 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003963 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003964 }
3965 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003966
3967 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003968#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003969 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003970 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003971#endif
3972#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003973 /* Beware of "while false; true; do ..."! */
3974 if (pi->next && pi->next->res_word == RES_DO) {
3975 if (rword == RES_WHILE) {
3976 if (rcode) {
3977 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003978 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003979 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3980 goto check_jobs_and_break;
3981 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003982 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003983 if (rword == RES_UNTIL) {
3984 if (!rcode) {
3985 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003986 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003987 checkjobs(NULL);
3988 break;
3989 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003990 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003991 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003992#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003993
3994 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003995 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003996 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003997
3998#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003999 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00004000#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004001#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00004002 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00004003 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00004004 free(for_list);
4005#endif
4006#if ENABLE_HUSH_CASE
4007 free(case_word);
4008#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004009 debug_leave();
4010 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004011 return rcode;
4012}
4013
Eric Andersen25f27032001-04-26 23:22:31 +00004014/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00004015static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00004016{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00004017 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00004018 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00004019 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00004020 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00004021 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00004022 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004023 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00004024 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00004025 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00004026 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00004027 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00004028 return rcode;
4029}
4030
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004031
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00004032static struct pipe *new_pipe(void)
4033{
Eric Andersen25f27032001-04-26 23:22:31 +00004034 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00004035 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004036 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004037 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00004038 return pi;
4039}
4040
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004041/* Command (member of a pipe) is complete, or we start a new pipe
4042 * if ctx->command is NULL.
4043 * No errors possible here.
4044 */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004045static int done_command(struct parse_context *ctx)
4046{
4047 /* The command is really already in the pipe structure, so
4048 * advance the pipe counter and make a new, null command. */
4049 struct pipe *pi = ctx->pipe;
4050 struct command *command = ctx->command;
4051
4052 if (command) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004053 if (IS_NULL_CMD(command)) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004054 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004055 goto clear_and_ret;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004056 }
4057 pi->num_cmds++;
4058 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004059 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004060 } else {
4061 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
4062 }
4063
4064 /* Only real trickiness here is that the uncommitted
4065 * command structure is not counted in pi->num_cmds. */
4066 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004067 ctx->command = command = &pi->cmds[pi->num_cmds];
4068 clear_and_ret:
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004069 memset(command, 0, sizeof(*command));
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004070 return pi->num_cmds; /* used only for 0/nonzero check */
4071}
4072
4073static void done_pipe(struct parse_context *ctx, pipe_style type)
4074{
4075 int not_null;
4076
4077 debug_printf_parse("done_pipe entered, followup %d\n", type);
4078 /* Close previous command */
4079 not_null = done_command(ctx);
4080 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004081#if HAS_KEYWORDS
4082 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4083 ctx->ctx_inverted = 0;
4084 ctx->pipe->res_word = ctx->ctx_res_w;
4085#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004086
4087 /* Without this check, even just <enter> on command line generates
4088 * tree of three NOPs (!). Which is harmless but annoying.
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004089 * IOW: it is safe to do it unconditionally. */
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004090 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004091#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004092 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004093#endif
4094#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004095 || ctx->ctx_res_w == RES_DONE
4096 || ctx->ctx_res_w == RES_FOR
4097 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004098#endif
4099#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004100 || ctx->ctx_res_w == RES_ESAC
4101#endif
4102 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004103 struct pipe *new_p;
4104 debug_printf_parse("done_pipe: adding new pipe: "
4105 "not_null:%d ctx->ctx_res_w:%d\n",
4106 not_null, ctx->ctx_res_w);
4107 new_p = new_pipe();
4108 ctx->pipe->next = new_p;
4109 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004110 /* RES_THEN, RES_DO etc are "sticky" -
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004111 * they remain set for pipes inside if/while.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004112 * This is used to control execution.
4113 * RES_FOR and RES_IN are NOT sticky (needed to support
4114 * cases where variable or value happens to match a keyword):
4115 */
4116#if ENABLE_HUSH_LOOPS
4117 if (ctx->ctx_res_w == RES_FOR
4118 || ctx->ctx_res_w == RES_IN)
4119 ctx->ctx_res_w = RES_NONE;
4120#endif
4121#if ENABLE_HUSH_CASE
4122 if (ctx->ctx_res_w == RES_MATCH)
4123 ctx->ctx_res_w = RES_CASEI;
4124#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004125 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004126 /* Create the memory for command, roughly:
4127 * ctx->pipe->cmds = new struct command;
4128 * ctx->command = &ctx->pipe->cmds[0];
4129 */
4130 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004131 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004132 }
4133 debug_printf_parse("done_pipe return\n");
4134}
4135
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004136static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004137{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004138 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004139 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004140 /* Create the memory for command, roughly:
4141 * ctx->pipe->cmds = new struct command;
4142 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004143 */
4144 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004145}
4146
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004147/* If a reserved word is found and processed, parse context is modified
4148 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004149 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004150#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004151struct reserved_combo {
4152 char literal[6];
4153 unsigned char res;
4154 unsigned char assignment_flag;
4155 int flag;
4156};
4157enum {
4158 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004159#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004160 FLAG_IF = (1 << RES_IF ),
4161 FLAG_THEN = (1 << RES_THEN ),
4162 FLAG_ELIF = (1 << RES_ELIF ),
4163 FLAG_ELSE = (1 << RES_ELSE ),
4164 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004165#endif
4166#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004167 FLAG_FOR = (1 << RES_FOR ),
4168 FLAG_WHILE = (1 << RES_WHILE),
4169 FLAG_UNTIL = (1 << RES_UNTIL),
4170 FLAG_DO = (1 << RES_DO ),
4171 FLAG_DONE = (1 << RES_DONE ),
4172 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004173#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004174#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004175 FLAG_MATCH = (1 << RES_MATCH),
4176 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004177#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004178 FLAG_START = (1 << RES_XXXX ),
4179};
4180
4181static const struct reserved_combo* match_reserved_word(o_string *word)
4182{
Eric Andersen25f27032001-04-26 23:22:31 +00004183 /* Mostly a list of accepted follow-up reserved words.
4184 * FLAG_END means we are done with the sequence, and are ready
4185 * to turn the compound list into a command.
4186 * FLAG_START means the word must start a new compound list.
4187 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004188 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004189#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004190 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4191 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4192 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4193 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4194 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4195 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004196#endif
4197#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004198 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4199 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4200 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4201 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4202 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4203 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004204#endif
4205#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004206 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4207 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004208#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004209 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004210 const struct reserved_combo *r;
4211
4212 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4213 if (strcmp(word->data, r->literal) == 0)
4214 return r;
4215 }
4216 return NULL;
4217}
Denis Vlasenkobb929512009-04-16 10:59:40 +00004218/* Return 0: not a keyword, 1: keyword
4219 */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004220static int reserved_word(o_string *word, struct parse_context *ctx)
4221{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004222#if ENABLE_HUSH_CASE
4223 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004224 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004225 };
4226#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004227 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004228
Denis Vlasenkobb929512009-04-16 10:59:40 +00004229 if (word->o_quoted)
4230 return 0;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004231 r = match_reserved_word(word);
4232 if (!r)
4233 return 0;
4234
4235 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004236#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004237 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4238 /* "case word IN ..." - IN part starts first match part */
4239 r = &reserved_match;
4240 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004241#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004242 if (r->flag == 0) { /* '!' */
4243 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004244 syntax_error("! ! command");
Denis Vlasenkobb929512009-04-16 10:59:40 +00004245 ctx->ctx_res_w = RES_SNTX;
Eric Andersen25f27032001-04-26 23:22:31 +00004246 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004247 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004248 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004249 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004250 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004251 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004252
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004253 old = xmalloc(sizeof(*old));
4254 debug_printf_parse("push stack %p\n", old);
4255 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004256 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004257 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004258 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004259 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004260 ctx->ctx_res_w = RES_SNTX;
4261 return 1;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004262 } else {
4263 /* "{...} fi" is ok. "{...} if" is not
4264 * Example:
4265 * if { echo foo; } then { echo bar; } fi */
4266 if (ctx->command->group)
4267 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004268 }
Denis Vlasenkobb929512009-04-16 10:59:40 +00004269
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004270 ctx->ctx_res_w = r->res;
4271 ctx->old_flag = r->flag;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004272 word->o_assignment = r->assignment_flag;
4273
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004274 if (ctx->old_flag & FLAG_END) {
4275 struct parse_context *old;
Denis Vlasenkobb929512009-04-16 10:59:40 +00004276
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004277 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004278 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004279 old = ctx->stack;
4280 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004281 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004282#if !BB_MMU
4283 o_addstr(&old->as_string, ctx->as_string.data);
4284 o_free_unsafe(&ctx->as_string);
4285 old->command->group_as_string = xstrdup(old->as_string.data);
4286 debug_printf_parse("pop, remembering as:'%s'\n",
4287 old->command->group_as_string);
4288#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004289 *ctx = *old; /* physical copy */
4290 free(old);
4291 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004292 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004293}
Denis Vlasenko06810332007-05-21 23:30:54 +00004294#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004295
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004296/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004297 * Normal return is 0. Syntax errors return 1.
4298 * Note: on return, word is reset, but not o_free'd!
4299 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004300static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004301{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004302 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004303
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004304 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004305 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004306 debug_printf_parse("done_word return 0: true null, ignored\n");
4307 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004308 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004309
Eric Andersen25f27032001-04-26 23:22:31 +00004310 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004311 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4312 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004313 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4314 * "2.7 Redirection
4315 * ...the word that follows the redirection operator
4316 * shall be subjected to tilde expansion, parameter expansion,
4317 * command substitution, arithmetic expansion, and quote
4318 * removal. Pathname expansion shall not be performed
4319 * on the word by a non-interactive shell; an interactive
4320 * shell may perform it, but shall do so only when
4321 * the expansion would result in one word."
4322 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004323 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004324 /* Cater for >\file case:
4325 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4326 * Same with heredocs:
4327 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4328 */
4329 unbackslash(ctx->pending_redirect->rd_filename);
4330 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004331 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4332 && word->o_quoted
4333 ) {
4334 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4335 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004336 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004337 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004338 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004339 /* If this word wasn't an assignment, next ones definitely
4340 * can't be assignments. Even if they look like ones. */
4341 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4342 && word->o_assignment != WORD_IS_KEYWORD
4343 ) {
4344 word->o_assignment = NOT_ASSIGNMENT;
4345 } else {
4346 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4347 command->assignment_cnt++;
4348 word->o_assignment = MAYBE_ASSIGNMENT;
4349 }
4350
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004351#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004352# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004353 if (ctx->ctx_dsemicolon
4354 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4355 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004356 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004357 /* ctx->ctx_res_w = RES_MATCH; */
4358 ctx->ctx_dsemicolon = 0;
4359 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004360# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004361 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004362# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004363 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4364 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004365# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004366 ) {
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004367 debug_printf_parse("checking '%s' for reserved-ness\n", word->data);
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004368 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004369 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004370 debug_printf_parse("done_word return %d\n",
4371 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004372 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004373 }
Eric Andersen25f27032001-04-26 23:22:31 +00004374 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004375#endif
Denis Vlasenkobb929512009-04-16 10:59:40 +00004376 if (command->group) {
4377 /* "{ echo foo; } echo bar" - bad */
4378 syntax_error_at(word->data);
4379 debug_printf_parse("done_word return 1: syntax error, "
4380 "groups and arglists don't mix\n");
4381 return 1;
4382 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004383 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004384 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4385 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004386 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004387 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004388 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004389 char *p = word->data;
4390 while (p[0] == SPECIAL_VAR_SYMBOL
4391 && (p[1] & 0x7f) == '@'
4392 && p[2] == SPECIAL_VAR_SYMBOL
4393 ) {
4394 p += 3;
4395 }
4396 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004397 /* saw no "$@", or not only "$@" but some
4398 * real text is there too */
4399 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004400 * e.g. "", $empty"" etc to not disappear */
4401 o_addchr(word, SPECIAL_VAR_SYMBOL);
4402 o_addchr(word, SPECIAL_VAR_SYMBOL);
4403 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004404 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004405 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004406//SEGV, but good idea.
4407// command->argv = add_string_to_strings(command->argv, word->data);
4408// word->data = NULL;
4409// word->length = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004410 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004411 }
Eric Andersen25f27032001-04-26 23:22:31 +00004412
Denis Vlasenko06810332007-05-21 23:30:54 +00004413#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004414 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004415 if (word->o_quoted
4416 || !is_well_formed_var_name(command->argv[0], '\0')
4417 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004418 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004419 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004420 return 1;
4421 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004422 /* Force FOR to have just one word (variable name) */
4423 /* NB: basically, this makes hush see "for v in ..."
4424 * syntax as if it is "for v; in ...". FOR and IN become
4425 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004426 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004427 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004428#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004429#if ENABLE_HUSH_CASE
4430 /* Force CASE to have just one word */
4431 if (ctx->ctx_res_w == RES_CASE) {
4432 done_pipe(ctx, PIPE_SEQ);
4433 }
4434#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004435
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004436 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004437
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004438 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004439 return 0;
4440}
4441
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004442
4443/* Peek ahead in the input to find out if we have a "&n" construct,
4444 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004445 * Return:
4446 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4447 * REDIRFD_SYNTAX_ERR if syntax error,
4448 * REDIRFD_TO_FILE if no & was seen,
4449 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004450 */
4451#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004452#define parse_redir_right_fd(as_string, input) \
4453 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004454#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004455static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004456{
4457 int ch, d, ok;
4458
4459 ch = i_peek(input);
4460 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004461 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004462
4463 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004464 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004465 ch = i_peek(input);
4466 if (ch == '-') {
4467 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004468 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004469 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004470 }
4471 d = 0;
4472 ok = 0;
4473 while (ch != EOF && isdigit(ch)) {
4474 d = d*10 + (ch-'0');
4475 ok = 1;
4476 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004477 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004478 ch = i_peek(input);
4479 }
4480 if (ok) return d;
4481
4482//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4483
4484 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004485 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004486}
4487
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004488/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004489 */
4490static int parse_redirect(struct parse_context *ctx,
4491 int fd,
4492 redir_type style,
4493 struct in_str *input)
4494{
4495 struct command *command = ctx->command;
4496 struct redir_struct *redir;
4497 struct redir_struct **redirp;
4498 int dup_num;
4499
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004500 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004501 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004502 /* Check for a '>&1' type redirect */
4503 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4504 if (dup_num == REDIRFD_SYNTAX_ERR)
4505 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004506 } else {
4507 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004508 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004509 if (dup_num) { /* <<-... */
4510 ch = i_getch(input);
4511 nommu_addchr(&ctx->as_string, ch);
4512 ch = i_peek(input);
4513 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004514 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004515
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004516 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004517 int ch = i_peek(input);
4518 if (ch == '|') {
4519 /* >|FILE redirect ("clobbering" >).
4520 * Since we do not support "set -o noclobber" yet,
4521 * >| and > are the same for now. Just eat |.
4522 */
4523 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004524 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004525 }
4526 }
4527
4528 /* Create a new redir_struct and append it to the linked list */
4529 redirp = &command->redirects;
4530 while ((redir = *redirp) != NULL) {
4531 redirp = &(redir->next);
4532 }
4533 *redirp = redir = xzalloc(sizeof(*redir));
4534 /* redir->next = NULL; */
4535 /* redir->rd_filename = NULL; */
4536 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004537 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004538
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004539 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4540 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004541
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004542 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004543 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004544 /* Erik had a check here that the file descriptor in question
4545 * is legit; I postpone that to "run time"
4546 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004547 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4548 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004549 } else {
4550 /* Set ctx->pending_redirect, so we know what to do at the
4551 * end of the next parsed word. */
4552 ctx->pending_redirect = redir;
4553 }
4554 return 0;
4555}
4556
Eric Andersen25f27032001-04-26 23:22:31 +00004557/* If a redirect is immediately preceded by a number, that number is
4558 * supposed to tell which file descriptor to redirect. This routine
4559 * looks for such preceding numbers. In an ideal world this routine
4560 * needs to handle all the following classes of redirects...
4561 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4562 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4563 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4564 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004565 *
4566 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4567 * "2.7 Redirection
4568 * ... If n is quoted, the number shall not be recognized as part of
4569 * the redirection expression. For example:
4570 * echo \2>a
4571 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004572 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004573 *
4574 * A -1 return means no valid number was found,
4575 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004576 */
4577static int redirect_opt_num(o_string *o)
4578{
4579 int num;
4580
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004581 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004582 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004583 num = bb_strtou(o->data, NULL, 10);
4584 if (errno || num < 0)
4585 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004586 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004587 return num;
4588}
4589
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004590#if BB_MMU
4591#define fetch_till_str(as_string, input, word, skip_tabs) \
4592 fetch_till_str(input, word, skip_tabs)
4593#endif
4594static char *fetch_till_str(o_string *as_string,
4595 struct in_str *input,
4596 const char *word,
4597 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004598{
4599 o_string heredoc = NULL_O_STRING;
4600 int past_EOL = 0;
4601 int ch;
4602
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004603 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004604 while (1) {
4605 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004606 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004607 if (ch == '\n') {
4608 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4609 heredoc.data[past_EOL] = '\0';
4610 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4611 return heredoc.data;
4612 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004613 do {
4614 o_addchr(&heredoc, ch);
4615 past_EOL = heredoc.length;
4616 jump_in:
4617 do {
4618 ch = i_getch(input);
4619 nommu_addchr(as_string, ch);
4620 } while (skip_tabs && ch == '\t');
4621 } while (ch == '\n');
4622 }
4623 if (ch == EOF) {
4624 o_free_unsafe(&heredoc);
4625 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004626 }
4627 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004628 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004629 }
4630}
4631
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004632/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4633 * and load them all. There should be exactly heredoc_cnt of them.
4634 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004635static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4636{
4637 struct pipe *pi = ctx->list_head;
4638
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004639 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004640 int i;
4641 struct command *cmd = pi->cmds;
4642
4643 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4644 pi->num_cmds,
4645 cmd->argv ? cmd->argv[0] : "NONE");
4646 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004647 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004648
4649 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4650 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004651 while (redir) {
4652 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004653 char *p;
4654
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004655 redir->rd_type = REDIRECT_HEREDOC2;
4656 /* redir->dup is (ab)used to indicate <<- */
4657 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004658 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004659 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004660 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004661 return 1;
4662 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004663 free(redir->rd_filename);
4664 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004665 heredoc_cnt--;
4666 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004667 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004668 }
4669 cmd++;
4670 }
4671 pi = pi->next;
4672 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004673#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004674 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004675 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004676 bb_error_msg_and_die("heredoc BUG 2");
4677#endif
4678 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004679}
4680
4681
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004682#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004683static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004684{
4685 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004686 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004687#if !BB_MMU
4688 char **to_free;
4689#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004690
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004691 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004692 pid = BB_MMU ? fork() : vfork();
4693 if (pid < 0)
4694 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004695
Denis Vlasenko05743d72008-02-10 12:10:08 +00004696 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004697 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004698 /* Process substitution is not considered to be usual
4699 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004700 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4701 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004702 bb_signals(0
4703 + (1 << SIGTSTP)
4704 + (1 << SIGTTIN)
4705 + (1 << SIGTTOU)
4706 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004707 close(channel[0]); /* NB: close _first_, then move fd! */
4708 xmove_fd(channel[1], 1);
4709 /* Prevent it from trying to handle ctrl-z etc */
4710 USE_HUSH_JOB(G.run_list_level = 1;)
4711#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004712 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004713 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004714 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004715#else
4716 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004717 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4718 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004719 * echo OK
4720 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004721 re_execute_shell(&to_free,
4722 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004723 G.global_argv[0],
4724 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004725#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004726 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004727
4728 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004729 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004730#if !BB_MMU
4731 free(to_free);
4732#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004733 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004734 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004735 return pf;
4736}
4737
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004738/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004739static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004740{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004741 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004742 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004743 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004744
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004745 pf = generate_stream_from_string(s);
4746 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004747 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004748 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004749
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004750 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004751 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004752 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004753 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004754 if (ch == '\n') {
4755 eol_cnt++;
4756 continue;
4757 }
4758 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004759 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004760 eol_cnt--;
4761 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004762 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004763 }
4764
4765 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004766 /* Note: we got EOF, and we just close the read end of the pipe.
4767 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004768 * Try these:
4769 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4770 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004771 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004772 fclose(pf);
4773 debug_printf("closed FILE from child. return 0\n");
4774 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004775}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004776#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004777
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004778static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004779 struct in_str *input, int ch)
4780{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004781 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004782 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004783 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004784 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004785 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004786 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004787
4788 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004789#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004790 if (ch == '(' && !dest->o_quoted) {
4791 if (dest->length)
Denis Vlasenkobb929512009-04-16 10:59:40 +00004792 if (done_word(dest, ctx))
4793 return 1;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004794 if (!command->argv)
4795 goto skip; /* (... */
4796 if (command->argv[1]) { /* word word ... (... */
4797 syntax_error_unexpected_ch('(');
4798 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004799 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004800 /* it is "word(..." or "word (..." */
4801 do
4802 ch = i_getch(input);
4803 while (ch == ' ' || ch == '\t');
4804 if (ch != ')') {
4805 syntax_error_unexpected_ch(ch);
4806 return 1;
4807 }
4808 nommu_addchr(&ctx->as_string, ch);
4809 do
4810 ch = i_getch(input);
4811 while (ch == ' ' || ch == '\t' || ch == '\n');
4812 if (ch != '{') {
4813 syntax_error_unexpected_ch(ch);
4814 return 1;
4815 }
4816 nommu_addchr(&ctx->as_string, ch);
4817 command->grp_type = GRP_FUNCTION;
4818 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004819 }
4820#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004821 if (command->argv /* word [word]{... */
4822 || dest->length /* word{... */
4823 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004824 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004825 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004826 debug_printf_parse("parse_group return 1: "
4827 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004828 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004829 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004830
4831#if ENABLE_HUSH_FUNCTIONS
4832 skip:
4833#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004834 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004835 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004836 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004837 command->grp_type = GRP_SUBSHELL;
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00004838 } else {
4839 /* bash does not allow "{echo...", requires whitespace */
4840 ch = i_getch(input);
4841 if (ch != ' ' && ch != '\t' && ch != '\n') {
4842 syntax_error_unexpected_ch(ch);
4843 return 1;
4844 }
4845 nommu_addchr(&ctx->as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004846 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004847
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004848 {
4849#if !BB_MMU
4850 char *as_string = NULL;
4851#endif
4852 pipe_list = parse_stream(&as_string, input, endch);
4853#if !BB_MMU
4854 if (as_string)
4855 o_addstr(&ctx->as_string, as_string);
4856#endif
4857 /* empty ()/{} or parse error? */
4858 if (!pipe_list || pipe_list == ERR_PTR) {
Denis Vlasenkobb929512009-04-16 10:59:40 +00004859 /* parse_stream already emitted error msg */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004860#if !BB_MMU
4861 free(as_string);
4862#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004863 debug_printf_parse("parse_group return 1: "
4864 "parse_stream returned %p\n", pipe_list);
4865 return 1;
4866 }
4867 command->group = pipe_list;
4868#if !BB_MMU
4869 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4870 command->group_as_string = as_string;
4871 debug_printf_parse("end of group, remembering as:'%s'\n",
4872 command->group_as_string);
4873#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004874 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004875 debug_printf_parse("parse_group return 0\n");
4876 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004877 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004878}
4879
Mike Frysinger98c52642009-04-02 10:02:37 +00004880#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004881/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004882static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004883/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004884static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004885{
4886 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004887 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004888 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004889 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004890 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004891 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004892 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004893 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004894 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004895 }
4896}
4897/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004898static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004899{
4900 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004901 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004902 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004903 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004904 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004905 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004906 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004907 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004908 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004909 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004910 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004911 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004912 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004913 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004914 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004915 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004916 continue;
4917 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004918 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004919 }
4920}
4921/* Process `cmd` - copy contents until "`" is seen. Complicated by
4922 * \` quoting.
4923 * "Within the backquoted style of command substitution, backslash
4924 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4925 * The search for the matching backquote shall be satisfied by the first
4926 * backquote found without a preceding backslash; during this search,
4927 * if a non-escaped backquote is encountered within a shell comment,
4928 * a here-document, an embedded command substitution of the $(command)
4929 * form, or a quoted string, undefined results occur. A single-quoted
4930 * or double-quoted string that begins, but does not end, within the
4931 * "`...`" sequence produces undefined results."
4932 * Example Output
4933 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4934 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004935static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004936{
4937 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004938 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004939 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004940 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004941 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004942 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004943 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004944 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004945 if (ch == '\\') {
4946 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004947 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004948 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004949 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004950 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004951 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004952 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004953 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004954 ch = ch2;
4955 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004956 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004957 }
4958}
4959/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4960 * quoting and nested ()s.
4961 * "With the $(command) style of command substitution, all characters
4962 * following the open parenthesis to the matching closing parenthesis
4963 * constitute the command. Any valid shell script can be used for command,
4964 * except a script consisting solely of redirections which produces
4965 * unspecified results."
4966 * Example Output
4967 * echo $(echo '(TEST)' BEST) (TEST) BEST
4968 * echo $(echo 'TEST)' BEST) TEST) BEST
4969 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4970 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004971static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004972{
4973 int count = 0;
4974 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004975 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004976 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004977 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004978 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004979 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004980 if (ch == '(')
4981 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004982 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004983 if (--count < 0) {
4984 if (!dbl)
4985 break;
4986 if (i_peek(input) == ')') {
4987 i_getch(input);
4988 break;
4989 }
4990 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004991 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004992 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004993 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004994 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004995 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004996 continue;
4997 }
4998 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004999 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005000 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005001 continue;
5002 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005003 if (ch == '\\') {
5004 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005005 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005006 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005007 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005008 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005009 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00005010 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005011 continue;
5012 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005013 }
5014}
Mike Frysinger98c52642009-04-02 10:02:37 +00005015#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005016
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005017/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005018#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005019#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005020 handle_dollar(dest, input)
5021#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005022static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005023 o_string *dest,
5024 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00005025{
Mike Frysinger6379bb42009-03-28 18:55:03 +00005026 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005027 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005028 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005029
5030 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005031 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005032 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005033 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00005034 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005035 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005036 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005037 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005038 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00005039 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005040 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005041 if (!isalnum(ch) && ch != '_')
5042 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005043 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005044 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005045 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005046 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005047 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005048 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005049 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005050 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005051 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00005052 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005053 o_addchr(dest, ch | quote_mask);
5054 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005055 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005056 case '$': /* pid */
5057 case '!': /* last bg pid */
5058 case '?': /* last exit code */
5059 case '#': /* number of args */
5060 case '*': /* args */
5061 case '@': /* args */
5062 goto make_one_char_var;
5063 case '{': {
5064 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00005065
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005066 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005067 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005068 nommu_addchr(as_string, ch);
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00005069 /* TODO: maybe someone will try to escape the '}' */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005070 expansion = 0;
5071 first_char = true;
5072 all_digits = false;
5073 while (1) {
5074 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005075 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005076 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00005077 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00005078
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005079 if (first_char) {
5080 if (ch == '#')
5081 /* ${#var}: length of var contents */
5082 goto char_ok;
5083 else if (isdigit(ch)) {
5084 all_digits = true;
5085 goto char_ok;
5086 }
5087 }
5088
5089 if (expansion < 2
5090 && ( (all_digits && !isdigit(ch))
5091 || (!all_digits && !isalnum(ch) && ch != '_')
5092 )
5093 ) {
5094 /* handle parameter expansions
5095 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5096 */
5097 if (first_char)
5098 goto case_default;
5099 switch (ch) {
5100 case ':': /* null modifier */
5101 if (expansion == 0) {
5102 debug_printf_parse(": null modifier\n");
5103 ++expansion;
5104 break;
5105 }
5106 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005107 case '#': /* remove prefix */
5108 case '%': /* remove suffix */
5109 if (expansion == 0) {
5110 debug_printf_parse(": remove suffix/prefix\n");
5111 expansion = 2;
5112 break;
5113 }
5114 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005115 case '-': /* default value */
5116 case '=': /* assign default */
5117 case '+': /* alternative */
5118 case '?': /* error indicate */
5119 debug_printf_parse(": parameter expansion\n");
5120 expansion = 2;
5121 break;
5122 default:
5123 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005124 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005125 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5126 return 1;
5127 }
5128 }
5129 char_ok:
5130 debug_printf_parse(": '%c'\n", ch);
5131 o_addchr(dest, ch | quote_mask);
5132 quote_mask = 0;
5133 first_char = false;
5134 }
5135 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5136 break;
5137 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005138#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005139 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005140# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005141 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005142# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005143 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005144 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005145# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005146 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005147 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005148 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005149 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5150 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005151# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005152 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005153# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005154 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005155# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005156 if (as_string) {
5157 o_addstr(as_string, dest->data + pos);
5158 o_addchr(as_string, ')');
5159 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005160 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005161# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005162 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005163 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005164 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005165# endif
5166# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005167 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5168 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005169# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005170 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005171# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005172 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005173# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005174 if (as_string) {
5175 o_addstr(as_string, dest->data + pos);
5176 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005177 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005178# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005179 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005180# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005181 break;
5182 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005183#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005184 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005185 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005186 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005187 ch = i_peek(input);
5188 if (isalnum(ch)) { /* it's $_name or $_123 */
5189 ch = '_';
5190 goto make_var;
5191 }
5192 /* else: it's $_ */
5193 /* TODO: */
5194 /* $_ Shell or shell script name; or last cmd name */
5195 /* $- Option flags set by set builtin or shell options (-i etc) */
5196 default:
5197 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005198 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005199 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005200 return 0;
5201}
5202
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005203#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005204#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005205 parse_stream_dquoted(dest, input, dquote_end)
5206#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005207static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005208 o_string *dest,
5209 struct in_str *input,
5210 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005211{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005212 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005213 int next;
5214
5215 again:
5216 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005217 if (ch != EOF)
5218 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005219 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005220 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005221 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005222 debug_printf_parse("parse_stream_dquoted return 0\n");
5223 return 0;
5224 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005225 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005226 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005227 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005228 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005229 }
5230 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005231 if (ch != '\n') {
5232 next = i_peek(input);
5233 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005234 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5235 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005236 if (ch == '\\') {
5237 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005238 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005239 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005240 }
5241 /* bash:
5242 * "The backslash retains its special meaning [in "..."]
5243 * only when followed by one of the following characters:
5244 * $, `, ", \, or <newline>. A double quote may be quoted
5245 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005246 */
5247 if (strchr("$`\"\\", next) != NULL) {
5248 o_addqchr(dest, i_getch(input));
5249 } else {
5250 o_addqchr(dest, '\\');
5251 }
5252 goto again;
5253 }
5254 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005255 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005256 debug_printf_parse("parse_stream_dquoted return 1: "
5257 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005258 return 1;
5259 }
5260 goto again;
5261 }
5262#if ENABLE_HUSH_TICK
5263 if (ch == '`') {
5264 //int pos = dest->length;
5265 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5266 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005267 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005268 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5269 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005270 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005271 }
5272#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005273 o_addQchr(dest, ch);
5274 if (ch == '='
5275 && (dest->o_assignment == MAYBE_ASSIGNMENT
5276 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005277 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005278 ) {
5279 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5280 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005281 goto again;
5282}
5283
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005284/*
5285 * Scan input until EOF or end_trigger char.
5286 * Return a list of pipes to execute, or NULL on EOF
5287 * or if end_trigger character is met.
5288 * On syntax error, exit is shell is not interactive,
5289 * reset parsing machinery and start parsing anew,
5290 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005291 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005292static struct pipe *parse_stream(char **pstring,
5293 struct in_str *input,
5294 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005295{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005296 struct parse_context ctx;
5297 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005298 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005299 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005300
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005301 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005302 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005303 * found. When recursing, quote state is passed in via dest->o_escape.
5304 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005305 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5306 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005307 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005308
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005309 G.ifs = get_local_var_value("IFS");
5310 if (G.ifs == NULL)
5311 G.ifs = " \t\n";
5312
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005313 reset:
5314#if ENABLE_HUSH_INTERACTIVE
5315 input->promptmode = 0; /* PS1 */
5316#endif
5317 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5318 initialize_context(&ctx);
5319 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005320 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005321 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005322 const char *is_ifs;
5323 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005324 int ch;
5325 int next;
5326 int redir_fd;
5327 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005328
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005329 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005330 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005331 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005332 goto parse_error;
5333 }
5334 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005335 is_in_dquote = 0;
5336 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005337 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005338 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5339 ch, ch, dest.o_escape);
5340 if (ch == EOF) {
5341 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005342
5343 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005344 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005345 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005346 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005347 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005348 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00005349 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005350 o_free(&dest);
5351 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005352 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005353 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005354 /* (this makes bare "&" cmd a no-op.
5355 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005356 if (pi->num_cmds == 0
5357 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5358 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005359 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005360 pi = NULL;
5361 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005362#if !BB_MMU
5363 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5364 if (pstring)
5365 *pstring = ctx.as_string.data;
5366 else
5367 o_free_unsafe(&ctx.as_string);
5368#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005369 debug_leave();
5370 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005371 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005372 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005373 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005374 is_ifs = strchr(G.ifs, ch);
5375 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5376 "\\$\"" USE_HUSH_TICK("`") /* always special */
5377 , ch);
5378
5379 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005380 o_addQchr(&dest, ch);
5381 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5382 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005383 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005384 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005385 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005386 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005387 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005388 continue;
5389 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005390
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005391 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005392 if (done_word(&dest, &ctx)) {
5393 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005394 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005395 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005396#if ENABLE_HUSH_CASE
5397 /* "case ... in <newline> word) ..." -
5398 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005399 if (ctx.command->argv == NULL
5400 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005401 ) {
5402 continue;
5403 }
5404#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005405 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005406 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005407 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5408 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005409 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005410 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005411 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005412 heredoc_cnt = 0;
5413 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005414 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005415 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005416 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005417 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005418 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005419 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005420 if (end_trigger && end_trigger == ch
5421 && (heredoc_cnt == 0 || end_trigger != ';')
5422 ) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005423 if (heredoc_cnt) {
5424 /* This is technically valid:
5425 * { cat <<HERE; }; echo Ok
5426 * heredoc
5427 * heredoc
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005428 * HERE
5429 * but we don't support this.
5430 * We require heredoc to be in enclosing {}/(),
5431 * if any.
5432 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005433 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005434 goto parse_error;
5435 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005436 if (done_word(&dest, &ctx)) {
5437 goto parse_error;
5438 }
Denis Vlasenkof8c1f022009-04-17 11:55:42 +00005439 /* Disallow "{ cmd }" without semicolon or & */
5440 //debug_printf_parse("null pi %d\n", IS_NULL_PIPE(ctx.pipe))
5441 //debug_printf_parse("null cmd %d\n", IS_NULL_CMD(ctx.command))
5442 if (ch == '}'
5443 && !(IS_NULL_PIPE(ctx.pipe) && IS_NULL_CMD(ctx.command))
5444 ) {
5445 syntax_error_unexpected_ch(ch);
5446 goto parse_error;
5447 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005448 done_pipe(&ctx, PIPE_SEQ);
5449 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005450 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005451 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005452 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005453 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005454 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005455#if !BB_MMU
5456 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5457 if (pstring)
5458 *pstring = ctx.as_string.data;
5459 else
5460 o_free_unsafe(&ctx.as_string);
5461#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005462 debug_leave();
5463 debug_printf_parse("parse_stream return %p: "
5464 "end_trigger char found\n",
5465 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005466 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005467 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005468 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005469 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005470 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005471
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005472 next = '\0';
5473 if (ch != '\n') {
5474 next = i_peek(input);
5475 }
5476
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005477 /* Catch <, > before deciding whether this word is
5478 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5479 switch (ch) {
5480 case '>':
5481 redir_fd = redirect_opt_num(&dest);
5482 if (done_word(&dest, &ctx)) {
5483 goto parse_error;
5484 }
5485 redir_style = REDIRECT_OVERWRITE;
5486 if (next == '>') {
5487 redir_style = REDIRECT_APPEND;
5488 ch = i_getch(input);
5489 nommu_addchr(&ctx.as_string, ch);
5490 }
5491#if 0
5492 else if (next == '(') {
5493 syntax_error(">(process) not supported");
5494 goto parse_error;
5495 }
5496#endif
5497 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5498 goto parse_error;
5499 continue; /* back to top of while (1) */
5500 case '<':
5501 redir_fd = redirect_opt_num(&dest);
5502 if (done_word(&dest, &ctx)) {
5503 goto parse_error;
5504 }
5505 redir_style = REDIRECT_INPUT;
5506 if (next == '<') {
5507 redir_style = REDIRECT_HEREDOC;
5508 heredoc_cnt++;
5509 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5510 ch = i_getch(input);
5511 nommu_addchr(&ctx.as_string, ch);
5512 } else if (next == '>') {
5513 redir_style = REDIRECT_IO;
5514 ch = i_getch(input);
5515 nommu_addchr(&ctx.as_string, ch);
5516 }
5517#if 0
5518 else if (next == '(') {
5519 syntax_error("<(process) not supported");
5520 goto parse_error;
5521 }
5522#endif
5523 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5524 goto parse_error;
5525 continue; /* back to top of while (1) */
5526 }
5527
5528 if (dest.o_assignment == MAYBE_ASSIGNMENT
5529 /* check that we are not in word in "a=1 2>word b=1": */
5530 && !ctx.pending_redirect
5531 ) {
5532 /* ch is a special char and thus this word
5533 * cannot be an assignment */
5534 dest.o_assignment = NOT_ASSIGNMENT;
5535 }
5536
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005537 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005538 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005539 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005540 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005541 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005542 if (ch == EOF || ch == '\n')
5543 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005544 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005545 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005546 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005547 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005548 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005549 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005550 }
5551 break;
5552 case '\\':
5553 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005554 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005555 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005556 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005557 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005558 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005559 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005560 o_addchr(&dest, ch);
5561 /* Example: echo Hello \2>file
5562 * we need to know that word 2 is quoted */
5563 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005564 break;
5565 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005566 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005567 debug_printf_parse("parse_stream parse error: "
5568 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005569 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005570 }
Eric Andersen25f27032001-04-26 23:22:31 +00005571 break;
5572 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005573 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005574 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005575 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005576 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005577 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005578 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005579 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005580 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005581 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005582 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005583 if (dest.o_assignment == NOT_ASSIGNMENT)
5584 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005585 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005586 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005587 }
Eric Andersen25f27032001-04-26 23:22:31 +00005588 break;
5589 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005590 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005591 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005592 if (dest.o_assignment == NOT_ASSIGNMENT)
5593 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005594 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005595#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005596 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005597#if !BB_MMU
5598 int pos;
5599#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005600 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5601 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005602#if !BB_MMU
5603 pos = dest.length;
5604#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005605 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005606#if !BB_MMU
5607 o_addstr(&ctx.as_string, dest.data + pos);
5608 o_addchr(&ctx.as_string, '`');
5609#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005610 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5611 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005612 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005613 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005614#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005615 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005616#if ENABLE_HUSH_CASE
5617 case_semi:
5618#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005619 if (done_word(&dest, &ctx)) {
5620 goto parse_error;
5621 }
5622 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005623#if ENABLE_HUSH_CASE
5624 /* Eat multiple semicolons, detect
5625 * whether it means something special */
5626 while (1) {
5627 ch = i_peek(input);
5628 if (ch != ';')
5629 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005630 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005631 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005632 if (ctx.ctx_res_w == RES_CASEI) {
5633 ctx.ctx_dsemicolon = 1;
5634 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005635 break;
5636 }
5637 }
5638#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005639 new_cmd:
5640 /* We just finished a cmd. New one may start
5641 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005642 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005643 break;
5644 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005645 if (done_word(&dest, &ctx)) {
5646 goto parse_error;
5647 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005648 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005649 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005650 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005651 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005652 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005653 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005654 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005655 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005656 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005657 if (done_word(&dest, &ctx)) {
5658 goto parse_error;
5659 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005660#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005661 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005662 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005663#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005664 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005665 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005666 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005667 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005668 } else {
5669 /* we could pick up a file descriptor choice here
5670 * with redirect_opt_num(), but bash doesn't do it.
5671 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005672 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005673 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005674 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005675 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005676#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005677 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005678 if (ctx.ctx_res_w == RES_MATCH
5679 && ctx.command->argv == NULL /* not (word|(... */
5680 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005681 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005682 ) {
5683 continue;
5684 }
5685#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005686 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005687 if (parse_group(&dest, &ctx, input, ch) != 0) {
5688 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005689 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005690 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005691 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005692#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005693 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005694 goto case_semi;
5695#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005696 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005697 /* proper use of this character is caught by end_trigger:
5698 * if we see {, we call parse_group(..., end_trigger='}')
5699 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005700 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005701 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005702 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005703 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005704 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005705 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005706 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005707
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005708 parse_error:
5709 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005710 struct parse_context *pctx;
5711 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005712
5713 /* Clean up allocated tree.
5714 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005715 * Run them from interactive shell, watch pmap `pidof hush`.
5716 * while if false; then false; fi do break; done
5717 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005718 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005719 * Samples to catch leaks at execution:
5720 * while if (true | {true;}); then echo ok; fi; do break; done
5721 * 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 +00005722 */
5723 pctx = &ctx;
5724 do {
5725 /* Update pipe/command counts,
5726 * otherwise freeing may miss some */
5727 done_pipe(pctx, PIPE_SEQ);
5728 debug_printf_clean("freeing list %p from ctx %p\n",
5729 pctx->list_head, pctx);
5730 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005731 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005732 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005733#if !BB_MMU
5734 o_free_unsafe(&pctx->as_string);
5735#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005736 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005737 if (pctx != &ctx) {
5738 free(pctx);
5739 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005740 IF_HAS_KEYWORDS(pctx = p2;)
5741 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005742 /* Free text, clear all dest fields */
5743 o_free(&dest);
5744 /* If we are not in top-level parse, we return,
5745 * our caller will propagate error.
5746 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005747 if (end_trigger != ';') {
5748#if !BB_MMU
5749 if (pstring)
5750 *pstring = NULL;
5751#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005752 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005753 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005754 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005755 /* Discard cached input, force prompt */
5756 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005757 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005758 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005759 }
Eric Andersen25f27032001-04-26 23:22:31 +00005760}
5761
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005762/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005763 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5764 * end_trigger controls how often we stop parsing
5765 * NUL: parse all, execute, return
5766 * ';': parse till ';' or newline, execute, repeat till EOF
5767 */
5768static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005769{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005770 while (1) {
5771 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005772
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005773 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005774 if (!pipe_list) /* EOF */
5775 break;
5776 debug_print_tree(pipe_list, 0);
5777 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5778 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005779 }
Eric Andersen25f27032001-04-26 23:22:31 +00005780}
5781
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005782static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005783{
5784 struct in_str input;
5785 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005786 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005787}
5788
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005789static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005790{
Eric Andersen25f27032001-04-26 23:22:31 +00005791 struct in_str input;
5792 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005793 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005794}
5795
Denis Vlasenkof9375282009-04-05 19:13:39 +00005796/* Called a few times only (or even once if "sh -c") */
5797static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005798{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005799 unsigned sig;
5800 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005801
Denis Vlasenkof9375282009-04-05 19:13:39 +00005802 mask = (1 << SIGQUIT);
Denis Vlasenkoe4bd4f22009-04-17 13:52:51 +00005803 if (G_interactive_fd)
5804 mask = (1 << SIGQUIT) | SPECIAL_INTERACTIVE_SIGS;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005805 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005806
Denis Vlasenkof9375282009-04-05 19:13:39 +00005807 if (!second_time)
5808 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5809 sig = 0;
5810 while (mask) {
5811 if (mask & 1)
5812 sigaddset(&G.blocked_set, sig);
5813 mask >>= 1;
5814 sig++;
5815 }
5816 sigdelset(&G.blocked_set, SIGCHLD);
5817
5818 sigprocmask(SIG_SETMASK, &G.blocked_set,
5819 second_time ? NULL : &G.inherited_set);
5820 /* POSIX allows shell to re-enable SIGCHLD
5821 * even if it was SIG_IGN on entry */
5822// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5823 if (!second_time)
5824 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5825}
5826
5827#if ENABLE_HUSH_JOB
5828/* helper */
5829static void maybe_set_to_sigexit(int sig)
5830{
5831 void (*handler)(int);
5832 /* non_DFL_mask'ed signals are, well, masked,
5833 * no need to set handler for them.
5834 */
5835 if (!((G.non_DFL_mask >> sig) & 1)) {
5836 handler = signal(sig, sigexit);
5837 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5838 signal(sig, handler);
5839 }
5840}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005841/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005842static void set_fatal_handlers(void)
5843{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005844 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005845 if (HUSH_DEBUG) {
5846 maybe_set_to_sigexit(SIGILL );
5847 maybe_set_to_sigexit(SIGFPE );
5848 maybe_set_to_sigexit(SIGBUS );
5849 maybe_set_to_sigexit(SIGSEGV);
5850 maybe_set_to_sigexit(SIGTRAP);
5851 } /* else: hush is perfect. what SEGV? */
5852 maybe_set_to_sigexit(SIGABRT);
5853 /* bash 3.2 seems to handle these just like 'fatal' ones */
5854 maybe_set_to_sigexit(SIGPIPE);
5855 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005856//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005857 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005858 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005859 * if we aren't interactive... but in this case
5860 * we never want to restore pgrp on exit, and this fn is not called */
5861 /*maybe_set_to_sigexit(SIGTERM);*/
5862 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005863}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005864#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005865
Denis Vlasenkod5762932009-03-31 11:22:57 +00005866static int set_mode(const char cstate, const char mode)
5867{
5868 int state = (cstate == '-' ? 1 : 0);
5869 switch (mode) {
5870 case 'n': G.fake_mode = state; break;
5871 case 'x': /*G.debug_mode = state;*/ break;
5872 default: return EXIT_FAILURE;
5873 }
5874 return EXIT_SUCCESS;
5875}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005876
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005877int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005878int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005879{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005880 static const struct variable const_shell_ver = {
5881 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005882 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005883 .max_len = 1, /* 0 can provoke free(name) */
5884 .flg_export = 1,
5885 .flg_read_only = 1,
5886 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005887 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005888 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005889 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005890 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005891
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005892 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005893 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005894 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005895#if !BB_MMU
5896 G.argv0_for_re_execing = argv[0];
5897#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005898 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005899 G.shell_ver = const_shell_ver; /* copying struct here */
5900 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005901 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005902 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5903 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005904 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005905 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005906 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005907 if (e) while (*e) {
5908 char *value = strchr(*e, '=');
5909 if (value) { /* paranoia */
5910 cur_var->next = xzalloc(sizeof(*cur_var));
5911 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005912 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005913 cur_var->max_len = strlen(*e);
5914 cur_var->flg_export = 1;
5915 }
5916 e++;
5917 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005918 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005919 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005920#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005921 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005922#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005923 G.global_argc = argc;
5924 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005925 /* Initialize some more globals to non-zero values */
5926 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005927#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005928 if (ENABLE_FEATURE_EDITING)
5929 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005930 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005931#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005932
Denis Vlasenkoed782372009-04-10 00:45:02 +00005933 if (setjmp(die_jmp)) {
5934 /* xfunc has failed! die die die */
5935 /* no EXIT traps, this is an escape hatch! */
5936 G.exiting = 1;
5937 hush_exit(xfunc_error_retval);
5938 }
5939
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005940 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005941 * block_signals(0) if we are going to execute "sh <script>",
5942 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005943 * If we later decide that we are interactive, we run block_signals(0)
5944 * (or re-run block_signals(1) if we ran block_signals(0) before)
5945 * in order to intercept (more) signals.
5946 */
5947
5948 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005949 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005950 while (1) {
5951 opt = getopt(argc, argv, "c:xins"
5952#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00005953 "<:$:R:V:"
5954# if ENABLE_HUSH_FUNCTIONS
5955 "F:"
5956# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005957#endif
5958 );
5959 if (opt <= 0)
5960 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005961 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005962 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005963 if (!G.root_pid)
5964 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005965 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005966 if (!argv[optind]) {
5967 /* -c 'script' (no params): prevent empty $0 */
5968 *--G.global_argv = argv[0];
5969 optind--;
5970 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005971 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005972 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005973 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005974 goto final_return;
5975 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005976 /* Well, we cannot just declare interactiveness,
5977 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005978 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005979 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005980 case 's':
5981 /* "-s" means "read from stdin", but this is how we always
5982 * operate, so simply do nothing here. */
5983 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005984#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005985 case '<': /* "big heredoc" support */
5986 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5987 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005988 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005989 G.root_pid = bb_strtou(optarg, &optarg, 16);
5990 optarg++;
5991 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5992 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005993 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005994# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005995 optarg++;
5996 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005997# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005998 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005999 case 'R':
6000 case 'V':
6001 set_local_var(xstrdup(optarg), 0, opt == 'R');
6002 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00006003# if ENABLE_HUSH_FUNCTIONS
6004 case 'F': {
6005 struct function *funcp = new_function(optarg);
6006 /* funcp->name is already set to optarg */
6007 /* funcp->body is set to NULL. It's a special case. */
6008 funcp->body_as_string = argv[optind];
6009 optind++;
6010 break;
6011 }
6012# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006013#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006014 case 'n':
6015 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00006016 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006017 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006018 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006019#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006020 fprintf(stderr, "Usage: sh [FILE]...\n"
6021 " or: sh -c command [args]...\n\n");
6022 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006023#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006024 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00006025#endif
Eric Andersen25f27032001-04-26 23:22:31 +00006026 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006027 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006028
6029 if (!G.root_pid)
6030 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00006031
6032 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006033 if (argv[0] && argv[0][0] == '-') {
6034 FILE *input;
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00006035 /* TODO: what should argv be while sourcing /etc/profile? */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006036 debug_printf("sourcing /etc/profile\n");
6037 input = fopen_for_read("/etc/profile");
6038 if (input != NULL) {
6039 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00006040 block_signals(0); /* 0: called 1st time */
6041 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006042 parse_and_run_file(input);
6043 fclose(input);
6044 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006045 /* bash: after sourcing /etc/profile,
6046 * tries to source (in the given order):
6047 * ~/.bash_profile, ~/.bash_login, ~/.profile,
6048 * stopping of first found. --noprofile turns this off.
6049 * bash also sources ~/.bash_logout on exit.
6050 * If called as sh, skips .bash_XXX files.
6051 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006052 }
6053
Denis Vlasenkof9375282009-04-05 19:13:39 +00006054 if (argv[optind]) {
6055 FILE *input;
6056 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006057 * "bash <script>" (which is never interactive (unless -i?))
6058 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00006059 * If called as sh, does the same but with $ENV.
6060 */
6061 debug_printf("running script '%s'\n", argv[optind]);
6062 G.global_argv = argv + optind;
6063 G.global_argc = argc - optind;
6064 input = xfopen_for_read(argv[optind]);
6065 close_on_exec_on(fileno(input));
6066 if (!signal_mask_is_inited)
6067 block_signals(0); /* 0: called 1st time */
6068 parse_and_run_file(input);
6069#if ENABLE_FEATURE_CLEAN_UP
6070 fclose(input);
6071#endif
6072 goto final_return;
6073 }
6074
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00006075 /* Up to here, shell was non-interactive. Now it may become one.
6076 * NB: don't forget to (re)run block_signals(0/1) as needed.
6077 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006078
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00006079 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00006080 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00006081 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00006082 * no arguments remaining or the -s flag given
6083 * standard input is a terminal
6084 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00006085 * Refer to Posix.2, the description of the 'sh' utility.
6086 */
6087#if ENABLE_HUSH_JOB
6088 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006089 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006090 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006091//TODO: "interactive" and "have job control" are two different things.
6092//If tcgetpgrp fails here, "have job control" is false, but "interactive"
6093//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00006094 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006095 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006096 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6097 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006098 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006099 G_interactive_fd = dup(STDIN_FILENO);
6100 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006101 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006102 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006103 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006104// TODO: track & disallow any attempts of user
6105// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006106 }
Eric Andersen25f27032001-04-26 23:22:31 +00006107 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006108 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006109 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006110 pid_t shell_pgrp;
6111
6112 /* We are indeed interactive shell, and we will perform
6113 * job control. Setting up for that. */
6114
6115 close_on_exec_on(G_interactive_fd);
6116 /* If we were run as 'hush &', sleep until we are
6117 * in the foreground (tty pgrp == our pgrp).
6118 * If we get started under a job aware app (like bash),
6119 * make sure we are now in charge so we don't fight over
6120 * who gets the foreground */
6121 while (1) {
6122 shell_pgrp = getpgrp();
6123 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6124 if (G.saved_tty_pgrp == shell_pgrp)
6125 break;
6126 /* send TTIN to ourself (should stop us) */
6127 kill(- shell_pgrp, SIGTTIN);
6128 }
6129 /* Block some signals */
6130 block_signals(signal_mask_is_inited);
6131 /* Set other signals to restore saved_tty_pgrp */
6132 set_fatal_handlers();
6133 /* Put ourselves in our own process group */
6134 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6135 /* Grab control of the terminal */
6136 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006137 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006138 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006139 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006140 } else if (!signal_mask_is_inited) {
6141 block_signals(0); /* 0: called 1st time */
6142 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006143#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006144 /* No job control compiled in, only prompt/line editing */
6145 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006146 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6147 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006148 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006149 G_interactive_fd = dup(STDIN_FILENO);
6150 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006151 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006152 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006153 }
6154 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006155 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006156 close_on_exec_on(G_interactive_fd);
6157 block_signals(signal_mask_is_inited);
6158 } else if (!signal_mask_is_inited) {
6159 block_signals(0);
6160 }
6161#else
6162 /* We have interactiveness code disabled */
6163 if (!signal_mask_is_inited) {
6164 block_signals(0);
6165 }
6166#endif
6167 /* bash:
6168 * if interactive but not a login shell, sources ~/.bashrc
6169 * (--norc turns this off, --rcfile <file> overrides)
6170 */
6171
6172 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006173 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00006174 printf("Enter 'help' for a list of built-in commands.\n\n");
6175 }
6176
Denis Vlasenkof9375282009-04-05 19:13:39 +00006177 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006178
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006179 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006180#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006181 if (G.cwd != bb_msg_unknown)
6182 free((char*)G.cwd);
6183 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006184 while (cur_var) {
6185 struct variable *tmp = cur_var;
6186 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006187 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006188 cur_var = cur_var->next;
6189 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006190 }
Eric Andersen25f27032001-04-26 23:22:31 +00006191#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006192 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006193}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006194
6195
6196#if ENABLE_LASH
6197int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6198int lash_main(int argc, char **argv)
6199{
6200 //bb_error_msg("lash is deprecated, please use hush instead");
6201 return hush_main(argc, argv);
6202}
6203#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006204
6205
6206/*
6207 * Built-ins
6208 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006209static int builtin_trap(char **argv)
6210{
Denis Vlasenkod5762932009-03-31 11:22:57 +00006211 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006212 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006213 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006214
6215 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006216 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006217
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006218 argv++;
6219 if (!*argv) {
6220 /* No args: print all trapped. This isn't 100% correct as we
6221 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006222 */
6223 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006224 if (G.traps[i])
6225 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006226 return EXIT_SUCCESS;
6227 }
6228
Denis Vlasenkod5762932009-03-31 11:22:57 +00006229 new_cmd = NULL;
6230 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006231 /* If first arg is decimal: reset all specified signals */
6232 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006233 if (errno == 0) {
6234 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006235 set_all:
6236 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006237 while (*argv) {
6238 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006239 if (sig < 0 || sig >= NSIG) {
6240 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006241 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006242 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
6243 continue;
6244 }
6245
Denis Vlasenkod5762932009-03-31 11:22:57 +00006246 free(G.traps[sig]);
6247 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006248
Denis Vlasenkod5762932009-03-31 11:22:57 +00006249 debug_printf("trap: setting SIG%s (%i) to '%s'",
6250 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006251
6252 /* There is no signal for 0 (EXIT) */
6253 if (sig == 0)
6254 continue;
6255
6256 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006257 sigaddset(&G.blocked_set, sig);
6258 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006259 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00006260 * (if sig has non-DFL handling,
6261 * we don't need to do anything) */
6262 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6263 continue;
6264 sigdelset(&G.blocked_set, sig);
6265 }
6266 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006267 }
6268 return ret;
6269 }
6270
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006271 /* First arg is "-": reset all specified to default */
6272 /* First arg is "": ignore all specified */
6273 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006274 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006275 bb_error_msg("trap: invalid arguments");
6276 return EXIT_FAILURE;
6277 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006278 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00006279 new_cmd = *argv;
6280 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006281 goto set_all;
6282}
6283
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006284static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006285{
6286 return 0;
6287}
6288
6289static int builtin_test(char **argv)
6290{
6291 int argc = 0;
6292 while (*argv) {
6293 argc++;
6294 argv++;
6295 }
6296 return test_main(argc, argv - argc);
6297}
6298
6299static int builtin_echo(char **argv)
6300{
6301 int argc = 0;
6302 while (*argv) {
6303 argc++;
6304 argv++;
6305 }
6306 return echo_main(argc, argv - argc);
6307}
6308
6309static int builtin_eval(char **argv)
6310{
6311 int rcode = EXIT_SUCCESS;
6312
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006313 if (*++argv) {
6314 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006315 /* bash:
6316 * eval "echo Hi; done" ("done" is syntax error):
6317 * "echo Hi" will not execute too.
6318 */
6319 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006320 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006321 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006322 }
6323 return rcode;
6324}
6325
6326static int builtin_cd(char **argv)
6327{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006328 const char *newdir = argv[1];
6329 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006330 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006331 * bash says "bash: cd: HOME not set" and does nothing
6332 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006333 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006334 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006335 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006336 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006337 /* Mimic bash message exactly */
6338 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006339 return EXIT_FAILURE;
6340 }
6341 set_cwd();
6342 return EXIT_SUCCESS;
6343}
6344
6345static int builtin_exec(char **argv)
6346{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006347 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006348 return EXIT_SUCCESS; /* bash does this */
6349 {
6350#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006351 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006352#endif
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00006353// TODO: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006354 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006355 /* never returns */
6356 }
6357}
6358
6359static int builtin_exit(char **argv)
6360{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006361 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006362// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6363 //puts("exit"); /* bash does it */
6364// TODO: warn if we have background jobs: "There are stopped jobs"
6365// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006366// perhaps use G.exiting = -1 as indicator "last cmd was exit"
6367
6368 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006369 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006370 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006371 /* mimic bash: exit 123abc == exit 255 + error msg */
6372 xfunc_error_retval = 255;
6373 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006374 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006375}
6376
6377static int builtin_export(char **argv)
6378{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006379 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006380 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006381 if (e) {
6382 while (*e) {
6383#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006384 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006385#else
6386 /* ash emits: export VAR='VAL'
6387 * bash: declare -x VAR="VAL"
6388 * we follow ash example */
6389 const char *s = *e++;
6390 const char *p = strchr(s, '=');
6391
6392 if (!p) /* wtf? take next variable */
6393 continue;
6394 /* export var= */
6395 printf("export %.*s", (int)(p - s) + 1, s);
6396 s = p + 1;
6397 while (*s) {
6398 if (*s != '\'') {
6399 p = strchrnul(s, '\'');
6400 /* print 'xxxx' */
6401 printf("'%.*s'", (int)(p - s), s);
6402 if (*p == '\0')
6403 break;
6404 s = p;
6405 }
6406 /* s points to '; print ''...'''" */
6407 putchar('"');
6408 do putchar('\''); while (*++s == '\'');
6409 putchar('"');
6410 }
6411 putchar('\n');
6412#endif
6413 }
6414 fflush(stdout);
6415 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006416 return EXIT_SUCCESS;
6417 }
6418
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006419 do {
6420 const char *value;
6421 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006422
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006423 value = strchr(name, '=');
6424 if (!value) {
6425 /* They are exporting something without a =VALUE */
6426 struct variable *var;
6427
6428 var = get_local_var(name);
6429 if (var) {
6430 var->flg_export = 1;
6431 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6432 putenv(var->varstr);
6433 }
6434 /* bash does not return an error when trying to export
6435 * an undefined variable. Do likewise. */
6436 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006437 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006438 set_local_var(xstrdup(name), 1, 0);
6439 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006440
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006441 return EXIT_SUCCESS;
6442}
6443
6444#if ENABLE_HUSH_JOB
6445/* built-in 'fg' and 'bg' handler */
6446static int builtin_fg_bg(char **argv)
6447{
6448 int i, jobnum;
6449 struct pipe *pi;
6450
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006451 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006452 return EXIT_FAILURE;
6453 /* If they gave us no args, assume they want the last backgrounded task */
6454 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006455 for (pi = G.job_list; pi; pi = pi->next) {
6456 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006457 goto found;
6458 }
6459 }
6460 bb_error_msg("%s: no current job", argv[0]);
6461 return EXIT_FAILURE;
6462 }
6463 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6464 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6465 return EXIT_FAILURE;
6466 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006467 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006468 if (pi->jobid == jobnum) {
6469 goto found;
6470 }
6471 }
6472 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6473 return EXIT_FAILURE;
6474 found:
6475 // TODO: bash prints a string representation
6476 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006477 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006478 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006479 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006480 }
6481
6482 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006483 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6484 for (i = 0; i < pi->num_cmds; i++) {
6485 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6486 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006487 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006488 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006489
6490 i = kill(- pi->pgrp, SIGCONT);
6491 if (i < 0) {
6492 if (errno == ESRCH) {
6493 delete_finished_bg_job(pi);
6494 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006495 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006496 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006497 }
6498
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006499 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006500 remove_bg_job(pi);
6501 return checkjobs_and_fg_shell(pi);
6502 }
6503 return EXIT_SUCCESS;
6504}
6505#endif
6506
6507#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006508static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006509{
6510 const struct built_in_command *x;
6511
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006512 printf("\n"
6513 "Built-in commands:\n"
6514 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006515 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6516 printf("%s\t%s\n", x->cmd, x->descr);
6517 }
6518 printf("\n\n");
6519 return EXIT_SUCCESS;
6520}
6521#endif
6522
6523#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006524static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006525{
6526 struct pipe *job;
6527 const char *status_string;
6528
Denis Vlasenko87a86552008-07-29 19:43:10 +00006529 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006530 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006531 status_string = "Stopped";
6532 else
6533 status_string = "Running";
6534
6535 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6536 }
6537 return EXIT_SUCCESS;
6538}
6539#endif
6540
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006541#if HUSH_DEBUG
6542static int builtin_memleak(char **argv UNUSED_PARAM)
6543{
6544 void *p;
6545 unsigned long l;
6546
6547 /* Crude attempt to find where "free memory" starts,
6548 * sans fragmentation. */
6549 p = malloc(240);
6550 l = (unsigned long)p;
6551 free(p);
6552 p = malloc(3400);
6553 if (l < (unsigned long)p) l = (unsigned long)p;
6554 free(p);
6555
6556 if (!G.memleak_value)
6557 G.memleak_value = l;
6558
6559 l -= G.memleak_value;
6560 if ((long)l < 0)
6561 l = 0;
6562 l /= 1024;
6563 if (l > 127)
6564 l = 127;
6565
6566 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6567 return l;
6568}
6569#endif
6570
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006571static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006572{
6573 puts(set_cwd());
6574 return EXIT_SUCCESS;
6575}
6576
6577static int builtin_read(char **argv)
6578{
6579 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006580 const char *name = "REPLY";
6581
6582 if (argv[1]) {
6583 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006584 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6585 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006586 if (!is_well_formed_var_name(name, '\0')) {
6587 /* Mimic bash message */
6588 bb_error_msg("read: '%s': not a valid identifier", name);
6589 return 1;
6590 }
6591 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006592
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006593//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6594
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006595 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006596 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006597}
6598
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006599/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6600 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006601 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006602 * set [-abCefhmnuvx] [-o option] [argument...]
6603 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006604 * set -- [argument...]
6605 * set -o
6606 * set +o
6607 * Implementations shall support the options in both their hyphen and
6608 * plus-sign forms. These options can also be specified as options to sh.
6609 * Examples:
6610 * Write out all variables and their values: set
6611 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6612 * Turn on the -x and -v options: set -xv
6613 * Unset all positional parameters: set --
6614 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6615 * Set the positional parameters to the expansion of x, even if x expands
6616 * with a leading '-' or '+': set -- $x
6617 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006618 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006619 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006620static int builtin_set(char **argv)
6621{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006622 int n;
6623 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006624 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006625
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006626 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006627 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006628 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006629 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006630 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006631 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006632
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006633 do {
6634 if (!strcmp(arg, "--")) {
6635 ++argv;
6636 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006637 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006638 if (arg[0] != '+' && arg[0] != '-')
6639 break;
6640 for (n = 1; arg[n]; ++n)
6641 if (set_mode(arg[0], arg[n]))
6642 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006643 } while ((arg = *++argv) != NULL);
6644 /* Now argv[0] is 1st argument */
6645
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006646 if (arg == NULL)
6647 return EXIT_SUCCESS;
6648 set_argv:
6649
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006650 /* NB: G.global_argv[0] ($0) is never freed/changed */
6651 g_argv = G.global_argv;
6652 if (G.global_args_malloced) {
6653 pp = g_argv;
6654 while (*++pp)
6655 free(*pp);
6656 g_argv[1] = NULL;
6657 } else {
6658 G.global_args_malloced = 1;
6659 pp = xzalloc(sizeof(pp[0]) * 2);
6660 pp[0] = g_argv[0]; /* retain $0 */
6661 g_argv = pp;
6662 }
6663 /* This realloc's G.global_argv */
6664 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6665
6666 n = 1;
6667 while (*++pp)
6668 n++;
6669 G.global_argc = n;
6670
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006671 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006672
6673 /* Nothing known, so abort */
6674 error:
6675 bb_error_msg("set: %s: invalid option", arg);
6676 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006677}
6678
6679static int builtin_shift(char **argv)
6680{
6681 int n = 1;
6682 if (argv[1]) {
6683 n = atoi(argv[1]);
6684 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006685 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006686 if (G.global_args_malloced) {
6687 int m = 1;
6688 while (m <= n)
6689 free(G.global_argv[m++]);
6690 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006691 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006692 memmove(&G.global_argv[1], &G.global_argv[n+1],
6693 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006694 return EXIT_SUCCESS;
6695 }
6696 return EXIT_FAILURE;
6697}
6698
6699static int builtin_source(char **argv)
6700{
6701 FILE *input;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006702 smallint sv_flg;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006703 save_arg_t sv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006704
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006705 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006706 return EXIT_FAILURE;
6707
Denis Vlasenko4ea187f2009-04-17 14:35:43 +00006708 /* TODO: search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006709 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006710 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006711 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006712 return EXIT_FAILURE;
6713 }
6714 close_on_exec_on(fileno(input));
6715
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006716 sv_flg = G.flag_return_in_progress;
6717 /* "we are inside sourced file, ok to use return" */
6718 G.flag_return_in_progress = -1;
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006719 save_and_replace_G_args(&sv, argv);
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006720
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006721 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006722 fclose(input);
Denis Vlasenko270b1c32009-04-17 18:54:50 +00006723
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006724 restore_G_args(&sv, argv);
6725 G.flag_return_in_progress = sv_flg;
6726
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006727 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006728}
6729
6730static int builtin_umask(char **argv)
6731{
6732 mode_t new_umask;
6733 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006734 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006735//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006736 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006737 if (errno) {
6738 //Message? bash examples:
6739 //bash: umask: 'q': invalid symbolic mode operator
6740 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006741 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006742 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006743 } else {
6744 new_umask = umask(0);
6745 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006746 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006747 }
6748 umask(new_umask);
6749 return EXIT_SUCCESS;
6750}
6751
Mike Frysingerd690f682009-03-30 06:50:54 +00006752/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006753static int builtin_unset(char **argv)
6754{
Mike Frysingerd690f682009-03-30 06:50:54 +00006755 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006756 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006757
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006758 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006759 return EXIT_SUCCESS;
6760
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006761 var = 'v';
6762 if (argv[0][0] == '-') {
6763 switch (argv[0][1]) {
6764 case 'v':
6765 case 'f':
6766 var = argv[0][1];
6767 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006768 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006769 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006770 return EXIT_FAILURE;
6771 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006772//TODO: disallow "unset -vf ..." too
6773 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006774 }
6775
6776 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006777 while (*argv) {
6778 if (var == 'v') {
6779 if (unset_local_var(*argv)) {
6780 /* unset <nonexistent_var> doesn't fail.
6781 * Error is when one tries to unset RO var.
6782 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006783 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006784 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006785 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006786//#if ENABLE_HUSH_FUNCTIONS
6787// else {
6788// unset_local_func(*argv);
6789// }
6790//#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006791 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006792 }
6793 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006794}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006795
Mike Frysinger56bdea12009-03-28 20:01:58 +00006796/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6797static int builtin_wait(char **argv)
6798{
6799 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006800 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006801
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006802 if (*++argv == NULL) {
6803 /* Don't care about wait results */
6804 /* Note 1: must wait until there are no more children */
6805 /* Note 2: must be interruptible */
6806 /* Examples:
6807 * $ sleep 3 & sleep 6 & wait
6808 * [1] 30934 sleep 3
6809 * [2] 30935 sleep 6
6810 * [1] Done sleep 3
6811 * [2] Done sleep 6
6812 * $ sleep 3 & sleep 6 & wait
6813 * [1] 30936 sleep 3
6814 * [2] 30937 sleep 6
6815 * [1] Done sleep 3
6816 * ^C <-- after ~4 sec from keyboard
6817 * $
6818 */
6819 sigaddset(&G.blocked_set, SIGCHLD);
6820 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6821 while (1) {
6822 checkjobs(NULL);
6823 if (errno == ECHILD)
6824 break;
6825 /* Wait for SIGCHLD or any other signal of interest */
6826 /* sigtimedwait with infinite timeout: */
6827 sig = sigwaitinfo(&G.blocked_set, NULL);
6828 if (sig > 0) {
6829 sig = check_and_run_traps(sig);
6830 if (sig && sig != SIGCHLD) { /* see note 2 */
6831 ret = 128 + sig;
6832 break;
6833 }
6834 }
6835 }
6836 sigdelset(&G.blocked_set, SIGCHLD);
6837 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6838 return ret;
6839 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006840
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006841 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006842 while (*argv) {
6843 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006844 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006845 /* mimic bash message */
6846 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006847 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006848 }
6849 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006850 if (WIFSIGNALED(status))
6851 ret = 128 + WTERMSIG(status);
6852 else if (WIFEXITED(status))
6853 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006854 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006855 ret = EXIT_FAILURE;
6856 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006857 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006858 ret = 127;
6859 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006860 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006861 }
6862
6863 return ret;
6864}
6865
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006866#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_FUNCTIONS
6867static unsigned parse_numeric_argv1(char **argv, unsigned def, unsigned def_min)
6868{
6869 if (argv[1]) {
6870 def = bb_strtou(argv[1], NULL, 10);
6871 if (errno || def < def_min || argv[2]) {
6872 bb_error_msg("%s: bad arguments", argv[0]);
6873 def = UINT_MAX;
6874 }
6875 }
6876 return def;
6877}
6878#endif
6879
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006880#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006881static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006882{
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006883 unsigned depth;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006884 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006885 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006886 return EXIT_SUCCESS; /* bash compat */
6887 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006888 G.flag_break_continue++; /* BC_BREAK = 1 */
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006889
6890 G.depth_break_continue = depth = parse_numeric_argv1(argv, 1, 1);
6891 if (depth == UINT_MAX)
6892 G.flag_break_continue = BC_BREAK;
6893 if (G.depth_of_loop < depth)
Denis Vlasenko87a86552008-07-29 19:43:10 +00006894 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006895
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006896 return EXIT_SUCCESS;
6897}
6898
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006899static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006900{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006901 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6902 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006903}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006904#endif
Denis Vlasenko3d40d8e2009-04-17 23:44:18 +00006905
6906#if ENABLE_HUSH_FUNCTIONS
6907static int builtin_return(char **argv UNUSED_PARAM)
6908{
6909 int rc;
6910
6911 if (G.flag_return_in_progress != -1) {
6912 bb_error_msg("%s: not in a function or sourced script", argv[0]);
6913 return EXIT_FAILURE; /* bash compat */
6914 }
6915
6916 G.flag_return_in_progress = 1;
6917
6918 /* bash:
6919 * out of range: wraps around at 256, does not error out
6920 * non-numeric param:
6921 * f() { false; return qwe; }; f; echo $?
6922 * bash: return: qwe: numeric argument required <== we do this
6923 * 255 <== we also do this
6924 */
6925 rc = parse_numeric_argv1(argv, G.last_exitcode, 0);
6926 return rc;
6927}
6928#endif