blob: 9adf0e127344d23f8efa632e90999ef7628827fe [file] [log] [blame]
Eric Andersen25f27032001-04-26 23:22:31 +00001/* vi: set sw=4 ts=4: */
2/*
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003 * A prototype Bourne shell grammar parser.
4 * Intended to follow the original Thompson and Ritchie
5 * "small and simple is beautiful" philosophy, which
6 * incidentally is a good match to today's BusyBox.
Eric Andersen25f27032001-04-26 23:22:31 +00007 *
8 * Copyright (C) 2000,2001 Larry Doolittle <larry@doolittle.boa.org>
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
Eric Andersen25f27032001-04-26 23:22:31 +000043 * Functions
Mike Frysinger25a6ca02009-03-28 13:59:26 +000044 * Tilde Expansion
Mike Frysinger25a6ca02009-03-28 13:59:26 +000045 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000046 * Bash stuff (maybe optionally enable?):
Mike Frysinger25a6ca02009-03-28 13:59:26 +000047 * &> and >& redirection of stdout+stderr
48 * Brace expansion
49 * reserved words: [[ ]] function select
Mike Frysinger6379bb42009-03-28 18:55:03 +000050 * substrings ${var:1:5}
Mike Frysinger25a6ca02009-03-28 13:59:26 +000051 *
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000052 * TODOs:
53 * grep for "TODO" and fix (some of them are easy)
Eric Andersen83a2ae22001-05-07 17:59:25 +000054 * change { and } from special chars to reserved words
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000055 * builtins: return, ulimit
Eric Andersen25f27032001-04-26 23:22:31 +000056 * follow IFS rules more precisely, including update semantics
Eric Andersen25f27032001-04-26 23:22:31 +000057 * figure out what to do with backslash-newline
Eric Andersen25f27032001-04-26 23:22:31 +000058 * continuation lines, both explicit and implicit - done?
Denis Vlasenkoc8d27332009-04-06 10:47:21 +000059 * SIGHUP handling
60 * ^Z handling (and explain it in comments for mere humans)
61 * separate job control from interactiveness
62 * (testcase: booting with init=/bin/hush does not show prompt (2009-04))
63 * functions
Eric Andersen25f27032001-04-26 23:22:31 +000064 *
Bernhard Reutner-Fischer86f5c992006-01-22 22:55:11 +000065 * Licensed under the GPL v2 or later, see the file LICENSE in this tarball.
Eric Andersen25f27032001-04-26 23:22:31 +000066 */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +000067#include "busybox.h" /* for APPLET_IS_NOFORK/NOEXEC */
Denis Vlasenkobe709c22008-07-28 00:01:16 +000068#include <glob.h>
69/* #include <dmalloc.h> */
70#if ENABLE_HUSH_CASE
71#include <fnmatch.h>
72#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000073#include "math.h"
Mike Frysingera4f331d2009-04-07 06:03:22 +000074#include "match.h"
Denis Vlasenko50f3aa42009-04-07 10:52:40 +000075#ifndef PIPE_BUF
76# define PIPE_BUF 4096 /* amount of buffering in a pipe */
77#endif
Mike Frysinger98c52642009-04-02 10:02:37 +000078
Denis Vlasenko1943aec2009-04-09 14:15:57 +000079
80/* Debug build knobs */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000081#define LEAK_HUNTING 0
82#define BUILD_AS_NOMMU 0
83/* Enable/disable sanity checks. Ok to enable in production,
84 * only adds a bit of bloat. Set to >1 to get non-production level verbosity.
85 * Keeping 1 for now even in released versions.
86 */
87#define HUSH_DEBUG 1
88/* In progress... */
89#define ENABLE_HUSH_FUNCTIONS 0
Denis Vlasenko1943aec2009-04-09 14:15:57 +000090
91
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +000092#if BUILD_AS_NOMMU
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +000093# undef BB_MMU
94# undef USE_FOR_NOMMU
95# undef USE_FOR_MMU
96# define BB_MMU 0
97# define USE_FOR_NOMMU(...) __VA_ARGS__
98# define USE_FOR_MMU(...)
99#endif
100
Denis Vlasenko61befda2008-11-25 01:36:03 +0000101#if defined SINGLE_APPLET_MAIN
102/* STANDALONE does not make sense, and won't compile */
103#undef CONFIG_FEATURE_SH_STANDALONE
104#undef ENABLE_FEATURE_SH_STANDALONE
105#undef USE_FEATURE_SH_STANDALONE
106#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
107#define ENABLE_FEATURE_SH_STANDALONE 0
108#define USE_FEATURE_SH_STANDALONE(...)
109#define SKIP_FEATURE_SH_STANDALONE(...) __VA_ARGS__
110#endif
111
Denis Vlasenko05743d72008-02-10 12:10:08 +0000112#if !ENABLE_HUSH_INTERACTIVE
113#undef ENABLE_FEATURE_EDITING
114#define ENABLE_FEATURE_EDITING 0
115#undef ENABLE_FEATURE_EDITING_FANCY_PROMPT
116#define ENABLE_FEATURE_EDITING_FANCY_PROMPT 0
Denis Vlasenko8412d792007-10-01 09:59:47 +0000117#endif
118
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000119/* Do we support ANY keywords? */
120#if ENABLE_HUSH_IF || ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
121#define HAS_KEYWORDS 1
122#define IF_HAS_KEYWORDS(...) __VA_ARGS__
123#define IF_HAS_NO_KEYWORDS(...)
124#else
125#define HAS_KEYWORDS 0
126#define IF_HAS_KEYWORDS(...)
127#define IF_HAS_NO_KEYWORDS(...) __VA_ARGS__
128#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +0000129
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000130/* If you comment out one of these below, it will be #defined later
131 * to perform debug printfs to stderr: */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000132#define debug_printf(...) do {} while (0)
Denis Vlasenko400c5b62007-05-04 13:07:27 +0000133/* Finer-grained debug switches */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000134#define debug_printf_parse(...) do {} while (0)
135#define debug_print_tree(a, b) do {} while (0)
136#define debug_printf_exec(...) do {} while (0)
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000137#define debug_printf_env(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000138#define debug_printf_jobs(...) do {} while (0)
139#define debug_printf_expand(...) do {} while (0)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000140#define debug_printf_glob(...) do {} while (0)
141#define debug_printf_list(...) do {} while (0)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000142#define debug_printf_subst(...) do {} while (0)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000143#define debug_printf_clean(...) do {} while (0)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000144
145#ifndef debug_printf
146#define debug_printf(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000147#endif
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000148
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000149#ifndef debug_printf_parse
150#define debug_printf_parse(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkod01ff132007-05-02 21:40:23 +0000151#endif
152
153#ifndef debug_printf_exec
154#define debug_printf_exec(...) fprintf(stderr, __VA_ARGS__)
155#endif
156
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000157#ifndef debug_printf_env
158#define debug_printf_env(...) fprintf(stderr, __VA_ARGS__)
159#endif
160
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000161#ifndef debug_printf_jobs
162#define debug_printf_jobs(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000163#define DEBUG_JOBS 1
164#else
165#define DEBUG_JOBS 0
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000166#endif
167
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000168#ifndef debug_printf_expand
169#define debug_printf_expand(...) fprintf(stderr, __VA_ARGS__)
170#define DEBUG_EXPAND 1
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000171#else
172#define DEBUG_EXPAND 0
173#endif
174
175#ifndef debug_printf_glob
176#define debug_printf_glob(...) fprintf(stderr, __VA_ARGS__)
177#define DEBUG_GLOB 1
178#else
179#define DEBUG_GLOB 0
180#endif
181
182#ifndef debug_printf_list
183#define debug_printf_list(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000184#endif
185
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000186#ifndef debug_printf_subst
187#define debug_printf_subst(...) fprintf(stderr, __VA_ARGS__)
188#endif
189
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000190#ifndef debug_printf_clean
191/* broken, of course, but OK for testing */
192static const char *indenter(int i)
193{
Denis Vlasenko6ca409e2007-08-12 20:58:27 +0000194 static const char blanks[] ALIGN1 =
195 " ";
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +0000196 return &blanks[sizeof(blanks) - i - 1];
197}
198#define debug_printf_clean(...) fprintf(stderr, __VA_ARGS__)
Denis Vlasenkoc666f712007-05-16 22:18:54 +0000199#define DEBUG_CLEAN 1
Denis Vlasenkoa0e65122009-04-05 23:39:14 +0000200#else
201#define DEBUG_CLEAN 0
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +0000202#endif
203
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000204#if DEBUG_EXPAND
205static void debug_print_strings(const char *prefix, char **vv)
206{
207 fprintf(stderr, "%s:\n", prefix);
208 while (*vv)
209 fprintf(stderr, " '%s'\n", *vv++);
210}
211#else
212#define debug_print_strings(prefix, vv) ((void)0)
213#endif
214
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000215#define ERR_PTR ((void*)(long)1)
216
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000217#define JOB_STATUS_FORMAT "[%d] %-22s %.40s\n"
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000218
Denis Vlasenkob6e65562009-04-03 16:49:04 +0000219#define SPECIAL_VAR_SYMBOL 3
Eric Andersen25f27032001-04-26 23:22:31 +0000220
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000221static const char hush_version_str[] ALIGN1 = "HUSH_VERSION="BB_VER;
222
223/* This supports saving pointers malloced in vfork child,
224 * to be freed in the parent. One pointer is saved in
225 * G.argv_from_re_execing global var instead. TODO: unify.
226 */
227#if !BB_MMU
228typedef struct nommu_save_t {
229 char **new_env;
230 char **old_env;
231 char **argv;
232} nommu_save_t;
233#endif
234
Denis Vlasenko55789c62008-06-18 16:30:42 +0000235/* The descrip member of this structure is only used to make
236 * debugging output pretty */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000237static const struct {
238 int mode;
Denis Vlasenkoef36ead2007-05-02 15:34:47 +0000239 signed char default_fd;
240 char descrip[3];
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +0000241} redir_table[] = {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000242 { 0, 0, "??" },
Eric Andersen25f27032001-04-26 23:22:31 +0000243 { O_RDONLY, 0, "<" },
244 { O_CREAT|O_TRUNC|O_WRONLY, 1, ">" },
245 { O_CREAT|O_APPEND|O_WRONLY, 1, ">>" },
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +0000246 { O_RDONLY, 0, "<<" },
247 { O_CREAT|O_RDWR, 1, "<>" },
248/* Should not be needed. Bogus default_fd helps in debugging */
249/* { O_RDONLY, 77, "<<" }, */
Eric Andersen25f27032001-04-26 23:22:31 +0000250};
251
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000252typedef enum reserved_style {
Eric Andersen25f27032001-04-26 23:22:31 +0000253 RES_NONE = 0,
Denis Vlasenko06810332007-05-21 23:30:54 +0000254#if ENABLE_HUSH_IF
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000255 RES_IF ,
256 RES_THEN ,
257 RES_ELIF ,
258 RES_ELSE ,
259 RES_FI ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000260#endif
261#if ENABLE_HUSH_LOOPS
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000262 RES_FOR ,
263 RES_WHILE ,
264 RES_UNTIL ,
265 RES_DO ,
266 RES_DONE ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +0000267#endif
268#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000269 RES_IN ,
Denis Vlasenko06810332007-05-21 23:30:54 +0000270#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +0000271#if ENABLE_HUSH_CASE
272 RES_CASE ,
273 /* two pseudo-keywords support contrived "case" syntax: */
274 RES_MATCH , /* "word)" */
275 RES_CASEI , /* "this command is inside CASE" */
276 RES_ESAC ,
277#endif
278 RES_XXXX ,
279 RES_SNTX
Eric Andersen25f27032001-04-26 23:22:31 +0000280} reserved_style;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000281
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000282typedef struct o_string {
283 char *data;
284 int length; /* position where data is appended */
285 int maxlen;
286 /* Protect newly added chars against globbing
287 * (by prepending \ to *, ?, [, \) */
288 smallint o_escape;
289 smallint o_glob;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000290 /* At least some part of the string was inside '' or "",
291 * possibly empty one: word"", wo''rd etc. */
292 smallint o_quoted;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000293 smallint has_empty_slot;
294 smallint o_assignment; /* 0:maybe, 1:yes, 2:no */
295} o_string;
296enum {
297 MAYBE_ASSIGNMENT = 0,
298 DEFINITELY_ASSIGNMENT = 1,
299 NOT_ASSIGNMENT = 2,
300 WORD_IS_KEYWORD = 3, /* not assigment, but next word may be: "if v=xyz cmd;" */
301};
302/* Used for initialization: o_string foo = NULL_O_STRING; */
303#define NULL_O_STRING { NULL }
304
305/* I can almost use ordinary FILE*. Is open_memstream() universally
306 * available? Where is it documented? */
307typedef struct in_str {
308 const char *p;
309 /* eof_flag=1: last char in ->p is really an EOF */
310 char eof_flag; /* meaningless if ->p == NULL */
311 char peek_buf[2];
312#if ENABLE_HUSH_INTERACTIVE
313 smallint promptme;
314 smallint promptmode; /* 0: PS1, 1: PS2 */
315#endif
316 FILE *file;
317 int (*get) (struct in_str *);
318 int (*peek) (struct in_str *);
319} in_str;
320#define i_getch(input) ((input)->get(input))
321#define i_peek(input) ((input)->peek(input))
322
Eric Andersen25f27032001-04-26 23:22:31 +0000323struct redir_struct {
Denis Vlasenko55789c62008-06-18 16:30:42 +0000324 struct redir_struct *next;
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000325 char *rd_filename; /* filename */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000326 int rd_fd; /* fd to redirect */
327 /* fd to redirect to, or -3 if rd_fd is to be closed (n>&-) */
328 int rd_dup;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000329 smallint rd_type; /* (enum redir_type) */
330 /* note: for heredocs, rd_filename contains heredoc delimiter,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000331 * and subsequently heredoc itself; and rd_dup is a bitmask:
332 * 1: do we need to trim leading tabs?
333 * 2: is heredoc quoted (<<'dleim' syntax) ?
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000334 */
Eric Andersen25f27032001-04-26 23:22:31 +0000335};
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000336typedef enum redir_type {
337 REDIRECT_INVALID = 0,
338 REDIRECT_INPUT = 1,
339 REDIRECT_OVERWRITE = 2,
340 REDIRECT_APPEND = 3,
341 REDIRECT_HEREDOC = 4,
342 REDIRECT_IO = 5,
343 REDIRECT_HEREDOC2 = 6, /* REDIRECT_HEREDOC after heredoc is loaded */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000344
345 REDIRFD_CLOSE = -3,
346 REDIRFD_SYNTAX_ERR = -2,
Denis Vlasenko835fcfd2009-04-10 13:51:56 +0000347 REDIRFD_TO_FILE = -1,
348 /* otherwise, rd_fd is redirected to rd_dup */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +0000349
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +0000350 HEREDOC_SKIPTABS = 1,
351 HEREDOC_QUOTED = 2,
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +0000352} redir_type;
353
Eric Andersen25f27032001-04-26 23:22:31 +0000354
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000355struct command {
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000356 pid_t pid; /* 0 if exited */
Denis Vlasenko2b576b82008-08-04 00:46:07 +0000357 int assignment_cnt; /* how many argv[i] are assignments? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000358 smallint is_stopped; /* is the command currently running? */
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000359 smallint grp_type; /* GRP_xxx */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000360 struct pipe *group; /* if non-NULL, this "command" is { list },
361 * ( list ), or a compound statement */
362#if !BB_MMU
363 char *group_as_string;
364#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000365 char **argv; /* command name and arguments */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000366 struct redir_struct *redirects; /* I/O redirections */
Eric Andersen25f27032001-04-26 23:22:31 +0000367};
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000368/* argv vector may contain variable references (^Cvar^C, ^C0^C etc)
369 * and on execution these are substituted with their values.
370 * Substitution can make _several_ words out of one argv[n]!
371 * Example: argv[0]=='.^C*^C.' here: echo .$*.
Denis Vlasenkoc7985b72008-06-17 05:43:38 +0000372 * References of the form ^C`cmd arg^C are `cmd arg` substitutions.
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +0000373 */
Denis Vlasenko371de4a2008-10-14 12:43:13 +0000374#define GRP_NORMAL 0
375#define GRP_SUBSHELL 1
376#if ENABLE_HUSH_FUNCTIONS
377#define GRP_FUNCTION 2
378#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000379
380struct pipe {
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000381 struct pipe *next;
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000382 int num_cmds; /* total number of commands in job */
383 int alive_cmds; /* number of commands running (not exited) */
384 int stopped_cmds; /* number of commands alive, but stopped */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +0000385#if ENABLE_HUSH_JOB
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000386 int jobid; /* job number */
Denis Vlasenko0c886c62007-01-30 22:30:09 +0000387 pid_t pgrp; /* process group ID for the job */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000388 char *cmdtext; /* name of job */
Denis Vlasenkob81b3df2007-04-28 16:48:04 +0000389#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000390 struct command *cmds; /* array of commands in pipe */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000391 smallint followup; /* PIPE_BG, PIPE_SEQ, PIPE_OR, PIPE_AND */
Denis Vlasenko5ec61322008-06-24 00:50:07 +0000392 IF_HAS_KEYWORDS(smallint pi_inverted;) /* "! cmd | cmd" */
393 IF_HAS_KEYWORDS(smallint res_word;) /* needed for if, for, while, until... */
Eric Andersen25f27032001-04-26 23:22:31 +0000394};
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +0000395typedef enum pipe_style {
396 PIPE_SEQ = 1,
397 PIPE_AND = 2,
398 PIPE_OR = 3,
399 PIPE_BG = 4,
400} pipe_style;
Eric Andersen25f27032001-04-26 23:22:31 +0000401
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000402/* This holds pointers to the various results of parsing */
403struct parse_context {
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000404 /* linked list of pipes */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000405 struct pipe *list_head;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000406 /* last pipe (being constructed right now) */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000407 struct pipe *pipe;
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000408 /* last command in pipe (being constructed right now) */
409 struct command *command;
410 /* last redirect in command->redirects list */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000411 struct redir_struct *pending_redirect;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +0000412#if !BB_MMU
413 o_string as_string;
414#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000415#if HAS_KEYWORDS
416 smallint ctx_res_w;
417 smallint ctx_inverted; /* "! cmd | cmd" */
418#if ENABLE_HUSH_CASE
419 smallint ctx_dsemicolon; /* ";;" seen */
420#endif
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000421 /* bitmask of FLAG_xxx, for figuring out valid reserved words */
422 int old_flag;
423 /* group we are enclosed in:
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000424 * example: "if pipe1; pipe2; then pipe3; fi"
425 * when we see "if" or "then", we malloc and copy current context,
426 * and make ->stack point to it. then we parse pipeN.
427 * when closing "then" / fi" / whatever is found,
428 * we move list_head into ->stack->command->group,
429 * copy ->stack into current context, and delete ->stack.
430 * (parsing of { list } and ( list ) doesn't use this method)
Denis Vlasenkof9f74292009-04-03 00:07:05 +0000431 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +0000432 struct parse_context *stack;
433#endif
434};
435
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000436/* On program start, environ points to initial environment.
437 * putenv adds new pointers into it, unsetenv removes them.
438 * Neither of these (de)allocates the strings.
439 * setenv allocates new strings in malloc space and does putenv,
440 * and thus setenv is unusable (leaky) for shell's purposes */
441#define setenv(...) setenv_is_leaky_dont_use()
442struct variable {
443 struct variable *next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +0000444 char *varstr; /* points to "name=" portion */
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000445 int max_len; /* if > 0, name is part of initial env; else name is malloced */
446 smallint flg_export; /* putenv should be done on this var */
Denis Vlasenko219e88d2007-05-21 10:18:23 +0000447 smallint flg_read_only;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +0000448};
449
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000450enum {
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000451 BC_BREAK = 1,
452 BC_CONTINUE = 2,
453};
454
Denis Vlasenkod76c0492007-05-25 02:16:25 +0000455
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000456/* "Globals" within this file */
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000457/* Sorted roughly by size (smaller offsets == smaller code) */
458struct globals {
459#if ENABLE_HUSH_INTERACTIVE
460 /* 'interactive_fd' is a fd# open to ctty, if we have one
461 * _AND_ if we decided to act interactively */
462 int interactive_fd;
463 const char *PS1;
464 const char *PS2;
Denis Vlasenko60b392f2009-04-03 19:14:32 +0000465#define G_interactive_fd (G.interactive_fd)
466#else
467#define G_interactive_fd 0
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000468#endif
469#if ENABLE_FEATURE_EDITING
470 line_input_t *line_input_state;
471#endif
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +0000472 pid_t root_pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000473 pid_t last_bg_pid;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000474#if ENABLE_HUSH_JOB
475 int run_list_level;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000476 pid_t saved_tty_pgrp;
477 int last_jobid;
478 struct pipe *job_list;
479 struct pipe *toplevel_list;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000480//// smallint ctrl_z_flag;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000481#endif
Denis Vlasenko422cd7c2009-03-31 12:41:52 +0000482 smallint flag_SIGINT;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000483#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +0000484 smallint flag_break_continue;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000485#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000486 smallint fake_mode;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000487 smallint exiting; /* used to prevent EXIT trap recursion */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000488 /* These four support $?, $#, and $1 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +0000489 smalluint last_exitcode;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000490 /* are global_argv and global_argv[1..n] malloced? (note: not [0]) */
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000491 smalluint global_args_malloced;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +0000492 /* how many non-NULL argv's we have. NB: $# + 1 */
493 int global_argc;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000494 char **global_argv;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000495#if !BB_MMU
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +0000496 char *argv0_for_re_execing;
497 char **argv_from_re_execing;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +0000498#endif
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000499#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +0000500 unsigned depth_break_continue;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +0000501 unsigned depth_of_loop;
Denis Vlasenkodadfb492008-07-29 10:16:05 +0000502#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000503 const char *ifs;
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000504 const char *cwd;
Denis Vlasenko87a86552008-07-29 19:43:10 +0000505 struct variable *top_var; /* = &G.shell_ver (set in main()) */
Denis Vlasenko0a83fc32007-05-25 11:12:32 +0000506 struct variable shell_ver;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000507 /* Signal and trap handling */
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000508// unsigned count_SIGCHLD;
509// unsigned handled_SIGCHLD;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000510 /* which signals have non-DFL handler (even with no traps set)? */
511 unsigned non_DFL_mask;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000512 char **traps; /* char *traps[NSIG] */
Denis Vlasenkod5762932009-03-31 11:22:57 +0000513 sigset_t blocked_set;
514 sigset_t inherited_set;
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000515#if HUSH_DEBUG
516 unsigned long memleak_value;
517#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +0000518 char user_input_buf[ENABLE_FEATURE_EDITING ? BUFSIZ : 2];
519#if ENABLE_FEATURE_SH_STANDALONE
520 struct nofork_save_area nofork_save;
521#endif
522#if ENABLE_HUSH_JOB
523 sigjmp_buf toplevel_jb;
524#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000525};
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000526#define G (*ptr_to_globals)
Denis Vlasenko87a86552008-07-29 19:43:10 +0000527/* Not #defining name to G.name - this quickly gets unwieldy
528 * (too many defines). Also, I actually prefer to see when a variable
529 * is global, thus "G." prefix is a useful hint */
Denis Vlasenko574f2f42008-02-27 18:41:59 +0000530#define INIT_G() do { \
531 SET_PTR_TO_GLOBALS(xzalloc(sizeof(G))); \
532} while (0)
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000533
534
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000535/* Function prototypes for builtins */
536static int builtin_cd(char **argv);
537static int builtin_echo(char **argv);
538static int builtin_eval(char **argv);
539static int builtin_exec(char **argv);
540static int builtin_exit(char **argv);
541static int builtin_export(char **argv);
542#if ENABLE_HUSH_JOB
543static int builtin_fg_bg(char **argv);
544static int builtin_jobs(char **argv);
545#endif
546#if ENABLE_HUSH_HELP
547static int builtin_help(char **argv);
548#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000549#if HUSH_DEBUG
550static int builtin_memleak(char **argv);
551#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000552static int builtin_pwd(char **argv);
553static int builtin_read(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000554static int builtin_set(char **argv);
555static int builtin_shift(char **argv);
556static int builtin_source(char **argv);
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000557static int builtin_test(char **argv);
558static int builtin_trap(char **argv);
559static int builtin_true(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000560static int builtin_umask(char **argv);
561static int builtin_unset(char **argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +0000562static int builtin_wait(char **argv);
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000563#if ENABLE_HUSH_LOOPS
564static int builtin_break(char **argv);
565static int builtin_continue(char **argv);
566#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000567
568/* Table of built-in functions. They can be forked or not, depending on
569 * context: within pipes, they fork. As simple commands, they do not.
570 * When used in non-forking context, they can change global variables
571 * in the parent shell process. If forked, of course they cannot.
572 * For example, 'unset foo | whatever' will parse and run, but foo will
573 * still be set at the end. */
574struct built_in_command {
575 const char *cmd;
576 int (*function)(char **argv);
577#if ENABLE_HUSH_HELP
578 const char *descr;
579#define BLTIN(cmd, func, help) { cmd, func, help }
580#else
581#define BLTIN(cmd, func, help) { cmd, func }
582#endif
583};
584
585/* For now, echo and test are unconditionally enabled.
586 * Maybe make it configurable? */
587static const struct built_in_command bltins[] = {
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000588 BLTIN("." , builtin_source , "Run commands in a file"),
589 BLTIN(":" , builtin_true , "No-op"),
590 BLTIN("[" , builtin_test , "Test condition"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000591#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000592 BLTIN("bg" , builtin_fg_bg , "Resume a job in the background"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000593#endif
594#if ENABLE_HUSH_LOOPS
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000595 BLTIN("break" , builtin_break , "Exit from a loop"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000596#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000597 BLTIN("cd" , builtin_cd , "Change directory"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000598#if ENABLE_HUSH_LOOPS
599 BLTIN("continue", builtin_continue, "Start new loop iteration"),
600#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000601 BLTIN("echo" , builtin_echo , "Write to stdout"),
602 BLTIN("eval" , builtin_eval , "Construct and run shell command"),
603 BLTIN("exec" , builtin_exec , "Execute command, don't return to shell"),
604 BLTIN("exit" , builtin_exit , "Exit"),
605 BLTIN("export" , builtin_export , "Set environment variable"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000606#if ENABLE_HUSH_JOB
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000607 BLTIN("fg" , builtin_fg_bg , "Bring job into the foreground"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000608#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000609#if ENABLE_HUSH_HELP
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000610 BLTIN("help" , builtin_help , "List shell built-in commands"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000611#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000612#if ENABLE_HUSH_JOB
613 BLTIN("jobs" , builtin_jobs , "List active jobs"),
614#endif
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +0000615#if HUSH_DEBUG
616 BLTIN("memleak" , builtin_memleak , "Debug tool"),
617#endif
Denis Vlasenko34d4d892009-04-04 20:24:37 +0000618 BLTIN("pwd" , builtin_pwd , "Print current directory"),
619 BLTIN("read" , builtin_read , "Input environment variable"),
620// BLTIN("return" , builtin_return , "Return from a function"),
621 BLTIN("set" , builtin_set , "Set/unset shell local variables"),
622 BLTIN("shift" , builtin_shift , "Shift positional parameters"),
623 BLTIN("test" , builtin_test , "Test condition"),
624 BLTIN("trap" , builtin_trap , "Trap signals"),
625// BLTIN("ulimit" , builtin_return , "Control resource limits"),
626 BLTIN("umask" , builtin_umask , "Set file creation mask"),
627 BLTIN("unset" , builtin_unset , "Unset environment variable"),
628 BLTIN("wait" , builtin_wait , "Wait for process"),
Denis Vlasenko424f79b2009-03-22 14:23:34 +0000629};
630
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +0000631
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000632/* Leak hunting. Use hush_leaktool.sh for post-processing.
633 */
634#if LEAK_HUNTING
635static void *xxmalloc(int lineno, size_t size)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000636{
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000637 void *ptr = xmalloc((size + 0xff) & ~0xff);
638 fdprintf(2, "line %d: malloc %p\n", lineno, ptr);
639 return ptr;
640}
641static void *xxrealloc(int lineno, void *ptr, size_t size)
642{
643 ptr = xrealloc(ptr, (size + 0xff) & ~0xff);
644 fdprintf(2, "line %d: realloc %p\n", lineno, ptr);
645 return ptr;
646}
647static char *xxstrdup(int lineno, const char *str)
648{
649 char *ptr = xstrdup(str);
650 fdprintf(2, "line %d: strdup %p\n", lineno, ptr);
651 return ptr;
652}
653static void xxfree(void *ptr)
654{
655 fdprintf(2, "free %p\n", ptr);
656 free(ptr);
657}
658#define xmalloc(s) xxmalloc(__LINE__, s)
659#define xrealloc(p, s) xxrealloc(__LINE__, p, s)
660#define xstrdup(s) xxstrdup(__LINE__, s)
661#define free(p) xxfree(p)
662#endif
663
664
665/* Syntax and runtime errors. They always abort scripts.
666 * In interactive use they usually discard unparsed and/or unexecuted commands
667 * and return to the prompt.
668 * HUSH_DEBUG >= 2 prints line number in this file where it was detected.
669 */
670#if HUSH_DEBUG < 2
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000671# define die_if_script(lineno, fmt...) die_if_script(fmt)
672# define syntax_error(lineno, msg) syntax_error(msg)
673# define syntax_error_at(lineno, msg) syntax_error_at(msg)
674# define syntax_error_unterm_ch(lineno, ch) syntax_error_unterm_ch(ch)
675# define syntax_error_unterm_str(lineno, s) syntax_error_unterm_str(s)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000676#endif
677
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000678static void die_if_script(unsigned lineno, const char *fmt, ...)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000679{
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000680 va_list p;
681
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000682#if HUSH_DEBUG >= 2
683 bb_error_msg("hush.c:%u", lineno);
684#endif
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000685 va_start(p, fmt);
686 bb_verror_msg(fmt, p, NULL);
687 va_end(p);
688 if (!G_interactive_fd)
689 xfunc_die();
Mike Frysinger6379bb42009-03-28 18:55:03 +0000690}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000691
692static void syntax_error(unsigned lineno, const char *msg)
693{
694 if (msg)
695 die_if_script(lineno, "syntax error: %s", msg);
696 else
697 die_if_script(lineno, "syntax error", NULL);
698}
699
700static void syntax_error_at(unsigned lineno, const char *msg)
701{
702 die_if_script(lineno, "syntax error at '%s'", msg);
703}
704
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000705/* It so happens that all such cases are totally fatal
706 * even if shell is interactive: EOF while looking for closing
707 * delimiter. There is nowhere to read stuff from after that,
708 * it's EOF! The only choice is to terminate.
709 */
710static void syntax_error_unterm_ch(unsigned lineno, char ch) NORETURN;
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000711static void syntax_error_unterm_ch(unsigned lineno, char ch)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000712{
713 char msg[2];
714 msg[0] = ch;
715 msg[1] = '\0';
716 die_if_script(lineno, "syntax error: unterminated %s", msg);
Denis Vlasenko0b677d82009-04-10 13:49:10 +0000717 xfunc_die();
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000718}
719
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000720static void syntax_error_unterm_str(unsigned lineno, const char *s)
721{
722 die_if_script(lineno, "syntax error: unterminated %s", s);
723}
724
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000725#if HUSH_DEBUG < 2
726# undef die_if_script
727# undef syntax_error
728# undef syntax_error_at
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000729# undef syntax_error_unterm_ch
730# undef syntax_error_unterm_str
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000731#else
Denis Vlasenkod68ae082009-04-09 20:41:34 +0000732# define die_if_script(fmt...) die_if_script(__LINE__, fmt)
733# define syntax_error(msg) syntax_error(__LINE__, msg)
734# define syntax_error_at(msg) syntax_error_at(__LINE__, msg)
735# define syntax_error_unterm_ch(ch) syntax_error_unterm_ch(__LINE__, ch)
736# define syntax_error_unterm_str(s) syntax_error_unterm_str(__LINE__, s)
Denis Vlasenko90e485c2007-05-23 15:22:50 +0000737#endif
Eric Andersen25f27032001-04-26 23:22:31 +0000738
Denis Vlasenko552433b2009-04-04 19:29:21 +0000739
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000740/* Utility functions
741 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +0000742static int glob_needed(const char *s)
743{
744 while (*s) {
745 if (*s == '\\')
746 s++;
747 if (*s == '*' || *s == '[' || *s == '?')
748 return 1;
749 s++;
750 }
751 return 0;
752}
753
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000754static int is_well_formed_var_name(const char *s, char terminator)
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000755{
Denis Vlasenkod4981312008-07-31 10:34:48 +0000756 if (!s || !(isalpha(*s) || *s == '_'))
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000757 return 0;
758 s++;
759 while (isalnum(*s) || *s == '_')
760 s++;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000761 return *s == terminator;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +0000762}
763
Denis Vlasenko55789c62008-06-18 16:30:42 +0000764/* Replace each \x with x in place, return ptr past NUL. */
765static char *unbackslash(char *src)
766{
767 char *dst = src;
768 while (1) {
769 if (*src == '\\')
770 src++;
771 if ((*dst++ = *src++) == '\0')
772 break;
773 }
774 return dst;
775}
776
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000777static char **add_strings_to_strings(char **strings, char **add, int need_to_dup)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000778{
779 int i;
780 unsigned count1;
781 unsigned count2;
782 char **v;
783
784 v = strings;
785 count1 = 0;
786 if (v) {
787 while (*v) {
788 count1++;
789 v++;
790 }
791 }
792 count2 = 0;
793 v = add;
794 while (*v) {
795 count2++;
796 v++;
797 }
798 v = xrealloc(strings, (count1 + count2 + 1) * sizeof(char*));
799 v[count1 + count2] = NULL;
800 i = count2;
801 while (--i >= 0)
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000802 v[count1 + i] = (need_to_dup ? xstrdup(add[i]) : add[i]);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000803 return v;
804}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000805#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000806static char **xx_add_strings_to_strings(int lineno, char **strings, char **add, int need_to_dup)
807{
808 char **ptr = add_strings_to_strings(strings, add, need_to_dup);
809 fdprintf(2, "line %d: add_strings_to_strings %p\n", lineno, ptr);
810 return ptr;
811}
812#define add_strings_to_strings(strings, add, need_to_dup) \
813 xx_add_strings_to_strings(__LINE__, strings, add, need_to_dup)
814#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000815
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000816static char **add_string_to_strings(char **strings, char *add)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000817{
818 char *v[2];
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000819 v[0] = add;
820 v[1] = NULL;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +0000821 return add_strings_to_strings(strings, v, /*dup:*/ 0);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000822}
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +0000823#if LEAK_HUNTING
Denis Vlasenkocc90f442009-04-08 16:40:34 +0000824static char **xx_add_string_to_strings(int lineno, char **strings, char *add)
825{
826 char **ptr = add_string_to_strings(strings, add);
827 fdprintf(2, "line %d: add_string_to_strings %p\n", lineno, ptr);
828 return ptr;
829}
830#define add_string_to_strings(strings, add) \
831 xx_add_string_to_strings(__LINE__, strings, add)
832#endif
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000833
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000834static void putenv_all(char **strings)
835{
836 if (!strings)
837 return;
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000838 while (*strings) {
839 debug_printf_env("putenv '%s'\n", *strings);
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000840 putenv(*strings++);
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000841 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000842}
843
844static char **putenv_all_and_save_old(char **strings)
845{
846 char **old = NULL;
847 char **s = strings;
848
849 if (!strings)
850 return old;
851 while (*strings) {
Denis Vlasenkof886fd22008-10-13 12:36:05 +0000852 char *v, *eq;
853
854 eq = strchr(*strings, '=');
855 if (eq) {
856 *eq = '\0';
857 v = getenv(*strings);
858 *eq = '=';
859 if (v) {
860 /* v points to VAL in VAR=VAL, go back to VAR */
861 v -= (eq - *strings) + 1;
862 old = add_string_to_strings(old, v);
863 }
864 }
865 strings++;
Denis Vlasenko22d10a02008-10-13 08:53:43 +0000866 }
867 putenv_all(s);
868 return old;
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000869}
870
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000871static void free_strings_and_unsetenv(char **strings, int unset)
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000872{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000873 char **v;
874
875 if (!strings)
876 return;
877
878 v = strings;
879 while (*v) {
880 if (unset) {
Denis Vlasenko76ddc2e2008-12-30 05:05:31 +0000881 debug_printf_env("unsetenv '%s'\n", *v);
882 bb_unsetenv(*v);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000883 }
884 free(*v++);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000885 }
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000886 free(strings);
Denis Vlasenkod65ea392007-10-01 10:02:25 +0000887}
888
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000889static void free_strings(char **strings)
Denis Vlasenko76d50412008-06-10 16:19:39 +0000890{
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +0000891 free_strings_and_unsetenv(strings, 0);
Denis Vlasenko76d50412008-06-10 16:19:39 +0000892}
Denis Vlasenko76d50412008-06-10 16:19:39 +0000893
894
Denis Vlasenkod5762932009-03-31 11:22:57 +0000895/* Basic theory of signal handling in shell
896 * ========================================
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000897 * This does not describe what hush does, rather, it is current understanding
898 * what it _should_ do. If it doesn't, it's a bug.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000899 * http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#trap
900 *
901 * Signals are handled only after each pipe ("cmd | cmd | cmd" thing)
902 * is finished or backgrounded. It is the same in interactive and
903 * non-interactive shells, and is the same regardless of whether
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000904 * a user trap handler is installed or a shell special one is in effect.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000905 * ^C or ^Z from keyboard seem to execute "at once" because it usually
906 * backgrounds (i.e. stops) or kills all members of currently running
907 * pipe.
908 *
909 * Wait builtin in interruptible by signals for which user trap is set
910 * or by SIGINT in interactive shell.
911 *
912 * Trap handlers will execute even within trap handlers. (right?)
913 *
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000914 * User trap handlers are forgotten when subshell ("(cmd)") is entered.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000915 *
916 * If job control is off, backgrounded commands ("cmd &")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000917 * have SIGINT, SIGQUIT set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000918 *
919 * Commands run in command substitution ("`cmd`")
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000920 * have SIGTTIN, SIGTTOU, SIGTSTP set to SIG_IGN.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000921 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000922 * Ordinary commands have signals set to SIG_IGN/DFL set as inherited
923 * by the shell from its parent.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000924 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000925 * Siganls which differ from SIG_DFL action
926 * (note: child (i.e., [v]forked) shell is not an interactive shell):
Denis Vlasenkod5762932009-03-31 11:22:57 +0000927 *
928 * SIGQUIT: ignore
929 * SIGTERM (interactive): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000930 * SIGHUP (interactive):
931 * send SIGCONT to stopped jobs, send SIGHUP to all jobs and exit
Denis Vlasenkod5762932009-03-31 11:22:57 +0000932 * SIGTTIN, SIGTTOU, SIGTSTP (if job control is on): ignore
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000933 * (note that ^Z is handled not by trapping SIGTSTP, but by seeing
934 * that all pipe members are stopped) (right?)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000935 * SIGINT (interactive): wait for last pipe, ignore the rest
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000936 * of the command line, show prompt. NB: ^C does not send SIGINT
937 * to interactive shell while shell is waiting for a pipe,
938 * since shell is bg'ed (is not in foreground process group).
939 * (check/expand this)
940 * Example 1: this waits 5 sec, but does not execute ls:
941 * "echo $$; sleep 5; ls -l" + "kill -INT <pid>"
942 * Example 2: this does not wait and does not execute ls:
943 * "echo $$; sleep 5 & wait; ls -l" + "kill -INT <pid>"
944 * Example 3: this does not wait 5 sec, but executes ls:
945 * "sleep 5; ls -l" + press ^C
Denis Vlasenkod5762932009-03-31 11:22:57 +0000946 *
947 * (What happens to signals which are IGN on shell start?)
948 * (What happens with signal mask on shell start?)
949 *
950 * Implementation in hush
951 * ======================
952 * We use in-kernel pending signal mask to determine which signals were sent.
953 * We block all signals which we don't want to take action immediately,
954 * i.e. we block all signals which need to have special handling as described
955 * above, and all signals which have traps set.
956 * After each pipe execution, we extract any pending signals via sigtimedwait()
957 * and act on them.
958 *
959 * unsigned non_DFL_mask: a mask of such "special" signals
960 * sigset_t blocked_set: current blocked signal set
961 *
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000962 * "trap - SIGxxx":
Denis Vlasenko552433b2009-04-04 19:29:21 +0000963 * clear bit in blocked_set unless it is also in non_DFL_mask
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000964 * "trap 'cmd' SIGxxx":
965 * set bit in blocked_set (even if 'cmd' is '')
Denis Vlasenkod5762932009-03-31 11:22:57 +0000966 * after [v]fork, if we plan to be a shell:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000967 * nothing for {} child shell (say, "true | { true; true; } | true")
Denis Vlasenkoefea9d22009-04-09 13:43:11 +0000968 * unset all traps if () shell.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000969 * after [v]fork, if we plan to exec:
Denis Vlasenko7b830e72009-03-31 13:05:32 +0000970 * POSIX says pending signal mask is cleared in child - no need to clear it.
971 * Restore blocked signal set to one inherited by shell just prior to exec.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000972 *
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000973 * Note: as a result, we do not use signal handlers much. The only uses
974 * are to count SIGCHLDs [disabled - bug somewhere, + bloat]
975 * and to restore tty pgrp on signal-induced exit.
Denis Vlasenkod5762932009-03-31 11:22:57 +0000976 */
977
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000978//static void SIGCHLD_handler(int sig UNUSED_PARAM)
979//{
980// G.count_SIGCHLD++;
981//}
982
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000983static int check_and_run_traps(int sig)
Denis Vlasenkod5762932009-03-31 11:22:57 +0000984{
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000985 static const struct timespec zero_timespec = { 0, 0 };
Denis Vlasenkod5762932009-03-31 11:22:57 +0000986 smalluint save_rcode;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000987 int last_sig = 0;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000988
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000989 if (sig)
990 goto jump_in;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000991 while (1) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000992 sig = sigtimedwait(&G.blocked_set, NULL, &zero_timespec);
Denis Vlasenkod5762932009-03-31 11:22:57 +0000993 if (sig <= 0)
994 break;
Denis Vlasenko7566bae2009-03-31 17:24:49 +0000995 jump_in:
996 last_sig = sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +0000997 if (G.traps && G.traps[sig]) {
998 if (G.traps[sig][0]) {
999 /* We have user-defined handler */
1000 char *argv[] = { NULL, xstrdup(G.traps[sig]), NULL };
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001001 save_rcode = G.last_exitcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001002 builtin_eval(argv);
1003 free(argv[1]);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001004 G.last_exitcode = save_rcode;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001005 } /* else: "" trap, ignoring signal */
1006 continue;
1007 }
1008 /* not a trap: special action */
Denis Vlasenkod5762932009-03-31 11:22:57 +00001009 switch (sig) {
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001010// case SIGCHLD:
1011// G.count_SIGCHLD++;
1012// break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001013 case SIGINT:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001014 bb_putchar('\n');
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001015 G.flag_SIGINT = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001016 break;
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001017//TODO
1018// case SIGHUP: ...
1019// break;
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00001020 default: /* ignored: */
1021 /* SIGTERM, SIGQUIT, SIGTTIN, SIGTTOU, SIGTSTP */
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001022 break;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001023 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00001024 }
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001025 return last_sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001026}
1027
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00001028#if ENABLE_HUSH_JOB
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001029
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001030/* After [v]fork, in child: do not restore tty pgrp on xfunc death */
1031#define disable_restore_tty_pgrp_on_exit() (die_sleep = 0)
Denis Vlasenko25af86f2009-04-07 13:29:27 +00001032/* After [v]fork, in parent: restore tty pgrp on xfunc death */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001033#define enable_restore_tty_pgrp_on_exit() (die_sleep = -1)
1034
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001035/* Restores tty foreground process group, and exits.
1036 * May be called as signal handler for fatal signal
1037 * (will faithfully resend signal to itself, producing correct exit state)
1038 * or called directly with -EXITCODE.
1039 * We also call it if xfunc is exiting. */
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00001040static void sigexit(int sig) NORETURN;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001041static void sigexit(int sig)
1042{
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001043 /* Disable all signals: job control, SIGPIPE, etc. */
Denis Vlasenko3f165fa2008-03-17 08:29:08 +00001044 sigprocmask_allsigs(SIG_BLOCK);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001045
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001046 /* Careful: we can end up here after [v]fork. Do not restore
Denis Vlasenko7b830e72009-03-31 13:05:32 +00001047 * tty pgrp then, only top-level shell process does that */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001048 if (G_interactive_fd && getpid() == G.root_pid)
1049 tcsetpgrp(G_interactive_fd, G.saved_tty_pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001050
1051 /* Not a signal, just exit */
1052 if (sig <= 0)
1053 _exit(- sig);
1054
Denis Vlasenko400d8bb2008-02-24 13:36:01 +00001055 kill_myself_with_sig(sig); /* does not return */
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00001056}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001057#else
1058
1059#define disable_restore_tty_pgrp_on_exit() ((void)0)
1060#define enable_restore_tty_pgrp_on_exit() ((void)0)
1061
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00001062#endif
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001063
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001064/* Restores tty foreground process group, and exits. */
1065static void hush_exit(int exitcode) NORETURN;
1066static void hush_exit(int exitcode)
1067{
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00001068 if (G.exiting <= 0 && G.traps && G.traps[0] && G.traps[0][0]) {
1069 /* Prevent recursion:
1070 * trap "echo Hi; exit" EXIT; exit
1071 */
1072 char *argv[] = { NULL, G.traps[0], NULL };
1073 G.traps[0] = NULL;
1074 G.exiting = 1;
Denis Vlasenkod5762932009-03-31 11:22:57 +00001075 builtin_eval(argv);
1076 free(argv[1]);
1077 }
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001078
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00001079#if ENABLE_HUSH_JOB
1080 fflush(NULL); /* flush all streams */
1081 sigexit(- (exitcode & 0xff));
1082#else
1083 exit(exitcode);
1084#endif
Mike Frysinger9f8128f2009-03-29 23:49:37 +00001085}
1086
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00001087
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001088static const char *set_cwd(void)
1089{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001090 /* xrealloc_getcwd_or_warn(arg) calls free(arg),
1091 * we must not try to free(bb_msg_unknown) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00001092 if (G.cwd == bb_msg_unknown)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001093 G.cwd = NULL;
Denis Vlasenko87a86552008-07-29 19:43:10 +00001094 G.cwd = xrealloc_getcwd_or_warn((char *)G.cwd);
1095 if (!G.cwd)
1096 G.cwd = bb_msg_unknown;
1097 return G.cwd;
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00001098}
1099
Denis Vlasenko83506862007-11-23 13:11:42 +00001100
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001101/* Get/check local shell variables */
1102static struct variable *get_local_var(const char *name)
1103{
1104 struct variable *cur;
1105 int len;
1106
1107 if (!name)
1108 return NULL;
1109 len = strlen(name);
1110 for (cur = G.top_var; cur; cur = cur->next) {
1111 if (strncmp(cur->varstr, name, len) == 0 && cur->varstr[len] == '=')
1112 return cur;
1113 }
1114 return NULL;
1115}
1116
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001117static const char *get_local_var_value(const char *src)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001118{
1119 struct variable *var = get_local_var(src);
1120 if (var)
1121 return strchr(var->varstr, '=') + 1;
1122 return NULL;
1123}
1124
1125/* str holds "NAME=VAL" and is expected to be malloced.
Mike Frysinger6379bb42009-03-28 18:55:03 +00001126 * We take ownership of it.
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001127 * flg_export:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001128 * 0: do not export
1129 * 1: export
1130 * -1: if NAME is set, leave export status alone
1131 * if NAME is not set, do not export
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001132 * flg_read_only is set only when we handle -R var=val
Mike Frysinger6379bb42009-03-28 18:55:03 +00001133 */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001134#if BB_MMU
1135#define set_local_var(str, flg_export, flg_read_only) \
1136 set_local_var(str, flg_export)
1137#endif
1138static int set_local_var(char *str, int flg_export, int flg_read_only)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001139{
1140 struct variable *cur;
1141 char *value;
1142 int name_len;
1143
1144 value = strchr(str, '=');
1145 if (!value) { /* not expected to ever happen? */
1146 free(str);
1147 return -1;
1148 }
1149
1150 name_len = value - str + 1; /* including '=' */
1151 cur = G.top_var; /* cannot be NULL (we have HUSH_VERSION and it's RO) */
1152 while (1) {
1153 if (strncmp(cur->varstr, str, name_len) != 0) {
1154 if (!cur->next) {
1155 /* Bail out. Note that now cur points
1156 * to last var in linked list */
1157 break;
1158 }
1159 cur = cur->next;
1160 continue;
1161 }
1162 /* We found an existing var with this name */
1163 *value = '\0';
1164 if (cur->flg_read_only) {
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001165#if !BB_MMU
1166 if (!flg_read_only)
1167#endif
1168 bb_error_msg("%s: readonly variable", str);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001169 free(str);
1170 return -1;
1171 }
1172 debug_printf_env("%s: unsetenv '%s'\n", __func__, str);
1173 unsetenv(str); /* just in case */
1174 *value = '=';
1175 if (strcmp(cur->varstr, str) == 0) {
1176 free_and_exp:
1177 free(str);
1178 goto exp;
1179 }
1180 if (cur->max_len >= strlen(str)) {
1181 /* This one is from startup env, reuse space */
1182 strcpy(cur->varstr, str);
1183 goto free_and_exp;
1184 }
1185 /* max_len == 0 signifies "malloced" var, which we can
1186 * (and has to) free */
1187 if (!cur->max_len)
1188 free(cur->varstr);
1189 cur->max_len = 0;
1190 goto set_str_and_exp;
1191 }
1192
1193 /* Not found - create next variable struct */
1194 cur->next = xzalloc(sizeof(*cur));
1195 cur = cur->next;
1196
1197 set_str_and_exp:
1198 cur->varstr = str;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001199#if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001200 cur->flg_read_only = flg_read_only;
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00001201#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001202 exp:
Mike Frysinger6379bb42009-03-28 18:55:03 +00001203 if (flg_export == 1)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001204 cur->flg_export = 1;
1205 if (cur->flg_export) {
1206 debug_printf_env("%s: putenv '%s'\n", __func__, cur->varstr);
1207 return putenv(cur->varstr);
1208 }
1209 return 0;
1210}
1211
Mike Frysingerd690f682009-03-30 06:50:54 +00001212static int unset_local_var(const char *name)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001213{
1214 struct variable *cur;
1215 struct variable *prev = prev; /* for gcc */
1216 int name_len;
1217
1218 if (!name)
Mike Frysingerd690f682009-03-30 06:50:54 +00001219 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001220 name_len = strlen(name);
1221 cur = G.top_var;
1222 while (cur) {
1223 if (strncmp(cur->varstr, name, name_len) == 0 && cur->varstr[name_len] == '=') {
1224 if (cur->flg_read_only) {
1225 bb_error_msg("%s: readonly variable", name);
Mike Frysingerd690f682009-03-30 06:50:54 +00001226 return EXIT_FAILURE;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001227 }
1228 /* prev is ok to use here because 1st variable, HUSH_VERSION,
1229 * is ro, and we cannot reach this code on the 1st pass */
1230 prev->next = cur->next;
1231 debug_printf_env("%s: unsetenv '%s'\n", __func__, cur->varstr);
1232 bb_unsetenv(cur->varstr);
1233 if (!cur->max_len)
1234 free(cur->varstr);
1235 free(cur);
Mike Frysingerd690f682009-03-30 06:50:54 +00001236 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001237 }
1238 prev = cur;
1239 cur = cur->next;
1240 }
Mike Frysingerd690f682009-03-30 06:50:54 +00001241 return EXIT_SUCCESS;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001242}
1243
Mike Frysinger98c52642009-04-02 10:02:37 +00001244#if ENABLE_SH_MATH_SUPPORT
1245#define is_name(c) ((c) == '_' || isalpha((unsigned char)(c)))
1246#define is_in_name(c) ((c) == '_' || isalnum((unsigned char)(c)))
1247static char *endofname(const char *name)
1248{
1249 char *p;
1250
1251 p = (char *) name;
1252 if (!is_name(*p))
1253 return p;
1254 while (*++p) {
1255 if (!is_in_name(*p))
1256 break;
1257 }
1258 return p;
1259}
1260
1261static void arith_set_local_var(const char *name, const char *val, int flags)
1262{
1263 /* arith code doesnt malloc space, so do it for it */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001264 char *var = xasprintf("%s=%s", name, val);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00001265 set_local_var(var, flags, 0);
Mike Frysinger98c52642009-04-02 10:02:37 +00001266}
1267#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001268
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001269
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001270/*
1271 * in_str support
1272 */
1273static int static_get(struct in_str *i)
1274{
1275 int ch = *i->p++;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00001276 if (ch != '\0')
1277 return ch;
1278 i->p--;
1279 return EOF;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001280}
1281
1282static int static_peek(struct in_str *i)
1283{
1284 return *i->p;
1285}
1286
1287#if ENABLE_HUSH_INTERACTIVE
1288
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001289static void cmdedit_set_initial_prompt(void)
1290{
Mike Frysingerec2c6552009-03-28 12:24:44 +00001291 if (ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1292 G.PS1 = getenv("PS1");
1293 if (G.PS1 == NULL)
1294 G.PS1 = "\\w \\$ ";
1295 } else
1296 G.PS1 = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001297}
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001298
1299static const char* setup_prompt_string(int promptmode)
1300{
1301 const char *prompt_str;
1302 debug_printf("setup_prompt_string %d ", promptmode);
Mike Frysingerec2c6552009-03-28 12:24:44 +00001303 if (!ENABLE_FEATURE_EDITING_FANCY_PROMPT) {
1304 /* Set up the prompt */
1305 if (promptmode == 0) { /* PS1 */
1306 free((char*)G.PS1);
1307 G.PS1 = xasprintf("%s %c ", G.cwd, (geteuid() != 0) ? '$' : '#');
1308 prompt_str = G.PS1;
1309 } else
1310 prompt_str = G.PS2;
1311 } else
1312 prompt_str = (promptmode == 0) ? G.PS1 : G.PS2;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001313 debug_printf("result '%s'\n", prompt_str);
1314 return prompt_str;
1315}
1316
1317static void get_user_input(struct in_str *i)
1318{
1319 int r;
1320 const char *prompt_str;
1321
1322 prompt_str = setup_prompt_string(i->promptmode);
1323#if ENABLE_FEATURE_EDITING
1324 /* Enable command line editing only while a command line
1325 * is actually being read */
1326 do {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001327 G.flag_SIGINT = 0;
1328 /* buglet: SIGINT will not make new prompt to appear _at once_,
1329 * only after <Enter>. (^C will work) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001330 r = read_line_input(prompt_str, G.user_input_buf, BUFSIZ-1, G.line_input_state);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001331 /* catch *SIGINT* etc (^C is handled by read_line_input) */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001332 check_and_run_traps(0);
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001333 } while (r == 0 || G.flag_SIGINT); /* repeat if ^C or SIGINT */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001334 i->eof_flag = (r < 0);
1335 if (i->eof_flag) { /* EOF/error detected */
1336 G.user_input_buf[0] = EOF; /* yes, it will be truncated, it's ok */
1337 G.user_input_buf[1] = '\0';
1338 }
1339#else
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001340 do {
1341 G.flag_SIGINT = 0;
1342 fputs(prompt_str, stdout);
1343 fflush(stdout);
1344 G.user_input_buf[0] = r = fgetc(i->file);
1345 /*G.user_input_buf[1] = '\0'; - already is and never changed */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00001346//do we need check_and_run_traps(0)? (maybe only if stdin)
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00001347 } while (G.flag_SIGINT);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001348 i->eof_flag = (r == EOF);
1349#endif
1350 i->p = G.user_input_buf;
1351}
1352
1353#endif /* INTERACTIVE */
1354
1355/* This is the magic location that prints prompts
1356 * and gets data back from the user */
1357static int file_get(struct in_str *i)
1358{
1359 int ch;
1360
1361 /* If there is data waiting, eat it up */
1362 if (i->p && *i->p) {
1363#if ENABLE_HUSH_INTERACTIVE
1364 take_cached:
1365#endif
1366 ch = *i->p++;
1367 if (i->eof_flag && !*i->p)
1368 ch = EOF;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001369 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001370 } else {
1371 /* need to double check i->file because we might be doing something
1372 * more complicated by now, like sourcing or substituting. */
1373#if ENABLE_HUSH_INTERACTIVE
Denis Vlasenko60b392f2009-04-03 19:14:32 +00001374 if (G_interactive_fd && i->promptme && i->file == stdin) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001375 do {
1376 get_user_input(i);
1377 } while (!*i->p); /* need non-empty line */
1378 i->promptmode = 1; /* PS2 */
1379 i->promptme = 0;
1380 goto take_cached;
1381 }
1382#endif
Denis Vlasenko913a2012009-04-05 22:17:04 +00001383 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001384 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001385 debug_printf("file_get: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001386#if ENABLE_HUSH_INTERACTIVE
1387 if (ch == '\n')
1388 i->promptme = 1;
1389#endif
1390 return ch;
1391}
1392
Denis Vlasenko913a2012009-04-05 22:17:04 +00001393/* All callers guarantee this routine will never
1394 * be used right after a newline, so prompting is not needed.
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001395 */
1396static int file_peek(struct in_str *i)
1397{
1398 int ch;
1399 if (i->p && *i->p) {
1400 if (i->eof_flag && !i->p[1])
1401 return EOF;
1402 return *i->p;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001403 /* note: ch is never NUL */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001404 }
Denis Vlasenko913a2012009-04-05 22:17:04 +00001405 do ch = fgetc(i->file); while (ch == '\0');
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001406 i->eof_flag = (ch == EOF);
1407 i->peek_buf[0] = ch;
1408 i->peek_buf[1] = '\0';
1409 i->p = i->peek_buf;
Denis Vlasenko913a2012009-04-05 22:17:04 +00001410 debug_printf("file_peek: got '%c' %d\n", ch, ch);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001411 return ch;
1412}
1413
1414static void setup_file_in_str(struct in_str *i, FILE *f)
1415{
1416 i->peek = file_peek;
1417 i->get = file_get;
1418#if ENABLE_HUSH_INTERACTIVE
1419 i->promptme = 1;
1420 i->promptmode = 0; /* PS1 */
1421#endif
1422 i->file = f;
1423 i->p = NULL;
1424}
1425
1426static void setup_string_in_str(struct in_str *i, const char *s)
1427{
1428 i->peek = static_peek;
1429 i->get = static_get;
1430#if ENABLE_HUSH_INTERACTIVE
1431 i->promptme = 1;
1432 i->promptmode = 0; /* PS1 */
1433#endif
1434 i->p = s;
1435 i->eof_flag = 0;
1436}
1437
1438
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001439/*
1440 * o_string support
1441 */
1442#define B_CHUNK (32 * sizeof(char*))
Eric Andersen25f27032001-04-26 23:22:31 +00001443
Denis Vlasenko0b677d82009-04-10 13:49:10 +00001444static void o_reset_to_empty_unquoted(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001445{
1446 o->length = 0;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001447 o->o_quoted = 0;
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001448 if (o->data)
1449 o->data[0] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001450}
1451
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001452static void o_free(o_string *o)
Eric Andersen25f27032001-04-26 23:22:31 +00001453{
Aaron Lehmanna170e1c2002-11-28 11:27:31 +00001454 free(o->data);
Denis Vlasenkod65ea392007-10-01 10:02:25 +00001455 memset(o, 0, sizeof(*o));
Eric Andersen25f27032001-04-26 23:22:31 +00001456}
1457
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001458static ALWAYS_INLINE void o_free_unsafe(o_string *o)
1459{
1460 free(o->data);
1461}
1462
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001463static void o_grow_by(o_string *o, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001464{
1465 if (o->length + len > o->maxlen) {
1466 o->maxlen += (2*len > B_CHUNK ? 2*len : B_CHUNK);
1467 o->data = xrealloc(o->data, 1 + o->maxlen);
1468 }
1469}
1470
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001471static void o_addchr(o_string *o, int ch)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001472{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001473 debug_printf("o_addchr: '%c' o->length=%d o=%p\n", ch, o->length, o);
1474 o_grow_by(o, 1);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001475 o->data[o->length] = ch;
1476 o->length++;
1477 o->data[o->length] = '\0';
1478}
1479
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001480static void o_addblock(o_string *o, const char *str, int len)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001481{
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001482 o_grow_by(o, len);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001483 memcpy(&o->data[o->length], str, len);
1484 o->length += len;
1485 o->data[o->length] = '\0';
1486}
1487
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001488#if !BB_MMU
1489static void o_addstr(o_string *o, const char *str)
Mike Frysinger98c52642009-04-02 10:02:37 +00001490{
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001491 o_addblock(o, str, strlen(str));
1492}
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00001493static void nommu_addchr(o_string *o, int ch)
1494{
1495 if (o)
1496 o_addchr(o, ch);
1497}
1498#else
1499#define nommu_addchr(o, str) ((void)0)
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001500#endif
1501
1502static void o_addstr_with_NUL(o_string *o, const char *str)
1503{
1504 o_addblock(o, str, strlen(str) + 1);
Mike Frysinger98c52642009-04-02 10:02:37 +00001505}
1506
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001507static void o_addblock_duplicate_backslash(o_string *o, const char *str, int len)
Denis Vlasenko55789c62008-06-18 16:30:42 +00001508{
1509 while (len) {
1510 o_addchr(o, *str);
1511 if (*str++ == '\\'
1512 && (*str != '*' && *str != '?' && *str != '[')
1513 ) {
1514 o_addchr(o, '\\');
1515 }
1516 len--;
1517 }
1518}
1519
Eric Andersen25f27032001-04-26 23:22:31 +00001520/* My analysis of quoting semantics tells me that state information
1521 * is associated with a destination, not a source.
1522 */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001523static void o_addqchr(o_string *o, int ch)
Eric Andersen25f27032001-04-26 23:22:31 +00001524{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001525 int sz = 1;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001526 char *found = strchr("*?[\\", ch);
1527 if (found)
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001528 sz++;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00001529 o_grow_by(o, sz);
1530 if (found) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001531 o->data[o->length] = '\\';
1532 o->length++;
Eric Andersen25f27032001-04-26 23:22:31 +00001533 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001534 o->data[o->length] = ch;
1535 o->length++;
1536 o->data[o->length] = '\0';
Eric Andersen25f27032001-04-26 23:22:31 +00001537}
1538
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001539static void o_addQchr(o_string *o, int ch)
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001540{
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001541 int sz = 1;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001542 if (o->o_escape && strchr("*?[\\", ch)) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001543 sz++;
1544 o->data[o->length] = '\\';
1545 o->length++;
1546 }
1547 o_grow_by(o, sz);
1548 o->data[o->length] = ch;
1549 o->length++;
1550 o->data[o->length] = '\0';
1551}
1552
1553static void o_addQstr(o_string *o, const char *str, int len)
1554{
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001555 if (!o->o_escape) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001556 o_addblock(o, str, len);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001557 return;
1558 }
1559 while (len) {
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001560 char ch;
1561 int sz;
1562 int ordinary_cnt = strcspn(str, "*?[\\");
1563 if (ordinary_cnt > len) /* paranoia */
1564 ordinary_cnt = len;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001565 o_addblock(o, str, ordinary_cnt);
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001566 if (ordinary_cnt == len)
1567 return;
1568 str += ordinary_cnt;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001569 len -= ordinary_cnt + 1; /* we are processing + 1 char below */
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001570
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001571 ch = *str++;
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001572 sz = 1;
1573 if (ch) { /* it is necessarily one of "*?[\\" */
1574 sz++;
1575 o->data[o->length] = '\\';
1576 o->length++;
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001577 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00001578 o_grow_by(o, sz);
1579 o->data[o->length] = ch;
1580 o->length++;
1581 o->data[o->length] = '\0';
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00001582 }
1583}
1584
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001585/* A special kind of o_string for $VAR and `cmd` expansion.
1586 * It contains char* list[] at the beginning, which is grown in 16 element
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001587 * increments. Actual string data starts at the next multiple of 16 * (char*).
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001588 * list[i] contains an INDEX (int!) into this string data.
1589 * It means that if list[] needs to grow, data needs to be moved higher up
1590 * but list[i]'s need not be modified.
1591 * NB: remembering how many list[i]'s you have there is crucial.
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001592 * o_finalize_list() operation post-processes this structure - calculates
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001593 * and stores actual char* ptrs in list[]. Oh, it NULL terminates it as well.
1594 */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001595#if DEBUG_EXPAND || DEBUG_GLOB
1596static void debug_print_list(const char *prefix, o_string *o, int n)
1597{
1598 char **list = (char**)o->data;
1599 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1600 int i = 0;
1601 fprintf(stderr, "%s: list:%p n:%d string_start:%d length:%d maxlen:%d\n",
1602 prefix, list, n, string_start, o->length, o->maxlen);
1603 while (i < n) {
1604 fprintf(stderr, " list[%d]=%d '%s' %p\n", i, (int)list[i],
1605 o->data + (int)list[i] + string_start,
1606 o->data + (int)list[i] + string_start);
1607 i++;
1608 }
1609 if (n) {
1610 const char *p = o->data + (int)list[n - 1] + string_start;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001611 fprintf(stderr, " total_sz:%ld\n", (long)((p + strlen(p) + 1) - o->data));
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001612 }
1613}
1614#else
1615#define debug_print_list(prefix, o, n) ((void)0)
1616#endif
1617
1618/* n = o_save_ptr_helper(str, n) "starts new string" by storing an index value
1619 * in list[n] so that it points past last stored byte so far.
1620 * It returns n+1. */
1621static int o_save_ptr_helper(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001622{
1623 char **list = (char**)o->data;
Denis Vlasenko895bea22008-06-10 18:06:24 +00001624 int string_start;
1625 int string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001626
1627 if (!o->has_empty_slot) {
Denis Vlasenko895bea22008-06-10 18:06:24 +00001628 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1629 string_len = o->length - string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001630 if (!(n & 0xf)) { /* 0, 0x10, 0x20...? */
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001631 debug_printf_list("list[%d]=%d string_start=%d (growing)\n", n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001632 /* list[n] points to string_start, make space for 16 more pointers */
1633 o->maxlen += 0x10 * sizeof(list[0]);
1634 o->data = xrealloc(o->data, o->maxlen + 1);
Denis Vlasenko7049ff82008-06-25 09:53:17 +00001635 list = (char**)o->data;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001636 memmove(list + n + 0x10, list + n, string_len);
1637 o->length += 0x10 * sizeof(list[0]);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001638 } else {
1639 debug_printf_list("list[%d]=%d string_start=%d\n",
1640 n, string_len, string_start);
1641 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001642 } else {
1643 /* We have empty slot at list[n], reuse without growth */
Denis Vlasenko895bea22008-06-10 18:06:24 +00001644 string_start = ((n+1 + 0xf) & ~0xf) * sizeof(list[0]); /* NB: n+1! */
1645 string_len = o->length - string_start;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00001646 debug_printf_list("list[%d]=%d string_start=%d (empty slot)\n",
1647 n, string_len, string_start);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001648 o->has_empty_slot = 0;
1649 }
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001650 list[n] = (char*)(ptrdiff_t)string_len;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001651 return n + 1;
1652}
1653
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001654/* "What was our last o_save_ptr'ed position (byte offset relative o->data)?" */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001655static int o_get_last_ptr(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001656{
1657 char **list = (char**)o->data;
1658 int string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1659
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001660 return ((int)(ptrdiff_t)list[n-1]) + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001661}
1662
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001663/* o_glob performs globbing on last list[], saving each result
Denis Vlasenko55789c62008-06-18 16:30:42 +00001664 * as a new list[]. */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001665static int o_glob(o_string *o, int n)
1666{
1667 glob_t globdata;
1668 int gr;
1669 char *pattern;
1670
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001671 debug_printf_glob("start o_glob: n:%d o->data:%p\n", n, o->data);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001672 if (!o->data)
1673 return o_save_ptr_helper(o, n);
1674 pattern = o->data + o_get_last_ptr(o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001675 debug_printf_glob("glob pattern '%s'\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001676 if (!glob_needed(pattern)) {
1677 literal:
1678 o->length = unbackslash(pattern) - o->data;
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001679 debug_printf_glob("glob pattern '%s' is literal\n", pattern);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001680 return o_save_ptr_helper(o, n);
1681 }
1682
1683 memset(&globdata, 0, sizeof(globdata));
1684 gr = glob(pattern, 0, NULL, &globdata);
1685 debug_printf_glob("glob('%s'):%d\n", pattern, gr);
1686 if (gr == GLOB_NOSPACE)
1687 bb_error_msg_and_die("out of memory during glob");
1688 if (gr == GLOB_NOMATCH) {
1689 globfree(&globdata);
1690 goto literal;
1691 }
1692 if (gr != 0) { /* GLOB_ABORTED ? */
1693//TODO: testcase for bad glob pattern behavior
1694 bb_error_msg("glob(3) error %d on '%s'", gr, pattern);
1695 }
1696 if (globdata.gl_pathv && globdata.gl_pathv[0]) {
1697 char **argv = globdata.gl_pathv;
1698 o->length = pattern - o->data; /* "forget" pattern */
1699 while (1) {
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001700 o_addstr_with_NUL(o, *argv);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001701 n = o_save_ptr_helper(o, n);
1702 argv++;
1703 if (!*argv)
1704 break;
1705 }
1706 }
1707 globfree(&globdata);
1708 if (DEBUG_GLOB)
1709 debug_print_list("o_glob returning", o, n);
1710 return n;
1711}
1712
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00001713/* If o->o_glob == 1, glob the string so far remembered.
1714 * Otherwise, just finish current list[] and start new */
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001715static int o_save_ptr(o_string *o, int n)
1716{
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00001717 if (o->o_glob) { /* if globbing is requested */
1718 /* If o->has_empty_slot, list[n] was already globbed
1719 * (if it was requested back then when it was filled)
1720 * so don't do that again! */
1721 if (!o->has_empty_slot)
1722 return o_glob(o, n); /* o_save_ptr_helper is inside */
1723 }
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001724 return o_save_ptr_helper(o, n);
1725}
1726
1727/* "Please convert list[n] to real char* ptrs, and NULL terminate it." */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00001728static char **o_finalize_list(o_string *o, int n)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001729{
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001730 char **list;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001731 int string_start;
1732
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001733 n = o_save_ptr(o, n); /* force growth for list[n] if necessary */
1734 if (DEBUG_EXPAND)
1735 debug_print_list("finalized", o, n);
Denis Vlasenko30c9cc52008-06-17 07:24:29 +00001736 debug_printf_expand("finalized n:%d\n", n);
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00001737 list = (char**)o->data;
1738 string_start = ((n + 0xf) & ~0xf) * sizeof(list[0]);
1739 list[--n] = NULL;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001740 while (n) {
1741 n--;
Denis Vlasenkocc3f20b2008-06-23 22:31:52 +00001742 list[n] = o->data + (int)(ptrdiff_t)list[n] + string_start;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001743 }
1744 return list;
1745}
1746
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00001747
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001748/* Expansion can recurse */
1749#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001750static int process_command_subs(o_string *dest, const char *s);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001751#endif
1752static char *expand_string_to_string(const char *str);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001753#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001754#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001755 parse_stream_dquoted(dest, input, dquote_end)
1756#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00001757static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001758 o_string *dest,
1759 struct in_str *input,
1760 int dquote_end);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001761
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001762/* expand_strvec_to_strvec() takes a list of strings, expands
1763 * all variable references within and returns a pointer to
1764 * a list of expanded strings, possibly with larger number
1765 * of strings. (Think VAR="a b"; echo $VAR).
1766 * This new list is allocated as a single malloc block.
1767 * NULL-terminated list of char* pointers is at the beginning of it,
1768 * followed by strings themself.
1769 * Caller can deallocate entire list by single free(list). */
Eric Andersen25f27032001-04-26 23:22:31 +00001770
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001771/* Store given string, finalizing the word and starting new one whenever
1772 * we encounter IFS char(s). This is used for expanding variable values.
1773 * End-of-string does NOT finalize word: think about 'echo -$VAR-' */
1774static int expand_on_ifs(o_string *output, int n, const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00001775{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001776 while (1) {
1777 int word_len = strcspn(str, G.ifs);
1778 if (word_len) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001779 if (output->o_escape || !output->o_glob)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001780 o_addQstr(output, str, word_len);
1781 else /* protect backslashes against globbing up :) */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001782 o_addblock_duplicate_backslash(output, str, word_len);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001783 str += word_len;
1784 }
1785 if (!*str) /* EOL - do not finalize word */
1786 break;
1787 o_addchr(output, '\0');
1788 debug_print_list("expand_on_ifs", output, n);
1789 n = o_save_ptr(output, n);
1790 str += strspn(str, G.ifs); /* skip ifs chars */
Eric Andersen25f27032001-04-26 23:22:31 +00001791 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001792 debug_print_list("expand_on_ifs[1]", output, n);
1793 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00001794}
1795
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001796/* Helper to expand $((...)) and heredoc body. These act as if
1797 * they are in double quotes, with the exception that they are not :).
1798 * Just the rules are similar: "expand only $var and `cmd`"
1799 *
1800 * Returns malloced string.
1801 * As an optimization, we return NULL if expansion is not needed.
1802 */
1803static char *expand_pseudo_dquoted(const char *str)
1804{
1805 char *exp_str;
1806 struct in_str input;
1807 o_string dest = NULL_O_STRING;
1808
1809 if (strchr(str, '$') == NULL
1810#if ENABLE_HUSH_TICK
1811 && strchr(str, '`') == NULL
1812#endif
1813 ) {
1814 return NULL;
1815 }
1816
1817 /* We need to expand. Example:
1818 * echo $(($a + `echo 1`)) $((1 + $((2)) ))
1819 */
1820 setup_string_in_str(&input, str);
1821 parse_stream_dquoted(NULL, &dest, &input, EOF);
1822 //bb_error_msg("'%s' -> '%s'", str, dest.data);
1823 exp_str = expand_string_to_string(dest.data);
1824 //bb_error_msg("'%s' -> '%s'", dest.data, exp_str);
1825 o_free_unsafe(&dest);
1826 return exp_str;
1827}
1828
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001829/* Expand all variable references in given string, adding words to list[]
1830 * at n, n+1,... positions. Return updated n (so that list[n] is next one
1831 * to be filled). This routine is extremely tricky: has to deal with
1832 * variables/parameters with whitespace, $* and $@, and constructs like
1833 * 'echo -$*-'. If you play here, you must run testsuite afterwards! */
1834static int expand_vars_to_list(o_string *output, int n, char *arg, char or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00001835{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001836 /* or_mask is either 0 (normal case) or 0x80
1837 * (expansion of right-hand side of assignment == 1-element expand.
1838 * It will also do no globbing, and thus we must not backslash-quote!) */
Eric Andersen25f27032001-04-26 23:22:31 +00001839
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001840 char first_ch, ored_ch;
1841 int i;
1842 const char *val;
Mike Frysingera4f331d2009-04-07 06:03:22 +00001843 char *dyn_val, *p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001844
Mike Frysingera4f331d2009-04-07 06:03:22 +00001845 dyn_val = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001846 ored_ch = 0;
1847
1848 debug_printf_expand("expand_vars_to_list: arg '%s'\n", arg);
1849 debug_print_list("expand_vars_to_list", output, n);
1850 n = o_save_ptr(output, n);
1851 debug_print_list("expand_vars_to_list[0]", output, n);
1852
1853 while ((p = strchr(arg, SPECIAL_VAR_SYMBOL)) != NULL) {
1854#if ENABLE_HUSH_TICK
1855 o_string subst_result = NULL_O_STRING;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001856#endif
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001857#if ENABLE_SH_MATH_SUPPORT
1858 char arith_buf[sizeof(arith_t)*3 + 2];
1859#endif
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00001860 o_addblock(output, arg, p - arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001861 debug_print_list("expand_vars_to_list[1]", output, n);
1862 arg = ++p;
1863 p = strchr(p, SPECIAL_VAR_SYMBOL);
1864
1865 first_ch = arg[0] | or_mask; /* forced to "quoted" if or_mask = 0x80 */
1866 /* "$@" is special. Even if quoted, it can still
1867 * expand to nothing (not even an empty string) */
1868 if ((first_ch & 0x7f) != '@')
1869 ored_ch |= first_ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001870
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001871 val = NULL;
1872 switch (first_ch & 0x7f) {
1873 /* Highest bit in first_ch indicates that var is double-quoted */
1874 case '$': /* pid */
1875 val = utoa(G.root_pid);
1876 break;
1877 case '!': /* bg pid */
1878 val = G.last_bg_pid ? utoa(G.last_bg_pid) : (char*)"";
1879 break;
1880 case '?': /* exitcode */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00001881 val = utoa(G.last_exitcode);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001882 break;
1883 case '#': /* argc */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001884 if (arg[1] != SPECIAL_VAR_SYMBOL)
1885 /* actually, it's a ${#var} */
1886 goto case_default;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001887 val = utoa(G.global_argc ? G.global_argc-1 : 0);
1888 break;
1889 case '*':
1890 case '@':
1891 i = 1;
1892 if (!G.global_argv[i])
1893 break;
1894 ored_ch |= first_ch; /* do it for "$@" _now_, when we know it's not empty */
1895 if (!(first_ch & 0x80)) { /* unquoted $* or $@ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001896 smallint sv = output->o_escape;
1897 /* unquoted var's contents should be globbed, so don't escape */
1898 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001899 while (G.global_argv[i]) {
1900 n = expand_on_ifs(output, n, G.global_argv[i]);
1901 debug_printf_expand("expand_vars_to_list: argv %d (last %d)\n", i, G.global_argc - 1);
1902 if (G.global_argv[i++][0] && G.global_argv[i]) {
1903 /* this argv[] is not empty and not last:
1904 * put terminating NUL, start new word */
1905 o_addchr(output, '\0');
1906 debug_print_list("expand_vars_to_list[2]", output, n);
1907 n = o_save_ptr(output, n);
1908 debug_print_list("expand_vars_to_list[3]", output, n);
1909 }
1910 }
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00001911 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001912 } else
1913 /* If or_mask is nonzero, we handle assignment 'a=....$@.....'
1914 * and in this case should treat it like '$*' - see 'else...' below */
1915 if (first_ch == ('@'|0x80) && !or_mask) { /* quoted $@ */
1916 while (1) {
1917 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1918 if (++i >= G.global_argc)
1919 break;
1920 o_addchr(output, '\0');
1921 debug_print_list("expand_vars_to_list[4]", output, n);
1922 n = o_save_ptr(output, n);
1923 }
1924 } else { /* quoted $*: add as one word */
1925 while (1) {
1926 o_addQstr(output, G.global_argv[i], strlen(G.global_argv[i]));
1927 if (!G.global_argv[++i])
1928 break;
1929 if (G.ifs[0])
1930 o_addchr(output, G.ifs[0]);
1931 }
1932 }
1933 break;
1934 case SPECIAL_VAR_SYMBOL: /* <SPECIAL_VAR_SYMBOL><SPECIAL_VAR_SYMBOL> */
1935 /* "Empty variable", used to make "" etc to not disappear */
1936 arg++;
1937 ored_ch = 0x80;
1938 break;
1939#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001940 case '`': /* <SPECIAL_VAR_SYMBOL>`cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001941 *p = '\0';
1942 arg++;
1943//TODO: can we just stuff it into "output" directly?
1944 debug_printf_subst("SUBST '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00001945 process_command_subs(&subst_result, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001946 debug_printf_subst("SUBST RES '%s'\n", subst_result.data);
1947 val = subst_result.data;
1948 goto store_val;
Denis Vlasenko96f67dc2007-05-17 13:02:41 +00001949#endif
Mike Frysinger98c52642009-04-02 10:02:37 +00001950#if ENABLE_SH_MATH_SUPPORT
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001951 case '+': { /* <SPECIAL_VAR_SYMBOL>+cmd<SPECIAL_VAR_SYMBOL> */
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001952 arith_eval_hooks_t hooks;
Mike Frysinger98c52642009-04-02 10:02:37 +00001953 arith_t res;
Mike Frysinger98c52642009-04-02 10:02:37 +00001954 int errcode;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001955 char *exp_str;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001956
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001957 arg++; /* skip '+' */
1958 *p = '\0'; /* replace trailing <SPECIAL_VAR_SYMBOL> */
Mike Frysinger98c52642009-04-02 10:02:37 +00001959 debug_printf_subst("ARITH '%s' first_ch %x\n", arg, first_ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001960
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00001961 exp_str = expand_pseudo_dquoted(arg);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00001962 hooks.lookupvar = get_local_var_value;
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001963 hooks.setvar = arith_set_local_var;
1964 hooks.endofname = endofname;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001965 res = arith(exp_str ? exp_str : arg, &errcode, &hooks);
1966 free(exp_str);
1967
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001968 if (errcode < 0) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001969 const char *msg = "error in arithmetic";
Mike Frysinger98c52642009-04-02 10:02:37 +00001970 switch (errcode) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00001971 case -3:
1972 msg = "exponent less than 0";
1973 break;
1974 case -2:
1975 msg = "divide by 0";
1976 break;
1977 case -5:
1978 msg = "expression recursion loop detected";
1979 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00001980 }
Denis Vlasenkod68ae082009-04-09 20:41:34 +00001981 die_if_script(msg);
Denis Vlasenkob29eb6e2009-04-02 13:46:27 +00001982 }
Mike Frysinger98c52642009-04-02 10:02:37 +00001983 debug_printf_subst("ARITH RES '"arith_t_fmt"'\n", res);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00001984 sprintf(arith_buf, arith_t_fmt, res);
1985 val = arith_buf;
Mike Frysinger98c52642009-04-02 10:02:37 +00001986 break;
1987 }
1988#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001989 default: /* <SPECIAL_VAR_SYMBOL>varname<SPECIAL_VAR_SYMBOL> */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001990 case_default: {
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001991 bool exp_len = false;
1992 bool exp_null = false;
1993 char *var = arg;
1994 char exp_save = exp_save; /* for compiler */
1995 char exp_op = exp_op; /* for compiler */
1996 char *exp_word = exp_word; /* for compiler */
Mike Frysinger6379bb42009-03-28 18:55:03 +00001997 size_t exp_off = 0;
Denis Vlasenko232be3e2009-04-05 09:16:00 +00001998
Denis Vlasenko424f79b2009-03-22 14:23:34 +00001999 *p = '\0';
2000 arg[0] = first_ch & 0x7f;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002001
2002 /* prepare for expansions */
2003 if (var[0] == '#') {
2004 /* handle length expansion ${#var} */
2005 exp_len = true;
2006 ++var;
2007 } else {
2008 /* maybe handle parameter expansion */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002009 exp_off = strcspn(var, ":-=+?%#");
Mike Frysinger6379bb42009-03-28 18:55:03 +00002010 if (!var[exp_off])
2011 exp_off = 0;
2012 if (exp_off) {
2013 exp_save = var[exp_off];
2014 exp_null = exp_save == ':';
2015 exp_word = var + exp_off;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002016 if (exp_null)
2017 ++exp_word;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002018 exp_op = *exp_word++;
2019 var[exp_off] = '\0';
2020 }
2021 }
2022
2023 /* lookup the variable in question */
2024 if (isdigit(var[0])) {
Mike Frysinger7c3e52c2009-03-28 21:06:22 +00002025 /* handle_dollar() should have vetted var for us */
Mike Frysinger6379bb42009-03-28 18:55:03 +00002026 i = xatoi_u(var);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002027 if (i < G.global_argc)
2028 val = G.global_argv[i];
2029 /* else val remains NULL: $N with too big N */
2030 } else
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00002031 val = get_local_var_value(var);
Mike Frysinger6379bb42009-03-28 18:55:03 +00002032
2033 /* handle any expansions */
2034 if (exp_len) {
2035 debug_printf_expand("expand: length of '%s' = ", val);
2036 val = utoa(val ? strlen(val) : 0);
2037 debug_printf_expand("%s\n", val);
2038 } else if (exp_off) {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002039 if (exp_op == '%' || exp_op == '#') {
Mike Frysinger57e74672009-04-09 23:00:33 +00002040 if (val) {
2041 /* we need to do a pattern match */
2042 bool zero;
2043 char *loc;
2044 scan_t scan = pick_scan(exp_op, *exp_word, &zero);
2045 if (exp_op == *exp_word) /* ## or %% */
2046 ++exp_word;
2047 val = dyn_val = xstrdup(val);
2048 loc = scan(dyn_val, exp_word, zero);
2049 if (zero)
2050 val = loc;
2051 else
2052 *loc = '\0';
2053 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002054 } else {
2055 /* we need to do an expansion */
2056 int exp_test = (!val || (exp_null && !val[0]));
2057 if (exp_op == '+')
2058 exp_test = !exp_test;
2059 debug_printf_expand("expand: op:%c (null:%s) test:%i\n", exp_op,
2060 exp_null ? "true" : "false", exp_test);
2061 if (exp_test) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002062 if (exp_op == '?') {
2063//TODO: how interactive bash aborts expansion mid-command?
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002064 /* ${var?[error_msg_if_unset]} */
2065 /* ${var:?[error_msg_if_unset_or_null]} */
2066 /* mimic bash message */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002067 die_if_script("%s: %s",
2068 var,
2069 exp_word[0] ? exp_word : "parameter null or not set"
2070 );
2071 } else {
Mike Frysingera4f331d2009-04-07 06:03:22 +00002072 val = exp_word;
Denis Vlasenkod68ae082009-04-09 20:41:34 +00002073 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002074
Mike Frysingera4f331d2009-04-07 06:03:22 +00002075 if (exp_op == '=') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002076 /* ${var=[word]} or ${var:=[word]} */
Mike Frysingera4f331d2009-04-07 06:03:22 +00002077 if (isdigit(var[0]) || var[0] == '#') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002078 /* mimic bash message */
2079 die_if_script("$%s: cannot assign in this way", var);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002080 val = NULL;
2081 } else {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00002082 char *new_var = xasprintf("%s=%s", var, val);
Mike Frysingera4f331d2009-04-07 06:03:22 +00002083 set_local_var(new_var, -1, 0);
2084 }
Mike Frysinger6379bb42009-03-28 18:55:03 +00002085 }
2086 }
2087 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002088
Mike Frysinger6379bb42009-03-28 18:55:03 +00002089 var[exp_off] = exp_save;
2090 }
2091
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002092 arg[0] = first_ch;
2093#if ENABLE_HUSH_TICK
2094 store_val:
2095#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002096 if (!(first_ch & 0x80)) { /* unquoted $VAR */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002097 debug_printf_expand("unquoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002098 if (val) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002099 /* unquoted var's contents should be globbed, so don't escape */
2100 smallint sv = output->o_escape;
2101 output->o_escape = 0;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002102 n = expand_on_ifs(output, n, val);
2103 val = NULL;
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002104 output->o_escape = sv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002105 }
2106 } else { /* quoted $VAR, val will be appended below */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002107 debug_printf_expand("quoted '%s', output->o_escape:%d\n", val, output->o_escape);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002108 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002109 } /* default: */
2110 } /* switch (char after <SPECIAL_VAR_SYMBOL>) */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002111 if (val) {
2112 o_addQstr(output, val, strlen(val));
2113 }
Mike Frysingera4f331d2009-04-07 06:03:22 +00002114 free(dyn_val);
2115 dyn_val = NULL;
Mike Frysinger6379bb42009-03-28 18:55:03 +00002116 /* Do the check to avoid writing to a const string */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00002117 if (*p != SPECIAL_VAR_SYMBOL)
Mike Frysinger6379bb42009-03-28 18:55:03 +00002118 *p = SPECIAL_VAR_SYMBOL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002119
2120#if ENABLE_HUSH_TICK
2121 o_free(&subst_result);
2122#endif
2123 arg = ++p;
2124 } /* end of "while (SPECIAL_VAR_SYMBOL is found) ..." */
2125
2126 if (arg[0]) {
2127 debug_print_list("expand_vars_to_list[a]", output, n);
2128 /* this part is literal, and it was already pre-quoted
2129 * if needed (much earlier), do not use o_addQstr here! */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002130 o_addstr_with_NUL(output, arg);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002131 debug_print_list("expand_vars_to_list[b]", output, n);
2132 } else if (output->length == o_get_last_ptr(output, n) /* expansion is empty */
2133 && !(ored_ch & 0x80) /* and all vars were not quoted. */
2134 ) {
2135 n--;
2136 /* allow to reuse list[n] later without re-growth */
2137 output->has_empty_slot = 1;
2138 } else {
2139 o_addchr(output, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00002140 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002141 return n;
Eric Andersen25f27032001-04-26 23:22:31 +00002142}
2143
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002144static char **expand_variables(char **argv, int or_mask)
Eric Andersen25f27032001-04-26 23:22:31 +00002145{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002146 int n;
2147 char **list;
2148 char **v;
2149 o_string output = NULL_O_STRING;
2150
2151 if (or_mask & 0x100) {
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00002152 output.o_escape = 1; /* protect against globbing for "$var" */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002153 /* (unquoted $var will temporarily switch it off) */
2154 output.o_glob = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00002155 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002156
2157 n = 0;
2158 v = argv;
2159 while (*v) {
2160 n = expand_vars_to_list(&output, n, *v, (char)or_mask);
2161 v++;
2162 }
2163 debug_print_list("expand_variables", &output, n);
2164
2165 /* output.data (malloced in one block) gets returned in "list" */
2166 list = o_finalize_list(&output, n);
2167 debug_print_strings("expand_variables[1]", list);
2168 return list;
Eric Andersen25f27032001-04-26 23:22:31 +00002169}
2170
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002171static char **expand_strvec_to_strvec(char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00002172{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002173 return expand_variables(argv, 0x100);
Eric Andersen25f27032001-04-26 23:22:31 +00002174}
2175
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002176/* Used for expansion of right hand of assignments */
2177/* NB: should NOT do globbing! "export v=/bin/c*; env | grep ^v=" outputs
2178 * "v=/bin/c*" */
2179static char *expand_string_to_string(const char *str)
Eric Andersen25f27032001-04-26 23:22:31 +00002180{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002181 char *argv[2], **list;
2182
2183 argv[0] = (char*)str;
2184 argv[1] = NULL;
2185 list = expand_variables(argv, 0x80); /* 0x80: make one-element expansion */
2186 if (HUSH_DEBUG)
2187 if (!list[0] || list[1])
2188 bb_error_msg_and_die("BUG in varexp2");
2189 /* actually, just move string 2*sizeof(char*) bytes back */
2190 overlapping_strcpy((char*)list, list[0]);
2191 debug_printf_expand("string_to_string='%s'\n", (char*)list);
2192 return (char*)list;
2193}
2194
2195/* Used for "eval" builtin */
2196static char* expand_strvec_to_string(char **argv)
2197{
2198 char **list;
2199
2200 list = expand_variables(argv, 0x80);
2201 /* Convert all NULs to spaces */
2202 if (list[0]) {
2203 int n = 1;
2204 while (list[n]) {
2205 if (HUSH_DEBUG)
2206 if (list[n-1] + strlen(list[n-1]) + 1 != list[n])
2207 bb_error_msg_and_die("BUG in varexp3");
2208 list[n][-1] = ' '; /* TODO: or to G.ifs[0]? */
2209 n++;
2210 }
2211 }
2212 overlapping_strcpy((char*)list, list[0]);
2213 debug_printf_expand("strvec_to_string='%s'\n", (char*)list);
2214 return (char*)list;
2215}
2216
2217static char **expand_assignments(char **argv, int count)
2218{
2219 int i;
2220 char **p = NULL;
2221 /* Expand assignments into one string each */
2222 for (i = 0; i < count; i++) {
2223 p = add_string_to_strings(p, expand_string_to_string(argv[i]));
2224 }
2225 return p;
Eric Andersen25f27032001-04-26 23:22:31 +00002226}
2227
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002228
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002229#if BB_MMU
2230void re_execute_shell(const char *s, int is_heredoc); /* never called */
2231#define clean_up_after_re_execute() ((void)0)
2232static void reset_traps_to_defaults(void)
2233{
2234 unsigned sig;
2235 int dirty;
2236
2237 if (!G.traps)
2238 return;
2239 dirty = 0;
2240 for (sig = 0; sig < NSIG; sig++) {
2241 if (!G.traps[sig])
2242 continue;
2243 free(G.traps[sig]);
2244 G.traps[sig] = NULL;
2245 /* There is no signal for 0 (EXIT) */
2246 if (sig == 0)
2247 continue;
2248 /* there was a trap handler, we are removing it
2249 * (if sig has non-DFL handling,
2250 * we don't need to do anything) */
2251 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
2252 continue;
2253 sigdelset(&G.blocked_set, sig);
2254 dirty = 1;
2255 }
2256 if (dirty)
2257 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
2258}
2259
2260#else /* !BB_MMU */
2261
2262static void re_execute_shell(const char *s, int is_heredoc) NORETURN;
2263static void re_execute_shell(const char *s, int is_heredoc)
2264{
2265 char param_buf[sizeof("-$%x:%x:%x:%x") + sizeof(unsigned) * 4];
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002266 char *heredoc_argv[4];
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002267 struct variable *cur;
2268 char **argv, **pp, **pp2;
2269 unsigned cnt;
2270
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002271 if (is_heredoc) {
2272 argv = heredoc_argv;
2273 argv[0] = (char *) G.argv0_for_re_execing;
2274 argv[1] = (char *) "-<";
2275 argv[2] = (char *) s;
2276 argv[3] = NULL;
Denis Vlasenkof50caac2009-04-09 01:40:15 +00002277 pp = &argv[3]; /* used as pointer to empty environment */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002278 goto do_exec;
2279 }
2280
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002281 sprintf(param_buf, "-$%x:%x:%x" USE_HUSH_LOOPS(":%x")
2282 , (unsigned) G.root_pid
2283 , (unsigned) G.last_bg_pid
2284 , (unsigned) G.last_exitcode
2285 USE_HUSH_LOOPS(, G.depth_of_loop)
2286 );
2287 /* 1:hush 2:-$<pid>:<pid>:<exitcode>:<depth> <vars...>
2288 * 3:-c 4:<cmd> <argN...> 5:NULL
2289 */
2290 cnt = 5 + G.global_argc;
2291 for (cur = G.top_var; cur; cur = cur->next) {
2292 if (!cur->flg_export || cur->flg_read_only)
2293 cnt += 2;
2294 }
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002295 G.argv_from_re_execing = argv = pp = xzalloc(sizeof(argv[0]) * cnt);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002296 *pp++ = (char *) G.argv0_for_re_execing;
2297 *pp++ = param_buf;
2298 for (cur = G.top_var; cur; cur = cur->next) {
2299 if (cur->varstr == hush_version_str)
2300 continue;
2301 if (cur->flg_read_only) {
2302 *pp++ = (char *) "-R";
2303 *pp++ = cur->varstr;
2304 } else if (!cur->flg_export) {
2305 *pp++ = (char *) "-V";
2306 *pp++ = cur->varstr;
2307 }
2308 }
2309//TODO: pass functions
2310 /* We can pass activated traps here. Say, -Tnn:trap_string
2311 *
2312 * However, POSIX says that subshells reset signals with traps
2313 * to SIG_DFL.
2314 * I tested bash-3.2 and it not only does that with true subshells
2315 * of the form ( list ), but with any forked children shells.
2316 * I set trap "echo W" WINCH; and then tried:
2317 *
2318 * { echo 1; sleep 20; echo 2; } &
2319 * while true; do echo 1; sleep 20; echo 2; break; done &
2320 * true | { echo 1; sleep 20; echo 2; } | cat
2321 *
2322 * In all these cases sending SIGWINCH to the child shell
2323 * did not run the trap. If I add trap "echo V" WINCH;
2324 * _inside_ group (just before echo 1), it works.
2325 *
2326 * I conclude it means we don't need to pass active traps here.
2327 * exec syscall below resets them to SIG_DFL for us.
2328 */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002329 *pp++ = (char *) "-c";
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002330 *pp++ = (char *) s;
2331 pp2 = G.global_argv;
2332 while (*pp2)
2333 *pp++ = *pp2++;
2334 /* *pp = NULL; - is already there */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002335 pp = environ;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002336
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002337 do_exec:
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002338 debug_printf_exec("re_execute_shell pid:%d cmd:'%s'\n", getpid(), s);
2339 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002340 execve(bb_busybox_exec_path, argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002341 /* Fallback. Useful for init=/bin/hush usage etc */
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002342 if (argv[0][0] == '/')
2343 execve(argv[0], argv, pp);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002344 xfunc_error_retval = 127;
2345 bb_error_msg_and_die("can't re-execute the shell");
2346}
2347
2348static void clean_up_after_re_execute(void)
2349{
2350 char **pp = G.argv_from_re_execing;
2351 if (pp) {
2352 /* Must match re_execute_shell's allocations (if any) */
2353 free(pp);
2354 G.argv_from_re_execing = NULL;
2355 }
2356}
2357#endif /* !BB_MMU */
2358
2359
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002360static void setup_heredoc(struct redir_struct *redir)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002361{
2362 struct fd_pair pair;
2363 pid_t pid;
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002364 int len, written;
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002365 /* the _body_ of heredoc (misleading field name) */
2366 const char *heredoc = redir->rd_filename;
2367 char *expanded;
2368
2369 expanded = NULL;
2370 if (!(redir->rd_dup & HEREDOC_QUOTED)) {
2371 expanded = expand_pseudo_dquoted(heredoc);
2372 if (expanded)
2373 heredoc = expanded;
2374 }
2375 len = strlen(heredoc);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002376
Denis Vlasenkoa2218dd2009-04-09 01:39:02 +00002377 close(redir->rd_fd); /* often saves dup2+close in xmove_fd */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002378 xpiped_pair(pair);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002379 xmove_fd(pair.rd, redir->rd_fd);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002380
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002381 /* Try writing without forking. Newer kernels have
2382 * dynamically growing pipes. Must use non-blocking write! */
2383 ndelay_on(pair.wr);
2384 while (1) {
2385 written = write(pair.wr, heredoc, len);
2386 if (written <= 0)
2387 break;
2388 len -= written;
2389 if (len == 0) {
2390 close(pair.wr);
Denis Vlasenko1943aec2009-04-09 14:15:57 +00002391 free(expanded);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002392 return;
2393 }
2394 heredoc += written;
2395 }
2396 ndelay_off(pair.wr);
2397
2398 /* Okay, pipe buffer was not big enough */
2399 /* Note: we must not create a stray child (bastard? :)
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002400 * for the unsuspecting parent process. Child creates a grandchild
2401 * and exits before parent execs the process which consumes heredoc
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002402 * (that exec happens after we return from this function) */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002403 pid = vfork();
2404 if (pid < 0)
2405 bb_perror_msg_and_die("vfork");
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002406 if (pid == 0) {
2407 /* child */
2408 pid = BB_MMU ? fork() : vfork();
2409 if (pid < 0)
2410 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
2411 if (pid != 0)
2412 _exit(0);
2413 /* grandchild */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002414 close(redir->rd_fd); /* read side of the pipe */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002415#if BB_MMU
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002416 full_write(pair.wr, heredoc, len); /* may loop or block */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002417 _exit(0);
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002418#else
2419 /* Delegate blocking writes to another process */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002420 disable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002421 xmove_fd(pair.wr, STDOUT_FILENO);
2422 re_execute_shell(heredoc, 1);
2423#endif
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002424 }
2425 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002426 enable_restore_tty_pgrp_on_exit();
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002427 clean_up_after_re_execute();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002428 close(pair.wr);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002429 free(expanded);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002430 wait(NULL); /* wait till child has died */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002431}
2432
Eric Andersen25f27032001-04-26 23:22:31 +00002433/* squirrel != NULL means we squirrel away copies of stdin, stdout,
2434 * and stderr if they are redirected. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002435static int setup_redirects(struct command *prog, int squirrel[])
Eric Andersen25f27032001-04-26 23:22:31 +00002436{
2437 int openfd, mode;
2438 struct redir_struct *redir;
2439
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002440 for (redir = prog->redirects; redir; redir = redir->next) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002441 if (redir->rd_type == REDIRECT_HEREDOC2) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002442 /* rd_fd<<HERE case */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002443 if (squirrel && redir->rd_fd < 3) {
2444 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002445 }
2446 /* for REDIRECT_HEREDOC2, rd_filename holds _contents_
2447 * of the heredoc */
2448 debug_printf_parse("set heredoc '%s'\n",
2449 redir->rd_filename);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002450 setup_heredoc(redir);
Eric Andersen817e73c2001-06-06 17:56:09 +00002451 continue;
2452 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002453
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002454 if (redir->rd_dup == REDIRFD_TO_FILE) {
2455 /* rd_fd<*>file case (<*> is <,>,>>,<>) */
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002456 char *p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002457 if (redir->rd_filename == NULL) {
2458 /* Something went wrong in the parse.
2459 * Pretend it didn't happen */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002460 bb_error_msg("bug in redirect parse");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002461 continue;
2462 }
Denis Vlasenko55789c62008-06-18 16:30:42 +00002463 mode = redir_table[redir->rd_type].mode;
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00002464 p = expand_string_to_string(redir->rd_filename);
Denis Vlasenkocccdc4e2007-11-23 21:08:38 +00002465 openfd = open_or_warn(p, mode);
2466 free(p);
Eric Andersen25f27032001-04-26 23:22:31 +00002467 if (openfd < 0) {
2468 /* this could get lost if stderr has been redirected, but
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00002469 * bash and ash both lose it as well (though zsh doesn't!) */
2470//what the above comment tries to say?
Eric Andersen25f27032001-04-26 23:22:31 +00002471 return 1;
2472 }
2473 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002474 /* rd_fd<*>rd_dup or rd_fd<*>- cases */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002475 openfd = redir->rd_dup;
Eric Andersen25f27032001-04-26 23:22:31 +00002476 }
2477
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002478 if (openfd != redir->rd_fd) {
2479 if (squirrel && redir->rd_fd < 3) {
2480 squirrel[redir->rd_fd] = dup(redir->rd_fd);
Eric Andersen25f27032001-04-26 23:22:31 +00002481 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002482 if (openfd == REDIRFD_CLOSE) {
2483 /* "n>-" means "close me" */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00002484 close(redir->rd_fd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002485 } else {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002486 xdup2(openfd, redir->rd_fd);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00002487 if (redir->rd_dup == REDIRFD_TO_FILE)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002488 close(openfd);
Eric Andersen83a2ae22001-05-07 17:59:25 +00002489 }
Eric Andersen25f27032001-04-26 23:22:31 +00002490 }
2491 }
2492 return 0;
2493}
2494
2495static void restore_redirects(int squirrel[])
2496{
2497 int i, fd;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00002498 for (i = 0; i < 3; i++) {
Eric Andersen25f27032001-04-26 23:22:31 +00002499 fd = squirrel[i];
2500 if (fd != -1) {
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00002501 /* We simply die on error */
2502 xmove_fd(fd, i);
Eric Andersen25f27032001-04-26 23:22:31 +00002503 }
2504 }
2505}
2506
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002507
Denis Vlasenkoa0e65122009-04-05 23:39:14 +00002508#if !DEBUG_CLEAN
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002509#define free_pipe_list(head, indent) free_pipe_list(head)
2510#define free_pipe(pi, indent) free_pipe(pi)
2511#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002512static void free_pipe_list(struct pipe *head, int indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002513
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002514/* Return code is the exit status of the pipe */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002515static void free_pipe(struct pipe *pi, int indent)
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002516{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002517 char **p;
2518 struct command *command;
2519 struct redir_struct *r, *rnext;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002520 int a, i;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002521
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002522 if (pi->stopped_cmds > 0) /* why? */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002523 return;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002524 debug_printf_clean("%s run pipe: (pid %d)\n", indenter(indent), getpid());
2525 for (i = 0; i < pi->num_cmds; i++) {
2526 command = &pi->cmds[i];
2527 debug_printf_clean("%s command %d:\n", indenter(indent), i);
2528 if (command->argv) {
2529 for (a = 0, p = command->argv; *p; a++, p++) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002530 debug_printf_clean("%s argv[%d] = %s\n",
2531 indenter(indent), a, *p);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002532 }
2533 free_strings(command->argv);
2534 command->argv = NULL;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002535 }
2536 /* not "else if": on syntax error, we may have both! */
2537 if (command->group) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002538 debug_printf_clean("%s begin group (grp_type:%d)\n",
2539 indenter(indent), command->grp_type);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002540 free_pipe_list(command->group, indent+3);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002541 debug_printf_clean("%s end group\n", indenter(indent));
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002542 command->group = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002543 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002544#if !BB_MMU
2545 free(command->group_as_string);
2546 command->group_as_string = NULL;
2547#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002548 for (r = command->redirects; r; r = rnext) {
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002549 debug_printf_clean("%s redirect %d%s", indenter(indent),
2550 r->fd, redir_table[r->rd_type].descrip);
2551 /* guard against the case >$FOO, where foo is unset or blank */
2552 if (r->rd_filename) {
2553 debug_printf_clean(" fname:'%s'\n", r->rd_filename);
2554 free(r->rd_filename);
2555 r->rd_filename = NULL;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002556 }
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00002557 debug_printf_clean(" rd_dup:%d\n", r->rd_dup);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002558 rnext = r->next;
2559 free(r);
2560 }
2561 command->redirects = NULL;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002562 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002563 free(pi->cmds); /* children are an array, they get freed all at once */
2564 pi->cmds = NULL;
2565#if ENABLE_HUSH_JOB
2566 free(pi->cmdtext);
2567 pi->cmdtext = NULL;
2568#endif
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002569}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00002570
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002571static void free_pipe_list(struct pipe *head, int indent)
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002572{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002573 struct pipe *pi, *next;
2574
2575 for (pi = head; pi; pi = next) {
2576#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002577 debug_printf_clean("%s pipe reserved word %d\n", indenter(indent), pi->res_word);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002578#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00002579 free_pipe(pi, indent);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002580 debug_printf_clean("%s pipe followup code %d\n", indenter(indent), pi->followup);
2581 next = pi->next;
2582 /*pi->next = NULL;*/
2583 free(pi);
2584 }
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002585}
2586
2587
Denis Vlasenkocc90f442009-04-08 16:40:34 +00002588#if BB_MMU
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002589#define pseudo_exec_argv(nommu_save, argv, assignment_cnt, argv_expanded) \
2590 pseudo_exec_argv(argv, assignment_cnt, argv_expanded)
2591#define pseudo_exec(nommu_save, command, argv_expanded) \
2592 pseudo_exec(command, argv_expanded)
2593#endif
2594
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002595/* Called after [v]fork() in run_pipe, or from builtin_exec.
Denis Vlasenko8412d792007-10-01 09:59:47 +00002596 * Never returns.
2597 * XXX no exit() here. If you don't exec, use _exit instead.
Eric Andersen94ac2442001-05-22 19:05:18 +00002598 * The at_exit handlers apparently confuse the calling process,
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002599 * in particular stdin handling. Not sure why? -- because of vfork! (vda) */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002600static void pseudo_exec_argv(nommu_save_t *nommu_save,
2601 char **argv, int assignment_cnt,
2602 char **argv_expanded) NORETURN;
2603static void pseudo_exec_argv(nommu_save_t *nommu_save,
2604 char **argv, int assignment_cnt,
2605 char **argv_expanded)
Eric Andersen25f27032001-04-26 23:22:31 +00002606{
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002607 char **new_env;
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002608
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002609 /* Case when we are here: ... | var=val | ... */
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002610 if (!argv[assignment_cnt])
Denis Vlasenko1359da62007-04-21 23:27:30 +00002611 _exit(EXIT_SUCCESS);
Denis Vlasenko87cb2db2007-04-21 10:00:01 +00002612
Denis Vlasenko9504e442008-10-29 01:19:15 +00002613 new_env = expand_assignments(argv, assignment_cnt);
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002614#if BB_MMU
2615 putenv_all(new_env);
2616 free(new_env); /* optional */
2617#else
2618 nommu_save->new_env = new_env;
2619 nommu_save->old_env = putenv_all_and_save_old(new_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00002620#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002621 if (argv_expanded) {
2622 argv = argv_expanded;
2623 } else {
Denis Vlasenko37181682009-04-03 03:19:15 +00002624 argv = expand_strvec_to_strvec(argv + assignment_cnt);
Denis Vlasenko76d50412008-06-10 16:19:39 +00002625#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00002626 nommu_save->argv = argv;
Denis Vlasenko76d50412008-06-10 16:19:39 +00002627#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00002628 }
Denis Vlasenko764d59d2007-05-14 16:23:23 +00002629
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002630 /* On NOMMU, we must never block!
2631 * Example: { sleep 99999 | read line } & echo Ok
2632 * read builtin will block on read syscall, leaving parent blocked
2633 * in vfork. Therefore we can't do this:
2634 */
2635#if BB_MMU
2636 /* Check if the command matches any of the builtins.
Denis Vlasenko1359da62007-04-21 23:27:30 +00002637 * Depending on context, this might be redundant. But it's
2638 * easier to waste a few CPU cycles than it is to figure out
2639 * if this is one of those cases.
2640 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00002641 {
2642 int rcode;
2643 const struct built_in_command *x;
2644 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
2645 if (strcmp(argv[0], x->cmd) == 0) {
2646 debug_printf_exec("running builtin '%s'\n",
2647 argv[0]);
2648 rcode = x->function(argv);
2649 fflush(NULL);
2650 _exit(rcode);
2651 }
Eric Andersen94ac2442001-05-22 19:05:18 +00002652 }
Denis Vlasenko1359da62007-04-21 23:27:30 +00002653 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002654#endif
Eric Andersen78a7c992001-05-15 16:30:25 +00002655
Denis Vlasenko80d14be2007-04-10 23:03:30 +00002656#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002657 /* Check if the command matches any busybox applets */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002658 if (strchr(argv[0], '/') == NULL) {
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002659 int a = find_applet_by_name(argv[0]);
2660 if (a >= 0) {
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002661#if BB_MMU /* see above why on NOMMU it is not allowed */
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002662 if (APPLET_IS_NOEXEC(a)) {
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002663 debug_printf_exec("running applet '%s'\n", argv[0]);
Denis Vlasenko1aa7e472007-11-28 06:49:03 +00002664 run_applet_no_and_exit(a, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002665 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002666#endif
2667 /* Re-exec ourselves */
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002668 debug_printf_exec("re-execing applet '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002669 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
2670 execv(bb_busybox_exec_path, argv);
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002671 /* If they called chroot or otherwise made the binary no longer
2672 * executable, fall through */
2673 }
2674 }
Eric Andersenaac75e52001-04-30 18:18:45 +00002675#endif
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002676
2677 debug_printf_exec("execing '%s'\n", argv[0]);
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002678 sigprocmask(SIG_SETMASK, &G.inherited_set, NULL);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002679 execvp(argv[0], argv);
Bernhard Reutner-Fischera53de7f2008-07-21 13:46:54 +00002680 bb_perror_msg("can't exec '%s'", argv[0]);
Bernhard Reutner-Fischer636a1f82008-05-19 09:29:47 +00002681 _exit(EXIT_FAILURE);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002682}
2683
Denis Vlasenko424f79b2009-03-22 14:23:34 +00002684static int run_list(struct pipe *pi);
2685
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00002686/* Called after [v]fork() in run_pipe
Denis Vlasenko8412d792007-10-01 09:59:47 +00002687 */
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00002688static void pseudo_exec(nommu_save_t *nommu_save,
2689 struct command *command,
2690 char **argv_expanded) NORETURN;
2691static void pseudo_exec(nommu_save_t *nommu_save,
2692 struct command *command,
2693 char **argv_expanded)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002694{
Denis Vlasenko552433b2009-04-04 19:29:21 +00002695 if (command->argv) {
2696 pseudo_exec_argv(nommu_save, command->argv,
2697 command->assignment_cnt, argv_expanded);
2698 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002699
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002700 if (command->group) {
Denis Vlasenko552433b2009-04-04 19:29:21 +00002701 /* Cases when we are here:
2702 * ( list )
2703 * { list } &
2704 * ... | ( list ) | ...
2705 * ... | { list } | ...
2706 */
2707#if BB_MMU
Denis Vlasenko3b492162007-12-24 14:26:57 +00002708 int rcode;
Denis Vlasenko05743d72008-02-10 12:10:08 +00002709 debug_printf_exec("pseudo_exec: run_list\n");
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00002710 reset_traps_to_defaults();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002711 rcode = run_list(command->group);
Eric Andersenbf7df042001-05-23 22:18:35 +00002712 /* OK to leak memory by not calling free_pipe_list,
Eric Andersen25f27032001-04-26 23:22:31 +00002713 * since this process is about to exit */
Eric Andersen94ac2442001-05-22 19:05:18 +00002714 _exit(rcode);
Denis Vlasenko552433b2009-04-04 19:29:21 +00002715#else
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00002716 re_execute_shell(command->group_as_string, 0);
Denis Vlasenko8412d792007-10-01 09:59:47 +00002717#endif
Eric Andersen25f27032001-04-26 23:22:31 +00002718 }
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002719
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002720 /* Case when we are here: ... | >file */
2721 debug_printf_exec("pseudo_exec'ed null command\n");
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002722 _exit(EXIT_SUCCESS);
Eric Andersen25f27032001-04-26 23:22:31 +00002723}
2724
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002725#if ENABLE_HUSH_JOB
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002726static const char *get_cmdtext(struct pipe *pi)
2727{
2728 char **argv;
2729 char *p;
2730 int len;
2731
2732 /* This is subtle. ->cmdtext is created only on first backgrounding.
2733 * (Think "cat, <ctrl-z>, fg, <ctrl-z>, fg, <ctrl-z>...." here...)
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002734 * On subsequent bg argv is trashed, but we won't use it */
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002735 if (pi->cmdtext)
2736 return pi->cmdtext;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002737 argv = pi->cmds[0].argv;
Denis Vlasenkoa8442002008-06-14 11:00:17 +00002738 if (!argv || !argv[0]) {
2739 pi->cmdtext = xzalloc(1);
2740 return pi->cmdtext;
2741 }
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002742
2743 len = 0;
2744 do len += strlen(*argv) + 1; while (*++argv);
2745 pi->cmdtext = p = xmalloc(len);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002746 argv = pi->cmds[0].argv;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002747 do {
2748 len = strlen(*argv);
2749 memcpy(p, *argv, len);
2750 p += len;
2751 *p++ = ' ';
2752 } while (*++argv);
2753 p[-1] = '\0';
2754 return pi->cmdtext;
2755}
2756
Eric Andersenbafd94f2001-05-02 16:11:59 +00002757static void insert_bg_job(struct pipe *pi)
2758{
2759 struct pipe *thejob;
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002760 int i;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002761
2762 /* Linear search for the ID of the job to use */
2763 pi->jobid = 1;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002764 for (thejob = G.job_list; thejob; thejob = thejob->next)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002765 if (thejob->jobid >= pi->jobid)
2766 pi->jobid = thejob->jobid + 1;
2767
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002768 /* Add thejob to the list of running jobs */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002769 if (!G.job_list) {
2770 thejob = G.job_list = xmalloc(sizeof(*thejob));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002771 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002772 for (thejob = G.job_list; thejob->next; thejob = thejob->next)
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00002773 continue;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002774 thejob->next = xmalloc(sizeof(*thejob));
2775 thejob = thejob->next;
2776 }
2777
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002778 /* Physically copy the struct job */
Eric Andersen0fcd4472001-05-02 20:12:03 +00002779 memcpy(thejob, pi, sizeof(struct pipe));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002780 thejob->cmds = xzalloc(sizeof(pi->cmds[0]) * pi->num_cmds);
2781 /* We cannot copy entire pi->cmds[] vector! Double free()s will happen */
2782 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002783// TODO: do we really need to have so many fields which are just dead weight
2784// at execution stage?
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002785 thejob->cmds[i].pid = pi->cmds[i].pid;
Denis Vlasenkoc666f712007-05-16 22:18:54 +00002786 /* all other fields are not used and stay zero */
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002787 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002788 thejob->next = NULL;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00002789 thejob->cmdtext = xstrdup(get_cmdtext(pi));
Eric Andersenbafd94f2001-05-02 16:11:59 +00002790
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002791 /* We don't wait for background thejobs to return -- append it
Eric Andersenbafd94f2001-05-02 16:11:59 +00002792 to the list of backgrounded thejobs and leave it alone */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002793 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002794 printf("[%d] %d %s\n", thejob->jobid, thejob->cmds[0].pid, thejob->cmdtext);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002795 G.last_bg_pid = thejob->cmds[0].pid;
Denis Vlasenko87a86552008-07-29 19:43:10 +00002796 G.last_jobid = thejob->jobid;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002797}
2798
Eric Andersenbafd94f2001-05-02 16:11:59 +00002799static void remove_bg_job(struct pipe *pi)
2800{
2801 struct pipe *prev_pipe;
2802
Denis Vlasenko87a86552008-07-29 19:43:10 +00002803 if (pi == G.job_list) {
2804 G.job_list = pi->next;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002805 } else {
Denis Vlasenko87a86552008-07-29 19:43:10 +00002806 prev_pipe = G.job_list;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002807 while (prev_pipe->next != pi)
2808 prev_pipe = prev_pipe->next;
2809 prev_pipe->next = pi->next;
2810 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00002811 if (G.job_list)
2812 G.last_jobid = G.job_list->jobid;
Eric Andersen028b65b2001-06-28 01:10:11 +00002813 else
Denis Vlasenko87a86552008-07-29 19:43:10 +00002814 G.last_jobid = 0;
Denis Vlasenko1359da62007-04-21 23:27:30 +00002815}
Eric Andersen028b65b2001-06-28 01:10:11 +00002816
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002817/* Remove a backgrounded job */
Denis Vlasenko1359da62007-04-21 23:27:30 +00002818static void delete_finished_bg_job(struct pipe *pi)
2819{
2820 remove_bg_job(pi);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002821 pi->stopped_cmds = 0;
Eric Andersenbf7df042001-05-23 22:18:35 +00002822 free_pipe(pi, 0);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002823 free(pi);
2824}
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00002825#endif /* JOB */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002826
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002827/* Check to see if any processes have exited -- if they
2828 * have, figure out why and see if a job has completed */
Eric Andersenc798b072001-06-22 06:23:03 +00002829static int checkjobs(struct pipe* fg_pipe)
Eric Andersenbafd94f2001-05-02 16:11:59 +00002830{
Eric Andersenc798b072001-06-22 06:23:03 +00002831 int attributes;
2832 int status;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002833#if ENABLE_HUSH_JOB
Eric Andersenbafd94f2001-05-02 16:11:59 +00002834 struct pipe *pi;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002835#endif
Eric Andersenbafd94f2001-05-02 16:11:59 +00002836 pid_t childpid;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002837 int rcode = 0;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002838
Denis Vlasenkod5762932009-03-31 11:22:57 +00002839 debug_printf_jobs("checkjobs %p\n", fg_pipe);
2840
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002841 errno = 0;
2842// if (G.handled_SIGCHLD == G.count_SIGCHLD)
2843// /* avoid doing syscall, nothing there anyway */
2844// return rcode;
2845
Eric Andersenc798b072001-06-22 06:23:03 +00002846 attributes = WUNTRACED;
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002847 if (fg_pipe == NULL)
Eric Andersenc798b072001-06-22 06:23:03 +00002848 attributes |= WNOHANG;
Eric Andersenc798b072001-06-22 06:23:03 +00002849
Denis Vlasenko1359da62007-04-21 23:27:30 +00002850/* Do we do this right?
2851 * bash-3.00# sleep 20 | false
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00002852 * <ctrl-Z pressed>
Denis Vlasenko1359da62007-04-21 23:27:30 +00002853 * [3]+ Stopped sleep 20 | false
2854 * bash-3.00# echo $?
2855 * 1 <========== bg pipe is not fully done, but exitcode is already known!
2856 */
2857
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002858//FIXME: non-interactive bash does not continue even if all processes in fg pipe
2859//are stopped. Testcase: "cat | cat" in a script (not on command line)
2860// + killall -STOP cat
2861
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002862 wait_more:
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002863 while (1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002864 int i;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00002865 int dead;
2866
2867// i = G.count_SIGCHLD;
2868 childpid = waitpid(-1, &status, attributes);
2869 if (childpid <= 0) {
2870 if (childpid && errno != ECHILD)
2871 bb_perror_msg("waitpid");
2872// else /* Until next SIGCHLD, waitpid's are useless */
2873// G.handled_SIGCHLD = i;
2874 break;
2875 }
2876 dead = WIFEXITED(status) || WIFSIGNALED(status);
2877
Denis Vlasenkob61e13d2008-06-17 05:11:43 +00002878#if DEBUG_JOBS
Denis Vlasenko1359da62007-04-21 23:27:30 +00002879 if (WIFSTOPPED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002880 debug_printf_jobs("pid %d stopped by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002881 childpid, WSTOPSIG(status), WEXITSTATUS(status));
2882 if (WIFSIGNALED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002883 debug_printf_jobs("pid %d killed by sig %d (exitcode %d)\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002884 childpid, WTERMSIG(status), WEXITSTATUS(status));
2885 if (WIFEXITED(status))
Denis Vlasenkod01ff132007-05-02 21:40:23 +00002886 debug_printf_jobs("pid %d exited, exitcode %d\n",
Denis Vlasenko1359da62007-04-21 23:27:30 +00002887 childpid, WEXITSTATUS(status));
2888#endif
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002889 /* Were we asked to wait for fg pipe? */
Eric Andersenc798b072001-06-22 06:23:03 +00002890 if (fg_pipe) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002891 for (i = 0; i < fg_pipe->num_cmds; i++) {
2892 debug_printf_jobs("check pid %d\n", fg_pipe->cmds[i].pid);
2893 if (fg_pipe->cmds[i].pid != childpid)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002894 continue;
2895 /* printf("process %d exit %d\n", i, WEXITSTATUS(status)); */
2896 if (dead) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002897 fg_pipe->cmds[i].pid = 0;
2898 fg_pipe->alive_cmds--;
2899 if (i == fg_pipe->num_cmds - 1) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002900 /* last process gives overall exitstatus */
2901 rcode = WEXITSTATUS(status);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00002902 IF_HAS_KEYWORDS(if (fg_pipe->pi_inverted) rcode = !rcode;)
Denis Vlasenko1359da62007-04-21 23:27:30 +00002903 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002904 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002905 fg_pipe->cmds[i].is_stopped = 1;
2906 fg_pipe->stopped_cmds++;
Eric Andersenc798b072001-06-22 06:23:03 +00002907 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002908 debug_printf_jobs("fg_pipe: alive_cmds %d stopped_cmds %d\n",
2909 fg_pipe->alive_cmds, fg_pipe->stopped_cmds);
2910 if (fg_pipe->alive_cmds - fg_pipe->stopped_cmds <= 0) {
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002911 /* All processes in fg pipe have exited/stopped */
2912#if ENABLE_HUSH_JOB
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002913 if (fg_pipe->alive_cmds)
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002914 insert_bg_job(fg_pipe);
2915#endif
2916 return rcode;
2917 }
2918 /* There are still running processes in the fg pipe */
2919 goto wait_more; /* do waitpid again */
Eric Andersenc798b072001-06-22 06:23:03 +00002920 }
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002921 /* it wasnt fg_pipe, look for process in bg pipes */
Eric Andersenc798b072001-06-22 06:23:03 +00002922 }
2923
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002924#if ENABLE_HUSH_JOB
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002925 /* We asked to wait for bg or orphaned children */
2926 /* No need to remember exitcode in this case */
Denis Vlasenko87a86552008-07-29 19:43:10 +00002927 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002928 for (i = 0; i < pi->num_cmds; i++) {
2929 if (pi->cmds[i].pid == childpid)
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002930 goto found_pi_and_prognum;
Eric Andersen52a97ca2001-06-22 06:49:26 +00002931 }
Eric Andersenbafd94f2001-05-02 16:11:59 +00002932 }
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002933 /* Happens when shell is used as init process (init=/bin/sh) */
2934 debug_printf("checkjobs: pid %d was not in our list!\n", childpid);
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002935 continue; /* do waitpid again */
Eric Andersenaeb44c42001-05-22 20:29:00 +00002936
Denis Vlasenko5f786c22007-04-20 08:35:45 +00002937 found_pi_and_prognum:
Denis Vlasenko1359da62007-04-21 23:27:30 +00002938 if (dead) {
Eric Andersenbafd94f2001-05-02 16:11:59 +00002939 /* child exited */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002940 pi->cmds[i].pid = 0;
2941 pi->alive_cmds--;
2942 if (!pi->alive_cmds) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002943 if (G_interactive_fd)
Mike Frysinger87824e02009-03-30 00:19:30 +00002944 printf(JOB_STATUS_FORMAT, pi->jobid,
2945 "Done", pi->cmdtext);
Denis Vlasenko1359da62007-04-21 23:27:30 +00002946 delete_finished_bg_job(pi);
Eric Andersenbafd94f2001-05-02 16:11:59 +00002947 }
2948 } else {
2949 /* child stopped */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00002950 pi->cmds[i].is_stopped = 1;
2951 pi->stopped_cmds++;
Eric Andersenbafd94f2001-05-02 16:11:59 +00002952 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002953#endif
Denis Vlasenko003f9fb2008-06-24 00:47:58 +00002954 } /* while (waitpid succeeds)... */
Eric Andersenbafd94f2001-05-02 16:11:59 +00002955
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00002956 return rcode;
Eric Andersenada18ff2001-05-21 16:18:22 +00002957}
2958
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00002959#if ENABLE_HUSH_JOB
Denis Vlasenko52881e92007-04-21 13:42:52 +00002960static int checkjobs_and_fg_shell(struct pipe* fg_pipe)
2961{
2962 pid_t p;
2963 int rcode = checkjobs(fg_pipe);
2964 /* Job finished, move the shell to the foreground */
Denis Vlasenko170435c2007-05-23 13:01:10 +00002965 p = getpgid(0); /* pgid of our process */
2966 debug_printf_jobs("fg'ing ourself: getpgid(0)=%d\n", (int)p);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00002967 tcsetpgrp(G_interactive_fd, p);
Denis Vlasenko52881e92007-04-21 13:42:52 +00002968 return rcode;
2969}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00002970#endif
Denis Vlasenko52881e92007-04-21 13:42:52 +00002971
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002972/* Start all the jobs, but don't wait for anything to finish.
2973 * See checkjobs().
Eric Andersen25f27032001-04-26 23:22:31 +00002974 *
Denis Vlasenko552433b2009-04-04 19:29:21 +00002975 * Return code is normally -1, when the caller has to wait for children
Eric Andersen25f27032001-04-26 23:22:31 +00002976 * to finish to determine the exit status of the pipe. If the pipe
2977 * is a simple builtin command, however, the action is done by the
Denis Vlasenko05743d72008-02-10 12:10:08 +00002978 * time run_pipe returns, and the exit code is provided as the
Eric Andersen25f27032001-04-26 23:22:31 +00002979 * return value.
2980 *
Denis Vlasenko170435c2007-05-23 13:01:10 +00002981 * Returns -1 only if started some children. IOW: we have to
2982 * mask out retvals of builtins etc with 0xff!
Denis Vlasenko552433b2009-04-04 19:29:21 +00002983 *
2984 * The only case when we do not need to [v]fork is when the pipe
2985 * is single, non-backgrounded, non-subshell command. Examples:
2986 * cmd ; ... { list } ; ...
2987 * cmd && ... { list } && ...
2988 * cmd || ... { list } || ...
2989 * If it is, then we can run cmd as a builtin, NOFORK [do we do this?],
2990 * or (if SH_STANDALONE) an applet, and we can run the { list }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00002991 * with run_list(). If it isn't one of these, we fork and exec cmd.
Denis Vlasenko552433b2009-04-04 19:29:21 +00002992 *
2993 * Cases when we must fork:
2994 * non-single: cmd | cmd
2995 * backgrounded: cmd & { list } &
2996 * subshell: ( list ) [&]
Eric Andersen25f27032001-04-26 23:22:31 +00002997 */
Denis Vlasenko05743d72008-02-10 12:10:08 +00002998static int run_pipe(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00002999{
Denis Vlasenko552433b2009-04-04 19:29:21 +00003000 static const char *const null_ptr = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00003001 int i;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003002 int nextin;
3003 int pipefds[2]; /* pipefds[0] is for reading */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003004 struct command *command;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003005 char **argv_expanded;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003006 char **argv;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003007 char *p;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003008 /* it is not always needed, but we aim to smaller code */
3009 int squirrel[] = { -1, -1, -1 };
3010 int rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003011
Denis Vlasenko552433b2009-04-04 19:29:21 +00003012 debug_printf_exec("run_pipe start: members:%d\n", pi->num_cmds);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003013
Denis Vlasenko552433b2009-04-04 19:29:21 +00003014 USE_HUSH_JOB(pi->pgrp = -1;)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003015 pi->stopped_cmds = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003016 command = &(pi->cmds[0]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003017 argv_expanded = NULL;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003018
Denis Vlasenko552433b2009-04-04 19:29:21 +00003019 if (pi->num_cmds != 1
3020 || pi->followup == PIPE_BG
3021 || command->grp_type == GRP_SUBSHELL
3022 ) {
3023 goto must_fork;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003024 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003025
Denis Vlasenko552433b2009-04-04 19:29:21 +00003026 pi->alive_cmds = 1;
3027
3028 debug_printf_exec(": group:%p argv:'%s'\n",
3029 command->group, command->argv ? command->argv[0] : "NONE");
3030
3031 if (command->group) {
3032#if ENABLE_HUSH_FUNCTIONS
3033 if (command->grp_type == GRP_FUNCTION) {
3034 /* func () { list } */
3035 bb_error_msg("here we ought to remember function definition, and go on");
3036 return EXIT_SUCCESS;
3037 }
3038#endif
3039 /* { list } */
3040 debug_printf("non-subshell group\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003041 rcode = 1; /* exitcode if redir failed */
3042 if (setup_redirects(command, squirrel) == 0) {
3043 debug_printf_exec(": run_list\n");
3044 rcode = run_list(command->group) & 0xff;
3045 debug_printf_exec("run_pipe return %d\n", rcode);
3046 }
Eric Andersen04407e52001-06-07 16:42:05 +00003047 restore_redirects(squirrel);
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003048 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
Denis Vlasenko05743d72008-02-10 12:10:08 +00003049 return rcode;
Denis Vlasenkof03dbed2007-04-13 19:55:50 +00003050 }
3051
Denis Vlasenko552433b2009-04-04 19:29:21 +00003052 argv = command->argv ? command->argv : (char **) &null_ptr;
3053 {
3054 const struct built_in_command *x;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003055 char **new_env = NULL;
3056 char **old_env = NULL;
3057
Denis Vlasenko552433b2009-04-04 19:29:21 +00003058 if (argv[command->assignment_cnt] == NULL) {
3059 /* Assignments, but no command */
3060 /* Ensure redirects take effect. Try "a=t >file" */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003061 rcode = setup_redirects(command, squirrel);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003062 restore_redirects(squirrel);
3063 /* Set shell variables */
3064 while (*argv) {
3065 p = expand_string_to_string(*argv);
3066 debug_printf_exec("set shell var:'%s'->'%s'\n",
3067 *argv, p);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00003068 set_local_var(p, 0, 0);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003069 argv++;
Eric Andersen78a7c992001-05-15 16:30:25 +00003070 }
Denis Vlasenko552433b2009-04-04 19:29:21 +00003071 /* Do we need to flag set_local_var() errors?
3072 * "assignment to readonly var" and "putenv error"
3073 */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003074 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3075 return rcode;
Eric Andersen78a7c992001-05-15 16:30:25 +00003076 }
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003077
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003078 /* Expand the rest into (possibly) many strings each */
Denis Vlasenko552433b2009-04-04 19:29:21 +00003079 argv_expanded = expand_strvec_to_strvec(argv + command->assignment_cnt);
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003080
Denis Vlasenkodd316dd2008-06-14 15:50:55 +00003081 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003082 if (strcmp(argv_expanded[0], x->cmd) != 0)
3083 continue;
3084 if (x->function == builtin_exec && argv_expanded[1] == NULL) {
3085 debug_printf("exec with redirects only\n");
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003086 rcode = setup_redirects(command, NULL);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003087 goto clean_up_and_ret1;
Eric Andersen25f27032001-04-26 23:22:31 +00003088 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003089 debug_printf("builtin inline %s\n", argv_expanded[0]);
3090 /* XXX setup_redirects acts on file descriptors, not FILEs.
3091 * This is perfect for work that comes after exec().
3092 * Is it really safe for inline use? Experimentally,
3093 * things seem to work with glibc. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003094 rcode = setup_redirects(command, squirrel);
3095 if (rcode == 0) {
3096 new_env = expand_assignments(argv, command->assignment_cnt);
3097 old_env = putenv_all_and_save_old(new_env);
3098 debug_printf_exec(": builtin '%s' '%s'...\n",
3099 x->cmd, argv_expanded[1]);
3100 rcode = x->function(argv_expanded) & 0xff;
3101 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003102#if ENABLE_FEATURE_SH_STANDALONE
3103 clean_up_and_ret:
3104#endif
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003105 restore_redirects(squirrel);
3106 free_strings_and_unsetenv(new_env, 1);
3107 putenv_all(old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003108 /* Free the pointers, but the strings themselves
3109 * are in environ now, don't use free_strings! */
3110 free(old_env);
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003111 clean_up_and_ret1:
3112 free(argv_expanded);
3113 IF_HAS_KEYWORDS(if (pi->pi_inverted) rcode = !rcode;)
3114 debug_printf_exec("run_pipe return %d\n", rcode);
3115 return rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003116 }
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003117#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003118 i = find_applet_by_name(argv_expanded[0]);
3119 if (i >= 0 && APPLET_IS_NOFORK(i)) {
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003120 rcode = setup_redirects(command, squirrel);
3121 if (rcode == 0) {
3122 save_nofork_data(&G.nofork_save);
3123 new_env = expand_assignments(argv, command->assignment_cnt);
3124 old_env = putenv_all_and_save_old(new_env);
3125 debug_printf_exec(": run_nofork_applet '%s' '%s'...\n",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003126 argv_expanded[0], argv_expanded[1]);
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003127 rcode = run_nofork_applet_prime(&G.nofork_save, i, argv_expanded);
3128 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00003129 goto clean_up_and_ret;
Denis Vlasenkof5294e12007-04-14 10:09:57 +00003130 }
3131#endif
Denis Vlasenko552433b2009-04-04 19:29:21 +00003132 /* It is neither builtin nor applet. We must fork. */
Eric Andersen25f27032001-04-26 23:22:31 +00003133 }
3134
Denis Vlasenko552433b2009-04-04 19:29:21 +00003135 must_fork:
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003136 /* NB: argv_expanded may already be created, and that
3137 * might include `cmd` runs! Do not rerun it! We *must*
3138 * use argv_expanded if it's non-NULL */
3139
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003140 /* Going to fork a child per each pipe member */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003141 pi->alive_cmds = 0;
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003142 nextin = 0;
3143
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003144 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenko76d50412008-06-10 16:19:39 +00003145#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003146 volatile nommu_save_t nommu_save;
3147 nommu_save.new_env = NULL;
3148 nommu_save.old_env = NULL;
3149 nommu_save.argv = NULL;
Denis Vlasenko76d50412008-06-10 16:19:39 +00003150#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003151 command = &(pi->cmds[i]);
3152 if (command->argv) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003153 debug_printf_exec(": pipe member '%s' '%s'...\n",
3154 command->argv[0], command->argv[1]);
Denis Vlasenko552433b2009-04-04 19:29:21 +00003155 } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003156 debug_printf_exec(": pipe member with no argv\n");
Denis Vlasenko552433b2009-04-04 19:29:21 +00003157 }
Eric Andersen25f27032001-04-26 23:22:31 +00003158
3159 /* pipes are inserted between pairs of commands */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003160 pipefds[0] = 0;
3161 pipefds[1] = 1;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003162 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003163 xpipe(pipefds);
Eric Andersen25f27032001-04-26 23:22:31 +00003164
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003165 command->pid = BB_MMU ? fork() : vfork();
3166 if (!command->pid) { /* child */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003167#if ENABLE_HUSH_JOB
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003168 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkod5762932009-03-31 11:22:57 +00003169
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003170 /* Every child adds itself to new process group
Denis Vlasenko05743d72008-02-10 12:10:08 +00003171 * with pgid == pid_of_first_child_in_pipe */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003172 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003173 pid_t pgrp;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003174 pgrp = pi->pgrp;
3175 if (pgrp < 0) /* true for 1st process only */
3176 pgrp = getpid();
3177 if (setpgid(0, pgrp) == 0 && pi->followup != PIPE_BG) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003178 /* We do it in *every* child, not just first,
3179 * to avoid races */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003180 tcsetpgrp(G_interactive_fd, pgrp);
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003181 }
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003182 }
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003183#endif
Denis Vlasenko8412d792007-10-01 09:59:47 +00003184 xmove_fd(nextin, 0);
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003185 xmove_fd(pipefds[1], 1); /* write end */
3186 if (pipefds[0] > 1)
3187 close(pipefds[0]); /* read end */
Eric Andersen25f27032001-04-26 23:22:31 +00003188 /* Like bash, explicit redirects override pipes,
3189 * and the pipe fd is available for dup'ing. */
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003190 if (setup_redirects(command, NULL))
3191 _exit(1);
Eric Andersen52a97ca2001-06-22 06:49:26 +00003192
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00003193 /* Restore default handlers just prior to exec */
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003194 /*signal(SIGCHLD, SIG_DFL); - so far we don't have any handlers */
3195
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003196 /* Stores to nommu_save list of env vars putenv'ed
3197 * (NOMMU, on MMU we don't need that) */
3198 /* cast away volatility... */
3199 pseudo_exec((nommu_save_t*) &nommu_save, command, argv_expanded);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003200 /* pseudo_exec() does not return */
Eric Andersen25f27032001-04-26 23:22:31 +00003201 }
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003202
Denis Vlasenkof9375282009-04-05 19:13:39 +00003203 /* parent or error */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00003204 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003205#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003206 /* Clean up after vforked child */
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00003207 clean_up_after_re_execute();
Denis Vlasenkof886fd22008-10-13 12:36:05 +00003208 free(nommu_save.argv);
3209 free_strings_and_unsetenv(nommu_save.new_env, 1);
3210 putenv_all(nommu_save.old_env);
Denis Vlasenkocc90f442009-04-08 16:40:34 +00003211 /* Free the pointers, but the strings themselves
3212 * are in environ now, don't use free_strings! */
3213 free(nommu_save.old_env);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00003214#endif
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00003215 free(argv_expanded);
3216 argv_expanded = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003217 if (command->pid < 0) { /* [v]fork failed */
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003218 /* Clearly indicate, was it fork or vfork */
Denis Vlasenko82604e92008-07-01 15:59:42 +00003219 bb_perror_msg(BB_MMU ? "fork" : "vfork");
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003220 } else {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003221 pi->alive_cmds++;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003222#if ENABLE_HUSH_JOB
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003223 /* Second and next children need to know pid of first one */
3224 if (pi->pgrp < 0)
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003225 pi->pgrp = command->pid;
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003226#endif
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003227 }
Eric Andersen25f27032001-04-26 23:22:31 +00003228
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003229 if (i)
3230 close(nextin);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003231 if ((i + 1) < pi->num_cmds)
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003232 close(pipefds[1]); /* write end */
3233 /* Pass read (output) pipe end to next iteration */
Eric Andersen25f27032001-04-26 23:22:31 +00003234 nextin = pipefds[0];
3235 }
Denis Vlasenkod2c450c2008-01-08 20:32:12 +00003236
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003237 if (!pi->alive_cmds) {
Denis Vlasenko05743d72008-02-10 12:10:08 +00003238 debug_printf_exec("run_pipe return 1 (all forks failed, no children)\n");
3239 return 1;
3240 }
3241
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003242 debug_printf_exec("run_pipe return -1 (%u children started)\n", pi->alive_cmds);
Eric Andersen25f27032001-04-26 23:22:31 +00003243 return -1;
3244}
3245
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003246#ifndef debug_print_tree
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003247static void debug_print_tree(struct pipe *pi, int lvl)
3248{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003249 static const char *const PIPE[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003250 [PIPE_SEQ] = "SEQ",
3251 [PIPE_AND] = "AND",
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003252 [PIPE_OR ] = "OR" ,
3253 [PIPE_BG ] = "BG" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003254 };
3255 static const char *RES[] = {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003256 [RES_NONE ] = "NONE" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003257#if ENABLE_HUSH_IF
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003258 [RES_IF ] = "IF" ,
3259 [RES_THEN ] = "THEN" ,
3260 [RES_ELIF ] = "ELIF" ,
3261 [RES_ELSE ] = "ELSE" ,
3262 [RES_FI ] = "FI" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003263#endif
3264#if ENABLE_HUSH_LOOPS
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003265 [RES_FOR ] = "FOR" ,
3266 [RES_WHILE] = "WHILE",
3267 [RES_UNTIL] = "UNTIL",
3268 [RES_DO ] = "DO" ,
3269 [RES_DONE ] = "DONE" ,
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003270#endif
3271#if ENABLE_HUSH_LOOPS || ENABLE_HUSH_CASE
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003272 [RES_IN ] = "IN" ,
Denis Vlasenko06810332007-05-21 23:30:54 +00003273#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003274#if ENABLE_HUSH_CASE
3275 [RES_CASE ] = "CASE" ,
3276 [RES_MATCH] = "MATCH",
3277 [RES_CASEI] = "CASEI",
3278 [RES_ESAC ] = "ESAC" ,
3279#endif
Denis Vlasenko06810332007-05-21 23:30:54 +00003280 [RES_XXXX ] = "XXXX" ,
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003281 [RES_SNTX ] = "SNTX" ,
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003282 };
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003283 static const char *const GRPTYPE[] = {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003284 "{}",
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00003285 "()",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003286#if ENABLE_HUSH_FUNCTIONS
3287 "func()",
3288#endif
3289 };
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003290
3291 int pin, prn;
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003292
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003293 pin = 0;
3294 while (pi) {
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003295 fprintf(stderr, "%*spipe %d res_word=%s followup=%d %s\n", lvl*2, "",
3296 pin, RES[pi->res_word], pi->followup, PIPE[pi->followup]);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003297 prn = 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003298 while (prn < pi->num_cmds) {
3299 struct command *command = &pi->cmds[prn];
3300 char **argv = command->argv;
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003301
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003302 fprintf(stderr, "%*s cmd %d assignment_cnt:%d",
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003303 lvl*2, "", prn,
3304 command->assignment_cnt);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003305 if (command->group) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003306 fprintf(stderr, " group %s: (argv=%p)\n",
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003307 GRPTYPE[command->grp_type],
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00003308 argv);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003309 debug_print_tree(command->group, lvl+1);
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003310 prn++;
3311 continue;
3312 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003313 if (argv) while (*argv) {
3314 fprintf(stderr, " '%s'", *argv);
3315 argv++;
Denis Vlasenko4b924f32007-05-30 00:29:55 +00003316 }
Denis Vlasenko400c5b62007-05-04 13:07:27 +00003317 fprintf(stderr, "\n");
3318 prn++;
3319 }
3320 pi = pi->next;
3321 pin++;
3322 }
3323}
3324#endif
3325
Denis Vlasenkoc666f712007-05-16 22:18:54 +00003326/* NB: called by pseudo_exec, and therefore must not modify any
3327 * global data until exec/_exit (we can be a child after vfork!) */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003328static int run_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003329{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003330#if ENABLE_HUSH_CASE
3331 char *case_word = NULL;
3332#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003333#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003334 struct pipe *loop_top = NULL;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003335 char *for_varname = NULL;
3336 char **for_lcur = NULL;
3337 char **for_list = NULL;
Denis Vlasenko06810332007-05-21 23:30:54 +00003338#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003339 smallint last_followup;
3340 smalluint rcode;
Denis Vlasenkod91afa32008-07-29 11:10:01 +00003341#if ENABLE_HUSH_IF || ENABLE_HUSH_CASE
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003342 smalluint cond_code = 0;
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003343#else
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003344 enum { cond_code = 0 };
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003345#endif
Denis Vlasenko0e151382009-04-06 18:40:31 +00003346#if HAS_KEYWORDS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003347 smallint rword; /* enum reserved_style */
3348 smallint last_rword; /* ditto */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003349#endif
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003350
Denis Vlasenko87a86552008-07-29 19:43:10 +00003351 debug_printf_exec("run_list start lvl %d\n", G.run_list_level + 1);
Denis Vlasenko4ac530c2007-05-02 15:35:45 +00003352
Denis Vlasenko06810332007-05-21 23:30:54 +00003353#if ENABLE_HUSH_LOOPS
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003354 /* Check syntax for "for" */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003355 for (struct pipe *cpipe = pi; cpipe; cpipe = cpipe->next) {
3356 if (cpipe->res_word != RES_FOR && cpipe->res_word != RES_IN)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003357 continue;
3358 /* current word is FOR or IN (BOLD in comments below) */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003359 if (cpipe->next == NULL) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003360 syntax_error("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003361 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003362 return 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003363 }
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003364 /* "FOR v; do ..." and "for v IN a b; do..." are ok */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003365 if (cpipe->next->res_word == RES_DO)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003366 continue;
3367 /* next word is not "do". It must be "in" then ("FOR v in ...") */
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003368 if (cpipe->res_word == RES_IN /* "for v IN a b; not_do..."? */
3369 || cpipe->next->res_word != RES_IN /* FOR v not_do_and_not_in..."? */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003370 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003371 syntax_error("malformed for");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003372 debug_printf_exec("run_list lvl %d return 1\n", G.run_list_level);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003373 return 1;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003374 }
3375 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003376#endif
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003377
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003378 /* Past this point, all code paths should jump to ret: label
Denis Vlasenko12acec52008-07-28 15:15:59 +00003379 * in order to return, no direct "return" statements please.
3380 * This helps to ensure that no memory is leaked. */
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003381
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00003382////TODO: ctrl-Z handling needs re-thinking and re-testing
Denis Vlasenkod5762932009-03-31 11:22:57 +00003383
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003384#if ENABLE_HUSH_JOB
3385 /* Example of nested list: "while true; do { sleep 1 | exit 2; } done".
3386 * We are saving state before entering outermost list ("while...done")
3387 * so that ctrl-Z will correctly background _entire_ outermost list,
3388 * not just a part of it (like "sleep 1 | exit 2") */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003389 if (++G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003390 if (sigsetjmp(G.toplevel_jb, 1)) {
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003391 /* ctrl-Z forked and we are parent; or ctrl-C.
3392 * Sighandler has longjmped us here */
3393 signal(SIGINT, SIG_IGN);
3394 signal(SIGTSTP, SIG_IGN);
3395 /* Restore level (we can be coming from deep inside
3396 * nested levels) */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003397 G.run_list_level = 1;
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003398#if ENABLE_FEATURE_SH_STANDALONE
Denis Vlasenko87a86552008-07-29 19:43:10 +00003399 if (G.nofork_save.saved) { /* if save area is valid */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003400 debug_printf_jobs("exiting nofork early\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003401 restore_nofork_data(&G.nofork_save);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003402 }
3403#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003404//// if (G.ctrl_z_flag) {
3405//// /* ctrl-Z has forked and stored pid of the child in pi->pid.
3406//// * Remember this child as background job */
3407//// insert_bg_job(pi);
3408//// } else {
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003409 /* ctrl-C. We just stop doing whatever we were doing */
Denis Vlasenko4daad902007-09-27 10:20:47 +00003410 bb_putchar('\n');
Denis Vlasenkod5762932009-03-31 11:22:57 +00003411//// }
Denis Vlasenkoff29b4f2008-07-29 13:57:59 +00003412 USE_HUSH_LOOPS(loop_top = NULL;)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003413 USE_HUSH_LOOPS(G.depth_of_loop = 0;)
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003414 rcode = 0;
3415 goto ret;
3416 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00003417//// /* ctrl-Z handler will store pid etc in pi */
3418//// G.toplevel_list = pi;
3419//// G.ctrl_z_flag = 0;
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00003420#if ENABLE_FEATURE_SH_STANDALONE
3421 G.nofork_save.saved = 0; /* in case we will run a nofork later */
3422#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003423//// signal_SA_RESTART_empty_mask(SIGTSTP, handler_ctrl_z);
3424//// signal(SIGINT, handler_ctrl_c);
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003425 }
Denis Vlasenko05743d72008-02-10 12:10:08 +00003426#endif /* JOB */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003427
Denis Vlasenko0e151382009-04-06 18:40:31 +00003428#if HAS_KEYWORDS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003429 rword = RES_NONE;
3430 last_rword = RES_XXXX;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003431#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003432 last_followup = PIPE_SEQ;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003433 rcode = G.last_exitcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003434
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003435 /* Go through list of pipes, (maybe) executing them. */
3436 for (; pi; pi = USE_HUSH_LOOPS(rword == RES_DONE ? loop_top : ) pi->next) {
Denis Vlasenko422cd7c2009-03-31 12:41:52 +00003437 if (G.flag_SIGINT)
3438 break;
3439
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003440 IF_HAS_KEYWORDS(rword = pi->res_word;)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003441 debug_printf_exec(": rword=%d cond_code=%d last_rword=%d\n",
3442 rword, cond_code, last_rword);
Denis Vlasenko06810332007-05-21 23:30:54 +00003443#if ENABLE_HUSH_LOOPS
Denis Vlasenko4554b722008-07-29 13:36:09 +00003444 if ((rword == RES_WHILE || rword == RES_UNTIL || rword == RES_FOR)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003445 && loop_top == NULL /* avoid bumping G.depth_of_loop twice */
Denis Vlasenko4554b722008-07-29 13:36:09 +00003446 ) {
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003447 /* start of a loop: remember where loop starts */
3448 loop_top = pi;
Denis Vlasenko87a86552008-07-29 19:43:10 +00003449 G.depth_of_loop++;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003450 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003451#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003452 /* Still in the same "if...", "then..." or "do..." branch? */
Denis Vlasenko0e151382009-04-06 18:40:31 +00003453 if (IF_HAS_KEYWORDS(rword == last_rword &&) 1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003454 if ((rcode == 0 && last_followup == PIPE_OR)
3455 || (rcode != 0 && last_followup == PIPE_AND)
3456 ) {
3457 /* It is "<true> || CMD" or "<false> && CMD"
3458 * and we should not execute CMD */
3459 debug_printf_exec("skipped cmd because of || or &&\n");
3460 last_followup = pi->followup;
3461 continue;
3462 }
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003463 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003464 last_followup = pi->followup;
Denis Vlasenko0e151382009-04-06 18:40:31 +00003465 IF_HAS_KEYWORDS(last_rword = rword;)
Denis Vlasenko06810332007-05-21 23:30:54 +00003466#if ENABLE_HUSH_IF
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003467 if (cond_code) {
3468 if (rword == RES_THEN) {
Denis Vlasenko0e151382009-04-06 18:40:31 +00003469 /* if false; then ... fi has exitcode 0! */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003470 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003471 /* "if <false> THEN cmd": skip cmd */
3472 continue;
3473 }
3474 } else {
3475 if (rword == RES_ELSE || rword == RES_ELIF) {
3476 /* "if <true> then ... ELSE/ELIF cmd":
3477 * skip cmd and all following ones */
3478 break;
3479 }
3480 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003481#endif
3482#if ENABLE_HUSH_LOOPS
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003483 if (rword == RES_FOR) { /* && pi->num_cmds - always == 1 */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003484 if (!for_lcur) {
Denis Vlasenkod65ea392007-10-01 10:02:25 +00003485 /* first loop through for */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003486
3487 static const char encoded_dollar_at[] ALIGN1 = {
3488 SPECIAL_VAR_SYMBOL, '@' | 0x80, SPECIAL_VAR_SYMBOL, '\0'
3489 }; /* encoded representation of "$@" */
3490 static const char *const encoded_dollar_at_argv[] = {
3491 encoded_dollar_at, NULL
3492 }; /* argv list with one element: "$@" */
3493 char **vals;
3494
3495 vals = (char**)encoded_dollar_at_argv;
Denis Vlasenkocf22c892008-07-28 15:17:44 +00003496 if (pi->next->res_word == RES_IN) {
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003497 /* if no variable values after "in" we skip "for" */
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003498 if (!pi->next->cmds[0].argv) {
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003499 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003500 debug_printf_exec(": null FOR: exitcode EXIT_SUCCESS\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003501 break;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003502 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003503 vals = pi->next->cmds[0].argv;
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003504 } /* else: "for var; do..." -> assume "$@" list */
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003505 /* create list of variable values */
Denis Vlasenkoff182a32008-07-05 20:29:59 +00003506 debug_print_strings("for_list made from", vals);
3507 for_list = expand_strvec_to_strvec(vals);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003508 for_lcur = for_list;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003509 debug_print_strings("for_list", for_list);
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003510 for_varname = pi->cmds[0].argv[0];
3511 pi->cmds[0].argv[0] = NULL;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003512 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003513 free(pi->cmds[0].argv[0]);
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003514 if (!*for_lcur) {
Denis Vlasenko12acec52008-07-28 15:15:59 +00003515 /* "for" loop is over, clean up */
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003516 free(for_list);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003517 for_list = NULL;
Denis Vlasenko03eb8bf2007-05-14 16:19:34 +00003518 for_lcur = NULL;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003519 pi->cmds[0].argv[0] = for_varname;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003520 break;
Eric Andersen4c9b68f2002-04-13 12:33:41 +00003521 }
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003522 /* Insert next value from for_lcur */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003523 /* note: *for_lcur already has quotes removed, $var expanded, etc */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003524 pi->cmds[0].argv[0] = xasprintf("%s=%s", for_varname, *for_lcur++);
3525 pi->cmds[0].assignment_cnt = 1;
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003526 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00003527 if (rword == RES_IN) {
3528 continue; /* "for v IN list;..." - "in" has no cmds anyway */
3529 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003530 if (rword == RES_DONE) {
3531 continue; /* "done" has no cmds too */
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003532 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003533#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003534#if ENABLE_HUSH_CASE
3535 if (rword == RES_CASE) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003536 case_word = expand_strvec_to_string(pi->cmds->argv);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003537 continue;
3538 }
3539 if (rword == RES_MATCH) {
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003540 char **argv;
3541
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003542 if (!case_word) /* "case ... matched_word) ... WORD)": we executed selected branch, stop */
3543 break;
3544 /* all prev words didn't match, does this one match? */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003545 argv = pi->cmds->argv;
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00003546 while (*argv) {
3547 char *pattern = expand_string_to_string(*argv);
3548 /* TODO: which FNM_xxx flags to use? */
3549 cond_code = (fnmatch(pattern, case_word, /*flags:*/ 0) != 0);
3550 free(pattern);
3551 if (cond_code == 0) { /* match! we will execute this branch */
3552 free(case_word); /* make future "word)" stop */
3553 case_word = NULL;
3554 break;
3555 }
3556 argv++;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003557 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003558 continue;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003559 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003560 if (rword == RES_CASEI) { /* inside of a case branch */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003561 if (cond_code != 0)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003562 continue; /* not matched yet, skip this pipe */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003563 }
3564#endif
Denis Vlasenkod5762932009-03-31 11:22:57 +00003565 /* Just pressing <enter> in shell should check for jobs.
3566 * OTOH, in non-interactive shell this is useless
3567 * and only leads to extra job checks */
3568 if (pi->num_cmds == 0) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003569 if (G_interactive_fd)
Denis Vlasenkod5762932009-03-31 11:22:57 +00003570 goto check_jobs_and_continue;
3571 continue;
3572 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003573
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003574 /* After analyzing all keywords and conditions, we decided
Denis Vlasenkod5762932009-03-31 11:22:57 +00003575 * to execute this pipe. NB: have to do checkjobs(NULL)
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003576 * after run_pipe to collect any background children,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003577 * even if list execution is to be stopped. */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003578 debug_printf_exec(": run_pipe with %d members\n", pi->num_cmds);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003579 {
3580 int r;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003581#if ENABLE_HUSH_LOOPS
Denis Vlasenko87a86552008-07-29 19:43:10 +00003582 G.flag_break_continue = 0;
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003583#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003584 rcode = r = run_pipe(pi); /* NB: rcode is a smallint */
3585 if (r != -1) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003586 /* We only ran a builtin: rcode is already known
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003587 * and we don't need to wait for anything. */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003588 G.last_exitcode = rcode;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003589 debug_printf_exec(": builtin exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003590 check_and_run_traps(0);
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003591#if ENABLE_HUSH_LOOPS
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003592 /* Was it "break" or "continue"? */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003593 if (G.flag_break_continue) {
3594 smallint fbc = G.flag_break_continue;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003595 /* We might fall into outer *loop*,
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003596 * don't want to break it too */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003597 if (loop_top) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00003598 G.depth_break_continue--;
3599 if (G.depth_break_continue == 0)
3600 G.flag_break_continue = 0;
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003601 /* else: e.g. "continue 2" should *break* once, *then* continue */
3602 } /* else: "while... do... { we are here (innermost list is not a loop!) };...done" */
Denis Vlasenko87a86552008-07-29 19:43:10 +00003603 if (G.depth_break_continue != 0 || fbc == BC_BREAK)
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003604 goto check_jobs_and_break;
3605 /* "continue": simulate end of loop */
3606 rword = RES_DONE;
3607 continue;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003608 }
Denis Vlasenkodadfb492008-07-29 10:16:05 +00003609#endif
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003610 } else if (pi->followup == PIPE_BG) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003611 /* What does bash do with attempts to background builtins? */
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003612 /* even bash 3.2 doesn't do that well with nested bg:
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003613 * try "{ { sleep 10; echo DEEP; } & echo HERE; } &".
3614 * I'm NOT treating inner &'s as jobs */
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003615 check_and_run_traps(0);
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003616#if ENABLE_HUSH_JOB
Denis Vlasenko87a86552008-07-29 19:43:10 +00003617 if (G.run_list_level == 1)
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003618 insert_bg_job(pi);
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00003619#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003620 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003621 debug_printf_exec(": cmd&: exitcode EXIT_SUCCESS\n");
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003622 } else {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003623#if ENABLE_HUSH_JOB
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003624 if (G.run_list_level == 1 && G_interactive_fd) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003625 /* Waits for completion, then fg's main shell */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003626 rcode = checkjobs_and_fg_shell(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003627 debug_printf_exec(": checkjobs_and_fg_shell exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003628 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003629 } else
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00003630#endif
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003631 { /* This one just waits for completion */
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003632 rcode = checkjobs(pi);
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003633 debug_printf_exec(": checkjobs exitcode %d\n", rcode);
Denis Vlasenko7566bae2009-03-31 17:24:49 +00003634 check_and_run_traps(0);
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003635 }
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003636 G.last_exitcode = rcode;
Eric Andersen25f27032001-04-26 23:22:31 +00003637 }
3638 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003639
3640 /* Analyze how result affects subsequent commands */
Denis Vlasenko06810332007-05-21 23:30:54 +00003641#if ENABLE_HUSH_IF
Denis Vlasenko219e88d2007-05-21 10:18:23 +00003642 if (rword == RES_IF || rword == RES_ELIF)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003643 cond_code = rcode;
Denis Vlasenko06810332007-05-21 23:30:54 +00003644#endif
3645#if ENABLE_HUSH_LOOPS
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003646 /* Beware of "while false; true; do ..."! */
3647 if (pi->next && pi->next->res_word == RES_DO) {
3648 if (rword == RES_WHILE) {
3649 if (rcode) {
3650 /* "while false; do...done" - exitcode 0 */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00003651 G.last_exitcode = rcode = EXIT_SUCCESS;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003652 debug_printf_exec(": while expr is false: breaking (exitcode:EXIT_SUCCESS)\n");
3653 goto check_jobs_and_break;
3654 }
Denis Vlasenko918a34b2008-07-28 23:17:31 +00003655 }
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003656 if (rword == RES_UNTIL) {
3657 if (!rcode) {
3658 debug_printf_exec(": until expr is true: breaking\n");
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003659 check_jobs_and_break:
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003660 checkjobs(NULL);
3661 break;
3662 }
Denis Vlasenkobcb25532008-07-28 23:04:34 +00003663 }
Denis Vlasenko5e052ca2008-07-28 15:15:09 +00003664 }
Denis Vlasenko06810332007-05-21 23:30:54 +00003665#endif
Mike Frysinger8ec1c9d2009-03-29 00:45:26 +00003666
3667 check_jobs_and_continue:
Eric Andersen028b65b2001-06-28 01:10:11 +00003668 checkjobs(NULL);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003669 } /* for (pi) */
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003670
3671#if ENABLE_HUSH_JOB
Denis Vlasenkod5762932009-03-31 11:22:57 +00003672//// if (G.ctrl_z_flag) {
3673//// /* ctrl-Z forked somewhere in the past, we are the child,
3674//// * and now we completed running the list. Exit. */
3675//////TODO: _exit?
3676//// exit(rcode);
3677//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003678 ret:
Denis Vlasenkod5762932009-03-31 11:22:57 +00003679 G.run_list_level--;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00003680//// if (!G.run_list_level && G_interactive_fd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00003681//// signal(SIGTSTP, SIG_IGN);
3682//// signal(SIGINT, SIG_IGN);
3683//// }
Denis Vlasenkoac0e5ab2007-05-04 21:37:27 +00003684#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00003685 debug_printf_exec("run_list lvl %d return %d\n", G.run_list_level + 1, rcode);
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003686#if ENABLE_HUSH_LOOPS
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00003687 if (loop_top)
Denis Vlasenko87a86552008-07-29 19:43:10 +00003688 G.depth_of_loop--;
Denis Vlasenkobe709c22008-07-28 00:01:16 +00003689 free(for_list);
3690#endif
3691#if ENABLE_HUSH_CASE
3692 free(case_word);
3693#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003694 return rcode;
3695}
3696
Eric Andersen25f27032001-04-26 23:22:31 +00003697/* Select which version we will use */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003698static int run_and_free_list(struct pipe *pi)
Eric Andersen25f27032001-04-26 23:22:31 +00003699{
Denis Vlasenko0c886c62007-01-30 22:30:09 +00003700 int rcode = 0;
Denis Vlasenko05743d72008-02-10 12:10:08 +00003701 debug_printf_exec("run_and_free_list entered\n");
Denis Vlasenko87a86552008-07-29 19:43:10 +00003702 if (!G.fake_mode) {
Denis Vlasenkoa2b11e32009-04-06 14:11:13 +00003703 debug_printf_exec(": run_list: 1st pipe with %d cmds\n", pi->num_cmds);
Denis Vlasenko05743d72008-02-10 12:10:08 +00003704 rcode = run_list(pi);
Eric Andersenc7bda1c2004-03-15 08:29:22 +00003705 }
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00003706 /* free_pipe_list has the side effect of clearing memory.
Denis Vlasenko05743d72008-02-10 12:10:08 +00003707 * In the long run that function can be merged with run_list,
Eric Andersen25f27032001-04-26 23:22:31 +00003708 * but doing that now would hobble the debugging effort. */
Denis Vlasenko05743d72008-02-10 12:10:08 +00003709 free_pipe_list(pi, /* indent: */ 0);
Denis Vlasenko87f40ba2008-06-10 22:39:37 +00003710 debug_printf_exec("run_and_free_list return %d\n", rcode);
Eric Andersen25f27032001-04-26 23:22:31 +00003711 return rcode;
3712}
3713
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00003714
Denis Vlasenkoac678ec2007-04-16 22:32:04 +00003715static struct pipe *new_pipe(void)
3716{
Eric Andersen25f27032001-04-26 23:22:31 +00003717 struct pipe *pi;
Denis Vlasenko3ac0e002007-04-28 16:45:22 +00003718 pi = xzalloc(sizeof(struct pipe));
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003719 /*pi->followup = 0; - deliberately invalid value */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003720 /*pi->res_word = RES_NONE; - RES_NONE is 0 anyway */
Eric Andersen25f27032001-04-26 23:22:31 +00003721 return pi;
3722}
3723
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003724/* Command (member of a pipe) is complete. The only possible error here
3725 * is out of memory, in which case xmalloc exits. */
3726static int done_command(struct parse_context *ctx)
3727{
3728 /* The command is really already in the pipe structure, so
3729 * advance the pipe counter and make a new, null command. */
3730 struct pipe *pi = ctx->pipe;
3731 struct command *command = ctx->command;
3732
3733 if (command) {
3734 if (command->group == NULL
3735 && command->argv == NULL
3736 && command->redirects == NULL
3737 ) {
3738 debug_printf_parse("done_command: skipping null cmd, num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003739 memset(command, 0, sizeof(*command)); /* paranoia */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003740 return pi->num_cmds;
3741 }
3742 pi->num_cmds++;
3743 debug_printf_parse("done_command: ++num_cmds=%d\n", pi->num_cmds);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003744 //debug_print_tree(ctx->list_head, 20);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003745 } else {
3746 debug_printf_parse("done_command: initializing, num_cmds=%d\n", pi->num_cmds);
3747 }
3748
3749 /* Only real trickiness here is that the uncommitted
3750 * command structure is not counted in pi->num_cmds. */
3751 pi->cmds = xrealloc(pi->cmds, sizeof(*pi->cmds) * (pi->num_cmds+1));
3752 command = &pi->cmds[pi->num_cmds];
3753 memset(command, 0, sizeof(*command));
3754
3755 ctx->command = command;
3756 /* but ctx->pipe and ctx->list_head remain unchanged */
3757
3758 return pi->num_cmds; /* used only for 0/nonzero check */
3759}
3760
3761static void done_pipe(struct parse_context *ctx, pipe_style type)
3762{
3763 int not_null;
3764
3765 debug_printf_parse("done_pipe entered, followup %d\n", type);
3766 /* Close previous command */
3767 not_null = done_command(ctx);
3768 ctx->pipe->followup = type;
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003769#if HAS_KEYWORDS
3770 ctx->pipe->pi_inverted = ctx->ctx_inverted;
3771 ctx->ctx_inverted = 0;
3772 ctx->pipe->res_word = ctx->ctx_res_w;
3773#endif
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003774
3775 /* Without this check, even just <enter> on command line generates
3776 * tree of three NOPs (!). Which is harmless but annoying.
3777 * IOW: it is safe to do it unconditionally.
3778 * RES_NONE case is for "for a in; do ..." (empty IN set)
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003779 * and other cases to work. */
3780 if (not_null
3781#if HAS_KEYWORDS
3782 || ctx->ctx_res_w == RES_FI
3783 || ctx->ctx_res_w == RES_DONE
3784 || ctx->ctx_res_w == RES_FOR
3785 || ctx->ctx_res_w == RES_IN
3786 || ctx->ctx_res_w == RES_ESAC
3787#endif
3788 ) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003789 struct pipe *new_p;
3790 debug_printf_parse("done_pipe: adding new pipe: "
3791 "not_null:%d ctx->ctx_res_w:%d\n",
3792 not_null, ctx->ctx_res_w);
3793 new_p = new_pipe();
3794 ctx->pipe->next = new_p;
3795 ctx->pipe = new_p;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003796 /* RES_THEN, RES_DO etc are "sticky" -
3797 * they remain set for commands inside if/while.
3798 * This is used to control execution.
3799 * RES_FOR and RES_IN are NOT sticky (needed to support
3800 * cases where variable or value happens to match a keyword):
3801 */
3802#if ENABLE_HUSH_LOOPS
3803 if (ctx->ctx_res_w == RES_FOR
3804 || ctx->ctx_res_w == RES_IN)
3805 ctx->ctx_res_w = RES_NONE;
3806#endif
3807#if ENABLE_HUSH_CASE
3808 if (ctx->ctx_res_w == RES_MATCH)
3809 ctx->ctx_res_w = RES_CASEI;
3810#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003811 ctx->command = NULL; /* trick done_command below */
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003812 /* Create the memory for command, roughly:
3813 * ctx->pipe->cmds = new struct command;
3814 * ctx->command = &ctx->pipe->cmds[0];
3815 */
3816 done_command(ctx);
Denis Vlasenkocd418a22009-04-06 18:08:35 +00003817 //debug_print_tree(ctx->list_head, 10);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00003818 }
3819 debug_printf_parse("done_pipe return\n");
3820}
3821
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003822static void initialize_context(struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003823{
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003824 memset(ctx, 0, sizeof(*ctx));
Denis Vlasenko1a735862007-05-23 00:32:25 +00003825 ctx->pipe = ctx->list_head = new_pipe();
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003826 /* Create the memory for command, roughly:
3827 * ctx->pipe->cmds = new struct command;
3828 * ctx->command = &ctx->pipe->cmds[0];
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003829 */
3830 done_command(ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00003831}
3832
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003833/* If a reserved word is found and processed, parse context is modified
3834 * and 1 is returned.
Eric Andersen25f27032001-04-26 23:22:31 +00003835 */
Denis Vlasenko5ec61322008-06-24 00:50:07 +00003836#if HAS_KEYWORDS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003837struct reserved_combo {
3838 char literal[6];
3839 unsigned char res;
3840 unsigned char assignment_flag;
3841 int flag;
3842};
3843enum {
3844 FLAG_END = (1 << RES_NONE ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003845#if ENABLE_HUSH_IF
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003846 FLAG_IF = (1 << RES_IF ),
3847 FLAG_THEN = (1 << RES_THEN ),
3848 FLAG_ELIF = (1 << RES_ELIF ),
3849 FLAG_ELSE = (1 << RES_ELSE ),
3850 FLAG_FI = (1 << RES_FI ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003851#endif
3852#if ENABLE_HUSH_LOOPS
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003853 FLAG_FOR = (1 << RES_FOR ),
3854 FLAG_WHILE = (1 << RES_WHILE),
3855 FLAG_UNTIL = (1 << RES_UNTIL),
3856 FLAG_DO = (1 << RES_DO ),
3857 FLAG_DONE = (1 << RES_DONE ),
3858 FLAG_IN = (1 << RES_IN ),
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003859#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003860#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003861 FLAG_MATCH = (1 << RES_MATCH),
3862 FLAG_ESAC = (1 << RES_ESAC ),
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003863#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003864 FLAG_START = (1 << RES_XXXX ),
3865};
3866
3867static const struct reserved_combo* match_reserved_word(o_string *word)
3868{
Eric Andersen25f27032001-04-26 23:22:31 +00003869 /* Mostly a list of accepted follow-up reserved words.
3870 * FLAG_END means we are done with the sequence, and are ready
3871 * to turn the compound list into a command.
3872 * FLAG_START means the word must start a new compound list.
3873 */
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003874 static const struct reserved_combo reserved_list[] = {
Denis Vlasenko06810332007-05-21 23:30:54 +00003875#if ENABLE_HUSH_IF
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003876 { "!", RES_NONE, NOT_ASSIGNMENT , 0 },
3877 { "if", RES_IF, WORD_IS_KEYWORD, FLAG_THEN | FLAG_START },
3878 { "then", RES_THEN, WORD_IS_KEYWORD, FLAG_ELIF | FLAG_ELSE | FLAG_FI },
3879 { "elif", RES_ELIF, WORD_IS_KEYWORD, FLAG_THEN },
3880 { "else", RES_ELSE, WORD_IS_KEYWORD, FLAG_FI },
3881 { "fi", RES_FI, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003882#endif
3883#if ENABLE_HUSH_LOOPS
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003884 { "for", RES_FOR, NOT_ASSIGNMENT , FLAG_IN | FLAG_DO | FLAG_START },
3885 { "while", RES_WHILE, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3886 { "until", RES_UNTIL, WORD_IS_KEYWORD, FLAG_DO | FLAG_START },
3887 { "in", RES_IN, NOT_ASSIGNMENT , FLAG_DO },
3888 { "do", RES_DO, WORD_IS_KEYWORD, FLAG_DONE },
3889 { "done", RES_DONE, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003890#endif
3891#if ENABLE_HUSH_CASE
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003892 { "case", RES_CASE, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_START },
3893 { "esac", RES_ESAC, NOT_ASSIGNMENT , FLAG_END },
Denis Vlasenko06810332007-05-21 23:30:54 +00003894#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003895 };
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003896 const struct reserved_combo *r;
3897
3898 for (r = reserved_list; r < reserved_list + ARRAY_SIZE(reserved_list); r++) {
3899 if (strcmp(word->data, r->literal) == 0)
3900 return r;
3901 }
3902 return NULL;
3903}
3904static int reserved_word(o_string *word, struct parse_context *ctx)
3905{
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003906#if ENABLE_HUSH_CASE
3907 static const struct reserved_combo reserved_match = {
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003908 "", RES_MATCH, NOT_ASSIGNMENT , FLAG_MATCH | FLAG_ESAC
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003909 };
3910#endif
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003911 const struct reserved_combo *r;
Denis Vlasenkoc72c1ed2007-01-30 22:31:26 +00003912
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003913 r = match_reserved_word(word);
3914 if (!r)
3915 return 0;
3916
3917 debug_printf("found reserved word %s, res %d\n", r->literal, r->res);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003918#if ENABLE_HUSH_CASE
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003919 if (r->res == RES_IN && ctx->ctx_res_w == RES_CASE)
3920 /* "case word IN ..." - IN part starts first match part */
3921 r = &reserved_match;
3922 else
Denis Vlasenko17f02e72008-07-14 04:32:29 +00003923#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003924 if (r->flag == 0) { /* '!' */
3925 if (ctx->ctx_inverted) { /* bash doesn't accept '! ! true' */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003926 syntax_error("! ! command");
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003927 IF_HAS_KEYWORDS(ctx->ctx_res_w = RES_SNTX;)
Eric Andersen25f27032001-04-26 23:22:31 +00003928 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003929 ctx->ctx_inverted = 1;
Denis Vlasenko1a735862007-05-23 00:32:25 +00003930 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003931 }
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003932 if (r->flag & FLAG_START) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003933 struct parse_context *old;
3934 old = xmalloc(sizeof(*old));
3935 debug_printf_parse("push stack %p\n", old);
3936 *old = *ctx; /* physical copy */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003937 initialize_context(ctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003938 ctx->stack = old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003939 } else if (/*ctx->ctx_res_w == RES_NONE ||*/ !(ctx->old_flag & (1 << r->res))) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00003940 syntax_error_at(word->data);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003941 ctx->ctx_res_w = RES_SNTX;
3942 return 1;
3943 }
3944 ctx->ctx_res_w = r->res;
3945 ctx->old_flag = r->flag;
3946 if (ctx->old_flag & FLAG_END) {
3947 struct parse_context *old;
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003948 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003949 debug_printf_parse("pop stack %p\n", ctx->stack);
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003950 old = ctx->stack;
3951 old->command->group = ctx->list_head;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00003952 old->command->grp_type = GRP_NORMAL;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00003953#if !BB_MMU
3954 o_addstr(&old->as_string, ctx->as_string.data);
3955 o_free_unsafe(&ctx->as_string);
3956 old->command->group_as_string = xstrdup(old->as_string.data);
3957 debug_printf_parse("pop, remembering as:'%s'\n",
3958 old->command->group_as_string);
3959#endif
Denis Vlasenkoc3735272008-10-09 12:58:26 +00003960 *ctx = *old; /* physical copy */
3961 free(old);
3962 }
3963 word->o_assignment = r->assignment_flag;
3964 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00003965}
Denis Vlasenko06810332007-05-21 23:30:54 +00003966#endif
Eric Andersen25f27032001-04-26 23:22:31 +00003967
Denis Vlasenkoa8442002008-06-14 11:00:17 +00003968/* Word is complete, look at it and update parsing context.
Denis Vlasenkob6e65562009-04-03 16:49:04 +00003969 * Normal return is 0. Syntax errors return 1.
3970 * Note: on return, word is reset, but not o_free'd!
3971 */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003972static int done_word(o_string *word, struct parse_context *ctx)
Eric Andersen25f27032001-04-26 23:22:31 +00003973{
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003974 struct command *command = ctx->command;
Eric Andersen25f27032001-04-26 23:22:31 +00003975
Denis Vlasenko9af22c72008-10-09 12:54:58 +00003976 debug_printf_parse("done_word entered: '%s' %p\n", word->data, command);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00003977 if (word->length == 0 && word->o_quoted == 0) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003978 debug_printf_parse("done_word return 0: true null, ignored\n");
3979 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00003980 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00003981
Eric Andersen25f27032001-04-26 23:22:31 +00003982 if (ctx->pending_redirect) {
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003983 /* We do not glob in e.g. >*.tmp case. bash seems to glob here
3984 * only if run as "bash", not "sh" */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00003985 /* http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
3986 * "2.7 Redirection
3987 * ...the word that follows the redirection operator
3988 * shall be subjected to tilde expansion, parameter expansion,
3989 * command substitution, arithmetic expansion, and quote
3990 * removal. Pathname expansion shall not be performed
3991 * on the word by a non-interactive shell; an interactive
3992 * shell may perform it, but shall do so only when
3993 * the expansion would result in one word."
3994 */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00003995 ctx->pending_redirect->rd_filename = xstrdup(word->data);
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00003996 /* Cater for >\file case:
3997 * >\a creates file a; >\\a, >"\a", >"\\a" create file \a
3998 * Same with heredocs:
3999 * for <<\H delim is H; <<\\H, <<"\H", <<"\\H" - \H
4000 */
4001 unbackslash(ctx->pending_redirect->rd_filename);
4002 /* Is it <<"HEREDOC"? */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004003 if (ctx->pending_redirect->rd_type == REDIRECT_HEREDOC
4004 && word->o_quoted
4005 ) {
4006 ctx->pending_redirect->rd_dup |= HEREDOC_QUOTED;
4007 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004008 debug_printf_parse("word stored in rd_filename: '%s'\n", word->data);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004009 ctx->pending_redirect = NULL;
Eric Andersen25f27032001-04-26 23:22:31 +00004010 } else {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004011 /* If this word wasn't an assignment, next ones definitely
4012 * can't be assignments. Even if they look like ones. */
4013 if (word->o_assignment != DEFINITELY_ASSIGNMENT
4014 && word->o_assignment != WORD_IS_KEYWORD
4015 ) {
4016 word->o_assignment = NOT_ASSIGNMENT;
4017 } else {
4018 if (word->o_assignment == DEFINITELY_ASSIGNMENT)
4019 command->assignment_cnt++;
4020 word->o_assignment = MAYBE_ASSIGNMENT;
4021 }
4022
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004023 if (command->group) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004024 /* "{ echo foo; } echo bar" - bad */
4025 /* NB: bash allows e.g.:
4026 * if true; then { echo foo; } fi
4027 * while if false; then false; fi do break; done
4028 * and disallows:
4029 * while if false; then false; fi; do; break; done
4030 * TODO? */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004031 syntax_error_at(word->data);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004032 debug_printf_parse("done_word return 1: syntax error, "
4033 "groups and arglists don't mix\n");
Denis Vlasenko395ae452008-07-14 06:29:38 +00004034 return 1;
4035 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004036#if HAS_KEYWORDS
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004037# if ENABLE_HUSH_CASE
Denis Vlasenko757361f2008-07-14 08:26:47 +00004038 if (ctx->ctx_dsemicolon
4039 && strcmp(word->data, "esac") != 0 /* not "... pattern) cmd;; esac" */
4040 ) {
Denis Vlasenko395ae452008-07-14 06:29:38 +00004041 /* already done when ctx_dsemicolon was set to 1: */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004042 /* ctx->ctx_res_w = RES_MATCH; */
4043 ctx->ctx_dsemicolon = 0;
4044 } else
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004045# endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004046 if (!command->argv /* if it's the first word... */
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004047# if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004048 && ctx->ctx_res_w != RES_FOR /* ...not after FOR or IN */
4049 && ctx->ctx_res_w != RES_IN
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004050# endif
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004051 ) {
Denis Vlasenkoa8442002008-06-14 11:00:17 +00004052 debug_printf_parse(": checking '%s' for reserved-ness\n", word->data);
4053 if (reserved_word(word, ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004054 o_reset_to_empty_unquoted(word);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004055 debug_printf_parse("done_word return %d\n",
4056 (ctx->ctx_res_w == RES_SNTX));
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004057 return (ctx->ctx_res_w == RES_SNTX);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004058 }
Eric Andersen25f27032001-04-26 23:22:31 +00004059 }
Denis Vlasenko5ec61322008-06-24 00:50:07 +00004060#endif
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004061 if (word->o_quoted /* word had "xx" or 'xx' at least as part of it. */
Denis Vlasenko55789c62008-06-18 16:30:42 +00004062 /* optimization: and if it's ("" or '') or ($v... or `cmd`...): */
4063 && (word->data[0] == '\0' || word->data[0] == SPECIAL_VAR_SYMBOL)
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004064 /* (otherwise it's known to be not empty and is already safe) */
Denis Vlasenkoab876cd2008-06-18 16:29:32 +00004065 ) {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004066 /* exclude "$@" - it can expand to no word despite "" */
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004067 char *p = word->data;
4068 while (p[0] == SPECIAL_VAR_SYMBOL
4069 && (p[1] & 0x7f) == '@'
4070 && p[2] == SPECIAL_VAR_SYMBOL
4071 ) {
4072 p += 3;
4073 }
4074 if (p == word->data || p[0] != '\0') {
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004075 /* saw no "$@", or not only "$@" but some
4076 * real text is there too */
4077 /* insert "empty variable" reference, this makes
Denis Vlasenkoafdcd122008-07-05 17:40:04 +00004078 * e.g. "", $empty"" etc to not disappear */
4079 o_addchr(word, SPECIAL_VAR_SYMBOL);
4080 o_addchr(word, SPECIAL_VAR_SYMBOL);
4081 }
Denis Vlasenkoc1c63b62008-06-18 09:20:35 +00004082 }
Denis Vlasenko22d10a02008-10-13 08:53:43 +00004083 command->argv = add_string_to_strings(command->argv, xstrdup(word->data));
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004084 debug_print_strings("word appended to argv", command->argv);
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004085 }
Eric Andersen25f27032001-04-26 23:22:31 +00004086
Denis Vlasenko06810332007-05-21 23:30:54 +00004087#if ENABLE_HUSH_LOOPS
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004088 if (ctx->ctx_res_w == RES_FOR) {
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004089 if (word->o_quoted
4090 || !is_well_formed_var_name(command->argv[0], '\0')
4091 ) {
4092 /* bash says "not a valid identifier" */
4093 syntax_error("not a valid identifier in for");
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004094 return 1;
4095 }
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004096 /* Force FOR to have just one word (variable name) */
4097 /* NB: basically, this makes hush see "for v in ..."
4098 * syntax as if it is "for v; in ...". FOR and IN become
4099 * two pipe structs in parse tree. */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00004100 done_pipe(ctx, PIPE_SEQ);
Denis Vlasenko733e3fb2008-07-06 10:01:13 +00004101 }
Denis Vlasenko06810332007-05-21 23:30:54 +00004102#endif
Denis Vlasenko17f02e72008-07-14 04:32:29 +00004103#if ENABLE_HUSH_CASE
4104 /* Force CASE to have just one word */
4105 if (ctx->ctx_res_w == RES_CASE) {
4106 done_pipe(ctx, PIPE_SEQ);
4107 }
4108#endif
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004109
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004110 o_reset_to_empty_unquoted(word);
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00004111
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004112 debug_printf_parse("done_word return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004113 return 0;
4114}
4115
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004116
4117/* Peek ahead in the input to find out if we have a "&n" construct,
4118 * as in "2>&1", that represents duplicating a file descriptor.
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004119 * Return:
4120 * REDIRFD_CLOSE if >&- "close fd" construct is seen,
4121 * REDIRFD_SYNTAX_ERR if syntax error,
4122 * REDIRFD_TO_FILE if no & was seen,
4123 * or the number found.
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004124 */
4125#if BB_MMU
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004126#define parse_redir_right_fd(as_string, input) \
4127 parse_redir_right_fd(input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004128#endif
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004129static int parse_redir_right_fd(o_string *as_string, struct in_str *input)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004130{
4131 int ch, d, ok;
4132
4133 ch = i_peek(input);
4134 if (ch != '&')
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004135 return REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004136
4137 ch = i_getch(input); /* get the & */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004138 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004139 ch = i_peek(input);
4140 if (ch == '-') {
4141 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004142 nommu_addchr(as_string, ch);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004143 return REDIRFD_CLOSE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004144 }
4145 d = 0;
4146 ok = 0;
4147 while (ch != EOF && isdigit(ch)) {
4148 d = d*10 + (ch-'0');
4149 ok = 1;
4150 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004151 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004152 ch = i_peek(input);
4153 }
4154 if (ok) return d;
4155
4156//TODO: this is the place to catch ">&file" bashism (redirect both fd 1 and 2)
4157
4158 bb_error_msg("ambiguous redirect");
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004159 return REDIRFD_SYNTAX_ERR;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004160}
4161
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004162/* Return code is 0 normal, 1 if a syntax error is detected
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004163 */
4164static int parse_redirect(struct parse_context *ctx,
4165 int fd,
4166 redir_type style,
4167 struct in_str *input)
4168{
4169 struct command *command = ctx->command;
4170 struct redir_struct *redir;
4171 struct redir_struct **redirp;
4172 int dup_num;
4173
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004174 dup_num = REDIRFD_TO_FILE;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004175 if (style != REDIRECT_HEREDOC) {
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004176 /* Check for a '>&1' type redirect */
4177 dup_num = parse_redir_right_fd(&ctx->as_string, input);
4178 if (dup_num == REDIRFD_SYNTAX_ERR)
4179 return 1;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004180 } else {
4181 int ch = i_peek(input);
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004182 dup_num = (ch == '-'); /* HEREDOC_SKIPTABS bit is 1 */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004183 if (dup_num) { /* <<-... */
4184 ch = i_getch(input);
4185 nommu_addchr(&ctx->as_string, ch);
4186 ch = i_peek(input);
4187 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004188 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004189
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004190 if (style == REDIRECT_OVERWRITE && dup_num == REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004191 int ch = i_peek(input);
4192 if (ch == '|') {
4193 /* >|FILE redirect ("clobbering" >).
4194 * Since we do not support "set -o noclobber" yet,
4195 * >| and > are the same for now. Just eat |.
4196 */
4197 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004198 nommu_addchr(&ctx->as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004199 }
4200 }
4201
4202 /* Create a new redir_struct and append it to the linked list */
4203 redirp = &command->redirects;
4204 while ((redir = *redirp) != NULL) {
4205 redirp = &(redir->next);
4206 }
4207 *redirp = redir = xzalloc(sizeof(*redir));
4208 /* redir->next = NULL; */
4209 /* redir->rd_filename = NULL; */
4210 redir->rd_type = style;
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004211 redir->rd_fd = (fd == -1) ? redir_table[style].default_fd : fd;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004212
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004213 debug_printf_parse("redirect type %d %s\n", redir->rd_fd,
4214 redir_table[style].descrip);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004215
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004216 redir->rd_dup = dup_num;
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00004217 if (style != REDIRECT_HEREDOC && dup_num != REDIRFD_TO_FILE) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004218 /* Erik had a check here that the file descriptor in question
4219 * is legit; I postpone that to "run time"
4220 * A "-" representation of "close me" shows up as a -3 here */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004221 debug_printf_parse("duplicating redirect '%d>&%d'\n",
4222 redir->rd_fd, redir->rd_dup);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004223 } else {
4224 /* Set ctx->pending_redirect, so we know what to do at the
4225 * end of the next parsed word. */
4226 ctx->pending_redirect = redir;
4227 }
4228 return 0;
4229}
4230
Eric Andersen25f27032001-04-26 23:22:31 +00004231/* If a redirect is immediately preceded by a number, that number is
4232 * supposed to tell which file descriptor to redirect. This routine
4233 * looks for such preceding numbers. In an ideal world this routine
4234 * needs to handle all the following classes of redirects...
4235 * echo 2>foo # redirects fd 2 to file "foo", nothing passed to echo
4236 * echo 49>foo # redirects fd 49 to file "foo", nothing passed to echo
4237 * echo -2>foo # redirects fd 1 to file "foo", "-2" passed to echo
4238 * echo 49x>foo # redirects fd 1 to file "foo", "49x" passed to echo
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004239 *
4240 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html
4241 * "2.7 Redirection
4242 * ... If n is quoted, the number shall not be recognized as part of
4243 * the redirection expression. For example:
4244 * echo \2>a
4245 * writes the character 2 into file a"
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004246 * We are getting it right by setting ->o_quoted on any \<char>
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004247 *
4248 * A -1 return means no valid number was found,
4249 * the caller should use the appropriate default for this redirection.
Eric Andersen25f27032001-04-26 23:22:31 +00004250 */
4251static int redirect_opt_num(o_string *o)
4252{
4253 int num;
4254
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004255 if (o->data == NULL)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00004256 return -1;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004257 num = bb_strtou(o->data, NULL, 10);
4258 if (errno || num < 0)
4259 return -1;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004260 o_reset_to_empty_unquoted(o);
Eric Andersen25f27032001-04-26 23:22:31 +00004261 return num;
4262}
4263
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004264#if BB_MMU
4265#define fetch_till_str(as_string, input, word, skip_tabs) \
4266 fetch_till_str(input, word, skip_tabs)
4267#endif
4268static char *fetch_till_str(o_string *as_string,
4269 struct in_str *input,
4270 const char *word,
4271 int skip_tabs)
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004272{
4273 o_string heredoc = NULL_O_STRING;
4274 int past_EOL = 0;
4275 int ch;
4276
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004277 goto jump_in;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004278 while (1) {
4279 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004280 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004281 if (ch == '\n') {
4282 if (strcmp(heredoc.data + past_EOL, word) == 0) {
4283 heredoc.data[past_EOL] = '\0';
4284 debug_printf_parse("parsed heredoc '%s'\n", heredoc.data);
4285 return heredoc.data;
4286 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004287 do {
4288 o_addchr(&heredoc, ch);
4289 past_EOL = heredoc.length;
4290 jump_in:
4291 do {
4292 ch = i_getch(input);
4293 nommu_addchr(as_string, ch);
4294 } while (skip_tabs && ch == '\t');
4295 } while (ch == '\n');
4296 }
4297 if (ch == EOF) {
4298 o_free_unsafe(&heredoc);
4299 return NULL;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004300 }
4301 o_addchr(&heredoc, ch);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004302 nommu_addchr(as_string, ch);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004303 }
4304}
4305
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004306/* Look at entire parse tree for not-yet-loaded REDIRECT_HEREDOCs
4307 * and load them all. There should be exactly heredoc_cnt of them.
4308 */
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004309static int fetch_heredocs(int heredoc_cnt, struct parse_context *ctx, struct in_str *input)
4310{
4311 struct pipe *pi = ctx->list_head;
4312
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004313 while (pi && heredoc_cnt) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004314 int i;
4315 struct command *cmd = pi->cmds;
4316
4317 debug_printf_parse("fetch_heredocs: num_cmds:%d cmd argv0:'%s'\n",
4318 pi->num_cmds,
4319 cmd->argv ? cmd->argv[0] : "NONE");
4320 for (i = 0; i < pi->num_cmds; i++) {
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004321 struct redir_struct *redir = cmd->redirects;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004322
4323 debug_printf_parse("fetch_heredocs: %d cmd argv0:'%s'\n",
4324 i, cmd->argv ? cmd->argv[0] : "NONE");
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004325 while (redir) {
4326 if (redir->rd_type == REDIRECT_HEREDOC) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004327 char *p;
4328
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004329 redir->rd_type = REDIRECT_HEREDOC2;
4330 /* redir->dup is (ab)used to indicate <<- */
4331 p = fetch_till_str(&ctx->as_string, input,
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004332 redir->rd_filename, redir->rd_dup & HEREDOC_SKIPTABS);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004333 if (!p) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004334 syntax_error("unexpected EOF in here document");
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004335 return 1;
4336 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004337 free(redir->rd_filename);
4338 redir->rd_filename = p;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004339 heredoc_cnt--;
4340 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004341 redir = redir->next;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004342 }
4343 cmd++;
4344 }
4345 pi = pi->next;
4346 }
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004347#if 0
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004348 /* Should be 0. If it isn't, it's a parse error */
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004349 if (heredoc_cnt)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004350 bb_error_msg_and_die("heredoc BUG 2");
4351#endif
4352 return 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004353}
4354
4355
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004356#if BB_MMU
4357#define parse_stream(pstring, input, end_trigger) \
4358 parse_stream(input, end_trigger)
4359#endif
4360static struct pipe *parse_stream(char **pstring,
4361 struct in_str *input,
4362 int end_trigger);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004363static void parse_and_run_string(const char *s);
Mike Frysingerddbee972009-03-22 22:48:41 +00004364
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004365#if ENABLE_HUSH_TICK
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004366static FILE *generate_stream_from_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004367{
4368 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004369 int pid, channel[2];
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004370
Denis Vlasenko5a6aedd2007-05-26 16:44:20 +00004371 xpipe(channel);
Denis Vlasenko82604e92008-07-01 15:59:42 +00004372 pid = BB_MMU ? fork() : vfork();
4373 if (pid < 0)
4374 bb_perror_msg_and_die(BB_MMU ? "fork" : "vfork");
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004375
Denis Vlasenko05743d72008-02-10 12:10:08 +00004376 if (pid == 0) { /* child */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004377 disable_restore_tty_pgrp_on_exit();
Denis Vlasenkoba7cf262007-05-25 14:34:30 +00004378 /* Process substitution is not considered to be usual
4379 * 'command execution'.
Denis Vlasenkoabedaac2009-03-31 12:03:40 +00004380 * SUSv3 says ctrl-Z should be ignored, ctrl-C should not.
4381 */
Denis Vlasenkoe0755e52009-04-03 21:16:45 +00004382 bb_signals(0
4383 + (1 << SIGTSTP)
4384 + (1 << SIGTTIN)
4385 + (1 << SIGTTOU)
4386 , SIG_IGN);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004387 close(channel[0]); /* NB: close _first_, then move fd! */
4388 xmove_fd(channel[1], 1);
4389 /* Prevent it from trying to handle ctrl-z etc */
4390 USE_HUSH_JOB(G.run_list_level = 1;)
4391#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004392 reset_traps_to_defaults();
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004393 parse_and_run_string(s);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00004394 _exit(G.last_exitcode);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004395#else
4396 /* We re-execute after vfork on NOMMU. This makes this script safe:
Denis Vlasenkof9375282009-04-05 19:13:39 +00004397 * yes "0123456789012345678901234567890" | dd bs=32 count=64k >BIG
4398 * huge=`cat BIG` # was blocking here forever
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004399 * echo OK
4400 */
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00004401 re_execute_shell(s, 0);
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004402#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004403 }
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004404
4405 /* parent */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004406 enable_restore_tty_pgrp_on_exit();
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00004407 clean_up_after_re_execute();
Eric Andersen25f27032001-04-26 23:22:31 +00004408 close(channel[1]);
Denis Vlasenko5f786c22007-04-20 08:35:45 +00004409 pf = fdopen(channel[0], "r");
Eric Andersen25f27032001-04-26 23:22:31 +00004410 return pf;
4411}
4412
Denis Vlasenko21f0d4c2007-05-06 14:15:42 +00004413/* Return code is exit status of the process that is run. */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004414static int process_command_subs(o_string *dest, const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00004415{
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004416 FILE *pf;
Eric Andersen25f27032001-04-26 23:22:31 +00004417 struct in_str pipe_str;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004418 int ch, eol_cnt;
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004419
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004420 pf = generate_stream_from_string(s);
4421 if (pf == NULL)
Denis Vlasenko05743d72008-02-10 12:10:08 +00004422 return 1;
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004423 close_on_exec_on(fileno(pf));
Eric Andersen25f27032001-04-26 23:22:31 +00004424
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004425 /* Now send results of command back into original context */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004426 setup_file_in_str(&pipe_str, pf);
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004427 eol_cnt = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004428 while ((ch = i_getch(&pipe_str)) != EOF) {
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004429 if (ch == '\n') {
4430 eol_cnt++;
4431 continue;
4432 }
4433 while (eol_cnt) {
Denis Vlasenko55789c62008-06-18 16:30:42 +00004434 o_addchr(dest, '\n');
Denis Vlasenko3e9aaae2007-05-11 12:56:43 +00004435 eol_cnt--;
4436 }
Denis Vlasenko7e3d33b2008-06-12 13:31:04 +00004437 o_addQchr(dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004438 }
4439
4440 debug_printf("done reading from pipe, pclose()ing\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004441 /* Note: we got EOF, and we just close the read end of the pipe.
4442 * We do not wait for the `cmd` child to terminate. bash and ash do.
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004443 * Try these:
4444 * echo `echo Hi; exec 1>&-; sleep 2` - bash waits 2 sec
4445 * `false`; echo $? - bash outputs "1"
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004446 */
Denis Vlasenkodb2a9b62009-04-03 22:31:18 +00004447 fclose(pf);
4448 debug_printf("closed FILE from child. return 0\n");
4449 return 0;
Eric Andersen25f27032001-04-26 23:22:31 +00004450}
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00004451#endif
Eric Andersen25f27032001-04-26 23:22:31 +00004452
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004453static int parse_group(o_string *dest, struct parse_context *ctx,
Eric Andersen25f27032001-04-26 23:22:31 +00004454 struct in_str *input, int ch)
4455{
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004456 /* dest contains characters seen prior to ( or {.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004457 * Typically it's empty, but for function defs,
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004458 * it contains function name (without '()'). */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004459 struct pipe *pipe_list;
Denis Vlasenko240c2552009-04-03 03:45:05 +00004460 int endch;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004461 struct command *command = ctx->command;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004462
4463 debug_printf_parse("parse_group entered\n");
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004464#if ENABLE_HUSH_FUNCTIONS
4465 if (ch == 'F') { /* function definition? */
4466 bb_error_msg("aha '%s' is a function, parsing it...", dest->data);
4467 //command->fname = dest->data;
4468 command->grp_type = GRP_FUNCTION;
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004469 memset(dest, 0, sizeof(*dest));
4470 }
4471#endif
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004472 if (command->argv /* word [word](... */
4473 || dest->length /* word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00004474 || dest->o_quoted /* ""(... */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004475 ) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004476 syntax_error(NULL);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004477 debug_printf_parse("parse_group return 1: "
4478 "syntax error, groups and arglists don't mix\n");
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004479 return 1;
Eric Andersen25f27032001-04-26 23:22:31 +00004480 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00004481 endch = '}';
Denis Vlasenko90e485c2007-05-23 15:22:50 +00004482 if (ch == '(') {
Denis Vlasenko240c2552009-04-03 03:45:05 +00004483 endch = ')';
Denis Vlasenko371de4a2008-10-14 12:43:13 +00004484 command->grp_type = GRP_SUBSHELL;
Eric Andersen25f27032001-04-26 23:22:31 +00004485 }
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004486 {
4487#if !BB_MMU
4488 char *as_string = NULL;
4489#endif
4490 pipe_list = parse_stream(&as_string, input, endch);
4491#if !BB_MMU
4492 if (as_string)
4493 o_addstr(&ctx->as_string, as_string);
4494#endif
4495 /* empty ()/{} or parse error? */
4496 if (!pipe_list || pipe_list == ERR_PTR) {
4497#if !BB_MMU
4498 free(as_string);
4499#endif
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004500 syntax_error(NULL);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004501 debug_printf_parse("parse_group return 1: "
4502 "parse_stream returned %p\n", pipe_list);
4503 return 1;
4504 }
4505 command->group = pipe_list;
4506#if !BB_MMU
4507 as_string[strlen(as_string) - 1] = '\0'; /* plink ')' or '}' */
4508 command->group_as_string = as_string;
4509 debug_printf_parse("end of group, remembering as:'%s'\n",
4510 command->group_as_string);
4511#endif
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00004512 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004513 debug_printf_parse("parse_group return 0\n");
4514 return 0;
Denis Vlasenko9af22c72008-10-09 12:54:58 +00004515 /* command remains "open", available for possible redirects */
Eric Andersen25f27032001-04-26 23:22:31 +00004516}
4517
Mike Frysinger98c52642009-04-02 10:02:37 +00004518#if ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004519/* Subroutines for copying $(...) and `...` things */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004520static void add_till_backquote(o_string *dest, struct in_str *input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004521/* '...' */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004522static void add_till_single_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004523{
4524 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004525 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004526 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004527 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004528 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004529 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004530 if (ch == '\'')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004531 return;
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004532 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004533 }
4534}
4535/* "...\"...`..`...." - do we need to handle "...$(..)..." too? */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004536static void add_till_double_quote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004537{
4538 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004539 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004540 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004541 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004542 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004543 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004544 if (ch == '"')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004545 return;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004546 if (ch == '\\') { /* \x. Copy both chars. */
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004547 o_addchr(dest, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004548 ch = i_getch(input);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004549 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004550 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004551 if (ch == '`') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004552 add_till_backquote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004553 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004554 continue;
4555 }
Denis Vlasenko5703c222008-06-15 11:49:42 +00004556 //if (ch == '$') ...
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004557 }
4558}
4559/* Process `cmd` - copy contents until "`" is seen. Complicated by
4560 * \` quoting.
4561 * "Within the backquoted style of command substitution, backslash
4562 * shall retain its literal meaning, except when followed by: '$', '`', or '\'.
4563 * The search for the matching backquote shall be satisfied by the first
4564 * backquote found without a preceding backslash; during this search,
4565 * if a non-escaped backquote is encountered within a shell comment,
4566 * a here-document, an embedded command substitution of the $(command)
4567 * form, or a quoted string, undefined results occur. A single-quoted
4568 * or double-quoted string that begins, but does not end, within the
4569 * "`...`" sequence produces undefined results."
4570 * Example Output
4571 * echo `echo '\'TEST\`echo ZZ\`BEST` \TESTZZBEST
4572 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004573static void add_till_backquote(o_string *dest, struct in_str *input)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004574{
4575 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004576 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004577 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004578 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004579 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004580 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004581 if (ch == '`')
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004582 return;
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004583 if (ch == '\\') {
4584 /* \x. Copy both chars unless it is \` */
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004585 int ch2 = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004586 if (ch2 == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004587 syntax_error_unterm_ch('`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004588 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004589 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004590 if (ch2 != '`' && ch2 != '$' && ch2 != '\\')
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004591 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004592 ch = ch2;
4593 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004594 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004595 }
4596}
4597/* Process $(cmd) - copy contents until ")" is seen. Complicated by
4598 * quoting and nested ()s.
4599 * "With the $(command) style of command substitution, all characters
4600 * following the open parenthesis to the matching closing parenthesis
4601 * constitute the command. Any valid shell script can be used for command,
4602 * except a script consisting solely of redirections which produces
4603 * unspecified results."
4604 * Example Output
4605 * echo $(echo '(TEST)' BEST) (TEST) BEST
4606 * echo $(echo 'TEST)' BEST) TEST) BEST
4607 * echo $(echo \(\(TEST\) BEST) ((TEST) BEST
4608 */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004609static void add_till_closing_paren(o_string *dest, struct in_str *input, bool dbl)
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004610{
4611 int count = 0;
4612 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004613 int ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004614 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004615 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004616 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004617 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004618 if (ch == '(')
4619 count++;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004620 if (ch == ')') {
Mike Frysinger98c52642009-04-02 10:02:37 +00004621 if (--count < 0) {
4622 if (!dbl)
4623 break;
4624 if (i_peek(input) == ')') {
4625 i_getch(input);
4626 break;
4627 }
4628 }
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004629 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004630 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004631 if (ch == '\'') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004632 add_till_single_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004633 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004634 continue;
4635 }
4636 if (ch == '"') {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004637 add_till_double_quote(dest, input);
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004638 o_addchr(dest, ch);
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004639 continue;
4640 }
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004641 if (ch == '\\') {
4642 /* \x. Copy verbatim. Important for \(, \) */
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004643 ch = i_getch(input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004644 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004645 syntax_error_unterm_ch(')');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004646 /*xfunc_die(); - redundant */
Denis Vlasenko5c090a92009-04-08 21:51:33 +00004647 }
Denis Vlasenko82dfec32008-06-16 12:47:11 +00004648 o_addchr(dest, ch);
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004649 continue;
4650 }
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004651 }
4652}
Mike Frysinger98c52642009-04-02 10:02:37 +00004653#endif /* ENABLE_HUSH_TICK || ENABLE_SH_MATH_SUPPORT */
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00004654
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00004655/* Return code: 0 for OK, 1 for syntax error */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004656#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004657#define handle_dollar(as_string, dest, input) \
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004658 handle_dollar(dest, input)
4659#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004660static int handle_dollar(o_string *as_string,
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004661 o_string *dest,
4662 struct in_str *input)
Eric Andersen25f27032001-04-26 23:22:31 +00004663{
Mike Frysinger6379bb42009-03-28 18:55:03 +00004664 int expansion;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004665 int ch = i_peek(input); /* first character after the $ */
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004666 unsigned char quote_mask = dest->o_escape ? 0x80 : 0;
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004667
4668 debug_printf_parse("handle_dollar entered: ch='%c'\n", ch);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004669 if (isalpha(ch)) {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004670 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004671 nommu_addchr(as_string, ch);
Denis Vlasenkod4981312008-07-31 10:34:48 +00004672 make_var:
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004673 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004674 while (1) {
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004675 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004676 o_addchr(dest, ch | quote_mask);
Denis Vlasenko1f4cf512007-05-16 10:39:24 +00004677 quote_mask = 0;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004678 ch = i_peek(input);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004679 if (!isalnum(ch) && ch != '_')
4680 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004681 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004682 nommu_addchr(as_string, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00004683 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004684 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004685 } else if (isdigit(ch)) {
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004686 make_one_char_var:
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004687 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004688 nommu_addchr(as_string, ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004689 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko602d13c2007-05-13 18:34:53 +00004690 debug_printf_parse(": '%c'\n", ch);
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004691 o_addchr(dest, ch | quote_mask);
4692 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004693 } else switch (ch) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004694 case '$': /* pid */
4695 case '!': /* last bg pid */
4696 case '?': /* last exit code */
4697 case '#': /* number of args */
4698 case '*': /* args */
4699 case '@': /* args */
4700 goto make_one_char_var;
4701 case '{': {
4702 bool first_char, all_digits;
Mike Frysinger6379bb42009-03-28 18:55:03 +00004703
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004704 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004705 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004706 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004707 /* XXX maybe someone will try to escape the '}' */
4708 expansion = 0;
4709 first_char = true;
4710 all_digits = false;
4711 while (1) {
4712 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004713 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004714 if (ch == '}')
Mike Frysinger98c52642009-04-02 10:02:37 +00004715 break;
Mike Frysinger98c52642009-04-02 10:02:37 +00004716
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004717 if (first_char) {
4718 if (ch == '#')
4719 /* ${#var}: length of var contents */
4720 goto char_ok;
4721 else if (isdigit(ch)) {
4722 all_digits = true;
4723 goto char_ok;
4724 }
4725 }
4726
4727 if (expansion < 2
4728 && ( (all_digits && !isdigit(ch))
4729 || (!all_digits && !isalnum(ch) && ch != '_')
4730 )
4731 ) {
4732 /* handle parameter expansions
4733 * http://www.opengroup.org/onlinepubs/009695399/utilities/xcu_chap02.html#tag_02_06_02
4734 */
4735 if (first_char)
4736 goto case_default;
4737 switch (ch) {
4738 case ':': /* null modifier */
4739 if (expansion == 0) {
4740 debug_printf_parse(": null modifier\n");
4741 ++expansion;
4742 break;
4743 }
4744 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004745 case '#': /* remove prefix */
4746 case '%': /* remove suffix */
4747 if (expansion == 0) {
4748 debug_printf_parse(": remove suffix/prefix\n");
4749 expansion = 2;
4750 break;
4751 }
4752 goto case_default;
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004753 case '-': /* default value */
4754 case '=': /* assign default */
4755 case '+': /* alternative */
4756 case '?': /* error indicate */
4757 debug_printf_parse(": parameter expansion\n");
4758 expansion = 2;
4759 break;
4760 default:
4761 case_default:
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004762 syntax_error_unterm_str("${name}");
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004763 debug_printf_parse("handle_dollar return 1: unterminated ${name}\n");
4764 return 1;
4765 }
4766 }
4767 char_ok:
4768 debug_printf_parse(": '%c'\n", ch);
4769 o_addchr(dest, ch | quote_mask);
4770 quote_mask = 0;
4771 first_char = false;
4772 }
4773 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4774 break;
4775 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004776#if (ENABLE_SH_MATH_SUPPORT || ENABLE_HUSH_TICK)
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004777 case '(': {
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004778# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004779 int pos;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004780# endif
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004781 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004782 nommu_addchr(as_string, ch);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004783# if ENABLE_SH_MATH_SUPPORT
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004784 if (i_peek(input) == '(') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004785 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004786 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004787 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4788 o_addchr(dest, /*quote_mask |*/ '+');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004789# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004790 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004791# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004792 add_till_closing_paren(dest, input, true);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004793# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004794 if (as_string) {
4795 o_addstr(as_string, dest->data + pos);
4796 o_addchr(as_string, ')');
4797 o_addchr(as_string, ')');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004798 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004799# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004800 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Eric Andersen25f27032001-04-26 23:22:31 +00004801 break;
Denis Vlasenko76db5ad2008-06-12 12:58:20 +00004802 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004803# endif
4804# if ENABLE_HUSH_TICK
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004805 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4806 o_addchr(dest, quote_mask | '`');
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004807# if !BB_MMU
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004808 pos = dest->length;
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004809# endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004810 add_till_closing_paren(dest, input, false);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004811# if !BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004812 if (as_string) {
4813 o_addstr(as_string, dest->data + pos);
4814 o_addchr(as_string, '`');
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004815 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004816# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004817 o_addchr(dest, SPECIAL_VAR_SYMBOL);
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004818# endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004819 break;
4820 }
Denis Vlasenkod85a5df2009-04-05 08:43:57 +00004821#endif
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004822 case '_':
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00004823 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004824 nommu_addchr(as_string, ch);
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004825 ch = i_peek(input);
4826 if (isalnum(ch)) { /* it's $_name or $_123 */
4827 ch = '_';
4828 goto make_var;
4829 }
4830 /* else: it's $_ */
4831 /* TODO: */
4832 /* $_ Shell or shell script name; or last cmd name */
4833 /* $- Option flags set by set builtin or shell options (-i etc) */
4834 default:
4835 o_addQchr(dest, '$');
Eric Andersen25f27032001-04-26 23:22:31 +00004836 }
Denis Vlasenkoe0a33672007-05-10 23:06:55 +00004837 debug_printf_parse("handle_dollar return 0\n");
Eric Andersen25f27032001-04-26 23:22:31 +00004838 return 0;
4839}
4840
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004841#if BB_MMU
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004842#define parse_stream_dquoted(as_string, dest, input, dquote_end) \
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004843 parse_stream_dquoted(dest, input, dquote_end)
4844#endif
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004845static int parse_stream_dquoted(o_string *as_string,
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004846 o_string *dest,
4847 struct in_str *input,
4848 int dquote_end)
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004849{
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004850 int ch;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004851 int next;
4852
4853 again:
4854 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00004855 if (ch != EOF)
4856 nommu_addchr(as_string, ch);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004857 if (ch == dquote_end) { /* may be only '"' or EOF */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004858 if (dest->o_assignment == NOT_ASSIGNMENT)
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004859 dest->o_escape ^= 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004860 debug_printf_parse("parse_stream_dquoted return 0\n");
4861 return 0;
4862 }
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004863 /* note: can't move it above ch == dquote_end check! */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004864 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004865 syntax_error_unterm_ch('"');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004866 /*xfunc_die(); - redundant */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004867 }
4868 next = '\0';
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004869 if (ch != '\n') {
4870 next = i_peek(input);
4871 }
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00004872 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4873 ch, ch, dest->o_escape);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004874 if (ch == '\\') {
4875 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004876 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004877 xfunc_die();
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004878 }
4879 /* bash:
4880 * "The backslash retains its special meaning [in "..."]
4881 * only when followed by one of the following characters:
4882 * $, `, ", \, or <newline>. A double quote may be quoted
4883 * within double quotes by preceding it with a backslash.
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004884 */
4885 if (strchr("$`\"\\", next) != NULL) {
4886 o_addqchr(dest, i_getch(input));
4887 } else {
4888 o_addqchr(dest, '\\');
4889 }
4890 goto again;
4891 }
4892 if (ch == '$') {
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004893 if (handle_dollar(as_string, dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004894 debug_printf_parse("parse_stream_dquoted return 1: "
4895 "handle_dollar returned non-0\n");
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004896 return 1;
4897 }
4898 goto again;
4899 }
4900#if ENABLE_HUSH_TICK
4901 if (ch == '`') {
4902 //int pos = dest->length;
4903 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4904 o_addchr(dest, 0x80 | '`');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004905 add_till_backquote(dest, input);
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004906 o_addchr(dest, SPECIAL_VAR_SYMBOL);
4907 //debug_printf_subst("SUBST RES3 '%s'\n", dest->data + pos);
Denis Vlasenkof328e002009-04-02 16:55:38 +00004908 goto again;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004909 }
4910#endif
Denis Vlasenkof328e002009-04-02 16:55:38 +00004911 o_addQchr(dest, ch);
4912 if (ch == '='
4913 && (dest->o_assignment == MAYBE_ASSIGNMENT
4914 || dest->o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00004915 && is_well_formed_var_name(dest->data, '=')
Denis Vlasenkof328e002009-04-02 16:55:38 +00004916 ) {
4917 dest->o_assignment = DEFINITELY_ASSIGNMENT;
4918 }
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004919 goto again;
4920}
4921
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004922/*
4923 * Scan input until EOF or end_trigger char.
4924 * Return a list of pipes to execute, or NULL on EOF
4925 * or if end_trigger character is met.
4926 * On syntax error, exit is shell is not interactive,
4927 * reset parsing machinery and start parsing anew,
4928 * or return ERR_PTR.
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00004929 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004930static struct pipe *parse_stream(char **pstring,
4931 struct in_str *input,
4932 int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00004933{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004934 struct parse_context ctx;
4935 o_string dest = NULL_O_STRING;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004936 int is_in_dquote;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004937 int heredoc_cnt;
Eric Andersen25f27032001-04-26 23:22:31 +00004938
Denis Vlasenkob7aaae92009-04-02 20:17:49 +00004939 /* Double-quote state is handled in the state variable is_in_dquote.
Eric Andersen25f27032001-04-26 23:22:31 +00004940 * A single-quote triggers a bypass of the main loop until its mate is
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00004941 * found. When recursing, quote state is passed in via dest->o_escape.
4942 */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004943 debug_printf_parse("parse_stream entered, end_trigger='%c'\n",
4944 end_trigger ? : 'X');
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00004945
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004946 G.ifs = get_local_var_value("IFS");
4947 if (G.ifs == NULL)
4948 G.ifs = " \t\n";
4949
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004950 reset:
4951#if ENABLE_HUSH_INTERACTIVE
4952 input->promptmode = 0; /* PS1 */
4953#endif
4954 /* dest.o_assignment = MAYBE_ASSIGNMENT; - already is */
4955 initialize_context(&ctx);
4956 is_in_dquote = 0;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004957 heredoc_cnt = 0;
Denis Vlasenko1a735862007-05-23 00:32:25 +00004958 while (1) {
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004959 const char *is_ifs;
4960 const char *is_special;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004961 int ch;
4962 int next;
4963 int redir_fd;
4964 redir_type redir_style;
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004965
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004966 if (is_in_dquote) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00004967 /* dest.o_quoted = 1; - already is (see below) */
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00004968 if (parse_stream_dquoted(&ctx.as_string, &dest, input, '"')) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00004969 goto parse_error;
4970 }
4971 /* We reached closing '"' */
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00004972 is_in_dquote = 0;
4973 }
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00004974 ch = i_getch(input);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004975 debug_printf_parse(": ch=%c (%d) escape=%d\n",
4976 ch, ch, dest.o_escape);
4977 if (ch == EOF) {
4978 struct pipe *pi;
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004979
4980 if (heredoc_cnt) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00004981 syntax_error_unterm_str("here document");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004982 xfunc_die();
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00004983 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004984 if (done_word(&dest, &ctx)) {
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004985 xfunc_die();
Denis Vlasenko55789c62008-06-18 16:30:42 +00004986 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004987 o_free(&dest);
4988 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004989 pi = ctx.list_head;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00004990 /* If we got nothing... */
Denis Vlasenko0b677d82009-04-10 13:49:10 +00004991 /* (this makes bare "&" cmd a no-op.
4992 * bash says: "syntax error near unexpected token '&'") */
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00004993 if (pi->num_cmds == 0
4994 IF_HAS_KEYWORDS( && pi->res_word == RES_NONE)
4995 ) {
4996 free_pipe_list(pi, 0);
4997 pi = NULL;
4998 }
4999 debug_printf_parse("parse_stream return %p\n", pi);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005000#if !BB_MMU
5001 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5002 if (pstring)
5003 *pstring = ctx.as_string.data;
5004 else
5005 o_free_unsafe(&ctx.as_string);
5006#endif
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005007 return pi;
Denis Vlasenko1a735862007-05-23 00:32:25 +00005008 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005009 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005010 is_ifs = strchr(G.ifs, ch);
5011 is_special = strchr("<>;&|(){}#'" /* special outside of "str" */
5012 "\\$\"" USE_HUSH_TICK("`") /* always special */
5013 , ch);
5014
5015 if (!is_special && !is_ifs) { /* ordinary char */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005016 o_addQchr(&dest, ch);
5017 if ((dest.o_assignment == MAYBE_ASSIGNMENT
5018 || dest.o_assignment == WORD_IS_KEYWORD)
Denis Vlasenko55789c62008-06-18 16:30:42 +00005019 && ch == '='
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005020 && is_well_formed_var_name(dest.data, '=')
Denis Vlasenko55789c62008-06-18 16:30:42 +00005021 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005022 dest.o_assignment = DEFINITELY_ASSIGNMENT;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005023 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005024 continue;
5025 }
Denis Vlasenko240c2552009-04-03 03:45:05 +00005026
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005027 if (is_ifs) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005028 if (done_word(&dest, &ctx)) {
5029 goto parse_error;
Eric Andersenaac75e52001-04-30 18:18:45 +00005030 }
Denis Vlasenko37181682009-04-03 03:19:15 +00005031 if (ch == '\n') {
Denis Vlasenkof1736072008-07-31 10:09:26 +00005032#if ENABLE_HUSH_CASE
5033 /* "case ... in <newline> word) ..." -
5034 * newlines are ignored (but ';' wouldn't be) */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005035 if (ctx.command->argv == NULL
5036 && ctx.ctx_res_w == RES_MATCH
Denis Vlasenkof1736072008-07-31 10:09:26 +00005037 ) {
5038 continue;
5039 }
5040#endif
Denis Vlasenko240c2552009-04-03 03:45:05 +00005041 /* Treat newline as a command separator. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005042 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005043 debug_printf_parse("heredoc_cnt:%d\n", heredoc_cnt);
5044 if (heredoc_cnt) {
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005045 if (fetch_heredocs(heredoc_cnt, &ctx, input)) {
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005046 goto parse_error;
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005047 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005048 heredoc_cnt = 0;
5049 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005050 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005051 ch = ';';
Denis Vlasenko7c986122009-04-04 12:15:42 +00005052 /* note: if (is_ifs) continue;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005053 * will still trigger for us */
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005054 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005055 }
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005056 if (end_trigger && end_trigger == ch
5057 && (heredoc_cnt == 0 || end_trigger != ';')
5058 ) {
Denis Vlasenko240c2552009-04-03 03:45:05 +00005059//TODO: disallow "{ cmd }" without semicolon
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005060 if (heredoc_cnt) {
5061 /* This is technically valid:
5062 * { cat <<HERE; }; echo Ok
5063 * heredoc
5064 * heredoc
5065 * heredoc
5066 * HERE
5067 * but we don't support this.
5068 * We require heredoc to be in enclosing {}/(),
5069 * if any.
5070 */
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005071 syntax_error_unterm_str("here document");
Denis Vlasenko6c9be7f2009-04-07 02:29:51 +00005072 goto parse_error;
5073 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005074 if (done_word(&dest, &ctx)) {
5075 goto parse_error;
5076 }
5077 done_pipe(&ctx, PIPE_SEQ);
5078 dest.o_assignment = MAYBE_ASSIGNMENT;
Denis Vlasenko240c2552009-04-03 03:45:05 +00005079 /* Do we sit outside of any if's, loops or case's? */
Denis Vlasenko37181682009-04-03 03:19:15 +00005080 if (!HAS_KEYWORDS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005081 IF_HAS_KEYWORDS(|| (ctx.ctx_res_w == RES_NONE && ctx.old_flag == 0))
Denis Vlasenko37181682009-04-03 03:19:15 +00005082 ) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005083 debug_printf_parse("parse_stream return %p: "
5084 "end_trigger char found\n",
5085 ctx.list_head);
5086 o_free(&dest);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005087#if !BB_MMU
5088 debug_printf_parse("as_string '%s'\n", ctx.as_string.data);
5089 if (pstring)
5090 *pstring = ctx.as_string.data;
5091 else
5092 o_free_unsafe(&ctx.as_string);
5093#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005094 return ctx.list_head;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005095 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005096 }
Denis Vlasenko6da69cd2009-04-04 12:12:58 +00005097 if (is_ifs)
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005098 continue;
Denis Vlasenko55789c62008-06-18 16:30:42 +00005099
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005100 next = '\0';
5101 if (ch != '\n') {
5102 next = i_peek(input);
5103 }
5104
Denis Vlasenkoc96865f2009-04-10 00:20:58 +00005105 /* Catch <, > before deciding whether this word is
5106 * an assignment. a=1 2>z b=2: b=2 is still assignment */
5107 switch (ch) {
5108 case '>':
5109 redir_fd = redirect_opt_num(&dest);
5110 if (done_word(&dest, &ctx)) {
5111 goto parse_error;
5112 }
5113 redir_style = REDIRECT_OVERWRITE;
5114 if (next == '>') {
5115 redir_style = REDIRECT_APPEND;
5116 ch = i_getch(input);
5117 nommu_addchr(&ctx.as_string, ch);
5118 }
5119#if 0
5120 else if (next == '(') {
5121 syntax_error(">(process) not supported");
5122 goto parse_error;
5123 }
5124#endif
5125 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5126 goto parse_error;
5127 continue; /* back to top of while (1) */
5128 case '<':
5129 redir_fd = redirect_opt_num(&dest);
5130 if (done_word(&dest, &ctx)) {
5131 goto parse_error;
5132 }
5133 redir_style = REDIRECT_INPUT;
5134 if (next == '<') {
5135 redir_style = REDIRECT_HEREDOC;
5136 heredoc_cnt++;
5137 debug_printf_parse("++heredoc_cnt=%d\n", heredoc_cnt);
5138 ch = i_getch(input);
5139 nommu_addchr(&ctx.as_string, ch);
5140 } else if (next == '>') {
5141 redir_style = REDIRECT_IO;
5142 ch = i_getch(input);
5143 nommu_addchr(&ctx.as_string, ch);
5144 }
5145#if 0
5146 else if (next == '(') {
5147 syntax_error("<(process) not supported");
5148 goto parse_error;
5149 }
5150#endif
5151 if (parse_redirect(&ctx, redir_fd, redir_style, input))
5152 goto parse_error;
5153 continue; /* back to top of while (1) */
5154 }
5155
5156 if (dest.o_assignment == MAYBE_ASSIGNMENT
5157 /* check that we are not in word in "a=1 2>word b=1": */
5158 && !ctx.pending_redirect
5159 ) {
5160 /* ch is a special char and thus this word
5161 * cannot be an assignment */
5162 dest.o_assignment = NOT_ASSIGNMENT;
5163 }
5164
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005165 switch (ch) {
Eric Andersen25f27032001-04-26 23:22:31 +00005166 case '#':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005167 if (dest.length == 0) {
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005168 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005169 ch = i_peek(input);
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005170 if (ch == EOF || ch == '\n')
5171 break;
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005172 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005173 /* note: we do not add it to &ctx.as_string */
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005174 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005175 nommu_addchr(&ctx.as_string, '\n');
Eric Andersen25f27032001-04-26 23:22:31 +00005176 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005177 o_addQchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005178 }
5179 break;
5180 case '\\':
5181 if (next == EOF) {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005182 syntax_error("\\<eof>");
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005183 xfunc_die();
Eric Andersen25f27032001-04-26 23:22:31 +00005184 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005185 o_addchr(&dest, '\\');
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005186 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005187 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenko3dfb0352009-04-08 09:29:14 +00005188 o_addchr(&dest, ch);
5189 /* Example: echo Hello \2>file
5190 * we need to know that word 2 is quoted */
5191 dest.o_quoted = 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005192 break;
5193 case '$':
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005194 if (handle_dollar(&ctx.as_string, &dest, input) != 0) {
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005195 debug_printf_parse("parse_stream parse error: "
5196 "handle_dollar returned non-0\n");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005197 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005198 }
Eric Andersen25f27032001-04-26 23:22:31 +00005199 break;
5200 case '\'':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005201 dest.o_quoted = 1;
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005202 while (1) {
Denis Vlasenko46ccdcb2008-06-10 18:05:12 +00005203 ch = i_getch(input);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005204 if (ch == EOF) {
Denis Vlasenkod68ae082009-04-09 20:41:34 +00005205 syntax_error_unterm_ch('\'');
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005206 /*xfunc_die(); - redundant */
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005207 }
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005208 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005209 if (ch == '\'')
Denis Vlasenko0c886c62007-01-30 22:30:09 +00005210 break;
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005211 if (dest.o_assignment == NOT_ASSIGNMENT)
5212 o_addqchr(&dest, ch);
Denis Vlasenko55789c62008-06-18 16:30:42 +00005213 else
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005214 o_addchr(&dest, ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005215 }
Eric Andersen25f27032001-04-26 23:22:31 +00005216 break;
5217 case '"':
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005218 dest.o_quoted = 1;
Denis Vlasenko2f1d3942009-04-02 16:31:29 +00005219 is_in_dquote ^= 1; /* invert */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005220 if (dest.o_assignment == NOT_ASSIGNMENT)
5221 dest.o_escape ^= 1;
Eric Andersen25f27032001-04-26 23:22:31 +00005222 break;
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005223#if ENABLE_HUSH_TICK
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005224 case '`': {
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005225#if !BB_MMU
5226 int pos;
5227#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005228 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5229 o_addchr(&dest, '`');
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005230#if !BB_MMU
5231 pos = dest.length;
5232#endif
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005233 add_till_backquote(&dest, input);
Denis Vlasenko5c090a92009-04-08 21:51:33 +00005234#if !BB_MMU
5235 o_addstr(&ctx.as_string, dest.data + pos);
5236 o_addchr(&ctx.as_string, '`');
5237#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005238 o_addchr(&dest, SPECIAL_VAR_SYMBOL);
5239 //debug_printf_subst("SUBST RES3 '%s'\n", dest.data + pos);
Eric Andersen25f27032001-04-26 23:22:31 +00005240 break;
Denis Vlasenko7b4f3f12008-06-10 18:04:32 +00005241 }
Denis Vlasenko14b5dd92007-05-20 21:51:38 +00005242#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005243 case ';':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005244#if ENABLE_HUSH_CASE
5245 case_semi:
5246#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005247 if (done_word(&dest, &ctx)) {
5248 goto parse_error;
5249 }
5250 done_pipe(&ctx, PIPE_SEQ);
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005251#if ENABLE_HUSH_CASE
5252 /* Eat multiple semicolons, detect
5253 * whether it means something special */
5254 while (1) {
5255 ch = i_peek(input);
5256 if (ch != ';')
5257 break;
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005258 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005259 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005260 if (ctx.ctx_res_w == RES_CASEI) {
5261 ctx.ctx_dsemicolon = 1;
5262 ctx.ctx_res_w = RES_MATCH;
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005263 break;
5264 }
5265 }
5266#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005267 new_cmd:
5268 /* We just finished a cmd. New one may start
5269 * with an assignment */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005270 dest.o_assignment = MAYBE_ASSIGNMENT;
Eric Andersen25f27032001-04-26 23:22:31 +00005271 break;
5272 case '&':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005273 if (done_word(&dest, &ctx)) {
5274 goto parse_error;
5275 }
Denis Vlasenkobb81c582007-01-30 22:32:09 +00005276 if (next == '&') {
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005277 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005278 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005279 done_pipe(&ctx, PIPE_AND);
Eric Andersen25f27032001-04-26 23:22:31 +00005280 } else {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005281 done_pipe(&ctx, PIPE_BG);
Eric Andersen25f27032001-04-26 23:22:31 +00005282 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005283 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005284 case '|':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005285 if (done_word(&dest, &ctx)) {
5286 goto parse_error;
5287 }
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005288#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005289 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenkof1736072008-07-31 10:09:26 +00005290 break; /* we are in case's "word | word)" */
Denis Vlasenkofbeeb322008-07-31 00:17:01 +00005291#endif
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005292 if (next == '|') { /* || */
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005293 ch = i_getch(input);
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005294 nommu_addchr(&ctx.as_string, ch);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005295 done_pipe(&ctx, PIPE_OR);
Eric Andersen25f27032001-04-26 23:22:31 +00005296 } else {
5297 /* we could pick up a file descriptor choice here
5298 * with redirect_opt_num(), but bash doesn't do it.
5299 * "echo foo 2| cat" yields "foo 2". */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005300 done_command(&ctx);
Eric Andersen25f27032001-04-26 23:22:31 +00005301 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005302 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005303 case '(':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005304#if ENABLE_HUSH_CASE
Denis Vlasenkof1736072008-07-31 10:09:26 +00005305 /* "case... in [(]word)..." - skip '(' */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005306 if (ctx.ctx_res_w == RES_MATCH
5307 && ctx.command->argv == NULL /* not (word|(... */
5308 && dest.length == 0 /* not word(... */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005309 && dest.o_quoted == 0 /* not ""(... */
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005310 ) {
5311 continue;
5312 }
5313#endif
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005314#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005315 if (dest.length != 0 /* not just () but word() */
Denis Vlasenko02d6f1a2009-04-07 19:56:55 +00005316 && dest.o_quoted == 0 /* not a"b"c() */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005317 && ctx.command->argv == NULL /* it's the first word */
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005318//TODO: "func ( ) {...}" - note spaces - is valid format too in bash
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005319 && i_peek(input) == ')'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005320 && !match_reserved_word(&dest)
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005321 ) {
5322 bb_error_msg("seems like a function definition");
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005323 i_getch(input);
Denis Vlasenko609f2ab2009-04-04 23:15:14 +00005324//if !BB_MMU o_addchr(&ctx.as_string...
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005325 do {
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005326//TODO: do it properly.
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005327 ch = i_getch(input);
5328 } while (ch == ' ' || ch == '\n');
5329 if (ch != '{') {
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005330 syntax_error("was expecting {");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005331 goto parse_error;
Denis Vlasenko22d10a02008-10-13 08:53:43 +00005332 }
Denis Vlasenko371de4a2008-10-14 12:43:13 +00005333 ch = 'F'; /* magic value */
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005334 }
5335#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005336 case '{':
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005337 if (parse_group(&dest, &ctx, input, ch) != 0) {
5338 goto parse_error;
Denis Vlasenkoe725bfe2007-05-03 22:45:39 +00005339 }
Denis Vlasenko2b576b82008-08-04 00:46:07 +00005340 goto new_cmd;
Eric Andersen25f27032001-04-26 23:22:31 +00005341 case ')':
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005342#if ENABLE_HUSH_CASE
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005343 if (ctx.ctx_res_w == RES_MATCH)
Denis Vlasenko17f02e72008-07-14 04:32:29 +00005344 goto case_semi;
5345#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005346 case '}':
Denis Vlasenkoc3735272008-10-09 12:58:26 +00005347 /* proper use of this character is caught by end_trigger:
5348 * if we see {, we call parse_group(..., end_trigger='}')
5349 * and it will match } earlier (not here). */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00005350 syntax_error("unexpected } or )");
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005351 goto parse_error;
Eric Andersen25f27032001-04-26 23:22:31 +00005352 default:
Denis Vlasenko5ec61322008-06-24 00:50:07 +00005353 if (HUSH_DEBUG)
Denis Vlasenko90e485c2007-05-23 15:22:50 +00005354 bb_error_msg_and_die("BUG: unexpected %c\n", ch);
Eric Andersen25f27032001-04-26 23:22:31 +00005355 }
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005356 } /* while (1) */
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005357
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005358 parse_error:
5359 {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005360 struct parse_context *pctx;
5361 IF_HAS_KEYWORDS(struct parse_context *p2;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005362
5363 /* Clean up allocated tree.
5364 * Samples for finding leaks on syntax error recovery path.
Denis Vlasenkoa24c8ca2009-04-04 15:24:40 +00005365 * Run them from interactive shell, watch pmap `pidof hush`.
5366 * while if false; then false; fi do break; done
5367 * (bash accepts it)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005368 * while if false; then false; fi; do break; fi
Denis Vlasenkocc4c6932009-04-05 07:38:48 +00005369 * Samples to catch leaks at execution:
5370 * while if (true | {true;}); then echo ok; fi; do break; done
5371 * 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 +00005372 */
5373 pctx = &ctx;
5374 do {
5375 /* Update pipe/command counts,
5376 * otherwise freeing may miss some */
5377 done_pipe(pctx, PIPE_SEQ);
5378 debug_printf_clean("freeing list %p from ctx %p\n",
5379 pctx->list_head, pctx);
5380 debug_print_tree(pctx->list_head, 0);
5381 free_pipe_list(pctx->list_head, 0);
5382 debug_printf_clean("freed list %p\n", pctx->list_head);
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005383#if !BB_MMU
5384 o_free_unsafe(&pctx->as_string);
5385#endif
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005386 IF_HAS_KEYWORDS(p2 = pctx->stack;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005387 if (pctx != &ctx) {
5388 free(pctx);
5389 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005390 IF_HAS_KEYWORDS(pctx = p2;)
5391 } while (HAS_KEYWORDS && pctx);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005392 /* Free text, clear all dest fields */
5393 o_free(&dest);
5394 /* If we are not in top-level parse, we return,
5395 * our caller will propagate error.
5396 */
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005397 if (end_trigger != ';') {
5398#if !BB_MMU
5399 if (pstring)
5400 *pstring = NULL;
5401#endif
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005402 return ERR_PTR;
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005403 }
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005404 /* Discard cached input, force prompt */
5405 input->p = NULL;
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005406 USE_HUSH_INTERACTIVE(input->promptme = 1;)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005407 goto reset;
Denis Vlasenko027e3fd2009-04-02 22:50:40 +00005408 }
Eric Andersen25f27032001-04-26 23:22:31 +00005409}
5410
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005411/* Executing from string: eval, sh -c '...'
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005412 * or from file: /etc/profile, . file, sh <script>, sh (intereactive)
5413 * end_trigger controls how often we stop parsing
5414 * NUL: parse all, execute, return
5415 * ';': parse till ';' or newline, execute, repeat till EOF
5416 */
5417static void parse_and_run_stream(struct in_str *inp, int end_trigger)
Eric Andersen25f27032001-04-26 23:22:31 +00005418{
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005419 while (1) {
5420 struct pipe *pipe_list;
Denis Vlasenkof8d01d32008-06-14 17:13:20 +00005421
Denis Vlasenko9aa7d6f2009-04-04 22:47:50 +00005422 pipe_list = parse_stream(NULL, inp, end_trigger);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005423 if (!pipe_list) /* EOF */
5424 break;
5425 debug_print_tree(pipe_list, 0);
5426 debug_printf_exec("parse_and_run_stream: run_and_free_list\n");
5427 run_and_free_list(pipe_list);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005428 }
Eric Andersen25f27032001-04-26 23:22:31 +00005429}
5430
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005431static void parse_and_run_string(const char *s)
Eric Andersen25f27032001-04-26 23:22:31 +00005432{
5433 struct in_str input;
5434 setup_string_in_str(&input, s);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005435 parse_and_run_stream(&input, '\0');
Eric Andersen25f27032001-04-26 23:22:31 +00005436}
5437
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005438static void parse_and_run_file(FILE *f)
Eric Andersen25f27032001-04-26 23:22:31 +00005439{
Eric Andersen25f27032001-04-26 23:22:31 +00005440 struct in_str input;
5441 setup_file_in_str(&input, f);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005442 parse_and_run_stream(&input, ';');
Eric Andersen25f27032001-04-26 23:22:31 +00005443}
5444
Denis Vlasenkof9375282009-04-05 19:13:39 +00005445/* Called a few times only (or even once if "sh -c") */
5446static void block_signals(int second_time)
Eric Andersen52a97ca2001-06-22 06:49:26 +00005447{
Denis Vlasenkof9375282009-04-05 19:13:39 +00005448 unsigned sig;
5449 unsigned mask;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005450
Denis Vlasenkof9375282009-04-05 19:13:39 +00005451 mask = (1 << SIGQUIT);
5452 if (G_interactive_fd) {
5453 mask = 0
5454 | (1 << SIGQUIT)
5455 | (1 << SIGTERM)
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005456//TODO | (1 << SIGHUP)
Denis Vlasenkof9375282009-04-05 19:13:39 +00005457#if ENABLE_HUSH_JOB
5458 | (1 << SIGTTIN) | (1 << SIGTTOU) | (1 << SIGTSTP)
5459#endif
5460 | (1 << SIGINT)
5461 ;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005462 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005463 G.non_DFL_mask = mask;
Eric Andersen52a97ca2001-06-22 06:49:26 +00005464
Denis Vlasenkof9375282009-04-05 19:13:39 +00005465 if (!second_time)
5466 sigprocmask(SIG_SETMASK, NULL, &G.blocked_set);
5467 sig = 0;
5468 while (mask) {
5469 if (mask & 1)
5470 sigaddset(&G.blocked_set, sig);
5471 mask >>= 1;
5472 sig++;
5473 }
5474 sigdelset(&G.blocked_set, SIGCHLD);
5475
5476 sigprocmask(SIG_SETMASK, &G.blocked_set,
5477 second_time ? NULL : &G.inherited_set);
5478 /* POSIX allows shell to re-enable SIGCHLD
5479 * even if it was SIG_IGN on entry */
5480// G.count_SIGCHLD++; /* ensure it is != G.handled_SIGCHLD */
5481 if (!second_time)
5482 signal(SIGCHLD, SIG_DFL); // SIGCHLD_handler);
5483}
5484
5485#if ENABLE_HUSH_JOB
5486/* helper */
5487static void maybe_set_to_sigexit(int sig)
5488{
5489 void (*handler)(int);
5490 /* non_DFL_mask'ed signals are, well, masked,
5491 * no need to set handler for them.
5492 */
5493 if (!((G.non_DFL_mask >> sig) & 1)) {
5494 handler = signal(sig, sigexit);
5495 if (handler == SIG_IGN) /* oops... restore back to IGN! */
5496 signal(sig, handler);
5497 }
5498}
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005499/* Set handlers to restore tty pgrp and exit */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005500static void set_fatal_handlers(void)
5501{
Denis Vlasenkoa6c467f2007-05-05 15:10:52 +00005502 /* We _must_ restore tty pgrp on fatal signals */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005503 if (HUSH_DEBUG) {
5504 maybe_set_to_sigexit(SIGILL );
5505 maybe_set_to_sigexit(SIGFPE );
5506 maybe_set_to_sigexit(SIGBUS );
5507 maybe_set_to_sigexit(SIGSEGV);
5508 maybe_set_to_sigexit(SIGTRAP);
5509 } /* else: hush is perfect. what SEGV? */
5510 maybe_set_to_sigexit(SIGABRT);
5511 /* bash 3.2 seems to handle these just like 'fatal' ones */
5512 maybe_set_to_sigexit(SIGPIPE);
5513 maybe_set_to_sigexit(SIGALRM);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005514//TODO: disable and move down when proper SIGHUP handling is added
Denis Vlasenkof9375282009-04-05 19:13:39 +00005515 maybe_set_to_sigexit(SIGHUP );
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005516 /* if we are interactive, [SIGHUP,] SIGTERM and SIGINT are masked.
Denis Vlasenkof9375282009-04-05 19:13:39 +00005517 * if we aren't interactive... but in this case
5518 * we never want to restore pgrp on exit, and this fn is not called */
5519 /*maybe_set_to_sigexit(SIGTERM);*/
5520 /*maybe_set_to_sigexit(SIGINT );*/
Eric Andersen6c947d22001-06-25 22:24:38 +00005521}
Denis Vlasenkob81b3df2007-04-28 16:48:04 +00005522#endif
Eric Andersenada18ff2001-05-21 16:18:22 +00005523
Denis Vlasenkod5762932009-03-31 11:22:57 +00005524static int set_mode(const char cstate, const char mode)
5525{
5526 int state = (cstate == '-' ? 1 : 0);
5527 switch (mode) {
5528 case 'n': G.fake_mode = state; break;
5529 case 'x': /*G.debug_mode = state;*/ break;
5530 default: return EXIT_FAILURE;
5531 }
5532 return EXIT_SUCCESS;
5533}
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005534
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +00005535int hush_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Matt Kraai2d91deb2001-08-01 17:21:35 +00005536int hush_main(int argc, char **argv)
Eric Andersen25f27032001-04-26 23:22:31 +00005537{
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005538 static const struct variable const_shell_ver = {
5539 .next = NULL,
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005540 .varstr = (char*)hush_version_str,
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005541 .max_len = 1, /* 0 can provoke free(name) */
5542 .flg_export = 1,
5543 .flg_read_only = 1,
5544 };
Denis Vlasenkof9375282009-04-05 19:13:39 +00005545 int signal_mask_is_inited = 0;
Eric Andersen25f27032001-04-26 23:22:31 +00005546 int opt;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005547 char **e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005548 struct variable *cur_var;
Eric Andersenbc604a22001-05-16 05:24:03 +00005549
Denis Vlasenko574f2f42008-02-27 18:41:59 +00005550 INIT_G();
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005551 if (EXIT_SUCCESS) /* if EXIT_SUCCESS == 0, is already done */
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005552 G.last_exitcode = EXIT_SUCCESS;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005553#if !BB_MMU
5554 G.argv0_for_re_execing = argv[0];
5555#endif
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005556 /* Deal with HUSH_VERSION */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005557 G.shell_ver = const_shell_ver; /* copying struct here */
5558 G.top_var = &G.shell_ver;
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005559 debug_printf_env("unsetenv '%s'\n", "HUSH_VERSION");
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005560 unsetenv("HUSH_VERSION"); /* in case it exists in initial env */
5561 /* Initialize our shell local variables with the values
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005562 * currently living in the environment */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005563 cur_var = G.top_var;
Denis Vlasenko0a83fc32007-05-25 11:12:32 +00005564 e = environ;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005565 if (e) while (*e) {
5566 char *value = strchr(*e, '=');
5567 if (value) { /* paranoia */
5568 cur_var->next = xzalloc(sizeof(*cur_var));
5569 cur_var = cur_var->next;
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005570 cur_var->varstr = *e;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005571 cur_var->max_len = strlen(*e);
5572 cur_var->flg_export = 1;
5573 }
5574 e++;
5575 }
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005576 debug_printf_env("putenv '%s'\n", hush_version_str);
Denis Vlasenkoafd7a8d2008-10-09 16:29:44 +00005577 putenv((char *)hush_version_str); /* reinstate HUSH_VERSION */
Denis Vlasenko38f63192007-01-22 09:03:07 +00005578#if ENABLE_FEATURE_EDITING
Denis Vlasenko87a86552008-07-29 19:43:10 +00005579 G.line_input_state = new_line_input_t(FOR_SHELL);
Denis Vlasenko8e1c7152007-01-22 07:21:38 +00005580#endif
Denis Vlasenko87a86552008-07-29 19:43:10 +00005581 G.global_argc = argc;
5582 G.global_argv = argv;
Eric Andersen94ac2442001-05-22 19:05:18 +00005583 /* Initialize some more globals to non-zero values */
5584 set_cwd();
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005585#if ENABLE_HUSH_INTERACTIVE
Mike Frysingerec2c6552009-03-28 12:24:44 +00005586 if (ENABLE_FEATURE_EDITING)
5587 cmdedit_set_initial_prompt();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005588 G.PS2 = "> ";
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005589#endif
Denis Vlasenkoc8be5ee2007-05-17 15:38:46 +00005590
Denis Vlasenkoed782372009-04-10 00:45:02 +00005591 if (setjmp(die_jmp)) {
5592 /* xfunc has failed! die die die */
5593 /* no EXIT traps, this is an escape hatch! */
5594 G.exiting = 1;
5595 hush_exit(xfunc_error_retval);
5596 }
5597
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005598 /* Shell is non-interactive at first. We need to call
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005599 * block_signals(0) if we are going to execute "sh <script>",
5600 * "sh -c <cmds>" or login shell's /etc/profile and friends.
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005601 * If we later decide that we are interactive, we run block_signals(0)
5602 * (or re-run block_signals(1) if we ran block_signals(0) before)
5603 * in order to intercept (more) signals.
5604 */
5605
5606 /* Parse options */
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005607 /* http://www.opengroup.org/onlinepubs/9699919799/utilities/sh.html */
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005608 while (1) {
5609 opt = getopt(argc, argv, "c:xins"
5610#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005611 "<:$:!:?:D:R:V:"
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005612#endif
5613 );
5614 if (opt <= 0)
5615 break;
Eric Andersen25f27032001-04-26 23:22:31 +00005616 switch (opt) {
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005617 case 'c':
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005618 if (!G.root_pid)
5619 G.root_pid = getpid();
Denis Vlasenko87a86552008-07-29 19:43:10 +00005620 G.global_argv = argv + optind;
Denis Vlasenkoa8b6dff2009-03-20 12:05:14 +00005621 if (!argv[optind]) {
5622 /* -c 'script' (no params): prevent empty $0 */
5623 *--G.global_argv = argv[0];
5624 optind--;
5625 } /* else -c 'script' PAR0 PAR1: $0 is PAR0 */
Denis Vlasenko87a86552008-07-29 19:43:10 +00005626 G.global_argc = argc - optind;
Denis Vlasenkof9375282009-04-05 19:13:39 +00005627 block_signals(0); /* 0: called 1st time */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005628 parse_and_run_string(optarg);
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005629 goto final_return;
5630 case 'i':
Denis Vlasenkoc666f712007-05-16 22:18:54 +00005631 /* Well, we cannot just declare interactiveness,
5632 * we have to have some stuff (ctty, etc) */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005633 /* G_interactive_fd++; */
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005634 break;
Mike Frysinger19a7ea12009-03-28 13:02:11 +00005635 case 's':
5636 /* "-s" means "read from stdin", but this is how we always
5637 * operate, so simply do nothing here. */
5638 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005639#if !BB_MMU
Denis Vlasenko50f3aa42009-04-07 10:52:40 +00005640 case '<': /* "big heredoc" support */
5641 full_write(STDOUT_FILENO, optarg, strlen(optarg));
5642 _exit(0);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005643 case '$':
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005644 G.root_pid = bb_strtou(optarg, &optarg, 16);
5645 optarg++;
5646 G.last_bg_pid = bb_strtou(optarg, &optarg, 16);
5647 optarg++;
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005648 G.last_exitcode = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005649# if ENABLE_HUSH_LOOPS
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005650 optarg++;
5651 G.depth_of_loop = bb_strtou(optarg, &optarg, 16);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005652# endif
Denis Vlasenko34e573d2009-04-06 12:56:28 +00005653 break;
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00005654 case 'R':
5655 case 'V':
5656 set_local_var(xstrdup(optarg), 0, opt == 'R');
5657 break;
5658#endif
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005659 case 'n':
5660 case 'x':
Denis Vlasenkod5762932009-03-31 11:22:57 +00005661 if (!set_mode('-', opt))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00005662 break;
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005663 default:
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005664#ifndef BB_VER
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005665 fprintf(stderr, "Usage: sh [FILE]...\n"
5666 " or: sh -c command [args]...\n\n");
5667 exit(EXIT_FAILURE);
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005668#else
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005669 bb_show_usage();
Eric Andersen9ffb7dd2001-05-19 03:00:46 +00005670#endif
Eric Andersen25f27032001-04-26 23:22:31 +00005671 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005672 } /* option parsing loop */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005673
5674 if (!G.root_pid)
5675 G.root_pid = getpid();
Denis Vlasenkof9375282009-04-05 19:13:39 +00005676
5677 /* If we are login shell... */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005678 if (argv[0] && argv[0][0] == '-') {
5679 FILE *input;
5680 /* XXX what should argv be while sourcing /etc/profile? */
5681 debug_printf("sourcing /etc/profile\n");
5682 input = fopen_for_read("/etc/profile");
5683 if (input != NULL) {
5684 close_on_exec_on(fileno(input));
Denis Vlasenkof9375282009-04-05 19:13:39 +00005685 block_signals(0); /* 0: called 1st time */
5686 signal_mask_is_inited = 1;
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005687 parse_and_run_file(input);
5688 fclose(input);
5689 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005690 /* bash: after sourcing /etc/profile,
5691 * tries to source (in the given order):
5692 * ~/.bash_profile, ~/.bash_login, ~/.profile,
5693 * stopping of first found. --noprofile turns this off.
5694 * bash also sources ~/.bash_logout on exit.
5695 * If called as sh, skips .bash_XXX files.
5696 */
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005697 }
5698
Denis Vlasenkof9375282009-04-05 19:13:39 +00005699 if (argv[optind]) {
5700 FILE *input;
5701 /*
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005702 * "bash <script>" (which is never interactive (unless -i?))
5703 * sources $BASH_ENV here (without scanning $PATH).
Denis Vlasenkof9375282009-04-05 19:13:39 +00005704 * If called as sh, does the same but with $ENV.
5705 */
5706 debug_printf("running script '%s'\n", argv[optind]);
5707 G.global_argv = argv + optind;
5708 G.global_argc = argc - optind;
5709 input = xfopen_for_read(argv[optind]);
5710 close_on_exec_on(fileno(input));
5711 if (!signal_mask_is_inited)
5712 block_signals(0); /* 0: called 1st time */
5713 parse_and_run_file(input);
5714#if ENABLE_FEATURE_CLEAN_UP
5715 fclose(input);
5716#endif
5717 goto final_return;
5718 }
5719
Denis Vlasenkoc4a7af52009-04-05 20:33:27 +00005720 /* Up to here, shell was non-interactive. Now it may become one.
5721 * NB: don't forget to (re)run block_signals(0/1) as needed.
5722 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005723
Denis Vlasenkofbf6dea2007-04-13 19:56:56 +00005724 /* A shell is interactive if the '-i' flag was given, or if all of
Eric Andersen25f27032001-04-26 23:22:31 +00005725 * the following conditions are met:
Denis Vlasenko55b2de72007-04-18 17:21:28 +00005726 * no -c command
Eric Andersen25f27032001-04-26 23:22:31 +00005727 * no arguments remaining or the -s flag given
5728 * standard input is a terminal
5729 * standard output is a terminal
Denis Vlasenkof9375282009-04-05 19:13:39 +00005730 * Refer to Posix.2, the description of the 'sh' utility.
5731 */
5732#if ENABLE_HUSH_JOB
5733 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00005734 G.saved_tty_pgrp = tcgetpgrp(STDIN_FILENO);
Denis Vlasenkof9375282009-04-05 19:13:39 +00005735 debug_printf("saved_tty_pgrp:%d\n", G.saved_tty_pgrp);
Denis Vlasenkod3f973e2009-04-06 10:21:42 +00005736//TODO: "interactive" and "have job control" are two different things.
5737//If tcgetpgrp fails here, "have job control" is false, but "interactive"
5738//should stay on! Currently, we mix these into one.
Denis Vlasenko87a86552008-07-29 19:43:10 +00005739 if (G.saved_tty_pgrp >= 0) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005740 /* try to dup stdin to high fd#, >= 255 */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005741 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5742 if (G_interactive_fd < 0) {
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005743 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005744 G_interactive_fd = dup(STDIN_FILENO);
5745 if (G_interactive_fd < 0)
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005746 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005747 G_interactive_fd = 0;
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005748 }
Denis Vlasenko46f9b6d2009-04-05 10:39:03 +00005749// TODO: track & disallow any attempts of user
5750// to (inadvertently) close/redirect it
Denis Vlasenko54e7ffb2007-04-21 00:03:36 +00005751 }
Eric Andersen25f27032001-04-26 23:22:31 +00005752 }
Denis Vlasenkof9375282009-04-05 19:13:39 +00005753 debug_printf("interactive_fd:%d\n", G_interactive_fd);
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005754 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005755 pid_t shell_pgrp;
5756
5757 /* We are indeed interactive shell, and we will perform
5758 * job control. Setting up for that. */
5759
5760 close_on_exec_on(G_interactive_fd);
5761 /* If we were run as 'hush &', sleep until we are
5762 * in the foreground (tty pgrp == our pgrp).
5763 * If we get started under a job aware app (like bash),
5764 * make sure we are now in charge so we don't fight over
5765 * who gets the foreground */
5766 while (1) {
5767 shell_pgrp = getpgrp();
5768 G.saved_tty_pgrp = tcgetpgrp(G_interactive_fd);
5769 if (G.saved_tty_pgrp == shell_pgrp)
5770 break;
5771 /* send TTIN to ourself (should stop us) */
5772 kill(- shell_pgrp, SIGTTIN);
5773 }
5774 /* Block some signals */
5775 block_signals(signal_mask_is_inited);
5776 /* Set other signals to restore saved_tty_pgrp */
5777 set_fatal_handlers();
5778 /* Put ourselves in our own process group */
5779 bb_setpgrp(); /* is the same as setpgid(our_pid, our_pid); */
5780 /* Grab control of the terminal */
5781 tcsetpgrp(G_interactive_fd, getpid());
Denis Vlasenko4ecfcdc2008-02-11 08:32:31 +00005782 /* -1 is special - makes xfuncs longjmp, not exit
Denis Vlasenkoc04163a2008-02-11 08:30:53 +00005783 * (we reset die_sleep = 0 whereever we [v]fork) */
Denis Vlasenkoaf07b7c2009-04-07 13:26:18 +00005784 enable_restore_tty_pgrp_on_exit(); /* sets die_sleep = -1 */
Denis Vlasenkof9375282009-04-05 19:13:39 +00005785 } else if (!signal_mask_is_inited) {
5786 block_signals(0); /* 0: called 1st time */
5787 } /* else: block_signals(0) was done before */
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005788#elif ENABLE_HUSH_INTERACTIVE
Denis Vlasenkof9375282009-04-05 19:13:39 +00005789 /* No job control compiled in, only prompt/line editing */
5790 if (isatty(STDIN_FILENO) && isatty(STDOUT_FILENO)) {
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005791 G_interactive_fd = fcntl(STDIN_FILENO, F_DUPFD, 255);
5792 if (G_interactive_fd < 0) {
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005793 /* try to dup to any fd */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005794 G_interactive_fd = dup(STDIN_FILENO);
5795 if (G_interactive_fd < 0)
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005796 /* give up */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005797 G_interactive_fd = 0;
Denis Vlasenkoe3f2f892007-04-28 16:48:27 +00005798 }
5799 }
Denis Vlasenko60b392f2009-04-03 19:14:32 +00005800 if (G_interactive_fd) {
Denis Vlasenkof9375282009-04-05 19:13:39 +00005801 close_on_exec_on(G_interactive_fd);
5802 block_signals(signal_mask_is_inited);
5803 } else if (!signal_mask_is_inited) {
5804 block_signals(0);
5805 }
5806#else
5807 /* We have interactiveness code disabled */
5808 if (!signal_mask_is_inited) {
5809 block_signals(0);
5810 }
5811#endif
5812 /* bash:
5813 * if interactive but not a login shell, sources ~/.bashrc
5814 * (--norc turns this off, --rcfile <file> overrides)
5815 */
5816
5817 if (!ENABLE_FEATURE_SH_EXTRA_QUIET && G_interactive_fd) {
Mike Frysinger258275d2009-04-05 21:19:43 +00005818 printf("\n\n%s hush - the humble shell\n", bb_banner);
Mike Frysingerb2705e12009-03-23 08:44:02 +00005819 printf("Enter 'help' for a list of built-in commands.\n\n");
5820 }
5821
Denis Vlasenkof9375282009-04-05 19:13:39 +00005822 parse_and_run_file(stdin);
Eric Andersen25f27032001-04-26 23:22:31 +00005823
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005824 final_return:
Denis Vlasenko38f63192007-01-22 09:03:07 +00005825#if ENABLE_FEATURE_CLEAN_UP
Denis Vlasenko87a86552008-07-29 19:43:10 +00005826 if (G.cwd != bb_msg_unknown)
5827 free((char*)G.cwd);
5828 cur_var = G.top_var->next;
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005829 while (cur_var) {
5830 struct variable *tmp = cur_var;
5831 if (!cur_var->max_len)
Denis Vlasenko28c0f0f2007-05-25 02:46:01 +00005832 free(cur_var->varstr);
Denis Vlasenkod76c0492007-05-25 02:16:25 +00005833 cur_var = cur_var->next;
5834 free(tmp);
Eric Andersenaeb44c42001-05-22 20:29:00 +00005835 }
Eric Andersen25f27032001-04-26 23:22:31 +00005836#endif
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005837 hush_exit(G.last_exitcode);
Eric Andersen25f27032001-04-26 23:22:31 +00005838}
Denis Vlasenko96702ca2007-11-23 23:28:55 +00005839
5840
5841#if ENABLE_LASH
5842int lash_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
5843int lash_main(int argc, char **argv)
5844{
5845 //bb_error_msg("lash is deprecated, please use hush instead");
5846 return hush_main(argc, argv);
5847}
5848#endif
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005849
5850
5851/*
5852 * Built-ins
5853 */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005854static int builtin_trap(char **argv)
5855{
Denis Vlasenkod5762932009-03-31 11:22:57 +00005856 int i;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005857 int sig;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005858 char *new_cmd;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005859
5860 if (!G.traps)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005861 G.traps = xzalloc(sizeof(G.traps[0]) * NSIG);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005862
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005863 argv++;
5864 if (!*argv) {
5865 /* No args: print all trapped. This isn't 100% correct as we
5866 * should be escaping the cmd so that it can be pasted back in
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005867 */
5868 for (i = 0; i < NSIG; ++i)
Denis Vlasenkod5762932009-03-31 11:22:57 +00005869 if (G.traps[i])
5870 printf("trap -- '%s' %s\n", G.traps[i], get_signame(i));
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005871 return EXIT_SUCCESS;
5872 }
5873
Denis Vlasenkod5762932009-03-31 11:22:57 +00005874 new_cmd = NULL;
5875 i = 0;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005876 /* If first arg is decimal: reset all specified signals */
5877 sig = bb_strtou(*argv, NULL, 10);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005878 if (errno == 0) {
5879 int ret;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005880 set_all:
5881 ret = EXIT_SUCCESS;
Denis Vlasenkod5762932009-03-31 11:22:57 +00005882 while (*argv) {
5883 sig = get_signum(*argv++);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005884 if (sig < 0 || sig >= NSIG) {
5885 ret = EXIT_FAILURE;
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005886 /* Mimic bash message exactly */
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005887 bb_perror_msg("trap: %s: invalid signal specification", argv[i]);
5888 continue;
5889 }
5890
Denis Vlasenkod5762932009-03-31 11:22:57 +00005891 free(G.traps[sig]);
5892 G.traps[sig] = xstrdup(new_cmd);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005893
Denis Vlasenkod5762932009-03-31 11:22:57 +00005894 debug_printf("trap: setting SIG%s (%i) to '%s'",
5895 get_signame(sig), sig, G.traps[sig]);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005896
5897 /* There is no signal for 0 (EXIT) */
5898 if (sig == 0)
5899 continue;
5900
5901 if (new_cmd) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00005902 sigaddset(&G.blocked_set, sig);
5903 } else {
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005904 /* There was a trap handler, we are removing it
Denis Vlasenkod5762932009-03-31 11:22:57 +00005905 * (if sig has non-DFL handling,
5906 * we don't need to do anything) */
5907 if (sig < 32 && (G.non_DFL_mask & (1 << sig)))
5908 continue;
5909 sigdelset(&G.blocked_set, sig);
5910 }
5911 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005912 }
5913 return ret;
5914 }
5915
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005916 /* First arg is "-": reset all specified to default */
5917 /* First arg is "": ignore all specified */
5918 /* Everything else: execute first arg upon signal */
Denis Vlasenkod5762932009-03-31 11:22:57 +00005919 if (!argv[1]) {
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005920 bb_error_msg("trap: invalid arguments");
5921 return EXIT_FAILURE;
5922 }
Denis Vlasenkoc8d27332009-04-06 10:47:21 +00005923 if (NOT_LONE_DASH(*argv))
Denis Vlasenkod5762932009-03-31 11:22:57 +00005924 new_cmd = *argv;
5925 argv++;
Mike Frysinger9f8128f2009-03-29 23:49:37 +00005926 goto set_all;
5927}
5928
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00005929static int builtin_true(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005930{
5931 return 0;
5932}
5933
5934static int builtin_test(char **argv)
5935{
5936 int argc = 0;
5937 while (*argv) {
5938 argc++;
5939 argv++;
5940 }
5941 return test_main(argc, argv - argc);
5942}
5943
5944static int builtin_echo(char **argv)
5945{
5946 int argc = 0;
5947 while (*argv) {
5948 argc++;
5949 argv++;
5950 }
5951 return echo_main(argc, argv - argc);
5952}
5953
5954static int builtin_eval(char **argv)
5955{
5956 int rcode = EXIT_SUCCESS;
5957
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005958 if (*++argv) {
5959 char *str = expand_strvec_to_string(argv);
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005960 /* bash:
5961 * eval "echo Hi; done" ("done" is syntax error):
5962 * "echo Hi" will not execute too.
5963 */
5964 parse_and_run_string(str);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005965 free(str);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00005966 rcode = G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005967 }
5968 return rcode;
5969}
5970
5971static int builtin_cd(char **argv)
5972{
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005973 const char *newdir = argv[1];
5974 if (newdir == NULL) {
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005975 /* bash does nothing (exitcode 0) if HOME is ""; if it's unset,
Denis Vlasenko0b677d82009-04-10 13:49:10 +00005976 * bash says "bash: cd: HOME not set" and does nothing
5977 * (exitcode 1)
Denis Vlasenkob6e65562009-04-03 16:49:04 +00005978 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005979 newdir = getenv("HOME") ? : "/";
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005980 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005981 if (chdir(newdir)) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00005982 /* Mimic bash message exactly */
5983 bb_perror_msg("cd: %s", newdir);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005984 return EXIT_FAILURE;
5985 }
5986 set_cwd();
5987 return EXIT_SUCCESS;
5988}
5989
5990static int builtin_exec(char **argv)
5991{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005992 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005993 return EXIT_SUCCESS; /* bash does this */
5994 {
5995#if !BB_MMU
Denis Vlasenkof886fd22008-10-13 12:36:05 +00005996 nommu_save_t dummy;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00005997#endif
5998// FIXME: if exec fails, bash does NOT exit! We do...
Denis Vlasenkob0a64782009-04-06 11:33:07 +00005999 pseudo_exec_argv(&dummy, argv, 0, NULL);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006000 /* never returns */
6001 }
6002}
6003
6004static int builtin_exit(char **argv)
6005{
Denis Vlasenkocd418a22009-04-06 18:08:35 +00006006 debug_printf_exec("%s()\n", __func__);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006007// TODO: bash does it ONLY on top-level sh exit (+interacive only?)
6008 //puts("exit"); /* bash does it */
6009// TODO: warn if we have background jobs: "There are stopped jobs"
6010// On second consecutive 'exit', exit anyway.
Denis Vlasenkoefea9d22009-04-09 13:43:11 +00006011// perhaps use G.exiting = -1 as indicator "last cmd was exit"
6012
6013 /* note: EXIT trap is run by hush_exit */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006014 if (*++argv == NULL)
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006015 hush_exit(G.last_exitcode);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006016 /* mimic bash: exit 123abc == exit 255 + error msg */
6017 xfunc_error_retval = 255;
6018 /* bash: exit -2 == exit 254, no error msg */
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006019 hush_exit(xatoi(*argv) & 0xff);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006020}
6021
6022static int builtin_export(char **argv)
6023{
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006024 if (*++argv == NULL) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006025 char **e = environ;
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006026 if (e) {
6027 while (*e) {
6028#if 0
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006029 puts(*e++);
Denis Vlasenko0b677d82009-04-10 13:49:10 +00006030#else
6031 /* ash emits: export VAR='VAL'
6032 * bash: declare -x VAR="VAL"
6033 * we follow ash example */
6034 const char *s = *e++;
6035 const char *p = strchr(s, '=');
6036
6037 if (!p) /* wtf? take next variable */
6038 continue;
6039 /* export var= */
6040 printf("export %.*s", (int)(p - s) + 1, s);
6041 s = p + 1;
6042 while (*s) {
6043 if (*s != '\'') {
6044 p = strchrnul(s, '\'');
6045 /* print 'xxxx' */
6046 printf("'%.*s'", (int)(p - s), s);
6047 if (*p == '\0')
6048 break;
6049 s = p;
6050 }
6051 /* s points to '; print ''...'''" */
6052 putchar('"');
6053 do putchar('\''); while (*++s == '\'');
6054 putchar('"');
6055 }
6056 putchar('\n');
6057#endif
6058 }
6059 fflush(stdout);
6060 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006061 return EXIT_SUCCESS;
6062 }
6063
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006064 do {
6065 const char *value;
6066 char *name = *argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006067
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006068 value = strchr(name, '=');
6069 if (!value) {
6070 /* They are exporting something without a =VALUE */
6071 struct variable *var;
6072
6073 var = get_local_var(name);
6074 if (var) {
6075 var->flg_export = 1;
6076 debug_printf_env("%s: putenv '%s'\n", __func__, var->varstr);
6077 putenv(var->varstr);
6078 }
6079 /* bash does not return an error when trying to export
6080 * an undefined variable. Do likewise. */
6081 continue;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006082 }
Denis Vlasenkob0a64782009-04-06 11:33:07 +00006083 set_local_var(xstrdup(name), 1, 0);
6084 } while (*++argv);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006085
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006086 return EXIT_SUCCESS;
6087}
6088
6089#if ENABLE_HUSH_JOB
6090/* built-in 'fg' and 'bg' handler */
6091static int builtin_fg_bg(char **argv)
6092{
6093 int i, jobnum;
6094 struct pipe *pi;
6095
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006096 if (!G_interactive_fd)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006097 return EXIT_FAILURE;
6098 /* If they gave us no args, assume they want the last backgrounded task */
6099 if (!argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006100 for (pi = G.job_list; pi; pi = pi->next) {
6101 if (pi->jobid == G.last_jobid) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006102 goto found;
6103 }
6104 }
6105 bb_error_msg("%s: no current job", argv[0]);
6106 return EXIT_FAILURE;
6107 }
6108 if (sscanf(argv[1], "%%%d", &jobnum) != 1) {
6109 bb_error_msg("%s: bad argument '%s'", argv[0], argv[1]);
6110 return EXIT_FAILURE;
6111 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006112 for (pi = G.job_list; pi; pi = pi->next) {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006113 if (pi->jobid == jobnum) {
6114 goto found;
6115 }
6116 }
6117 bb_error_msg("%s: %d: no such job", argv[0], jobnum);
6118 return EXIT_FAILURE;
6119 found:
6120 // TODO: bash prints a string representation
6121 // of job being foregrounded (like "sleep 1 | cat")
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006122 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006123 /* Put the job into the foreground. */
Denis Vlasenko60b392f2009-04-03 19:14:32 +00006124 tcsetpgrp(G_interactive_fd, pi->pgrp);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006125 }
6126
6127 /* Restart the processes in the job */
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006128 debug_printf_jobs("reviving %d procs, pgrp %d\n", pi->num_cmds, pi->pgrp);
6129 for (i = 0; i < pi->num_cmds; i++) {
6130 debug_printf_jobs("reviving pid %d\n", pi->cmds[i].pid);
6131 pi->cmds[i].is_stopped = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006132 }
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006133 pi->stopped_cmds = 0;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006134
6135 i = kill(- pi->pgrp, SIGCONT);
6136 if (i < 0) {
6137 if (errno == ESRCH) {
6138 delete_finished_bg_job(pi);
6139 return EXIT_SUCCESS;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006140 }
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006141 bb_perror_msg("kill (SIGCONT)");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006142 }
6143
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006144 if (argv[0][0] == 'f') {
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006145 remove_bg_job(pi);
6146 return checkjobs_and_fg_shell(pi);
6147 }
6148 return EXIT_SUCCESS;
6149}
6150#endif
6151
6152#if ENABLE_HUSH_HELP
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006153static int builtin_help(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006154{
6155 const struct built_in_command *x;
6156
Denis Vlasenko34d4d892009-04-04 20:24:37 +00006157 printf("\n"
6158 "Built-in commands:\n"
6159 "------------------\n");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006160 for (x = bltins; x != &bltins[ARRAY_SIZE(bltins)]; x++) {
6161 printf("%s\t%s\n", x->cmd, x->descr);
6162 }
6163 printf("\n\n");
6164 return EXIT_SUCCESS;
6165}
6166#endif
6167
6168#if ENABLE_HUSH_JOB
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006169static int builtin_jobs(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006170{
6171 struct pipe *job;
6172 const char *status_string;
6173
Denis Vlasenko87a86552008-07-29 19:43:10 +00006174 for (job = G.job_list; job; job = job->next) {
Denis Vlasenko9af22c72008-10-09 12:54:58 +00006175 if (job->alive_cmds == job->stopped_cmds)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006176 status_string = "Stopped";
6177 else
6178 status_string = "Running";
6179
6180 printf(JOB_STATUS_FORMAT, job->jobid, status_string, job->cmdtext);
6181 }
6182 return EXIT_SUCCESS;
6183}
6184#endif
6185
Denis Vlasenkoc73b70c2009-04-08 11:48:57 +00006186#if HUSH_DEBUG
6187static int builtin_memleak(char **argv UNUSED_PARAM)
6188{
6189 void *p;
6190 unsigned long l;
6191
6192 /* Crude attempt to find where "free memory" starts,
6193 * sans fragmentation. */
6194 p = malloc(240);
6195 l = (unsigned long)p;
6196 free(p);
6197 p = malloc(3400);
6198 if (l < (unsigned long)p) l = (unsigned long)p;
6199 free(p);
6200
6201 if (!G.memleak_value)
6202 G.memleak_value = l;
6203
6204 l -= G.memleak_value;
6205 if ((long)l < 0)
6206 l = 0;
6207 l /= 1024;
6208 if (l > 127)
6209 l = 127;
6210
6211 /* Exitcode is "how many kilobytes we leaked since 1st call" */
6212 return l;
6213}
6214#endif
6215
Denis Vlasenkoa60f84e2008-07-05 09:18:54 +00006216static int builtin_pwd(char **argv UNUSED_PARAM)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006217{
6218 puts(set_cwd());
6219 return EXIT_SUCCESS;
6220}
6221
6222static int builtin_read(char **argv)
6223{
6224 char *string;
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006225 const char *name = "REPLY";
6226
6227 if (argv[1]) {
6228 name = argv[1];
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006229 /* bash (3.2.33(1)) bug: "read 0abcd" will execute,
6230 * and _after_ that_ it will complain */
Denis Vlasenko05d3b7c2009-04-09 19:16:15 +00006231 if (!is_well_formed_var_name(name, '\0')) {
6232 /* Mimic bash message */
6233 bb_error_msg("read: '%s': not a valid identifier", name);
6234 return 1;
6235 }
6236 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006237
Denis Vlasenko1fd1ea42009-04-10 12:03:20 +00006238//TODO: bash unbackslashes input, splits words and puts them in argv[i]
6239
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006240 string = xmalloc_reads(STDIN_FILENO, xasprintf("%s=", name), NULL);
Denis Vlasenko0bb4a232009-04-05 01:42:59 +00006241 return set_local_var(string, 0, 0);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006242}
6243
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006244/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#set
6245 * built-in 'set' handler
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006246 * SUSv3 says:
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006247 * set [-abCefhmnuvx] [-o option] [argument...]
6248 * set [+abCefhmnuvx] [+o option] [argument...]
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006249 * set -- [argument...]
6250 * set -o
6251 * set +o
6252 * Implementations shall support the options in both their hyphen and
6253 * plus-sign forms. These options can also be specified as options to sh.
6254 * Examples:
6255 * Write out all variables and their values: set
6256 * Set $1, $2, and $3 and set "$#" to 3: set c a b
6257 * Turn on the -x and -v options: set -xv
6258 * Unset all positional parameters: set --
6259 * Set $1 to the value of x, even if it begins with '-' or '+': set -- "$x"
6260 * Set the positional parameters to the expansion of x, even if x expands
6261 * with a leading '-' or '+': set -- $x
6262 *
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006263 * So far, we only support "set -- [argument...]" and some of the short names.
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006264 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006265static int builtin_set(char **argv)
6266{
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006267 int n;
6268 char **pp, **g_argv;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006269 char *arg = *++argv;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006270
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006271 if (arg == NULL) {
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006272 struct variable *e;
Denis Vlasenko87a86552008-07-29 19:43:10 +00006273 for (e = G.top_var; e; e = e->next)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006274 puts(e->varstr);
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006275 return EXIT_SUCCESS;
Denis Vlasenko11fb7cf2009-03-20 10:13:08 +00006276 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006277
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006278 do {
6279 if (!strcmp(arg, "--")) {
6280 ++argv;
6281 goto set_argv;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006282 }
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006283
6284 if (arg[0] == '+' || arg[0] == '-') {
6285 for (n = 1; arg[n]; ++n)
Denis Vlasenkod5762932009-03-31 11:22:57 +00006286 if (set_mode(arg[0], arg[n]))
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006287 goto error;
6288 continue;
6289 }
6290
6291 break;
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006292 } while ((arg = *++argv) != NULL);
6293 /* Now argv[0] is 1st argument */
6294
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006295 /* Only reset global_argv if we didn't process anything */
6296 if (arg == NULL)
6297 return EXIT_SUCCESS;
6298 set_argv:
6299
Denis Vlasenko424f79b2009-03-22 14:23:34 +00006300 /* NB: G.global_argv[0] ($0) is never freed/changed */
6301 g_argv = G.global_argv;
6302 if (G.global_args_malloced) {
6303 pp = g_argv;
6304 while (*++pp)
6305 free(*pp);
6306 g_argv[1] = NULL;
6307 } else {
6308 G.global_args_malloced = 1;
6309 pp = xzalloc(sizeof(pp[0]) * 2);
6310 pp[0] = g_argv[0]; /* retain $0 */
6311 g_argv = pp;
6312 }
6313 /* This realloc's G.global_argv */
6314 G.global_argv = pp = add_strings_to_strings(g_argv, argv, /*dup:*/ 1);
6315
6316 n = 1;
6317 while (*++pp)
6318 n++;
6319 G.global_argc = n;
6320
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006321 return EXIT_SUCCESS;
Mike Frysingerad88d5a2009-03-28 13:44:51 +00006322
6323 /* Nothing known, so abort */
6324 error:
6325 bb_error_msg("set: %s: invalid option", arg);
6326 return EXIT_FAILURE;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006327}
6328
6329static int builtin_shift(char **argv)
6330{
6331 int n = 1;
6332 if (argv[1]) {
6333 n = atoi(argv[1]);
6334 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006335 if (n >= 0 && n < G.global_argc) {
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006336 if (G.global_args_malloced) {
6337 int m = 1;
6338 while (m <= n)
6339 free(G.global_argv[m++]);
6340 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006341 G.global_argc -= n;
Denis Vlasenkoe1300f62009-03-22 11:41:18 +00006342 memmove(&G.global_argv[1], &G.global_argv[n+1],
6343 G.global_argc * sizeof(G.global_argv[0]));
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006344 return EXIT_SUCCESS;
6345 }
6346 return EXIT_FAILURE;
6347}
6348
6349static int builtin_source(char **argv)
6350{
6351 FILE *input;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006352
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006353 if (*++argv == NULL)
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006354 return EXIT_FAILURE;
6355
6356 /* XXX search through $PATH is missing */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006357 input = fopen_or_warn(*argv, "r");
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006358 if (!input) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006359 /* bb_perror_msg("%s", *argv); - done by fopen_or_warn */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006360 return EXIT_FAILURE;
6361 }
6362 close_on_exec_on(fileno(input));
6363
6364 /* Now run the file */
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006365//TODO:
Denis Vlasenko87a86552008-07-29 19:43:10 +00006366 /* XXX argv and argc are broken; need to save old G.global_argv
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006367 * (pointer only is OK!) on this stack frame,
Denis Vlasenko87a86552008-07-29 19:43:10 +00006368 * set G.global_argv=argv+1, recurse, and restore. */
Denis Vlasenkob6e65562009-04-03 16:49:04 +00006369 parse_and_run_file(input);
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006370 fclose(input);
Denis Vlasenkoab2b0642009-04-06 18:42:11 +00006371 return G.last_exitcode;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006372}
6373
6374static int builtin_umask(char **argv)
6375{
6376 mode_t new_umask;
6377 const char *arg = argv[1];
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006378 if (arg) {
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006379//TODO: umask may take chmod-like symbolic masks
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006380 new_umask = bb_strtou(arg, NULL, 8);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006381 if (errno) {
6382 //Message? bash examples:
6383 //bash: umask: 'q': invalid symbolic mode operator
6384 //bash: umask: 999: octal number out of range
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006385 return EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006386 }
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006387 } else {
6388 new_umask = umask(0);
6389 printf("%.3o\n", (unsigned) new_umask);
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006390 /* fall through and restore new_umask which we set to 0 */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006391 }
6392 umask(new_umask);
6393 return EXIT_SUCCESS;
6394}
6395
Mike Frysingerd690f682009-03-30 06:50:54 +00006396/* http://www.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#unset */
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006397static int builtin_unset(char **argv)
6398{
Mike Frysingerd690f682009-03-30 06:50:54 +00006399 int ret;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006400 char var;
Mike Frysingerd690f682009-03-30 06:50:54 +00006401
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006402 if (!*++argv)
Mike Frysingerd690f682009-03-30 06:50:54 +00006403 return EXIT_SUCCESS;
6404
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006405 var = 'v';
6406 if (argv[0][0] == '-') {
6407 switch (argv[0][1]) {
6408 case 'v':
6409 case 'f':
6410 var = argv[0][1];
6411 break;
Mike Frysingerd690f682009-03-30 06:50:54 +00006412 default:
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006413 bb_error_msg("unset: %s: invalid option", *argv);
Mike Frysingerd690f682009-03-30 06:50:54 +00006414 return EXIT_FAILURE;
6415 }
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006416//TODO: disallow "unset -vf ..." too
6417 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006418 }
6419
6420 ret = EXIT_SUCCESS;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006421 while (*argv) {
6422 if (var == 'v') {
6423 if (unset_local_var(*argv)) {
6424 /* unset <nonexistent_var> doesn't fail.
6425 * Error is when one tries to unset RO var.
6426 * Message was printed by unset_local_var. */
Mike Frysingerd690f682009-03-30 06:50:54 +00006427 ret = EXIT_FAILURE;
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006428 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006429 }
6430#if ENABLE_HUSH_FUNCTIONS
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006431 else {
6432 unset_local_func(*argv);
6433 }
Mike Frysingerd690f682009-03-30 06:50:54 +00006434#endif
Denis Vlasenkobfbc9712009-04-06 12:04:42 +00006435 argv++;
Mike Frysingerd690f682009-03-30 06:50:54 +00006436 }
6437 return ret;
Denis Vlasenkoc7985b72008-06-17 05:43:38 +00006438}
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006439
Mike Frysinger56bdea12009-03-28 20:01:58 +00006440/* http://www.opengroup.org/onlinepubs/9699919799/utilities/wait.html */
6441static int builtin_wait(char **argv)
6442{
6443 int ret = EXIT_SUCCESS;
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006444 int status, sig;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006445
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006446 if (*++argv == NULL) {
6447 /* Don't care about wait results */
6448 /* Note 1: must wait until there are no more children */
6449 /* Note 2: must be interruptible */
6450 /* Examples:
6451 * $ sleep 3 & sleep 6 & wait
6452 * [1] 30934 sleep 3
6453 * [2] 30935 sleep 6
6454 * [1] Done sleep 3
6455 * [2] Done sleep 6
6456 * $ sleep 3 & sleep 6 & wait
6457 * [1] 30936 sleep 3
6458 * [2] 30937 sleep 6
6459 * [1] Done sleep 3
6460 * ^C <-- after ~4 sec from keyboard
6461 * $
6462 */
6463 sigaddset(&G.blocked_set, SIGCHLD);
6464 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6465 while (1) {
6466 checkjobs(NULL);
6467 if (errno == ECHILD)
6468 break;
6469 /* Wait for SIGCHLD or any other signal of interest */
6470 /* sigtimedwait with infinite timeout: */
6471 sig = sigwaitinfo(&G.blocked_set, NULL);
6472 if (sig > 0) {
6473 sig = check_and_run_traps(sig);
6474 if (sig && sig != SIGCHLD) { /* see note 2 */
6475 ret = 128 + sig;
6476 break;
6477 }
6478 }
6479 }
6480 sigdelset(&G.blocked_set, SIGCHLD);
6481 sigprocmask(SIG_SETMASK, &G.blocked_set, NULL);
6482 return ret;
6483 }
Mike Frysinger56bdea12009-03-28 20:01:58 +00006484
Denis Vlasenko7566bae2009-03-31 17:24:49 +00006485 /* This is probably buggy wrt interruptible-ness */
Denis Vlasenkod5762932009-03-31 11:22:57 +00006486 while (*argv) {
6487 pid_t pid = bb_strtou(*argv, NULL, 10);
Mike Frysinger40b8dc42009-03-29 00:50:30 +00006488 if (errno) {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006489 /* mimic bash message */
6490 bb_error_msg("wait: '%s': not a pid or valid job spec", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006491 return EXIT_FAILURE;
Denis Vlasenkod5762932009-03-31 11:22:57 +00006492 }
6493 if (waitpid(pid, &status, 0) == pid) {
Mike Frysinger56bdea12009-03-28 20:01:58 +00006494 if (WIFSIGNALED(status))
6495 ret = 128 + WTERMSIG(status);
6496 else if (WIFEXITED(status))
6497 ret = WEXITSTATUS(status);
Denis Vlasenkod5762932009-03-31 11:22:57 +00006498 else /* wtf? */
Mike Frysinger56bdea12009-03-28 20:01:58 +00006499 ret = EXIT_FAILURE;
6500 } else {
Denis Vlasenkod5762932009-03-31 11:22:57 +00006501 bb_perror_msg("wait %s", *argv);
Mike Frysinger56bdea12009-03-28 20:01:58 +00006502 ret = 127;
6503 }
Denis Vlasenkod5762932009-03-31 11:22:57 +00006504 argv++;
Mike Frysinger56bdea12009-03-28 20:01:58 +00006505 }
6506
6507 return ret;
6508}
6509
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006510#if ENABLE_HUSH_LOOPS
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006511static int builtin_break(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006512{
Denis Vlasenko87a86552008-07-29 19:43:10 +00006513 if (G.depth_of_loop == 0) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006514 bb_error_msg("%s: only meaningful in a loop", argv[0]);
Denis Vlasenkofcf37c32008-07-29 11:37:15 +00006515 return EXIT_SUCCESS; /* bash compat */
6516 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006517 G.flag_break_continue++; /* BC_BREAK = 1 */
6518 G.depth_break_continue = 1;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006519 if (argv[1]) {
Denis Vlasenko87a86552008-07-29 19:43:10 +00006520 G.depth_break_continue = bb_strtou(argv[1], NULL, 10);
6521 if (errno || !G.depth_break_continue || argv[2]) {
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006522 bb_error_msg("%s: bad arguments", argv[0]);
Denis Vlasenko87a86552008-07-29 19:43:10 +00006523 G.flag_break_continue = BC_BREAK;
6524 G.depth_break_continue = UINT_MAX;
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006525 }
6526 }
Denis Vlasenko87a86552008-07-29 19:43:10 +00006527 if (G.depth_of_loop < G.depth_break_continue)
6528 G.depth_break_continue = G.depth_of_loop;
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006529 return EXIT_SUCCESS;
6530}
6531
Denis Vlasenko6a2d40f2008-07-28 23:07:06 +00006532static int builtin_continue(char **argv)
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006533{
Denis Vlasenko4f504a92008-07-29 19:48:30 +00006534 G.flag_break_continue = 1; /* BC_CONTINUE = 2 = 1+1 */
6535 return builtin_break(argv);
Denis Vlasenkobcb25532008-07-28 23:04:34 +00006536}
Denis Vlasenkodadfb492008-07-29 10:16:05 +00006537#endif