blob: 16f304d81ad9163cde9c3333ba3cc6504b49f422 [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 Vlasenkoc8d27332009-04-06 10:47:21 +000054 * builtins: return, ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000055 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000056 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000057 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000058 * SIGHUP handling
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000059 * separate job control from interactiveness
60 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
Eric Andersen25f27032001-04-26 23:22:31 +000061 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000062 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000063 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000064#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000065#include <glob.h>
66/* #include <dmalloc.h> */
67#if ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000068# include <fnmatch.h>
Denis Vlasenkobe709c22008-07-28 00:01:16 +000069#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000070#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000071#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000072#ifndef PIPE_BUF
73# define PIPE_BUF 4096 /* amount of buffering in a pipe */
74#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000075
Denis Vlasenko1943aec2009-04-09 14:15:57 +000076
77/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000078#define LEAK_HUNTING 0
79#define BUILD_AS_NOMMU 0
80/* Enable/disable sanity checks. Ok to enable in production,
81 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
82 * Keeping 1 for now even in released versions.
83 */
84#define HUSH_DEBUG 1
Denis Vlasenko1943aec2009-04-09 14:15:57 +000085
86
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000087#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000088# undef BB_MMU
89# undef USE_FOR_NOMMU
90# undef USE_FOR_MMU
91# define BB_MMU 0
92# define USE_FOR_NOMMU(...) __VA_ARGS__
93# define USE_FOR_MMU(...)
94#endif
95
Denis Vlasenko61befda2008-11-25 01:36:03 +000096#if defined SINGLE_APPLET_MAIN
97/* STANDALONE does not make sense, and won't compile */
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +000098# undef CONFIG_FEATURE_SH_STANDALONE
99# undef ENABLE_FEATURE_SH_STANDALONE
100# undef USE_FEATURE_SH_STANDALONE
101# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
102# define ENABLE_FEATURE_SH_STANDALONE 0
103# define USE_FEATURE_SH_STANDALONE(...)
104# define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
Denis Vlasenko61befda2008-11-25 01:36:03 +0000105#endif
106
Denis Vlasenko05743d72008-02-10 12:10:08 +0000107#if !ENABLE_HUSH_INTERACTIVE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000108# undef ENABLE_FEATURE_EDITING
109# define ENABLE_FEATURE_EDITING 0
110# undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
111# define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000112#endif
113
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000114/* Do we support ANY keywords? */
115#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000116# define HAS_KEYWORDS 1
117# define IF_HAS_KEYWORDS(...) __VA_ARGS__
118# define IF_HAS_NO_KEYWORDS(...)
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000119#else
Denis Vlasenkoce4acbb2009-04-10 23:23:41 +0000120# define HAS_KEYWORDS 0
121# define IF_HAS_KEYWORDS(...)
122# define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000123#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000124
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000125/* If you comment out one of these below, it will be #defined later
126 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000127#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000128/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000129#define debug_printf_parse(...) do {} while (0)
130#define debug_print_tree(a, b) do {} while (0)
131#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000132#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000133#define debug_printf_jobs(...) do {} while (0)
134#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000135#define debug_printf_glob(...) do {} while (0)
136#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000137#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000138#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000139
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000140#define ERR_PTR ((void*)(long)1)
141
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000142#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000143
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000144#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000145
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000146static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
147
148/* This supports saving pointers malloced in vfork child,
Denis Vlasenkoc376db32009-04-15 21:49:48 +0000149 * to be freed in the parent.
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000150 */
151#if !BB_MMU
152typedef struct nommu_save_t {
153 char **new_env;
154 char **old_env;
155 char **argv;
Denis Vlasenko27014ed2009-04-15 21:48:23 +0000156 char **argv_from_re_execing;
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000157} nommu_save_t;
158#endif
159
Denis Vlasenko55789c62008-06-18 16:30:42 +0000160/* The descrip member of this structure is only used to make
161 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000162static const struct {
163 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000164 signed char default_fd;
165 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000166} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000167 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000168 { O_RDONLY, 0, "<" },
169 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
170 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000171 { O_RDONLY, 0, "<<" },
172 { O_CREAT|O_RDWR, 1, "<>" },
173/* Should not be needed. Bogus default_fd helps in debugging */
174/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000175};
176
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000177typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000178 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000179#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000180 RES_IF ,
181 RES_THEN ,
182 RES_ELIF ,
183 RES_ELSE ,
184 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000185#endif
186#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000187 RES_FOR ,
188 RES_WHILE ,
189 RES_UNTIL ,
190 RES_DO ,
191 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000192#endif
193#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000194 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000195#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000196#if ENABLE_HUSH_CASE
197 RES_CASE ,
198 /* two pseudo-keywords support contrived "case" syntax: */
199 RES_MATCH , /* "word)" */
200 RES_CASEI , /* "this command is inside CASE" */
201 RES_ESAC ,
202#endif
203 RES_XXXX ,
204 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000205} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000206
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000207typedef struct o_string {
208 char *data;
209 int length; /* position where data is appended */
210 int maxlen;
211 /* Protect newly added chars against globbing
212 * (by prepending \ to *, ?, [, \) */
213 smallint o_escape;
214 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000215 /* At least some part of the string was inside '' or "",
216 * possibly empty one: word"", wo''rd etc. */
217 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000218 smallint has_empty_slot;
219 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
220} o_string;
221enum {
222 MAYBE_ASSIGNMENT = 0,
223 DEFINITELY_ASSIGNMENT = 1,
224 NOT_ASSIGNMENT = 2,
225 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
226};
227/* Used for initialization: o_string foo = NULL_O_STRING; */
228#define NULL_O_STRING { NULL }
229
230/* I can almost use ordinary FILE*. Is open_memstream() universally
231 * available? Where is it documented? */
232typedef struct in_str {
233 const char *p;
234 /* eof_flag=1: last char in ->p is really an EOF */
235 char eof_flag; /* meaningless if ->p == NULL */
236 char peek_buf[2];
237#if ENABLE_HUSH_INTERACTIVE
238 smallint promptme;
239 smallint promptmode; /* 0: PS1, 1: PS2 */
240#endif
241 FILE *file;
242 int (*get) (struct in_str *);
243 int (*peek) (struct in_str *);
244} in_str;
245#define i_getch(input) ((input)->get(input))
246#define i_peek(input) ((input)->peek(input))
247
Eric Andersen25f27032001-04-26 23:22:31 +0000248struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000249 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000250 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000251 int rd_fd; /* fd to redirect */
252 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
253 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000254 smallint rd_type; /* (enum redir_type) */
255 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000256 * and subsequently heredoc itself; and rd_dup is a bitmask:
257 * 1: do we need to trim leading tabs?
Denis Vlasenkoed055212009-04-11 10:37:10 +0000258 * 2: is heredoc quoted (<<'delim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000259 */
Eric Andersen25f27032001-04-26 23:22:31 +0000260};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000261typedef enum redir_type {
262 REDIRECT_INVALID = 0,
263 REDIRECT_INPUT = 1,
264 REDIRECT_OVERWRITE = 2,
265 REDIRECT_APPEND = 3,
266 REDIRECT_HEREDOC = 4,
267 REDIRECT_IO = 5,
268 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000269
270 REDIRFD_CLOSE = -3,
271 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000272 REDIRFD_TO_FILE = -1,
273 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000274
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000275 HEREDOC_SKIPTABS = 1,
276 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000277} redir_type;
278
Eric Andersen25f27032001-04-26 23:22:31 +0000279
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000280struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000281 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000282 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000283 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000284 smallint grp_type; /* GRP_xxx */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000285#define GRP_NORMAL 0
286#define GRP_SUBSHELL 1
287#if ENABLE_HUSH_FUNCTIONS
288# define GRP_FUNCTION 2
289#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000290 struct pipe *group; /* if non-NULL, this "command" is { list },
291 * ( list ), or a compound statement */
292#if !BB_MMU
293 char *group_as_string;
294#endif
Denis Vlasenkoed055212009-04-11 10:37:10 +0000295#if ENABLE_HUSH_FUNCTIONS
296 struct function *child_func;
297/* This field is used to prevent a bug here:
298 * while...do f1() {a;}; f1; f1 {b;}; f1; done
299 * When we execute "f1() {a;}" cmd, we create new function and clear
300 * cmd->group, cmd->group_as_string, cmd->argv[0].
301 * when we execute "f1 {b;}", we notice that f1 exists,
302 * and that it's "parent cmd" struct is still "alive",
303 * we put those fields back into cmd->xxx
304 * (struct function has ->parent_cmd ptr to facilitate that).
305 * When we loop back, we can execute "f1() {a;}" again and set f1 correctly.
306 * Without this trick, loop would execute a;b;b;b;...
307 * instead of correct sequence a;b;a;b;...
308 * When command is freed, it severs the link
309 * (sets ->child_func->parent_cmd to NULL).
310 */
311#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000312 char **argv; /* command name and arguments */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000313/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
314 * and on execution these are substituted with their values.
315 * Substitution can make _several_ words out of one argv[n]!
316 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000317 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000318 */
Denis Vlasenkoed055212009-04-11 10:37:10 +0000319 struct redir_struct *redirects; /* I/O redirections */
320};
Eric Andersen25f27032001-04-26 23:22:31 +0000321
322struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000323 struct pipe *next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000324 int num_cmds; /* total number of commands in pipe */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000325 int alive_cmds; /* number of commands running (not exited) */
326 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000327#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000328 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000329 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000330 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000331#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000332 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000333 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000334 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
335 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000336};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000337typedef enum pipe_style {
338 PIPE_SEQ = 1,
339 PIPE_AND = 2,
340 PIPE_OR = 3,
341 PIPE_BG = 4,
342} pipe_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000343
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000344/* This holds pointers to the various results of parsing */
345struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000346 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000347 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000348 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000349 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000350 /* last command in pipe (being constructed right now) */
351 struct command *command;
352 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000353 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000354#if !BB_MMU
355 o_string as_string;
356#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000357#if HAS_KEYWORDS
358 smallint ctx_res_w;
359 smallint ctx_inverted; /* "! cmd | cmd" */
360#if ENABLE_HUSH_CASE
361 smallint ctx_dsemicolon; /* ";;" seen */
362#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000363 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
364 int old_flag;
365 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000366 * example: "if pipe1; pipe2; then pipe3; fi"
367 * when we see "if" or "then", we malloc and copy current context,
368 * and make ->stack point to it. then we parse pipeN.
369 * when closing "then" / fi" / whatever is found,
370 * we move list_head into ->stack->command->group,
371 * copy ->stack into current context, and delete ->stack.
372 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000373 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000374 struct parse_context *stack;
375#endif
376};
377
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000378/* On program start, environ points to initial environment.
379 * putenv adds new pointers into it, unsetenv removes them.
380 * Neither of these (de)allocates the strings.
381 * setenv allocates new strings in malloc space and does putenv,
382 * and thus setenv is unusable (leaky) for shell's purposes */
383#define setenv(...) setenv_is_leaky_dont_use()
384struct variable {
385 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000386 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000387 int max_len; /* if > 0, name is part of initial env; else name is malloced */
388 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000389 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000390};
391
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000392enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000393 BC_BREAK = 1,
394 BC_CONTINUE = 2,
395};
396
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000397#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000398struct function {
399 struct function *next;
400 char *name;
Denis Vlasenkoed055212009-04-11 10:37:10 +0000401 struct command *parent_cmd;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000402 struct pipe *body;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000403#if !BB_MMU
404 char *body_as_string;
405#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000406};
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000407#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000408
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000409
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000410/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000411/* Sorted roughly by size (smaller offsets == smaller code) */
412struct globals {
413#if ENABLE_HUSH_INTERACTIVE
414 /* 'interactive_fd' is a fd# open to ctty, if we have one
415 * _AND_ if we decided to act interactively */
416 int interactive_fd;
417 const char *PS1;
418 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000419#define G_interactive_fd (G.interactive_fd)
420#else
421#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000422#endif
423#if ENABLE_FEATURE_EDITING
424 line_input_t *line_input_state;
425#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000426 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000427 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000428#if ENABLE_HUSH_JOB
429 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000430 pid_t saved_tty_pgrp;
431 int last_jobid;
432 struct pipe *job_list;
433 struct pipe *toplevel_list;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000434#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000435 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000436#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000437 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000438#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000439 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000440 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000441 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000442 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000443 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000444 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000445 /* how many non-NULL argv's we have. NB: $# + 1 */
446 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000447 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000448#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000449 char *argv0_for_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000450#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000451#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000452 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000453 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000454#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000455 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000456 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000457 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000458 struct variable shell_ver;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000459#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +0000460 struct function *top_func;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000461#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +0000462 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000463// unsigned count_SIGCHLD;
464// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000465 /* which signals have non-DFL handler (even with no traps set)? */
466 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000467 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000468 sigset_t blocked_set;
469 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000470#if HUSH_DEBUG
471 unsigned long memleak_value;
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000472 int debug_indent;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000473#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000474 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000475};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000476#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000477/* Not #defining name to G.name - this quickly gets unwieldy
478 * (too many defines). Also, I actually prefer to see when a variable
479 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000480#define INIT_G() do { \
481 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
482} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000483
484
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000485/* Function prototypes for builtins */
486static int builtin_cd(char **argv);
487static int builtin_echo(char **argv);
488static int builtin_eval(char **argv);
489static int builtin_exec(char **argv);
490static int builtin_exit(char **argv);
491static int builtin_export(char **argv);
492#if ENABLE_HUSH_JOB
493static int builtin_fg_bg(char **argv);
494static int builtin_jobs(char **argv);
495#endif
496#if ENABLE_HUSH_HELP
497static int builtin_help(char **argv);
498#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000499#if HUSH_DEBUG
500static int builtin_memleak(char **argv);
501#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000502static int builtin_pwd(char **argv);
503static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000504static int builtin_set(char **argv);
505static int builtin_shift(char **argv);
506static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000507static int builtin_test(char **argv);
508static int builtin_trap(char **argv);
509static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000510static int builtin_umask(char **argv);
511static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000512static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000513#if ENABLE_HUSH_LOOPS
514static int builtin_break(char **argv);
515static int builtin_continue(char **argv);
516#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000517
518/* Table of built-in functions. They can be forked or not, depending on
519 * context: within pipes, they fork. As simple commands, they do not.
520 * When used in non-forking context, they can change global variables
521 * in the parent shell process. If forked, of course they cannot.
522 * For example, 'unset foo | whatever' will parse and run, but foo will
523 * still be set at the end. */
524struct built_in_command {
525 const char *cmd;
526 int (*function)(char **argv);
527#if ENABLE_HUSH_HELP
528 const char *descr;
529#define BLTIN(cmd, func, help) { cmd, func, help }
530#else
531#define BLTIN(cmd, func, help) { cmd, func }
532#endif
533};
534
535/* For now, echo and test are unconditionally enabled.
536 * Maybe make it configurable? */
537static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000538 BLTIN("." , builtin_source , "Run commands in a file"),
539 BLTIN(":" , builtin_true , "No-op"),
540 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000541#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000542 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000543#endif
544#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000545 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000546#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000547 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000548#if ENABLE_HUSH_LOOPS
549 BLTIN("continue", builtin_continue, "Start new loop iteration"),
550#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000551 BLTIN("echo" , builtin_echo , "Write to stdout"),
552 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
553 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
554 BLTIN("exit" , builtin_exit , "Exit"),
555 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000556#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000557 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000558#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000559#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000560 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000561#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000562#if ENABLE_HUSH_JOB
563 BLTIN("jobs" , builtin_jobs , "List active jobs"),
564#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000565#if HUSH_DEBUG
566 BLTIN("memleak" , builtin_memleak , "Debug tool"),
567#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000568 BLTIN("pwd" , builtin_pwd , "Print current directory"),
569 BLTIN("read" , builtin_read , "Input environment variable"),
570// BLTIN("return" , builtin_return , "Return from a function"),
571 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
572 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
573 BLTIN("test" , builtin_test , "Test condition"),
574 BLTIN("trap" , builtin_trap , "Trap signals"),
575// BLTIN("ulimit" , builtin_return , "Control resource limits"),
576 BLTIN("umask" , builtin_umask , "Set file creation mask"),
577 BLTIN("unset" , builtin_unset , "Unset environment variable"),
578 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000579};
580
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000581
Denis Vlasenko0701dca2009-04-11 10:38:47 +0000582/* Debug printouts.
583 */
584#if HUSH_DEBUG
585/* prevent disasters with G.debug_indent < 0 */
586# define indent() fprintf(stderr, "%*s", (G.debug_indent * 2) & 0xff, "")
587# define debug_enter() (G.debug_indent++)
588# define debug_leave() (G.debug_indent--)
589#else
590# define indent() ((void)0)
591# define debug_enter() ((void)0)
592# define debug_leave() ((void)0)
593#endif
594
595#ifndef debug_printf
596# define debug_printf(...) (indent(), fprintf(stderr, __VA_ARGS__))
597#endif
598
599#ifndef debug_printf_parse
600# define debug_printf_parse(...) (indent(), fprintf(stderr, __VA_ARGS__))
601#endif
602
603#ifndef debug_printf_exec
604#define debug_printf_exec(...) (indent(), fprintf(stderr, __VA_ARGS__))
605#endif
606
607#ifndef debug_printf_env
608# define debug_printf_env(...) (indent(), fprintf(stderr, __VA_ARGS__))
609#endif
610
611#ifndef debug_printf_jobs
612# define debug_printf_jobs(...) (indent(), fprintf(stderr, __VA_ARGS__))
613# define DEBUG_JOBS 1
614#else
615# define DEBUG_JOBS 0
616#endif
617
618#ifndef debug_printf_expand
619# define debug_printf_expand(...) (indent(), fprintf(stderr, __VA_ARGS__))
620# define DEBUG_EXPAND 1
621#else
622# define DEBUG_EXPAND 0
623#endif
624
625#ifndef debug_printf_glob
626# define debug_printf_glob(...) (indent(), fprintf(stderr, __VA_ARGS__))
627# define DEBUG_GLOB 1
628#else
629# define DEBUG_GLOB 0
630#endif
631
632#ifndef debug_printf_list
633# define debug_printf_list(...) (indent(), fprintf(stderr, __VA_ARGS__))
634#endif
635
636#ifndef debug_printf_subst
637# define debug_printf_subst(...) (indent(), fprintf(stderr, __VA_ARGS__))
638#endif
639
640#ifndef debug_printf_clean
641# define debug_printf_clean(...) (indent(), fprintf(stderr, __VA_ARGS__))
642# define DEBUG_CLEAN 1
643#else
644# define DEBUG_CLEAN 0
645#endif
646
647#if DEBUG_EXPAND
648static void debug_print_strings(const char *prefix, char **vv)
649{
650 indent();
651 fprintf(stderr, "%s:\n", prefix);
652 while (*vv)
653 fprintf(stderr, " '%s'\n", *vv++);
654}
655#else
656#define debug_print_strings(prefix, vv) ((void)0)
657#endif
658
659
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000660/* Leak hunting. Use hush_leaktool.sh for post-processing.
661 */
662#if LEAK_HUNTING
663static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000664{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000665 void *ptr = xmalloc((size + 0xff) & ~0xff);
666 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
667 return ptr;
668}
669static void *xxrealloc(int lineno, void *ptr, size_t size)
670{
671 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
672 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
673 return ptr;
674}
675static char *xxstrdup(int lineno, const char *str)
676{
677 char *ptr = xstrdup(str);
678 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
679 return ptr;
680}
681static void xxfree(void *ptr)
682{
683 fdprintf(2, "free %p\n", ptr);
684 free(ptr);
685}
686#define xmalloc(s) xxmalloc(__LINE__, s)
687#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
688#define xstrdup(s) xxstrdup(__LINE__, s)
689#define free(p) xxfree(p)
690#endif
691
692
693/* Syntax and runtime errors. They always abort scripts.
694 * In interactive use they usually discard unparsed and/or unexecuted commands
695 * and return to the prompt.
696 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
697 */
698#if HUSH_DEBUG < 2
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000699# define die_if_script(lineno, fmt...) die_if_script(fmt)
700# define syntax_error(lineno, msg) syntax_error(msg)
701# define syntax_error_at(lineno, msg) syntax_error_at(msg)
702# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
703# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
704# define syntax_error_unexpected_ch(lineno, ch) syntax_error_unexpected_ch(ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000705#endif
706
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000707static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000708{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000709 va_list p;
710
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000711#if HUSH_DEBUG >= 2
712 bb_error_msg("hush.c:%u", lineno);
713#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000714 va_start(p, fmt);
715 bb_verror_msg(fmt, p, NULL);
716 va_end(p);
717 if (!G_interactive_fd)
718 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000719}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000720
721static void syntax_error(unsigned lineno, const char *msg)
722{
723 if (msg)
724 die_if_script(lineno, "syntax error: %s", msg);
725 else
726 die_if_script(lineno, "syntax error", NULL);
727}
728
729static void syntax_error_at(unsigned lineno, const char *msg)
730{
731 die_if_script(lineno, "syntax error at '%s'", msg);
732}
733
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000734/* It so happens that all such cases are totally fatal
735 * even if shell is interactive: EOF while looking for closing
736 * delimiter. There is nowhere to read stuff from after that,
737 * it's EOF! The only choice is to terminate.
738 */
739static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000740static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000741{
742 char msg[2];
743 msg[0] = ch;
744 msg[1] = '\0';
745 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000746 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000747}
748
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000749static void syntax_error_unterm_str(unsigned lineno, const char *s)
750{
751 die_if_script(lineno, "syntax error: unterminated %s", s);
752}
753
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000754static void syntax_error_unexpected_ch(unsigned lineno, char ch)
755{
756 char msg[2];
757 msg[0] = ch;
758 msg[1] = '\0';
759 die_if_script(lineno, "syntax error: unexpected %s", msg);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000760}
761
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000762#if HUSH_DEBUG < 2
763# undef die_if_script
764# undef syntax_error
765# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000766# undef syntax_error_unterm_ch
767# undef syntax_error_unterm_str
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000768# undef syntax_error_unexpected_ch
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000769#else
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +0000770# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
771# define syntax_error(msg) syntax_error(__LINE__, msg)
772# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
773# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
774# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
775# define syntax_error_unexpected_ch(ch) syntax_error_unexpected_ch(__LINE__, ch)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000776#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000777
Denis Vlasenko552433b2009-04-04 19:29:21 +0000778
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000779/* Utility functions
780 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000781static int glob_needed(const char *s)
782{
783 while (*s) {
784 if (*s == '\\')
785 s++;
786 if (*s == '*' || *s == '[' || *s == '?')
787 return 1;
788 s++;
789 }
790 return 0;
791}
792
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000793static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000794{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000795 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000796 return 0;
797 s++;
798 while (isalnum(*s) || *s == '_')
799 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000800 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000801}
802
Denis Vlasenko55789c62008-06-18 16:30:42 +0000803/* Replace each \x with x in place, return ptr past NUL. */
804static char *unbackslash(char *src)
805{
806 char *dst = src;
807 while (1) {
808 if (*src == '\\')
809 src++;
810 if ((*dst++ = *src++) == '\0')
811 break;
812 }
813 return dst;
814}
815
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000816static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000817{
818 int i;
819 unsigned count1;
820 unsigned count2;
821 char **v;
822
823 v = strings;
824 count1 = 0;
825 if (v) {
826 while (*v) {
827 count1++;
828 v++;
829 }
830 }
831 count2 = 0;
832 v = add;
833 while (*v) {
834 count2++;
835 v++;
836 }
837 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
838 v[count1 + count2] = NULL;
839 i = count2;
840 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000841 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000842 return v;
843}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000844#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000845static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
846{
847 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
848 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
849 return ptr;
850}
851#define add_strings_to_strings(strings, add, need_to_dup) \
852 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
853#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000854
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000855static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000856{
857 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000858 v[0] = add;
859 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000860 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000861}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000862#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000863static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
864{
865 char **ptr = add_string_to_strings(strings, add);
866 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
867 return ptr;
868}
869#define add_string_to_strings(strings, add) \
870 xx_add_string_to_strings(__LINE__, strings, add)
871#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000872
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000873static void putenv_all(char **strings)
874{
875 if (!strings)
876 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000877 while (*strings) {
878 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000879 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000880 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000881}
882
883static char **putenv_all_and_save_old(char **strings)
884{
885 char **old = NULL;
886 char **s = strings;
887
888 if (!strings)
889 return old;
890 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000891 char *v, *eq;
892
893 eq = strchr(*strings, '=');
894 if (eq) {
895 *eq = '\0';
896 v = getenv(*strings);
897 *eq = '=';
898 if (v) {
899 /* v points to VAL in VAR=VAL, go back to VAR */
900 v -= (eq - *strings) + 1;
901 old = add_string_to_strings(old, v);
902 }
903 }
904 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000905 }
906 putenv_all(s);
907 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000908}
909
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000910static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000911{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000912 char **v;
913
914 if (!strings)
915 return;
916
917 v = strings;
918 while (*v) {
919 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000920 debug_printf_env("unsetenv '%s'\n", *v);
921 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000922 }
923 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000924 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000925 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000926}
927
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000928static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000929{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000930 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000931}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000932
933
Denis Vlasenkod5762932009-03-31 11:22:57 +0000934/* Basic theory of signal handling in shell
935 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000936 * This does not describe what hush does, rather, it is current understanding
937 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000938 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
939 *
940 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
941 * is finished or backgrounded. It is the same in interactive and
942 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000943 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000944 * ^C or ^Z from keyboard seem to execute "at once" because it usually
945 * backgrounds (i.e. stops) or kills all members of currently running
946 * pipe.
947 *
948 * Wait builtin in interruptible by signals for which user trap is set
949 * or by SIGINT in interactive shell.
950 *
951 * Trap handlers will execute even within trap handlers. (right?)
952 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000953 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000954 *
955 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000956 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000957 *
958 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000959 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000960 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000961 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
962 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000963 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000964 * Siganls which differ from SIG_DFL action
965 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000966 *
967 * SIGQUIT: ignore
968 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000969 * SIGHUP (interactive):
970 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000971 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenkoc4ada792009-04-15 23:29:00 +0000972 * Note that ^Z is handled not by trapping SIGTSTP, but by seeing
973 * that all pipe members are stopped. Try this in bash:
974 * while :; do :; done - ^Z does not background it
975 * (while :; do :; done) - ^Z backgrounds it
Denis Vlasenkod5762932009-03-31 11:22:57 +0000976 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000977 * of the command line, show prompt. NB: ^C does not send SIGINT
978 * to interactive shell while shell is waiting for a pipe,
979 * since shell is bg'ed (is not in foreground process group).
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000980 * Example 1: this waits 5 sec, but does not execute ls:
981 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
982 * Example 2: this does not wait and does not execute ls:
983 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
984 * Example 3: this does not wait 5 sec, but executes ls:
985 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000986 *
987 * (What happens to signals which are IGN on shell start?)
988 * (What happens with signal mask on shell start?)
989 *
990 * Implementation in hush
991 * ======================
992 * We use in-kernel pending signal mask to determine which signals were sent.
993 * We block all signals which we don't want to take action immediately,
994 * i.e. we block all signals which need to have special handling as described
995 * above, and all signals which have traps set.
996 * After each pipe execution, we extract any pending signals via sigtimedwait()
997 * and act on them.
998 *
999 * unsigned non_DFL_mask: a mask of such "special" signals
1000 * sigset_t blocked_set: current blocked signal set
1001 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001002 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +00001003 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001004 * "trap 'cmd' SIGxxx":
1005 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +00001006 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001007 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001008 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001009 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001010 * POSIX says pending signal mask is cleared in child - no need to clear it.
1011 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001012 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001013 * Note: as a result, we do not use signal handlers much. The only uses
1014 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
1015 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +00001016 */
1017
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001018//static void SIGCHLD_handler(int sig UNUSED_PARAM)
1019//{
1020// G.count_SIGCHLD++;
1021//}
1022
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001023static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +00001024{
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001025 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +00001026 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001027 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001028
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001029 if (sig)
1030 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001031 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001032 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +00001033 if (sig <= 0)
1034 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001035 jump_in:
1036 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001037 if (G.traps && G.traps[sig]) {
1038 if (G.traps[sig][0]) {
1039 /* We have user-defined handler */
1040 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001041 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001042 builtin_eval(argv);
1043 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001044 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001045 } /* else: "" trap, ignoring signal */
1046 continue;
1047 }
1048 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001049 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001050// case SIGCHLD:
1051// G.count_SIGCHLD++;
1052// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001053 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001054 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001055 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001056 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001057//TODO
1058// case SIGHUP: ...
1059// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00001060 default: /* ignored: */
1061 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001062 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001063 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00001064 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001065 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001066}
1067
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001068#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001069
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001070/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1071#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001072/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001073#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1074
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001075/* Restores tty foreground process group, and exits.
1076 * May be called as signal handler for fatal signal
1077 * (will faithfully resend signal to itself, producing correct exit state)
1078 * or called directly with -EXITCODE.
1079 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001080static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001081static void sigexit(int sig)
1082{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001083 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001084 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001085
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001086 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001087 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001088 if (G_interactive_fd && getpid() == G.root_pid)
1089 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001090
1091 /* Not a signal, just exit */
1092 if (sig <= 0)
1093 _exit(- sig);
1094
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001095 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001096}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001097#else
1098
1099#define disable_restore_tty_pgrp_on_exit() ((void)0)
1100#define enable_restore_tty_pgrp_on_exit() ((void)0)
1101
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001102#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001103
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001104/* Restores tty foreground process group, and exits. */
1105static void hush_exit(int exitcode) NORETURN;
1106static void hush_exit(int exitcode)
1107{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001108 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1109 /* Prevent recursion:
1110 * trap "echo Hi; exit" EXIT; exit
1111 */
1112 char *argv[] = { NULL, G.traps[0], NULL };
1113 G.traps[0] = NULL;
1114 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001115 builtin_eval(argv);
1116 free(argv[1]);
1117 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001118
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001119#if ENABLE_HUSH_JOB
1120 fflush(NULL); /* flush all streams */
1121 sigexit(- (exitcode & 0xff));
1122#else
1123 exit(exitcode);
1124#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001125}
1126
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001127
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001128static const char *set_cwd(void)
1129{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001130 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1131 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001132 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001133 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001134 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1135 if (!G.cwd)
1136 G.cwd = bb_msg_unknown;
1137 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001138}
1139
Denis Vlasenko83506862007-11-23 13:11:42 +00001140
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001141/* Get/check local shell variables */
1142static struct variable *get_local_var(const char *name)
1143{
1144 struct variable *cur;
1145 int len;
1146
1147 if (!name)
1148 return NULL;
1149 len = strlen(name);
1150 for (cur = G.top_var; cur; cur = cur->next) {
1151 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1152 return cur;
1153 }
1154 return NULL;
1155}
1156
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001157static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001158{
1159 struct variable *var = get_local_var(src);
1160 if (var)
1161 return strchr(var->varstr, '=') + 1;
1162 return NULL;
1163}
1164
1165/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001166 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001167 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001168 * 0: do not export
1169 * 1: export
1170 * -1: if NAME is set, leave export status alone
1171 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001172 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001173 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001174#if BB_MMU
1175#define set_local_var(str, flg_export, flg_read_only) \
1176 set_local_var(str, flg_export)
1177#endif
1178static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001179{
1180 struct variable *cur;
1181 char *value;
1182 int name_len;
1183
1184 value = strchr(str, '=');
1185 if (!value) { /* not expected to ever happen? */
1186 free(str);
1187 return -1;
1188 }
1189
1190 name_len = value - str + 1; /* including '=' */
1191 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1192 while (1) {
1193 if (strncmp(cur->varstr, str, name_len) != 0) {
1194 if (!cur->next) {
1195 /* Bail out. Note that now cur points
1196 * to last var in linked list */
1197 break;
1198 }
1199 cur = cur->next;
1200 continue;
1201 }
1202 /* We found an existing var with this name */
1203 *value = '\0';
1204 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001205#if !BB_MMU
1206 if (!flg_read_only)
1207#endif
1208 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001209 free(str);
1210 return -1;
1211 }
1212 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1213 unsetenv(str); /* just in case */
1214 *value = '=';
1215 if (strcmp(cur->varstr, str) == 0) {
1216 free_and_exp:
1217 free(str);
1218 goto exp;
1219 }
1220 if (cur->max_len >= strlen(str)) {
1221 /* This one is from startup env, reuse space */
1222 strcpy(cur->varstr, str);
1223 goto free_and_exp;
1224 }
1225 /* max_len == 0 signifies "malloced" var, which we can
1226 * (and has to) free */
1227 if (!cur->max_len)
1228 free(cur->varstr);
1229 cur->max_len = 0;
1230 goto set_str_and_exp;
1231 }
1232
1233 /* Not found - create next variable struct */
1234 cur->next = xzalloc(sizeof(*cur));
1235 cur = cur->next;
1236
1237 set_str_and_exp:
1238 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001239#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001240 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001241#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001242 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001243 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001244 cur->flg_export = 1;
1245 if (cur->flg_export) {
1246 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1247 return putenv(cur->varstr);
1248 }
1249 return 0;
1250}
1251
Mike Frysingerd690f682009-03-30 06:50:54 +00001252static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001253{
1254 struct variable *cur;
1255 struct variable *prev = prev; /* for gcc */
1256 int name_len;
1257
1258 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001259 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001260 name_len = strlen(name);
1261 cur = G.top_var;
1262 while (cur) {
1263 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1264 if (cur->flg_read_only) {
1265 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001266 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001267 }
1268 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1269 * is ro, and we cannot reach this code on the 1st pass */
1270 prev->next = cur->next;
1271 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1272 bb_unsetenv(cur->varstr);
1273 if (!cur->max_len)
1274 free(cur->varstr);
1275 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001276 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001277 }
1278 prev = cur;
1279 cur = cur->next;
1280 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001281 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001282}
1283
Mike Frysinger98c52642009-04-02 10:02:37 +00001284#if ENABLE_SH_MATH_SUPPORT
1285#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1286#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1287static char *endofname(const char *name)
1288{
1289 char *p;
1290
1291 p = (char *) name;
1292 if (!is_name(*p))
1293 return p;
1294 while (*++p) {
1295 if (!is_in_name(*p))
1296 break;
1297 }
1298 return p;
1299}
1300
1301static void arith_set_local_var(const char *name, const char *val, int flags)
1302{
1303 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001304 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001305 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001306}
1307#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001308
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001309
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001310/*
1311 * in_str support
1312 */
1313static int static_get(struct in_str *i)
1314{
1315 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001316 if (ch != '\0')
1317 return ch;
1318 i->p--;
1319 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001320}
1321
1322static int static_peek(struct in_str *i)
1323{
1324 return *i->p;
1325}
1326
1327#if ENABLE_HUSH_INTERACTIVE
1328
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001329static void cmdedit_set_initial_prompt(void)
1330{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001331 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1332 G.PS1 = getenv("PS1");
1333 if (G.PS1 == NULL)
1334 G.PS1 = "\\w \\$ ";
1335 } else
1336 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001337}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001338
1339static const char* setup_prompt_string(int promptmode)
1340{
1341 const char *prompt_str;
1342 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001343 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1344 /* Set up the prompt */
1345 if (promptmode == 0) { /* PS1 */
1346 free((char*)G.PS1);
1347 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1348 prompt_str = G.PS1;
1349 } else
1350 prompt_str = G.PS2;
1351 } else
1352 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001353 debug_printf("result '%s'\n", prompt_str);
1354 return prompt_str;
1355}
1356
1357static void get_user_input(struct in_str *i)
1358{
1359 int r;
1360 const char *prompt_str;
1361
1362 prompt_str = setup_prompt_string(i->promptmode);
1363#if ENABLE_FEATURE_EDITING
1364 /* Enable command line editing only while a command line
1365 * is actually being read */
1366 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001367 G.flag_SIGINT = 0;
1368 /* buglet: SIGINT will not make new prompt to appear _at once_,
1369 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001370 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001371 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001372 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001373 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001374 i->eof_flag = (r < 0);
1375 if (i->eof_flag) { /* EOF/error detected */
1376 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1377 G.user_input_buf[1] = '\0';
1378 }
1379#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001380 do {
1381 G.flag_SIGINT = 0;
1382 fputs(prompt_str, stdout);
1383 fflush(stdout);
1384 G.user_input_buf[0] = r = fgetc(i->file);
1385 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001386//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001387 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001388 i->eof_flag = (r == EOF);
1389#endif
1390 i->p = G.user_input_buf;
1391}
1392
1393#endif /* INTERACTIVE */
1394
1395/* This is the magic location that prints prompts
1396 * and gets data back from the user */
1397static int file_get(struct in_str *i)
1398{
1399 int ch;
1400
1401 /* If there is data waiting, eat it up */
1402 if (i->p && *i->p) {
1403#if ENABLE_HUSH_INTERACTIVE
1404 take_cached:
1405#endif
1406 ch = *i->p++;
1407 if (i->eof_flag && !*i->p)
1408 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001409 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001410 } else {
1411 /* need to double check i->file because we might be doing something
1412 * more complicated by now, like sourcing or substituting. */
1413#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001414 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001415 do {
1416 get_user_input(i);
1417 } while (!*i->p); /* need non-empty line */
1418 i->promptmode = 1; /* PS2 */
1419 i->promptme = 0;
1420 goto take_cached;
1421 }
1422#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001423 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001424 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001425 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001426#if ENABLE_HUSH_INTERACTIVE
1427 if (ch == '\n')
1428 i->promptme = 1;
1429#endif
1430 return ch;
1431}
1432
Denis Vlasenko913a2012009-04-05 22:17:04 +00001433/* All callers guarantee this routine will never
1434 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001435 */
1436static int file_peek(struct in_str *i)
1437{
1438 int ch;
1439 if (i->p && *i->p) {
1440 if (i->eof_flag && !i->p[1])
1441 return EOF;
1442 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001443 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001444 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001445 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001446 i->eof_flag = (ch == EOF);
1447 i->peek_buf[0] = ch;
1448 i->peek_buf[1] = '\0';
1449 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001450 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001451 return ch;
1452}
1453
1454static void setup_file_in_str(struct in_str *i, FILE *f)
1455{
1456 i->peek = file_peek;
1457 i->get = file_get;
1458#if ENABLE_HUSH_INTERACTIVE
1459 i->promptme = 1;
1460 i->promptmode = 0; /* PS1 */
1461#endif
1462 i->file = f;
1463 i->p = NULL;
1464}
1465
1466static void setup_string_in_str(struct in_str *i, const char *s)
1467{
1468 i->peek = static_peek;
1469 i->get = static_get;
1470#if ENABLE_HUSH_INTERACTIVE
1471 i->promptme = 1;
1472 i->promptmode = 0; /* PS1 */
1473#endif
1474 i->p = s;
1475 i->eof_flag = 0;
1476}
1477
1478
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001479/*
1480 * o_string support
1481 */
1482#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001483
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001484static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001485{
1486 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001487 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001488 if (o->data)
1489 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001490}
1491
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001492static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001493{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001494 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001495 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001496}
1497
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001498static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1499{
1500 free(o->data);
1501}
1502
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001503static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001504{
1505 if (o->length + len > o->maxlen) {
1506 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1507 o->data = xrealloc(o->data, 1 + o->maxlen);
1508 }
1509}
1510
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001511static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001512{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001513 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1514 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001515 o->data[o->length] = ch;
1516 o->length++;
1517 o->data[o->length] = '\0';
1518}
1519
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001520static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001521{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001522 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001523 memcpy(&o->data[o->length], str, len);
1524 o->length += len;
1525 o->data[o->length] = '\0';
1526}
1527
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001528#if !BB_MMU
1529static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001530{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001531 o_addblock(o, str, strlen(str));
1532}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001533static void nommu_addchr(o_string *o, int ch)
1534{
1535 if (o)
1536 o_addchr(o, ch);
1537}
1538#else
1539#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001540#endif
1541
1542static void o_addstr_with_NUL(o_string *o, const char *str)
1543{
1544 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001545}
1546
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001547static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001548{
1549 while (len) {
1550 o_addchr(o, *str);
1551 if (*str++ == '\\'
1552 && (*str != '*' && *str != '?' && *str != '[')
1553 ) {
1554 o_addchr(o, '\\');
1555 }
1556 len--;
1557 }
1558}
1559
Eric Andersen25f27032001-04-26 23:22:31 +00001560/* My analysis of quoting semantics tells me that state information
1561 * is associated with a destination, not a source.
1562 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001563static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001564{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001565 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001566 char *found = strchr("*?[\\", ch);
1567 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001568 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001569 o_grow_by(o, sz);
1570 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001571 o->data[o->length] = '\\';
1572 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001573 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001574 o->data[o->length] = ch;
1575 o->length++;
1576 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001577}
1578
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001579static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001580{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001581 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001582 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001583 sz++;
1584 o->data[o->length] = '\\';
1585 o->length++;
1586 }
1587 o_grow_by(o, sz);
1588 o->data[o->length] = ch;
1589 o->length++;
1590 o->data[o->length] = '\0';
1591}
1592
1593static void o_addQstr(o_string *o, const char *str, int len)
1594{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001595 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001596 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001597 return;
1598 }
1599 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001600 char ch;
1601 int sz;
1602 int ordinary_cnt = strcspn(str, "*?[\\");
1603 if (ordinary_cnt > len) /* paranoia */
1604 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001605 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001606 if (ordinary_cnt == len)
1607 return;
1608 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001609 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001610
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001611 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001612 sz = 1;
1613 if (ch) { /* it is necessarily one of "*?[\\" */
1614 sz++;
1615 o->data[o->length] = '\\';
1616 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001617 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001618 o_grow_by(o, sz);
1619 o->data[o->length] = ch;
1620 o->length++;
1621 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001622 }
1623}
1624
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001625/* A special kind of o_string for $VAR and `cmd` expansion.
1626 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001627 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001628 * list[i] contains an INDEX (int!) into this string data.
1629 * It means that if list[] needs to grow, data needs to be moved higher up
1630 * but list[i]'s need not be modified.
1631 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001632 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001633 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1634 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001635#if DEBUG_EXPAND || DEBUG_GLOB
1636static void debug_print_list(const char *prefix, o_string *o, int n)
1637{
1638 char **list = (char**)o->data;
1639 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1640 int i = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001641
1642 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001643 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1644 prefix, list, n, string_start, o->length, o->maxlen);
1645 while (i < n) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001646 indent();
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001647 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1648 o->data + (int)list[i] + string_start,
1649 o->data + (int)list[i] + string_start);
1650 i++;
1651 }
1652 if (n) {
1653 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00001654 indent();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001655 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001656 }
1657}
1658#else
1659#define debug_print_list(prefix, o, n) ((void)0)
1660#endif
1661
1662/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1663 * in list[n] so that it points past last stored byte so far.
1664 * It returns n+1. */
1665static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001666{
1667 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001668 int string_start;
1669 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001670
1671 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001672 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1673 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001674 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001675 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001676 /* list[n] points to string_start, make space for 16 more pointers */
1677 o->maxlen += 0x10 * sizeof(list[0]);
1678 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001679 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001680 memmove(list + n + 0x10, list + n, string_len);
1681 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001682 } else {
1683 debug_printf_list("list[%d]=%d string_start=%d\n",
1684 n, string_len, string_start);
1685 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001686 } else {
1687 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001688 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1689 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001690 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1691 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001692 o->has_empty_slot = 0;
1693 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001694 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001695 return n + 1;
1696}
1697
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001698/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001699static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001700{
1701 char **list = (char**)o->data;
1702 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1703
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001704 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001705}
1706
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001707/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001708 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001709static int o_glob(o_string *o, int n)
1710{
1711 glob_t globdata;
1712 int gr;
1713 char *pattern;
1714
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001715 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001716 if (!o->data)
1717 return o_save_ptr_helper(o, n);
1718 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001719 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001720 if (!glob_needed(pattern)) {
1721 literal:
1722 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001723 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001724 return o_save_ptr_helper(o, n);
1725 }
1726
1727 memset(&globdata, 0, sizeof(globdata));
1728 gr = glob(pattern, 0, NULL, &globdata);
1729 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1730 if (gr == GLOB_NOSPACE)
1731 bb_error_msg_and_die("out of memory during glob");
1732 if (gr == GLOB_NOMATCH) {
1733 globfree(&globdata);
1734 goto literal;
1735 }
1736 if (gr != 0) { /* GLOB_ABORTED ? */
1737//TODO: testcase for bad glob pattern behavior
1738 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1739 }
1740 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1741 char **argv = globdata.gl_pathv;
1742 o->length = pattern - o->data; /* "forget" pattern */
1743 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001744 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001745 n = o_save_ptr_helper(o, n);
1746 argv++;
1747 if (!*argv)
1748 break;
1749 }
1750 }
1751 globfree(&globdata);
1752 if (DEBUG_GLOB)
1753 debug_print_list("o_glob returning", o, n);
1754 return n;
1755}
1756
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001757/* If o->o_glob == 1, glob the string so far remembered.
1758 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001759static int o_save_ptr(o_string *o, int n)
1760{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001761 if (o->o_glob) { /* if globbing is requested */
1762 /* If o->has_empty_slot, list[n] was already globbed
1763 * (if it was requested back then when it was filled)
1764 * so don't do that again! */
1765 if (!o->has_empty_slot)
1766 return o_glob(o, n); /* o_save_ptr_helper is inside */
1767 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001768 return o_save_ptr_helper(o, n);
1769}
1770
1771/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001772static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001773{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001774 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001775 int string_start;
1776
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001777 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1778 if (DEBUG_EXPAND)
1779 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001780 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001781 list = (char**)o->data;
1782 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1783 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001784 while (n) {
1785 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001786 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001787 }
1788 return list;
1789}
1790
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001791
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001792/* Expansion can recurse */
1793#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001794static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001795#endif
1796static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001797#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001798#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001799 parse_stream_dquoted(dest, input, dquote_end)
1800#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001801static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001802 o_string *dest,
1803 struct in_str *input,
1804 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001805
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001806/* expand_strvec_to_strvec() takes a list of strings, expands
1807 * all variable references within and returns a pointer to
1808 * a list of expanded strings, possibly with larger number
1809 * of strings. (Think VAR="a b"; echo $VAR).
1810 * This new list is allocated as a single malloc block.
1811 * NULL-terminated list of char* pointers is at the beginning of it,
1812 * followed by strings themself.
1813 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001814
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001815/* Store given string, finalizing the word and starting new one whenever
1816 * we encounter IFS char(s). This is used for expanding variable values.
1817 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1818static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001819{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001820 while (1) {
1821 int word_len = strcspn(str, G.ifs);
1822 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001823 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001824 o_addQstr(output, str, word_len);
1825 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001826 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001827 str += word_len;
1828 }
1829 if (!*str) /* EOL - do not finalize word */
1830 break;
1831 o_addchr(output, '\0');
1832 debug_print_list("expand_on_ifs", output, n);
1833 n = o_save_ptr(output, n);
1834 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001835 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001836 debug_print_list("expand_on_ifs[1]", output, n);
1837 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001838}
1839
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001840/* Helper to expand $((...)) and heredoc body. These act as if
1841 * they are in double quotes, with the exception that they are not :).
1842 * Just the rules are similar: "expand only $var and `cmd`"
1843 *
1844 * Returns malloced string.
1845 * As an optimization, we return NULL if expansion is not needed.
1846 */
1847static char *expand_pseudo_dquoted(const char *str)
1848{
1849 char *exp_str;
1850 struct in_str input;
1851 o_string dest = NULL_O_STRING;
1852
1853 if (strchr(str, '$') == NULL
1854#if ENABLE_HUSH_TICK
1855 && strchr(str, '`') == NULL
1856#endif
1857 ) {
1858 return NULL;
1859 }
1860
1861 /* We need to expand. Example:
1862 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1863 */
1864 setup_string_in_str(&input, str);
1865 parse_stream_dquoted(NULL, &dest, &input, EOF);
1866 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1867 exp_str = expand_string_to_string(dest.data);
1868 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1869 o_free_unsafe(&dest);
1870 return exp_str;
1871}
1872
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001873/* Expand all variable references in given string, adding words to list[]
1874 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1875 * to be filled). This routine is extremely tricky: has to deal with
1876 * variables/parameters with whitespace, $* and $@, and constructs like
1877 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1878static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001879{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001880 /* or_mask is either 0 (normal case) or 0x80
1881 * (expansion of right-hand side of assignment == 1-element expand.
1882 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001883
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001884 char first_ch, ored_ch;
1885 int i;
1886 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001887 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001888
Mike Frysingera4f331d2009-04-07 06:03:22 +00001889 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001890 ored_ch = 0;
1891
1892 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1893 debug_print_list("expand_vars_to_list", output, n);
1894 n = o_save_ptr(output, n);
1895 debug_print_list("expand_vars_to_list[0]", output, n);
1896
1897 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1898#if ENABLE_HUSH_TICK
1899 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001900#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001901#if ENABLE_SH_MATH_SUPPORT
1902 char arith_buf[sizeof(arith_t)*3 + 2];
1903#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001904 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001905 debug_print_list("expand_vars_to_list[1]", output, n);
1906 arg = ++p;
1907 p = strchr(p, SPECIAL_VAR_SYMBOL);
1908
1909 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1910 /* "$@" is special. Even if quoted, it can still
1911 * expand to nothing (not even an empty string) */
1912 if ((first_ch & 0x7f) != '@')
1913 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001914
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001915 val = NULL;
1916 switch (first_ch & 0x7f) {
1917 /* Highest bit in first_ch indicates that var is double-quoted */
1918 case '$': /* pid */
1919 val = utoa(G.root_pid);
1920 break;
1921 case '!': /* bg pid */
1922 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1923 break;
1924 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001925 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001926 break;
1927 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001928 if (arg[1] != SPECIAL_VAR_SYMBOL)
1929 /* actually, it's a ${#var} */
1930 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001931 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1932 break;
1933 case '*':
1934 case '@':
1935 i = 1;
1936 if (!G.global_argv[i])
1937 break;
1938 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1939 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001940 smallint sv = output->o_escape;
1941 /* unquoted var's contents should be globbed, so don't escape */
1942 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001943 while (G.global_argv[i]) {
1944 n = expand_on_ifs(output, n, G.global_argv[i]);
1945 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1946 if (G.global_argv[i++][0] && G.global_argv[i]) {
1947 /* this argv[] is not empty and not last:
1948 * put terminating NUL, start new word */
1949 o_addchr(output, '\0');
1950 debug_print_list("expand_vars_to_list[2]", output, n);
1951 n = o_save_ptr(output, n);
1952 debug_print_list("expand_vars_to_list[3]", output, n);
1953 }
1954 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001955 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001956 } else
1957 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1958 * and in this case should treat it like '$*' - see 'else...' below */
1959 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1960 while (1) {
1961 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1962 if (++i >= G.global_argc)
1963 break;
1964 o_addchr(output, '\0');
1965 debug_print_list("expand_vars_to_list[4]", output, n);
1966 n = o_save_ptr(output, n);
1967 }
1968 } else { /* quoted $*: add as one word */
1969 while (1) {
1970 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1971 if (!G.global_argv[++i])
1972 break;
1973 if (G.ifs[0])
1974 o_addchr(output, G.ifs[0]);
1975 }
1976 }
1977 break;
1978 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1979 /* "Empty variable", used to make "" etc to not disappear */
1980 arg++;
1981 ored_ch = 0x80;
1982 break;
1983#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001984 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001985 *p = '\0';
1986 arg++;
1987//TODO: can we just stuff it into "output" directly?
1988 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001989 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001990 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1991 val = subst_result.data;
1992 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001993#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001994#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001995 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001996 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001997 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001998 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001999 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002000
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002001 arg++; /* skip '+' */
2002 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00002003 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002004
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002005 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002006 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002007 hooks.setvar = arith_set_local_var;
2008 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002009 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
2010 free(exp_str);
2011
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002012 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002013 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00002014 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002015 case -3:
2016 msg = "exponent less than 0";
2017 break;
2018 case -2:
2019 msg = "divide by 0";
2020 break;
2021 case -5:
2022 msg = "expression recursion loop detected";
2023 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00002024 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002025 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00002026 }
Mike Frysinger98c52642009-04-02 10:02:37 +00002027 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002028 sprintf(arith_buf, arith_t_fmt, res);
2029 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00002030 break;
2031 }
2032#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002033 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002034 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002035 bool exp_len = false;
2036 bool exp_null = false;
2037 char *var = arg;
2038 char exp_save = exp_save; /* for compiler */
2039 char exp_op = exp_op; /* for compiler */
2040 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002041 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00002042
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002043 *p = '\0';
2044 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002045
2046 /* prepare for expansions */
2047 if (var[0] == '#') {
2048 /* handle length expansion ${#var} */
2049 exp_len = true;
2050 ++var;
2051 } else {
2052 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002053 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002054 if (!var[exp_off])
2055 exp_off = 0;
2056 if (exp_off) {
2057 exp_save = var[exp_off];
2058 exp_null = exp_save == ':';
2059 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002060 if (exp_null)
2061 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002062 exp_op = *exp_word++;
2063 var[exp_off] = '\0';
2064 }
2065 }
2066
2067 /* lookup the variable in question */
2068 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002069 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002070 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002071 if (i < G.global_argc)
2072 val = G.global_argv[i];
2073 /* else val remains NULL: $N with too big N */
2074 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002075 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002076
2077 /* handle any expansions */
2078 if (exp_len) {
2079 debug_printf_expand("expand: length of '%s' = ", val);
2080 val = utoa(val ? strlen(val) : 0);
2081 debug_printf_expand("%s\n", val);
2082 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002083 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002084 if (val) {
2085 /* we need to do a pattern match */
2086 bool zero;
2087 char *loc;
2088 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2089 if (exp_op == *exp_word) /* ## or %% */
2090 ++exp_word;
2091 val = dyn_val = xstrdup(val);
2092 loc = scan(dyn_val, exp_word, zero);
2093 if (zero)
2094 val = loc;
2095 else
2096 *loc = '\0';
2097 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002098 } else {
2099 /* we need to do an expansion */
2100 int exp_test = (!val || (exp_null && !val[0]));
2101 if (exp_op == '+')
2102 exp_test = !exp_test;
2103 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2104 exp_null ? "true" : "false", exp_test);
2105 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002106 if (exp_op == '?') {
2107//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002108 /* ${var?[error_msg_if_unset]} */
2109 /* ${var:?[error_msg_if_unset_or_null]} */
2110 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002111 die_if_script("%s: %s",
2112 var,
2113 exp_word[0] ? exp_word : "parameter null or not set"
2114 );
2115 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002116 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002117 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002118
Mike Frysingera4f331d2009-04-07 06:03:22 +00002119 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002120 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002121 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002122 /* mimic bash message */
2123 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002124 val = NULL;
2125 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002126 char *new_var = xasprintf("%s=%s", var, val);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002127 set_local_var(new_var, -1, 0);
2128 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002129 }
2130 }
2131 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002132
Mike Frysinger6379bb42009-03-28 18:55:03 +00002133 var[exp_off] = exp_save;
2134 }
2135
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002136 arg[0] = first_ch;
2137#if ENABLE_HUSH_TICK
2138 store_val:
2139#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002140 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002141 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002142 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002143 /* unquoted var's contents should be globbed, so don't escape */
2144 smallint sv = output->o_escape;
2145 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 n = expand_on_ifs(output, n, val);
2147 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002148 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002149 }
2150 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002151 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002152 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002153 } /* default: */
2154 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002155 if (val) {
2156 o_addQstr(output, val, strlen(val));
2157 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002158 free(dyn_val);
2159 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002160 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002161 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002162 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002163
2164#if ENABLE_HUSH_TICK
2165 o_free(&subst_result);
2166#endif
2167 arg = ++p;
2168 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2169
2170 if (arg[0]) {
2171 debug_print_list("expand_vars_to_list[a]", output, n);
2172 /* this part is literal, and it was already pre-quoted
2173 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002174 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002175 debug_print_list("expand_vars_to_list[b]", output, n);
2176 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2177 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2178 ) {
2179 n--;
2180 /* allow to reuse list[n] later without re-growth */
2181 output->has_empty_slot = 1;
2182 } else {
2183 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002184 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002185 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002186}
2187
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002188static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002189{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002190 int n;
2191 char **list;
2192 char **v;
2193 o_string output = NULL_O_STRING;
2194
2195 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002196 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002197 /* (unquoted $var will temporarily switch it off) */
2198 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002199 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002200
2201 n = 0;
2202 v = argv;
2203 while (*v) {
2204 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2205 v++;
2206 }
2207 debug_print_list("expand_variables", &output, n);
2208
2209 /* output.data (malloced in one block) gets returned in "list" */
2210 list = o_finalize_list(&output, n);
2211 debug_print_strings("expand_variables[1]", list);
2212 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002213}
2214
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002215static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002216{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002217 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002218}
2219
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002220/* Used for expansion of right hand of assignments */
2221/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2222 * "v=/bin/c*" */
2223static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002224{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002225 char *argv[2], **list;
2226
2227 argv[0] = (char*)str;
2228 argv[1] = NULL;
2229 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2230 if (HUSH_DEBUG)
2231 if (!list[0] || list[1])
2232 bb_error_msg_and_die("BUG in varexp2");
2233 /* actually, just move string 2*sizeof(char*) bytes back */
2234 overlapping_strcpy((char*)list, list[0]);
2235 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2236 return (char*)list;
2237}
2238
2239/* Used for "eval" builtin */
2240static char* expand_strvec_to_string(char **argv)
2241{
2242 char **list;
2243
2244 list = expand_variables(argv, 0x80);
2245 /* Convert all NULs to spaces */
2246 if (list[0]) {
2247 int n = 1;
2248 while (list[n]) {
2249 if (HUSH_DEBUG)
2250 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2251 bb_error_msg_and_die("BUG in varexp3");
2252 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2253 n++;
2254 }
2255 }
2256 overlapping_strcpy((char*)list, list[0]);
2257 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2258 return (char*)list;
2259}
2260
2261static char **expand_assignments(char **argv, int count)
2262{
2263 int i;
2264 char **p = NULL;
2265 /* Expand assignments into one string each */
2266 for (i = 0; i < count; i++) {
2267 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2268 }
2269 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002270}
2271
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002272
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002273#if BB_MMU
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002274/* never called */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002275void re_execute_shell(char ***to_free, const char *s, char *argv0, char **argv);
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002276
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002277static void reset_traps_to_defaults(void)
2278{
2279 unsigned sig;
2280 int dirty;
2281
2282 if (!G.traps)
2283 return;
2284 dirty = 0;
2285 for (sig = 0; sig < NSIG; sig++) {
2286 if (!G.traps[sig])
2287 continue;
2288 free(G.traps[sig]);
2289 G.traps[sig] = NULL;
2290 /* There is no signal for 0 (EXIT) */
2291 if (sig == 0)
2292 continue;
2293 /* there was a trap handler, we are removing it
2294 * (if sig has non-DFL handling,
2295 * we don't need to do anything) */
2296 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2297 continue;
2298 sigdelset(&G.blocked_set, sig);
2299 dirty = 1;
2300 }
2301 if (dirty)
2302 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2303}
2304
2305#else /* !BB_MMU */
2306
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002307static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv) NORETURN;
2308static void re_execute_shell(char ***to_free, const char *s, char *g_argv0, char **g_argv)
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002309{
2310 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002311 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002312 struct variable *cur;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002313#if ENABLE_HUSH_FUNCTIONS
2314 struct function *funcp;
2315#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002316 char **argv, **pp;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002317 unsigned cnt;
2318
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002319 if (!g_argv0) { /* heredoc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002320 argv = heredoc_argv;
2321 argv[0] = (char *) G.argv0_for_re_execing;
2322 argv[1] = (char *) "-<";
2323 argv[2] = (char *) s;
2324 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002325 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002326 goto do_exec;
2327 }
2328
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002329 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2330 , (unsigned) G.root_pid
2331 , (unsigned) G.last_bg_pid
2332 , (unsigned) G.last_exitcode
2333 USE_HUSH_LOOPS(, G.depth_of_loop)
2334 );
Denis Vlasenkobc569742009-04-12 20:35:19 +00002335 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...> <funcs...>
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002336 * 3:-c 4:<cmd> 5:<arg0> <argN...> 6:NULL
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002337 */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002338 cnt = 6;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002339 for (cur = G.top_var; cur; cur = cur->next) {
2340 if (!cur->flg_export || cur->flg_read_only)
2341 cnt += 2;
2342 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002343#if ENABLE_HUSH_FUNCTIONS
2344 for (funcp = G.top_func; funcp; funcp = funcp->next)
2345 cnt += 3;
2346#endif
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002347 pp = g_argv;
2348 while (*pp++)
2349 cnt++;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002350 *to_free = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002351 *pp++ = (char *) G.argv0_for_re_execing;
2352 *pp++ = param_buf;
2353 for (cur = G.top_var; cur; cur = cur->next) {
2354 if (cur->varstr == hush_version_str)
2355 continue;
2356 if (cur->flg_read_only) {
2357 *pp++ = (char *) "-R";
2358 *pp++ = cur->varstr;
2359 } else if (!cur->flg_export) {
2360 *pp++ = (char *) "-V";
2361 *pp++ = cur->varstr;
2362 }
2363 }
Denis Vlasenkobc569742009-04-12 20:35:19 +00002364#if ENABLE_HUSH_FUNCTIONS
2365 for (funcp = G.top_func; funcp; funcp = funcp->next) {
2366 *pp++ = (char *) "-F";
2367 *pp++ = funcp->name;
2368 *pp++ = funcp->body_as_string;
2369 }
2370#endif
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002371 /* We can pass activated traps here. Say, -Tnn:trap_string
2372 *
2373 * However, POSIX says that subshells reset signals with traps
2374 * to SIG_DFL.
2375 * I tested bash-3.2 and it not only does that with true subshells
2376 * of the form ( list ), but with any forked children shells.
2377 * I set trap "echo W" WINCH; and then tried:
2378 *
2379 * { echo 1; sleep 20; echo 2; } &
2380 * while true; do echo 1; sleep 20; echo 2; break; done &
2381 * true | { echo 1; sleep 20; echo 2; } | cat
2382 *
2383 * In all these cases sending SIGWINCH to the child shell
2384 * did not run the trap. If I add trap "echo V" WINCH;
2385 * _inside_ group (just before echo 1), it works.
2386 *
2387 * I conclude it means we don't need to pass active traps here.
2388 * exec syscall below resets them to SIG_DFL for us.
2389 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002390 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002391 *pp++ = (char *) s;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002392 *pp++ = g_argv0;
2393 while (*g_argv)
2394 *pp++ = *g_argv++;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002395 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002396 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002397
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002398 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002399 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2400 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002401 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002402 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002403 if (argv[0][0] == '/')
2404 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002405 xfunc_error_retval = 127;
2406 bb_error_msg_and_die("can't re-execute the shell");
2407}
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002408#endif /* !BB_MMU */
2409
2410
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002411static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002412{
2413 struct fd_pair pair;
2414 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002415 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002416 /* the _body_ of heredoc (misleading field name) */
2417 const char *heredoc = redir->rd_filename;
2418 char *expanded;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002419#if !BB_MMU
2420 char **to_free;
2421#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002422
2423 expanded = NULL;
2424 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2425 expanded = expand_pseudo_dquoted(heredoc);
2426 if (expanded)
2427 heredoc = expanded;
2428 }
2429 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002430
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002431 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002432 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002433 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002434
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002435 /* Try writing without forking. Newer kernels have
2436 * dynamically growing pipes. Must use non-blocking write! */
2437 ndelay_on(pair.wr);
2438 while (1) {
2439 written = write(pair.wr, heredoc, len);
2440 if (written <= 0)
2441 break;
2442 len -= written;
2443 if (len == 0) {
2444 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002445 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002446 return;
2447 }
2448 heredoc += written;
2449 }
2450 ndelay_off(pair.wr);
2451
2452 /* Okay, pipe buffer was not big enough */
2453 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002454 * for the unsuspecting parent process. Child creates a grandchild
2455 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002456 * (that exec happens after we return from this function) */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002457#if !BB_MMU
2458 to_free = NULL;
2459#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002460 pid = vfork();
2461 if (pid < 0)
2462 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002463 if (pid == 0) {
2464 /* child */
Denis Vlasenko41ddecd2009-04-15 21:58:14 +00002465 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002466 pid = BB_MMU ? fork() : vfork();
2467 if (pid < 0)
2468 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2469 if (pid != 0)
2470 _exit(0);
2471 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002472 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002473#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002474 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002475 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002476#else
2477 /* Delegate blocking writes to another process */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002478 xmove_fd(pair.wr, STDOUT_FILENO);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002479 re_execute_shell(&to_free, heredoc, NULL, NULL);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002480#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002481 }
2482 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002483 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002484#if !BB_MMU
2485 free(to_free);
2486#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002487 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002488 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002489 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002490}
2491
Eric Andersen25f27032001-04-26 23:22:31 +00002492/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2493 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002494static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002495{
2496 int openfd, mode;
2497 struct redir_struct *redir;
2498
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002499 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002500 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002501 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002502 if (squirrel && redir->rd_fd < 3) {
2503 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002504 }
2505 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2506 * of the heredoc */
2507 debug_printf_parse("set heredoc '%s'\n",
2508 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002509 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002510 continue;
2511 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002512
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002513 if (redir->rd_dup == REDIRFD_TO_FILE) {
2514 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002515 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002516 if (redir->rd_filename == NULL) {
2517 /* Something went wrong in the parse.
2518 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002519 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002520 continue;
2521 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002522 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002523 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002524 openfd = open_or_warn(p, mode);
2525 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002526 if (openfd < 0) {
2527 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002528 * bash and ash both lose it as well (though zsh doesn't!) */
2529//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002530 return 1;
2531 }
2532 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002533 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002534 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002535 }
2536
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002537 if (openfd != redir->rd_fd) {
2538 if (squirrel && redir->rd_fd < 3) {
2539 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002540 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002541 if (openfd == REDIRFD_CLOSE) {
2542 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002543 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002544 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002545 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002546 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002547 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002548 }
Eric Andersen25f27032001-04-26 23:22:31 +00002549 }
2550 }
2551 return 0;
2552}
2553
2554static void restore_redirects(int squirrel[])
2555{
2556 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002557 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002558 fd = squirrel[i];
2559 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002560 /* We simply die on error */
2561 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002562 }
2563 }
2564}
2565
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002566
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002567static void free_pipe_list(struct pipe *head);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002568
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002569/* Return code is the exit status of the pipe */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002570static void free_pipe(struct pipe *pi)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002571{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002572 char **p;
2573 struct command *command;
2574 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002575 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002576
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002577 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002578 return;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002579 debug_printf_clean("run pipe: (pid %d)\n", getpid());
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002580 for (i = 0; i < pi->num_cmds; i++) {
2581 command = &pi->cmds[i];
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002582 debug_printf_clean(" command %d:\n", i);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002583 if (command->argv) {
2584 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002585 debug_printf_clean(" argv[%d] = %s\n", a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002586 }
2587 free_strings(command->argv);
2588 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002589 }
2590 /* not "else if": on syntax error, we may have both! */
2591 if (command->group) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002592 debug_printf_clean(" begin group (grp_type:%d)\n",
2593 command->grp_type);
2594 free_pipe_list(command->group);
2595 debug_printf_clean(" end group\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002596 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002597 }
Denis Vlasenkoed055212009-04-11 10:37:10 +00002598 /* else is crucial here.
2599 * If group != NULL, child_func is meaningless */
2600#if ENABLE_HUSH_FUNCTIONS
2601 else if (command->child_func) {
2602 debug_printf_exec("cmd %p releases child func at %p\n", command, command->child_func);
2603 command->child_func->parent_cmd = NULL;
2604 }
2605#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002606#if !BB_MMU
2607 free(command->group_as_string);
2608 command->group_as_string = NULL;
2609#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002610 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002611 debug_printf_clean(" redirect %d%s",
2612 r->rd_fd, redir_table[r->rd_type].descrip);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002613 /* guard against the case >$FOO, where foo is unset or blank */
2614 if (r->rd_filename) {
2615 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2616 free(r->rd_filename);
2617 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002618 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002619 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002620 rnext = r->next;
2621 free(r);
2622 }
2623 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002624 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002625 free(pi->cmds); /* children are an array, they get freed all at once */
2626 pi->cmds = NULL;
2627#if ENABLE_HUSH_JOB
2628 free(pi->cmdtext);
2629 pi->cmdtext = NULL;
2630#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002631}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002632
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002633static void free_pipe_list(struct pipe *head)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002634{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002635 struct pipe *pi, *next;
2636
2637 for (pi = head; pi; pi = next) {
2638#if HAS_KEYWORDS
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002639 debug_printf_clean(" pipe reserved word %d\n", pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002640#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00002641 free_pipe(pi);
2642 debug_printf_clean("pipe followup code %d\n", pi->followup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002643 next = pi->next;
2644 /*pi->next = NULL;*/
2645 free(pi);
2646 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002647}
2648
2649
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002650static int run_list(struct pipe *pi);
Denis Vlasenkobc569742009-04-12 20:35:19 +00002651#if BB_MMU
2652#define parse_stream(pstring, input, end_trigger) \
2653 parse_stream(input, end_trigger)
2654#endif
2655static struct pipe *parse_stream(char **pstring,
2656 struct in_str *input,
2657 int end_trigger);
2658static void parse_and_run_string(const char *s);
2659
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002660
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002661static const struct built_in_command* find_builtin(const char *name)
2662{
2663 const struct built_in_command *x;
2664 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2665 if (strcmp(name, x->cmd) != 0)
2666 continue;
2667 debug_printf_exec("found builtin '%s'\n", name);
2668 return x;
2669 }
2670 return NULL;
2671}
2672
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002673#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002674static const struct function *find_function(const char *name)
2675{
2676 const struct function *funcp = G.top_func;
2677 while (funcp) {
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002678 if (strcmp(name, funcp->name) == 0) {
2679 break;
2680 }
2681 funcp = funcp->next;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002682 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002683 debug_printf_exec("found function '%s'\n", name);
2684 return funcp;
2685}
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002686
Denis Vlasenkobc569742009-04-12 20:35:19 +00002687/* Note: takes ownership on name ptr */
2688static struct function *new_function(char *name)
2689{
2690 struct function *funcp;
2691 struct function **funcpp = &G.top_func;
2692
2693 while ((funcp = *funcpp) != NULL) {
2694 struct command *cmd;
2695
2696 if (strcmp(funcp->name, name) != 0) {
2697 funcpp = &funcp->next;
2698 continue;
2699 }
2700
2701 cmd = funcp->parent_cmd;
2702 debug_printf_exec("func %p parent_cmd %p\n", funcp, cmd);
2703 if (!cmd) {
2704 debug_printf_exec("freeing & replacing function '%s'\n", funcp->name);
2705 free(funcp->name);
2706 /* Note: if !funcp->body, do not free body_as_string!
2707 * This is a special case of "-F name body" function:
2708 * body_as_string was not malloced! */
2709 if (funcp->body) {
2710 free_pipe_list(funcp->body);
2711#if !BB_MMU
2712 free(funcp->body_as_string);
2713#endif
2714 }
2715 } else {
2716 debug_printf_exec("reinserting in tree & replacing function '%s'\n", funcp->name);
2717 cmd->argv[0] = funcp->name;
2718 cmd->group = funcp->body;
2719#if !BB_MMU
2720 cmd->group_as_string = funcp->body_as_string;
2721#endif
2722 }
2723 goto skip;
2724 }
2725 debug_printf_exec("remembering new function '%s'\n", command->argv[0]);
2726 funcp = *funcpp = xzalloc(sizeof(*funcp));
2727 /*funcp->next = NULL;*/
2728 skip:
2729 funcp->name = name;
2730 return funcp;
2731}
2732
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002733#if BB_MMU
2734#define exec_function(nommu_save, funcp, argv) \
2735 exec_function(funcp, argv)
2736#endif
2737static void exec_function(nommu_save_t *nommu_save,
2738 const struct function *funcp,
2739 char **argv) NORETURN;
2740static void exec_function(nommu_save_t *nommu_save,
2741 const struct function *funcp,
2742 char **argv)
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002743{
2744# if BB_MMU
2745 int n = 1;
2746
2747 argv[0] = G.global_argv[0];
2748 G.global_argv = argv;
2749 while (*++argv)
2750 n++;
2751 G.global_argc = n;
Denis Vlasenkobc569742009-04-12 20:35:19 +00002752 /* On MMU, funcp->body is always non-NULL */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002753 n = run_list(funcp->body);
2754 fflush(NULL);
2755 _exit(n);
2756# else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002757 re_execute_shell(&nommu_save->argv_from_re_execing,
2758 funcp->body_as_string,
2759 G.global_argv[0],
2760 argv + 1);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002761# endif
2762}
2763
2764static int run_function(const struct function *funcp, char **argv)
2765{
2766 int n;
2767 char **pp;
2768 char *sv_argv0;
2769 smallint sv_g_malloced;
2770 int sv_g_argc;
2771 char **sv_g_argv;
2772
2773 sv_argv0 = argv[0];
2774 sv_g_malloced = G.global_args_malloced;
2775 sv_g_argc = G.global_argc;
2776 sv_g_argv = G.global_argv;
2777
2778 pp = argv;
2779 n = 1;
2780 while (*++pp)
2781 n++;
2782
2783 argv[0] = G.global_argv[0]; /* retain $0 */
2784 G.global_args_malloced = 0;
2785 G.global_argc = n;
2786 G.global_argv = argv;
2787
Denis Vlasenkobc569742009-04-12 20:35:19 +00002788 /* On MMU, funcp->body is always non-NULL */
2789#if !BB_MMU
2790 if (!funcp->body) {
2791 /* Function defined by -F */
2792 parse_and_run_string(funcp->body_as_string);
2793 n = G.last_exitcode;
2794 } else
2795#endif
2796 {
2797 n = run_list(funcp->body);
2798 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00002799
2800 if (G.global_args_malloced) {
2801 /* function ran "set -- arg1 arg2 ..." */
2802 pp = G.global_argv;
2803 while (*++pp)
2804 free(*pp);
2805 free(G.global_argv);
2806 }
2807
2808 argv[0] = sv_argv0;
2809 G.global_args_malloced = sv_g_malloced;
2810 G.global_argc = sv_g_argc;
2811 G.global_argv = sv_g_argv;
2812
2813 return n;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002814}
2815#endif
2816
2817
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002818#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002819#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2820 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2821#define pseudo_exec(nommu_save, command, argv_expanded) \
2822 pseudo_exec(command, argv_expanded)
2823#endif
2824
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002825/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002826 * Never returns.
2827 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002828 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002829 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002830static void pseudo_exec_argv(nommu_save_t *nommu_save,
2831 char **argv, int assignment_cnt,
2832 char **argv_expanded) NORETURN;
2833static void pseudo_exec_argv(nommu_save_t *nommu_save,
2834 char **argv, int assignment_cnt,
2835 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002836{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002837 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002838
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002839 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002840 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002841 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002842
Denis Vlasenko9504e442008-10-29 01:19:15 +00002843 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002844#if BB_MMU
2845 putenv_all(new_env);
2846 free(new_env); /* optional */
2847#else
2848 nommu_save->new_env = new_env;
2849 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002850#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002851 if (argv_expanded) {
2852 argv = argv_expanded;
2853 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002854 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002855#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002856 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002857#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002858 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002859
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002860#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
2861 if (strchr(argv[0], '/') != NULL)
2862 goto skip;
2863#endif
2864
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002865 /* On NOMMU, we must never block!
2866 * Example: { sleep 99999 | read line } & echo Ok
2867 * read builtin will block on read syscall, leaving parent blocked
2868 * in vfork. Therefore we can't do this:
2869 */
2870#if BB_MMU
2871 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002872 * Depending on context, this might be redundant. But it's
2873 * easier to waste a few CPU cycles than it is to figure out
2874 * if this is one of those cases.
2875 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002876 {
2877 int rcode;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002878 const struct built_in_command *x = find_builtin(argv[0]);
2879 if (x) {
2880 rcode = x->function(argv);
2881 fflush(NULL);
2882 _exit(rcode);
Eric Andersen94ac2442001-05-22 19:05:18 +00002883 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002884 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002885#endif
2886#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002887 /* Check if the command matches any functions */
2888 {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002889 const struct function *funcp = find_function(argv[0]);
2890 if (funcp) {
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002891 exec_function(nommu_save, funcp, argv);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002892 }
2893 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002894#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002895
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002896#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002897 /* Check if the command matches any busybox applets */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002898 {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002899 int a = find_applet_by_name(argv[0]);
2900 if (a >= 0) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002901# if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002902 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002903 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002904 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002905 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002906# endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002907 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002908 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002909 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2910 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002911 /* If they called chroot or otherwise made the binary no longer
2912 * executable, fall through */
2913 }
2914 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002915#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002916
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002917#if ENABLE_FEATURE_SH_STANDALONE || BB_MMU
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00002918 skip:
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002919#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002920 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002921 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002922 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002923 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002924 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002925}
2926
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002927/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002928 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002929static void pseudo_exec(nommu_save_t *nommu_save,
2930 struct command *command,
2931 char **argv_expanded) NORETURN;
2932static void pseudo_exec(nommu_save_t *nommu_save,
2933 struct command *command,
2934 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002935{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002936 if (command->argv) {
2937 pseudo_exec_argv(nommu_save, command->argv,
2938 command->assignment_cnt, argv_expanded);
2939 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002940
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002941 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002942 /* Cases when we are here:
2943 * ( list )
2944 * { list } &
2945 * ... | ( list ) | ...
2946 * ... | { list } | ...
2947 */
2948#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002949 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002950 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002951 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002952 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002953 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002954 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002955 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002956#else
Denis Vlasenko27014ed2009-04-15 21:48:23 +00002957 re_execute_shell(&nommu_save->argv_from_re_execing,
2958 command->group_as_string,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00002959 G.global_argv[0],
2960 G.global_argv + 1);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002961#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002962 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002963
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002964 /* Case when we are here: ... | >file */
2965 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002966 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002967}
2968
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002969#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002970static const char *get_cmdtext(struct pipe *pi)
2971{
2972 char **argv;
2973 char *p;
2974 int len;
2975
2976 /* This is subtle. ->cmdtext is created only on first backgrounding.
2977 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002978 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002979 if (pi->cmdtext)
2980 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002981 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002982 if (!argv || !argv[0]) {
2983 pi->cmdtext = xzalloc(1);
2984 return pi->cmdtext;
2985 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002986
2987 len = 0;
2988 do len += strlen(*argv) + 1; while (*++argv);
2989 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002990 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002991 do {
2992 len = strlen(*argv);
2993 memcpy(p, *argv, len);
2994 p += len;
2995 *p++ = ' ';
2996 } while (*++argv);
2997 p[-1] = '\0';
2998 return pi->cmdtext;
2999}
3000
Eric Andersenbafd94f2001-05-02 16:11:59 +00003001static void insert_bg_job(struct pipe *pi)
3002{
3003 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003004 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003005
3006 /* Linear search for the ID of the job to use */
3007 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003008 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003009 if (thejob->jobid >= pi->jobid)
3010 pi->jobid = thejob->jobid + 1;
3011
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003012 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003013 if (!G.job_list) {
3014 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003015 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003016 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003017 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003018 thejob->next = xmalloc(sizeof(*thejob));
3019 thejob = thejob->next;
3020 }
3021
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003022 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00003023 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003024 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
3025 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
3026 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003027// TODO: do we really need to have so many fields which are just dead weight
3028// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003029 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003030 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003031 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003032 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003033 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00003034
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003035 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00003036 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003037 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003038 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003039 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003040 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003041}
3042
Eric Andersenbafd94f2001-05-02 16:11:59 +00003043static void remove_bg_job(struct pipe *pi)
3044{
3045 struct pipe *prev_pipe;
3046
Denis Vlasenko87a86552008-07-29 19:43:10 +00003047 if (pi == G.job_list) {
3048 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003049 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003050 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003051 while (prev_pipe->next != pi)
3052 prev_pipe = prev_pipe->next;
3053 prev_pipe->next = pi->next;
3054 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00003055 if (G.job_list)
3056 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00003057 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00003058 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00003059}
Eric Andersen028b65b2001-06-28 01:10:11 +00003060
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003061/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00003062static void delete_finished_bg_job(struct pipe *pi)
3063{
3064 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003065 pi->stopped_cmds = 0;
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003066 free_pipe(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003067 free(pi);
3068}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003069#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003070
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003071/* Check to see if any processes have exited -- if they
3072 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00003073static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00003074{
Eric Andersenc798b072001-06-22 06:23:03 +00003075 int attributes;
3076 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003077#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00003078 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003079#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00003080 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003081 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003082
Denis Vlasenkod5762932009-03-31 11:22:57 +00003083 debug_printf_jobs("checkjobs %p\n", fg_pipe);
3084
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003085 errno = 0;
3086// if (G.handled_SIGCHLD == G.count_SIGCHLD)
3087// /* avoid doing syscall, nothing there anyway */
3088// return rcode;
3089
Eric Andersenc798b072001-06-22 06:23:03 +00003090 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003091 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00003092 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00003093
Denis Vlasenko1359da62007-04-21 23:27:30 +00003094/* Do we do this right?
3095 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003096 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00003097 * [3]+ Stopped sleep 20 | false
3098 * bash-3.00# echo $?
3099 * 1 <========== bg pipe is not fully done, but exitcode is already known!
3100 */
3101
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003102//FIXME: non-interactive bash does not continue even if all processes in fg pipe
3103//are stopped. Testcase: "cat | cat" in a script (not on command line)
3104// + killall -STOP cat
3105
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003106 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003107 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003108 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003109 int dead;
3110
3111// i = G.count_SIGCHLD;
3112 childpid = waitpid(-1, &status, attributes);
3113 if (childpid <= 0) {
3114 if (childpid && errno != ECHILD)
3115 bb_perror_msg("waitpid");
3116// else /* Until next SIGCHLD, waitpid's are useless */
3117// G.handled_SIGCHLD = i;
3118 break;
3119 }
3120 dead = WIFEXITED(status) || WIFSIGNALED(status);
3121
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00003122#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00003123 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003124 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003125 childpid, WSTOPSIG(status), WEXITSTATUS(status));
3126 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003127 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003128 childpid, WTERMSIG(status), WEXITSTATUS(status));
3129 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00003130 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00003131 childpid, WEXITSTATUS(status));
3132#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003133 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00003134 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003135 for (i = 0; i < fg_pipe->num_cmds; i++) {
3136 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
3137 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003138 continue;
3139 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
3140 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003141 fg_pipe->cmds[i].pid = 0;
3142 fg_pipe->alive_cmds--;
3143 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003144 /* last process gives overall exitstatus */
3145 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003146 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00003147 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003148 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003149 fg_pipe->cmds[i].is_stopped = 1;
3150 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00003151 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003152 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
3153 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
3154 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003155 /* All processes in fg pipe have exited/stopped */
3156#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003157 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003158 insert_bg_job(fg_pipe);
3159#endif
3160 return rcode;
3161 }
3162 /* There are still running processes in the fg pipe */
3163 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00003164 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003165 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00003166 }
3167
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003168#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003169 /* We asked to wait for bg or orphaned children */
3170 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003171 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003172 for (i = 0; i < pi->num_cmds; i++) {
3173 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003174 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00003175 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00003176 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003177 /* Happens when shell is used as init process (init=/bin/sh) */
3178 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003179 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00003180
Denis Vlasenko5f786c22007-04-20 08:35:45 +00003181 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00003182 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00003183 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003184 pi->cmds[i].pid = 0;
3185 pi->alive_cmds--;
3186 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003187 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00003188 printf(JOB_STATUS_FORMAT, pi->jobid,
3189 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00003190 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00003191 }
3192 } else {
3193 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003194 pi->cmds[i].is_stopped = 1;
3195 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00003196 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003197#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00003198 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00003199
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003200 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00003201}
3202
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003203#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00003204static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
3205{
3206 pid_t p;
3207 int rcode = checkjobs(fg_pipe);
3208 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00003209 p = getpgid(0); /* pgid of our process */
3210 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003211 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00003212 return rcode;
3213}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003214#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00003215
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003216/* Start all the jobs, but don't wait for anything to finish.
3217 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00003218 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00003219 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00003220 * to finish to determine the exit status of the pipe. If the pipe
3221 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00003222 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00003223 * return value.
3224 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00003225 * Returns -1 only if started some children. IOW: we have to
3226 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00003227 *
3228 * The only case when we do not need to [v]fork is when the pipe
3229 * is single, non-backgrounded, non-subshell command. Examples:
3230 * cmd ; ... { list } ; ...
3231 * cmd && ... { list } && ...
3232 * cmd || ... { list } || ...
3233 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
3234 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00003235 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00003236 *
3237 * Cases when we must fork:
3238 * non-single: cmd | cmd
3239 * backgrounded: cmd & { list } &
3240 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00003241 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003242static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003243{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003244 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003245 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003246 int nextin;
3247 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003248 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003249 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003250 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003251 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003252 /* it is not always needed, but we aim to smaller code */
3253 int squirrel[] = { -1, -1, -1 };
3254 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003255
Denis Vlasenko552433b2009-04-04 19:29:21 +00003256 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003257 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003258
Denis Vlasenko552433b2009-04-04 19:29:21 +00003259 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003260 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003261 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003262 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003263
Denis Vlasenko552433b2009-04-04 19:29:21 +00003264 if (pi->num_cmds != 1
3265 || pi->followup == PIPE_BG
3266 || command->grp_type == GRP_SUBSHELL
3267 ) {
3268 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003269 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003270
Denis Vlasenko552433b2009-04-04 19:29:21 +00003271 pi->alive_cmds = 1;
3272
3273 debug_printf_exec(": group:%p argv:'%s'\n",
3274 command->group, command->argv ? command->argv[0] : "NONE");
3275
3276 if (command->group) {
3277#if ENABLE_HUSH_FUNCTIONS
3278 if (command->grp_type == GRP_FUNCTION) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003279 /* "executing" func () { list } */
3280 struct function *funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003281
Denis Vlasenkobc569742009-04-12 20:35:19 +00003282 funcp = new_function(command->argv[0]);
3283 /* funcp->name is already set to argv[0] */
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003284 funcp->body = command->group;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003285#if !BB_MMU
3286 funcp->body_as_string = command->group_as_string;
3287 command->group_as_string = NULL;
3288#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003289 command->group = NULL;
3290 command->argv[0] = NULL;
Denis Vlasenkoed055212009-04-11 10:37:10 +00003291 debug_printf_exec("cmd %p has child func at %p\n", command, funcp);
3292 funcp->parent_cmd = command;
3293 command->child_func = funcp;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003294
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003295 debug_printf_exec("run_pipe: return EXIT_SUCCESS\n");
3296 debug_leave();
Denis Vlasenko552433b2009-04-04 19:29:21 +00003297 return EXIT_SUCCESS;
3298 }
3299#endif
3300 /* { list } */
3301 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003302 rcode = 1; /* exitcode if redir failed */
3303 if (setup_redirects(command, squirrel) == 0) {
3304 debug_printf_exec(": run_list\n");
3305 rcode = run_list(command->group) & 0xff;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003306 }
Eric Andersen04407e52001-06-07 16:42:05 +00003307 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003308 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003309 debug_leave();
3310 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003311 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003312 }
3313
Denis Vlasenko552433b2009-04-04 19:29:21 +00003314 argv = command->argv ? command->argv : (char **) &null_ptr;
3315 {
3316 const struct built_in_command *x;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003317#if ENABLE_HUSH_FUNCTIONS
3318 const struct function *funcp;
3319#else
3320 enum { funcp = 0 };
3321#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003322 char **new_env = NULL;
3323 char **old_env = NULL;
3324
Denis Vlasenko552433b2009-04-04 19:29:21 +00003325 if (argv[command->assignment_cnt] == NULL) {
3326 /* Assignments, but no command */
3327 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003328 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003329 restore_redirects(squirrel);
3330 /* Set shell variables */
3331 while (*argv) {
3332 p = expand_string_to_string(*argv);
3333 debug_printf_exec("set shell var:'%s'->'%s'\n",
3334 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003335 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003336 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003337 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003338 /* Do we need to flag set_local_var() errors?
3339 * "assignment to readonly var" and "putenv error"
3340 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003341 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003342 debug_leave();
3343 debug_printf_exec("run_pipe: return %d\n", rcode);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003344 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003345 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003346
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003347 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003348 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003349
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003350 x = find_builtin(argv_expanded[0]);
3351#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003352 funcp = NULL;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003353 if (!x)
3354 funcp = find_function(argv_expanded[0]);
3355#endif
3356 if (x || funcp) {
3357 if (!funcp) {
3358 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3359 debug_printf("exec with redirects only\n");
3360 rcode = setup_redirects(command, NULL);
3361 goto clean_up_and_ret1;
3362 }
Eric Andersen25f27032001-04-26 23:22:31 +00003363 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003364 /* XXX setup_redirects acts on file descriptors, not FILEs.
3365 * This is perfect for work that comes after exec().
3366 * Is it really safe for inline use? Experimentally,
3367 * things seem to work with glibc. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003368 rcode = setup_redirects(command, squirrel);
3369 if (rcode == 0) {
3370 new_env = expand_assignments(argv, command->assignment_cnt);
3371 old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003372 if (!funcp) {
3373 debug_printf_exec(": builtin '%s' '%s'...\n",
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003374 x->cmd, argv_expanded[1]);
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003375 rcode = x->function(argv_expanded) & 0xff;
3376 }
3377#if ENABLE_HUSH_FUNCTIONS
3378 else {
3379 debug_printf_exec(": function '%s' '%s'...\n",
3380 funcp->name, argv_expanded[1]);
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00003381 rcode = run_function(funcp, argv_expanded) & 0xff;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003382 }
3383#endif
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003384 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003385#if ENABLE_FEATURE_SH_STANDALONE
3386 clean_up_and_ret:
3387#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003388 restore_redirects(squirrel);
3389 free_strings_and_unsetenv(new_env, 1);
3390 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003391 /* Free the pointers, but the strings themselves
3392 * are in environ now, don't use free_strings! */
3393 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003394 clean_up_and_ret1:
3395 free(argv_expanded);
3396 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003397 debug_leave();
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003398 debug_printf_exec("run_pipe return %d\n", rcode);
3399 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003400 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00003401
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003402#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003403 i = find_applet_by_name(argv_expanded[0]);
3404 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003405 rcode = setup_redirects(command, squirrel);
3406 if (rcode == 0) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003407 new_env = expand_assignments(argv, command->assignment_cnt);
3408 old_env = putenv_all_and_save_old(new_env);
3409 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003410 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003411 rcode = run_nofork_applet(i, argv_expanded);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003412 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003413 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003414 }
3415#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003416 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003417 }
3418
Denis Vlasenko552433b2009-04-04 19:29:21 +00003419 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003420 /* NB: argv_expanded may already be created, and that
3421 * might include `cmd` runs! Do not rerun it! We *must*
3422 * use argv_expanded if it's non-NULL */
3423
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003424 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003425 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003426 nextin = 0;
3427
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003428 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003429#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003430 volatile nommu_save_t nommu_save;
3431 nommu_save.new_env = NULL;
3432 nommu_save.old_env = NULL;
3433 nommu_save.argv = NULL;
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003434 nommu_save.argv_from_re_execing = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003435#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003436 command = &(pi->cmds[i]);
3437 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003438 debug_printf_exec(": pipe member '%s' '%s'...\n",
3439 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003440 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003441 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003442 }
Eric Andersen25f27032001-04-26 23:22:31 +00003443
3444 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003445 pipefds[0] = 0;
3446 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003447 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003448 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003449
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003450 command->pid = BB_MMU ? fork() : vfork();
3451 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003452#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003453 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003454
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003455 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003456 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003457 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003458 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003459 pgrp = pi->pgrp;
3460 if (pgrp < 0) /* true for 1st process only */
3461 pgrp = getpid();
3462 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003463 /* We do it in *every* child, not just first,
3464 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003465 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003466 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003467 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003468#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003469 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003470 xmove_fd(pipefds[1], 1); /* write end */
3471 if (pipefds[0] > 1)
3472 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003473 /* Like bash, explicit redirects override pipes,
3474 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003475 if (setup_redirects(command, NULL))
3476 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003477
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003478 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003479 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3480
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003481 /* Stores to nommu_save list of env vars putenv'ed
3482 * (NOMMU, on MMU we don't need that) */
3483 /* cast away volatility... */
3484 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003485 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003486 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003487
Denis Vlasenkof9375282009-04-05 19:13:39 +00003488 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003489 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003490#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003491 /* Clean up after vforked child */
3492 free(nommu_save.argv);
Denis Vlasenko27014ed2009-04-15 21:48:23 +00003493 free(nommu_save.argv_from_re_execing);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003494 free_strings_and_unsetenv(nommu_save.new_env, 1);
3495 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003496 /* Free the pointers, but the strings themselves
3497 * are in environ now, don't use free_strings! */
3498 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003499#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003500 free(argv_expanded);
3501 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003502 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003503 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003504 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003505 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003506 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003507#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003508 /* Second and next children need to know pid of first one */
3509 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003510 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003511#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003512 }
Eric Andersen25f27032001-04-26 23:22:31 +00003513
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003514 if (i)
3515 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003516 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003517 close(pipefds[1]); /* write end */
3518 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003519 nextin = pipefds[0];
3520 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003521
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003522 if (!pi->alive_cmds) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003523 debug_leave();
Denis Vlasenko05743d72008-02-10 12:10:08 +00003524 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3525 return 1;
3526 }
3527
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003528 debug_leave();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003529 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003530 return -1;
3531}
3532
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003533#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003534static void debug_print_tree(struct pipe *pi, int lvl)
3535{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003536 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003537 [PIPE_SEQ] = "SEQ",
3538 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003539 [PIPE_OR ] = "OR" ,
3540 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003541 };
3542 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003543 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003544#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003545 [RES_IF ] = "IF" ,
3546 [RES_THEN ] = "THEN" ,
3547 [RES_ELIF ] = "ELIF" ,
3548 [RES_ELSE ] = "ELSE" ,
3549 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003550#endif
3551#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003552 [RES_FOR ] = "FOR" ,
3553 [RES_WHILE] = "WHILE",
3554 [RES_UNTIL] = "UNTIL",
3555 [RES_DO ] = "DO" ,
3556 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003557#endif
3558#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003559 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003560#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003561#if ENABLE_HUSH_CASE
3562 [RES_CASE ] = "CASE" ,
3563 [RES_MATCH] = "MATCH",
3564 [RES_CASEI] = "CASEI",
3565 [RES_ESAC ] = "ESAC" ,
3566#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003567 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003568 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003569 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003570 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003571 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003572 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003573#if ENABLE_HUSH_FUNCTIONS
3574 "func()",
3575#endif
3576 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003577
3578 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003579
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003580 pin = 0;
3581 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003582 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3583 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003584 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003585 while (prn < pi->num_cmds) {
3586 struct command *command = &pi->cmds[prn];
3587 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003588
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003589 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003590 lvl*2, "", prn,
3591 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003592 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003593 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003594 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003595 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003596 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003597 prn++;
3598 continue;
3599 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003600 if (argv) while (*argv) {
3601 fprintf(stderr, " '%s'", *argv);
3602 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003603 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003604 fprintf(stderr, "\n");
3605 prn++;
3606 }
3607 pi = pi->next;
3608 pin++;
3609 }
3610}
3611#endif
3612
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003613/* NB: called by pseudo_exec, and therefore must not modify any
3614 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003615static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003616{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003617#if ENABLE_HUSH_CASE
3618 char *case_word = NULL;
3619#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003620#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003621 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003622 char *for_varname = NULL;
3623 char **for_lcur = NULL;
3624 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003625#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003626 smallint last_followup;
3627 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003628#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003629 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003630#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003631 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003632#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003633#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003634 smallint rword; /* enum reserved_style */
3635 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003636#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003637
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003638 debug_printf_exec("run_list start lvl %d\n", G.run_list_level);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003639 debug_enter();
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003640
Denis Vlasenko06810332007-05-21 23:30:54 +00003641#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003642 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003643 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3644 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003645 continue;
3646 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003647 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003648 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003649 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003650 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003651 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003652 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003653 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003654 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003655 continue;
3656 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003657 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3658 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003659 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003660 syntax_error("malformed for");
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003661 debug_leave();
Denis Vlasenko87a86552008-07-29 19:43:10 +00003662 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003663 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003664 }
3665 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003666#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003667
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003668 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003669 * in order to return, no direct "return" statements please.
3670 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003671
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003672#if ENABLE_HUSH_JOB
Denis Vlasenkoc4ada792009-04-15 23:29:00 +00003673 G.run_list_level++;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003674#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003675
Denis Vlasenko0e151382009-04-06 18:40:31 +00003676#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003677 rword = RES_NONE;
3678 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003679#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003680 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003681 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003682
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003683 /* Go through list of pipes, (maybe) executing them. */
3684 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003685 if (G.flag_SIGINT)
3686 break;
3687
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003688 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003689 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3690 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003691#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003692 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003693 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003694 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003695 /* start of a loop: remember where loop starts */
3696 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003697 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003698 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003699#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003700 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003701 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003702 if ((rcode == 0 && last_followup == PIPE_OR)
3703 || (rcode != 0 && last_followup == PIPE_AND)
3704 ) {
3705 /* It is "<true> || CMD" or "<false> && CMD"
3706 * and we should not execute CMD */
3707 debug_printf_exec("skipped cmd because of || or &&\n");
3708 last_followup = pi->followup;
3709 continue;
3710 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003711 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003712 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003713 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003714#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003715 if (cond_code) {
3716 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003717 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003718 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003719 /* "if <false> THEN cmd": skip cmd */
3720 continue;
3721 }
3722 } else {
3723 if (rword == RES_ELSE || rword == RES_ELIF) {
3724 /* "if <true> then ... ELSE/ELIF cmd":
3725 * skip cmd and all following ones */
3726 break;
3727 }
3728 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003729#endif
3730#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003731 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003732 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003733 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003734
3735 static const char encoded_dollar_at[] ALIGN1 = {
3736 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3737 }; /* encoded representation of "$@" */
3738 static const char *const encoded_dollar_at_argv[] = {
3739 encoded_dollar_at, NULL
3740 }; /* argv list with one element: "$@" */
3741 char **vals;
3742
3743 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003744 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003745 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003746 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003747 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003748 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003749 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003750 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003751 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003752 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003753 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003754 debug_print_strings("for_list made from", vals);
3755 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003756 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003757 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003758 for_varname = pi->cmds[0].argv[0];
3759 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003760 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003761 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003762 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003763 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003764 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003765 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003766 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003767 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003768 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003769 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003770 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003771 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003772 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3773 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003774 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003775 if (rword == RES_IN) {
3776 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3777 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003778 if (rword == RES_DONE) {
3779 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003780 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003781#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003782#if ENABLE_HUSH_CASE
3783 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003784 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003785 continue;
3786 }
3787 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003788 char **argv;
3789
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003790 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3791 break;
3792 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003793 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003794 while (*argv) {
3795 char *pattern = expand_string_to_string(*argv);
3796 /* TODO: which FNM_xxx flags to use? */
3797 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3798 free(pattern);
3799 if (cond_code == 0) { /* match! we will execute this branch */
3800 free(case_word); /* make future "word)" stop */
3801 case_word = NULL;
3802 break;
3803 }
3804 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003805 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003806 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003807 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003808 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003809 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003810 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003811 }
3812#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003813 /* Just pressing <enter> in shell should check for jobs.
3814 * OTOH, in non-interactive shell this is useless
3815 * and only leads to extra job checks */
3816 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003817 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003818 goto check_jobs_and_continue;
3819 continue;
3820 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003821
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003822 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003823 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003824 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003825 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003826 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003827 {
3828 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003829#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003830 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003831#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003832 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3833 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003834 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003835 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003836 G.last_exitcode = rcode;
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00003837 debug_printf_exec(": builtin/func exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003838 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003839#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003840 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003841 if (G.flag_break_continue) {
3842 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003843 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003844 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003845 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003846 G.depth_break_continue--;
3847 if (G.depth_break_continue == 0)
3848 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003849 /* else: e.g. "continue 2" should *break* once, *then* continue */
3850 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003851 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003852 goto check_jobs_and_break;
3853 /* "continue": simulate end of loop */
3854 rword = RES_DONE;
3855 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003856 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003857#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003858 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003859 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003860 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003861 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3862 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003863 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003864#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003865 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003866 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003867#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003868 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003869 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003870 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003871#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003872 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003873 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003874 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003875 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003876 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003877 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003878#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003879 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003880 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003881 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003882 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003883 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003884 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003885 }
3886 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003887
3888 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003889#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003890 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003891 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003892#endif
3893#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003894 /* Beware of "while false; true; do ..."! */
3895 if (pi->next && pi->next->res_word == RES_DO) {
3896 if (rword == RES_WHILE) {
3897 if (rcode) {
3898 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003899 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003900 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3901 goto check_jobs_and_break;
3902 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003903 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003904 if (rword == RES_UNTIL) {
3905 if (!rcode) {
3906 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003907 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003908 checkjobs(NULL);
3909 break;
3910 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003911 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003912 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003913#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003914
3915 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003916 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003917 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003918
3919#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003920 G.run_list_level--;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003921#endif
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003922#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003923 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003924 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003925 free(for_list);
3926#endif
3927#if ENABLE_HUSH_CASE
3928 free(case_word);
3929#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003930 debug_leave();
3931 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003932 return rcode;
3933}
3934
Eric Andersen25f27032001-04-26 23:22:31 +00003935/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003936static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003937{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003938 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003939 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003940 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003941 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003942 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003943 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003944 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003945 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003946 * but doing that now would hobble the debugging effort. */
Denis Vlasenko0701dca2009-04-11 10:38:47 +00003947 free_pipe_list(pi);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003948 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003949 return rcode;
3950}
3951
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003952
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003953static struct pipe *new_pipe(void)
3954{
Eric Andersen25f27032001-04-26 23:22:31 +00003955 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003956 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003957 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003958 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003959 return pi;
3960}
3961
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003962/* Command (member of a pipe) is complete. The only possible error here
3963 * is out of memory, in which case xmalloc exits. */
3964static int done_command(struct parse_context *ctx)
3965{
3966 /* The command is really already in the pipe structure, so
3967 * advance the pipe counter and make a new, null command. */
3968 struct pipe *pi = ctx->pipe;
3969 struct command *command = ctx->command;
3970
3971 if (command) {
3972 if (command->group == NULL
3973 && command->argv == NULL
3974 && command->redirects == NULL
3975 ) {
3976 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003977 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003978 return pi->num_cmds;
3979 }
3980 pi->num_cmds++;
3981 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003982 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003983 } else {
3984 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3985 }
3986
3987 /* Only real trickiness here is that the uncommitted
3988 * command structure is not counted in pi->num_cmds. */
3989 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3990 command = &pi->cmds[pi->num_cmds];
3991 memset(command, 0, sizeof(*command));
3992
3993 ctx->command = command;
3994 /* but ctx->pipe and ctx->list_head remain unchanged */
3995
3996 return pi->num_cmds; /* used only for 0/nonzero check */
3997}
3998
3999static void done_pipe(struct parse_context *ctx, pipe_style type)
4000{
4001 int not_null;
4002
4003 debug_printf_parse("done_pipe entered, followup %d\n", type);
4004 /* Close previous command */
4005 not_null = done_command(ctx);
4006 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004007#if HAS_KEYWORDS
4008 ctx->pipe->pi_inverted = ctx->ctx_inverted;
4009 ctx->ctx_inverted = 0;
4010 ctx->pipe->res_word = ctx->ctx_res_w;
4011#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004012
4013 /* Without this check, even just <enter> on command line generates
4014 * tree of three NOPs (!). Which is harmless but annoying.
4015 * IOW: it is safe to do it unconditionally.
4016 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004017 * and other cases to work. */
4018 if (not_null
Denis Vlasenko7f959372009-04-14 08:06:59 +00004019#if ENABLE_HUSH_IF
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004020 || ctx->ctx_res_w == RES_FI
Denis Vlasenko7f959372009-04-14 08:06:59 +00004021#endif
4022#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004023 || ctx->ctx_res_w == RES_DONE
4024 || ctx->ctx_res_w == RES_FOR
4025 || ctx->ctx_res_w == RES_IN
Denis Vlasenko7f959372009-04-14 08:06:59 +00004026#endif
4027#if ENABLE_HUSH_CASE
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004028 || ctx->ctx_res_w == RES_ESAC
4029#endif
4030 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004031 struct pipe *new_p;
4032 debug_printf_parse("done_pipe: adding new pipe: "
4033 "not_null:%d ctx->ctx_res_w:%d\n",
4034 not_null, ctx->ctx_res_w);
4035 new_p = new_pipe();
4036 ctx->pipe->next = new_p;
4037 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004038 /* RES_THEN, RES_DO etc are "sticky" -
4039 * they remain set for commands inside if/while.
4040 * This is used to control execution.
4041 * RES_FOR and RES_IN are NOT sticky (needed to support
4042 * cases where variable or value happens to match a keyword):
4043 */
4044#if ENABLE_HUSH_LOOPS
4045 if (ctx->ctx_res_w == RES_FOR
4046 || ctx->ctx_res_w == RES_IN)
4047 ctx->ctx_res_w = RES_NONE;
4048#endif
4049#if ENABLE_HUSH_CASE
4050 if (ctx->ctx_res_w == RES_MATCH)
4051 ctx->ctx_res_w = RES_CASEI;
4052#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004053 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004054 /* Create the memory for command, roughly:
4055 * ctx->pipe->cmds = new struct command;
4056 * ctx->command = &ctx->pipe->cmds[0];
4057 */
4058 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00004059 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00004060 }
4061 debug_printf_parse("done_pipe return\n");
4062}
4063
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004064static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004065{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004066 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00004067 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004068 /* Create the memory for command, roughly:
4069 * ctx->pipe->cmds = new struct command;
4070 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004071 */
4072 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00004073}
4074
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004075/* If a reserved word is found and processed, parse context is modified
4076 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00004077 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004078#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004079struct reserved_combo {
4080 char literal[6];
4081 unsigned char res;
4082 unsigned char assignment_flag;
4083 int flag;
4084};
4085enum {
4086 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004087#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004088 FLAG_IF = (1 << RES_IF ),
4089 FLAG_THEN = (1 << RES_THEN ),
4090 FLAG_ELIF = (1 << RES_ELIF ),
4091 FLAG_ELSE = (1 << RES_ELSE ),
4092 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004093#endif
4094#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004095 FLAG_FOR = (1 << RES_FOR ),
4096 FLAG_WHILE = (1 << RES_WHILE),
4097 FLAG_UNTIL = (1 << RES_UNTIL),
4098 FLAG_DO = (1 << RES_DO ),
4099 FLAG_DONE = (1 << RES_DONE ),
4100 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004101#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004102#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004103 FLAG_MATCH = (1 << RES_MATCH),
4104 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004105#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004106 FLAG_START = (1 << RES_XXXX ),
4107};
4108
4109static const struct reserved_combo* match_reserved_word(o_string *word)
4110{
Eric Andersen25f27032001-04-26 23:22:31 +00004111 /* Mostly a list of accepted follow-up reserved words.
4112 * FLAG_END means we are done with the sequence, and are ready
4113 * to turn the compound list into a command.
4114 * FLAG_START means the word must start a new compound list.
4115 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004116 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00004117#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004118 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
4119 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
4120 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
4121 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
4122 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
4123 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004124#endif
4125#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004126 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
4127 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4128 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
4129 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
4130 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
4131 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004132#endif
4133#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004134 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
4135 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00004136#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004137 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004138 const struct reserved_combo *r;
4139
4140 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
4141 if (strcmp(word->data, r->literal) == 0)
4142 return r;
4143 }
4144 return NULL;
4145}
4146static int reserved_word(o_string *word, struct parse_context *ctx)
4147{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004148#if ENABLE_HUSH_CASE
4149 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004150 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004151 };
4152#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004153 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00004154
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004155 r = match_reserved_word(word);
4156 if (!r)
4157 return 0;
4158
4159 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004160#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004161 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
4162 /* "case word IN ..." - IN part starts first match part */
4163 r = &reserved_match;
4164 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004165#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004166 if (r->flag == 0) { /* '!' */
4167 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004168 syntax_error("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004169 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00004170 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004171 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004172 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004173 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004174 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004175 struct parse_context *old;
4176 old = xmalloc(sizeof(*old));
4177 debug_printf_parse("push stack %p\n", old);
4178 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004179 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004180 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004181 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004182 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004183 ctx->ctx_res_w = RES_SNTX;
4184 return 1;
4185 }
4186 ctx->ctx_res_w = r->res;
4187 ctx->old_flag = r->flag;
4188 if (ctx->old_flag & FLAG_END) {
4189 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004190 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004191 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004192 old = ctx->stack;
4193 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004194 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004195#if !BB_MMU
4196 o_addstr(&old->as_string, ctx->as_string.data);
4197 o_free_unsafe(&ctx->as_string);
4198 old->command->group_as_string = xstrdup(old->as_string.data);
4199 debug_printf_parse("pop, remembering as:'%s'\n",
4200 old->command->group_as_string);
4201#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00004202 *ctx = *old; /* physical copy */
4203 free(old);
4204 }
4205 word->o_assignment = r->assignment_flag;
4206 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004207}
Denis Vlasenko06810332007-05-21 23:30:54 +00004208#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004209
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004210/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004211 * Normal return is 0. Syntax errors return 1.
4212 * Note: on return, word is reset, but not o_free'd!
4213 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004214static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00004215{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004216 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00004217
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004218 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004219 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004220 debug_printf_parse("done_word return 0: true null, ignored\n");
4221 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004222 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00004223
Eric Andersen25f27032001-04-26 23:22:31 +00004224 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004225 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
4226 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004227 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4228 * "2.7 Redirection
4229 * ...the word that follows the redirection operator
4230 * shall be subjected to tilde expansion, parameter expansion,
4231 * command substitution, arithmetic expansion, and quote
4232 * removal. Pathname expansion shall not be performed
4233 * on the word by a non-interactive shell; an interactive
4234 * shell may perform it, but shall do so only when
4235 * the expansion would result in one word."
4236 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004237 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004238 /* Cater for >\file case:
4239 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
4240 * Same with heredocs:
4241 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4242 */
4243 unbackslash(ctx->pending_redirect->rd_filename);
4244 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004245 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4246 && word->o_quoted
4247 ) {
4248 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4249 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004250 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004251 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004252 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004253 /* If this word wasn't an assignment, next ones definitely
4254 * can't be assignments. Even if they look like ones. */
4255 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4256 && word->o_assignment != WORD_IS_KEYWORD
4257 ) {
4258 word->o_assignment = NOT_ASSIGNMENT;
4259 } else {
4260 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4261 command->assignment_cnt++;
4262 word->o_assignment = MAYBE_ASSIGNMENT;
4263 }
4264
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004265 if (command->group) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004266 /* "{ echo foo; } echo bar" - bad */
4267 /* NB: bash allows e.g.:
4268 * if true; then { echo foo; } fi
4269 * while if false; then false; fi do break; done
4270 * and disallows:
4271 * while if false; then false; fi; do; break; done
4272 * TODO? */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004273 syntax_error_at(word->data);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004274 debug_printf_parse("done_word return 1: syntax error, "
4275 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00004276 return 1;
4277 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004278#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004279# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004280 if (ctx->ctx_dsemicolon
4281 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4282 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004283 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004284 /* ctx->ctx_res_w = RES_MATCH; */
4285 ctx->ctx_dsemicolon = 0;
4286 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004287# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004288 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004289# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004290 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4291 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004292# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004293 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004294 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
4295 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004296 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004297 debug_printf_parse("done_word return %d\n",
4298 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004299 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004300 }
Eric Andersen25f27032001-04-26 23:22:31 +00004301 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004302#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004303 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004304 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4305 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004306 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004307 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004308 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004309 char *p = word->data;
4310 while (p[0] == SPECIAL_VAR_SYMBOL
4311 && (p[1] & 0x7f) == '@'
4312 && p[2] == SPECIAL_VAR_SYMBOL
4313 ) {
4314 p += 3;
4315 }
4316 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004317 /* saw no "$@", or not only "$@" but some
4318 * real text is there too */
4319 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004320 * e.g. "", $empty"" etc to not disappear */
4321 o_addchr(word, SPECIAL_VAR_SYMBOL);
4322 o_addchr(word, SPECIAL_VAR_SYMBOL);
4323 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004324 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004325 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004326//SEGV, but good idea.
4327// command->argv = add_string_to_strings(command->argv, word->data);
4328// word->data = NULL;
4329// word->length = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004330 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004331 }
Eric Andersen25f27032001-04-26 23:22:31 +00004332
Denis Vlasenko06810332007-05-21 23:30:54 +00004333#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004334 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004335 if (word->o_quoted
4336 || !is_well_formed_var_name(command->argv[0], '\0')
4337 ) {
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004338 /* bash says just "not a valid identifier" */
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004339 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004340 return 1;
4341 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004342 /* Force FOR to have just one word (variable name) */
4343 /* NB: basically, this makes hush see "for v in ..."
4344 * syntax as if it is "for v; in ...". FOR and IN become
4345 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004346 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004347 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004348#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004349#if ENABLE_HUSH_CASE
4350 /* Force CASE to have just one word */
4351 if (ctx->ctx_res_w == RES_CASE) {
4352 done_pipe(ctx, PIPE_SEQ);
4353 }
4354#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004355
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004356 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004357
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004358 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004359 return 0;
4360}
4361
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004362
4363/* Peek ahead in the input to find out if we have a "&n" construct,
4364 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004365 * Return:
4366 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4367 * REDIRFD_SYNTAX_ERR if syntax error,
4368 * REDIRFD_TO_FILE if no & was seen,
4369 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004370 */
4371#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004372#define parse_redir_right_fd(as_string, input) \
4373 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004374#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004375static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004376{
4377 int ch, d, ok;
4378
4379 ch = i_peek(input);
4380 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004381 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004382
4383 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004384 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004385 ch = i_peek(input);
4386 if (ch == '-') {
4387 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004388 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004389 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004390 }
4391 d = 0;
4392 ok = 0;
4393 while (ch != EOF && isdigit(ch)) {
4394 d = d*10 + (ch-'0');
4395 ok = 1;
4396 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004397 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004398 ch = i_peek(input);
4399 }
4400 if (ok) return d;
4401
4402//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4403
4404 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004405 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004406}
4407
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004408/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004409 */
4410static int parse_redirect(struct parse_context *ctx,
4411 int fd,
4412 redir_type style,
4413 struct in_str *input)
4414{
4415 struct command *command = ctx->command;
4416 struct redir_struct *redir;
4417 struct redir_struct **redirp;
4418 int dup_num;
4419
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004420 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004421 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004422 /* Check for a '>&1' type redirect */
4423 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4424 if (dup_num == REDIRFD_SYNTAX_ERR)
4425 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004426 } else {
4427 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004428 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004429 if (dup_num) { /* <<-... */
4430 ch = i_getch(input);
4431 nommu_addchr(&ctx->as_string, ch);
4432 ch = i_peek(input);
4433 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004434 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004435
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004436 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004437 int ch = i_peek(input);
4438 if (ch == '|') {
4439 /* >|FILE redirect ("clobbering" >).
4440 * Since we do not support "set -o noclobber" yet,
4441 * >| and > are the same for now. Just eat |.
4442 */
4443 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004444 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004445 }
4446 }
4447
4448 /* Create a new redir_struct and append it to the linked list */
4449 redirp = &command->redirects;
4450 while ((redir = *redirp) != NULL) {
4451 redirp = &(redir->next);
4452 }
4453 *redirp = redir = xzalloc(sizeof(*redir));
4454 /* redir->next = NULL; */
4455 /* redir->rd_filename = NULL; */
4456 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004457 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004458
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004459 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4460 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004461
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004462 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004463 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004464 /* Erik had a check here that the file descriptor in question
4465 * is legit; I postpone that to "run time"
4466 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004467 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4468 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004469 } else {
4470 /* Set ctx->pending_redirect, so we know what to do at the
4471 * end of the next parsed word. */
4472 ctx->pending_redirect = redir;
4473 }
4474 return 0;
4475}
4476
Eric Andersen25f27032001-04-26 23:22:31 +00004477/* If a redirect is immediately preceded by a number, that number is
4478 * supposed to tell which file descriptor to redirect. This routine
4479 * looks for such preceding numbers. In an ideal world this routine
4480 * needs to handle all the following classes of redirects...
4481 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4482 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4483 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4484 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004485 *
4486 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4487 * "2.7 Redirection
4488 * ... If n is quoted, the number shall not be recognized as part of
4489 * the redirection expression. For example:
4490 * echo \2>a
4491 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004492 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004493 *
4494 * A -1 return means no valid number was found,
4495 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004496 */
4497static int redirect_opt_num(o_string *o)
4498{
4499 int num;
4500
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004501 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004502 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004503 num = bb_strtou(o->data, NULL, 10);
4504 if (errno || num < 0)
4505 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004506 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004507 return num;
4508}
4509
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004510#if BB_MMU
4511#define fetch_till_str(as_string, input, word, skip_tabs) \
4512 fetch_till_str(input, word, skip_tabs)
4513#endif
4514static char *fetch_till_str(o_string *as_string,
4515 struct in_str *input,
4516 const char *word,
4517 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004518{
4519 o_string heredoc = NULL_O_STRING;
4520 int past_EOL = 0;
4521 int ch;
4522
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004523 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004524 while (1) {
4525 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004526 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004527 if (ch == '\n') {
4528 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4529 heredoc.data[past_EOL] = '\0';
4530 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4531 return heredoc.data;
4532 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004533 do {
4534 o_addchr(&heredoc, ch);
4535 past_EOL = heredoc.length;
4536 jump_in:
4537 do {
4538 ch = i_getch(input);
4539 nommu_addchr(as_string, ch);
4540 } while (skip_tabs && ch == '\t');
4541 } while (ch == '\n');
4542 }
4543 if (ch == EOF) {
4544 o_free_unsafe(&heredoc);
4545 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004546 }
4547 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004548 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004549 }
4550}
4551
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004552/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4553 * and load them all. There should be exactly heredoc_cnt of them.
4554 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004555static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4556{
4557 struct pipe *pi = ctx->list_head;
4558
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004559 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004560 int i;
4561 struct command *cmd = pi->cmds;
4562
4563 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4564 pi->num_cmds,
4565 cmd->argv ? cmd->argv[0] : "NONE");
4566 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004567 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004568
4569 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4570 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004571 while (redir) {
4572 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004573 char *p;
4574
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004575 redir->rd_type = REDIRECT_HEREDOC2;
4576 /* redir->dup is (ab)used to indicate <<- */
4577 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004578 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004579 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004580 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004581 return 1;
4582 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004583 free(redir->rd_filename);
4584 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004585 heredoc_cnt--;
4586 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004587 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004588 }
4589 cmd++;
4590 }
4591 pi = pi->next;
4592 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004593#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004594 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004595 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004596 bb_error_msg_and_die("heredoc BUG 2");
4597#endif
4598 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004599}
4600
4601
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004602#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004603static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004604{
4605 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004606 int pid, channel[2];
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004607#if !BB_MMU
4608 char **to_free;
4609#endif
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004610
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004611 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004612 pid = BB_MMU ? fork() : vfork();
4613 if (pid < 0)
4614 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004615
Denis Vlasenko05743d72008-02-10 12:10:08 +00004616 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004617 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004618 /* Process substitution is not considered to be usual
4619 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004620 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4621 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004622 bb_signals(0
4623 + (1 << SIGTSTP)
4624 + (1 << SIGTTIN)
4625 + (1 << SIGTTOU)
4626 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004627 close(channel[0]); /* NB: close _first_, then move fd! */
4628 xmove_fd(channel[1], 1);
4629 /* Prevent it from trying to handle ctrl-z etc */
4630 USE_HUSH_JOB(G.run_list_level = 1;)
4631#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004632 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004633 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004634 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004635#else
4636 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004637 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4638 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004639 * echo OK
4640 */
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004641 re_execute_shell(&to_free,
4642 s,
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004643 G.global_argv[0],
4644 G.global_argv + 1);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004645#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004646 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004647
4648 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004649 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko27014ed2009-04-15 21:48:23 +00004650#if !BB_MMU
4651 free(to_free);
4652#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004653 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004654 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004655 return pf;
4656}
4657
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004658/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004659static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004660{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004661 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004662 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004663 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004664
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004665 pf = generate_stream_from_string(s);
4666 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004667 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004668 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004669
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004670 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004671 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004672 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004673 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004674 if (ch == '\n') {
4675 eol_cnt++;
4676 continue;
4677 }
4678 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004679 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004680 eol_cnt--;
4681 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004682 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004683 }
4684
4685 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004686 /* Note: we got EOF, and we just close the read end of the pipe.
4687 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004688 * Try these:
4689 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4690 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004691 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004692 fclose(pf);
4693 debug_printf("closed FILE from child. return 0\n");
4694 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004695}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004696#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004697
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004698static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004699 struct in_str *input, int ch)
4700{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004701 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004702 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004703 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004704 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004705 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004706 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004707
4708 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004709#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004710 if (ch == '(' && !dest->o_quoted) {
4711 if (dest->length)
4712 done_word(dest, ctx);
4713 if (!command->argv)
4714 goto skip; /* (... */
4715 if (command->argv[1]) { /* word word ... (... */
4716 syntax_error_unexpected_ch('(');
4717 return 1;
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004718 }
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00004719 /* it is "word(..." or "word (..." */
4720 do
4721 ch = i_getch(input);
4722 while (ch == ' ' || ch == '\t');
4723 if (ch != ')') {
4724 syntax_error_unexpected_ch(ch);
4725 return 1;
4726 }
4727 nommu_addchr(&ctx->as_string, ch);
4728 do
4729 ch = i_getch(input);
4730 while (ch == ' ' || ch == '\t' || ch == '\n');
4731 if (ch != '{') {
4732 syntax_error_unexpected_ch(ch);
4733 return 1;
4734 }
4735 nommu_addchr(&ctx->as_string, ch);
4736 command->grp_type = GRP_FUNCTION;
4737 goto skip;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004738 }
4739#endif
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004740 if (command->argv /* word [word]{... */
4741 || dest->length /* word{... */
4742 || dest->o_quoted /* ""{... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004743 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004744 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004745 debug_printf_parse("parse_group return 1: "
4746 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004747 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004748 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004749
4750#if ENABLE_HUSH_FUNCTIONS
4751 skip:
4752#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00004753 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004754 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004755 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004756 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004757 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00004758
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004759 {
4760#if !BB_MMU
4761 char *as_string = NULL;
4762#endif
4763 pipe_list = parse_stream(&as_string, input, endch);
4764#if !BB_MMU
4765 if (as_string)
4766 o_addstr(&ctx->as_string, as_string);
4767#endif
4768 /* empty ()/{} or parse error? */
4769 if (!pipe_list || pipe_list == ERR_PTR) {
4770#if !BB_MMU
4771 free(as_string);
4772#endif
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004773 syntax_error(NULL);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004774 debug_printf_parse("parse_group return 1: "
4775 "parse_stream returned %p\n", pipe_list);
4776 return 1;
4777 }
4778 command->group = pipe_list;
4779#if !BB_MMU
4780 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4781 command->group_as_string = as_string;
4782 debug_printf_parse("end of group, remembering as:'%s'\n",
4783 command->group_as_string);
4784#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004785 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004786 debug_printf_parse("parse_group return 0\n");
4787 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004788 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004789}
4790
Mike Frysinger98c52642009-04-02 10:02:37 +00004791#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004792/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004793static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004794/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004795static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004796{
4797 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004798 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004799 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004800 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004801 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004802 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004803 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004804 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004805 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004806 }
4807}
4808/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004809static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004810{
4811 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004812 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004813 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004814 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004815 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004816 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004817 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004818 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004819 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004820 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004821 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004822 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004823 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004824 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004825 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004826 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004827 continue;
4828 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004829 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004830 }
4831}
4832/* Process `cmd` - copy contents until "`" is seen. Complicated by
4833 * \` quoting.
4834 * "Within the backquoted style of command substitution, backslash
4835 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4836 * The search for the matching backquote shall be satisfied by the first
4837 * backquote found without a preceding backslash; during this search,
4838 * if a non-escaped backquote is encountered within a shell comment,
4839 * a here-document, an embedded command substitution of the $(command)
4840 * form, or a quoted string, undefined results occur. A single-quoted
4841 * or double-quoted string that begins, but does not end, within the
4842 * "`...`" sequence produces undefined results."
4843 * Example Output
4844 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4845 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004846static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004847{
4848 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004849 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004850 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004851 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004852 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004853 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004854 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004855 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004856 if (ch == '\\') {
4857 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004858 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004859 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004860 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004861 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004862 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004863 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004864 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004865 ch = ch2;
4866 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004867 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004868 }
4869}
4870/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4871 * quoting and nested ()s.
4872 * "With the $(command) style of command substitution, all characters
4873 * following the open parenthesis to the matching closing parenthesis
4874 * constitute the command. Any valid shell script can be used for command,
4875 * except a script consisting solely of redirections which produces
4876 * unspecified results."
4877 * Example Output
4878 * echo $(echo '(TEST)' BEST) (TEST) BEST
4879 * echo $(echo 'TEST)' BEST) TEST) BEST
4880 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4881 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004882static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004883{
4884 int count = 0;
4885 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004886 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004887 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004888 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004889 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004890 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004891 if (ch == '(')
4892 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004893 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004894 if (--count < 0) {
4895 if (!dbl)
4896 break;
4897 if (i_peek(input) == ')') {
4898 i_getch(input);
4899 break;
4900 }
4901 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004902 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004903 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004904 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004905 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004906 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004907 continue;
4908 }
4909 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004910 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004911 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004912 continue;
4913 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004914 if (ch == '\\') {
4915 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004916 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004917 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004918 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004919 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004920 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004921 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004922 continue;
4923 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004924 }
4925}
Mike Frysinger98c52642009-04-02 10:02:37 +00004926#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004927
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004928/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004929#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004930#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004931 handle_dollar(dest, input)
4932#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004933static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004934 o_string *dest,
4935 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004936{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004937 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004938 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004939 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004940
4941 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004942 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004943 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004944 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004945 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004946 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004947 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004948 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004949 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004950 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004951 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004952 if (!isalnum(ch) && ch != '_')
4953 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004954 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004955 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004956 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004957 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004958 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004959 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004960 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004961 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004962 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004963 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004964 o_addchr(dest, ch | quote_mask);
4965 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004966 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004967 case '$': /* pid */
4968 case '!': /* last bg pid */
4969 case '?': /* last exit code */
4970 case '#': /* number of args */
4971 case '*': /* args */
4972 case '@': /* args */
4973 goto make_one_char_var;
4974 case '{': {
4975 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004976
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004977 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004978 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004979 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004980 /* XXX maybe someone will try to escape the '}' */
4981 expansion = 0;
4982 first_char = true;
4983 all_digits = false;
4984 while (1) {
4985 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004986 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004987 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004988 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004989
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004990 if (first_char) {
4991 if (ch == '#')
4992 /* ${#var}: length of var contents */
4993 goto char_ok;
4994 else if (isdigit(ch)) {
4995 all_digits = true;
4996 goto char_ok;
4997 }
4998 }
4999
5000 if (expansion < 2
5001 && ( (all_digits && !isdigit(ch))
5002 || (!all_digits && !isalnum(ch) && ch != '_')
5003 )
5004 ) {
5005 /* handle parameter expansions
5006 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
5007 */
5008 if (first_char)
5009 goto case_default;
5010 switch (ch) {
5011 case ':': /* null modifier */
5012 if (expansion == 0) {
5013 debug_printf_parse(": null modifier\n");
5014 ++expansion;
5015 break;
5016 }
5017 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005018 case '#': /* remove prefix */
5019 case '%': /* remove suffix */
5020 if (expansion == 0) {
5021 debug_printf_parse(": remove suffix/prefix\n");
5022 expansion = 2;
5023 break;
5024 }
5025 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005026 case '-': /* default value */
5027 case '=': /* assign default */
5028 case '+': /* alternative */
5029 case '?': /* error indicate */
5030 debug_printf_parse(": parameter expansion\n");
5031 expansion = 2;
5032 break;
5033 default:
5034 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005035 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005036 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
5037 return 1;
5038 }
5039 }
5040 char_ok:
5041 debug_printf_parse(": '%c'\n", ch);
5042 o_addchr(dest, ch | quote_mask);
5043 quote_mask = 0;
5044 first_char = false;
5045 }
5046 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5047 break;
5048 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005049#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005050 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005051# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005052 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005053# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005054 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005055 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005056# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005057 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005058 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005059 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005060 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5061 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005062# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005063 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005064# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005065 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005066# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005067 if (as_string) {
5068 o_addstr(as_string, dest->data + pos);
5069 o_addchr(as_string, ')');
5070 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005071 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005072# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005073 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00005074 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00005075 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005076# endif
5077# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005078 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5079 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005080# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005081 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005082# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005083 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005084# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005085 if (as_string) {
5086 o_addstr(as_string, dest->data + pos);
5087 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005088 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005089# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005090 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005091# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005092 break;
5093 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00005094#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005095 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005096 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005097 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005098 ch = i_peek(input);
5099 if (isalnum(ch)) { /* it's $_name or $_123 */
5100 ch = '_';
5101 goto make_var;
5102 }
5103 /* else: it's $_ */
5104 /* TODO: */
5105 /* $_ Shell or shell script name; or last cmd name */
5106 /* $- Option flags set by set builtin or shell options (-i etc) */
5107 default:
5108 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00005109 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00005110 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00005111 return 0;
5112}
5113
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005114#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005115#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005116 parse_stream_dquoted(dest, input, dquote_end)
5117#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005118static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005119 o_string *dest,
5120 struct in_str *input,
5121 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005122{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005123 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005124 int next;
5125
5126 again:
5127 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005128 if (ch != EOF)
5129 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005130 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005131 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005132 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005133 debug_printf_parse("parse_stream_dquoted return 0\n");
5134 return 0;
5135 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005136 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005137 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005138 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005139 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005140 }
5141 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005142 if (ch != '\n') {
5143 next = i_peek(input);
5144 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005145 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5146 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005147 if (ch == '\\') {
5148 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005149 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005150 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005151 }
5152 /* bash:
5153 * "The backslash retains its special meaning [in "..."]
5154 * only when followed by one of the following characters:
5155 * $, `, ", \, or <newline>. A double quote may be quoted
5156 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005157 */
5158 if (strchr("$`\"\\", next) != NULL) {
5159 o_addqchr(dest, i_getch(input));
5160 } else {
5161 o_addqchr(dest, '\\');
5162 }
5163 goto again;
5164 }
5165 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005166 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005167 debug_printf_parse("parse_stream_dquoted return 1: "
5168 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005169 return 1;
5170 }
5171 goto again;
5172 }
5173#if ENABLE_HUSH_TICK
5174 if (ch == '`') {
5175 //int pos = dest->length;
5176 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5177 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005178 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005179 o_addchr(dest, SPECIAL_VAR_SYMBOL);
5180 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00005181 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005182 }
5183#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00005184 o_addQchr(dest, ch);
5185 if (ch == '='
5186 && (dest->o_assignment == MAYBE_ASSIGNMENT
5187 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005188 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00005189 ) {
5190 dest->o_assignment = DEFINITELY_ASSIGNMENT;
5191 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005192 goto again;
5193}
5194
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005195/*
5196 * Scan input until EOF or end_trigger char.
5197 * Return a list of pipes to execute, or NULL on EOF
5198 * or if end_trigger character is met.
5199 * On syntax error, exit is shell is not interactive,
5200 * reset parsing machinery and start parsing anew,
5201 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005202 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005203static struct pipe *parse_stream(char **pstring,
5204 struct in_str *input,
5205 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005206{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005207 struct parse_context ctx;
5208 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005209 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005210 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00005211
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00005212 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00005213 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005214 * found. When recursing, quote state is passed in via dest->o_escape.
5215 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005216 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
5217 end_trigger ? : 'X');
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005218 debug_enter();
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005219
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005220 G.ifs = get_local_var_value("IFS");
5221 if (G.ifs == NULL)
5222 G.ifs = " \t\n";
5223
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005224 reset:
5225#if ENABLE_HUSH_INTERACTIVE
5226 input->promptmode = 0; /* PS1 */
5227#endif
5228 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
5229 initialize_context(&ctx);
5230 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005231 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005232 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005233 const char *is_ifs;
5234 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005235 int ch;
5236 int next;
5237 int redir_fd;
5238 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005239
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005240 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005241 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005242 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005243 goto parse_error;
5244 }
5245 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005246 is_in_dquote = 0;
5247 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005248 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005249 debug_printf_parse(": ch=%c (%d) escape=%d\n",
5250 ch, ch, dest.o_escape);
5251 if (ch == EOF) {
5252 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005253
5254 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005255 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005256 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005257 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005258 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005259 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00005260 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005261 o_free(&dest);
5262 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005263 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005264 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005265 /* (this makes bare "&" cmd a no-op.
5266 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005267 if (pi->num_cmds == 0
5268 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
5269 ) {
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005270 free_pipe_list(pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005271 pi = NULL;
5272 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005273#if !BB_MMU
5274 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5275 if (pstring)
5276 *pstring = ctx.as_string.data;
5277 else
5278 o_free_unsafe(&ctx.as_string);
5279#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005280 debug_leave();
5281 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005282 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005283 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005284 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005285 is_ifs = strchr(G.ifs, ch);
5286 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5287 "\\$\"" USE_HUSH_TICK("`") /* always special */
5288 , ch);
5289
5290 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005291 o_addQchr(&dest, ch);
5292 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5293 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005294 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005295 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005296 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005297 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005298 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005299 continue;
5300 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005301
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005302 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005303 if (done_word(&dest, &ctx)) {
5304 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005305 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005306 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005307#if ENABLE_HUSH_CASE
5308 /* "case ... in <newline> word) ..." -
5309 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005310 if (ctx.command->argv == NULL
5311 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005312 ) {
5313 continue;
5314 }
5315#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005316 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005317 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005318 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5319 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005320 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005321 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005322 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005323 heredoc_cnt = 0;
5324 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005325 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005326 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005327 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005328 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005329 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005330 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005331 if (end_trigger && end_trigger == ch
5332 && (heredoc_cnt == 0 || end_trigger != ';')
5333 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00005334//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005335 if (heredoc_cnt) {
5336 /* This is technically valid:
5337 * { cat <<HERE; }; echo Ok
5338 * heredoc
5339 * heredoc
5340 * heredoc
5341 * HERE
5342 * but we don't support this.
5343 * We require heredoc to be in enclosing {}/(),
5344 * if any.
5345 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005346 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005347 goto parse_error;
5348 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005349 if (done_word(&dest, &ctx)) {
5350 goto parse_error;
5351 }
5352 done_pipe(&ctx, PIPE_SEQ);
5353 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005354 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005355 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005356 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005357 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005358 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005359#if !BB_MMU
5360 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5361 if (pstring)
5362 *pstring = ctx.as_string.data;
5363 else
5364 o_free_unsafe(&ctx.as_string);
5365#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005366 debug_leave();
5367 debug_printf_parse("parse_stream return %p: "
5368 "end_trigger char found\n",
5369 ctx.list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005370 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005371 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005372 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005373 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005374 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005375
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005376 next = '\0';
5377 if (ch != '\n') {
5378 next = i_peek(input);
5379 }
5380
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005381 /* Catch <, > before deciding whether this word is
5382 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5383 switch (ch) {
5384 case '>':
5385 redir_fd = redirect_opt_num(&dest);
5386 if (done_word(&dest, &ctx)) {
5387 goto parse_error;
5388 }
5389 redir_style = REDIRECT_OVERWRITE;
5390 if (next == '>') {
5391 redir_style = REDIRECT_APPEND;
5392 ch = i_getch(input);
5393 nommu_addchr(&ctx.as_string, ch);
5394 }
5395#if 0
5396 else if (next == '(') {
5397 syntax_error(">(process) not supported");
5398 goto parse_error;
5399 }
5400#endif
5401 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5402 goto parse_error;
5403 continue; /* back to top of while (1) */
5404 case '<':
5405 redir_fd = redirect_opt_num(&dest);
5406 if (done_word(&dest, &ctx)) {
5407 goto parse_error;
5408 }
5409 redir_style = REDIRECT_INPUT;
5410 if (next == '<') {
5411 redir_style = REDIRECT_HEREDOC;
5412 heredoc_cnt++;
5413 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5414 ch = i_getch(input);
5415 nommu_addchr(&ctx.as_string, ch);
5416 } else if (next == '>') {
5417 redir_style = REDIRECT_IO;
5418 ch = i_getch(input);
5419 nommu_addchr(&ctx.as_string, ch);
5420 }
5421#if 0
5422 else if (next == '(') {
5423 syntax_error("<(process) not supported");
5424 goto parse_error;
5425 }
5426#endif
5427 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5428 goto parse_error;
5429 continue; /* back to top of while (1) */
5430 }
5431
5432 if (dest.o_assignment == MAYBE_ASSIGNMENT
5433 /* check that we are not in word in "a=1 2>word b=1": */
5434 && !ctx.pending_redirect
5435 ) {
5436 /* ch is a special char and thus this word
5437 * cannot be an assignment */
5438 dest.o_assignment = NOT_ASSIGNMENT;
5439 }
5440
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005441 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005442 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005443 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005444 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005445 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005446 if (ch == EOF || ch == '\n')
5447 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005448 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005449 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005450 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005451 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005452 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005453 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005454 }
5455 break;
5456 case '\\':
5457 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005458 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005459 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005460 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005461 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005462 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005463 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005464 o_addchr(&dest, ch);
5465 /* Example: echo Hello \2>file
5466 * we need to know that word 2 is quoted */
5467 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005468 break;
5469 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005470 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005471 debug_printf_parse("parse_stream parse error: "
5472 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005473 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005474 }
Eric Andersen25f27032001-04-26 23:22:31 +00005475 break;
5476 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005477 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005478 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005479 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005480 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005481 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005482 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005483 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005484 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005485 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005486 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005487 if (dest.o_assignment == NOT_ASSIGNMENT)
5488 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005489 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005490 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005491 }
Eric Andersen25f27032001-04-26 23:22:31 +00005492 break;
5493 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005494 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005495 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005496 if (dest.o_assignment == NOT_ASSIGNMENT)
5497 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005498 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005499#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005500 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005501#if !BB_MMU
5502 int pos;
5503#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005504 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5505 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005506#if !BB_MMU
5507 pos = dest.length;
5508#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005509 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005510#if !BB_MMU
5511 o_addstr(&ctx.as_string, dest.data + pos);
5512 o_addchr(&ctx.as_string, '`');
5513#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005514 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5515 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005516 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005517 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005518#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005519 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005520#if ENABLE_HUSH_CASE
5521 case_semi:
5522#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005523 if (done_word(&dest, &ctx)) {
5524 goto parse_error;
5525 }
5526 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005527#if ENABLE_HUSH_CASE
5528 /* Eat multiple semicolons, detect
5529 * whether it means something special */
5530 while (1) {
5531 ch = i_peek(input);
5532 if (ch != ';')
5533 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005534 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005535 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005536 if (ctx.ctx_res_w == RES_CASEI) {
5537 ctx.ctx_dsemicolon = 1;
5538 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005539 break;
5540 }
5541 }
5542#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005543 new_cmd:
5544 /* We just finished a cmd. New one may start
5545 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005546 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005547 break;
5548 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005549 if (done_word(&dest, &ctx)) {
5550 goto parse_error;
5551 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005552 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005553 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005554 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005555 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005556 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005557 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005558 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005559 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005560 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005561 if (done_word(&dest, &ctx)) {
5562 goto parse_error;
5563 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005564#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005565 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005566 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005567#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005568 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005569 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005570 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005571 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005572 } else {
5573 /* we could pick up a file descriptor choice here
5574 * with redirect_opt_num(), but bash doesn't do it.
5575 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005576 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005577 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005578 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005579 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005580#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005581 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005582 if (ctx.ctx_res_w == RES_MATCH
5583 && ctx.command->argv == NULL /* not (word|(... */
5584 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005585 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005586 ) {
5587 continue;
5588 }
5589#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005590 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005591 if (parse_group(&dest, &ctx, input, ch) != 0) {
5592 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005593 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005594 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005595 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005596#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005597 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005598 goto case_semi;
5599#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005600 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005601 /* proper use of this character is caught by end_trigger:
5602 * if we see {, we call parse_group(..., end_trigger='}')
5603 * and it will match } earlier (not here). */
Denis Vlasenkoc0ea3292009-04-10 21:22:02 +00005604 syntax_error_unexpected_ch(ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005605 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005606 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005607 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005608 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005609 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005610 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005611
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005612 parse_error:
5613 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005614 struct parse_context *pctx;
5615 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005616
5617 /* Clean up allocated tree.
5618 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005619 * Run them from interactive shell, watch pmap `pidof hush`.
5620 * while if false; then false; fi do break; done
5621 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005622 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005623 * Samples to catch leaks at execution:
5624 * while if (true | {true;}); then echo ok; fi; do break; done
5625 * 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 +00005626 */
5627 pctx = &ctx;
5628 do {
5629 /* Update pipe/command counts,
5630 * otherwise freeing may miss some */
5631 done_pipe(pctx, PIPE_SEQ);
5632 debug_printf_clean("freeing list %p from ctx %p\n",
5633 pctx->list_head, pctx);
5634 debug_print_tree(pctx->list_head, 0);
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005635 free_pipe_list(pctx->list_head);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005636 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005637#if !BB_MMU
5638 o_free_unsafe(&pctx->as_string);
5639#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005640 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005641 if (pctx != &ctx) {
5642 free(pctx);
5643 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005644 IF_HAS_KEYWORDS(pctx = p2;)
5645 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005646 /* Free text, clear all dest fields */
5647 o_free(&dest);
5648 /* If we are not in top-level parse, we return,
5649 * our caller will propagate error.
5650 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005651 if (end_trigger != ';') {
5652#if !BB_MMU
5653 if (pstring)
5654 *pstring = NULL;
5655#endif
Denis Vlasenko0701dca2009-04-11 10:38:47 +00005656 debug_leave();
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005657 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005658 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005659 /* Discard cached input, force prompt */
5660 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005661 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005662 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005663 }
Eric Andersen25f27032001-04-26 23:22:31 +00005664}
5665
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005666/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005667 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5668 * end_trigger controls how often we stop parsing
5669 * NUL: parse all, execute, return
5670 * ';': parse till ';' or newline, execute, repeat till EOF
5671 */
5672static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005673{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005674 while (1) {
5675 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005676
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005677 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005678 if (!pipe_list) /* EOF */
5679 break;
5680 debug_print_tree(pipe_list, 0);
5681 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5682 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005683 }
Eric Andersen25f27032001-04-26 23:22:31 +00005684}
5685
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005686static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005687{
5688 struct in_str input;
5689 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005690 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005691}
5692
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005693static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005694{
Eric Andersen25f27032001-04-26 23:22:31 +00005695 struct in_str input;
5696 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005697 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005698}
5699
Denis Vlasenkof9375282009-04-05 19:13:39 +00005700/* Called a few times only (or even once if "sh -c") */
5701static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005702{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005703 unsigned sig;
5704 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005705
Denis Vlasenkof9375282009-04-05 19:13:39 +00005706 mask = (1 << SIGQUIT);
5707 if (G_interactive_fd) {
5708 mask = 0
5709 | (1 << SIGQUIT)
5710 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005711//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005712#if ENABLE_HUSH_JOB
5713 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5714#endif
5715 | (1 << SIGINT)
5716 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005717 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005718 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005719
Denis Vlasenkof9375282009-04-05 19:13:39 +00005720 if (!second_time)
5721 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5722 sig = 0;
5723 while (mask) {
5724 if (mask & 1)
5725 sigaddset(&G.blocked_set, sig);
5726 mask >>= 1;
5727 sig++;
5728 }
5729 sigdelset(&G.blocked_set, SIGCHLD);
5730
5731 sigprocmask(SIG_SETMASK, &G.blocked_set,
5732 second_time ? NULL : &G.inherited_set);
5733 /* POSIX allows shell to re-enable SIGCHLD
5734 * even if it was SIG_IGN on entry */
5735// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5736 if (!second_time)
5737 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5738}
5739
5740#if ENABLE_HUSH_JOB
5741/* helper */
5742static void maybe_set_to_sigexit(int sig)
5743{
5744 void (*handler)(int);
5745 /* non_DFL_mask'ed signals are, well, masked,
5746 * no need to set handler for them.
5747 */
5748 if (!((G.non_DFL_mask >> sig) & 1)) {
5749 handler = signal(sig, sigexit);
5750 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5751 signal(sig, handler);
5752 }
5753}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005754/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005755static void set_fatal_handlers(void)
5756{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005757 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005758 if (HUSH_DEBUG) {
5759 maybe_set_to_sigexit(SIGILL );
5760 maybe_set_to_sigexit(SIGFPE );
5761 maybe_set_to_sigexit(SIGBUS );
5762 maybe_set_to_sigexit(SIGSEGV);
5763 maybe_set_to_sigexit(SIGTRAP);
5764 } /* else: hush is perfect. what SEGV? */
5765 maybe_set_to_sigexit(SIGABRT);
5766 /* bash 3.2 seems to handle these just like 'fatal' ones */
5767 maybe_set_to_sigexit(SIGPIPE);
5768 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005769//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005770 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005771 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005772 * if we aren't interactive... but in this case
5773 * we never want to restore pgrp on exit, and this fn is not called */
5774 /*maybe_set_to_sigexit(SIGTERM);*/
5775 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005776}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005777#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005778
Denis Vlasenkod5762932009-03-31 11:22:57 +00005779static int set_mode(const char cstate, const char mode)
5780{
5781 int state = (cstate == '-' ? 1 : 0);
5782 switch (mode) {
5783 case 'n': G.fake_mode = state; break;
5784 case 'x': /*G.debug_mode = state;*/ break;
5785 default: return EXIT_FAILURE;
5786 }
5787 return EXIT_SUCCESS;
5788}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005789
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005790int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005791int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005792{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005793 static const struct variable const_shell_ver = {
5794 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005795 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005796 .max_len = 1, /* 0 can provoke free(name) */
5797 .flg_export = 1,
5798 .flg_read_only = 1,
5799 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005800 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005801 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005802 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005803 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005804
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005805 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005806 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005807 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005808#if !BB_MMU
5809 G.argv0_for_re_execing = argv[0];
5810#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005811 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005812 G.shell_ver = const_shell_ver; /* copying struct here */
5813 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005814 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005815 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5816 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005817 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005818 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005819 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005820 if (e) while (*e) {
5821 char *value = strchr(*e, '=');
5822 if (value) { /* paranoia */
5823 cur_var->next = xzalloc(sizeof(*cur_var));
5824 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005825 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005826 cur_var->max_len = strlen(*e);
5827 cur_var->flg_export = 1;
5828 }
5829 e++;
5830 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005831 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005832 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005833#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005834 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005835#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005836 G.global_argc = argc;
5837 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005838 /* Initialize some more globals to non-zero values */
5839 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005840#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005841 if (ENABLE_FEATURE_EDITING)
5842 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005843 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005844#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005845
Denis Vlasenkoed782372009-04-10 00:45:02 +00005846 if (setjmp(die_jmp)) {
5847 /* xfunc has failed! die die die */
5848 /* no EXIT traps, this is an escape hatch! */
5849 G.exiting = 1;
5850 hush_exit(xfunc_error_retval);
5851 }
5852
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005853 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005854 * block_signals(0) if we are going to execute "sh <script>",
5855 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005856 * If we later decide that we are interactive, we run block_signals(0)
5857 * (or re-run block_signals(1) if we ran block_signals(0) before)
5858 * in order to intercept (more) signals.
5859 */
5860
5861 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005862 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005863 while (1) {
5864 opt = getopt(argc, argv, "c:xins"
5865#if !BB_MMU
Denis Vlasenkobc569742009-04-12 20:35:19 +00005866 "<:$:R:V:"
5867# if ENABLE_HUSH_FUNCTIONS
5868 "F:"
5869# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005870#endif
5871 );
5872 if (opt <= 0)
5873 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005874 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005875 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005876 if (!G.root_pid)
5877 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005878 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005879 if (!argv[optind]) {
5880 /* -c 'script' (no params): prevent empty $0 */
5881 *--G.global_argv = argv[0];
5882 optind--;
5883 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005884 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005885 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005886 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005887 goto final_return;
5888 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005889 /* Well, we cannot just declare interactiveness,
5890 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005891 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005892 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005893 case 's':
5894 /* "-s" means "read from stdin", but this is how we always
5895 * operate, so simply do nothing here. */
5896 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005897#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005898 case '<': /* "big heredoc" support */
5899 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5900 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005901 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005902 G.root_pid = bb_strtou(optarg, &optarg, 16);
5903 optarg++;
5904 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5905 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005906 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005907# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005908 optarg++;
5909 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005910# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005911 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005912 case 'R':
5913 case 'V':
5914 set_local_var(xstrdup(optarg), 0, opt == 'R');
5915 break;
Denis Vlasenkobc569742009-04-12 20:35:19 +00005916# if ENABLE_HUSH_FUNCTIONS
5917 case 'F': {
5918 struct function *funcp = new_function(optarg);
5919 /* funcp->name is already set to optarg */
5920 /* funcp->body is set to NULL. It's a special case. */
5921 funcp->body_as_string = argv[optind];
5922 optind++;
5923 break;
5924 }
5925# endif
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005926#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005927 case 'n':
5928 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005929 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005930 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005931 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005932#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005933 fprintf(stderr, "Usage: sh [FILE]...\n"
5934 " or: sh -c command [args]...\n\n");
5935 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005936#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005937 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005938#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005939 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005940 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005941
5942 if (!G.root_pid)
5943 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005944
5945 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005946 if (argv[0] && argv[0][0] == '-') {
5947 FILE *input;
5948 /* XXX what should argv be while sourcing /etc/profile? */
5949 debug_printf("sourcing /etc/profile\n");
5950 input = fopen_for_read("/etc/profile");
5951 if (input != NULL) {
5952 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005953 block_signals(0); /* 0: called 1st time */
5954 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005955 parse_and_run_file(input);
5956 fclose(input);
5957 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005958 /* bash: after sourcing /etc/profile,
5959 * tries to source (in the given order):
5960 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5961 * stopping of first found. --noprofile turns this off.
5962 * bash also sources ~/.bash_logout on exit.
5963 * If called as sh, skips .bash_XXX files.
5964 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005965 }
5966
Denis Vlasenkof9375282009-04-05 19:13:39 +00005967 if (argv[optind]) {
5968 FILE *input;
5969 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005970 * "bash <script>" (which is never interactive (unless -i?))
5971 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005972 * If called as sh, does the same but with $ENV.
5973 */
5974 debug_printf("running script '%s'\n", argv[optind]);
5975 G.global_argv = argv + optind;
5976 G.global_argc = argc - optind;
5977 input = xfopen_for_read(argv[optind]);
5978 close_on_exec_on(fileno(input));
5979 if (!signal_mask_is_inited)
5980 block_signals(0); /* 0: called 1st time */
5981 parse_and_run_file(input);
5982#if ENABLE_FEATURE_CLEAN_UP
5983 fclose(input);
5984#endif
5985 goto final_return;
5986 }
5987
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005988 /* Up to here, shell was non-interactive. Now it may become one.
5989 * NB: don't forget to (re)run block_signals(0/1) as needed.
5990 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005991
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005992 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005993 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005994 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005995 * no arguments remaining or the -s flag given
5996 * standard input is a terminal
5997 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005998 * Refer to Posix.2, the description of the 'sh' utility.
5999 */
6000#if ENABLE_HUSH_JOB
6001 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006002 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00006003 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00006004//TODO: "interactive" and "have job control" are two different things.
6005//If tcgetpgrp fails here, "have job control" is false, but "interactive"
6006//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00006007 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006008 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006009 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6010 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006011 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006012 G_interactive_fd = dup(STDIN_FILENO);
6013 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006014 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006015 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006016 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00006017// TODO: track & disallow any attempts of user
6018// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00006019 }
Eric Andersen25f27032001-04-26 23:22:31 +00006020 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00006021 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006022 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006023 pid_t shell_pgrp;
6024
6025 /* We are indeed interactive shell, and we will perform
6026 * job control. Setting up for that. */
6027
6028 close_on_exec_on(G_interactive_fd);
6029 /* If we were run as 'hush &', sleep until we are
6030 * in the foreground (tty pgrp == our pgrp).
6031 * If we get started under a job aware app (like bash),
6032 * make sure we are now in charge so we don't fight over
6033 * who gets the foreground */
6034 while (1) {
6035 shell_pgrp = getpgrp();
6036 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
6037 if (G.saved_tty_pgrp == shell_pgrp)
6038 break;
6039 /* send TTIN to ourself (should stop us) */
6040 kill(- shell_pgrp, SIGTTIN);
6041 }
6042 /* Block some signals */
6043 block_signals(signal_mask_is_inited);
6044 /* Set other signals to restore saved_tty_pgrp */
6045 set_fatal_handlers();
6046 /* Put ourselves in our own process group */
6047 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
6048 /* Grab control of the terminal */
6049 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00006050 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00006051 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00006052 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00006053 } else if (!signal_mask_is_inited) {
6054 block_signals(0); /* 0: called 1st time */
6055 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006056#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00006057 /* No job control compiled in, only prompt/line editing */
6058 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006059 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
6060 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006061 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006062 G_interactive_fd = dup(STDIN_FILENO);
6063 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006064 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006065 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00006066 }
6067 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006068 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00006069 close_on_exec_on(G_interactive_fd);
6070 block_signals(signal_mask_is_inited);
6071 } else if (!signal_mask_is_inited) {
6072 block_signals(0);
6073 }
6074#else
6075 /* We have interactiveness code disabled */
6076 if (!signal_mask_is_inited) {
6077 block_signals(0);
6078 }
6079#endif
6080 /* bash:
6081 * if interactive but not a login shell, sources ~/.bashrc
6082 * (--norc turns this off, --rcfile <file> overrides)
6083 */
6084
6085 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00006086 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00006087 printf("Enter 'help' for a list of built-in commands.\n\n");
6088 }
6089
Denis Vlasenkof9375282009-04-05 19:13:39 +00006090 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00006091
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006092 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00006093#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00006094 if (G.cwd != bb_msg_unknown)
6095 free((char*)G.cwd);
6096 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006097 while (cur_var) {
6098 struct variable *tmp = cur_var;
6099 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00006100 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00006101 cur_var = cur_var->next;
6102 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00006103 }
Eric Andersen25f27032001-04-26 23:22:31 +00006104#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006105 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00006106}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00006107
6108
6109#if ENABLE_LASH
6110int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
6111int lash_main(int argc, char **argv)
6112{
6113 //bb_error_msg("lash is deprecated, please use hush instead");
6114 return hush_main(argc, argv);
6115}
6116#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006117
6118
6119/*
6120 * Built-ins
6121 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006122static int builtin_trap(char **argv)
6123{
Denis Vlasenkod5762932009-03-31 11:22:57 +00006124 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006125 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006126 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006127
6128 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006129 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006130
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006131 argv++;
6132 if (!*argv) {
6133 /* No args: print all trapped. This isn't 100% correct as we
6134 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006135 */
6136 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006137 if (G.traps[i])
6138 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006139 return EXIT_SUCCESS;
6140 }
6141
Denis Vlasenkod5762932009-03-31 11:22:57 +00006142 new_cmd = NULL;
6143 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006144 /* If first arg is decimal: reset all specified signals */
6145 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006146 if (errno == 0) {
6147 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006148 set_all:
6149 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006150 while (*argv) {
6151 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006152 if (sig < 0 || sig >= NSIG) {
6153 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006154 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006155 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
6156 continue;
6157 }
6158
Denis Vlasenkod5762932009-03-31 11:22:57 +00006159 free(G.traps[sig]);
6160 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006161
Denis Vlasenkod5762932009-03-31 11:22:57 +00006162 debug_printf("trap: setting SIG%s (%i) to '%s'",
6163 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006164
6165 /* There is no signal for 0 (EXIT) */
6166 if (sig == 0)
6167 continue;
6168
6169 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006170 sigaddset(&G.blocked_set, sig);
6171 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006172 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00006173 * (if sig has non-DFL handling,
6174 * we don't need to do anything) */
6175 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
6176 continue;
6177 sigdelset(&G.blocked_set, sig);
6178 }
6179 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006180 }
6181 return ret;
6182 }
6183
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006184 /* First arg is "-": reset all specified to default */
6185 /* First arg is "": ignore all specified */
6186 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006187 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006188 bb_error_msg("trap: invalid arguments");
6189 return EXIT_FAILURE;
6190 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00006191 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00006192 new_cmd = *argv;
6193 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00006194 goto set_all;
6195}
6196
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006197static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006198{
6199 return 0;
6200}
6201
6202static int builtin_test(char **argv)
6203{
6204 int argc = 0;
6205 while (*argv) {
6206 argc++;
6207 argv++;
6208 }
6209 return test_main(argc, argv - argc);
6210}
6211
6212static int builtin_echo(char **argv)
6213{
6214 int argc = 0;
6215 while (*argv) {
6216 argc++;
6217 argv++;
6218 }
6219 return echo_main(argc, argv - argc);
6220}
6221
6222static int builtin_eval(char **argv)
6223{
6224 int rcode = EXIT_SUCCESS;
6225
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006226 if (*++argv) {
6227 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006228 /* bash:
6229 * eval "echo Hi; done" ("done" is syntax error):
6230 * "echo Hi" will not execute too.
6231 */
6232 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006233 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006234 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006235 }
6236 return rcode;
6237}
6238
6239static int builtin_cd(char **argv)
6240{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006241 const char *newdir = argv[1];
6242 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006243 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006244 * bash says "bash: cd: HOME not set" and does nothing
6245 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006246 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006247 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006248 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006249 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006250 /* Mimic bash message exactly */
6251 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006252 return EXIT_FAILURE;
6253 }
6254 set_cwd();
6255 return EXIT_SUCCESS;
6256}
6257
6258static int builtin_exec(char **argv)
6259{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006260 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006261 return EXIT_SUCCESS; /* bash does this */
6262 {
6263#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00006264 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006265#endif
6266// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006267 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006268 /* never returns */
6269 }
6270}
6271
6272static int builtin_exit(char **argv)
6273{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006274 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006275// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6276 //puts("exit"); /* bash does it */
6277// TODO: warn if we have background jobs: "There are stopped jobs"
6278// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006279// perhaps use G.exiting = -1 as indicator "last cmd was exit"
6280
6281 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006282 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006283 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006284 /* mimic bash: exit 123abc == exit 255 + error msg */
6285 xfunc_error_retval = 255;
6286 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006287 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006288}
6289
6290static int builtin_export(char **argv)
6291{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006292 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006293 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006294 if (e) {
6295 while (*e) {
6296#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006297 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006298#else
6299 /* ash emits: export VAR='VAL'
6300 * bash: declare -x VAR="VAL"
6301 * we follow ash example */
6302 const char *s = *e++;
6303 const char *p = strchr(s, '=');
6304
6305 if (!p) /* wtf? take next variable */
6306 continue;
6307 /* export var= */
6308 printf("export %.*s", (int)(p - s) + 1, s);
6309 s = p + 1;
6310 while (*s) {
6311 if (*s != '\'') {
6312 p = strchrnul(s, '\'');
6313 /* print 'xxxx' */
6314 printf("'%.*s'", (int)(p - s), s);
6315 if (*p == '\0')
6316 break;
6317 s = p;
6318 }
6319 /* s points to '; print ''...'''" */
6320 putchar('"');
6321 do putchar('\''); while (*++s == '\'');
6322 putchar('"');
6323 }
6324 putchar('\n');
6325#endif
6326 }
6327 fflush(stdout);
6328 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006329 return EXIT_SUCCESS;
6330 }
6331
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006332 do {
6333 const char *value;
6334 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006335
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006336 value = strchr(name, '=');
6337 if (!value) {
6338 /* They are exporting something without a =VALUE */
6339 struct variable *var;
6340
6341 var = get_local_var(name);
6342 if (var) {
6343 var->flg_export = 1;
6344 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6345 putenv(var->varstr);
6346 }
6347 /* bash does not return an error when trying to export
6348 * an undefined variable. Do likewise. */
6349 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006350 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006351 set_local_var(xstrdup(name), 1, 0);
6352 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006353
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006354 return EXIT_SUCCESS;
6355}
6356
6357#if ENABLE_HUSH_JOB
6358/* built-in 'fg' and 'bg' handler */
6359static int builtin_fg_bg(char **argv)
6360{
6361 int i, jobnum;
6362 struct pipe *pi;
6363
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006364 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006365 return EXIT_FAILURE;
6366 /* If they gave us no args, assume they want the last backgrounded task */
6367 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006368 for (pi = G.job_list; pi; pi = pi->next) {
6369 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006370 goto found;
6371 }
6372 }
6373 bb_error_msg("%s: no current job", argv[0]);
6374 return EXIT_FAILURE;
6375 }
6376 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6377 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6378 return EXIT_FAILURE;
6379 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006380 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006381 if (pi->jobid == jobnum) {
6382 goto found;
6383 }
6384 }
6385 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6386 return EXIT_FAILURE;
6387 found:
6388 // TODO: bash prints a string representation
6389 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006390 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006391 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006392 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006393 }
6394
6395 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006396 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6397 for (i = 0; i < pi->num_cmds; i++) {
6398 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6399 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006400 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006401 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006402
6403 i = kill(- pi->pgrp, SIGCONT);
6404 if (i < 0) {
6405 if (errno == ESRCH) {
6406 delete_finished_bg_job(pi);
6407 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006408 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006409 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006410 }
6411
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006412 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006413 remove_bg_job(pi);
6414 return checkjobs_and_fg_shell(pi);
6415 }
6416 return EXIT_SUCCESS;
6417}
6418#endif
6419
6420#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006421static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006422{
6423 const struct built_in_command *x;
6424
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006425 printf("\n"
6426 "Built-in commands:\n"
6427 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006428 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6429 printf("%s\t%s\n", x->cmd, x->descr);
6430 }
6431 printf("\n\n");
6432 return EXIT_SUCCESS;
6433}
6434#endif
6435
6436#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006437static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006438{
6439 struct pipe *job;
6440 const char *status_string;
6441
Denis Vlasenko87a86552008-07-29 19:43:10 +00006442 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006443 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006444 status_string = "Stopped";
6445 else
6446 status_string = "Running";
6447
6448 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6449 }
6450 return EXIT_SUCCESS;
6451}
6452#endif
6453
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006454#if HUSH_DEBUG
6455static int builtin_memleak(char **argv UNUSED_PARAM)
6456{
6457 void *p;
6458 unsigned long l;
6459
6460 /* Crude attempt to find where "free memory" starts,
6461 * sans fragmentation. */
6462 p = malloc(240);
6463 l = (unsigned long)p;
6464 free(p);
6465 p = malloc(3400);
6466 if (l < (unsigned long)p) l = (unsigned long)p;
6467 free(p);
6468
6469 if (!G.memleak_value)
6470 G.memleak_value = l;
6471
6472 l -= G.memleak_value;
6473 if ((long)l < 0)
6474 l = 0;
6475 l /= 1024;
6476 if (l > 127)
6477 l = 127;
6478
6479 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6480 return l;
6481}
6482#endif
6483
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006484static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006485{
6486 puts(set_cwd());
6487 return EXIT_SUCCESS;
6488}
6489
6490static int builtin_read(char **argv)
6491{
6492 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006493 const char *name = "REPLY";
6494
6495 if (argv[1]) {
6496 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006497 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6498 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006499 if (!is_well_formed_var_name(name, '\0')) {
6500 /* Mimic bash message */
6501 bb_error_msg("read: '%s': not a valid identifier", name);
6502 return 1;
6503 }
6504 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006505
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006506//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6507
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006508 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006509 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006510}
6511
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006512/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6513 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006514 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006515 * set [-abCefhmnuvx] [-o option] [argument...]
6516 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006517 * set -- [argument...]
6518 * set -o
6519 * set +o
6520 * Implementations shall support the options in both their hyphen and
6521 * plus-sign forms. These options can also be specified as options to sh.
6522 * Examples:
6523 * Write out all variables and their values: set
6524 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6525 * Turn on the -x and -v options: set -xv
6526 * Unset all positional parameters: set --
6527 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6528 * Set the positional parameters to the expansion of x, even if x expands
6529 * with a leading '-' or '+': set -- $x
6530 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006531 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006532 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006533static int builtin_set(char **argv)
6534{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006535 int n;
6536 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006537 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006538
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006539 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006540 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006541 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006542 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006543 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006544 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006545
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006546 do {
6547 if (!strcmp(arg, "--")) {
6548 ++argv;
6549 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006550 }
Denis Vlasenko6ba6f542009-04-10 21:57:50 +00006551 if (arg[0] != '+' && arg[0] != '-')
6552 break;
6553 for (n = 1; arg[n]; ++n)
6554 if (set_mode(arg[0], arg[n]))
6555 goto error;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006556 } while ((arg = *++argv) != NULL);
6557 /* Now argv[0] is 1st argument */
6558
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006559 if (arg == NULL)
6560 return EXIT_SUCCESS;
6561 set_argv:
6562
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006563 /* NB: G.global_argv[0] ($0) is never freed/changed */
6564 g_argv = G.global_argv;
6565 if (G.global_args_malloced) {
6566 pp = g_argv;
6567 while (*++pp)
6568 free(*pp);
6569 g_argv[1] = NULL;
6570 } else {
6571 G.global_args_malloced = 1;
6572 pp = xzalloc(sizeof(pp[0]) * 2);
6573 pp[0] = g_argv[0]; /* retain $0 */
6574 g_argv = pp;
6575 }
6576 /* This realloc's G.global_argv */
6577 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6578
6579 n = 1;
6580 while (*++pp)
6581 n++;
6582 G.global_argc = n;
6583
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006584 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006585
6586 /* Nothing known, so abort */
6587 error:
6588 bb_error_msg("set: %s: invalid option", arg);
6589 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006590}
6591
6592static int builtin_shift(char **argv)
6593{
6594 int n = 1;
6595 if (argv[1]) {
6596 n = atoi(argv[1]);
6597 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006598 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006599 if (G.global_args_malloced) {
6600 int m = 1;
6601 while (m <= n)
6602 free(G.global_argv[m++]);
6603 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006604 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006605 memmove(&G.global_argv[1], &G.global_argv[n+1],
6606 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006607 return EXIT_SUCCESS;
6608 }
6609 return EXIT_FAILURE;
6610}
6611
6612static int builtin_source(char **argv)
6613{
6614 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006615
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006616 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006617 return EXIT_FAILURE;
6618
6619 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006620 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006621 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006622 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006623 return EXIT_FAILURE;
6624 }
6625 close_on_exec_on(fileno(input));
6626
6627 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006628//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006629 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006630 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006631 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006632 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006633 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006634 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006635}
6636
6637static int builtin_umask(char **argv)
6638{
6639 mode_t new_umask;
6640 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006641 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006642//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006643 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006644 if (errno) {
6645 //Message? bash examples:
6646 //bash: umask: 'q': invalid symbolic mode operator
6647 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006648 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006649 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006650 } else {
6651 new_umask = umask(0);
6652 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006653 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006654 }
6655 umask(new_umask);
6656 return EXIT_SUCCESS;
6657}
6658
Mike Frysingerd690f682009-03-30 06:50:54 +00006659/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006660static int builtin_unset(char **argv)
6661{
Mike Frysingerd690f682009-03-30 06:50:54 +00006662 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006663 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006664
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006665 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006666 return EXIT_SUCCESS;
6667
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006668 var = 'v';
6669 if (argv[0][0] == '-') {
6670 switch (argv[0][1]) {
6671 case 'v':
6672 case 'f':
6673 var = argv[0][1];
6674 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006675 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006676 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006677 return EXIT_FAILURE;
6678 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006679//TODO: disallow "unset -vf ..." too
6680 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006681 }
6682
6683 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006684 while (*argv) {
6685 if (var == 'v') {
6686 if (unset_local_var(*argv)) {
6687 /* unset <nonexistent_var> doesn't fail.
6688 * Error is when one tries to unset RO var.
6689 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006690 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006691 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006692 }
Denis Vlasenkob7d8c0d2009-04-10 19:05:43 +00006693//#if ENABLE_HUSH_FUNCTIONS
6694// else {
6695// unset_local_func(*argv);
6696// }
6697//#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006698 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006699 }
6700 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006701}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006702
Mike Frysinger56bdea12009-03-28 20:01:58 +00006703/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6704static int builtin_wait(char **argv)
6705{
6706 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006707 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006708
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006709 if (*++argv == NULL) {
6710 /* Don't care about wait results */
6711 /* Note 1: must wait until there are no more children */
6712 /* Note 2: must be interruptible */
6713 /* Examples:
6714 * $ sleep 3 & sleep 6 & wait
6715 * [1] 30934 sleep 3
6716 * [2] 30935 sleep 6
6717 * [1] Done sleep 3
6718 * [2] Done sleep 6
6719 * $ sleep 3 & sleep 6 & wait
6720 * [1] 30936 sleep 3
6721 * [2] 30937 sleep 6
6722 * [1] Done sleep 3
6723 * ^C <-- after ~4 sec from keyboard
6724 * $
6725 */
6726 sigaddset(&G.blocked_set, SIGCHLD);
6727 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6728 while (1) {
6729 checkjobs(NULL);
6730 if (errno == ECHILD)
6731 break;
6732 /* Wait for SIGCHLD or any other signal of interest */
6733 /* sigtimedwait with infinite timeout: */
6734 sig = sigwaitinfo(&G.blocked_set, NULL);
6735 if (sig > 0) {
6736 sig = check_and_run_traps(sig);
6737 if (sig && sig != SIGCHLD) { /* see note 2 */
6738 ret = 128 + sig;
6739 break;
6740 }
6741 }
6742 }
6743 sigdelset(&G.blocked_set, SIGCHLD);
6744 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6745 return ret;
6746 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006747
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006748 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006749 while (*argv) {
6750 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006751 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006752 /* mimic bash message */
6753 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006754 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006755 }
6756 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006757 if (WIFSIGNALED(status))
6758 ret = 128 + WTERMSIG(status);
6759 else if (WIFEXITED(status))
6760 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006761 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006762 ret = EXIT_FAILURE;
6763 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006764 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006765 ret = 127;
6766 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006767 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006768 }
6769
6770 return ret;
6771}
6772
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006773#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006774static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006775{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006776 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006777 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006778 return EXIT_SUCCESS; /* bash compat */
6779 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006780 G.flag_break_continue++; /* BC_BREAK = 1 */
6781 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006782 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006783 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6784 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006785 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006786 G.flag_break_continue = BC_BREAK;
6787 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006788 }
6789 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006790 if (G.depth_of_loop < G.depth_break_continue)
6791 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006792 return EXIT_SUCCESS;
6793}
6794
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006795static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006796{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006797 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6798 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006799}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006800#endif